Skip to content

Commit

Permalink
Fix SPREAD_31_IV_ATK_SPDEF
Browse files Browse the repository at this point in the history
This was missing the actual spread, and therefore did nothing.
  • Loading branch information
BuffelSaft committed Oct 29, 2021
1 parent 3d5f970 commit 68731f9
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions src/data/trainer_spreads.h
Original file line number Diff line number Diff line change
Expand Up @@ -772,6 +772,25 @@ const struct TrainerMonSpread gSets[] = {
},
.nature = NATURE_MODEST
},
[SPREAD_31_IV_ATK_SPDEF] = {
.EVs = {
4, // HP
252, // Attack
0, // Defense
0, // Speed
0, // Special Attack
252 // Special Defense
},
.IVs = {
31, // HP
31, // Attack
31, // Defense
31, // Speed
31, // Special Attack
31 // Special Defense
},
.nature = NATURE_ADAMANT
},
[SPREAD_31_IV_ATK_SPEED_NAUGHTY] = {
.EVs = {
0, // HP
Expand Down

0 comments on commit 68731f9

Please sign in to comment.