From a28573aa3b3002725d19be1fbccfd9eb0c2a52d7 Mon Sep 17 00:00:00 2001 From: V4Victini Date: Sat, 16 Nov 2013 02:19:16 -0500 Subject: [PATCH] Add Powder messages --- js/battle.js | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/js/battle.js b/js/battle.js index 2970156f1..444d97031 100644 --- a/js/battle.js +++ b/js/battle.js @@ -3836,6 +3836,9 @@ function Battle(frame, logFrame, noPreload) { case 'mimic': actions += '' + poke.getName() + ' learned ' + Tools.escapeHTML(args[3]) + '!'; break; + case 'powder': + actions += '' + poke.getName() + ' is covered in powder!'; + break; default: actions += "" + poke.getName() + "'s " + effect.name + " started!"; } @@ -4123,6 +4126,9 @@ function Battle(frame, logFrame, noPreload) { case 'matblock': actions += '' + Tools.escapeHTML(args[3]) + ' was blocked by the kicked-up mat!'; break; + case 'powder': + actions += '' + 'When the flame touched the powder on the Pokémon, it exploded!'; + break; // ability activations case 'sturdy':