summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/skills2.h
diff options
context:
space:
mode:
authorRaphael Langella <raphael.langella@gmail.com>2011-02-03 22:50:05 +0100
committerRaphael Langella <raphael.langella@gmail.com>2011-02-03 23:47:38 +0100
commit494a9cd07d9b028eca0d7289e89578be19797a01 (patch)
tree39b5ba00aaa28d62d86521457458f1d6026dc15a /crawl-ref/source/skills2.h
parentdfb1936d63a343eb94f607c829333a0e739f3b65 (diff)
downloadcrawl-ref-494a9cd07d9b028eca0d7289e89578be19797a01.tar.gz
crawl-ref-494a9cd07d9b028eca0d7289e89578be19797a01.zip
Tutorial: simple skill menu.
No display of aptitudes, and remove the show all button.
Diffstat (limited to 'crawl-ref/source/skills2.h')
-rw-r--r--crawl-ref/source/skills2.h29
1 files changed, 15 insertions, 14 deletions
diff --git a/crawl-ref/source/skills2.h b/crawl-ref/source/skills2.h
index 628ffd03be..b949baf8a1 100644
--- a/crawl-ref/source/skills2.h
+++ b/crawl-ref/source/skills2.h
@@ -97,25 +97,26 @@ enum skill_menu_flags
SKMF_NONE = 0,
//Actions
- SKMF_DO_PRACTISE = 0x001,
- SKMF_DO_SHOW_DESC = 0x002,
- SKMF_DO_RESKILL_FROM = 0x004,
- SKMF_DO_RESKILL_TO = 0x008,
- SKMF_ACTION_MASK = 0x00F,
+ SKMF_DO_PRACTISE = 0x0001,
+ SKMF_DO_SHOW_DESC = 0x0002,
+ SKMF_DO_RESKILL_FROM = 0x0004,
+ SKMF_DO_RESKILL_TO = 0x0008,
+ SKMF_ACTION_MASK = 0x000F,
//Display
- SKMF_DISP_PROGRESS = 0x010,
- SKMF_DISP_RESKILL = 0x020,
- SKMF_DISP_NEW_LEVEL = 0x040,
- SKMF_DISP_POINTS = 0x080,
- SKMF_DISP_MASK = 0x0F0,
- SKMF_DISP_ALL = 0x100,
- SKMF_DISP_APTITUDE = 0x200,
+ SKMF_DISP_PROGRESS = 0x0010,
+ SKMF_DISP_RESKILL = 0x0020,
+ SKMF_DISP_NEW_LEVEL = 0x0040,
+ SKMF_DISP_POINTS = 0x0080,
+ SKMF_DISP_MASK = 0x00F0,
+ SKMF_DISP_ALL = 0x0100,
+ SKMF_DISP_APTITUDE = 0x0200,
//Ashenzari transfer knowledge ability set this flag.
- SKMF_RESKILLING = 0x400,
+ SKMF_RESKILLING = 0x0400,
- SKMF_SKILL_ICONS = 0x800,
+ SKMF_SKILL_ICONS = 0x0800,
+ SKMF_SIMPLE = 0x1000, // Simple mode for tutorial and hint mode.
};
class SkillMenu;