From 054c713cec71c3010b1ac3eb0848f2b601db982f Mon Sep 17 00:00:00 2001 From: j-p-e-g Date: Wed, 15 Aug 2007 21:32:33 +0000 Subject: More stuff for the tutorial: - Enhanced handling of spellbooks and artefacts. - Feature descriptions now cover altars. - Added monster descriptions (out of depth and brands). Also: - space-only inscription counts as no inscription - ring of teleportation autoID's if no teleport randart In my last commit I forgot to mention that the descriptions were suggested by Richard Gould, and I'd like to give credit where credit is due. :) git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@2005 c06c8d41-db1a-0410-9941-cceddc491573 --- crawl-ref/source/tutorial.h | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) (limited to 'crawl-ref/source/tutorial.h') diff --git a/crawl-ref/source/tutorial.h b/crawl-ref/source/tutorial.h index 2763b08650..a4824ab89b 100644 --- a/crawl-ref/source/tutorial.h +++ b/crawl-ref/source/tutorial.h @@ -37,8 +37,12 @@ void tutorial_first_monster(const monsters& mon); void tutorial_first_item(const item_def& item); void learned_something_new(tutorial_event_type seen_what, int x=0, int y=0); formatted_string tut_abilities_info(); -void tutorial_describe_item(item_def& item); -bool tutorial_feat_interesting(int feat); -void tutorial_describe_feature(int feat); + +// additional information for tutorial players +void tutorial_describe_item(item_def &item); +bool tutorial_feat_interesting(dungeon_feature_type feat); +void tutorial_describe_feature(dungeon_feature_type feat); +bool tutorial_monster_interesting(const monsters *mons); +void tutorial_describe_monster(const monsters *mons); #endif -- cgit v1.2.3-54-g00ecf