pokefirered/test/battle/ability/psychic_surge.c
2025-02-10 15:54:48 +01:00

16 lines
404 B
C

#include "global.h"
#include "test/battle.h"
SINGLE_BATTLE_TEST("Psychic Surge creates Psychic Terrain when entering the battle")
{
GIVEN {
PLAYER(SPECIES_TAPU_LELE) { Ability(ABILITY_PSYCHIC_SURGE); }
OPPONENT(SPECIES_WOBBUFFET);
} WHEN {
TURN {}
} SCENE {
ABILITY_POPUP(player, ABILITY_PSYCHIC_SURGE);
MESSAGE("The battlefield got weird!");
}
}