From 38db6fd2b3e2ef2b81563a3dbdfabbefa6528b2f Mon Sep 17 00:00:00 2001 From: The Immortal Date: Wed, 28 Jan 2015 19:50:25 +0400 Subject: [PATCH] Random Battle: Reject Shadow Claw with Shadow Ball Should have been done with 66615c5331daef6068bff4b13181f7f235da9678. This is for Aegislash. --- data/scripts.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/data/scripts.js b/data/scripts.js index cbe26f4b66..d83b7c1b4a 100644 --- a/data/scripts.js +++ b/data/scripts.js @@ -1155,6 +1155,9 @@ exports.BattleScripts = { case 'shadowforce': case 'phantomforce': case 'shadowsneak': if (hasMove['shadowclaw']) rejected = true; break; + case 'shadowclaw': + if (hasMove['shadowball']) rejected = true; + break; case 'ironhead': if (hasMove['flashcannon']) rejected = true; break;