1
0
Fork 0
mirror of https://codeberg.org/noisytoot/notnotdnethack.git synced 2025-05-14 19:45:04 +01:00

Uvuudaum tweak:

Give special messages for peaceful uvuudaum.
This commit is contained in:
Chris-plus-alphanumericgibberish 2014-06-10 02:43:14 -04:00
parent a36f9a7cf3
commit 033b4a4ae9
2 changed files with 5 additions and 2 deletions

View file

@ -137,7 +137,7 @@ lookat(x, y, buf, monbuf)
((mtmp->isshk && accurate)
? "tail of " : "tail of a ") : "",
(mtmp->mtame && accurate) ? "tame " :
(mtmp->mpeaceful && accurate) ? "peaceful " : "",
(mtmp->mpeaceful && accurate) ? (mtmp->data==&mons[PM_UVUUDAUM]) ? "meditating " : "peaceful " : "",
name);
if (u.ustuck == mtmp)
Strcat(buf, (Upolyd && sticks(youmonst.data)) ?

View file

@ -439,7 +439,10 @@ register struct monst *mtmp;
}
#endif
}
else if (mtmp->mpeaceful) Strcat(info, ", peaceful");
else if (mtmp->mpeaceful){
if(mtmp->data == &mons[PM_UVUUDAUM]) Strcat(info, ", in contemplative meditation");
else Strcat(info, ", peaceful");
}
else if (mtmp->mtraitor) Strcat(info, ", traitor");
else if (mtmp->mferal) Strcat(info, ", feral");
if (mtmp->meating) Strcat(info, ", eating");