From 2365944fa63c720b97904bf9d9c9263693a86063 Mon Sep 17 00:00:00 2001 From: j-p-e-g Date: Wed, 25 Feb 2009 06:53:51 +0000 Subject: * Describe monsters with hellfire resistance (imps) as "extremely resistant to fire" when viewing them. * Don't equip Venom Mages with a short sword anymore since Sting is really powerful and getting a weapon to poison is not that hard. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@9211 c06c8d41-db1a-0410-9941-cceddc491573 --- crawl-ref/source/describe.cc | 3 +++ 1 file changed, 3 insertions(+) (limited to 'crawl-ref/source/describe.cc') diff --git a/crawl-ref/source/describe.cc b/crawl-ref/source/describe.cc index 2453580e1c..c8fc8ba202 100644 --- a/crawl-ref/source/describe.cc +++ b/crawl-ref/source/describe.cc @@ -2603,6 +2603,9 @@ static std::string _monster_stat_description(const monsters& mon) for (unsigned int i = 0; i < ARRAYSZ(resists); ++i) { int level = resist.get_resist_level(resists[i]); + if (resists[i] == MR_RES_FIRE && resist.hellfire) + level = 3; + if (level != 0) { const char* attackname = _get_resist_name(resists[i]); -- cgit v1.2.3-54-g00ecf