#ifndef RELIGIONSKILLS_H
#define RELIGIONSKILLS_H
// this function should be called when the MUD first boots up.
// calling it will initialize the module for use.

int charGetCeremony(CHAR_DATA *ch);
void charSetCeremony(CHAR_DATA *ch, int new_ceremony);
int charGetSacrifice(CHAR_DATA *ch);
void charSetSacrifice(CHAR_DATA *ch, int new_sacrifice);
int charGetBlessing(CHAR_DATA *ch);
void charSetBlessing(CHAR_DATA *ch, int new_blessing);
void init_religionskills(void);


#endif //RELIGIONSKILLS_H