mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-07-08 01:12:17 +02:00
update tests 2
This commit is contained in:
parent
8b286a03af
commit
eb9ce79814
@ -198,7 +198,7 @@ describe("The Strong Stuff - Mystery Encounter", () => {
|
||||
expect(scene.getCurrentPhase()?.constructor.name).toBe(CommandPhase.name);
|
||||
expect(enemyField.length).toBe(1);
|
||||
expect(enemyField[0].species.speciesId).toBe(Species.SHUCKLE);
|
||||
expect(enemyField[0].summonData.statStages).toEqual([0, 2, 0, 2, 0, 0, 0]);
|
||||
expect(enemyField[0].summonData.statStages).toEqual([0, 1, 0, 1, 0, 0, 0]);
|
||||
const shuckleItems = enemyField[0].getHeldItems();
|
||||
expect(shuckleItems.length).toBe(5);
|
||||
expect(shuckleItems.find(m => m instanceof BerryModifier && m.berryType === BerryType.SITRUS)?.stackCount).toBe(
|
||||
|
@ -178,10 +178,10 @@ describe("Trash to Treasure - Mystery Encounter", () => {
|
||||
expect(enemyField.length).toBe(1);
|
||||
expect(enemyField[0].species.speciesId).toBe(Species.GARBODOR);
|
||||
expect(enemyField[0].moveset).toEqual([
|
||||
new PokemonMove(Moves.PAYBACK),
|
||||
new PokemonMove(Moves.GUNK_SHOT),
|
||||
new PokemonMove(Moves.STOMPING_TANTRUM),
|
||||
new PokemonMove(Moves.DRAIN_PUNCH),
|
||||
new PokemonMove(Moves.HAMMER_ARM),
|
||||
new PokemonMove(Moves.PAYBACK),
|
||||
]);
|
||||
|
||||
// Should have used moves pre-battle
|
||||
|
Loading…
Reference in New Issue
Block a user