diff --git a/sql/mangos.sql b/sql/mangos.sql index 8d918949c..1b34bbb35 100644 --- a/sql/mangos.sql +++ b/sql/mangos.sql @@ -45,9 +45,9 @@ UNLOCK TABLES; DROP TABLE IF EXISTS `achievement_criteria_requirement`; CREATE TABLE `achievement_criteria_requirement` ( `criteria_id` mediumint(8) NOT NULL, - `type` tinyint(3) unsigned NOT NULL DEFAULT '0', - `value1` mediumint(8) unsigned NOT NULL DEFAULT '0', - `value2` mediumint(8) unsigned NOT NULL DEFAULT '0', + `type` tinyint(3) unsigned NOT NULL default '0', + `value1` mediumint(8) unsigned NOT NULL default '0', + `value2` mediumint(8) unsigned NOT NULL default '0', PRIMARY KEY (`criteria_id`,`type`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Achievment system'; @@ -826,9 +826,9 @@ UNLOCK TABLES; DROP TABLE IF EXISTS `conditions`; CREATE TABLE `conditions` ( `condition_entry` mediumint(8) unsigned NOT NULL auto_increment COMMENT 'Identifier', - `type` tinyint(3) signed NOT NULL DEFAULT '0' COMMENT 'Type of the condition', - `value1` mediumint(8) unsigned NOT NULL DEFAULT '0' COMMENT 'data field one for the condition', - `value2` mediumint(8) unsigned NOT NULL DEFAULT '0' COMMENT 'data field two for the condition', + `type` tinyint(3) signed NOT NULL default '0' COMMENT 'Type of the condition', + `value1` mediumint(8) unsigned NOT NULL default '0' COMMENT 'data field one for the condition', + `value2` mediumint(8) unsigned NOT NULL default '0' COMMENT 'data field two for the condition', PRIMARY KEY (`condition_entry`), CONSTRAINT unique_conditions UNIQUE (type,value1,value2) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Condition System'; @@ -888,8 +888,8 @@ CREATE TABLE `creature_addon` ( `guid` int(10) unsigned NOT NULL default '0', `mount` mediumint(8) unsigned NOT NULL default '0', `bytes1` int(10) unsigned NOT NULL default '0', - `b2_0_sheath` tinyint(3) unsigned NOT NULL DEFAULT '0', - `b2_1_pvp_state` tinyint(3) unsigned NOT NULL DEFAULT '0', + `b2_0_sheath` tinyint(3) unsigned NOT NULL default '0', + `b2_1_pvp_state` tinyint(3) unsigned NOT NULL default '0', `emote` int(10) unsigned NOT NULL default '0', `moveflags` int(10) unsigned NOT NULL default '0', `auras` text, @@ -974,9 +974,9 @@ UNLOCK TABLES; DROP TABLE IF EXISTS creature_linking; CREATE TABLE `creature_linking` ( - `guid` int(10) UNSIGNED NOT NULL COMMENT 'creature.guid of the slave mob that is linked', - `master_guid` int(10) UNSIGNED NOT NULL COMMENT 'master to trigger events', - `flag` mediumint(8) UNSIGNED NOT NULL COMMENT 'flag - describing what should happen when', + `guid` int(10) unsigned NOT NULL COMMENT 'creature.guid of the slave mob that is linked', + `master_guid` int(10) unsigned NOT NULL COMMENT 'master to trigger events', + `flag` mediumint(8) unsigned NOT NULL COMMENT 'flag - describing what should happen when', PRIMARY KEY (`guid`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Creature Linking System'; @@ -996,11 +996,11 @@ UNLOCK TABLES; DROP TABLE IF EXISTS creature_linking_template; CREATE TABLE `creature_linking_template` ( - `entry` mediumint(8) UNSIGNED NOT NULL DEFAULT '0' COMMENT 'creature_template.entry of the slave mob that is linked', - `map` SMALLINT(5) UNSIGNED NOT NULL DEFAULT '0' COMMENT 'Id of map of the mobs', - `master_entry` mediumint(8) UNSIGNED NOT NULL DEFAULT '0' COMMENT 'master to trigger events', - `flag` mediumint(8) UNSIGNED NOT NULL DEFAULT '0' COMMENT 'flag - describing what should happen when', - `search_range` mediumint(8) UNSIGNED NOT NULL DEFAULT '0' COMMENT 'search_range - describing in which range (spawn-coords) master and slave are linked together', + `entry` mediumint(8) unsigned NOT NULL default '0' COMMENT 'creature_template.entry of the slave mob that is linked', + `map` SMALLINT(5) unsigned NOT NULL default '0' COMMENT 'Id of map of the mobs', + `master_entry` mediumint(8) unsigned NOT NULL default '0' COMMENT 'master to trigger events', + `flag` mediumint(8) unsigned NOT NULL default '0' COMMENT 'flag - describing what should happen when', + `search_range` mediumint(8) unsigned NOT NULL default '0' COMMENT 'search_range - describing in which range (spawn-coords) master and slave are linked together', PRIMARY KEY (`entry`,`map`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Creature Linking System'; @@ -1029,7 +1029,7 @@ CREATE TABLE `creature_loot_template` ( `lootcondition` tinyint(3) unsigned NOT NULL default '0', `condition_value1` mediumint(8) unsigned NOT NULL default '0', `condition_value2` mediumint(8) unsigned NOT NULL default '0', - `condition_id` MEDIUMINT(8) UNSIGNED NOT NULL DEFAULT '0', + `condition_id` MEDIUMINT(8) unsigned NOT NULL default '0', PRIMARY KEY (`entry`,`item`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Loot System'; @@ -1340,13 +1340,13 @@ CREATE TABLE `creature_template` ( `unk16` float NOT NULL default '1', `unk17` float NOT NULL default '1', `RacialLeader` tinyint(3) unsigned NOT NULL default '0', - `questItem1` int(11) UNSIGNED DEFAULT '0' NOT NULL, - `questItem2` int(11) UNSIGNED DEFAULT '0' NOT NULL, - `questItem3` int(11) UNSIGNED DEFAULT '0' NOT NULL, - `questItem4` int(11) UNSIGNED DEFAULT '0' NOT NULL, - `questItem5` int(11) UNSIGNED DEFAULT '0' NOT NULL, - `questItem6` int(11) UNSIGNED DEFAULT '0' NOT NULL, - `movementId` int(11) UNSIGNED DEFAULT '0' NOT NULL, + `questItem1` int(11) unsigned default '0' NOT NULL, + `questItem2` int(11) unsigned default '0' NOT NULL, + `questItem3` int(11) unsigned default '0' NOT NULL, + `questItem4` int(11) unsigned default '0' NOT NULL, + `questItem5` int(11) unsigned default '0' NOT NULL, + `questItem6` int(11) unsigned default '0' NOT NULL, + `movementId` int(11) unsigned default '0' NOT NULL, `RegenHealth` tinyint(3) unsigned NOT NULL default '1', `vehicle_id` mediumint(8) unsigned NOT NULL default '0', `equipment_id` mediumint(8) unsigned NOT NULL default '0', @@ -1378,8 +1378,8 @@ CREATE TABLE `creature_template_addon` ( `entry` mediumint(8) unsigned NOT NULL default '0', `mount` mediumint(8) unsigned NOT NULL default '0', `bytes1` int(10) unsigned NOT NULL default '0', - `b2_0_sheath` tinyint(3) unsigned NOT NULL DEFAULT '0', - `b2_1_pvp_state` tinyint(3) unsigned NOT NULL DEFAULT '0', + `b2_0_sheath` tinyint(3) unsigned NOT NULL default '0', + `b2_1_pvp_state` tinyint(3) unsigned NOT NULL default '0', `emote` mediumint(8) unsigned NOT NULL default '0', `moveflags` int(10) unsigned NOT NULL default '0', `auras` text, @@ -1438,7 +1438,7 @@ CREATE TABLE `disenchant_loot_template` ( `lootcondition` tinyint(3) unsigned NOT NULL default '0', `condition_value1` mediumint(8) unsigned NOT NULL default '0', `condition_value2` mediumint(8) unsigned NOT NULL default '0', - `condition_id` MEDIUMINT(8) UNSIGNED NOT NULL DEFAULT '0', + `condition_id` MEDIUMINT(8) unsigned NOT NULL default '0', PRIMARY KEY (`entry`,`item`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Loot System'; @@ -1533,10 +1533,10 @@ CREATE TABLE `creature_ai_texts` ( `content_loc6` text, `content_loc7` text, `content_loc8` text, - `sound` mediumint(8) unsigned NOT NULL DEFAULT '0', - `type` tinyint(3) unsigned NOT NULL DEFAULT '0', - `language` tinyint(3) unsigned NOT NULL DEFAULT '0', - `emote` smallint(5) unsigned NOT NULL DEFAULT '0', + `sound` mediumint(8) unsigned NOT NULL default '0', + `type` tinyint(3) unsigned NOT NULL default '0', + `language` tinyint(3) unsigned NOT NULL default '0', + `emote` smallint(5) unsigned NOT NULL default '0', `comment` text, PRIMARY KEY (`entry`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Script Texts'; @@ -1566,6 +1566,8 @@ CREATE TABLE `event_scripts` ( `data_flags` tinyint(3) unsigned NOT NULL default '0', `dataint` int(11) NOT NULL default '0', `dataint2` int(11) NOT NULL default '0', + `dataint3` int(11) NOT NULL default '0', + `dataint4` int(11) NOT NULL default '0', `buddy_entry` int(11) NOT NULL default '0', `search_radius` int(11) NOT NULL default '0', `x` float NOT NULL default '0', @@ -1691,7 +1693,7 @@ CREATE TABLE `fishing_loot_template` ( `lootcondition` tinyint(3) unsigned NOT NULL default '0', `condition_value1` mediumint(8) unsigned NOT NULL default '0', `condition_value2` mediumint(8) unsigned NOT NULL default '0', - `condition_id` MEDIUMINT(8) UNSIGNED NOT NULL DEFAULT '0', + `condition_id` MEDIUMINT(8) unsigned NOT NULL default '0', PRIMARY KEY (`entry`,`item`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Loot System'; @@ -2029,7 +2031,7 @@ CREATE TABLE `gameobject_loot_template` ( `lootcondition` tinyint(3) unsigned NOT NULL default '0', `condition_value1` mediumint(8) unsigned NOT NULL default '0', `condition_value2` mediumint(8) unsigned NOT NULL default '0', - `condition_id` MEDIUMINT(8) UNSIGNED NOT NULL DEFAULT '0', + `condition_id` MEDIUMINT(8) unsigned NOT NULL default '0', PRIMARY KEY (`entry`,`item`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Loot System'; @@ -2112,12 +2114,12 @@ CREATE TABLE `gameobject_template` ( `faction` smallint(5) unsigned NOT NULL default '0', `flags` int(10) unsigned NOT NULL default '0', `size` float NOT NULL default '1', - `questItem1` int(11) UNSIGNED DEFAULT '0' NOT NULL, - `questItem2` int(11) UNSIGNED DEFAULT '0' NOT NULL, - `questItem3` int(11) UNSIGNED DEFAULT '0' NOT NULL, - `questItem4` int(11) UNSIGNED DEFAULT '0' NOT NULL, - `questItem5` int(11) UNSIGNED DEFAULT '0' NOT NULL, - `questItem6` int(11) UNSIGNED DEFAULT '0' NOT NULL, + `questItem1` int(11) unsigned default '0' NOT NULL, + `questItem2` int(11) unsigned default '0' NOT NULL, + `questItem3` int(11) unsigned default '0' NOT NULL, + `questItem4` int(11) unsigned default '0' NOT NULL, + `questItem5` int(11) unsigned default '0' NOT NULL, + `questItem6` int(11) unsigned default '0' NOT NULL, `data0` int(10) unsigned NOT NULL default '0', `data1` int(10) unsigned NOT NULL default '0', `data2` int(10) unsigned NOT NULL default '0', @@ -2142,15 +2144,15 @@ CREATE TABLE `gameobject_template` ( `data21` int(10) unsigned NOT NULL default '0', `data22` int(10) unsigned NOT NULL default '0', `data23` int(10) unsigned NOT NULL default '0', - `data24` int(10) unsigned NOT NULL DEFAULT '0', - `data25` int(10) unsigned NOT NULL DEFAULT '0', - `data26` int(10) unsigned NOT NULL DEFAULT '0', - `data27` int(10) unsigned NOT NULL DEFAULT '0', - `data28` int(10) unsigned NOT NULL DEFAULT '0', - `data29` int(10) unsigned NOT NULL DEFAULT '0', - `data30` int(10) unsigned NOT NULL DEFAULT '0', - `data31` int(10) unsigned NOT NULL DEFAULT '0', - `unk2` int(10) unsigned NOT NULL DEFAULT '0', + `data24` int(10) unsigned NOT NULL default '0', + `data25` int(10) unsigned NOT NULL default '0', + `data26` int(10) unsigned NOT NULL default '0', + `data27` int(10) unsigned NOT NULL default '0', + `data28` int(10) unsigned NOT NULL default '0', + `data29` int(10) unsigned NOT NULL default '0', + `data30` int(10) unsigned NOT NULL default '0', + `data31` int(10) unsigned NOT NULL default '0', + `unk2` int(10) unsigned NOT NULL default '0', `mingold` mediumint(8) unsigned NOT NULL default '0', `maxgold` mediumint(8) unsigned NOT NULL default '0', `ScriptName` varchar(64) NOT NULL default '', @@ -2208,14 +2210,14 @@ DROP TABLE IF EXISTS gossip_menu; CREATE TABLE gossip_menu ( entry smallint(6) unsigned NOT NULL default '0', text_id mediumint(8) unsigned NOT NULL default '0', - script_id mediumint(8) UNSIGNED NOT NULL DEFAULT 0 COMMENT 'script in `gossip_scripts` - will be executed on GossipHello', + script_id mediumint(8) unsigned NOT NULL default 0 COMMENT 'script in `gossip_scripts` - will be executed on GossipHello', cond_1 tinyint(3) unsigned NOT NULL default '0', cond_1_val_1 mediumint(8) unsigned NOT NULL default '0', cond_1_val_2 mediumint(8) unsigned NOT NULL default '0', cond_2 tinyint(3) unsigned NOT NULL default '0', cond_2_val_1 mediumint(8) unsigned NOT NULL default '0', cond_2_val_2 mediumint(8) unsigned NOT NULL default '0', - condition_id MEDIUMINT(8) UNSIGNED NOT NULL DEFAULT '0', + condition_id MEDIUMINT(8) unsigned NOT NULL default '0', PRIMARY KEY (entry, text_id, script_id) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; @@ -2255,7 +2257,7 @@ CREATE TABLE gossip_menu_option ( cond_3 tinyint(3) unsigned NOT NULL default '0', cond_3_val_1 mediumint(8) unsigned NOT NULL default '0', cond_3_val_2 mediumint(8) unsigned NOT NULL default '0', - condition_id MEDIUMINT(8) UNSIGNED NOT NULL DEFAULT '0', + condition_id MEDIUMINT(8) unsigned NOT NULL default '0', PRIMARY KEY (menu_id, id) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; @@ -2296,13 +2298,13 @@ CREATE TABLE `gossip_scripts` ( `command` mediumint(8) unsigned NOT NULL default '0', `datalong` mediumint(8) unsigned NOT NULL default '0', `datalong2` int(10) unsigned NOT NULL default '0', - `datalong3` int(10) unsigned NOT NULL default '0', - `datalong4` int(10) unsigned NOT NULL default '0', + `buddy_entry` mediumint(8) unsigned NOT NULL default '0', + `search_radius` mediumint(8) unsigned NOT NULL default '0', `data_flags` tinyint(3) unsigned NOT NULL default '0', `dataint` int(11) NOT NULL default '0', `dataint2` int(11) NOT NULL default '0', - `buddy_entry` int(11) NOT NULL default '0', - `search_radius` int(11) NOT NULL default '0', + `dataint3` int(11) NOT NULL default '0', + `dataint4` int(11) NOT NULL default '0', `x` float NOT NULL default '0', `y` float NOT NULL default '0', `z` float NOT NULL default '0', @@ -2418,7 +2420,7 @@ CREATE TABLE `item_loot_template` ( `lootcondition` tinyint(3) unsigned NOT NULL default '0', `condition_value1` mediumint(8) unsigned NOT NULL default '0', `condition_value2` mediumint(8) unsigned NOT NULL default '0', - `condition_id` MEDIUMINT(8) UNSIGNED NOT NULL DEFAULT '0', + `condition_id` MEDIUMINT(8) unsigned NOT NULL default '0', PRIMARY KEY (`entry`,`item`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Loot System'; @@ -2594,9 +2596,9 @@ CREATE TABLE `item_template` ( `GemProperties` mediumint(9) NOT NULL default '0', `RequiredDisenchantSkill` smallint(6) NOT NULL default '-1', `ArmorDamageModifier` float NOT NULL default '0', - `Duration` int(11) UNSIGNED DEFAULT '0' NOT NULL COMMENT 'Duration in seconds.', + `Duration` int(11) unsigned default '0' NOT NULL COMMENT 'Duration in seconds.', `ItemLimitCategory` smallint(6) NOT NULL default '0', - `HolidayId` int(11) UNSIGNED DEFAULT '0' NOT NULL, + `HolidayId` int(11) unsigned default '0' NOT NULL, `ScriptName` varchar(64) NOT NULL default '', `DisenchantID` mediumint(8) unsigned NOT NULL default '0', `FoodType` tinyint(3) unsigned NOT NULL default '0', @@ -2605,7 +2607,7 @@ CREATE TABLE `item_template` ( `Unknown400_2` int(10) unsigned NOT NULL default '0', `minMoneyLoot` int(10) unsigned NOT NULL default '0', `maxMoneyLoot` int(10) unsigned NOT NULL default '0', - `ExtraFlags` tinyint(1) UNSIGNED NOT NULL default '0', + `ExtraFlags` tinyint(1) unsigned NOT NULL default '0', PRIMARY KEY (`entry`), KEY `items_index` (`class`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Item System'; @@ -2621,66 +2623,39 @@ INSERT INTO `item_template` VALUES (35,2,10,-1,'Bent Staff',472,1,0,8192,0,0,0,1,24,4,17,-1,-1,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2900,0,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,'',0,0,0,0,0,2,2,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'',0,0,0,0,0,0,0,0), (36,2,4,-1,'Worn Mace',5194,1,0,8192,0,0,0,1,19,3,21,-1,-1,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1900,0,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,'',0,0,0,0,0,2,3,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'',0,0,1,0,0,0,0,0), (37,2,0,-1,'Worn Axe',8483,1,0,8192,0,0,0,1,19,3,21,-1,-1,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2000,0,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,'',0,0,0,0,0,1,3,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'',0,0,1,0,0,0,0,0), -(38,4,0,-1,'Recruit\'s Shirt',33310,1,0,8192,0,0,0,1,1,1,4,-1,-1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,'',0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'',0,0,0,0,0,0,0,0), (39,4,1,-1,'Recruit\'s Pants',9892,1,0,8192,0,0,0,1,7,1,7,-1,-1,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,'',0,0,0,0,0,7,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'',0,0,0,0,0,0,0,0), (40,4,1,-1,'Recruit\'s Boots',10141,1,0,8192,0,0,0,1,5,1,8,-1,-1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,'',0,0,0,0,0,7,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'',0,0,0,0,0,0,0,0), (43,4,1,-1,'Squire\'s Boots',9938,1,0,8192,0,0,0,1,5,1,8,-1,-1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,'',0,0,0,0,0,7,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'',0,0,0,0,0,0,0,0), (44,4,1,-1,'Squire\'s Pants',9937,1,0,8192,0,0,0,1,7,1,7,-1,-1,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,'',0,0,0,0,0,7,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'',0,0,0,0,0,0,0,0), -(45,4,0,-1,'Squire\'s Shirt',3265,1,0,8192,0,0,0,1,1,1,4,-1,-1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,'',0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'',0,0,0,0,0,0,0,0), (47,4,1,-1,'Footpad\'s Shoes',9915,1,0,8192,0,0,0,1,5,1,8,-1,-1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,'',0,0,0,0,0,7,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'',0,0,0,0,0,0,0,0), (48,4,1,-1,'Footpad\'s Pants',9913,1,0,8192,0,0,0,1,7,1,7,-1,-1,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,'',0,0,0,0,0,7,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'',0,0,0,0,0,0,0,0), -(49,4,0,-1,'Footpad\'s Shirt',9906,1,0,8192,0,0,0,1,1,1,4,-1,-1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,'',0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'',0,0,0,0,0,0,0,0), (51,4,1,-1,'Neophyte\'s Boots',9946,1,0,8192,0,0,0,1,5,1,8,-1,-1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,'',0,0,0,0,0,7,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'',0,0,0,0,0,0,0,0), (52,4,1,-1,'Neophyte\'s Pants',9945,1,0,8192,0,0,0,1,7,1,7,-1,-1,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,'',0,0,0,0,0,7,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'',0,0,0,0,0,0,0,0), -(53,4,0,-1,'Neophyte\'s Shirt',9944,1,0,8192,0,0,0,1,1,1,4,-1,-1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,'',0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'',0,0,0,0,0,0,0,0), (55,4,1,-1,'Apprentice\'s Boots',9929,1,0,8192,0,0,0,1,5,1,8,-1,-1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,'',0,0,0,0,0,7,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'',0,0,0,0,0,0,0,0), (56,4,1,-1,'Apprentice\'s Robe',12647,1,0,8192,0,0,0,1,7,1,20,-1,-1,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,'',0,0,0,0,0,7,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'',0,0,0,0,0,0,0,0), (57,4,1,-1,'Acolyte\'s Robe',12645,1,0,8192,0,0,0,1,7,1,20,-1,-1,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,'',0,0,0,0,0,7,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'',0,0,0,0,0,0,0,0), (59,4,1,-1,'Acolyte\'s Shoes',3261,1,0,8192,0,0,0,1,5,1,8,-1,-1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,'',0,0,0,0,0,7,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'',0,0,0,0,0,0,0,0), -(117,0,5,-1,'Tough Jerky',1116,1,0,8192,0,0,0,5,25,1,0,-1,-1,5,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,433,0,-1,0,0,11,1000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'',0,1,0,0,0,0,0,0), (120,4,1,-1,'Thug Pants',10006,1,0,8192,0,0,0,1,7,1,7,-1,-1,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,'',0,0,0,0,0,7,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'',0,0,0,0,0,0,0,0), (121,4,1,-1,'Thug Boots',10008,1,0,8192,0,0,0,1,5,1,8,-1,-1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,'',0,0,0,0,0,7,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'',0,0,0,0,0,0,0,0), -(127,4,0,-1,'Trapper\'s Shirt',9996,1,0,8192,0,0,0,1,1,1,4,-1,-1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,'',0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'',0,0,0,0,0,0,0,0), (129,4,1,-1,'Rugged Trapper\'s Boots',9977,1,0,8192,1.0391,1,1,1,5,1,8,-1,-1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,'',0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'',0,0,0,0,0,0,0,0), (139,4,1,-1,'Brawler\'s Pants',9988,1,0,8192,0,0,0,1,7,1,7,-1,-1,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,'',0,0,0,0,0,7,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'',0,0,0,0,0,0,0,0), (140,4,1,-1,'Brawler\'s Boots',65781,1,0,8192,0,0,0,1,5,1,8,-1,-1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,'',0,0,0,0,0,7,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'',0,0,0,0,0,0,0,0), (147,4,1,-1,'Rugged Trapper\'s Pants',9975,1,0,8192,0,0,0,1,7,1,7,-1,-1,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,'',0,0,0,0,0,7,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'',0,0,0,0,0,0,0,0), -(148,4,0,-1,'Rugged Trapper\'s Shirt',9976,1,0,8192,0,0,0,1,1,1,4,-1,-1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,'',0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'',0,0,0,0,0,0,0,0), -(153,4,2,-1,'Primitive Kilt',10050,1,0,8192,0,0,0,1,8,1,7,-1,-1,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,'',0,0,0,0,0,8,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'',0,0,0,0,0,0,0,0), -(154,4,0,-1,'Primitive Mantle',10058,1,0,8192,0,0,0,1,1,1,4,-1,-1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,'',0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'',0,0,0,0,0,0,0,0), -(159,0,5,-1,'Refreshing Spring Water',18084,1,0,8192,0,0,0,5,25,1,0,-1,-1,5,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,430,0,-1,0,0,59,1000,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,'',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'',0,0,0,0,0,0,0,0), (1395,4,1,-1,'Apprentice\'s Pants',1882,1,0,8192,0,0,0,1,7,1,7,-1,-1,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,'',0,0,0,0,0,7,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'',0,0,0,0,0,0,0,0), (1396,4,1,-1,'Acolyte\'s Pants',2201,1,0,8192,0,0,0,1,7,1,7,-1,-1,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,'',0,0,0,0,0,7,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'',0,0,0,0,0,0,0,0), -(2070,0,5,-1,'Darnassian Bleu',6353,1,0,8192,0,0,0,5,25,1,0,-1,-1,5,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,433,0,-1,0,0,11,1000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'',0,3,0,0,0,0,0,0), (2092,2,15,-1,'Worn Dagger',2704,1,0,8192,0,0,0,1,18,3,13,-1,-1,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1600,0,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,'',0,0,0,0,0,1,3,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'',0,0,1,0,0,0,0,0), -(2101,1,0,-1,'Light Quiver',21328,1,0,8192,0,0,0,1,4,1,18,-1,-1,1,0,0,0,0,0,0,0,0,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,'',0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'',0,0,0,0,0,0,0,0), -(2102,1,0,-1,'Small Ammo Pouch',1816,1,0,8192,0,0,0,1,4,1,18,-1,-1,1,0,0,0,0,0,0,0,0,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,'',0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'',0,0,0,0,0,0,0,0), -(2105,4,0,-1,'Thug Shirt',10005,1,0,8192,0,0,0,1,5,1,4,-1,-1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,'',0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'',0,0,0,0,0,0,0,0), (2361,2,5,-1,'Battleworn Hammer',8688,1,0,8192,0,0,0,1,23,4,17,-1,-1,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2900,0,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,'',0,0,0,0,0,2,1,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'',0,0,0,0,0,0,0,0), (2362,4,6,-1,'Worn Wooden Shield',18730,1,0,8192,0,0,0,1,11,2,14,-1,-1,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,'',0,0,0,0,0,1,4,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'',0,0,0,0,0,0,0,0), (2504,2,2,-1,'Worn Shortbow',8106,1,0,8192,0,0,0,1,29,5,15,-1,-1,2,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2300,1.1204e+09,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,'',0,0,0,0,0,2,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'',0,0,1,0,0,0,0,0), (2508,2,3,-1,'Old Blunderbuss',2409,1,0,8192,0,0,0,1,27,5,26,-1,-1,2,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2300,1.1204e+09,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,'',0,0,0,0,0,1,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'',0,0,1,0,0,0,0,0), -(2512,15,0,-1,'Rough Arrow',2414,0,0,8192,0,0,0,1,10,0,24,-1,-1,5,1,0,0,0,0,0,0,0,0,1000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3000,0,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,'',0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'',0,0,0,0,0,0,0,0), -(2516,15,0,-1,'Light Shot',2418,0,0,8192,0,0,0,1,10,0,24,-1,-1,5,1,0,0,0,0,0,0,0,0,1000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3000,0,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,'',0,0,0,0,0,2,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'',0,0,0,0,0,0,0,0), -(2947,15,0,-1,'Broken Small Throwing Knife',16754,1,0,8192,0,0,0,1,15,0,0,-1,-1,3,1,0,0,0,0,0,0,0,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2000,1.1204e+09,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,'',0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'',0,0,0,0,0,0,0,0), (3661,2,10,-1,'Handcrafted Staff',18530,1,0,8192,0,0,0,1,23,4,17,-1,-1,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2900,0,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,'',0,0,0,0,0,2,2,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'',0,0,0,0,0,0,0,0), -(4536,0,5,-1,'Shiny Red Apple',6410,1,0,8192,0,0,0,5,25,1,0,-1,-1,5,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,433,0,-1,0,0,11,1000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'',0,6,0,0,0,0,0,0), -(4540,0,5,-1,'Tough Hunk of Bread',6399,1,0,8192,0,0,0,5,25,1,0,-1,-1,5,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,433,0,-1,0,0,11,1000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'',0,4,0,0,0,0,0,0), -(4604,0,5,-1,'Forest Mushroom Cap',15852,1,0,8192,0,0,0,5,25,1,0,-1,-1,5,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,433,0,-1,0,0,11,1000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'',0,5,0,0,0,0,0,0), -(6096,4,0,-1,'Apprentice\'s Shirt',2163,1,0,8192,0,0,0,1,1,1,4,-1,-1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,'',0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'',0,0,0,0,0,0,0,0), -(6097,4,0,-1,'Acolyte\'s Shirt',2470,1,0,8192,0,0,0,1,1,1,4,-1,-1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,'',0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'',0,0,0,0,0,0,0,0), (6098,4,1,-1,'Neophyte\'s Robe',12679,1,0,8192,0,0,0,1,7,1,20,-1,-1,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,'',0,0,0,0,0,7,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'',0,0,0,0,0,0,0,0), (6119,4,1,-1,'Neophyte\'s Robe',12681,1,0,8192,0,0,0,1,7,1,20,-1,-1,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,'',0,0,0,0,0,7,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'',0,0,0,0,0,0,0,0), (6121,4,1,-1,'Recruit\'s Pants',9984,1,0,8192,0.9765,1,1,1,7,1,7,-1,-1,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,'',0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'',0,0,0,0,0,0,0,0), (6122,4,1,-1,'Recruit\'s Boots',9985,1,0,8192,0.9801,1,1,1,5,1,8,-1,-1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,'',0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'',0,0,0,0,0,0,0,0), (6123,4,1,-1,'Novice\'s Robe',12683,1,0,8192,0,0,0,1,7,1,20,-1,-1,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,'',0,0,0,0,0,7,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'',0,0,0,0,0,0,0,0), (6124,4,1,-1,'Novice\'s Pants',9724,1,0,8192,0,0,0,1,7,1,7,-1,-1,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,'',0,0,0,0,0,7,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'',0,0,0,0,0,0,0,0), -(6125,4,0,-1,'Brawler\'s Harness',9995,1,0,8192,0,0,0,1,1,1,4,-1,-1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,'',0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'',0,0,0,0,0,0,0,0), -(6126,4,1,-1,'Trapper\'s Pants',10002,1,0,8192,0,0,0,1,7,1,7,-1,-1,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,'',0,0,0,0,0,7,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'',0,0,0,0,0,0,0,0), -(6127,4,1,-1,'Trapper\'s Boots',10003,1,0,8192,0,0,0,1,5,1,8,-1,-1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,'',0,0,0,0,0,7,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'',0,0,0,0,0,0,0,0), (6129,4,1,-1,'Acolyte\'s Robe',12646,1,0,8192,0,0,0,1,7,1,20,-1,-1,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,'',0,0,0,0,0,7,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'',0,0,0,0,0,0,0,0), -(6134,4,0,-1,'Primitive Mantle',10108,1,0,8192,0,0,0,1,1,1,4,-1,-1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,'',0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'',0,0,0,0,0,0,0,0), -(6135,4,2,-1,'Primitive Kilt',10109,1,0,8192,0,0,0,1,8,1,7,-1,-1,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,'',0,0,0,0,0,8,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'',0,0,0,0,0,0,0,0), (6137,4,1,-1,'Thug Pants',10114,1,0,8192,0.9616,1,1,1,7,1,7,-1,-1,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,'',0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'',0,0,0,0,0,0,0,0), (6138,4,1,-1,'Trapper\'s Boots',10115,1,0,8192,0.9653,1,1,1,5,1,8,-1,-1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,'',0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'',0,0,0,0,0,0,0,0), (6139,4,1,-1,'Novice\'s Robe',12684,1,0,8192,0,0,0,1,7,1,20,-1,-1,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,'',0,0,0,0,0,7,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'',0,0,0,0,0,0,0,0), @@ -2688,12 +2663,6 @@ INSERT INTO `item_template` VALUES (6144,4,1,-1,'Neophyte\'s Robe',12680,1,0,8192,0,0,0,1,7,1,20,-1,-1,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,'',0,0,0,0,0,7,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'',0,0,0,0,0,0,0,0), (6948,15,0,-1,'Hearthstone',6418,1,64,8192,0,0,0,1,0,0,0,-1,-1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8690,0,0,0,1800000,1176,1800000,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,1,'',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'',0,0,0,0,0,0,0,0), (12282,2,1,-1,'Worn Battleaxe',22291,1,0,8192,0,0,0,1,22,4,17,-1,-1,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2900,0,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,'',0,0,0,0,0,1,1,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'',0,0,0,0,0,0,0,0), -(14646,12,0,-1,'Goldshire Gift Voucher',18499,1,0,8194,0,0,0,1,0,0,0,-1,-1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,1,'',0,0,0,5805,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'',0,0,0,0,0,0,0,0), -(14647,12,0,-1,'Kharanos Gift Voucher',18499,1,0,8194,0,0,0,1,0,0,0,-1,-1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,1,'',0,0,0,5841,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'',0,0,0,0,0,0,0,0), -(14648,12,0,-1,'Dolanaar Gift Voucher',18499,1,0,8194,0,0,0,1,0,0,0,-1,-1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,1,'',0,0,0,5842,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'',0,0,0,0,0,0,0,0), -(14649,12,0,-1,'Razor Hill Gift Voucher',18499,1,0,8193,0,0,0,1,0,0,0,-1,-1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,1,'',0,0,0,5843,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'',0,0,0,0,0,0,0,0), -(14650,12,0,-1,'Bloodhoof Village Gift Voucher',18499,1,0,8193,0,0,0,1,0,0,0,-1,-1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,1,'',0,0,0,5844,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'',0,0,0,0,0,0,0,0), -(14651,12,0,-1,'Brill Gift Voucher',18499,1,0,8193,0,0,0,1,0,0,0,-1,-1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,1,'',0,0,0,5847,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'',0,0,0,0,0,0,0,0), (20891,4,1,-1,'Neophyte\'s Robe',33256,1,0,8192,1.0082,1,1,1,7,1,20,-1,-1,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,'',0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'',0,0,0,0,0,0,0,0), (20892,4,1,-1,'Acolyte\'s Robe',33257,1,0,8192,1.0119,1,1,1,7,1,20,-1,-1,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,'',0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'',0,0,0,0,0,0,0,0), (20893,4,1,-1,'Apprentice\'s Robe',33258,1,0,8192,1.0155,1,1,1,7,1,20,-1,-1,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,'',0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'',0,0,0,0,0,0,0,0), @@ -3349,7 +3318,7 @@ CREATE TABLE `mail_loot_template` ( `lootcondition` tinyint(3) unsigned NOT NULL default '0', `condition_value1` mediumint(8) unsigned NOT NULL default '0', `condition_value2` mediumint(8) unsigned NOT NULL default '0', - `condition_id` MEDIUMINT(8) UNSIGNED NOT NULL DEFAULT '0', + `condition_id` MEDIUMINT(8) unsigned NOT NULL default '0', PRIMARY KEY (`entry`,`item`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Loot System'; @@ -4266,7 +4235,7 @@ CREATE TABLE `milling_loot_template` ( `lootcondition` tinyint(3) unsigned NOT NULL default '0', `condition_value1` mediumint(8) unsigned NOT NULL default '0', `condition_value2` mediumint(8) unsigned NOT NULL default '0', - `condition_id` MEDIUMINT(8) UNSIGNED NOT NULL DEFAULT '0', + `condition_id` MEDIUMINT(8) unsigned NOT NULL default '0', PRIMARY KEY (`entry`,`item`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Loot System'; @@ -4311,7 +4280,7 @@ CREATE TABLE `npc_spellclick_spells` ( `quest_start_active` tinyint(1) unsigned NOT NULL default '0', `quest_end` mediumint(8) unsigned NOT NULL default '0', `cast_flags` tinyint unsigned NOT NULL COMMENT 'first bit defines caster: 1=player, 0=creature; second bit defines target, same mapping as caster bit' -) ENGINE = MYISAM DEFAULT CHARSET=utf8; +) ENGINE=MYISAM DEFAULT CHARSET=utf8; -- -- Dumping data for table `npc_spellclick_spells` @@ -4863,7 +4832,7 @@ CREATE TABLE `pickpocketing_loot_template` ( `lootcondition` tinyint(3) unsigned NOT NULL default '0', `condition_value1` mediumint(8) unsigned NOT NULL default '0', `condition_value2` mediumint(8) unsigned NOT NULL default '0', - `condition_id` MEDIUMINT(8) UNSIGNED NOT NULL DEFAULT '0', + `condition_id` MEDIUMINT(8) unsigned NOT NULL default '0', PRIMARY KEY (`entry`,`item`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Loot System'; @@ -14656,7 +14625,7 @@ CREATE TABLE `playercreateinfo` ( `position_y` float NOT NULL default '0', `position_z` float NOT NULL default '0', `orientation` float NOT NULL default '0', - `phaseMap` smallint(5) unsigned NOT NULL DEFAULT '0', + `phaseMap` smallint(5) unsigned NOT NULL default '0', PRIMARY KEY (`race`,`class`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; @@ -20448,7 +20417,7 @@ CREATE TABLE `prospecting_loot_template` ( `lootcondition` tinyint(3) unsigned NOT NULL default '0', `condition_value1` mediumint(8) unsigned NOT NULL default '0', `condition_value2` mediumint(8) unsigned NOT NULL default '0', - `condition_id` MEDIUMINT(8) UNSIGNED NOT NULL DEFAULT '0', + `condition_id` MEDIUMINT(8) unsigned NOT NULL default '0', PRIMARY KEY (`entry`,`item`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Loot System'; @@ -20521,14 +20490,14 @@ UNLOCK TABLES; DROP TABLE IF EXISTS `quest_poi`; CREATE TABLE `quest_poi` ( - `questId` mediumint(8) unsigned NOT NULL DEFAULT '0', - `poiId` tinyint(3) NOT NULL DEFAULT '0', - `objIndex` int(11) NOT NULL DEFAULT '0', - `mapId` int(11) unsigned NOT NULL DEFAULT '0', - `mapAreaId` mediumint(8) unsigned NOT NULL DEFAULT '0', - `floorId` tinyint(3) unsigned NOT NULL DEFAULT '0', - `unk3` int(11) unsigned NOT NULL DEFAULT '0', - `unk4` int(11) unsigned NOT NULL DEFAULT '0', + `questId` mediumint(8) unsigned NOT NULL default '0', + `poiId` tinyint(3) NOT NULL default '0', + `objIndex` int(11) NOT NULL default '0', + `mapId` int(11) unsigned NOT NULL default '0', + `mapAreaId` mediumint(8) unsigned NOT NULL default '0', + `floorId` tinyint(3) unsigned NOT NULL default '0', + `unk3` int(11) unsigned NOT NULL default '0', + `unk4` int(11) unsigned NOT NULL default '0', PRIMARY KEY (`questId`,`poiId`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; @@ -20547,10 +20516,10 @@ UNLOCK TABLES; DROP TABLE IF EXISTS `quest_poi_points`; CREATE TABLE `quest_poi_points` ( - `questId` mediumint(8) unsigned NOT NULL DEFAULT '0', - `poiId` tinyint(3) NOT NULL DEFAULT '0', - `x` int(11) NOT NULL DEFAULT '0', - `y` int(11) NOT NULL DEFAULT '0', + `questId` mediumint(8) unsigned NOT NULL default '0', + `poiId` tinyint(3) NOT NULL default '0', + `x` int(11) NOT NULL default '0', + `y` int(11) NOT NULL default '0', KEY `idx_poip` (`questId`,`poiId`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; @@ -20579,6 +20548,8 @@ CREATE TABLE `quest_start_scripts` ( `data_flags` tinyint(3) unsigned NOT NULL default '0', `dataint` int(11) NOT NULL default '0', `dataint2` int(11) NOT NULL default '0', + `dataint3` int(11) NOT NULL default '0', + `dataint4` int(11) NOT NULL default '0', `buddy_entry` int(11) NOT NULL default '0', `search_radius` int(11) NOT NULL default '0', `x` float NOT NULL default '0', @@ -20798,7 +20769,7 @@ CREATE TABLE `reference_loot_template` ( `lootcondition` tinyint(3) unsigned NOT NULL default '0', `condition_value1` mediumint(8) unsigned NOT NULL default '0', `condition_value2` mediumint(8) unsigned NOT NULL default '0', - `condition_id` MEDIUMINT(8) UNSIGNED NOT NULL DEFAULT '0', + `condition_id` MEDIUMINT(8) unsigned NOT NULL default '0', PRIMARY KEY (`entry`,`item`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Loot System'; @@ -20892,7 +20863,7 @@ CREATE TABLE `scripted_areatrigger` ( `entry` MEDIUMINT( 8 ) NOT NULL , `ScriptName` CHAR( 64 ) NOT NULL , PRIMARY KEY ( `entry` ) -) ENGINE = MYISAM DEFAULT CHARSET=utf8; +) ENGINE=MYISAM DEFAULT CHARSET=utf8; -- -- Dumping data for table `scripted_areatrigger` @@ -21002,7 +20973,7 @@ CREATE TABLE `skinning_loot_template` ( `lootcondition` tinyint(3) unsigned NOT NULL default '0', `condition_value1` mediumint(8) unsigned NOT NULL default '0', `condition_value2` mediumint(8) unsigned NOT NULL default '0', - `condition_id` MEDIUMINT(8) UNSIGNED NOT NULL DEFAULT '0', + `condition_id` MEDIUMINT(8) unsigned NOT NULL default '0', PRIMARY KEY (`entry`,`item`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Loot System'; @@ -23448,7 +23419,7 @@ CREATE TABLE `spell_loot_template` ( `lootcondition` tinyint(3) unsigned NOT NULL default '0', `condition_value1` mediumint(8) unsigned NOT NULL default '0', `condition_value2` mediumint(8) unsigned NOT NULL default '0', - `condition_id` MEDIUMINT(8) UNSIGNED NOT NULL DEFAULT '0', + `condition_id` MEDIUMINT(8) unsigned NOT NULL default '0', PRIMARY KEY (`entry`,`item`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Loot System'; @@ -23536,23 +23507,23 @@ UNLOCK TABLES; DROP TABLE IF EXISTS `spell_proc_event`; CREATE TABLE `spell_proc_event` ( - `entry` mediumint(8) unsigned NOT NULL DEFAULT '0', - `SchoolMask` tinyint(4) unsigned NOT NULL DEFAULT '0', - `SpellFamilyName` smallint(5) unsigned NOT NULL DEFAULT '0', - `SpellFamilyMaskA0` int(10) unsigned NOT NULL DEFAULT '0', - `SpellFamilyMaskA1` int(10) unsigned NOT NULL DEFAULT '0', - `SpellFamilyMaskA2` int(10) unsigned NOT NULL DEFAULT '0', - `SpellFamilyMaskB0` int(10) unsigned NOT NULL DEFAULT '0', - `SpellFamilyMaskB1` int(10) unsigned NOT NULL DEFAULT '0', - `SpellFamilyMaskB2` int(10) unsigned NOT NULL DEFAULT '0', - `SpellFamilyMaskC0` int(10) unsigned NOT NULL DEFAULT '0', - `SpellFamilyMaskC1` int(10) unsigned NOT NULL DEFAULT '0', - `SpellFamilyMaskC2` int(10) unsigned NOT NULL DEFAULT '0', - `procFlags` int(10) unsigned NOT NULL DEFAULT '0', - `procEx` int(10) unsigned NOT NULL DEFAULT '0', - `ppmRate` float NOT NULL DEFAULT '0', - `CustomChance` float NOT NULL DEFAULT '0', - `Cooldown` int(10) unsigned NOT NULL DEFAULT '0', + `entry` mediumint(8) unsigned NOT NULL default '0', + `SchoolMask` tinyint(4) unsigned NOT NULL default '0', + `SpellFamilyName` smallint(5) unsigned NOT NULL default '0', + `SpellFamilyMaskA0` int(10) unsigned NOT NULL default '0', + `SpellFamilyMaskA1` int(10) unsigned NOT NULL default '0', + `SpellFamilyMaskA2` int(10) unsigned NOT NULL default '0', + `SpellFamilyMaskB0` int(10) unsigned NOT NULL default '0', + `SpellFamilyMaskB1` int(10) unsigned NOT NULL default '0', + `SpellFamilyMaskB2` int(10) unsigned NOT NULL default '0', + `SpellFamilyMaskC0` int(10) unsigned NOT NULL default '0', + `SpellFamilyMaskC1` int(10) unsigned NOT NULL default '0', + `SpellFamilyMaskC2` int(10) unsigned NOT NULL default '0', + `procFlags` int(10) unsigned NOT NULL default '0', + `procEx` int(10) unsigned NOT NULL default '0', + `ppmRate` float NOT NULL default '0', + `CustomChance` float NOT NULL default '0', + `Cooldown` int(10) unsigned NOT NULL default '0', PRIMARY KEY (`entry`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; @@ -24300,6 +24271,8 @@ CREATE TABLE `spell_scripts` ( `data_flags` tinyint(3) unsigned NOT NULL default '0', `dataint` int(11) NOT NULL default '0', `dataint2` int(11) NOT NULL default '0', + `dataint3` int(11) NOT NULL default '0', + `dataint4` int(11) NOT NULL default '0', `buddy_entry` int(11) NOT NULL default '0', `search_radius` int(11) NOT NULL default '0', `x` float NOT NULL default '0', @@ -24348,17 +24321,17 @@ UNLOCK TABLES; DROP TABLE IF EXISTS `spell_template`; CREATE TABLE `spell_template` ( - `id` int(11) unsigned NOT NULL DEFAULT '0', - `proc_flags` int(11) unsigned NOT NULL DEFAULT '0', - `proc_chance` int(11) unsigned NOT NULL DEFAULT '0', - `duration_index` int(11) unsigned NOT NULL DEFAULT '0', - `effect0` int(11) unsigned NOT NULL DEFAULT '0', - `effect0_implicit_target_a` int(11) unsigned NOT NULL DEFAULT '0', - `effect0_radius_idx` int(11) unsigned NOT NULL DEFAULT '0', - `effect0_apply_aura_name` int(11) unsigned NOT NULL DEFAULT '0', - `effect0_misc_value` int(11) unsigned NOT NULL DEFAULT '0', - `effect0_misc_value_b` int(11) unsigned NOT NULL DEFAULT '0', - `effect0_trigger_spell` int(11) unsigned NOT NULL DEFAULT '0', + `id` int(11) unsigned NOT NULL default '0', + `proc_flags` int(11) unsigned NOT NULL default '0', + `proc_chance` int(11) unsigned NOT NULL default '0', + `duration_index` int(11) unsigned NOT NULL default '0', + `effect0` int(11) unsigned NOT NULL default '0', + `effect0_implicit_target_a` int(11) unsigned NOT NULL default '0', + `effect0_radius_idx` int(11) unsigned NOT NULL default '0', + `effect0_apply_aura_name` int(11) unsigned NOT NULL default '0', + `effect0_misc_value` int(11) unsigned NOT NULL default '0', + `effect0_misc_value_b` int(11) unsigned NOT NULL default '0', + `effect0_trigger_spell` int(11) unsigned NOT NULL default '0', `comments` varchar(255) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='MaNGOS server side spells'; @@ -24534,9 +24507,9 @@ UNLOCK TABLES; DROP TABLE IF EXISTS `instance_encounters`; CREATE TABLE `instance_encounters` ( `entry` int(10) unsigned NOT NULL COMMENT 'Unique entry from DungeonEncounter.dbc', - `creditType` tinyint(3) unsigned NOT NULL DEFAULT '0', - `creditEntry` int(10) unsigned NOT NULL DEFAULT '0', - `lastEncounterDungeon` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'If not 0, LfgDungeon.dbc entry for the instance it is last encounter in', + `creditType` tinyint(3) unsigned NOT NULL default '0', + `creditEntry` int(10) unsigned NOT NULL default '0', + `lastEncounterDungeon` smallint(5) unsigned NOT NULL default '0' COMMENT 'If not 0, LfgDungeon.dbc entry for the instance it is last encounter in', PRIMARY KEY (`entry`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; diff --git a/src/shared/revision_nr.h b/src/shared/revision_nr.h index 96c42a289..addedd88b 100644 --- a/src/shared/revision_nr.h +++ b/src/shared/revision_nr.h @@ -1,4 +1,4 @@ #ifndef __REVISION_NR_H__ #define __REVISION_NR_H__ - #define REVISION_NR "12188" + #define REVISION_NR "12189" #endif // __REVISION_NR_H__