From 45bd98f10e2374376e0867fb476fd35b678e57c8 Mon Sep 17 00:00:00 2001 From: Alex Smith Date: Thu, 29 May 2025 18:58:40 +0100 Subject: [PATCH] Change #wizmondiff to account for soldier ant, killer bee changes --- src/mondata.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/mondata.c b/src/mondata.c index e7710f01a..4c2cea0ce 100644 --- a/src/mondata.c +++ b/src/mondata.c @@ -479,6 +479,12 @@ mstrength(struct permonst *ptr) if (!strcmp(ptr->pmnames[NEUTRAL], "leprechaun")) n -= 2; + /* Soldier ants and killer bees are underestimated by the formula, + so have an artificial +1 difficulty */ + if (!strcmp(ptr->pmnames[NEUTRAL], "killer bee") || + !strcmp(ptr->pmnames[NEUTRAL], "soldier ant")) + tmp += 1; + /* finally, adjust the monster level 0 <= n <= 24 (approx.) */ if (n == 0) tmp -= 1;