Fix Punishment dmg
This commit is contained in:
parent
1d8cc9b741
commit
149b3453f6
1 changed files with 1 additions and 1 deletions
|
@ -5186,7 +5186,7 @@ static u16 CalcMoveBasePower(u16 move, u8 battlerAtk, u8 battlerDef)
|
||||||
basePower = sHeatCrushPowerTable[i];
|
basePower = sHeatCrushPowerTable[i];
|
||||||
break;
|
break;
|
||||||
case EFFECT_PUNISHMENT:
|
case EFFECT_PUNISHMENT:
|
||||||
basePower = 60 + (CountBattlerStatIncreases(battlerAtk, FALSE) * 20);
|
basePower = 60 + (CountBattlerStatIncreases(battlerDef, FALSE) * 20);
|
||||||
if (basePower > 200)
|
if (basePower > 200)
|
||||||
basePower = 200;
|
basePower = 200;
|
||||||
break;
|
break;
|
||||||
|
|
Loading…
Reference in a new issue