db24128ee3
Co-authored-by: Eduardo Quezada <eduardo602002@gmail.com>
122 lines
4.5 KiB
C
122 lines
4.5 KiB
C
#include "global.h"
|
|
#include "test/battle.h"
|
|
|
|
ASSUMPTIONS
|
|
{
|
|
ASSUME(gMovesInfo[MOVE_CORROSIVE_GAS].effect == EFFECT_CORROSIVE_GAS);
|
|
}
|
|
|
|
SINGLE_BATTLE_TEST("Corrosive Gas destroys the target's item or fails if the target has no item")
|
|
{
|
|
u16 item;
|
|
|
|
PARAMETRIZE {item = ITEM_NONE; }
|
|
PARAMETRIZE {item = ITEM_POTION; }
|
|
|
|
GIVEN {
|
|
PLAYER(SPECIES_WOBBUFFET);
|
|
OPPONENT(SPECIES_WOBBUFFET) {Item(item); }
|
|
} WHEN {
|
|
TURN { MOVE(player, MOVE_CORROSIVE_GAS); }
|
|
} SCENE {
|
|
MESSAGE("Wobbuffet used Corrosive Gas!");
|
|
if (item == ITEM_POTION) {
|
|
ANIMATION(ANIM_TYPE_MOVE, MOVE_CORROSIVE_GAS, player);
|
|
MESSAGE("Wobbuffet corroded the opposing Wobbuffet's Potion!");
|
|
}
|
|
else {
|
|
MESSAGE("It won't have any effect on the opposing Wobbuffet!");
|
|
}
|
|
} THEN {
|
|
EXPECT_EQ(opponent->item, ITEM_NONE);
|
|
}
|
|
}
|
|
|
|
SINGLE_BATTLE_TEST("Corrosive Gas doesn't destroy the item of a Pokemon with the Sticky Hold ability")
|
|
{
|
|
GIVEN {
|
|
PLAYER(SPECIES_WOBBUFFET);
|
|
OPPONENT(SPECIES_MUK) {Item(ITEM_POISON_BARB); Ability(ABILITY_STICKY_HOLD); }
|
|
} WHEN {
|
|
TURN { MOVE(player, MOVE_CORROSIVE_GAS); }
|
|
} SCENE {
|
|
MESSAGE("Wobbuffet used Corrosive Gas!");
|
|
ANIMATION(ANIM_TYPE_MOVE, MOVE_CORROSIVE_GAS, player);
|
|
NOT MESSAGE("Wobbuffet corroded the opposing Wobbuffet's Potion!");
|
|
ABILITY_POPUP(opponent, ABILITY_STICKY_HOLD);
|
|
MESSAGE("The opposing Muk's Sticky Hold made Corrosive Gas ineffective!");
|
|
} THEN {
|
|
EXPECT_EQ(opponent->item, ITEM_POISON_BARB);
|
|
}
|
|
}
|
|
|
|
SINGLE_BATTLE_TEST("Items lost to Corrosive Gas cannot be restored by Recycle")
|
|
{
|
|
GIVEN {
|
|
ASSUME(gMovesInfo[MOVE_RECYCLE].effect == EFFECT_RECYCLE);
|
|
PLAYER(SPECIES_WOBBUFFET) {Speed(15); }
|
|
OPPONENT(SPECIES_WOBBUFFET) {Item(ITEM_ORAN_BERRY); Speed(10); }
|
|
} WHEN {
|
|
TURN { MOVE(player, MOVE_CORROSIVE_GAS); MOVE(opponent, MOVE_RECYCLE); }
|
|
} SCENE {
|
|
MESSAGE("Wobbuffet used Corrosive Gas!");
|
|
ANIMATION(ANIM_TYPE_MOVE, MOVE_CORROSIVE_GAS, player);
|
|
MESSAGE("Wobbuffet corroded the opposing Wobbuffet's Oran Berry!");
|
|
MESSAGE("The opposing Wobbuffet used Recycle!");
|
|
MESSAGE("But it failed!");
|
|
} THEN {
|
|
EXPECT_EQ(opponent->item, ITEM_NONE);
|
|
}
|
|
}
|
|
|
|
DOUBLE_BATTLE_TEST("Corrosive Gas destroys foes and ally's items if they have one")
|
|
{
|
|
// Check it affects all targets in all possible configurations.
|
|
u32 j, k, l;
|
|
u16 itemOpponentLeft, itemOpponentRight, itemPlayerLeft;
|
|
|
|
for (j = 0; j < 2; j++) {
|
|
for (k = 0; k < 2; k++) {
|
|
for (l = 0; l < 2; l++) {
|
|
PARAMETRIZE {itemOpponentLeft = (j & 1) ? ITEM_ORAN_BERRY : ITEM_NONE;
|
|
itemOpponentRight = (k & 1) ? ITEM_CHESTO_BERRY : ITEM_NONE;
|
|
itemPlayerLeft = (l & 1) ? ITEM_CHERI_BERRY : ITEM_NONE; }
|
|
}
|
|
}
|
|
}
|
|
|
|
GIVEN {
|
|
PLAYER(SPECIES_WOBBUFFET) {Item(itemPlayerLeft);}
|
|
PLAYER(SPECIES_WYNAUT) {Item(ITEM_SITRUS_BERRY);}
|
|
OPPONENT(SPECIES_ABRA) {Item(itemOpponentLeft);}
|
|
OPPONENT(SPECIES_KADABRA) {Item(itemOpponentRight);}
|
|
} WHEN {
|
|
TURN { MOVE(playerRight, MOVE_CORROSIVE_GAS); }
|
|
} SCENE {
|
|
MESSAGE("Wynaut used Corrosive Gas!");
|
|
if (itemPlayerLeft == ITEM_CHERI_BERRY) {
|
|
MESSAGE("Wynaut corroded Wobbuffet's Cheri Berry!");
|
|
} else {
|
|
MESSAGE("It won't have any effect on Wobbuffet!");
|
|
}
|
|
if (itemOpponentLeft == ITEM_ORAN_BERRY) {
|
|
MESSAGE("Wynaut corroded the opposing Abra's Oran Berry!");
|
|
} else {
|
|
MESSAGE("It won't have any effect on the opposing Abra!");
|
|
}
|
|
if (itemOpponentRight == ITEM_CHESTO_BERRY) {
|
|
MESSAGE("Wynaut corroded the opposing Kadabra's Chesto Berry!");
|
|
} else {
|
|
MESSAGE("It won't have any effect on the opposing Kadabra!");
|
|
}
|
|
|
|
} THEN {
|
|
EXPECT_EQ(playerRight->item, ITEM_SITRUS_BERRY); // Attacker doesn't lose its item.
|
|
EXPECT_EQ(playerLeft->item, ITEM_NONE);
|
|
EXPECT_EQ(opponentLeft->item, ITEM_NONE);
|
|
EXPECT_EQ(opponentRight->item, ITEM_NONE);
|
|
}
|
|
}
|
|
|
|
TO_DO_BATTLE_TEST("Corrosive Gas doesn't destroy the item of a Pokemon behind a Substitute");
|
|
TO_DO_BATTLE_TEST("Corrosive Gas doesn't destroy items if they change the Pokémon's form"); // Giratina, Genesect, Silvally, Zacian, Zamazenta. Bulbapedia hasn't confirmed Arceus or Ogerpon, but it's a safe assumption that they will also fail.
|