Remove placeholder locale keys and SPLASH_ONLY

This commit is contained in:
innerthunder 2024-09-09 11:43:01 -07:00
parent 177046fa31
commit 5a4700923e
2 changed files with 2 additions and 6 deletions

View File

@ -69,8 +69,5 @@
"cursedLapse": "{{pokemonNameWithAffix}}は のろわれている!",
"stockpilingOnAdd": "{{pokemonNameWithAffix}}は {{stockpiledCount}}つ たくわえた!",
"disabledOnAdd": "{{pokemonNameWithAffix}}の\n{{moveName}}\nを 封じこめた",
"disabledLapse": "{{pokemonNameWithAffix}}の\nかなしばりが 解けた",
"substituteOnAdd": "{{pokemonNameWithAffix}} put in a substitute!",
"substituteOnHit": "The substitute took damage for {{pokemonNameWithAffix}}!",
"substituteOnRemove": "{{pokemonNameWithAffix}}'s substitute faded!"
"disabledLapse": "{{pokemonNameWithAffix}}の\nかなしばりが 解けた"
}

View File

@ -14,7 +14,6 @@ import { Command } from "#app/ui/command-ui-handler";
import { Mode } from "#app/ui/ui";
import Phaser from "phaser";
import { afterEach, beforeAll, beforeEach, describe, expect, it, vi } from "vitest";
import { SPLASH_ONLY } from "#test/utils/testUtils";
const TIMEOUT = 20 * 1000; // 20 sec timeout
@ -41,7 +40,7 @@ describe("Moves - Substitute", () => {
.moveset([Moves.SUBSTITUTE, Moves.SWORDS_DANCE, Moves.TACKLE, Moves.SPLASH])
.enemySpecies(Species.SNORLAX)
.enemyAbility(Abilities.INSOMNIA)
.enemyMoveset(SPLASH_ONLY)
.enemyMoveset(Moves.SPLASH)
.startingLevel(100)
.enemyLevel(100);
});