localization

This commit is contained in:
frutescens 2024-09-29 20:01:24 -07:00
parent 2d6da143e7
commit 7cd1ebfecf
2 changed files with 8 additions and 1 deletions

View File

@ -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. * Retrieves a {@linkcode BattlerTag} based on the provided tag type, turn count, source move, and source ID.
* *

View File

@ -80,5 +80,6 @@
"imprisonOnAdd": "{{pokemonNameWithAffix}} sealed the opponents move(s)!", "imprisonOnAdd": "{{pokemonNameWithAffix}} sealed the opponents move(s)!",
"autotomizeOnAdd": "{{pokemonNameWithAffix}} became nimble!", "autotomizeOnAdd": "{{pokemonNameWithAffix}} became nimble!",
"syrupBombOnAdd": "{{pokemonNameWithAffix}} got covered in sticky, candy syrup!", "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!"
} }