From 4c14df18b28585c251794c95f2de5c81f006281c Mon Sep 17 00:00:00 2001 From: dshaligram Date: Fri, 28 Dec 2007 13:43:44 +0000 Subject: Reduced contamination from potions of resistance. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@3126 c06c8d41-db1a-0410-9941-cceddc491573 --- crawl-ref/source/it_use2.cc | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'crawl-ref') diff --git a/crawl-ref/source/it_use2.cc b/crawl-ref/source/it_use2.cc index e78f3375e6..e7a3a64bcc 100644 --- a/crawl-ref/source/it_use2.cc +++ b/crawl-ref/source/it_use2.cc @@ -344,8 +344,9 @@ bool potion_effect( potion_type pot_eff, int pow ) you.duration[DUR_RESIST_COLD] += random2(pow) + 10; you.duration[DUR_RESIST_POISON] += random2(pow) + 10; you.duration[DUR_INSULATION] += random2(pow) + 10; - // one contamination point for each resist - contaminate_player(4); + // Just one point of contamination. These potions are really rare, + // and contamination is nastier. + contaminate_player(1); break; case NUM_POTIONS: -- cgit v1.2.3-54-g00ecf