2024-08-13 13:47:32 -07:00
|
|
|
import Phaser from "phaser";
|
|
|
|
import { afterEach, beforeAll, beforeEach, describe, expect, test } from "vitest";
|
|
|
|
import GameManager from "../utils/gameManager";
|
2024-09-02 22:12:34 -04:00
|
|
|
import { Species } from "#enums/species";
|
|
|
|
import { Abilities } from "#enums/abilities";
|
|
|
|
import { Moves } from "#enums/moves";
|
|
|
|
import { Stat } from "#enums/stat";
|
|
|
|
import { BattlerTagType } from "#app/enums/battler-tag-type";
|
|
|
|
import { BerryPhase } from "#app/phases/berry-phase";
|
|
|
|
import { CommandPhase } from "#app/phases/command-phase";
|
2024-08-13 13:47:32 -07:00
|
|
|
|
|
|
|
const TIMEOUT = 20 * 1000;
|
|
|
|
|
|
|
|
describe("Moves - Crafty Shield", () => {
|
|
|
|
let phaserGame: Phaser.Game;
|
|
|
|
let game: GameManager;
|
|
|
|
|
|
|
|
beforeAll(() => {
|
|
|
|
phaserGame = new Phaser.Game({
|
|
|
|
type: Phaser.HEADLESS,
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
afterEach(() => {
|
|
|
|
game.phaseInterceptor.restoreOg();
|
|
|
|
});
|
|
|
|
|
|
|
|
beforeEach(() => {
|
|
|
|
game = new GameManager(phaserGame);
|
|
|
|
|
|
|
|
game.override.battleType("double");
|
|
|
|
|
|
|
|
game.override.moveset([Moves.CRAFTY_SHIELD, Moves.SPLASH, Moves.SWORDS_DANCE]);
|
|
|
|
|
|
|
|
game.override.enemySpecies(Species.SNORLAX);
|
2024-09-09 09:55:11 -07:00
|
|
|
game.override.enemyMoveset([Moves.GROWL]);
|
2024-08-13 13:47:32 -07:00
|
|
|
game.override.enemyAbility(Abilities.INSOMNIA);
|
|
|
|
|
|
|
|
game.override.startingLevel(100);
|
|
|
|
game.override.enemyLevel(100);
|
|
|
|
});
|
|
|
|
|
|
|
|
test(
|
|
|
|
"should protect the user and allies from status moves",
|
|
|
|
async () => {
|
|
|
|
await game.startBattle([Species.CHARIZARD, Species.BLASTOISE]);
|
|
|
|
|
|
|
|
const leadPokemon = game.scene.getPlayerField();
|
|
|
|
|
2024-08-22 06:49:33 -07:00
|
|
|
game.move.select(Moves.CRAFTY_SHIELD);
|
2024-08-13 13:47:32 -07:00
|
|
|
|
|
|
|
await game.phaseInterceptor.to(CommandPhase);
|
|
|
|
|
2024-08-22 06:49:33 -07:00
|
|
|
game.move.select(Moves.SPLASH, 1);
|
2024-08-13 13:47:32 -07:00
|
|
|
|
|
|
|
await game.phaseInterceptor.to(BerryPhase, false);
|
|
|
|
|
2024-09-02 22:12:34 -04:00
|
|
|
leadPokemon.forEach(p => expect(p.getStatStage(Stat.ATK)).toBe(0));
|
2024-08-13 13:47:32 -07:00
|
|
|
}, TIMEOUT
|
|
|
|
);
|
|
|
|
|
|
|
|
test(
|
|
|
|
"should not protect the user and allies from attack moves",
|
|
|
|
async () => {
|
2024-09-09 09:55:11 -07:00
|
|
|
game.override.enemyMoveset([Moves.TACKLE]);
|
2024-08-13 13:47:32 -07:00
|
|
|
|
|
|
|
await game.startBattle([Species.CHARIZARD, Species.BLASTOISE]);
|
|
|
|
|
|
|
|
const leadPokemon = game.scene.getPlayerField();
|
|
|
|
|
2024-08-22 06:49:33 -07:00
|
|
|
game.move.select(Moves.CRAFTY_SHIELD);
|
2024-08-13 13:47:32 -07:00
|
|
|
|
|
|
|
await game.phaseInterceptor.to(CommandPhase);
|
|
|
|
|
2024-08-22 06:49:33 -07:00
|
|
|
game.move.select(Moves.SPLASH, 1);
|
2024-08-13 13:47:32 -07:00
|
|
|
|
|
|
|
await game.phaseInterceptor.to(BerryPhase, false);
|
|
|
|
|
|
|
|
expect(leadPokemon.some(p => p.hp < p.getMaxHp())).toBeTruthy();
|
|
|
|
}, TIMEOUT
|
|
|
|
);
|
|
|
|
|
|
|
|
test(
|
|
|
|
"should protect the user and allies from moves that ignore other protection",
|
|
|
|
async () => {
|
|
|
|
game.override.enemySpecies(Species.DUSCLOPS);
|
2024-09-09 09:55:11 -07:00
|
|
|
game.override.enemyMoveset([Moves.CURSE]);
|
2024-08-13 13:47:32 -07:00
|
|
|
|
|
|
|
await game.startBattle([Species.CHARIZARD, Species.BLASTOISE]);
|
|
|
|
|
|
|
|
const leadPokemon = game.scene.getPlayerField();
|
|
|
|
|
2024-08-22 06:49:33 -07:00
|
|
|
game.move.select(Moves.CRAFTY_SHIELD);
|
2024-08-13 13:47:32 -07:00
|
|
|
|
|
|
|
await game.phaseInterceptor.to(CommandPhase);
|
|
|
|
|
2024-08-22 06:49:33 -07:00
|
|
|
game.move.select(Moves.SPLASH, 1);
|
2024-08-13 13:47:32 -07:00
|
|
|
|
|
|
|
await game.phaseInterceptor.to(BerryPhase, false);
|
|
|
|
|
|
|
|
leadPokemon.forEach(p => expect(p.getTag(BattlerTagType.CURSED)).toBeUndefined());
|
|
|
|
}, TIMEOUT
|
|
|
|
);
|
|
|
|
|
|
|
|
test(
|
|
|
|
"should not block allies' self-targeted moves",
|
|
|
|
async () => {
|
|
|
|
await game.startBattle([Species.CHARIZARD, Species.BLASTOISE]);
|
|
|
|
|
|
|
|
const leadPokemon = game.scene.getPlayerField();
|
|
|
|
|
2024-08-22 06:49:33 -07:00
|
|
|
game.move.select(Moves.CRAFTY_SHIELD);
|
2024-08-13 13:47:32 -07:00
|
|
|
|
|
|
|
await game.phaseInterceptor.to(CommandPhase);
|
|
|
|
|
2024-08-22 06:49:33 -07:00
|
|
|
game.move.select(Moves.SWORDS_DANCE, 1);
|
2024-08-13 13:47:32 -07:00
|
|
|
|
|
|
|
await game.phaseInterceptor.to(BerryPhase, false);
|
|
|
|
|
2024-09-02 22:12:34 -04:00
|
|
|
expect(leadPokemon[0].getStatStage(Stat.ATK)).toBe(0);
|
|
|
|
expect(leadPokemon[1].getStatStage(Stat.ATK)).toBe(2);
|
2024-08-13 13:47:32 -07:00
|
|
|
}
|
|
|
|
);
|
|
|
|
});
|