33 lines
904 B
C
33 lines
904 B
C
|
#include "global.h"
|
||
|
#include "test/battle.h"
|
||
|
|
||
|
ASSUMPTIONS
|
||
|
{
|
||
|
ASSUME(MoveHasAdditionalEffect(MOVE_BADDY_BAD, MOVE_EFFECT_REFLECT) == TRUE);
|
||
|
}
|
||
|
|
||
|
SINGLE_BATTLE_TEST("Baddy Bad sets up Reflect when it was succesful")
|
||
|
{
|
||
|
bool32 moveSuccess;
|
||
|
PARAMETRIZE { moveSuccess = FALSE; }
|
||
|
PARAMETRIZE { moveSuccess = TRUE; }
|
||
|
|
||
|
GIVEN {
|
||
|
PLAYER(SPECIES_WYNAUT);
|
||
|
OPPONENT(SPECIES_WOBBUFFET);
|
||
|
} WHEN {
|
||
|
TURN { MOVE(player, MOVE_BADDY_BAD, hit: moveSuccess); }
|
||
|
} SCENE {
|
||
|
if (moveSuccess == TRUE)
|
||
|
{
|
||
|
ANIMATION(ANIM_TYPE_MOVE, MOVE_BADDY_BAD, player);
|
||
|
MESSAGE("Reflect made your team stronger against physical moves!");
|
||
|
} else {
|
||
|
NONE_OF {
|
||
|
ANIMATION(ANIM_TYPE_MOVE, MOVE_BADDY_BAD, player);
|
||
|
MESSAGE("Reflect made your team stronger against physical moves!");
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|