SuperSpyroDragon64 submitted a new resource:
Normal-Type Attacks without STAB match your first Type instead - Normal moves used by non-Normal type Pokemon match your first Type instead
Read more about this resource...
Normal-Type Attacks without STAB match your first Type instead - Normal moves used by non-Normal type Pokemon match your first Type instead
Just replace the "pbCalcType(user)" code with this.
Code:def pbCalcType(user) @powerBoost = false type = @calcType userTypes = user.pbTypes(true) ret = pbBaseType(user) if ret == :NORMAL && !user.pbHasType?(:NORMAL) ret = userTypes[0] end if ret && GameData::Type.exists?(:ELECTRIC) if @battle.field.effects[PBEffects::IonDeluge] && ret == :NORMAL ret = :ELECTRIC @powerBoost = false end if user.effects[PBEffects::Electrify]...
Read more about this resource...