mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-07-18 06:12:19 +02:00
Remove placeholder locale keys and SPLASH_ONLY
This commit is contained in:
parent
177046fa31
commit
5a4700923e
@ -69,8 +69,5 @@
|
|||||||
"cursedLapse": "{{pokemonNameWithAffix}}は のろわれている!",
|
"cursedLapse": "{{pokemonNameWithAffix}}は のろわれている!",
|
||||||
"stockpilingOnAdd": "{{pokemonNameWithAffix}}は {{stockpiledCount}}つ たくわえた!",
|
"stockpilingOnAdd": "{{pokemonNameWithAffix}}は {{stockpiledCount}}つ たくわえた!",
|
||||||
"disabledOnAdd": "{{pokemonNameWithAffix}}の\n{{moveName}}\nを 封じこめた!",
|
"disabledOnAdd": "{{pokemonNameWithAffix}}の\n{{moveName}}\nを 封じこめた!",
|
||||||
"disabledLapse": "{{pokemonNameWithAffix}}の\nかなしばりが 解けた!",
|
"disabledLapse": "{{pokemonNameWithAffix}}の\nかなしばりが 解けた!"
|
||||||
"substituteOnAdd": "{{pokemonNameWithAffix}} put in a substitute!",
|
|
||||||
"substituteOnHit": "The substitute took damage for {{pokemonNameWithAffix}}!",
|
|
||||||
"substituteOnRemove": "{{pokemonNameWithAffix}}'s substitute faded!"
|
|
||||||
}
|
}
|
||||||
|
@ -14,7 +14,6 @@ import { Command } from "#app/ui/command-ui-handler";
|
|||||||
import { Mode } from "#app/ui/ui";
|
import { Mode } from "#app/ui/ui";
|
||||||
import Phaser from "phaser";
|
import Phaser from "phaser";
|
||||||
import { afterEach, beforeAll, beforeEach, describe, expect, it, vi } from "vitest";
|
import { afterEach, beforeAll, beforeEach, describe, expect, it, vi } from "vitest";
|
||||||
import { SPLASH_ONLY } from "#test/utils/testUtils";
|
|
||||||
|
|
||||||
|
|
||||||
const TIMEOUT = 20 * 1000; // 20 sec timeout
|
const TIMEOUT = 20 * 1000; // 20 sec timeout
|
||||||
@ -41,7 +40,7 @@ describe("Moves - Substitute", () => {
|
|||||||
.moveset([Moves.SUBSTITUTE, Moves.SWORDS_DANCE, Moves.TACKLE, Moves.SPLASH])
|
.moveset([Moves.SUBSTITUTE, Moves.SWORDS_DANCE, Moves.TACKLE, Moves.SPLASH])
|
||||||
.enemySpecies(Species.SNORLAX)
|
.enemySpecies(Species.SNORLAX)
|
||||||
.enemyAbility(Abilities.INSOMNIA)
|
.enemyAbility(Abilities.INSOMNIA)
|
||||||
.enemyMoveset(SPLASH_ONLY)
|
.enemyMoveset(Moves.SPLASH)
|
||||||
.startingLevel(100)
|
.startingLevel(100)
|
||||||
.enemyLevel(100);
|
.enemyLevel(100);
|
||||||
});
|
});
|
||||||
|
Loading…
Reference in New Issue
Block a user