1
0
Fork 0
mirror of https://codeberg.org/noisytoot/notnotdnethack.git synced 2025-05-03 13:55:10 +01:00

Serpent priests also grant 9 dr and half damage

This commit is contained in:
chris 2023-11-12 13:23:33 -05:00
parent 9becfb5836
commit a8f7f32cd8
2 changed files with 6 additions and 0 deletions

View file

@ -1143,6 +1143,9 @@ struct monst *mon;
base += 4;
}
if(flags.spriest_level && is_demon(mon->data) && is_lawful_mon(mon) && !mon->mpeaceful)
base += 9;
if(mon->mtame){
if(active_glyph(IMPURITY)) base += 3;
if(Role_if(PM_HEALER))

View file

@ -18929,5 +18929,8 @@ boolean magical;
else
dmg = (dmg + 1) / 2;
}
/* Priests of Asmodeus */
if(mdef != &youmonst && flags.spriest_level && is_demon(mdef->data) && is_lawful_mon(mdef) && !mdef->mpeaceful)
dmg = (dmg + 1) / 2;
return dmg;
}