Use Splash move text from move triggers

This commit is contained in:
Madmadness65 2025-02-21 05:04:42 -06:00
parent b936eadedf
commit 3e604ad7c0

View File

@ -1542,7 +1542,7 @@ export class SurviveDamageAttr extends ModifiedDamageAttr {
export class SplashAttr extends MoveEffectAttr { export class SplashAttr extends MoveEffectAttr {
apply(user: Pokemon, target: Pokemon, move: Move, args: any[]): boolean { apply(user: Pokemon, target: Pokemon, move: Move, args: any[]): boolean {
globalScene.queueMessage(i18next.t("battlerTags:splashLapse")); globalScene.queueMessage(i18next.t("moveTriggers:splash"));
return true; return true;
} }
} }