From 5a4700923e7a997dffb5382ef090526767f3e4d9 Mon Sep 17 00:00:00 2001 From: innerthunder Date: Mon, 9 Sep 2024 11:43:01 -0700 Subject: [PATCH] Remove placeholder locale keys and SPLASH_ONLY --- src/locales/ja/battler-tags.json | 5 +---- src/test/moves/substitute.test.ts | 3 +-- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/src/locales/ja/battler-tags.json b/src/locales/ja/battler-tags.json index aabfe10159f..2b6382a3a9f 100644 --- a/src/locales/ja/battler-tags.json +++ b/src/locales/ja/battler-tags.json @@ -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かなしばりが 解けた!" } diff --git a/src/test/moves/substitute.test.ts b/src/test/moves/substitute.test.ts index caf008232f7..3976247d489 100644 --- a/src/test/moves/substitute.test.ts +++ b/src/test/moves/substitute.test.ts @@ -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); });