summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/enum.h
diff options
context:
space:
mode:
authorzelgadis <zelgadis@c06c8d41-db1a-0410-9941-cceddc491573>2008-05-29 02:35:14 +0000
committerzelgadis <zelgadis@c06c8d41-db1a-0410-9941-cceddc491573>2008-05-29 02:35:14 +0000
commit3da16ef55175ccae0b1645e9b0e22709a14c1203 (patch)
tree7c5a1030455c8b0a173b4af3b8b2aca247c3eeb2 /crawl-ref/source/enum.h
parent395829b30fde460c96a7429fb87428dd576ab5b8 (diff)
downloadcrawl-ref-3da16ef55175ccae0b1645e9b0e22709a14c1203.tar.gz
crawl-ref-3da16ef55175ccae0b1645e9b0e22709a14c1203.zip
Twelve new tutorial events, plus examining a square with a cloud or
a monster submerged in shallow water will give extra info during turorial mode. Might be giving too many spoilers, especially the tips on surviving in the Abyss and saying exactly what each god likes and dislikes when covnerting. There's a bug in non-tiles build where the tutorial note on branch entrances shows the '>' symbol as light-grey instead of yellow; don't know what's causing that. Also, made player::backlit() used _get_contamination_level() to stay in sync with the rest of the code. Breaks savefile compatibilty. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@5320 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/enum.h')
-rw-r--r--crawl-ref/source/enum.h38
1 files changed, 25 insertions, 13 deletions
diff --git a/crawl-ref/source/enum.h b/crawl-ref/source/enum.h
index 3ded9f9b4a..52760c212f 100644
--- a/crawl-ref/source/enum.h
+++ b/crawl-ref/source/enum.h
@@ -2675,48 +2675,60 @@ enum tutorial_event_type
TUT_SEEN_RANDART,
TUT_SEEN_FOOD,
TUT_SEEN_CARRION,
+ TUT_SEEN_GOLD,
// encountered dungeon features
- TUT_SEEN_STAIRS, // 14
+ TUT_SEEN_STAIRS, // 15
TUT_SEEN_ESCAPE_HATCH,
+ TUT_SEEN_BRANCH,
TUT_SEEN_TRAP,
TUT_SEEN_ALTAR,
- TUT_SEEN_SHOP,
+ TUT_SEEN_SHOP, // 20
TUT_SEEN_DOOR,
+ TUT_SEEN_SECRET_DOOR,
// other 'first events'
- TUT_SEEN_MONSTER, // 20
+ TUT_SEEN_MONSTER,
TUT_MONSTER_BRAND,
+ TUT_MONSTER_FRIENDLY, // 25
TUT_KILLED_MONSTER,
TUT_NEW_LEVEL,
TUT_SKILL_RAISE,
- TUT_MAKE_CHUNKS, // 25
- TUT_OFFER_CORPSE,
+ TUT_MAKE_CHUNKS,
+ TUT_OFFER_CORPSE, // 30
TUT_NEW_ABILITY,
TUT_FLEEING_MONSTER,
TUT_ROTTEN_FOOD,
+ TUT_CONVERT,
+ TUT_EXCOMMUNICATE, // 35
+ TUT_SPELL_MISCAST,
+ TUT_SPELL_HUNGER,
+ TUT_GLOWING,
// status changes
- TUT_YOU_ENCHANTED, // 30
- TUT_YOU_SICK,
+ TUT_YOU_ENCHANTED,
+ TUT_YOU_SICK, // 40
TUT_YOU_POISON,
+ TUT_YOU_ROTTING,
TUT_YOU_CURSED,
TUT_YOU_HUNGRY,
- TUT_YOU_STARVING, // 35
+ TUT_YOU_STARVING, // 45
TUT_YOU_MUTATED,
TUT_POSTBERSERK,
// warning
- TUT_RUN_AWAY, // 38
+ TUT_RUN_AWAY,
TUT_RETREAT_CASTER,
- TUT_WIELD_WEAPON, // 40
+ TUT_WIELD_WEAPON, // 50
TUT_NEED_HEALING,
TUT_NEED_POISON_HEALING,
TUT_INVISIBLE_DANGER,
TUT_NEED_HEALING_INVIS,
+ TUT_ABYSS, // 55
// interface
- TUT_MULTI_PICKUP, // 45
+ TUT_MULTI_PICKUP,
TUT_HEAVY_LOAD,
TUT_SHIFT_RUN,
TUT_MAP_VIEW,
- TUT_DONE_EXPLORE,
- TUT_EVENTS_NUM // 50
+ TUT_DONE_EXPLORE, // 60
+ TUT_STAIR_BRAND,
+ TUT_EVENTS_NUM // 62
}; // for numbers higher than 50 change size of tutorial_events in externs.h
enum tutorial_types