Added the base stats of Deoxys' forms, thanks to UltimaSoul
This commit is contained in:
parent
63a8ba2b05
commit
a3cc1a2edc
1 changed files with 74 additions and 0 deletions
|
@ -22891,4 +22891,78 @@ const struct BaseStats gBaseStats[] =
|
|||
.bodyColor = BODY_COLOR_GREEN,
|
||||
.noFlip = FALSE,
|
||||
},
|
||||
|
||||
[SPECIES_DEOXYS_ATTACK] =
|
||||
{
|
||||
.baseHP = 50,
|
||||
.baseAttack = 180,
|
||||
.baseDefense = 20,
|
||||
.baseSpeed = 150,
|
||||
.baseSpAttack = 180,
|
||||
.baseSpDefense = 20,
|
||||
.type1 = TYPE_PSYCHIC,
|
||||
.type2 = TYPE_PSYCHIC,
|
||||
.catchRate = 3,
|
||||
.expYield = 270,
|
||||
.evYield_Attack = 2,
|
||||
.evYield_SpAttack = 1,
|
||||
.genderRatio = MON_GENDERLESS,
|
||||
.eggCycles = 120,
|
||||
.friendship = 0,
|
||||
.growthRate = GROWTH_SLOW,
|
||||
.eggGroup1 = EGG_GROUP_UNDISCOVERED,
|
||||
.eggGroup2 = EGG_GROUP_UNDISCOVERED,
|
||||
.abilities = {ABILITY_PRESSURE, ABILITY_NONE},
|
||||
.bodyColor = BODY_COLOR_RED,
|
||||
.noFlip = FALSE,
|
||||
},
|
||||
|
||||
[SPECIES_DEOXYS_DEFENSE] =
|
||||
{
|
||||
.baseHP = 50,
|
||||
.baseAttack = 70,
|
||||
.baseDefense = 160,
|
||||
.baseSpeed = 90,
|
||||
.baseSpAttack = 70,
|
||||
.baseSpDefense = 160,
|
||||
.type1 = TYPE_PSYCHIC,
|
||||
.type2 = TYPE_PSYCHIC,
|
||||
.catchRate = 3,
|
||||
.expYield = 270,
|
||||
.evYield_Defense = 2,
|
||||
.evYield_SpDefense = 1,
|
||||
.genderRatio = MON_GENDERLESS,
|
||||
.eggCycles = 120,
|
||||
.friendship = 0,
|
||||
.growthRate = GROWTH_SLOW,
|
||||
.eggGroup1 = EGG_GROUP_UNDISCOVERED,
|
||||
.eggGroup2 = EGG_GROUP_UNDISCOVERED,
|
||||
.abilities = {ABILITY_PRESSURE, ABILITY_NONE},
|
||||
.bodyColor = BODY_COLOR_RED,
|
||||
.noFlip = FALSE,
|
||||
},
|
||||
|
||||
[SPECIES_DEOXYS_SPEED] =
|
||||
{
|
||||
.baseHP = 50,
|
||||
.baseAttack = 95,
|
||||
.baseDefense = 90,
|
||||
.baseSpeed = 180,
|
||||
.baseSpAttack = 95,
|
||||
.baseSpDefense = 90,
|
||||
.type1 = TYPE_PSYCHIC,
|
||||
.type2 = TYPE_PSYCHIC,
|
||||
.catchRate = 3,
|
||||
.expYield = 270,
|
||||
.evYield_Speed = 3,
|
||||
.genderRatio = MON_GENDERLESS,
|
||||
.eggCycles = 120,
|
||||
.friendship = 0,
|
||||
.growthRate = GROWTH_SLOW,
|
||||
.eggGroup1 = EGG_GROUP_UNDISCOVERED,
|
||||
.eggGroup2 = EGG_GROUP_UNDISCOVERED,
|
||||
.abilities = {ABILITY_PRESSURE, ABILITY_NONE},
|
||||
.bodyColor = BODY_COLOR_RED,
|
||||
.noFlip = FALSE,
|
||||
},
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue