1
0
Fork 0
mirror of https://codeberg.org/noisytoot/notnotdnethack.git synced 2025-08-11 23:21:37 +01:00
This commit is contained in:
demogorgon22 2024-02-13 16:00:27 -05:00
commit 70212647b8
11 changed files with 258 additions and 93 deletions
include

View file

@ -277,6 +277,8 @@
#define AD_CURS AD_CLRC+6 /* random curse (ex. gremlin) */
#define AD_SQUE AD_CLRC+7 /* hits, may steal Quest Art or Amulet (Nemeses) */
#define NUM_AD_TYPES AD_SQUE+1
#define real_spell_adtyp(adtyp) \
((adtyp) == AD_SPEL || (adtyp) == AD_CLRC || (adtyp) == AD_PSON)