From 7cd1ebfecf51970312d12814a45bb8b38b304a30 Mon Sep 17 00:00:00 2001 From: frutescens Date: Sun, 29 Sep 2024 20:01:24 -0700 Subject: [PATCH] localization --- src/data/battler-tags.ts | 6 ++++++ src/locales/en/battler-tags.json | 3 ++- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/src/data/battler-tags.ts b/src/data/battler-tags.ts index d8094f96368..f4c6159460a 100644 --- a/src/data/battler-tags.ts +++ b/src/data/battler-tags.ts @@ -2656,6 +2656,12 @@ export class SyrupBombTag extends BattlerTag { } } +export class TelekinesisTag extends BattlerTag { + constructor() { + super(BattlerTagType.TELEKINESIS, BattlerTagLapseType.PRE_MOVE, 3, undefined, undefined, true); + } +} + /** * Retrieves a {@linkcode BattlerTag} based on the provided tag type, turn count, source move, and source ID. * diff --git a/src/locales/en/battler-tags.json b/src/locales/en/battler-tags.json index bb4b708b25f..ae6835d3d03 100644 --- a/src/locales/en/battler-tags.json +++ b/src/locales/en/battler-tags.json @@ -80,5 +80,6 @@ "imprisonOnAdd": "{{pokemonNameWithAffix}} sealed the opponents move(s)!", "autotomizeOnAdd": "{{pokemonNameWithAffix}} became nimble!", "syrupBombOnAdd": "{{pokemonNameWithAffix}} got covered in sticky, candy syrup!", - "syrupBombLapse": "The sticky syrup slowed down {{pokemonNameWithAffix}}!" + "syrupBombLapse": "The sticky syrup slowed down {{pokemonNameWithAffix}}!", + "telekinesisOnAdd": "{{pokemonNameWithAffix}} was hurled into the air!" }