summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/artefact.cc
diff options
context:
space:
mode:
authorChris Oelmueller <chris.oelmueller@gmail.com>2014-03-15 15:41:33 +0100
committerShmuale Mark <shm.mark@gmail.com>2014-03-18 18:36:34 -0400
commit60e41a4e0fca0aae7a395ecb0111d0251aee8002 (patch)
treeda8fcfb966e50aedc00a8ff3e4179f1af9323e7f /crawl-ref/source/artefact.cc
parent50d093e59a7375cc9e7acca778b8bd7ace32d968 (diff)
downloadcrawl-ref-60e41a4e0fca0aae7a395ecb0111d0251aee8002.tar.gz
crawl-ref-60e41a4e0fca0aae7a395ecb0111d0251aee8002.zip
Rescale MR artefact property from 35-99 range to 40/80 steps
Easier to compare to other MR items, more clear in the interaction with MR resistance line on %, gets rid of shops approximately leaking the amount of MR, and also removes a special-cased inscription handling. {MR+} now indicates 40 MR across the board, {MR++} stands for 80. Almost all MR unrands had to be adjusted one way or the other. Several of them had MR in the range 30-50 and were converted to {MR+} (40 MR). Exceptions and other changes are listed below: - Bear Spirit: buffed to 80 from 50 - Chilly/Flaming Death: buffed to 40 from 20 - Elemental Staff: buffed to 80 from 60 - robe of Folly: buffed to -80 from -100 - Four Winds: buffed to 120 from 100 - Jihad: loses its 20 MR - ring of the Mage: buffed to 80 from 50 - Spriggan's Knife: buffed to 40 from 20
Diffstat (limited to 'crawl-ref/source/artefact.cc')
-rw-r--r--crawl-ref/source/artefact.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/artefact.cc b/crawl-ref/source/artefact.cc
index 4eaecb68f8..31b8d6a9f1 100644
--- a/crawl-ref/source/artefact.cc
+++ b/crawl-ref/source/artefact.cc
@@ -933,7 +933,7 @@ static void _get_randart_properties(const item_def &item,
&& one_chance_in(4 + power_level)
&& (aclass != OBJ_JEWELLERY || atype != RING_PROTECTION_FROM_MAGIC))
{
- proprt[ARTP_MAGIC] = 35 + random2(65);
+ proprt[ARTP_MAGIC] = one_chance_in(3) ? 2 : 1;
power_level++;
}