summaryrefslogtreecommitdiff
path: root/src/item.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/item.h')
-rw-r--r--src/item.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/item.h b/src/item.h
index 842e0d79b..13f34499b 100644
--- a/src/item.h
+++ b/src/item.h
@@ -31,6 +31,8 @@
class Image;
+const int maxCards = 4;
+
/**
* Represents one or more instances of a certain item type.
*/
@@ -189,6 +191,12 @@ class Item notfinal
bool getFavorite() const A_WARN_UNUSED
{ return mFavorite; }
+ void setCard(const int index, const int id);
+
+ int getCard(const int index) const;
+
+ void setCards(const int *const cards, const int size);
+
int mId; /**< Item type id. */
unsigned char mColor;
int mQuantity; /**< Number of items. */
@@ -197,6 +205,7 @@ class Item notfinal
Image *mImage; /**< Item image. */
std::string mDescription;
std::map <int, int> mTags;
+ int mCards[maxCards];
uint8_t mRefine; /**< Item refine level. */
int mInvIndex; /**< Inventory index. */
bool mEquipment; /**< Item is equipment. */