summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/tiles.h
diff options
context:
space:
mode:
authorJohanna Ploog <j-p-e-g@users.sourceforge.net>2010-01-06 20:01:13 +0100
committerJohanna Ploog <j-p-e-g@users.sourceforge.net>2010-01-06 20:01:13 +0100
commit6df1f8df4d0b9dcd691685db86354a17da861a61 (patch)
tree240fead71fa55b7d901209226bd5d1e1649d1297 /crawl-ref/source/tiles.h
parente3e05b162240e9d39e0360541d807f092ce0688b (diff)
downloadcrawl-ref-6df1f8df4d0b9dcd691685db86354a17da861a61.tar.gz
crawl-ref-6df1f8df4d0b9dcd691685db86354a17da861a61.zip
Distinguish icons of neutral and good neutral monsters.
Diffstat (limited to 'crawl-ref/source/tiles.h')
-rw-r--r--crawl-ref/source/tiles.h17
1 files changed, 9 insertions, 8 deletions
diff --git a/crawl-ref/source/tiles.h b/crawl-ref/source/tiles.h
index 2f1028b72d..ba41232e43 100644
--- a/crawl-ref/source/tiles.h
+++ b/crawl-ref/source/tiles.h
@@ -133,14 +133,15 @@ enum tile_flags
TILE_FLAG_S_UNDER = 0x00000800,
TILE_FLAG_FLYING = 0x00001000,
TILE_FLAG_PET = 0x00002000,
- TILE_FLAG_NEUTRAL = 0x00004000,
- TILE_FLAG_STAB = 0x00008000,
- TILE_FLAG_MAY_STAB = 0x0000C000,
- TILE_FLAG_NET = 0x00010000,
- TILE_FLAG_POISON = 0x00020000,
- TILE_FLAG_FLAME = 0x00040000,
- TILE_FLAG_ANIM_WEP = 0x00080000,
- TILE_FLAG_BERSERK = 0x00100000,
+ TILE_FLAG_GD_NEUTRAL = 0x00004000,
+ TILE_FLAG_NEUTRAL = 0x00008000,
+ TILE_FLAG_STAB = 0x00010000,
+ TILE_FLAG_MAY_STAB = 0x00020000,
+ TILE_FLAG_NET = 0x00040000,
+ TILE_FLAG_POISON = 0x00080000,
+ TILE_FLAG_ANIM_WEP = 0x00100000,
+ TILE_FLAG_FLAME = 0x00200000,
+ TILE_FLAG_BERSERK = 0x00400000,
// MDAM has 5 possibilities, so uses 3 bits.
TILE_FLAG_MDAM_MASK = 0x03800000,