summaryrefslogtreecommitdiffstats
path: root/stone_soup/crawl-ref/source/religion.h
blob: 1ec71c827b07d22e2d1b1cd55eb6d1509e839fc9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
/*
 *  File:       religion.cc
 *  Summary:    Misc religion related functions.
 *  Written by: Linley Henzell
 *
 *  Change History (most recent first):
 *
 *               <1>     -/--/--        LRH             Created
 */


#ifndef RELIGION_H
#define RELIGION_H

#include "enum.h"

void simple_god_message( const char *event, int which_deity = GOD_NO_GOD );
char *god_name(int which_god,bool long_name=false); //mv
void dec_penance(int val);
void dec_penance(int god, int val);
void Xom_acts(bool niceness, int sever, bool force_sever);
bool did_god_conduct(int thing_done, int pgain);
void excommunication(void);
void gain_piety(char pgn);
void god_speaks( int god, const char *mesg );
void lose_piety(char pgn);
void offer_corpse(int corpse);
void pray(void);
void handle_god_time(void);
char god_colour(char god);
void god_pitch(unsigned char which_god);

#endif