forked from rh-hideout/pokeemerald-expansion
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Applied Alex's fix for ABILITYEFFECT_TRACE * Added Trace tests written by Alex/Rainonline * Updated Trace's target-choosing capabilities and added a double battle test for it Credits to Alex/Rainonline. * Removed 2 of the 3 'Trace on opponent's switch-in' tests * Added another Trace test
- Loading branch information
1 parent
fb9e590
commit bfc2362
Showing
3 changed files
with
85 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,82 @@ | ||
#include "global.h" | ||
#include "test/battle.h" | ||
|
||
SINGLE_BATTLE_TEST("Trace copies opponents ability") | ||
{ | ||
GIVEN { | ||
PLAYER(SPECIES_RALTS) { Ability(ABILITY_TRACE); } | ||
OPPONENT(SPECIES_TORCHIC) { Ability(ABILITY_BLAZE); } | ||
} WHEN { | ||
TURN { } | ||
} SCENE { | ||
ABILITY_POPUP(player, ABILITY_TRACE); | ||
MESSAGE("Ralts TRACED Foe Torchic's Blaze!"); | ||
} | ||
} | ||
|
||
SINGLE_BATTLE_TEST("Trace copies opponents ability on switch-in") | ||
{ | ||
GIVEN { | ||
PLAYER(SPECIES_WOBBUFFET) | ||
PLAYER(SPECIES_RALTS) { Ability(ABILITY_TRACE); } | ||
OPPONENT(SPECIES_TORCHIC) { Ability(ABILITY_BLAZE); } | ||
} WHEN { | ||
TURN { SWITCH(player, 1); } | ||
} SCENE { | ||
ABILITY_POPUP(player, ABILITY_TRACE); | ||
MESSAGE("Ralts TRACED Foe Torchic's Blaze!"); | ||
} | ||
} | ||
|
||
SINGLE_BATTLE_TEST("Trace copies opponents ability on switch-in even if opponent switched in at the same time") | ||
{ | ||
GIVEN { | ||
PLAYER(SPECIES_WOBBUFFET) | ||
PLAYER(SPECIES_RALTS) { Ability(ABILITY_TRACE); } | ||
OPPONENT(SPECIES_TREECKO) { HP(1); } | ||
OPPONENT(SPECIES_TORCHIC) { Ability(ABILITY_BLAZE); } | ||
} WHEN { | ||
TURN { MOVE(player, MOVE_MISTY_EXPLOSION); SEND_OUT(opponent, 1); SEND_OUT(player, 1); } | ||
} SCENE { | ||
ANIMATION(ANIM_TYPE_MOVE, MOVE_MISTY_EXPLOSION); | ||
ABILITY_POPUP(player, ABILITY_TRACE); | ||
MESSAGE("Ralts TRACED Foe Torchic's Blaze!"); | ||
} | ||
} | ||
|
||
DOUBLE_BATTLE_TEST("Trace copies opponents ability randomly") | ||
{ | ||
u16 ability1, ability2; | ||
|
||
PARAMETRIZE { ability1 = ABILITY_SPEED_BOOST; ability2 = ABILITY_BLAZE;} | ||
PARAMETRIZE { ability1 = ABILITY_BLAZE; ability2 = ABILITY_SPEED_BOOST; } | ||
|
||
PASSES_RANDOMLY(1, 2, RNG_TRACE); | ||
GIVEN { | ||
PLAYER(SPECIES_RALTS) { Ability(ABILITY_TRACE); } | ||
PLAYER(SPECIES_WOBBUFFET); | ||
OPPONENT(SPECIES_TORCHIC) { Ability(ability1); } | ||
OPPONENT(SPECIES_TORCHIC) { Ability(ability2); } | ||
} WHEN { | ||
TURN { } | ||
} SCENE { | ||
ABILITY_POPUP(playerLeft, ABILITY_TRACE); | ||
MESSAGE("Ralts TRACED Foe Torchic's Blaze!"); | ||
} | ||
} | ||
|
||
SINGLE_BATTLE_TEST("Trace will copy an opponent's ability whenever it has the chance but only once") | ||
{ | ||
GIVEN { | ||
ASSUME(P_GEN_4_POKEMON == TRUE); | ||
PLAYER(SPECIES_RALTS) { Ability(ABILITY_TRACE); } | ||
OPPONENT(SPECIES_CHERRIM) { Ability(ABILITY_FLOWER_GIFT); } | ||
OPPONENT(SPECIES_TORCHIC) { Ability(ABILITY_BLAZE); } | ||
} WHEN { | ||
TURN { SWITCH(opponent, 1); } | ||
} SCENE { | ||
// TURN 2 | ||
ABILITY_POPUP(player, ABILITY_TRACE); | ||
MESSAGE("Ralts TRACED Foe Torchic's Blaze!"); | ||
} | ||
} |