From 4106eaccbac4348b78e33fd1ef3c6c85400f6f53 Mon Sep 17 00:00:00 2001 From: haranp Date: Mon, 26 Mar 2007 16:52:19 +0000 Subject: Gave Tiamat resistance to whatever her current colour is (I prefer this to the omni-immune approach.) Darshan, seeing as I don't have a clue how attack strength is actually coded, can you boost up her melee attack? git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@1104 c06c8d41-db1a-0410-9941-cceddc491573 --- crawl-ref/source/mon-util.cc | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/crawl-ref/source/mon-util.cc b/crawl-ref/source/mon-util.cc index 4eb797b81f..3b41b62469 100644 --- a/crawl-ref/source/mon-util.cc +++ b/crawl-ref/source/mon-util.cc @@ -285,8 +285,9 @@ unsigned long get_mons_class_resists(int mc) unsigned long get_mons_resists(const monsters *mon) { unsigned long resists = get_mons_class_resists(mon->type); - if (mons_genus(mon->type) == MONS_DRACONIAN - && mon->type != MONS_DRACONIAN) + if ((mons_genus(mon->type) == MONS_DRACONIAN && + mon->type != MONS_DRACONIAN) || + mon->type == MONS_TIAMAT) { monster_type draco_species = draco_subspecies(mon); if (draco_species != mon->type) -- cgit v1.2.3-54-g00ecf