From 4ba581107a1d56ce5706593f4a3917f457afb929 Mon Sep 17 00:00:00 2001 From: zelgadis Date: Tue, 2 Oct 2007 22:40:40 +0000 Subject: Made Xom be smarter about being amused at losing/missing runes, and made Xom also be amused at runes being destroyed. Related changes: * Keep track of which items have ever been held by the player with ISFLAG_BEEN_IN_INV. * item_was_destroyed() is called when an item is destroyed (as in dropped in lava, not destroy_item() being called), and item_was_lost() is called if the item was lost (i.e., being left behind in the Abyss). * Keeps track of the number of runes that the character has collected, and how many have been left in the Halls of Zot. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@2300 c06c8d41-db1a-0410-9941-cceddc491573 --- crawl-ref/source/items.h | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'crawl-ref/source/items.h') diff --git a/crawl-ref/source/items.h b/crawl-ref/source/items.h index 9d0b8eb93c..2a451f7551 100644 --- a/crawl-ref/source/items.h +++ b/crawl-ref/source/items.h @@ -76,7 +76,8 @@ int get_item_slot( int reserve = 50 ); * *********************************************************************** */ void unlink_item(int dest); void destroy_item(int dest); -void destroy_item_stack( int x, int y ); +void destroy_item_stack( int x, int y, int cause = -1 ); +void lose_item_stack( int x, int y ); // last updated: 08jun2000 {dlb} /* *********************************************************************** @@ -171,4 +172,7 @@ void autoinscribe(); bool item_is_equipped(const item_def &item); +void item_was_lost(const item_def &item); +void item_was_destroyed(const item_def &item, int cause = -1); + #endif -- cgit v1.2.3-54-g00ecf