summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/enum.h
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/enum.h')
-rw-r--r--crawl-ref/source/enum.h13
1 files changed, 11 insertions, 2 deletions
diff --git a/crawl-ref/source/enum.h b/crawl-ref/source/enum.h
index b679185b2c..b6547ae8bc 100644
--- a/crawl-ref/source/enum.h
+++ b/crawl-ref/source/enum.h
@@ -250,10 +250,15 @@ enum beam_type // beam[].flavour
BEAM_POTION_PURP_SMOKE,
BEAM_POTION_RANDOM,
+ BEAM_LAST_REAL = BEAM_POTION_RANDOM,
+
+ // For getting the visual effect of a beam.
+ BEAM_VISUAL, // 58
+
BEAM_TORMENT_DAMAGE, // Pseudo-beam for damage flavour.
- BEAM_STEAL_FOOD, // Pseudo-beam for harpyes stealing food.
+ BEAM_FIRST_PSEUDO = BEAM_TORMENT_DAMAGE,
+ BEAM_STEAL_FOOD, // {60} Pseudo-beam for harpies stealing food.
- BEAM_LINE_OF_SIGHT, // 60 - only used for checking monster LOS
NUM_BEAMS
};
@@ -637,6 +642,8 @@ enum command_type
CMD_TARGET_WIZARD_PATHFIND,
CMD_TARGET_WIZARD_GAIN_LEVEL,
CMD_TARGET_WIZARD_MISCAST,
+ CMD_TARGET_WIZARD_MAKE_SUMMONED,
+ CMD_TARGET_WIZARD_POLYMORPH,
CMD_TARGET_MOUSE_MOVE,
CMD_TARGET_MOUSE_SELECT,
CMD_TARGET_HELP,
@@ -1170,6 +1177,8 @@ enum duration_type
DUR_TELEPATHY,
DUR_PETRIFIED,
DUR_LOWERED_MR,
+ DUR_REPEL_STAIRS_MOVE,
+ DUR_REPEL_STAIRS_CLIMB,
NUM_DURATIONS
};