summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/defines.h
diff options
context:
space:
mode:
authorRobert Vollmert <rvollmert@gmx.net>2009-11-22 15:25:16 +0100
committerRobert Vollmert <rvollmert@gmx.net>2009-11-22 16:23:34 +0100
commitc7d57b148659539690dc87c4cd9f88b5124165af (patch)
treeccc608c446700d2efec5a23ce0133faeb041d986 /crawl-ref/source/defines.h
parent32e689581d4179738318a058c070c96968e2796b (diff)
downloadcrawl-ref-c7d57b148659539690dc87c4cd9f88b5124165af.tar.gz
crawl-ref-c7d57b148659539690dc87c4cd9f88b5124165af.zip
Convert skill pool magic numbers to named constants.
Diffstat (limited to 'crawl-ref/source/defines.h')
-rw-r--r--crawl-ref/source/defines.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/crawl-ref/source/defines.h b/crawl-ref/source/defines.h
index aa61d59668..912b2ee1c4 100644
--- a/crawl-ref/source/defines.h
+++ b/crawl-ref/source/defines.h
@@ -141,6 +141,9 @@ const int ANON_FRIENDLY_MONSTER = -1999;
const int DEBUG_COOKIE = 32767;
const int MAX_SKILL_LEVEL = 27;
+const int MAX_EXP_TOTAL = 8999999;
+const int MAX_EXP_POOL = 20000;
+const int FULL_EXP_POOL = MAX_EXP_POOL;
const int MIN_HIT_MISS_PERCENTAGE = 5;