1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-06-18 11:19:59 +00:00

summoning sickness for Zombies

This commit is contained in:
Zeno Rogue 2018-03-24 15:21:41 +01:00
parent b8d2d0d878
commit a06ae6c9d5

View File

@ -5327,7 +5327,9 @@ void specialMoves() {
cell *gr = gtab[hrand(gravenum)];
gr->wall = waAncientGrave;
gr->monst = moGhost;
gr->stuntime = 1;
ztab[hrand(zombienum)]->monst = moZombie;
ztab[hrand(zombienum)]->stuntime = 1;
addMessage(XLAT("%The1 raises some undead!", m));
playSound(c, "necromancy");
}