repo.or.cz
/
crawl.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Apply the new ground_level method.
[crawl.git]
/
crawl-ref
/
source
/
religion-enum.h
blob
525d8f726583f9e333dd8a57f74b2cbce972ff43
1
#ifndef RELIGION_ENUM_H
2
#define RELIGION_ENUM_H
3
4
enum
piety_gain_t
5
{
6
PIETY_NONE
,
PIETY_SOME
,
PIETY_LOTS
,
7
NUM_PIETY_GAIN
8
};
9
10
enum
nemelex_gift_types
11
{
12
NEM_GIFT_ESCAPE
=
0
,
13
NEM_GIFT_DESTRUCTION
,
14
NEM_GIFT_DUNGEONS
,
15
NEM_GIFT_SUMMONING
,
16
NEM_GIFT_WONDERS
,
17
NUM_NEMELEX_GIFT_TYPES
,
18
};
19
20
#endif