From aa88fdd8c6ad2da5eb5bd933e2d53d56cd8c176f Mon Sep 17 00:00:00 2001 From: nlanza Date: Sun, 13 Aug 2006 02:19:00 +0000 Subject: Clean up a mistake in the SVN import. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@10 c06c8d41-db1a-0410-9941-cceddc491573 --- crawl-ref/source/describe.h | 64 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 64 insertions(+) create mode 100644 crawl-ref/source/describe.h (limited to 'crawl-ref/source/describe.h') diff --git a/crawl-ref/source/describe.h b/crawl-ref/source/describe.h new file mode 100644 index 0000000000..981f90ce01 --- /dev/null +++ b/crawl-ref/source/describe.h @@ -0,0 +1,64 @@ + +/* + * File: describe.h + * Summary: Functions used to print information about various game objects. + * Written by: Linley Henzell + * + * Change History (most recent first): + * + * <2> 5/21/99 BWR Changed from is_artifact to is_dumpable_artifact + * <1> 4/20/99 JDJ Added get_item_description and is_artifact. + */ + +#ifndef DESCRIBE_H +#define DESCRIBE_H + +#include +#include "externs.h" + +// last updated 12may2000 {dlb} +/* *********************************************************************** + * called from: chardump - spells4 + * *********************************************************************** */ +bool is_dumpable_artifact( const item_def &item, char verbose ); + +// last updated 12may2000 {dlb} +/* *********************************************************************** + * called from: chardump - describe + * *********************************************************************** */ +std::string get_item_description( const item_def &item, char verbose, + bool dump = false ); + +// last updated 12may2000 {dlb} +/* *********************************************************************** + * called from: acr - religion + * *********************************************************************** */ +void describe_god( int which_god, bool give_title ); + + +// last updated 12may2000 {dlb} +/* *********************************************************************** + * called from: item_use - shopping + * *********************************************************************** */ +void describe_item( const item_def &item ); + +// last updated 12may2000 {dlb} +/* *********************************************************************** + * called from: direct + * *********************************************************************** */ +void describe_monsters(int class_described, unsigned char which_mons); + + +// last updated 12may2000 {dlb} +/* *********************************************************************** + * called from: item_use + * *********************************************************************** */ +void describe_spell(int spelled); + +// last updated 13oct2003 {darshan} +/* *********************************************************************** + * called from: describe_monsters - describe, kill_ghost - Kills + * *********************************************************************** */ +std::string ghost_description(bool concise = false); + +#endif -- cgit v1.2.3-54-g00ecf