pokeemmo/test/battle/ability/misty_surge.c
hedara90 d0bd82452f
Added some TO_DO tests (#6140)
Co-authored-by: Hedara <hedara90@gmail.com>
2025-01-29 21:13:53 -03:00

16 lines
406 B
C

#include "global.h"
#include "test/battle.h"
SINGLE_BATTLE_TEST("Misty Surge creates Misty Terrain when entering the battle")
{
GIVEN {
PLAYER(SPECIES_TAPU_FINI) { Ability(ABILITY_MISTY_SURGE); }
OPPONENT(SPECIES_WOBBUFFET);
} WHEN {
TURN {}
} SCENE {
ABILITY_POPUP(player, ABILITY_MISTY_SURGE);
MESSAGE("Mist swirled around the battlefield!");
}
}