summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/godprayer.h
blob: c097c39a860c08e07fd40ac5b1cc95160a54f68d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/**
 * @file
 * @brief Prayer and sacrifice.
**/

#ifndef GODPRAYER_H
#define GODPRAYER_H

#include "religion-enum.h"

string god_prayer_reaction();
void pray(bool allow_altar_prayer = true);

piety_gain_t sacrifice_item_stack(const item_def& item, int *js = 0,
                                  int quantity = 0);
int zin_tithe(const item_def& item, int quant, bool quiet,
              bool converting = false);

#endif