diff options
Diffstat (limited to 'src/emap/struct/itemdext.h')
-rw-r--r-- | src/emap/struct/itemdext.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/emap/struct/itemdext.h b/src/emap/struct/itemdext.h index 0144fbe..1581509 100644 --- a/src/emap/struct/itemdext.h +++ b/src/emap/struct/itemdext.h @@ -4,6 +4,12 @@ #ifndef EVOL_MAP_ITEMDEXT #define EVOL_MAP_ITEMDEXT +struct ItemCardExt +{ + unsigned short id; + unsigned short amount; +}; + struct ItemdExt { int floorLifeTime; @@ -27,6 +33,8 @@ struct ItemdExt int unequipEffect; int unequipFailEffect; + struct ItemCardExt allowedCards[100]; + bool allowPickup; bool charmItem; }; |