OSDN Git Service

Merge remote-tracking branch 'remotes/origin/feature/Implement-Debug-Auto-Save' into...
[hengband/hengband.git] / src / object-enchant / special-object-flags.h
1 #pragma once
2
3 /*
4  * Special Object Flags
5  */
6 typedef enum sof_type {
7     IDENT_SENSE = 0x01, /* Item has been "sensed" */
8     IDENT_FIXED = 0x02, /* Item has been "haggled" */
9     IDENT_EMPTY = 0x04, /* Item charges are known */
10     IDENT_KNOWN = 0x08, /* Item abilities are known */
11     IDENT_STORE = 0x10, /* Item is storebought !!!! */
12     IDENT_FULL_KNOWN = 0x20, /* Item information is known */
13     IDENT_BROKEN = 0x80, /* Item is permanently worthless */
14 } sof_type;