OSDN Git Service

Merge remote-tracking branch 'remotes/origin/feature/Implement-Debug-Auto-Save' into...
[hengband/hengband.git] / src / object-enchant / item-apply-magic.h
1 #pragma once
2
3 /*
4  * Bit flags for apply_magic()
5  */
6 typedef enum item_am_type {
7     AM_NO_FIXED_ART = 0x00000001, /*!< Don't allow roll for fixed artifacts */
8     AM_GOOD = 0x00000002, /*!< Generate good items */
9     AM_GREAT = 0x00000004, /*!< Generate great items */
10     AM_SPECIAL = 0x00000008, /*!< Generate artifacts (for debug mode only) */
11     AM_CURSED = 0x00000010, /*!< Generate cursed/worthless items */
12     AM_FORBID_CHEST = 0x00000020, /*!< 箱からさらに箱が出現することを抑止する */
13 } item_am_type;