swallowing zombies/mummies
This commit is contained in:
@@ -403,6 +403,7 @@ spells shouldn't do negative damage
|
|||||||
when reading spellbooks, don't "continue studying" wrong book if original one
|
when reading spellbooks, don't "continue studying" wrong book if original one
|
||||||
gets destroyed after previous reading attempt has been interrupted
|
gets destroyed after previous reading attempt has been interrupted
|
||||||
correctly handle polymorphed quest leader
|
correctly handle polymorphed quest leader
|
||||||
|
swallowing zombies/mummies whole makes you sick, like when eating them normally
|
||||||
|
|
||||||
|
|
||||||
Platform- and/or Interface-Specific Fixes
|
Platform- and/or Interface-Specific Fixes
|
||||||
|
|||||||
+11
-1
@@ -1863,8 +1863,18 @@ use_weapon:
|
|||||||
if (mon->data == &mons[PM_SHADE])
|
if (mon->data == &mons[PM_SHADE])
|
||||||
Your("attempt to surround %s is harmless.",
|
Your("attempt to surround %s is harmless.",
|
||||||
mon_nam(mon));
|
mon_nam(mon));
|
||||||
else
|
else {
|
||||||
sum[i]= gulpum(mon,mattk);
|
sum[i]= gulpum(mon,mattk);
|
||||||
|
if (sum[i] == 2 &&
|
||||||
|
(mon->data->mlet == S_ZOMBIE ||
|
||||||
|
mon->data->mlet == S_MUMMY) &&
|
||||||
|
rn2(5) &&
|
||||||
|
!Sick_resistance) {
|
||||||
|
You_feel("%ssick.",
|
||||||
|
(Sick) ? "very " : "");
|
||||||
|
mdamageu(mon, rnd(8));
|
||||||
|
}
|
||||||
|
}
|
||||||
} else
|
} else
|
||||||
missum(mon, mattk);
|
missum(mon, mattk);
|
||||||
break;
|
break;
|
||||||
|
|||||||
Reference in New Issue
Block a user