mirror of
https://github.com/Ninjdai1/pokeemerald.git
synced 2025-01-26 21:33:53 +01:00
Document magic number from atk04_critcalc
This commit is contained in:
parent
901a83d249
commit
106a89eace
@ -1276,8 +1276,8 @@ static void atk04_critcalc(void)
|
||||
+ 2 * (holdEffect == HOLD_EFFECT_LUCKY_PUNCH && gBattleMons[gBattlerAttacker].species == SPECIES_CHANSEY)
|
||||
+ 2 * (holdEffect == HOLD_EFFECT_STICK && gBattleMons[gBattlerAttacker].species == SPECIES_FARFETCHD);
|
||||
|
||||
if (critChance > 4)
|
||||
critChance = 4;
|
||||
if (critChance > ARRAY_COUNT(sCriticalHitChance) - 1 )
|
||||
critChance = ARRAY_COUNT(sCriticalHitChance) - 1;
|
||||
|
||||
if ((gBattleMons[gBattlerTarget].ability != ABILITY_BATTLE_ARMOR && gBattleMons[gBattlerTarget].ability != ABILITY_SHELL_ARMOR)
|
||||
&& !(gStatuses3[gBattlerAttacker] & STATUS3_CANT_SCORE_A_CRIT)
|
||||
|
Loading…
x
Reference in New Issue
Block a user