fog cloud shouldn't pummel you with debris
This commit is contained in:
@@ -119,6 +119,7 @@ travel while polymorphed into a grid bug should not move diagonally
|
|||||||
refine cmdassist handling for grid bugs
|
refine cmdassist handling for grid bugs
|
||||||
when casting force bolt spell while engulfed go ahead and use the engulfers
|
when casting force bolt spell while engulfed go ahead and use the engulfers
|
||||||
name in the hit message rather than "it"
|
name in the hit message rather than "it"
|
||||||
|
a fog cloud shouldn't pummel you with debris
|
||||||
|
|
||||||
|
|
||||||
Platform- and/or Interface-Specific Fixes
|
Platform- and/or Interface-Specific Fixes
|
||||||
|
|||||||
10
src/mhitu.c
10
src/mhitu.c
@@ -1702,8 +1702,14 @@ gulpmu(mtmp, mattk) /* monster swallows you, or damage if u.uswallow */
|
|||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case AD_PHYS:
|
case AD_PHYS:
|
||||||
You("are pummeled with debris!");
|
if (mtmp->data == &mons[PM_FOG_CLOUD])
|
||||||
exercise(A_STR, FALSE);
|
You("are laden with moisture and can barely %s!",
|
||||||
|
!breathless(youmonst.data) ? "breathe" :
|
||||||
|
"stay conscious");
|
||||||
|
else {
|
||||||
|
You("are pummeled with debris!");
|
||||||
|
exercise(A_STR, FALSE);
|
||||||
|
}
|
||||||
break;
|
break;
|
||||||
case AD_ACID:
|
case AD_ACID:
|
||||||
if (Acid_resistance) {
|
if (Acid_resistance) {
|
||||||
|
|||||||
Reference in New Issue
Block a user