1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-12-25 01:20:37 +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)]; cell *gr = gtab[hrand(gravenum)];
gr->wall = waAncientGrave; gr->wall = waAncientGrave;
gr->monst = moGhost; gr->monst = moGhost;
gr->stuntime = 1;
ztab[hrand(zombienum)]->monst = moZombie; ztab[hrand(zombienum)]->monst = moZombie;
ztab[hrand(zombienum)]->stuntime = 1;
addMessage(XLAT("%The1 raises some undead!", m)); addMessage(XLAT("%The1 raises some undead!", m));
playSound(c, "necromancy"); playSound(c, "necromancy");
} }