Skip to content

Commit

Permalink
Cruel Blow buffed.
Browse files Browse the repository at this point in the history
  • Loading branch information
Quirk committed Jan 3, 2022
1 parent 1938fda commit 8428062
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions src/cmd1.c
Expand Up @@ -4444,10 +4444,9 @@ void py_attack_aux(int y, int x, int attack_type)
&& (crit_bonus_dice > 0) && (net_dam > 0)
&& !(r_ptr->flags1 & (RF1_RES_CRIT)))
{
// Slightly magical. Function that caps out before 20
// (Morgoth will) but grows quickly early on, and doesn't
// need math.h
cruel_blow_multiplier = (20 - (40 / (crit_bonus_dice + 2)));
// Slightly magical. Function that caps out before 30
// but grows quickly early on, and doesn't need math.h
cruel_blow_multiplier = (30 - (60 / (crit_bonus_dice + 2)));
if (skill_check(PLAYER, cruel_blow_multiplier,
monster_skill(m_ptr, S_WIL), m_ptr)
> 0)
Expand Down

0 comments on commit 8428062

Please sign in to comment.