Added effectiveness test for ghost on normal

This commit is contained in:
Wlowscha 2025-02-02 17:31:53 +01:00
parent 60b43b1f3e
commit b98d767e01
No known key found for this signature in database
GPG Key ID: 3C8F1AD330565D04

View File

@ -73,6 +73,10 @@ describe("Moves - Type Effectiveness", () => {
() => testMoveEffectiveness(game, Moves.THUNDERBOLT, Species.BLASTOISE, 2)
);
it("Ghost-type attacks have no effect on Normal-type Pokemon",
() => testMoveEffectiveness(game, Moves.SHADOW_BALL, Species.URSALUNA, 0)
);
it("Electric-type attacks are doubly super-effective against Water/Flying-type Pokemon",
() => testMoveEffectiveness(game, Moves.THUNDERBOLT, Species.GYARADOS, 4)
);