summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/player.h
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/player.h')
-rw-r--r--crawl-ref/source/player.h14
1 files changed, 11 insertions, 3 deletions
diff --git a/crawl-ref/source/player.h b/crawl-ref/source/player.h
index ff225c1105..e7cca6269b 100644
--- a/crawl-ref/source/player.h
+++ b/crawl-ref/source/player.h
@@ -12,6 +12,8 @@
#include "itemprop.h"
#include "species.h"
+#include <vector>
+
#ifdef USE_TILE
// This used to be in tiles.h. (jpeg)
#include "tiledef-main.h"
@@ -221,9 +223,15 @@ public:
FixedVector<unsigned char, NUM_MUTATIONS> mutation;
FixedVector<unsigned char, NUM_MUTATIONS> demon_pow;
- // demon_trait[i] is the mutation increased at the i'th
- // levellup, or NUM_MUTATIONS
- FixedVector<mutation_type, 26> demon_trait;
+
+ struct demon_trait
+ {
+ int level_gained;
+ mutation_type mutation;
+ };
+
+ std::vector<demon_trait> demonic_traits;
+
unsigned char magic_contamination;
FixedVector<bool, NUM_FIXED_BOOKS> had_book;