Skip to content

Commit

Permalink
Added explicit declaration of difficulty to test trainers per https:/…
Browse files Browse the repository at this point in the history
  • Loading branch information
pkmnsnfrn committed Oct 11, 2024
1 parent 47fefaa commit 8d071e4
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 21 deletions.
42 changes: 21 additions & 21 deletions test/battle/trainer_control.h
Original file line number Diff line number Diff line change
Expand Up @@ -26,61 +26,61 @@
.party = (const struct TrainerMon[])
{
{
#line 9
#line 10
.nickname = COMPOUND_STRING("Bubbles"),
#line 9
#line 10
.species = SPECIES_WOBBUFFET,
#line 9
#line 10
.gender = TRAINER_MON_FEMALE,
#line 9
#line 10
.heldItem = ITEM_ASSAULT_VEST,
#line 14
#line 15
.ev = TRAINER_PARTY_EVS(252, 0, 0, 252, 4, 0),
#line 13
#line 14
.iv = TRAINER_PARTY_IVS(25, 26, 27, 28, 29, 30),
#line 12
#line 13
.ability = ABILITY_TELEPATHY,
#line 11
#line 12
.lvl = 67,
#line 17
#line 18
.ball = ITEM_MASTER_BALL,
#line 15
#line 16
.friendship = 42,
#line 10
#line 11
.nature = NATURE_HASTY,
#line 16
#line 17
.isShiny = TRUE,
#line 18
#line 19
.dynamaxLevel = 5,
.shouldUseDynamax = TRUE,
.moves = {
#line 19
#line 20
MOVE_AIR_SLASH,
MOVE_BARRIER,
MOVE_SOLAR_BEAM,
MOVE_EXPLOSION,
},
},
{
#line 24
#line 25
.species = SPECIES_WOBBUFFET,
.gender = TRAINER_MON_RANDOM_GENDER,
#line 27
#line 28
.iv = TRAINER_PARTY_IVS(0, 0, 0, 0, 0, 0),
#line 26
#line 27
.ability = ABILITY_SHADOW_TAG,
#line 25
#line 26
.lvl = 5,
.nature = NATURE_HARDY,
.dynamaxLevel = MAX_DYNAMAX_LEVEL,
},
{
#line 29
#line 30
.species = SPECIES_WYNAUT,
.gender = TRAINER_MON_RANDOM_GENDER,
#line 31
#line 32
.iv = TRAINER_PARTY_IVS(0, 0, 0, 0, 0, 0),
#line 30
#line 31
.lvl = 5,
.nature = NATURE_HARDY,
.dynamaxLevel = MAX_DYNAMAX_LEVEL,
Expand Down
1 change: 1 addition & 0 deletions test/battle/trainer_control.party
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ Pic: Red
Gender: Male
Music: Male
Double Battle: No
Difficulty: Normal

Bubbles (Wobbuffet) (F) @ Assault Vest
Hasty Nature
Expand Down

0 comments on commit 8d071e4

Please sign in to comment.