forked from DizzyEggg/pokeemerald
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix for Burn Up/Double Shock (#2962)
- Loading branch information
1 parent
176c675
commit 2d6282f
Showing
3 changed files
with
112 additions
and
4 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
#include "global.h" | ||
#include "test_battle.h" | ||
|
||
ASSUMPTIONS | ||
{ | ||
ASSUME(gBattleMoves[MOVE_BURN_UP].effect == EFFECT_BURN_UP); | ||
ASSUME(gSpeciesInfo[SPECIES_WOBBUFFET].types[0] != TYPE_FIRE || gSpeciesInfo[SPECIES_WOBBUFFET].types[1] != TYPE_FIRE); | ||
ASSUME(gSpeciesInfo[SPECIES_CYNDAQUIL].types[0] == TYPE_FIRE || gSpeciesInfo[SPECIES_CYNDAQUIL].types[1] == TYPE_FIRE); | ||
} | ||
|
||
SINGLE_BATTLE_TEST("Burn Up user loses its Fire-type") | ||
{ | ||
GIVEN { | ||
PLAYER(SPECIES_CYNDAQUIL); | ||
OPPONENT(SPECIES_WOBBUFFET); | ||
} WHEN { | ||
TURN { MOVE(player, MOVE_BURN_UP); } | ||
TURN { MOVE(player, MOVE_BURN_UP); } | ||
} SCENE { | ||
ANIMATION(ANIM_TYPE_MOVE, MOVE_BURN_UP, player); | ||
MESSAGE("Cyndaquil burned itself out!"); | ||
MESSAGE("Cyndaquil used Burn Up!"); | ||
MESSAGE("But it failed!"); | ||
} | ||
} | ||
|
||
SINGLE_BATTLE_TEST("Burn Up fails if the user isn't a Fire-type") | ||
{ | ||
GIVEN { | ||
PLAYER(SPECIES_WOBBUFFET); | ||
OPPONENT(SPECIES_WOBBUFFET); | ||
} WHEN { | ||
TURN { MOVE(player, MOVE_BURN_UP); } | ||
} SCENE { | ||
NONE_OF { ANIMATION(ANIM_TYPE_MOVE, MOVE_BURN_UP, player); } | ||
MESSAGE("Wobbuffet used Burn Up!"); | ||
MESSAGE("But it failed!"); | ||
} | ||
} | ||
|
||
SINGLE_BATTLE_TEST("Burn Up user loses its Fire-type if enemy faints") | ||
{ | ||
GIVEN { | ||
PLAYER(SPECIES_CYNDAQUIL); | ||
OPPONENT(SPECIES_WOBBUFFET) { HP(1); } | ||
} WHEN { | ||
TURN { MOVE(player, MOVE_BURN_UP); } | ||
} SCENE { | ||
ANIMATION(ANIM_TYPE_MOVE, MOVE_BURN_UP, player); | ||
HP_BAR(opponent, hp: 0); | ||
MESSAGE("Cyndaquil burned itself out!"); | ||
} | ||
} |
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,53 @@ | ||
#include "global.h" | ||
#include "test_battle.h" | ||
|
||
ASSUMPTIONS | ||
{ | ||
ASSUME(gBattleMoves[MOVE_DOUBLE_SHOCK].effect == EFFECT_DOUBLE_SHOCK); | ||
ASSUME(gSpeciesInfo[SPECIES_WOBBUFFET].types[0] != TYPE_ELECTRIC || gSpeciesInfo[SPECIES_WOBBUFFET].types[1] != TYPE_ELECTRIC); | ||
ASSUME(gSpeciesInfo[SPECIES_PIKACHU].types[0] == TYPE_ELECTRIC || gSpeciesInfo[SPECIES_PIKACHU].types[1] == TYPE_ELECTRIC); | ||
} | ||
|
||
SINGLE_BATTLE_TEST("Double Shock user loses its Electric-type") | ||
{ | ||
GIVEN { | ||
PLAYER(SPECIES_PIKACHU); | ||
OPPONENT(SPECIES_WOBBUFFET); | ||
} WHEN { | ||
TURN { MOVE(player, MOVE_DOUBLE_SHOCK); } | ||
TURN { MOVE(player, MOVE_DOUBLE_SHOCK); } | ||
} SCENE { | ||
ANIMATION(ANIM_TYPE_MOVE, MOVE_DOUBLE_SHOCK, player); | ||
MESSAGE("Pikachu used up all of its electricity!"); | ||
MESSAGE("Pikachu used Double Shock!"); | ||
MESSAGE("But it failed!"); | ||
} | ||
} | ||
|
||
SINGLE_BATTLE_TEST("Double Shock fails if the user isn't an Electric-type") | ||
{ | ||
GIVEN { | ||
PLAYER(SPECIES_WOBBUFFET); | ||
OPPONENT(SPECIES_WOBBUFFET); | ||
} WHEN { | ||
TURN { MOVE(player, MOVE_DOUBLE_SHOCK); } | ||
} SCENE { | ||
NONE_OF { ANIMATION(ANIM_TYPE_MOVE, MOVE_DOUBLE_SHOCK, player); } | ||
MESSAGE("Wobbuffet used Double Shock!"); | ||
MESSAGE("But it failed!"); | ||
} | ||
} | ||
|
||
SINGLE_BATTLE_TEST("Double Shock user loses its Electric-type if enemy faints") | ||
{ | ||
GIVEN { | ||
PLAYER(SPECIES_PIKACHU); | ||
OPPONENT(SPECIES_WOBBUFFET) { HP(1); } | ||
} WHEN { | ||
TURN { MOVE(player, MOVE_DOUBLE_SHOCK); } | ||
} SCENE { | ||
ANIMATION(ANIM_TYPE_MOVE, MOVE_DOUBLE_SHOCK, player); | ||
HP_BAR(opponent, hp: 0); | ||
MESSAGE("Pikachu used up all of its electricity!"); | ||
} | ||
} |