summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/shopping.cc
diff options
context:
space:
mode:
authorShmuale Mark <shm.mark@gmail.com>2014-07-06 10:09:21 -0400
committerShmuale Mark <shm.mark@gmail.com>2014-07-06 19:45:38 -0400
commit0b870a835f2875b130ca6932827c255fa48073dd (patch)
treefaa7c9d4affffb2478238448d75d01eb82ac0172 /crawl-ref/source/shopping.cc
parent747894c923de6c2e841bc03e33b0cc2723d8c319 (diff)
downloadcrawl-ref-0b870a835f2875b130ca6932827c255fa48073dd.tar.gz
crawl-ref-0b870a835f2875b130ca6932827c255fa48073dd.zip
Replace potions of paralysis with potions of cancellation.
!para was sort of problematic in that in combat, it would basically be a game-over effect, especially at the low HP people generally panic-quaff at, and almost entirely harmless outside of combat. Neither effect is very interesting. Dispelling has the potential to be bad, if you hadn't identified it and had used some other buffing potions, and lends itself to many more interesting tactical situations. "Cancellation" is just the first thing that popped into my head; feel free to send buckets of paint to recolour the bikeshed with.
Diffstat (limited to 'crawl-ref/source/shopping.cc')
-rw-r--r--crawl-ref/source/shopping.cc3
1 files changed, 1 insertions, 2 deletions
diff --git a/crawl-ref/source/shopping.cc b/crawl-ref/source/shopping.cc
index af54b72753..64fd5f2333 100644
--- a/crawl-ref/source/shopping.cc
+++ b/crawl-ref/source/shopping.cc
@@ -1432,6 +1432,7 @@ unsigned int item_value(item_def item, bool ident)
case POT_MAGIC:
case POT_INVISIBILITY:
+ case POT_CANCELLATION:
valued += 55;
break;
@@ -1462,7 +1463,6 @@ unsigned int item_value(item_def item, bool ident)
case POT_BLOOD:
case POT_PORRIDGE:
case POT_CONFUSION:
- case POT_PARALYSIS:
case POT_POISON:
case POT_SLOWING:
valued += 10;
@@ -1811,7 +1811,6 @@ bool is_worthless_consumable(const item_def &item)
case POT_CONFUSION:
case POT_DECAY:
case POT_DEGENERATION:
- case POT_PARALYSIS:
case POT_POISON:
case POT_SLOWING:
return true;