diff options
author | Andrei Karas <akaras@inbox.ru> | 2015-04-02 23:57:56 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2015-04-02 23:57:56 +0300 |
commit | ea151b73fd14c5d9ced60979b91c7d13cf0c4422 (patch) | |
tree | c35e3addd2fa1f10f6cbaa38f186582e2b532a52 /src/map/struct | |
parent | 179e2a097cdf9190c46a3e4c93eee5535e707530 (diff) | |
download | evol-hercules-ea151b73fd14c5d9ced60979b91c7d13cf0c4422.tar.gz evol-hercules-ea151b73fd14c5d9ced60979b91c7d13cf0c4422.tar.bz2 evol-hercules-ea151b73fd14c5d9ced60979b91c7d13cf0c4422.tar.xz evol-hercules-ea151b73fd14c5d9ced60979b91c7d13cf0c4422.zip |
map: add new attributes to item_db.
New attributes RequiredDef, RequiredMDef.
Diffstat (limited to 'src/map/struct')
-rw-r--r-- | src/map/struct/itemdext.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/map/struct/itemdext.h b/src/map/struct/itemdext.h index b8fc7be..283f20d 100644 --- a/src/map/struct/itemdext.h +++ b/src/map/struct/itemdext.h @@ -18,6 +18,8 @@ struct ItemdExt int requiredAtk; int requiredMAtkMin; int requiredMAtkMax; + int requiredDef; + int requiredMDef; bool allowPickup; }; |