summaryrefslogtreecommitdiffstats
path: root/source/cItem.cpp
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--source/cItem.cpp22
1 files changed, 22 insertions, 0 deletions
diff --git a/source/cItem.cpp b/source/cItem.cpp
index b91a7a316..20720a6e8 100644
--- a/source/cItem.cpp
+++ b/source/cItem.cpp
@@ -19,4 +19,26 @@ void cItem::FromJson( const Json::Value & a_Value )
m_ItemCount = (char)a_Value.get("Count", -1 ).asInt();
m_ItemHealth = (short)a_Value.get("Health", -1 ).asInt();
}
+}
+
+bool cItem::IsEnchantable(ENUM_ITEM_ID item)
+{
+ if(item >= 256 && item <= 259)
+ return true;
+ if(item >= 267 && item <= 279)
+ return true;
+ if(item >= 283 && item <= 286)
+ return true;
+ if(item >= 290 && item <= 294)
+ return true;
+ if(item >= 298 && item <= 317)
+ return true;
+ if(item >= 290 && item <= 294)
+ return true;
+
+ if(item == 346 || item == 359 || item == 261)
+ return true;
+
+
+ return false;
} \ No newline at end of file