1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-10-19 07:57:39 +00:00

wandering monsters and tkills

This commit is contained in:
Zeno Rogue
2018-01-04 21:24:03 +01:00
parent 9c86b073bb
commit e21d8d79fc
3 changed files with 25 additions and 3 deletions

View File

@@ -548,6 +548,12 @@ void wandering() {
else if(c->land == laTerracotta && wchance(items[itTerra], 40))
c->monst = moJiangshi;
else if(c->land == laSwitch && wchance(items[itSwitch], 80))
c->monst = active_switch();
else if(c->land == laRuins && wchance(items[itRuins], 80))
c->monst = genRuinMonster(c);
else if(c->land == laCaribbean && wchance(items[itPirate], 30))
c->monst = moPirate;