summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/religion-enum.h
diff options
context:
space:
mode:
authorChris Campbell <chriscampbell89@gmail.com>2014-03-06 07:57:00 +0000
committerChris Campbell <chriscampbell89@gmail.com>2014-03-06 08:00:49 +0000
commit993d327bd5995684935d516d879387a00e0e19c0 (patch)
tree203d46a65bf10ca32a3033a5d37af403fb82d7f6 /crawl-ref/source/religion-enum.h
parent8761da415cdc44bee7b082e6bd6c05d7e1518b0d (diff)
downloadcrawl-ref-993d327bd5995684935d516d879387a00e0e19c0.tar.gz
crawl-ref-993d327bd5995684935d516d879387a00e0e19c0.zip
Don't weight Nemelex decks based on the item type sacrificed
Instead just have a fixed weighting for deck types (currently: 40% Destruction, 30% Summoning, 20% Escape, 10% Wonders). Removes the secret tech from Nemelex's ^! screen, and improves the rest of the description there.
Diffstat (limited to 'crawl-ref/source/religion-enum.h')
-rw-r--r--crawl-ref/source/religion-enum.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/crawl-ref/source/religion-enum.h b/crawl-ref/source/religion-enum.h
index c0e5ec6fb2..0482126735 100644
--- a/crawl-ref/source/religion-enum.h
+++ b/crawl-ref/source/religion-enum.h
@@ -7,6 +7,7 @@ enum piety_gain_t
NUM_PIETY_GAIN
};
+#if TAG_MAJOR_VERSION == 34
enum nemelex_gift_types
{
NEM_GIFT_ESCAPE = 0,
@@ -15,5 +16,6 @@ enum nemelex_gift_types
NEM_GIFT_WONDERS,
NUM_NEMELEX_GIFT_TYPES,
};
+#endif
#endif