892
edits
(rollback) |
(let's see if we can concat) |
||
Line 244: | Line 244: | ||
if normalChance == 0 then normalMaxHit = 0 end | if normalChance == 0 then normalMaxHit = 0 end | ||
if monster.hasSpecialAttack then | if monster.hasSpecialAttack then | ||
return math.max(specialMaxHit, normalMaxHit) | return math.max(specialMaxHit, normalMaxHit)..'*' | ||
else | else | ||
return math.max(specialMaxHit, normalMaxHit) | return math.max(specialMaxHit, normalMaxHit) |
edits