summaryrefslogtreecommitdiff
path: root/src/item.h
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2014-10-21 15:08:07 +0300
committerAndrei Karas <akaras@inbox.ru>2014-10-21 16:17:44 +0300
commit26a4a4ddfde04ae02964c434063d74d82e3a2143 (patch)
tree120b7d12002a53eaa40bfa2ebf3562ae231ccb27 /src/item.h
parent0875a6ddfda9ece1af4a818e38be1f99e578c59a (diff)
downloadManaVerse-26a4a4ddfde04ae02964c434063d74d82e3a2143.tar.gz
ManaVerse-26a4a4ddfde04ae02964c434063d74d82e3a2143.tar.bz2
ManaVerse-26a4a4ddfde04ae02964c434063d74d82e3a2143.tar.xz
ManaVerse-26a4a4ddfde04ae02964c434063d74d82e3a2143.zip
Add card fields into item.
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. */