summaryrefslogtreecommitdiff
path: root/src/map/itemdb.h
diff options
context:
space:
mode:
authorrud0lp20 <rud0lp20@54d463be-8e91-2dee-dedb-b68131a5f0ec>2012-05-27 11:33:42 +0000
committerrud0lp20 <rud0lp20@54d463be-8e91-2dee-dedb-b68131a5f0ec>2012-05-27 11:33:42 +0000
commit2039c2c09ba7ec99c94a7b7f78ea3d4789cceafe (patch)
tree08752564dda3f1ca52b7f4b0b75eb301af4478ba /src/map/itemdb.h
parent7f631a0654aa1ab4d9356753c49457a0f571c58b (diff)
downloadhercules-2039c2c09ba7ec99c94a7b7f78ea3d4789cceafe.tar.gz
hercules-2039c2c09ba7ec99c94a7b7f78ea3d4789cceafe.tar.bz2
hercules-2039c2c09ba7ec99c94a7b7f78ea3d4789cceafe.tar.xz
hercules-2039c2c09ba7ec99c94a7b7f78ea3d4789cceafe.zip
Fixed bugreport:5821 GN_SLINGITEM item requirements(item throwables) should now works normally.
Fixed bugreport:5223 GN_BLOOD_SUCKER should now work like official behavior. Fixed part of bugreport:5674 Spiral Pierce is now in RE. Fixed setmadogear now it accepts optional parameter(0=unmount 1=mount). git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@16155 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/itemdb.h')
-rw-r--r--src/map/itemdb.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/map/itemdb.h b/src/map/itemdb.h
index 390954e3f..5471fe7e6 100644
--- a/src/map/itemdb.h
+++ b/src/map/itemdb.h
@@ -161,6 +161,7 @@ struct item_data* itemdb_exists(int nameid);
#define itemid_isgemstone(id) ( (id) >= ITEMID_YELLOW_GEMSTONE && (id) <= ITEMID_BLUE_GEMSTONE )
#define itemdb_iscashfood(id) ( (id) >= 12202 && (id) <= 12207 )
#define itemdb_is_GNbomb(n) (n >= 13260 && n <= 13267)
+#define itemdb_is_GNthrowable(n) (n >= 13268 && n <= 13290)
const char* itemdb_typename(int type);
int itemdb_group_bonus(struct map_session_data* sd, int itemid);