Added the base stats of Deoxys' forms, thanks to UltimaSoul

This commit is contained in:
LOuroboros 2020-07-23 13:04:01 -03:00
parent 63a8ba2b05
commit a3cc1a2edc

View file

@ -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,
},
};