Changed Greninja's forms to add one with the Battle Bond ability

This commit is contained in:
Maruno17
2020-09-12 16:35:56 +01:00
parent a756539651
commit e4436c0fa3
5 changed files with 15 additions and 5 deletions

View File

@@ -1967,7 +1967,7 @@ class PokeBattle_Move_0C0 < PokeBattle_Move
def pbNumHits(user,targets)
if isConst?(@id,PBMoves,:WATERSHURIKEN) &&
user.isSpecies?(:GRENINJA) && user.form==1
user.isSpecies?(:GRENINJA) && user.form==2
return 3
end
hitChances = [2,2,3,3,4,5]
@@ -1978,7 +1978,7 @@ class PokeBattle_Move_0C0 < PokeBattle_Move
def pbBaseDamage(baseDmg,user,target)
if isConst?(@id,PBMoves,:WATERSHURIKEN) &&
user.isSpecies?(:GRENINJA) && user.form==1
user.isSpecies?(:GRENINJA) && user.form==2
return 20
end
return super