/* * Wear flags. * Used in #OBJECTS. * Stored as e.g.: * armor 0 APV * armor 0 AH * gem 0 AO */ #define ITEM_TAKE (A) (1) #define ITEM_WEAR_FINGER (B) (2) #define ITEM_WEAR_NECK (C) (4) #define ITEM_WEAR_BODY (D) (8) #define ITEM_WEAR_HEAD (E) (16) #define ITEM_WEAR_LEGS (F) (32) #define ITEM_WEAR_FEET (G) (64) #define ITEM_WEAR_HANDS (H) (128) #define ITEM_WEAR_ARMS (I) (256) #define ITEM_WEAR_SHIELD (J) (512) #define ITEM_WEAR_ABOUT (K) (1024) #define ITEM_WEAR_WAIST (L) (2048) #define ITEM_WEAR_WRIST (M) (4096) #define ITEM_WIELD (N) (8192) #define ITEM_HOLD (O) (16384) #define ITEM_NO_SAC (P) (32768) #define ITEM_WEAR_FLOAT (Q) (65536) #define ITEM_WEAR_SECONDARY (R) (131072) #define ITEM_WEAR_CHEST (S) (262144) #define ITEM_WEAR_BELT (T) (524288) #define ITEM_WEAR_ROSE (V) (1048576)