From 24894dfd3ccc10274348f612d02549ff74c7bbd8 Mon Sep 17 00:00:00 2001 From: Marty-D Date: Fri, 15 Jan 2016 16:35:51 -0500 Subject: [PATCH] Add Ghost Curse message --- js/battle.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/js/battle.js b/js/battle.js index d2f4e4ce3..57d5612bf 100644 --- a/js/battle.js +++ b/js/battle.js @@ -3328,6 +3328,9 @@ var Battle = (function () { case 'baddreams': actions += "" + poke.getName() + " is tormented!"; break; + case 'curse': + actions += "" + poke.getName() + " is afflicted by the curse!"; + break; case 'nightmare': actions += "" + poke.getName() + " is locked in a nightmare!"; break;