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!" }