From dbe2f81a02f40ca13fe4cbba2e3cb7d390d1d4ed Mon Sep 17 00:00:00 2001 From: Jay Date: Wed, 4 Jun 2014 11:41:21 +0530 Subject: [PATCH] NEXT: Signature Slash/Buffs Put slash down 10bp to 60 so Persian gets technician boost with the signature bonus. Added 30% -1 defense chance to make it harder to stay on any Slash user (between crit RNG and defense RNG most would find it difficult) --- mods/gennext/moves.js | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/mods/gennext/moves.js b/mods/gennext/moves.js index cb1bc2672c..f92789d30b 100644 --- a/mods/gennext/moves.js +++ b/mods/gennext/moves.js @@ -1239,6 +1239,19 @@ exports.BattleMovedex = { status: 'tox' } }, + slash: { + inherit: true, + basePower: 60, + onBasePower: function (power, user) { + if (user.template.id === 'persian') return power * 1.5; + }, + secondary: { + chance: 30, + boosts: { + def: -1 + } + } + }, sludge: { inherit: true, basePower: 60,