Fix Meowstic Genders

This commit is contained in:
Skeli
2019-11-06 11:21:02 +02:00
parent fd36ad8b1e
commit 4926b4fb29
3 changed files with 4 additions and 4 deletions

View File

@@ -30,7 +30,7 @@ enum EvolutionMethods
EVO_LEVEL_SHEDINJA,
EVO_BEAUTY,
// new evolutions
EVO_RAINY_OW, // raining in overworld
EVO_RAINY_FOGGY_OW, // raining or foggy in overworld
EVO_MOVE_TYPE, // knows a move with a specific type (eg. sylveon: fairy type move). Param is the move type
EVO_TYPE_IN_PARTY, //specific type (param) in party after given level (unknown).
EVO_MAP, // specific map evolution. bank in param, map in unknown

View File

@@ -25078,7 +25078,7 @@ const struct BaseStats gBaseStats[] =
.evYield_Speed = 2,
.item1 = ITEM_NONE,
.item2 = ITEM_NONE,
.genderRatio = PERCENT_FEMALE(50),
.genderRatio = PERCENT_FEMALE(0),
.eggCycles = 20,
.friendship = 70,
.growthRate = GROWTH_MEDIUM_FAST,
@@ -26596,7 +26596,7 @@ const struct BaseStats gBaseStats[] =
.evYield_Speed = 2,
.item1 = ITEM_NONE,
.item2 = ITEM_NONE,
.genderRatio = PERCENT_FEMALE(50),
.genderRatio = PERCENT_FEMALE(100),
.eggCycles = 20,
.friendship = 70,
.growthRate = GROWTH_MEDIUM_FAST,

View File

@@ -444,7 +444,7 @@ const struct Evolution gEvolutionTable[NUM_SPECIES][EVOS_PER_MON] =
[SPECIES_TYRUNT] = {{EVO_LEVEL_DAY, 39, SPECIES_TYRANTRUM, 0}},
[SPECIES_AMAURA] = {{EVO_LEVEL_NIGHT, 39, SPECIES_AURORUS, 0}},
[SPECIES_GOOMY] = {{EVO_LEVEL, 40, SPECIES_SLIGGOO, 0}},
[SPECIES_SLIGGOO] = {{EVO_RAINY_OW, 50, SPECIES_GOODRA, 0}},
[SPECIES_SLIGGOO] = {{EVO_RAINY_FOGGY_OW, 50, SPECIES_GOODRA, 0}},
[SPECIES_PHANTUMP] = {{EVO_TRADE, 0, SPECIES_TREVENANT, 0},
{EVO_ITEM, ITEM_LINK_CABLE, SPECIES_TREVENANT, 0}},
[SPECIES_PUMPKABOO] = {{EVO_TRADE, 0, SPECIES_GOURGEIST, 0},