From e01d9a86ed7560cf23991894ca0631dc25991e89 Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Mon, 31 May 2021 11:44:56 +0200 Subject: [PATCH] wandering Canyon Hags --- monstergen.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/monstergen.cpp b/monstergen.cpp index 78271e94..9e0a206d 100644 --- a/monstergen.cpp +++ b/monstergen.cpp @@ -617,6 +617,9 @@ EX void wandering() { else if(c->land == laJungle && wchance(items[itRuby], 40)) 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)) c->monst = hrand(10) ? moRanger : moEagle;