From c81bb0e5abdfebb7ab02886fb8f51eeaeecaf2bf Mon Sep 17 00:00:00 2001 From: V4Victini Date: Sat, 14 Dec 2013 12:32:03 -0500 Subject: [PATCH] Add Electrify and Ion Deluge messages --- js/battle.js | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/js/battle.js b/js/battle.js index 74f938d21..60f883589 100644 --- a/js/battle.js +++ b/js/battle.js @@ -3978,6 +3978,9 @@ function Battle(frame, logFrame, noPreload) { case 'matblock': actions += '' + poke.getName() + ' intends to flip up a mat and block incoming attacks!'; break; + case 'electrify': + actions += '' + poke.getName() + '\'s moves have been electrified!'; + break; } break; case '-singlemove': @@ -4364,6 +4367,9 @@ function Battle(frame, logFrame, noPreload) { case 'payday': actions += 'Coins were scattered everywhere!'; break; + case 'iondeluge': + actions += 'A deluge of ions showers the battlefield!'; + break; default: actions += ''+effect.name+' hit!'; break;