00001 /* 00002 * File: godprayer.h 00003 * Summary: Prayer and sacrifice. 00004 */ 00005 00006 #ifndef GODPRAYER_H 00007 #define GODPRAYER_H 00008 00009 #include "religion-enum.h" 00010 00011 std::string god_prayer_reaction(); 00012 bool god_accepts_prayer(god_type god); 00013 void pray(); 00014 void end_prayer(); 00015 00016 piety_gain_t sacrifice_item_stack(const item_def& item, int *js = 0); 00017 00018 #endif