summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/shopping.cc
diff options
context:
space:
mode:
authorShmuale Mark <shm.mark@gmail.com>2014-07-06 09:20:32 -0400
committerShmuale Mark <shm.mark@gmail.com>2014-07-06 09:28:14 -0400
commit3167ec3d6532df95e4d16b1ec514199c66ec646d (patch)
treecb70f1159ce9cfaa5a82d1f2c5c748aed6ded7c1 /crawl-ref/source/shopping.cc
parentd9acbb9e23001793bc0acb1b6cfed9dedb9d66b7 (diff)
downloadcrawl-ref-3167ec3d6532df95e4d16b1ec514199c66ec646d.tar.gz
crawl-ref-3167ec3d6532df95e4d16b1ec514199c66ec646d.zip
Remove potions of strong poison.
Their peculiar depth restriction meant that when you found them, they were quite harmless. Even if the restriction were removed, they would be basically the same as potions of poison, since when they might be harmful the player would have little enough HP that the weaker potion could kill them. Their weight is distributed evenly among all other potions -- a very slight buff seems like a fine thing to do, especially since potion generation at D:2-10 isn't considered too good.
Diffstat (limited to 'crawl-ref/source/shopping.cc')
-rw-r--r--crawl-ref/source/shopping.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/crawl-ref/source/shopping.cc b/crawl-ref/source/shopping.cc
index 9a28efc86d..af54b72753 100644
--- a/crawl-ref/source/shopping.cc
+++ b/crawl-ref/source/shopping.cc
@@ -1452,7 +1452,9 @@ unsigned int item_value(item_def item, bool ident)
case POT_CURING:
case POT_DECAY:
case POT_DEGENERATION:
+#if TAG_MAJOR_VERSION == 34
case POT_STRONG_POISON:
+#endif
case POT_LIGNIFY:
valued += 20;
break;
@@ -1812,7 +1814,6 @@ bool is_worthless_consumable(const item_def &item)
case POT_PARALYSIS:
case POT_POISON:
case POT_SLOWING:
- case POT_STRONG_POISON:
return true;
default:
return false;