summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/decks.h
diff options
context:
space:
mode:
authorChris Campbell <chriscampbell89@gmail.com>2014-03-26 18:31:42 +0000
committerChris Campbell <chriscampbell89@gmail.com>2014-03-26 19:30:25 +0000
commit06ca5bf28751d98bbc56bdbd68173f3effae9640 (patch)
treee6515914c2fcb3a987531b09f0035689b091bf90 /crawl-ref/source/decks.h
parent25355f4cde3f735a5e7e2dd43f728ba5655037a8 (diff)
downloadcrawl-ref-06ca5bf28751d98bbc56bdbd68173f3effae9640.tar.gz
crawl-ref-06ca5bf28751d98bbc56bdbd68173f3effae9640.zip
Don't let Nemelex's piety/penance levels affect card power from Punishment draws
Punishment cards now get their own flag, and base their card power on experience level rather than evocations skill (in order to scale more like other god wraths). Also makes punishment draws amuse Xom.
Diffstat (limited to 'crawl-ref/source/decks.h')
-rw-r--r--crawl-ref/source/decks.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/crawl-ref/source/decks.h b/crawl-ref/source/decks.h
index 7341aa979b..65fae847a8 100644
--- a/crawl-ref/source/decks.h
+++ b/crawl-ref/source/decks.h
@@ -41,10 +41,11 @@ enum deck_type
enum card_flags_type
{
- CFLAG_ODDITY = (1 << 0),
- CFLAG_SEEN = (1 << 1),
- CFLAG_MARKED = (1 << 2),
- CFLAG_DEALT = (1 << 4),
+ CFLAG_ODDITY = (1 << 0),
+ CFLAG_SEEN = (1 << 1),
+ CFLAG_MARKED = (1 << 2),
+ CFLAG_PUNISHMENT = (1 << 3),
+ CFLAG_DEALT = (1 << 4),
};
enum card_type