1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-06-16 02:09:59 +00:00

wandering Canyon Hags

This commit is contained in:
Zeno Rogue 2021-05-31 11:44:56 +02:00
parent 26b05d18be
commit e01d9a86ed

View File

@ -617,6 +617,9 @@ EX void wandering() {
else if(c->land == laJungle && wchance(items[itRuby], 40)) else if(c->land == laJungle && wchance(items[itRuby], 40))
c->monst = hrand(10) ? moMonkey : moEagle; c->monst = hrand(10) ? moMonkey : moEagle;
else if(c->land == laCursed && wchance(items[itCursed], 40))
c->monst = moHexer;
else if(c->land == laMirrorOld && wchance(items[itShard], 15)) else if(c->land == laMirrorOld && wchance(items[itShard], 15))
c->monst = hrand(10) ? moRanger : moEagle; c->monst = hrand(10) ? moRanger : moEagle;