mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-07-04 07:22:19 +02:00
Fixed syntactical issues
This commit is contained in:
parent
a19b21919f
commit
8348e400ab
@ -116,7 +116,7 @@ describe("Moves - Chilly Reception", () => {
|
|||||||
});
|
});
|
||||||
|
|
||||||
it("should succeed without message if called indirectly", async () => {
|
it("should succeed without message if called indirectly", async () => {
|
||||||
vi.spyOn(RandomMoveAttr.prototype, "getMoveOverride").mockReturnValue(MoveId.CHILLY_RECEPTION);
|
vi.spyOn(RandomMoveAttr.prototype, "getMove").mockReturnValue(MoveId.CHILLY_RECEPTION);
|
||||||
await game.classicMode.startBattle([SpeciesId.SLOWKING, SpeciesId.MEOWTH]);
|
await game.classicMode.startBattle([SpeciesId.SLOWKING, SpeciesId.MEOWTH]);
|
||||||
|
|
||||||
const [slowking, meowth] = game.scene.getPlayerParty();
|
const [slowking, meowth] = game.scene.getPlayerParty();
|
||||||
|
@ -30,7 +30,7 @@ describe("Move - Nature Power", () => {
|
|||||||
game.override
|
game.override
|
||||||
.ability(AbilityId.BALL_FETCH)
|
.ability(AbilityId.BALL_FETCH)
|
||||||
.battleStyle("single")
|
.battleStyle("single")
|
||||||
.disableCrits()
|
.criticalHits(false)
|
||||||
.enemySpecies(SpeciesId.MAGIKARP)
|
.enemySpecies(SpeciesId.MAGIKARP)
|
||||||
.enemyAbility(AbilityId.NO_GUARD)
|
.enemyAbility(AbilityId.NO_GUARD)
|
||||||
.enemyMoveset(MoveId.SPLASH)
|
.enemyMoveset(MoveId.SPLASH)
|
||||||
|
Loading…
Reference in New Issue
Block a user