-- ---------------------------- -- Table structure for weapon -- ---------------------------- DROP TABLE IF EXISTS `weapon`; CREATE TABLE `weapon` ( `item_id` decimal(11,0) NOT NULL DEFAULT '0', `name` varchar(70) DEFAULT NULL, `bodypart` varchar(15) DEFAULT NULL, `crystallizable` varchar(5) DEFAULT NULL, `weight` decimal(4,0) DEFAULT NULL, `soulshots` decimal(2,0) DEFAULT NULL, `spiritshots` decimal(1,0) DEFAULT NULL, `material` varchar(11) DEFAULT NULL, `crystal_type` varchar(4) DEFAULT NULL, `p_dam` decimal(5,0) DEFAULT NULL, `rnd_dam` decimal(2,0) DEFAULT NULL, `weaponType` varchar(8) DEFAULT NULL, `critical` decimal(2,0) DEFAULT NULL, `hit_modify` decimal(6,5) DEFAULT NULL, `avoid_modify` decimal(2,0) DEFAULT NULL, `shield_def` decimal(3,0) DEFAULT NULL, `shield_def_rate` decimal(2,0) DEFAULT NULL, `atk_speed` decimal(3,0) DEFAULT NULL, `mp_consume` decimal(2,0) DEFAULT NULL, `m_dam` decimal(3,0) DEFAULT NULL, `price` decimal(11,0) DEFAULT NULL, `crystal_count` int(4) DEFAULT NULL, `sellable` varchar(5) DEFAULT 'true', `dropable` varchar(5) DEFAULT 'true', `destroyable` varchar(5) DEFAULT 'true', `tradeable` varchar(5) DEFAULT 'true', `item_skill_id` decimal(11,0) NOT NULL DEFAULT '0', `item_skill_lvl` decimal(11,0) NOT NULL DEFAULT '0', `onCast_skill_id` decimal(11,0) NOT NULL DEFAULT '0', `onCast_skill_lvl` decimal(11,0) NOT NULL DEFAULT '0', `onCast_skill_chance` decimal(11,0) NOT NULL DEFAULT '0', `onCrit_skill_id` decimal(11,0) NOT NULL DEFAULT '0', `onCrit_skill_lvl` decimal(11,0) NOT NULL DEFAULT '0', `onCrit_skill_chance` decimal(11,0) NOT NULL DEFAULT '0', PRIMARY KEY (`item_id`) ); -- ---------------------------- -- Records -- ---------------------------- INSERT INTO `weapon` VALUES ('1', 'Short Sword', 'rhand', 'false', '1600', '1', '1', 'steel', 'none', '8', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '6', '768', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('2', 'Long Sword', 'rhand', 'false', '1560', '2', '2', 'fine_steel', 'none', '24', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '17', '136000', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('3', 'Broadsword', 'rhand', 'false', '1590', '1', '1', 'steel', 'none', '11', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '9', '12500', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('4', 'Club', 'rhand', 'false', '1870', '1', '1', 'wood', 'none', '8', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '6', '768', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('5', 'Mace', 'rhand', 'false', '1880', '1', '1', 'steel', 'none', '11', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '9', '12500', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('6', 'Apprentice\'s Wand', 'rhand', 'false', '1350', '1', '1', 'steel', 'none', '5', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '7', '138', '0', 'false', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('7', 'Apprentice\'s Rod', 'rhand', 'false', '1330', '1', '1', 'wood', 'none', '6', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '8', '768', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('8', 'Willow Staff', 'lrhand', 'false', '1080', '1', '1', 'wood', 'none', '11', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '12', '12500', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('9', 'Cedar Staff', 'lrhand', 'false', '1090', '2', '2', 'wood', 'none', '16', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '16', '54100', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('10', 'Dagger', 'rhand', 'false', '1160', '1', '1', 'steel', 'none', '5', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '5', '138', '0', 'false', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('11', 'Bone Dagger', 'rhand', 'false', '1150', '1', '1', 'bone', 'none', '7', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '6', '768', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('12', 'Knife', 'rhand', 'false', '1140', '1', '1', 'bronze', 'none', '10', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '9', '12500', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('13', 'Short Bow', 'lrhand', 'false', '1950', '1', '1', 'wood', 'none', '16', '5', 'bow', '12', '-3.00000', '0', '0', '0', '293', '1', '6', '768', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('14', 'Bow', 'lrhand', 'false', '1930', '1', '1', 'wood', 'none', '23', '5', 'bow', '12', '-3.00000', '0', '0', '0', '293', '1', '9', '12500', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('15', 'Short Spear', 'lrhand', 'false', '2140', '2', '2', 'steel', 'none', '24', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '17', '136000', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('16', 'Great Spear', 'lrhand', 'false', '2120', '2', '2', 'bronze', 'none', '31', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '21', '244000', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('18', 'Leather Shield', 'lhand', 'false', '1430', '0', '0', 'leather', 'none', '0', '0', 'none', '0', '0.00000', '-8', '47', '20', '0', '0', '0', '39', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('19', 'Small Shield', 'lhand', 'false', '1420', '0', '0', 'steel', 'none', '0', '0', 'none', '0', '0.00000', '-8', '56', '20', '0', '0', '0', '638', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('20', 'Buckler', 'lhand', 'false', '1410', '0', '0', 'wood', 'none', '0', '0', 'none', '0', '0.00000', '-8', '67', '20', '0', '0', '0', '2780', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('66', 'Gladius', 'rhand', 'false', '1570', '2', '2', 'steel', 'none', '17', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '12', '54100', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('67', 'Orcish Sword', 'rhand', 'false', '1570', '2', '2', 'steel', 'none', '17', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '12', '54100', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('68', 'Falchion', 'rhand', 'false', '1530', '2', '2', 'bronze', 'none', '31', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '21', '244000', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('69', 'Bastard Sword', 'rhand', 'true', '1510', '2', '2', 'fine_steel', 'd', '51', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '32', '644000', '1170', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('70', 'Claymore', 'lrhand', 'true', '2090', '3', '3', 'fine_steel', 'd', '112', '10', 'bigsword', '8', '0.00000', '0', '0', '0', '325', '0', '54', '1800000', '3272', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('71', 'Flamberge', 'lrhand', 'true', '2010', '2', '2', 'bronze', 'c', '130', '10', 'bigsword', '8', '0.00000', '0', '0', '0', '325', '0', '61', '2290000', '916', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('72', 'Stormbringer', 'rhand', 'true', '1430', '2', '2', 'fine_steel', 'c', '107', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '61', '2290000', '916', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('73', 'Shamshir', 'rhand', 'true', '1420', '2', '2', 'fine_steel', 'c', '122', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '68', '2870000', '1148', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('74', 'Katana', 'rhand', 'true', '1420', '2', '2', 'fine_steel', 'c', '122', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '68', '2870000', '1148', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('75', 'Caliburs', 'rhand', 'true', '1400', '3', '3', 'oriharukon', 'c', '139', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '76', '4300000', '1720', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('76', 'Sword of Delusion', 'rhand', 'true', '1400', '3', '3', 'mithril', 'c', '139', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '76', '4300000', '1720', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('77', 'Tsurugi', 'rhand', 'true', '1400', '3', '3', 'fine_steel', 'c', '139', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '76', '4300000', '1720', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('78', 'Great Sword', 'lrhand', 'true', '1930', '1', '1', 'steel', 'b', '213', '10', 'bigsword', '8', '0.00000', '0', '0', '0', '325', '0', '91', '8680000', '1157', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('79', 'Sword of Damascus', 'rhand', 'true', '1350', '1', '1', 'damascus', 'b', '194', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '99', '13100000', '1746', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('80', 'Tallum Blade', 'rhand', 'true', '1330', '1', '1', 'adamantaite', 'a', '213', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '107', '18300000', '1464', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('81', 'Dragon Slayer', 'lrhand', 'true', '1840', '1', '1', 'bone', 'a', '282', '10', 'bigsword', '8', '0.00000', '0', '0', '0', '325', '0', '114', '27000000', '2160', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('82', 'God\'s Blade', 'rhand', 'true', '1300', '1', '1', 'adamantaite', 's', '257', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '124', '38000000', '1900', 'false', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('83', 'Sword of Magic', 'rhand', 'true', '970', '2', '2', 'bronze', 'd', '43', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '45', '716000', '1301', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('84', 'Homunkulus\'s Sword', 'rhand', 'true', '950', '3', '3', 'blood_steel', 'c', '111', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '101', '4300000', '1720', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('85', 'Phantom Sword', 'rhand', 'true', '860', '1', '1', 'oriharukon', 'a', '170', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '143', '18300000', '1464', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('86', 'Tomahawk', 'rhand', 'true', '1780', '2', '2', 'bronze', 'd', '51', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '32', '644000', '1170', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('87', 'Iron Hammer', 'rhand', 'false', '1850', '2', '2', 'steel', 'none', '31', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '21', '244000', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('88', 'Morning Star', 'rhand', 'true', '1720', '3', '3', 'steel', 'd', '79', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '47', '1400000', '2545', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('89', 'Big Hammer', 'rhand', 'true', '1710', '2', '2', 'fine_steel', 'c', '107', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '61', '2290000', '916', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('90', 'Goat Head Staff', 'lrhand', 'true', '1000', '3', '3', 'wood', 'd', '77', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '63', '1400000', '2545', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('91', 'Heavy War Axe', 'rhand', 'true', '1620', '1', '1', 'fine_steel', 'b', '175', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '91', '8680000', '1157', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('92', 'Sprite\'s Staff', 'lrhand', 'true', '960', '1', '1', 'wood', 'b', '170', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '122', '8680000', '1157', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('93', 'Winged Spear', 'lrhand', 'true', '2060', '3', '3', 'fine_steel', 'd', '79', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '47', '1400000', '2545', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('94', 'Bec de Corbin', 'lrhand', 'true', '2020', '2', '2', 'fine_steel', 'c', '122', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '68', '2870000', '1148', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('95', 'Poleaxe', 'lrhand', 'true', '2010', '3', '3', 'bronze', 'c', '139', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '76', '4300000', '1720', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('96', 'Scythe', 'lrhand', 'true', '2040', '2', '2', 'fine_steel', 'c', '107', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '61', '2290000', '916', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('97', 'Lance', 'lrhand', 'true', '1920', '1', '1', 'blood_steel', 'b', '194', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '99', '13100000', '1746', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('98', 'Halberd', 'lrhand', 'true', '1900', '1', '1', 'oriharukon', 'a', '213', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '107', '18300000', '1464', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('99', 'Apprentice\'s Spellbook', 'rhand', 'false', '650', '1', '1', 'paper', 'none', '9', '10', 'etc', '8', '0.00000', '0', '0', '0', '379', '0', '12', '12500', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('100', 'Voodoo Doll', 'rhand', 'false', '630', '2', '2', 'wood', 'none', '25', '10', 'etc', '8', '0.00000', '0', '0', '0', '379', '0', '28', '244000', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('101', 'Scroll of Wisdom', 'rhand', 'true', '610', '2', '2', 'paper', 'd', '32', '10', 'etc', '8', '0.00000', '0', '0', '0', '379', '0', '35', '409000', '743', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('102', 'Round Shield', 'lhand', 'false', '1390', '0', '0', 'steel', 'none', '0', '0', 'none', '0', '0.00000', '-8', '79', '20', '0', '0', '0', '7110', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('103', 'Tower Shield', 'lhand', 'true', '1240', '0', '0', 'fine_steel', 'c', '0', '0', 'none', '0', '0.00000', '-8', '190', '20', '0', '0', '0', '258000', '103', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('104', 'Shield of Victory', 'lhand', 'true', '6400', '0', '0', 'oriharukon', 'b', '0', '0', 'none', '0', '0.00000', '-8', '216', '20', '0', '0', '0', '545000', '72', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('105', 'Implosion Shield', 'lhand', 'true', '4800', '0', '0', 'damascus', 'b', '0', '0', 'none', '0', '0.00000', '-8', '216', '20', '0', '0', '0', '545000', '72', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('106', 'Dark Dragon Shield', 'lhand', 'true', '4800', '0', '0', 'damascus', 'b', '0', '0', 'none', '0', '0.00000', '-8', '230', '20', '0', '0', '0', '845000', '112', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('107', 'Composite Shield', 'lhand', 'true', '1230', '0', '0', 'fine_steel', 'c', '0', '0', 'none', '0', '0.00000', '-8', '190', '20', '0', '0', '0', '258000', '103', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('108', 'Masterpiece Shield', 'lhand', 'true', '5600', '0', '0', 'oriharukon', 'b', '0', '0', 'none', '0', '0.00000', '-8', '230', '20', '0', '0', '0', '845000', '112', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('109', 'Shield of Solar Eclipse', 'lhand', 'true', '4800', '0', '0', 'blood_steel', 'b', '0', '0', 'none', '0', '0.00000', '-8', '216', '20', '0', '0', '0', '545000', '72', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('110', 'Doom Shield', 'lhand', 'true', '1200', '0', '0', 'fine_steel', 'b', '0', '0', 'none', '0', '0.00000', '-8', '230', '20', '0', '0', '0', '845000', '112', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('111', 'Shield of Pledge', 'lhand', 'true', '4800', '0', '0', 'fine_steel', 'b', '0', '0', 'none', '0', '0.00000', '-8', '216', '20', '0', '0', '0', '545000', '72', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('120', 'Sword of Reflection', 'rhand', 'false', '1550', '2', '2', 'bronze', 'none', '24', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '17', '136000', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('121', 'Sword of Watershadow', 'rhand', 'false', '1540', '2', '2', 'bronze', 'none', '24', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '17', '136000', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('122', 'Handmade Sword', 'rhand', 'false', '1570', '2', '2', 'bronze', 'none', '17', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '12', '54100', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('123', 'Saber', 'rhand', 'true', '1520', '2', '2', 'steel', 'd', '40', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '26', '409000', '743', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('124', 'Two-Handed Sword', 'lrhand', 'true', '2180', '2', '2', 'fine_steel', 'd', '78', '10', 'bigsword', '8', '0.00000', '0', '0', '0', '325', '0', '39', '967000', '1758', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('125', 'Spinebone Sword', 'rhand', 'true', '1510', '2', '2', 'bone', 'd', '51', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '32', '644000', '1170', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('126', 'Artisan\'s Sword', 'rhand', 'true', '1500', '2', '2', 'steel', 'd', '51', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '32', '644000', '1170', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('127', 'Crimson Sword', 'rhand', 'true', '1490', '2', '2', 'fine_steel', 'd', '64', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '39', '967000', '1758', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('128', 'Knight\'s Sword', 'rhand', 'true', '1500', '2', '2', 'steel', 'd', '51', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '32', '644000', '1170', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('129', 'Sword of Revolution', 'rhand', 'true', '1450', '3', '3', 'fine_steel', 'd', '79', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '47', '1400000', '2545', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('130', 'Elven Sword', 'rhand', 'true', '1470', '2', '2', 'mithril', 'd', '64', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '39', '967000', '1758', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('131', 'Spirit Sword', 'rhand', 'true', '1420', '2', '2', 'fine_steel', 'c', '122', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '68', '2870000', '1148', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('132', 'Sword of Limit', 'rhand', 'true', '1400', '3', '3', 'fine_steel', 'c', '139', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '76', '4300000', '1720', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('133', 'Raid Sword', 'rhand', 'true', '1420', '2', '2', 'fine_steel', 'c', '122', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '68', '2870000', '1148', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('134', 'Sword of Nightmare', 'rhand', 'true', '1400', '3', '3', 'blood_steel', 'c', '139', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '76', '4300000', '1720', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('135', 'Samurai Longsword', 'rhand', 'true', '1380', '3', '3', 'oriharukon', 'c', '156', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '83', '6130000', '2452', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('136', 'Blade of Serenity', 'rhand', 'true', '1370', '1', '1', 'mithril', 'b', '175', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '91', '8680000', '1157', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('137', 'Mist Sword', 'rhand', 'true', '1370', '1', '1', 'mithril', 'b', '175', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '91', '8680000', '1157', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('138', 'Sword of Desert', 'rhand', 'true', '1370', '1', '1', 'blood_steel', 'b', '175', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '91', '8680000', '1157', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('139', 'Dusk Sword', 'rhand', 'true', '1370', '1', '1', 'blood_steel', 'b', '175', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '91', '8680000', '1157', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('140', 'Eminence Sword', 'rhand', 'true', '1370', '1', '1', 'chrysolite', 'b', '175', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '91', '8680000', '1157', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('141', 'Hazard Sword', 'rhand', 'true', '1370', '1', '1', 'blood_steel', 'b', '175', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '91', '8680000', '1157', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('142', 'Keshanberk', 'rhand', 'true', '1370', '1', '1', 'oriharukon', 'b', '175', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '91', '8680000', '1157', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('143', 'Sword of Mystic', 'rhand', 'true', '980', '2', '2', 'fine_steel', 'd', '43', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '45', '716000', '1301', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('144', 'Sword of Occult', 'rhand', 'true', '970', '2', '2', 'fine_steel', 'd', '43', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '45', '716000', '1301', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('145', 'Sword of Whispering Death', 'rhand', 'true', '920', '3', '3', 'fine_steel', 'c', '111', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '101', '4300000', '1720', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('146', 'Ghoulbane', 'rhand', 'true', '910', '1', '1', 'damascus', 'b', '140', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '122', '8680000', '1157', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('147', 'Tear of Darkness', 'rhand', 'true', '830', '1', '1', 'blood_steel', 'a', '170', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '143', '18300000', '1464', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('148', 'Sword of Valhalla', 'rhand', 'true', '900', '1', '1', 'oriharukon', 'b', '140', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '122', '8680000', '1157', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('149', 'Sword of Life', 'rhand', 'true', '840', '1', '1', 'mithril', 'a', '170', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '143', '18300000', '1464', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('150', 'Elemental Sword', 'rhand', 'true', '830', '1', '1', 'mithril', 'a', '170', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '143', '18300000', '1464', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('151', 'Sword of Miracles', 'rhand', 'true', '840', '1', '1', 'adamantaite', 'a', '186', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '152', '27000000', '2160', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('152', 'Heavy Chisel', 'rhand', 'false', '1890', '1', '1', 'steel', 'none', '10', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '8', '8070', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('153', 'Sickle', 'rhand', 'false', '1850', '1', '1', 'steel', 'none', '12', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '9', '18500', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('154', 'Dwarven Mace', 'rhand', 'false', '1860', '2', '2', 'bronze', 'none', '17', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '12', '54100', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('155', 'Flanged Mace', 'rhand', 'false', '1800', '2', '2', 'steel', 'none', '31', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '21', '244000', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('156', 'Hand Axe', 'rhand', 'true', '1820', '2', '2', 'steel', 'd', '40', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '26', '409000', '743', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('157', 'Spiked Club', 'rhand', 'true', '1750', '2', '2', 'steel', 'd', '64', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '39', '967000', '1758', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('158', 'Tarbar', 'rhand', 'true', '1730', '3', '3', 'fine_steel', 'd', '79', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '47', '1400000', '2545', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('159', 'Bonebreaker', 'rhand', 'true', '1720', '3', '3', 'fine_steel', 'd', '92', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '54', '1800000', '3272', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('160', 'Battle Axe', 'rhand', 'true', '1720', '2', '2', 'fine_steel', 'c', '107', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '61', '2290000', '916', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('161', 'Silver Axe', 'rhand', 'true', '1690', '2', '2', 'fine_steel', 'c', '107', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '61', '2290000', '916', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('162', 'War Axe', 'rhand', 'true', '1660', '3', '3', 'fine_steel', 'c', '139', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '76', '4300000', '1720', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('163', 'NO ITEM NAME', 'rhand', 'true', '4000', '1', '1', 'mithril', 'b', '175', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '91', '8680000', '1157', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('164', 'Elysian', 'rhand', 'true', '1580', '1', '1', 'oriharukon', 'a', '232', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '114', '27000000', '2160', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('165', 'Yablonski\'s Hammer', 'rhand', 'true', '1570', '1', '1', 'adamantaite', 's', '251', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '121', '35300000', '1765', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('166', 'Heavy Mace', 'rhand', 'true', '1800', '2', '2', 'steel', 'd', '40', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '26', '409000', '743', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('167', 'Scalpel', 'rhand', 'true', '1810', '2', '2', 'steel', 'd', '40', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '26', '409000', '743', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('168', 'Work Hammer', 'rhand', 'true', '1790', '2', '2', 'steel', 'd', '40', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '26', '409000', '743', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('169', 'Skull Breaker', 'rhand', 'true', '1740', '3', '3', 'fine_steel', 'd', '79', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '47', '1400000', '2545', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('170', 'NO ITEM NAME', 'rhand', 'true', '6400', '1', '1', 'fine_steel', 'a', '258', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '86', '16600000', '7', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('171', 'Deadman\'s Glory', 'rhand', 'true', '1600', '1', '1', 'bone', 'b', '194', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '99', '13100000', '1746', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('172', 'Heavy Bone Club', 'rhand', 'true', '1730', '3', '3', 'bone', 'd', '79', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '47', '1400000', '2545', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('173', 'Skull Graver', 'rhand', 'true', '1640', '2', '2', 'fine_steel', 'c', '107', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '61', '2290000', '916', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('174', 'Nirvana Axe', 'rhand', 'true', '1150', '3', '3', 'fine_steel', 'c', '111', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '101', '4300000', '1720', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('175', 'Art of Battle Axe', 'rhand', 'true', '1570', '1', '1', 'chrysolite', 'b', '194', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '99', '13100000', '1746', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('176', 'Journeyman\'s Staff', 'lrhand', 'false', '1070', '2', '2', 'wood', 'none', '23', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '22', '136000', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('177', 'Mage Staff', 'lrhand', 'false', '1050', '2', '2', 'wood', 'none', '30', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '28', '244000', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('178', 'Bone Staff', 'lrhand', 'true', '1060', '2', '2', 'bone', 'd', '39', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '35', '409000', '743', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('179', 'Mace of Prayer', 'rhand', 'true', '1300', '2', '2', 'steel', 'd', '41', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '43', '644000', '1170', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('180', 'Mace of Judgment', 'rhand', 'true', '1280', '2', '2', 'steel', 'd', '41', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '43', '644000', '1170', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('181', 'Mace of Miracle', 'rhand', 'true', '1250', '2', '2', 'steel', 'd', '41', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '43', '644000', '1170', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('182', 'Doom Hammer', 'rhand', 'true', '1200', '2', '2', 'steel', 'd', '41', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '43', '644000', '1170', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('183', 'Mystic Staff', 'lrhand', 'true', '1040', '2', '2', 'wood', 'd', '50', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '43', '644000', '1170', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('184', 'Conjuror\'s Staff', 'lrhand', 'true', '1030', '2', '2', 'oriharukon', 'd', '50', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '43', '644000', '1170', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('185', 'Staff of Mana', 'lrhand', 'true', '1040', '2', '2', 'wood', 'd', '50', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '43', '644000', '1170', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('186', 'Staff of Magic', 'lrhand', 'true', '1020', '2', '2', 'wood', 'd', '62', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '52', '967000', '1758', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('187', 'Atuba Hammer', 'lrhand', 'true', '1010', '3', '3', 'fine_steel', 'd', '90', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '72', '1800000', '3272', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('188', 'Ghost Staff', 'lrhand', 'true', '1000', '3', '3', 'wood', 'd', '90', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '72', '1800000', '3272', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('189', 'Staff of Life', 'rhand', 'true', '1180', '3', '3', 'wood', 'd', '74', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '72', '1800000', '3272', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('190', 'Atuba Mace', 'lrhand', 'true', '1010', '3', '3', 'fine_steel', 'd', '90', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '72', '1800000', '3272', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('191', 'Heavy Doom Hammer', 'lrhand', 'true', '1020', '2', '2', 'fine_steel', 'c', '103', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '81', '2290000', '916', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('192', 'Crystal Staff', 'lrhand', 'true', '1020', '2', '2', 'crystal', 'c', '103', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '81', '2290000', '916', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('193', 'Stick of Faith', 'rhand', 'true', '1160', '2', '2', 'wood', 'c', '85', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '81', '2290000', '916', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('194', 'Heavy Doom Axe', 'lrhand', 'true', '1010', '2', '2', 'fine_steel', 'c', '103', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '81', '2290000', '916', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('195', 'Cursed Staff', 'lrhand', 'true', '1000', '2', '2', 'wood', 'c', '119', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '91', '2870000', '1148', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('196', 'Stick of Eternity', 'rhand', 'true', '1130', '3', '3', 'wood', 'c', '111', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '101', '4300000', '1720', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('197', 'Paradia Staff', 'lrhand', 'true', '1010', '3', '3', 'wood', 'c', '135', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '101', '4300000', '1720', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('198', 'Inferno Staff', 'lrhand', 'true', '1000', '3', '3', 'wood', 'c', '135', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '101', '4300000', '1720', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('199', 'Pa\'agrian Hammer', 'lrhand', 'true', '1010', '3', '3', 'blood_steel', 'c', '135', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '101', '4300000', '1720', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('200', 'Sage\'s Staff', 'lrhand', 'true', '1000', '3', '3', 'wood', 'c', '135', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '101', '4300000', '1720', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('201', 'Club of Nature', 'rhand', 'true', '1100', '3', '3', 'wood', 'c', '111', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '101', '4300000', '1720', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('202', 'Mace of The Underworld', 'rhand', 'true', '1090', '3', '3', 'fine_steel', 'c', '111', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '101', '4300000', '1720', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('203', 'Pa\'agrian Axe', 'lrhand', 'true', '990', '3', '3', 'blood_steel', 'c', '141', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '104', '4780000', '1912', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('204', 'Deadman\'s Staff', 'lrhand', 'true', '1010', '3', '3', 'bone', 'c', '152', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '111', '6130000', '2452', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('205', 'Ghoul\'s Staff', 'lrhand', 'true', '1000', '3', '3', 'bone', 'c', '152', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '111', '6130000', '2452', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('206', 'Demon\'s Staff', 'lrhand', 'true', '990', '3', '3', 'wood', 'c', '152', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '111', '6130000', '2452', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('207', 'Staff of Phantom', 'lrhand', 'true', '980', '1', '1', 'oriharukon', 'b', '170', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '122', '8680000', '1157', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('208', 'Staff of Seal', 'lrhand', 'true', '970', '1', '1', 'wood', 'b', '170', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '122', '8680000', '1157', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('209', 'Divine Staff', 'lrhand', 'true', '960', '1', '1', 'wood', 'b', '189', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '132', '13100000', '1746', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('210', 'Staff of Evil Spirits', 'lrhand', 'true', '930', '1', '1', 'wood', 'b', '189', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '132', '13100000', '1746', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('211', 'Staff of Nobility', 'lrhand', 'true', '910', '1', '1', 'wood', 'b', '189', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '132', '13100000', '1746', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('212', 'Dasparion\'s Staff', 'lrhand', 'true', '920', '1', '1', 'adamantaite', 'a', '207', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '143', '18300000', '1464', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('213', 'Branch of The Mother Tree', 'lrhand', 'true', '900', '1', '1', 'wood', 'a', '226', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '152', '27000000', '2160', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('214', 'The Staff', 'lrhand', 'true', '910', '1', '1', 'wood', 's', '245', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '162', '35300000', '1765', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('215', 'Doom Dagger', 'rhand', 'false', '1130', '1', '1', 'steel', 'none', '10', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '9', '12500', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('216', 'Dirk', 'rhand', 'false', '1130', '2', '2', 'steel', 'none', '15', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '12', '54100', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('217', 'Shining Knife', 'rhand', 'false', '1120', '2', '2', 'mithril', 'none', '21', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '17', '136000', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('218', 'Throwing Knife', 'rhand', 'false', '1120', '2', '2', 'fine_steel', 'none', '21', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '17', '136000', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('219', 'Sword Breaker', 'rhand', 'false', '1110', '2', '2', 'steel', 'none', '27', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '21', '244000', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('220', 'Crafted Dagger', 'rhand', 'true', '1100', '2', '2', 'chrysolite', 'd', '35', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '26', '409000', '743', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('221', 'Assassin Knife', 'rhand', 'true', '1100', '2', '2', 'steel', 'd', '35', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '26', '409000', '743', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('222', 'Poniard Dagger', 'rhand', 'true', '1090', '2', '2', 'steel', 'd', '45', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '32', '644000', '1170', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('223', 'Kukuri', 'rhand', 'true', '1080', '2', '2', 'fine_steel', 'd', '56', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '39', '967000', '1758', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('224', 'Maingauche', 'rhand', 'true', '1070', '3', '3', 'fine_steel', 'd', '69', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '47', '1400000', '2545', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('225', 'Mithril Dagger', 'rhand', 'true', '1060', '3', '3', 'mithril', 'd', '80', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '54', '1800000', '3272', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('226', 'Cursed Dagger', 'rhand', 'true', '1040', '2', '2', 'mithril', 'c', '94', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '61', '2290000', '916', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('227', 'Stiletto', 'rhand', 'true', '1030', '2', '2', 'fine_steel', 'c', '107', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '68', '2870000', '1148', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('228', 'Crystal Dagger', 'rhand', 'true', '1000', '3', '3', 'crystal', 'c', '136', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '83', '6130000', '2452', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('229', 'Kris', 'rhand', 'true', '980', '1', '1', 'mithril', 'b', '153', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '91', '8680000', '1157', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('230', 'Wolverine Needle', 'rhand', 'true', '1040', '2', '2', 'fine_steel', 'c', '94', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '61', '2290000', '916', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('231', 'Grace Dagger', 'rhand', 'true', '1020', '3', '3', 'fine_steel', 'c', '122', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '76', '4300000', '1720', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('232', 'Dark Elven Dagger', 'rhand', 'true', '1050', '2', '2', 'fine_steel', 'c', '94', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '61', '2290000', '916', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('233', 'Dark Screamer', 'rhand', 'true', '1010', '3', '3', 'fine_steel', 'c', '122', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '76', '4300000', '1720', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('234', 'Demon Dagger', 'rhand', 'true', '970', '1', '1', 'blood_steel', 'b', '170', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '99', '13100000', '1746', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('235', 'Bloody Orchid', 'rhand', 'true', '960', '1', '1', 'blood_steel', 'a', '186', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '107', '18300000', '1464', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('236', 'Soul Separator', 'rhand', 'true', '950', '1', '1', 'oriharukon', 'a', '203', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '114', '27000000', '2160', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('237', 'Dragon\'s Tooth', 'rhand', 'true', '950', '1', '1', 'bone', 's', '220', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '121', '35300000', '1765', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('238', 'Dagger of Mana', 'rhand', 'true', '750', '2', '2', 'fine_steel', 'd', '45', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '52', '967000', '1758', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('239', 'Mystic Knife', 'rhand', 'true', '760', '2', '2', 'fine_steel', 'd', '45', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '52', '967000', '1758', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('240', 'Conjurer\'s Knife', 'rhand', 'true', '750', '2', '2', 'fine_steel', 'd', '45', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '52', '967000', '1758', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('241', 'Shilen Knife', 'rhand', 'true', '750', '2', '2', 'bronze', 'd', '45', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '52', '967000', '1758', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('242', 'Soulfire Dirk', 'rhand', 'true', '750', '2', '2', 'fine_steel', 'c', '86', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '91', '2870000', '1148', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('243', 'Hell Knife', 'rhand', 'true', '740', '1', '1', 'blood_steel', 'b', '122', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '122', '8680000', '1157', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('244', 'Elven Fighter Fist', 'rhand', 'false', '0', '0', '0', 'leather', 'none', '0', '5', 'fist', '4', '4.00000', '0', '0', '0', '325', '0', '0', '22', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('245', 'Dark Fighter Fist', 'rhand', 'false', '0', '0', '0', 'leather', 'none', '0', '5', 'fist', '4', '4.00000', '0', '0', '0', '325', '0', '0', '33', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('246', 'Human Fighter Fist', 'rhand', 'false', '0', '0', '0', 'leather', 'none', '0', '5', 'fist', '4', '4.00000', '0', '0', '0', '325', '0', '0', '44', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('247', 'Dwarven Fighter Fist', 'rhand', 'false', '0', '0', '0', 'leather', 'none', '0', '5', 'fist', '4', '4.00000', '0', '0', '0', '325', '0', '0', '56', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('248', 'Orc Fighter Fist', 'rhand', 'false', '0', '0', '0', 'leather', 'none', '0', '5', 'fist', '4', '4.00000', '0', '0', '0', '325', '0', '0', '67', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('249', 'Elven Mystic Fist', 'rhand', 'false', '0', '0', '0', 'leather', 'none', '0', '5', 'fist', '4', '4.00000', '0', '0', '0', '325', '0', '0', '11', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('250', 'Dark Mystic Fist', 'rhand', 'false', '0', '0', '0', 'leather', 'none', '0', '5', 'fist', '4', '4.00000', '0', '0', '0', '325', '0', '0', '22', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('251', 'Human Mystic Fist', 'rhand', 'false', '0', '0', '0', 'leather', 'none', '0', '5', 'fist', '4', '4.00000', '0', '0', '0', '325', '0', '0', '33', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('252', 'Orc Shaman Fist', 'rhand', 'false', '0', '0', '0', 'leather', 'none', '0', '10', 'fist', '8', '0.00000', '0', '0', '0', '379', '0', '0', '44', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('253', 'Spiked Gloves', 'lrhand', 'false', '1590', '1', '1', 'leather', 'none', '10', '5', 'dualfist', '4', '4.00000', '0', '0', '0', '325', '0', '6', '768', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('254', 'Iron Gloves', 'lrhand', 'false', '1580', '1', '1', 'steel', 'none', '13', '5', 'dualfist', '4', '4.00000', '0', '0', '0', '325', '0', '9', '12500', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('255', 'Fox Claw Gloves', 'lrhand', 'false', '1560', '2', '2', 'steel', 'none', '21', '5', 'dualfist', '4', '4.00000', '0', '0', '0', '325', '0', '12', '54100', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('256', 'Cestus', 'lrhand', 'false', '1570', '2', '2', 'steel', 'none', '29', '5', 'dualfist', '4', '4.00000', '0', '0', '0', '325', '0', '17', '136000', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('257', 'Viper Fang', 'lrhand', 'false', '1560', '2', '2', 'steel', 'none', '38', '5', 'dualfist', '4', '4.00000', '0', '0', '0', '325', '0', '21', '244000', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('258', 'Bagh-Nakh', 'lrhand', 'true', '1540', '2', '2', 'steel', 'd', '49', '5', 'dualfist', '4', '4.00000', '0', '0', '0', '325', '0', '26', '409000', '743', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('259', 'Single-Edged Jamadhr', 'lrhand', 'true', '1550', '2', '2', 'steel', 'd', '62', '5', 'dualfist', '4', '4.00000', '0', '0', '0', '325', '0', '32', '644000', '1170', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('260', 'Triple-Edged Jamadhr', 'lrhand', 'true', '1540', '2', '2', 'fine_steel', 'd', '78', '5', 'dualfist', '4', '4.00000', '0', '0', '0', '325', '0', '39', '967000', '1758', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('261', 'Bich\'Hwa', 'lrhand', 'true', '1510', '3', '3', 'fine_steel', 'd', '96', '5', 'dualfist', '4', '4.00000', '0', '0', '0', '325', '0', '47', '1400000', '2545', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('262', 'Scallop Jamadhr', 'lrhand', 'true', '1520', '3', '3', 'fine_steel', 'd', '112', '5', 'dualfist', '4', '4.00000', '0', '0', '0', '325', '0', '54', '1800000', '3272', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('263', 'Chakram', 'lrhand', 'true', '1490', '2', '2', 'fine_steel', 'c', '130', '5', 'dualfist', '4', '4.00000', '0', '0', '0', '325', '0', '61', '2290000', '916', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('264', 'Pata', 'lrhand', 'true', '1440', '1', '1', 'fine_steel', 'b', '204', '5', 'dualfist', '4', '4.00000', '0', '0', '0', '325', '0', '89', '7830000', '1044', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('265', 'Fisted Blade', 'lrhand', 'true', '1480', '3', '3', 'fine_steel', 'c', '169', '5', 'dualfist', '4', '4.00000', '0', '0', '0', '325', '0', '76', '4300000', '1720', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('266', 'Great Pata', 'lrhand', 'true', '1460', '3', '3', 'chrysolite', 'c', '190', '5', 'dualfist', '4', '4.00000', '0', '0', '0', '325', '0', '83', '6130000', '2452', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('267', 'Arthro Nail', 'lrhand', 'true', '1420', '1', '1', 'blood_steel', 'b', '213', '5', 'dualfist', '4', '4.00000', '0', '0', '0', '325', '0', '91', '8680000', '1157', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('268', 'Bellion Cestus', 'lrhand', 'true', '1390', '1', '1', 'mithril', 'b', '236', '5', 'dualfist', '4', '4.00000', '0', '0', '0', '325', '0', '99', '13100000', '1746', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('269', 'Blood Tornado', 'lrhand', 'true', '1370', '1', '1', 'blood_steel', 'a', '259', '5', 'dualfist', '4', '4.00000', '0', '0', '0', '325', '0', '107', '18300000', '1464', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('270', 'Dragon Grinder', 'lrhand', 'true', '1350', '1', '1', 'adamantaite', 'a', '282', '5', 'dualfist', '4', '4.00000', '0', '0', '0', '325', '0', '114', '27000000', '2160', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('271', 'Hunting Bow', 'lrhand', 'false', '1910', '6', '2', 'wood', 'none', '34', '5', 'bow', '12', '-3.00000', '0', '0', '0', '293', '2', '12', '54100', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('272', 'Forest Bow', 'lrhand', 'false', '1900', '7', '2', 'wood', 'none', '49', '5', 'bow', '12', '-3.00000', '0', '0', '0', '293', '3', '17', '136000', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('273', 'Composite Bow', 'lrhand', 'false', '1880', '7', '2', 'steel', 'none', '64', '5', 'bow', '12', '-3.00000', '0', '0', '0', '293', '3', '21', '244000', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('274', 'Strengthened Bow', 'lrhand', 'true', '1870', '6', '2', 'steel', 'd', '82', '5', 'bow', '12', '-3.00000', '0', '0', '0', '293', '3', '26', '409000', '743', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('275', 'Long Bow', 'lrhand', 'true', '1830', '6', '2', 'steel', 'd', '114', '5', 'bow', '12', '-3.00000', '0', '0', '0', '227', '4', '35', '644000', '1170', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('276', 'Elven Bow', 'lrhand', 'true', '1850', '6', '2', 'mithril', 'd', '105', '5', 'bow', '12', '-3.00000', '0', '0', '0', '293', '4', '32', '644000', '1170', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('277', 'Dark Elven Bow', 'lrhand', 'true', '1830', '6', '2', 'steel', 'd', '105', '5', 'bow', '12', '-3.00000', '0', '0', '0', '293', '4', '32', '644000', '1170', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('278', 'Gastraphetes', 'lrhand', 'true', '1840', '8', '2', 'fine_steel', 'd', '132', '5', 'bow', '12', '-3.00000', '0', '0', '0', '293', '4', '39', '967000', '1758', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('279', 'Strengthened Long Bow', 'lrhand', 'true', '1820', '10', '3', 'fine_steel', 'd', '179', '5', 'bow', '12', '-3.00000', '0', '0', '0', '227', '5', '51', '1400000', '2545', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('280', 'Light Crossbow', 'lrhand', 'true', '1810', '10', '3', 'fine_steel', 'd', '191', '5', 'bow', '12', '-3.00000', '0', '0', '0', '293', '6', '54', '1800000', '3272', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('281', 'Crystallized Ice Bow', 'lrhand', 'true', '1790', '8', '2', 'crystal', 'c', '220', '5', 'bow', '12', '-3.00000', '0', '0', '0', '293', '6', '61', '2290000', '916', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('282', 'Elemental Bow', 'lrhand', 'true', '1770', '8', '2', 'fine_steel', 'c', '277', '5', 'bow', '12', '-3.00000', '0', '0', '0', '227', '7', '75', '2870000', '1148', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('283', 'Akat Long Bow', 'lrhand', 'true', '1740', '9', '3', 'horn', 'c', '316', '5', 'bow', '12', '-3.00000', '0', '0', '0', '227', '7', '84', '4300000', '1720', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('284', 'Dark Elven Long Bow', 'lrhand', 'true', '1720', '3', '1', 'oriharukon', 'b', '397', '5', 'bow', '12', '-3.00000', '0', '0', '0', '227', '8', '100', '8680000', '1157', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('285', 'Noble Elven Bow', 'lrhand', 'true', '1760', '8', '2', 'mithril', 'c', '252', '5', 'bow', '12', '-3.00000', '0', '0', '0', '293', '7', '68', '2870000', '1148', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('286', 'Eminence Bow', 'lrhand', 'true', '1720', '10', '3', 'chrysolite', 'c', '323', '5', 'bow', '12', '-3.00000', '0', '0', '0', '293', '8', '83', '6130000', '2452', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('287', 'Bow of Peril', 'lrhand', 'true', '1700', '3', '1', 'blood_steel', 'b', '400', '5', 'bow', '12', '-3.00000', '0', '0', '0', '293', '9', '99', '13100000', '1746', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('288', 'Carnage Bow', 'lrhand', 'true', '1670', '2', '1', 'damascus', 'a', '440', '5', 'bow', '12', '-3.00000', '0', '0', '0', '293', '9', '107', '18300000', '1464', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('289', 'Soul Bow', 'lrhand', 'true', '1660', '2', '1', 'oriharukon', 'a', '528', '5', 'bow', '12', '-3.00000', '0', '0', '0', '227', '10', '125', '27000000', '2160', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('290', 'The Bow', 'lrhand', 'true', '1650', '1', '1', 'adamantaite', 's', '519', '5', 'bow', '12', '-3.00000', '0', '0', '0', '293', '10', '121', '35300000', '1765', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('291', 'Trident', 'lrhand', 'true', '2100', '2', '2', 'bronze', 'd', '40', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '26', '409000', '743', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('292', 'Pike', 'lrhand', 'true', '2090', '2', '2', 'steel', 'd', '51', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '32', '644000', '1170', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('293', 'War Hammer', 'lrhand', 'true', '2080', '2', '2', 'fine_steel', 'd', '64', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '39', '967000', '1758', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('294', 'War Pick', 'lrhand', 'true', '2050', '3', '3', 'fine_steel', 'd', '79', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '47', '1400000', '2545', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('295', 'Dwarven Trident', 'lrhand', 'true', '2090', '2', '2', 'steel', 'd', '51', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '32', '644000', '1170', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('296', 'Dwarven Pike', 'lrhand', 'true', '2070', '2', '2', 'fine_steel', 'd', '64', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '39', '967000', '1758', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('297', 'Glaive', 'lrhand', 'true', '2050', '3', '3', 'fine_steel', 'd', '92', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '54', '1800000', '3272', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('298', 'Orcish Glaive', 'lrhand', 'true', '2030', '2', '2', 'fine_steel', 'c', '107', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '61', '2290000', '916', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('299', 'Orcish Poleaxe', 'lrhand', 'true', '1950', '3', '3', 'blood_steel', 'c', '156', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '83', '6130000', '2452', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('300', 'Great Axe', 'lrhand', 'true', '1940', '1', '1', 'damascus', 'b', '175', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '91', '8680000', '1157', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('301', 'Scorpion', 'lrhand', 'true', '1990', '3', '3', 'fine_steel', 'c', '144', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '78', '4780000', '1912', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('302', 'Body Slasher', 'lrhand', 'true', '2030', '2', '2', 'fine_steel', 'c', '107', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '61', '2290000', '916', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('303', 'Widow Maker', 'lrhand', 'true', '1980', '3', '3', 'fine_steel', 'c', '144', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '78', '4780000', '1912', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('304', 'Orcish Halberd', 'lrhand', 'true', '1880', '1', '1', 'blood_steel', 'a', '219', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '109', '21300000', '1704', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('305', 'Tallum Glaive', 'lrhand', 'true', '1840', '1', '1', 'chrysolite', 'a', '232', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '114', '27000000', '2160', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('306', 'Dragon Claw Axe', 'lrhand', 'true', '1820', '1', '1', 'bone', 's', '251', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '121', '35300000', '1765', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('307', 'Aurakyria Lance', 'lrhand', 'true', '1800', '1', '1', 'adamantaite', 's', '269', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '128', '0', '0', 'false', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('308', 'Buffalo\'s Horn', 'rhand', 'false', '660', '1', '1', 'steel', 'none', '6', '10', 'etc', '8', '0.00000', '0', '0', '0', '379', '0', '8', '768', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('309', 'Tears of Eva', 'rhand', 'false', '630', '2', '2', 'steel', 'none', '19', '10', 'etc', '8', '0.00000', '0', '0', '0', '379', '0', '22', '136000', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('310', 'Relic of The Saints', 'rhand', 'false', '610', '2', '2', 'steel', 'none', '19', '10', 'etc', '8', '0.00000', '0', '0', '0', '379', '0', '22', '136000', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('311', 'Crucifix of Blessing', 'rhand', 'false', '620', '2', '2', 'steel', 'none', '25', '10', 'etc', '8', '0.00000', '0', '0', '0', '379', '0', '28', '244000', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('312', 'Branch of Life', 'rhand', 'true', '620', '2', '2', 'steel', 'd', '32', '10', 'etc', '8', '0.00000', '0', '0', '0', '379', '0', '35', '409000', '743', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('313', 'Temptation of Abyss', 'rhand', 'true', '610', '2', '2', 'steel', 'd', '32', '10', 'etc', '8', '0.00000', '0', '0', '0', '379', '0', '35', '409000', '743', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('314', 'Proof of Revenge', 'rhand', 'true', '600', '2', '2', 'steel', 'd', '32', '10', 'etc', '8', '0.00000', '0', '0', '0', '379', '0', '35', '409000', '743', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('315', 'Divine Tome', 'rhand', 'true', '570', '2', '2', 'steel', 'd', '41', '10', 'etc', '8', '0.00000', '0', '0', '0', '379', '0', '43', '644000', '1170', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('316', 'Blood of Saints', 'rhand', 'true', '580', '2', '2', 'steel', 'd', '51', '10', 'etc', '8', '0.00000', '0', '0', '0', '379', '0', '52', '967000', '1758', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('317', 'Tome of Blood', 'rhand', 'true', '570', '2', '2', 'steel', 'd', '51', '10', 'etc', '8', '0.00000', '0', '0', '0', '379', '0', '52', '967000', '1758', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('318', 'Crucifix of Blood', 'rhand', 'true', '540', '3', '3', 'steel', 'd', '63', '10', 'etc', '8', '0.00000', '0', '0', '0', '379', '0', '63', '1400000', '2545', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('319', 'Eye of Infinity', 'rhand', 'true', '1600', '3', '3', 'steel', 'd', '63', '10', 'etc', '8', '0.00000', '0', '0', '0', '379', '0', '63', '1400000', '2545', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('320', 'Blue Crystal Skull', 'rhand', 'true', '1600', '3', '3', 'steel', 'd', '67', '10', 'etc', '8', '0.00000', '0', '0', '0', '379', '0', '66', '1520000', '2763', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('321', 'Demon Fangs', 'rhand', 'true', '1600', '3', '3', 'steel', 'd', '67', '10', 'etc', '8', '0.00000', '0', '0', '0', '379', '0', '66', '1520000', '2763', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('322', 'Vajra Wands', 'rhand', 'true', '1600', '3', '3', 'steel', 'd', '74', '10', 'etc', '8', '0.00000', '0', '0', '0', '379', '0', '72', '1800000', '3272', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('323', 'Ancient Reagent', 'rhand', 'true', '1600', '3', '3', 'steel', 'd', '74', '10', 'etc', '8', '0.00000', '0', '0', '0', '379', '0', '72', '1800000', '3272', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('324', 'Tears of Fairy', 'rhand', 'true', '1600', '2', '2', 'steel', 'c', '98', '10', 'etc', '8', '0.00000', '0', '0', '0', '379', '0', '91', '2870000', '1148', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('325', 'Horn of Glory', 'rhand', 'true', '540', '2', '2', 'steel', 'c', '98', '10', 'etc', '8', '0.00000', '0', '0', '0', '379', '0', '91', '2870000', '1148', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('326', 'Heathen\'s Book', 'rhand', 'true', '560', '3', '3', 'steel', 'c', '111', '10', 'etc', '8', '0.00000', '0', '0', '0', '379', '0', '101', '4300000', '1720', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('327', 'Hex Doll', 'rhand', 'true', '1600', '3', '3', 'steel', 'c', '111', '10', 'etc', '8', '0.00000', '0', '0', '0', '379', '0', '101', '4300000', '1720', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('328', 'Candle of Wisdom', 'rhand', 'true', '1600', '3', '3', 'steel', 'c', '125', '10', 'etc', '8', '0.00000', '0', '0', '0', '379', '0', '111', '6130000', '2452', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('329', 'Blessed Branch', 'rhand', 'true', '800', '3', '3', 'steel', 'c', '125', '10', 'etc', '8', '0.00000', '0', '0', '0', '379', '0', '111', '6130000', '2452', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('330', 'Phoenix Feather', 'rhand', 'true', '800', '3', '3', 'steel', 'c', '125', '10', 'etc', '8', '0.00000', '0', '0', '0', '379', '0', '111', '6130000', '2452', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('331', 'Cerberus Eye', 'rhand', 'true', '1600', '3', '3', 'steel', 'c', '125', '10', 'etc', '8', '0.00000', '0', '0', '0', '379', '0', '111', '6130000', '2452', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('332', 'Scroll of Destruction', 'rhand', 'true', '1600', '3', '3', 'steel', 'c', '125', '10', 'etc', '8', '0.00000', '0', '0', '0', '379', '0', '111', '6130000', '2452', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('333', 'Claws of Black Dragon', 'rhand', 'true', '1600', '3', '3', 'steel', 'c', '125', '10', 'etc', '8', '0.00000', '0', '0', '0', '379', '0', '111', '6130000', '2452', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('334', 'Three Eyed Crow\'s Feather', 'rhand', 'true', '1600', '3', '3', 'steel', 'c', '125', '10', 'etc', '8', '0.00000', '0', '0', '0', '379', '0', '111', '6130000', '2452', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('335', 'Soul Crystal', 'rhand', 'true', '1600', '1', '1', 'steel', 'b', '155', '10', 'etc', '8', '0.00000', '0', '0', '0', '379', '0', '132', '13100000', '1746', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('336', 'Scroll of Mana', 'rhand', 'true', '1600', '1', '1', 'steel', 'b', '170', '10', 'etc', '8', '0.00000', '0', '0', '0', '379', '0', '143', '18300000', '2440', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('337', 'Scroll of Massacre', 'rhand', 'true', '1600', '1', '1', 'steel', 'b', '170', '10', 'etc', '8', '0.00000', '0', '0', '0', '379', '0', '143', '18300000', '2440', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('338', 'Wyvern\'s Skull', 'rhand', 'true', '4800', '1', '1', 'steel', 'b', '170', '10', 'etc', '8', '0.00000', '0', '0', '0', '379', '0', '143', '18300000', '2440', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('339', 'Blood Crystal', 'rhand', 'true', '1600', '1', '1', 'steel', 'b', '170', '10', 'etc', '8', '0.00000', '0', '0', '0', '379', '0', '143', '18300000', '2440', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('340', 'Unicorn\'s Horn', 'rhand', 'true', '1600', '1', '1', 'steel', 'b', '170', '10', 'etc', '8', '0.00000', '0', '0', '0', '379', '0', '143', '18300000', '2440', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('341', 'Forgotten Tome', 'rhand', 'true', '1600', '1', '1', 'steel', 'a', '186', '10', 'etc', '8', '0.00000', '0', '0', '0', '379', '0', '152', '27000000', '2160', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('342', 'Enchanted Flute', 'rhand', 'true', '1600', '1', '1', 'steel', 'a', '186', '10', 'etc', '8', '0.00000', '0', '0', '0', '379', '0', '152', '27000000', '2160', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('343', 'Headless Arrow', 'rhand', 'true', '1600', '1', '1', 'steel', 'a', '186', '10', 'etc', '8', '0.00000', '0', '0', '0', '379', '0', '152', '27000000', '2160', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('344', 'Proof of Overlord', 'rhand', 'true', '1600', '1', '1', 'steel', 'a', '186', '10', 'etc', '8', '0.00000', '0', '0', '0', '379', '0', '152', '27000000', '2160', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('345', 'Deathbringer Sword', 'rhand', 'true', '4800', '1', '1', 'steel', 'a', '186', '10', 'etc', '8', '0.00000', '0', '0', '0', '379', '0', '152', '27000000', '2160', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('346', 'Tears of Fallen Angel', 'rhand', 'true', '1600', '1', '1', 'steel', 's', '201', '10', 'etc', '8', '0.00000', '0', '0', '0', '379', '0', '162', '35300000', '1765', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('625', 'Bone Shield', 'lhand', 'false', '1380', '0', '0', 'bone', 'none', '0', '0', 'none', '0', '0.00000', '-8', '90', '20', '0', '0', '0', '12900', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('626', 'Bronze Shield', 'lhand', 'true', '1370', '0', '0', 'bronze', 'd', '0', '0', 'none', '0', '0.00000', '-8', '101', '20', '0', '0', '0', '21900', '39', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('627', 'Aspis', 'lhand', 'true', '1350', '0', '0', 'steel', 'd', '0', '0', 'none', '0', '0.00000', '-8', '114', '20', '0', '0', '0', '35000', '63', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('628', 'Hoplon', 'lhand', 'true', '1340', '0', '0', 'fine_steel', 'd', '0', '0', 'none', '0', '0.00000', '-8', '128', '20', '0', '0', '0', '53300', '96', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('629', 'Kite Shield', 'lhand', 'true', '1320', '0', '0', 'fine_steel', 'd', '0', '0', 'none', '0', '0.00000', '-8', '142', '20', '0', '0', '0', '78400', '142', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('630', 'Square Shield', 'lhand', 'true', '1310', '0', '0', 'fine_steel', 'd', '0', '0', 'none', '0', '0.00000', '-8', '154', '20', '0', '0', '0', '103000', '187', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('631', 'Eldarake', 'lhand', 'true', '1290', '0', '0', 'fine_steel', 'c', '0', '0', 'none', '0', '0.00000', '-8', '166', '20', '0', '0', '0', '133000', '53', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('632', 'Knight\'s Shield', 'lhand', 'true', '1260', '0', '0', 'fine_steel', 'c', '0', '0', 'none', '0', '0.00000', '-8', '178', '20', '0', '0', '0', '169000', '67', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('633', 'Zubei\'s Shield', 'lhand', 'true', '1210', '0', '0', 'mithril', 'b', '0', '0', 'none', '0', '0.00000', '-8', '216', '20', '0', '0', '0', '545000', '72', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('634', 'Dragon Shield', 'lhand', 'true', '1170', '0', '0', 'bone', 's', '0', '0', 'none', '0', '0.00000', '-8', '269', '20', '0', '0', '0', '2510000', '125', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('635', 'Wolf Shield', 'lhand', 'true', '640', '0', '0', 'oriharukon', 'b', '0', '0', 'none', '0', '0.00000', '-8', '216', '20', '0', '0', '0', '545000', '72', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('636', 'Shining Dragon Shield', 'lhand', 'true', '720', '0', '0', 'mithril', 'b', '0', '0', 'none', '0', '0.00000', '-8', '230', '20', '0', '0', '0', '845000', '112', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('637', 'Shield of Valor', 'lhand', 'true', '720', '0', '0', 'blood_steel', 'b', '0', '0', 'none', '0', '0.00000', '-8', '230', '20', '0', '0', '0', '845000', '112', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('638', 'Glorious Shield', 'lhand', 'true', '800', '0', '0', 'fine_steel', 'b', '0', '0', 'none', '0', '0.00000', '-8', '216', '20', '0', '0', '0', '545000', '72', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('639', 'Red Flame Shield', 'lhand', 'true', '960', '0', '0', 'blood_steel', 'b', '0', '0', 'none', '0', '0.00000', '-8', '230', '20', '0', '0', '0', '845000', '112', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('640', 'Elven Crystal Shield', 'lhand', 'true', '720', '0', '0', 'crystal', 'b', '0', '0', 'none', '0', '0.00000', '-8', '216', '20', '0', '0', '0', '545000', '72', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('641', 'Dark Crystal Shield', 'lhand', 'true', '1190', '0', '0', 'crystal', 'a', '0', '0', 'none', '0', '0.00000', '-8', '243', '20', '0', '0', '0', '1220000', '97', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('642', 'Elven Vagian Shield', 'lhand', 'true', '560', '0', '0', 'mithril', 'b', '0', '0', 'none', '0', '0.00000', '-8', '216', '20', '0', '0', '0', '545000', '72', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('643', 'Dark Vagian Shield', 'lhand', 'true', '560', '0', '0', 'mithril', 'b', '0', '0', 'none', '0', '0.00000', '-8', '230', '20', '0', '0', '0', '845000', '112', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('644', 'Hell Shield', 'lhand', 'true', '640', '0', '0', 'blood_steel', 'b', '0', '0', 'none', '0', '0.00000', '-8', '230', '20', '0', '0', '0', '845000', '112', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('645', 'Art of Shield', 'lhand', 'true', '560', '0', '0', 'chrysolite', 'b', '0', '0', 'none', '0', '0.00000', '-8', '216', '20', '0', '0', '0', '545000', '72', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('646', 'Shield of Silence', 'lhand', 'true', '640', '0', '0', 'damascus', 'b', '0', '0', 'none', '0', '0.00000', '-8', '216', '20', '0', '0', '0', '545000', '72', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('647', 'Gust Shield', 'lhand', 'true', '720', '0', '0', 'blood_steel', 'b', '0', '0', 'none', '0', '0.00000', '-8', '230', '20', '0', '0', '0', '845000', '112', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('648', 'Prairie Shield', 'lhand', 'true', '800', '0', '0', 'chrysolite', 'b', '0', '0', 'none', '0', '0.00000', '-8', '216', '20', '0', '0', '0', '545000', '72', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('649', 'Shield of The Underworld', 'lhand', 'true', '880', '0', '0', 'damascus', 'b', '0', '0', 'none', '0', '0.00000', '-8', '230', '20', '0', '0', '0', '845000', '112', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('650', 'Shield of Concentration', 'lhand', 'true', '960', '0', '0', 'oriharukon', 'b', '0', '0', 'none', '0', '0.00000', '-8', '216', '20', '0', '0', '0', '545000', '72', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('651', 'Ace\'s Shield', 'lhand', 'true', '1040', '0', '0', 'oriharukon', 'b', '0', '0', 'none', '0', '0.00000', '-8', '230', '20', '0', '0', '0', '845000', '112', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('652', 'Guardian\'s Shield', 'lhand', 'true', '1120', '0', '0', 'mithril', 'b', '0', '0', 'none', '0', '0.00000', '-8', '216', '20', '0', '0', '0', '545000', '72', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('653', 'Marksman Shield', 'lhand', 'true', '1200', '0', '0', 'leather', 'b', '0', '0', 'none', '0', '0.00000', '-8', '230', '20', '0', '0', '0', '845000', '112', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('654', 'Shield of Mana', 'lhand', 'true', '480', '0', '0', 'mithril', 'b', '0', '0', 'none', '0', '0.00000', '-8', '216', '20', '0', '0', '0', '545000', '72', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('655', 'Sage\'s Shield', 'lhand', 'true', '560', '0', '0', 'steel', 'b', '0', '0', 'none', '0', '0.00000', '-8', '230', '20', '0', '0', '0', '845000', '112', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('656', 'Paradia Shield', 'lhand', 'true', '480', '0', '0', 'chrysolite', 'b', '0', '0', 'none', '0', '0.00000', '-8', '216', '20', '0', '0', '0', '545000', '72', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('657', 'Inferno Shield', 'lhand', 'true', '560', '0', '0', 'blood_steel', 'b', '0', '0', 'none', '0', '0.00000', '-8', '230', '20', '0', '0', '0', '845000', '112', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('658', 'Shield of Black Ore', 'lhand', 'true', '560', '0', '0', 'damascus', 'b', '0', '0', 'none', '0', '0.00000', '-8', '230', '20', '0', '0', '0', '845000', '112', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('659', 'Shield of Summoning', 'lhand', 'true', '480', '0', '0', 'leather', 'b', '0', '0', 'none', '0', '0.00000', '-8', '216', '20', '0', '0', '0', '545000', '72', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('660', 'Otherworldly Shield', 'lhand', 'true', '560', '0', '0', 'adamantaite', 'b', '0', '0', 'none', '0', '0.00000', '-8', '230', '20', '0', '0', '0', '845000', '112', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('661', 'Elemental Shield', 'lhand', 'true', '480', '0', '0', 'mithril', 'b', '0', '0', 'none', '0', '0.00000', '-8', '216', '20', '0', '0', '0', '545000', '72', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('662', 'Shield of Phantom', 'lhand', 'true', '560', '0', '0', 'oriharukon', 'b', '0', '0', 'none', '0', '0.00000', '-8', '230', '20', '0', '0', '0', '845000', '112', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('663', 'Shield of Grace', 'lhand', 'true', '480', '0', '0', 'mithril', 'b', '0', '0', 'none', '0', '0.00000', '-8', '216', '20', '0', '0', '0', '545000', '72', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('664', 'Shield of Holy Spirit', 'lhand', 'true', '560', '0', '0', 'chrysolite', 'b', '0', '0', 'none', '0', '0.00000', '-8', '230', '20', '0', '0', '0', '845000', '112', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('665', 'Phoenix Shield', 'lhand', 'true', '480', '0', '0', 'blood_steel', 'b', '0', '0', 'none', '0', '0.00000', '-8', '216', '20', '0', '0', '0', '545000', '72', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('666', 'Cerberus Shield', 'lhand', 'true', '560', '0', '0', 'damascus', 'b', '0', '0', 'none', '0', '0.00000', '-8', '230', '20', '0', '0', '0', '845000', '112', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('667', 'Shield of Aid', 'lhand', 'true', '480', '0', '0', 'fine_steel', 'b', '0', '0', 'none', '0', '0.00000', '-8', '216', '20', '0', '0', '0', '545000', '72', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('668', 'Shield of Blessing', 'lhand', 'true', '560', '0', '0', 'adamantaite', 'b', '0', '0', 'none', '0', '0.00000', '-8', '230', '20', '0', '0', '0', '845000', '112', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('669', 'Flame Shield', 'lhand', 'true', '480', '0', '0', 'blood_steel', 'b', '0', '0', 'none', '0', '0.00000', '-8', '216', '20', '0', '0', '0', '545000', '72', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('670', 'Shield of Bravery', 'lhand', 'true', '560', '0', '0', 'chrysolite', 'b', '0', '0', 'none', '0', '0.00000', '-8', '230', '20', '0', '0', '0', '845000', '112', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('671', 'Blood Shield', 'lhand', 'true', '480', '0', '0', 'blood_steel', 'b', '0', '0', 'none', '0', '0.00000', '-8', '216', '20', '0', '0', '0', '545000', '72', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('672', 'Absolute Shield', 'lhand', 'true', '560', '0', '0', 'mithril', 'b', '0', '0', 'none', '0', '0.00000', '-8', '230', '20', '0', '0', '0', '845000', '112', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('673', 'Avadon Shield', 'lhand', 'true', '1210', '0', '0', 'damascus', 'b', '0', '0', 'none', '0', '0.00000', '-8', '216', '20', '0', '0', '0', '545000', '72', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('674', 'Divine Shield', 'lhand', 'true', '560', '0', '0', 'adamantaite', 'b', '0', '0', 'none', '0', '0.00000', '-8', '230', '20', '0', '0', '0', '845000', '112', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('738', 'Sword of Solidarity', 'rhand', 'false', '1300', '1', '1', 'bronze', 'none', '12', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '9', '18500', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('743', 'Sword of Sentinel', 'rhand', 'false', '1300', '1', '1', 'steel', 'none', '14', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '11', '33600', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('744', 'Staff of Sentinel', 'lrhand', 'false', '1800', '1', '1', 'wood', 'none', '13', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '14', '33600', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('747', 'Wand of Adept', 'rhand', 'false', '1300', '1', '1', 'wood', 'none', '11', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '13', '25500', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('748', 'Gallint\'s Oak Wand', 'rhand', 'false', '1350', '1', '1', 'wood', 'none', '10', '20', 'blunt', '4', '4.00000', '0', '0', '0', '325', '0', '10', '0', '0', 'false', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('749', '0', 'lrhand', 'true', '100', '0', '0', 'wood', 'd', '21', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '32', '35800', '5', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('754', 'Red Sunset Staff', 'lrhand', 'false', '1700', '1', '1', 'wood', 'none', '13', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '13', '25500', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('945', 'Skeleton Buckler', 'lhand', 'false', '1400', '0', '0', 'wood', 'none', '0', '0', 'none', '0', '0.00000', '-8', '69', '20', '0', '0', '0', '3440', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('946', 'Skeleton Dagger', 'rhand', 'false', '1100', '2', '2', 'steel', 'none', '16', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '13', '66600', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('975', 'Blood Saber', 'rhand', 'false', '1450', '1', '1', 'oriharukon', 'none', '14', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '11', '33600', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('981', 'Red Sunset Sword', 'lrhand', 'false', '1300', '1', '1', 'steel', 'none', '16', '10', 'bigsword', '8', '0.00000', '0', '0', '0', '325', '0', '10', '25500', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('989', 'Eldritch Dagger', 'rhand', 'false', '1130', '1', '1', 'steel', 'none', '11', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '10', '25500', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('1142', 'Rusted Bronze Sword', 'rhand', 'false', '1400', '2', '2', 'steel', 'none', '18', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '21', '0', '0', 'false', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('1181', 'Neti\'s Bow', 'lrhand', 'false', '1850', '7', '2', 'wood', 'none', '45', '5', 'bow', '12', '-3.00000', '0', '0', '0', '293', '2', '16', '0', '0', 'false', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('1182', 'Neti\'s Dagger', 'rhand', 'false', '1000', '2', '2', 'steel', 'none', '19', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '16', '0', '0', 'false', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('1213', 'Guard\'s Bow', 'lrhand', 'false', '1800', '7', '2', 'steel', 'none', '49', '5', 'bow', '12', '-3.00000', '0', '0', '0', '293', '3', '17', '136000', '0', 'false', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('1295', 'Long Sword', 'rhand', 'false', '200', '2', '2', 'fine_steel', 'none', '22', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '6', '66600', '0', 'false', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('1296', 'Gladius', 'rhand', 'false', '300', '2', '2', 'steel', 'none', '22', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '6', '66600', '0', 'false', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('1297', 'Bastard Sword', 'rhand', 'false', '400', '2', '2', 'fine_steel', 'none', '22', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '6', '66600', '0', 'false', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('1298', 'Caliburs', 'rhand', 'false', '500', '2', '2', 'oriharukon', 'none', '22', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '6', '66600', '0', 'false', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('1299', 'Great Sword', 'lrhand', 'false', '500', '3', '3', 'steel', 'none', '200', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '6', '3340000', '0', 'false', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('1300', 'Apprentice\'s Rod', 'rhand', 'false', '80', '2', '2', 'wood', 'none', '22', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '6', '66600', '0', 'false', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('1301', 'Big Hammer', 'rhand', 'false', '300', '2', '2', 'fine_steel', 'none', '22', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '6', '66600', '0', 'false', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('1302', 'Bec de Corbin', 'lrhand', 'false', '750', '2', '2', 'fine_steel', 'none', '22', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '6', '66600', '0', 'false', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('1303', 'Lance', 'lrhand', 'false', '750', '2', '2', 'fine_steel', 'none', '1', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '6', '66600', '0', 'false', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('1304', 'Conjuror\'s Staff', 'lrhand', 'false', '150', '2', '2', 'oriharukon', 'none', '15', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '17', '66600', '0', 'false', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('1305', 'Knife', 'rhand', 'false', '120', '2', '2', 'bronze', 'none', '1', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '6', '66600', '0', 'false', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('1306', 'Crafted Dagger', 'rhand', 'false', '100', '2', '2', 'chrysolite', 'none', '22', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '6', '66600', '0', 'false', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('1307', 'Bow', 'lrhand', 'false', '150', '9', '3', 'wood', 'none', '120', '5', 'bow', '12', '-3.00000', '0', '0', '0', '293', '7', '6', '3340000', '0', 'false', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('1328', 'Shield of Grace', 'lhand', 'false', '300', '0', '0', 'mithril', 'none', '0', '0', 'none', '0', '0.00000', '-8', '71', '20', '0', '0', '0', '1090000', '0', 'false', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('1329', 'Shield of Victory', 'lhand', 'false', '350', '0', '0', 'adamantaite', 'none', '0', '0', 'none', '0', '0.00000', '-8', '71', '20', '0', '0', '0', '1430000', '0', 'false', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('1330', 'Zubei\'s Shield', 'lhand', 'false', '500', '0', '0', 'mithril', 'none', '0', '0', 'none', '0', '0.00000', '-8', '71', '20', '0', '0', '0', '1850000', '0', 'false', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('1331', 'Otherworldly Shield', 'lhand', 'false', '350', '0', '0', 'adamantaite', 'none', '0', '0', 'none', '0', '0.00000', '-8', '71', '20', '0', '0', '0', '1430000', '0', 'false', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('1332', 'Knight\'s Shield', 'lhand', 'false', '500', '0', '0', 'fine_steel', 'none', '0', '0', 'none', '0', '0.00000', '-8', '71', '20', '0', '0', '0', '321000', '0', 'false', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('1333', 'Brandish', 'lrhand', 'false', '2250', '2', '2', 'steel', 'none', '21', '10', 'bigsword', '8', '0.00000', '0', '0', '0', '325', '0', '12', '54100', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('1376', 'Guard Spear', 'lrhand', 'true', '300', '2', '2', 'bronze', 'd', '50', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '26', '409000', '743', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('1471', 'Silenos Blowgun', 'rhand', 'true', '300', '2', '2', 'steel', 'd', '5', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '5', '409000', '743', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('1472', 'Dreadbane', 'lrhand', 'true', '300', '2', '2', 'bronze', 'd', '50', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '26', '409000', '743', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('1510', 'Butcher\'s Sword', 'rhand', 'false', '1450', '1', '1', 'steel', 'none', '13', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '10', '25500', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('1511', 'Silversmith Hammer', 'rhand', 'false', '1860', '1', '1', 'steel', 'none', '13', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '10', '25500', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('1660', 'Cursed Maingauche', 'rhand', 'true', '1070', '3', '3', 'fine_steel', 'd', '62', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '42', '1400000', '2545', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('2368', 'Training Gloves', 'lrhand', 'false', '1580', '1', '1', 'cloth', 'none', '7', '5', 'dualfist', '4', '4.00000', '0', '0', '0', '325', '0', '5', '138', '0', 'false', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('2369', 'Squire\'s Sword', 'rhand', 'false', '1600', '1', '1', 'steel', 'none', '6', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '5', '138', '0', 'false', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('2370', 'Guild Member\'s Club', 'rhand', 'false', '1910', '1', '1', 'wood', 'none', '6', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '5', '138', '0', 'false', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('2371', 'Fist of Butcher', 'lrhand', 'false', '1400', '1', '1', 'steel', 'none', '16', '5', 'dualfist', '4', '4.00000', '0', '0', '0', '325', '0', '10', '25500', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('2372', 'Dagger of Adept', 'rhand', 'false', '1050', '1', '1', 'steel', 'none', '11', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '10', '25500', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('2373', 'Eldritch Staff', 'lrhand', 'false', '1050', '1', '1', 'wood', 'none', '13', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '13', '25500', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('2374', 'Red Sunset Dagger', 'rhand', 'false', '1100', '1', '1', 'steel', 'none', '11', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '10', '25500', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('2493', 'Brigandine Shield', 'lhand', 'true', '1320', '0', '0', 'leather', 'd', '0', '0', 'none', '0', '0.00000', '-8', '142', '20', '0', '0', '0', '78400', '142', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('2494', 'Plate Shield', 'lhand', 'true', '1310', '0', '0', 'leather', 'd', '0', '0', 'none', '0', '0.00000', '-8', '154', '20', '0', '0', '0', '103000', '187', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('2495', 'Chain Shield', 'lhand', 'true', '1280', '0', '0', 'leather', 'c', '0', '0', 'none', '0', '0.00000', '-8', '166', '20', '0', '0', '0', '133000', '53', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('2496', 'Dwarven Chain Shield', 'lhand', 'true', '1280', '0', '0', 'leather', 'c', '0', '0', 'none', '0', '0.00000', '-8', '174', '20', '0', '0', '0', '156000', '62', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('2497', 'Full Plate Shield', 'lhand', 'true', '1220', '0', '0', 'leather', 'c', '0', '0', 'none', '0', '0.00000', '-8', '203', '20', '0', '0', '0', '375000', '150', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('2498', 'Shield of Nightmare', 'lhand', 'true', '1180', '0', '0', 'leather', 'a', '0', '0', 'none', '0', '0.00000', '-8', '256', '20', '0', '0', '0', '1850000', '148', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('2499', 'Elven Long Sword', 'rhand', 'true', '1440', '3', '3', 'fine_steel', 'd', '92', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '54', '1800000', '3272', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('2500', 'Dark Legion\'s Edge', 'rhand', 'true', '1320', '1', '1', 'fine_steel', 'a', '232', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '114', '27000000', '2160', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('2501', 'Bone Club', 'rhand', 'false', '1850', '2', '2', 'fine_steel', 'none', '24', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '17', '136000', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('2502', 'Dwarven War Hammer', 'rhand', 'true', '1670', '2', '2', 'fine_steel', 'c', '122', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '68', '2870000', '1148', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('2503', 'Yaksa Mace', 'rhand', 'true', '1640', '3', '3', 'fine_steel', 'c', '156', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '83', '6130000', '2452', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('2504', 'Meteor Shower', 'rhand', 'true', '1600', '1', '1', 'fine_steel', 'a', '213', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '107', '18300000', '1464', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('2505', 'Iron Canine', 'wolf', 'false', '100', '1', '1', 'steel', 'none', '4', '10', 'pet', '8', '0.00000', '0', '0', '0', '277', '0', '5', '14000', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('2507', 'Lizardspear', 'rhand', 'false', '300', '2', '2', 'steel', 'd', '5', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '5', '409000', '743', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('2516', 'Saber*Saber', 'lrhand', 'true', '2530', '2', '2', 'fine_steel', 'd', '73', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '37', '877000', '1594', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('2517', 'Saber*Bastard Sword', 'lrhand', 'true', '2520', '3', '3', 'fine_steel', 'd', '83', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '41', '1060000', '1927', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('2518', 'Saber*Spinebone Sword', 'lrhand', 'true', '2530', '3', '3', 'fine_steel', 'd', '83', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '41', '1060000', '1927', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('2519', 'Saber*Artisan\'s Sword', 'lrhand', 'true', '2520', '3', '3', 'fine_steel', 'd', '83', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '41', '1060000', '1927', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('2520', 'Saber*Knight\'s Sword', 'lrhand', 'true', '2510', '3', '3', 'fine_steel', 'd', '83', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '41', '1060000', '1927', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('2521', 'Saber*Crimson Sword', 'lrhand', 'true', '2530', '3', '3', 'fine_steel', 'd', '96', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '47', '1400000', '2545', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('2522', 'Saber*Elven Sword', 'lrhand', 'true', '2510', '3', '3', 'fine_steel', 'd', '96', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '47', '1400000', '2545', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('2523', 'Saber*Sword of Revolution', 'lrhand', 'true', '2420', '2', '2', 'fine_steel', 'c', '118', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '56', '1960000', '784', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('2524', 'Saber*Elven Long Sword', 'lrhand', 'true', '2420', '2', '2', 'fine_steel', 'c', '130', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '61', '2290000', '916', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('2525', 'Bastard Sword*Bastard Sword', 'lrhand', 'true', '2470', '3', '3', 'fine_steel', 'd', '96', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '47', '1400000', '2545', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('2526', 'Bastard Sword*Spinebone Sword', 'lrhand', 'true', '2470', '3', '3', 'fine_steel', 'd', '96', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '47', '1400000', '2545', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('2527', 'Bastard Sword*Artisan\'s Sword', 'lrhand', 'true', '2480', '3', '3', 'fine_steel', 'd', '96', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '47', '1400000', '2545', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('2528', 'Bastard Sword*Knight\'s Sword', 'lrhand', 'true', '2500', '3', '3', 'fine_steel', 'd', '96', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '47', '1400000', '2545', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('2529', 'Bastard Sword*Crimson Sword', 'lrhand', 'true', '2470', '3', '3', 'fine_steel', 'd', '107', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '51', '1660000', '3018', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('2530', 'Bastard Sword*Elven Sword', 'lrhand', 'true', '2460', '3', '3', 'fine_steel', 'd', '107', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '51', '1660000', '3018', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('2531', 'Bastard Sword*Sword of Revolution', 'lrhand', 'true', '2450', '2', '2', 'fine_steel', 'c', '124', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '58', '2120000', '848', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('2532', 'Bastard Sword*Elven Long Sword', 'lrhand', 'true', '2430', '2', '2', 'fine_steel', 'c', '136', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '63', '2470000', '988', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('2533', 'Spinebone Sword*Spinebone Sword', 'lrhand', 'true', '2520', '3', '3', 'fine_steel', 'd', '96', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '47', '1400000', '2545', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('2534', 'Spinebone Sword*Artisan\'s Sword', 'lrhand', 'true', '2460', '3', '3', 'fine_steel', 'd', '96', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '47', '1400000', '2545', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('2535', 'Spinebone Sword*Knight\'s Sword', 'lrhand', 'true', '2470', '3', '3', 'fine_steel', 'd', '96', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '47', '1400000', '2545', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('2536', 'Spinebone Sword*Crimson Sword', 'lrhand', 'true', '2520', '3', '3', 'fine_steel', 'd', '107', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '51', '1660000', '3018', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('2537', 'Spinebone Sword*Elven Sword', 'lrhand', 'true', '2460', '3', '3', 'fine_steel', 'd', '107', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '51', '1660000', '3018', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('2538', 'Spinebone Sword*Sword of Revolution', 'lrhand', 'true', '2460', '2', '2', 'fine_steel', 'c', '124', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '58', '2120000', '848', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('2539', 'Spinebone Sword*Elven Long Sword', 'lrhand', 'true', '2390', '2', '2', 'fine_steel', 'c', '136', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '63', '2470000', '988', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('2540', 'Artisan\'s Sword*Artisan\'s Sword', 'lrhand', 'true', '2480', '3', '3', 'fine_steel', 'd', '96', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '47', '1400000', '2545', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('2541', 'Artisan\'s Sword*Knight\'s Sword', 'lrhand', 'true', '2470', '3', '3', 'fine_steel', 'd', '96', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '47', '1400000', '2545', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('2542', 'Artisan\'s Sword*Crimson Sword', 'lrhand', 'true', '2450', '3', '3', 'fine_steel', 'd', '107', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '51', '1660000', '3018', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('2543', 'Artisan\'s Sword*Elven Sword', 'lrhand', 'true', '2470', '3', '3', 'fine_steel', 'd', '107', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '51', '1660000', '3018', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('2544', 'Artisan\'s Sword*Sword of Revolution', 'lrhand', 'true', '2420', '2', '2', 'fine_steel', 'c', '124', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '58', '2120000', '848', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('2545', 'Artisan\'s Sword*Elven Long Sword', 'lrhand', 'true', '2410', '2', '2', 'fine_steel', 'c', '136', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '63', '2470000', '988', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('2546', 'Knight\'s Sword*Knight\'s Sword', 'lrhand', 'true', '2460', '3', '3', 'fine_steel', 'd', '96', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '47', '1400000', '2545', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('2547', 'Knight\'s Sword*Crimson Sword', 'lrhand', 'true', '2460', '3', '3', 'fine_steel', 'd', '107', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '51', '1660000', '3018', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('2548', 'Knight\'s Sword*Elven Sword', 'lrhand', 'true', '2450', '3', '3', 'fine_steel', 'd', '107', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '51', '1660000', '3018', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('2549', 'Knight\'s Sword*Sword of Revolution', 'lrhand', 'true', '2430', '2', '2', 'fine_steel', 'c', '124', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '58', '2120000', '848', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('2550', 'Knight\'s Sword*Elven Long Sword', 'lrhand', 'true', '2370', '2', '2', 'fine_steel', 'c', '136', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '63', '2470000', '988', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('2551', 'Crimson Sword*Crimson Sword', 'lrhand', 'true', '2440', '2', '2', 'fine_steel', 'c', '118', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '56', '1960000', '784', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('2552', 'Crimson Sword*Elven Sword', 'lrhand', 'true', '2450', '2', '2', 'fine_steel', 'c', '118', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '56', '1960000', '784', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('2553', 'Crimson Sword*Sword of Revolution', 'lrhand', 'true', '2390', '2', '2', 'fine_steel', 'c', '136', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '63', '2470000', '988', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('2554', 'Crimson Sword*Elven Long Sword', 'lrhand', 'true', '2360', '2', '2', 'fine_steel', 'c', '148', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '68', '2870000', '1148', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('2555', 'Elven Sword*Elven Sword', 'lrhand', 'true', '2440', '2', '2', 'fine_steel', 'c', '118', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '56', '1960000', '784', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('2556', 'Elven Sword*Sword of Revolution', 'lrhand', 'true', '2410', '2', '2', 'fine_steel', 'c', '136', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '63', '2470000', '988', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('2557', 'Elven Sword*Elven Long Sword', 'lrhand', 'true', '2410', '2', '2', 'fine_steel', 'c', '148', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '68', '2870000', '1148', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('2558', 'Sword of Revolution*Sword of Revolution', 'lrhand', 'true', '2360', '2', '2', 'fine_steel', 'c', '148', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '68', '2870000', '1148', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('2559', 'Sword of Revolution*Elven Long Sword', 'lrhand', 'true', '2340', '3', '3', 'fine_steel', 'c', '155', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '70', '3340000', '1336', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('2560', 'Elven Long Sword*Elven Long Sword', 'lrhand', 'true', '2340', '3', '3', 'fine_steel', 'c', '162', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '73', '3820000', '1528', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('2561', 'Stormbringer*Stormbringer', 'lrhand', 'true', '2330', '3', '3', 'fine_steel', 'c', '175', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '78', '4780000', '1912', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('2562', 'Stormbringer*Shamshir', 'lrhand', 'true', '2300', '3', '3', 'fine_steel', 'c', '183', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '81', '5280000', '2112', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('2563', 'Stormbringer*Katana', 'lrhand', 'true', '2320', '3', '3', 'fine_steel', 'c', '183', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '81', '5280000', '2112', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('2564', 'Stormbringer*Spirit Sword', 'lrhand', 'true', '2310', '3', '3', 'fine_steel', 'c', '183', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '81', '5280000', '2112', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('2565', 'Stormbringer*Raid Sword', 'lrhand', 'true', '2340', '3', '3', 'fine_steel', 'c', '183', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '81', '5280000', '2112', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('2566', 'Stormbringer*Caliburs', 'lrhand', 'true', '2260', '1', '1', 'fine_steel', 'b', '197', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '86', '6980000', '930', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('2567', 'Stormbringer*Sword of Limit', 'lrhand', 'true', '2240', '1', '1', 'fine_steel', 'b', '197', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '86', '6980000', '930', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('2568', 'Stormbringer*Sword of Delusion', 'lrhand', 'true', '2230', '1', '1', 'fine_steel', 'b', '197', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '86', '6980000', '930', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('2569', 'Stormbringer*Sword of Nightmare', 'lrhand', 'true', '2250', '1', '1', 'fine_steel', 'b', '197', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '86', '6980000', '930', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('2570', 'Stormbringer*Tsurugi', 'lrhand', 'true', '2220', '1', '1', 'fine_steel', 'b', '197', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '86', '6980000', '930', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('2571', 'Stormbringer*Samurai Long sword', 'lrhand', 'true', '2150', '1', '1', 'fine_steel', 'b', '213', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '91', '8680000', '1157', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('2572', 'Shamshir*Shamshir', 'lrhand', 'true', '2330', '3', '3', 'fine_steel', 'c', '190', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '83', '6130000', '2452', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('2573', 'Shamshir*Katana', 'lrhand', 'true', '2310', '3', '3', 'fine_steel', 'c', '190', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '83', '6130000', '2452', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('2574', 'Shamshir*Spirit Sword', 'lrhand', 'true', '2280', '3', '3', 'fine_steel', 'c', '190', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '83', '6130000', '2452', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('2575', 'Shamshir*Raid Sword', 'lrhand', 'true', '2280', '3', '3', 'fine_steel', 'c', '190', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '83', '6130000', '2452', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('2576', 'Shamshir*Caliburs', 'lrhand', 'true', '2230', '1', '1', 'fine_steel', 'b', '204', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '89', '7830000', '1044', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('2577', 'Shamshir*Sword of Limit', 'lrhand', 'true', '2240', '1', '1', 'fine_steel', 'b', '204', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '89', '7830000', '1044', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('2578', 'Shamshir*Sword of Delusion', 'lrhand', 'true', '2200', '1', '1', 'fine_steel', 'b', '204', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '89', '7830000', '1044', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('2579', 'Shamshir*Sword of Nightmare', 'lrhand', 'true', '2210', '1', '1', 'fine_steel', 'b', '204', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '89', '7830000', '1044', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('2580', 'Shamshir*Tsurugi', 'lrhand', 'true', '2220', '1', '1', 'fine_steel', 'b', '204', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '89', '7830000', '1044', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('2581', 'Shamshir*Samurai Long Sword', 'lrhand', 'true', '2110', '1', '1', 'fine_steel', 'b', '220', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '94', '9550000', '1273', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('2582', 'Katana*Katana', 'lrhand', 'true', '2270', '3', '3', 'fine_steel', 'c', '190', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '83', '6130000', '2452', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('2583', 'Katana*Spirit Sword', 'lrhand', 'true', '2250', '3', '3', 'fine_steel', 'c', '190', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '83', '6130000', '2452', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('2584', 'Katana*Raid Sword', 'lrhand', 'true', '2270', '3', '3', 'fine_steel', 'c', '190', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '83', '6130000', '2452', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('2585', 'Katana*Caliburs', 'lrhand', 'true', '2220', '1', '1', 'fine_steel', 'b', '204', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '89', '7830000', '1044', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('2586', 'Katana*Sword of Limit', 'lrhand', 'true', '2180', '1', '1', 'fine_steel', 'b', '204', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '89', '7830000', '1044', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('2587', 'Katana*Sword of Delusion', 'lrhand', 'true', '2190', '1', '1', 'fine_steel', 'b', '204', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '89', '7830000', '1044', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('2588', 'Katana*Sword of Nightmare', 'lrhand', 'true', '2170', '1', '1', 'fine_steel', 'b', '204', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '89', '7830000', '1044', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('2589', 'Katana*Tsurugi', 'lrhand', 'true', '2210', '1', '1', 'fine_steel', 'b', '204', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '89', '7830000', '1044', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('2590', 'Katana*Samurai Long Sword', 'lrhand', 'true', '2130', '1', '1', 'fine_steel', 'b', '220', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '94', '9550000', '1273', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('2591', 'Spirit Sword*Spirit Sword', 'lrhand', 'true', '2240', '3', '3', 'fine_steel', 'c', '190', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '83', '6130000', '2452', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('2592', 'Spirit Sword*Raid Sword', 'lrhand', 'true', '2260', '3', '3', 'fine_steel', 'c', '190', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '83', '6130000', '2452', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('2593', 'Spirit Sword*Caliburs', 'lrhand', 'true', '2240', '1', '1', 'fine_steel', 'b', '204', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '89', '7830000', '1044', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('2594', 'Spirit Sword*Sword of Limit', 'lrhand', 'true', '2240', '1', '1', 'fine_steel', 'b', '204', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '89', '7830000', '1044', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('2595', 'Spirit Sword*Sword of Delusion', 'lrhand', 'true', '2250', '1', '1', 'fine_steel', 'b', '204', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '89', '7830000', '1044', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('2596', 'Spirit Sword*Sword of Nightmare', 'lrhand', 'true', '2250', '1', '1', 'fine_steel', 'b', '204', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '89', '7830000', '1044', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('2597', 'Spirit Sword*Tsurugi', 'lrhand', 'true', '2220', '1', '1', 'fine_steel', 'b', '204', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '89', '7830000', '1044', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('2598', 'Spirit Sword*Samurai Long Sword', 'lrhand', 'true', '2110', '1', '1', 'fine_steel', 'b', '220', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '94', '9550000', '1273', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('2599', 'Raid Sword*Raid Sword', 'lrhand', 'true', '2250', '3', '3', 'fine_steel', 'c', '190', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '83', '6130000', '2452', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('2600', 'Raid Sword*Caliburs', 'lrhand', 'true', '2190', '1', '1', 'fine_steel', 'b', '204', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '89', '7830000', '1044', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('2601', 'Raid Sword*Sword of Limit', 'lrhand', 'true', '2170', '1', '1', 'fine_steel', 'b', '204', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '89', '7830000', '1044', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('2602', 'Raid Sword*Sword of Delusion', 'lrhand', 'true', '2180', '1', '1', 'fine_steel', 'b', '204', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '89', '7830000', '1044', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('2603', 'Raid Sword*Sword of Nightmare', 'lrhand', 'true', '2170', '1', '1', 'fine_steel', 'b', '204', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '89', '7830000', '1044', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('2604', 'Raid Sword*Tsurugi', 'lrhand', 'true', '2170', '1', '1', 'fine_steel', 'b', '204', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '89', '7830000', '1044', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('2605', 'Raid Sword*Samurai Long Sword', 'lrhand', 'true', '2130', '1', '1', 'fine_steel', 'b', '220', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '94', '9550000', '1273', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('2606', 'Caliburs*Caliburs', 'lrhand', 'true', '2140', '1', '1', 'fine_steel', 'b', '213', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '91', '8680000', '1157', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('2607', 'Caliburs*Sword of Limit', 'lrhand', 'true', '2150', '1', '1', 'fine_steel', 'b', '213', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '91', '8680000', '1157', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('2608', 'Caliburs*Sword of Delusion', 'lrhand', 'true', '2140', '1', '1', 'fine_steel', 'b', '213', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '91', '8680000', '1157', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('2609', 'Caliburs*Sword of Nightmare', 'lrhand', 'true', '2170', '1', '1', 'fine_steel', 'b', '213', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '91', '8680000', '1157', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('2610', 'Caliburs*Tsurugi', 'lrhand', 'true', '2150', '1', '1', 'fine_steel', 'b', '213', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '91', '8680000', '1157', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('2611', 'Caliburs*Samurai Long Sword', 'lrhand', 'true', '2120', '1', '1', 'fine_steel', 'b', '228', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '97', '11300000', '1506', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('2612', 'Sword of Limit*Sword of Limit', 'lrhand', 'true', '2140', '1', '1', 'fine_steel', 'b', '213', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '91', '8680000', '1157', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('2613', 'Sword of Limit*Sword of Delusion', 'lrhand', 'true', '2140', '1', '1', 'fine_steel', 'b', '213', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '91', '8680000', '1157', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('2614', 'Sword of Limit*Sword of Nightmare', 'lrhand', 'true', '2130', '1', '1', 'fine_steel', 'b', '213', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '91', '8680000', '1157', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('2615', 'Sword of Limit*Tsurugi', 'lrhand', 'true', '2120', '1', '1', 'fine_steel', 'b', '213', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '91', '8680000', '1157', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('2616', 'Sword of Limit*Samurai Long Sword', 'lrhand', 'true', '2100', '1', '1', 'fine_steel', 'b', '228', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '97', '11300000', '1506', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('2617', 'Sword of Delusion*Sword of Delusion', 'lrhand', 'true', '2150', '1', '1', 'fine_steel', 'b', '213', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '91', '8680000', '1157', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('2618', 'Sword of Delusion*Sword of Nightmare', 'lrhand', 'true', '2130', '1', '1', 'fine_steel', 'b', '213', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '91', '8680000', '1157', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('2619', 'Sword of Delusion*Tsurugi', 'lrhand', 'true', '2140', '1', '1', 'fine_steel', 'b', '213', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '91', '8680000', '1157', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('2620', 'Sword of Delusion*Samurai Long Sword', 'lrhand', 'true', '2110', '1', '1', 'fine_steel', 'b', '228', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '97', '11300000', '1506', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('2621', 'Sword of Nightmare*Sword of Nightmare', 'lrhand', 'true', '2130', '1', '1', 'fine_steel', 'b', '213', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '91', '8680000', '1157', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('2622', 'Sword of Nightmare*Tsurugi', 'lrhand', 'true', '2140', '1', '1', 'fine_steel', 'b', '213', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '91', '8680000', '1157', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('2623', 'Sword of Nightmare*Samurai Long Sword', 'lrhand', 'true', '2080', '1', '1', 'fine_steel', 'b', '228', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '97', '11300000', '1506', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('2624', 'Tsurugi*Tsurugi', 'lrhand', 'true', '2120', '1', '1', 'fine_steel', 'b', '213', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '91', '8680000', '1157', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('2625', 'Tsurugi*Samurai Long Sword', 'lrhand', 'true', '2090', '1', '1', 'fine_steel', 'b', '228', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '97', '11300000', '1506', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('2626', 'Samurai Long Sword*Samurai Long Sword', 'lrhand', 'true', '2080', '1', '1', 'fine_steel', 'b', '236', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '99', '13100000', '1746', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('2915', 'Old Knight Sword', 'rhand', 'false', '3200', '2', '2', 'fine_steel', 'none', '24', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '17', '136000', '0', 'false', 'false', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0'), ('3026', 'Talins Spear', 'lrhand', 'false', '800', '2', '2', 'steel', 'none', '24', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '17', '0', '0', 'false', 'false', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0'), ('3027', 'Old Knight\'s Sword', 'lrhand', 'false', '2100', '2', '2', 'steel', 'none', '29', '10', 'bigsword', '8', '0.00000', '0', '0', '0', '325', '0', '17', '0', '0', 'false', 'false', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0'), ('3028', 'Crescent Moon Bow', 'lrhand', 'false', '600', '6', '2', 'wood', 'none', '34', '5', 'bow', '12', '-3.00000', '0', '0', '0', '293', '2', '12', '0', '0', 'false', 'false', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0'), ('3029', 'Sword of Binding', 'rhand', 'false', '1200', '2', '2', 'steel', 'none', '17', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '12', '0', '0', 'false', 'false', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0'), ('3439', 'Shining Canine', 'wolf', 'false', '100', '1', '1', 'steel', 'none', '7', '10', 'pet', '8', '0.00000', '0', '0', '0', '277', '0', '8', '34000', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('3471', 'Cybellin\'s Dagger', 'rhand', 'false', '400', '1', '1', 'steel', 'none', '10', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '9', '0', '0', 'false', 'false', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0'), ('3902', 'Ghost Canine', 'wolf', 'false', '100', '1', '1', 'steel', 'none', '11', '10', 'pet', '8', '0.00000', '0', '0', '0', '277', '0', '10', '61000', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('3903', 'Mithril Canine', 'wolf', 'false', '100', '1', '1', 'steel', 'none', '16', '10', 'pet', '8', '0.00000', '0', '0', '0', '277', '0', '14', '100000', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('3904', 'Sylvan Canine', 'wolf', 'false', '100', '1', '1', 'steel', 'none', '23', '10', 'pet', '8', '0.00000', '0', '0', '0', '277', '0', '18', '160000', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('3905', 'Orikarukon Canine', 'wolf', 'false', '100', '1', '1', 'steel', 'none', '31', '10', 'pet', '8', '0.00000', '0', '0', '0', '277', '0', '24', '240000', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('3906', 'Fang of Saltydog', 'wolf', 'false', '100', '1', '1', 'steel', 'none', '40', '10', 'pet', '8', '0.00000', '0', '0', '0', '277', '0', '30', '350000', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('3907', 'Fang of Cerberus', 'wolf', 'false', '100', '1', '1', 'steel', 'none', '49', '10', 'pet', '8', '0.00000', '0', '0', '0', '277', '0', '36', '450000', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('3908', 'Fang of Coyote', 'wolf', 'false', '100', '1', '1', 'steel', 'none', '58', '10', 'pet', '8', '0.00000', '0', '0', '0', '277', '0', '42', '570000', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('3909', 'Crystalized Ice Canine', 'wolf', 'false', '100', '1', '1', 'steel', 'none', '69', '10', 'pet', '8', '0.00000', '0', '0', '0', '277', '0', '50', '720000', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('3910', 'Fang of The Blue Wolf', 'wolf', 'false', '100', '1', '1', 'steel', 'none', '80', '10', 'pet', '8', '0.00000', '0', '0', '0', '277', '0', '58', '1100000', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('3911', 'Fang of Fenril', 'wolf', 'false', '100', '1', '1', 'steel', 'none', '93', '10', 'pet', '8', '0.00000', '0', '0', '0', '277', '0', '66', '1500000', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('3919', 'Serpent Fang', 'hatchling', 'false', '100', '1', '1', 'steel', 'none', '8', '10', 'pet', '8', '0.00000', '0', '0', '0', '277', '0', '7', '200000', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('3920', 'Viperbite', 'hatchling', 'false', '100', '1', '1', 'steel', 'none', '9', '10', 'pet', '8', '0.00000', '0', '0', '0', '277', '0', '10', '310000', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('3921', 'Shadow Fang', 'hatchling', 'false', '100', '1', '1', 'steel', 'none', '10', '10', 'pet', '8', '0.00000', '0', '0', '0', '277', '0', '11', '420000', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('3922', 'Alya Fang', 'hatchling', 'false', '100', '1', '1', 'steel', 'none', '12', '10', 'pet', '8', '0.00000', '0', '0', '0', '277', '0', '13', '570000', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('3923', 'Torturer', 'hatchling', 'false', '100', '1', '1', 'steel', 'none', '13', '10', 'pet', '8', '0.00000', '0', '0', '0', '277', '0', '16', '760000', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('3924', 'Unuk Alhay Fang', 'hatchling', 'false', '100', '1', '1', 'steel', 'none', '15', '10', 'pet', '8', '0.00000', '0', '0', '0', '277', '0', '18', '1100000', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('3925', 'Antiplague', 'hatchling', 'false', '100', '1', '1', 'steel', 'none', '17', '10', 'pet', '8', '0.00000', '0', '0', '0', '277', '0', '21', '1600000', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('3937', 'Giant Bar', 'lrhand', 'true', '300', '2', '2', 'bronze', 'd', '50', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '26', '409000', '743', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('3938', 'Giant Rod', 'lrhand', 'true', '300', '2', '2', 'bronze', 'd', '50', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '26', '409000', '743', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('3939', 'Lady\'s Fan', 'lrhand', 'true', '300', '2', '2', 'bronze', 'd', '50', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '26', '409000', '743', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('4027', 'Bouquet', 'rhand', 'false', '0', '0', '0', 'paper', 'none', '8', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '6', '0', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('4028', 'Giant Cannon', 'rhand', 'true', '300', '2', '2', 'steel', 'd', '5', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '5', '409000', '743', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('4202', 'Chrono Cithara', 'rhand', 'false', '0', '0', '0', 'steel', 'none', '1', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '1', '0', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('4219', 'Dream Sword', 'rhand', 'true', '1530', '2', '2', 'bronze', 'none', '31', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '21', '244000', '0', 'false', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('4220', 'Dream Knife', 'rhand', 'true', '1110', '2', '2', 'steel', 'none', '27', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '21', '244000', '0', 'false', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('4221', 'Ubiquitous Axe', 'rhand', 'true', '1850', '2', '2', 'steel', 'none', '31', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '21', '244000', '0', 'false', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('4222', 'Dream Shield', 'lhand', 'true', '1380', '0', '0', 'bone', 'none', '0', '0', 'none', '0', '0.00000', '-8', '90', '20', '0', '0', '0', '12900', '0', 'false', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('4223', 'Ubiquitous Shield', 'lhand', 'true', '1380', '0', '0', 'bone', 'none', '0', '0', 'none', '0', '0.00000', '-8', '90', '20', '0', '0', '0', '12900', '0', 'false', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('4233', 'Knuckle Duster', 'lrhand', 'true', '1490', '2', '2', 'fine_steel', 'c', '148', '5', 'dualfist', '4', '4.00000', '0', '0', '0', '325', '0', '68', '2870000', '1148', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('4237', 'Hatchling\'s Level 65 Weapon', 'hatchling', 'false', '100', '1', '1', 'steel', 'none', '24', '10', 'pet', '8', '0.00000', '0', '0', '0', '277', '0', '32', '0', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('4238', 'Hatchling\'s Level 75 Weapon', 'hatchling', 'false', '100', '1', '1', 'steel', 'none', '31', '10', 'pet', '8', '0.00000', '0', '0', '0', '277', '0', '43', '0', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('4665', 'Pipette Knife', 'rhand', 'false', '1140', '1', '1', 'bronze', 'none', '10', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '9', '0', '0', 'false', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('4681', 'Stormbringer - Critical Anger', 'rhand', 'true', '1430', '2', '2', 'fine_steel', 'c', '107', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '61', '2290000', '916', 'true', 'true', 'true', 'true', '3026', '1', '0', '0', '0', '0', '0', '0'), ('4682', 'Stormbringer - Focus', 'rhand', 'true', '1430', '2', '2', 'fine_steel', 'c', '107', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '61', '2290000', '916', 'true', 'true', 'true', 'true', '3010', '1', '0', '0', '0', '0', '0', '0'), ('4683', 'Stormbringer - Light', 'rhand', 'true', '430', '2', '2', 'fine_steel', 'c', '107', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '61', '2290000', '916', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('4684', 'Shamshir - Guidance', 'rhand', 'true', '1420', '2', '2', 'fine_steel', 'c', '122', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '68', '2870000', '1148', 'true', 'true', 'true', 'true', '3007', '2', '0', '0', '0', '0', '0', '0'), ('4685', 'Shamshir - Back Blow', 'rhand', 'true', '1420', '2', '2', 'fine_steel', 'c', '122', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '68', '2870000', '1148', 'true', 'true', 'true', 'true', '3018', '2', '0', '0', '0', '0', '0', '0'), ('4686', 'Shamshir - Rsk. Evasion', 'rhand', 'true', '1420', '2', '2', 'fine_steel', 'c', '122', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '68', '2870000', '1148', 'true', 'true', 'true', 'true', '3028', '2', '0', '0', '0', '0', '0', '0'), ('4687', 'Katana - Focus', 'rhand', 'true', '1420', '2', '2', 'fine_steel', 'c', '122', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '68', '2870000', '1148', 'true', 'true', 'true', 'true', '3010', '2', '0', '0', '0', '0', '0', '0'), ('4688', 'Katana - Critical Damage', 'rhand', 'true', '1420', '2', '2', 'fine_steel', 'c', '122', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '68', '2870000', '1148', 'true', 'true', 'true', 'true', '3023', '2', '0', '0', '0', '0', '0', '0'), ('4689', 'Katana - Haste', 'rhand', 'true', '1420', '2', '2', 'fine_steel', 'c', '122', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '68', '2870000', '1148', 'true', 'true', 'true', 'true', '3037', '2', '0', '0', '0', '0', '0', '0'), ('4690', 'Spirit Sword - Critical Damage', 'rhand', 'true', '1420', '2', '2', 'fine_steel', 'c', '122', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '68', '2870000', '1148', 'true', 'true', 'true', 'true', '3023', '2', '0', '0', '0', '0', '0', '0'), ('4691', 'Spirit Sword - Critical Poison', 'rhand', 'true', '1420', '2', '2', 'fine_steel', 'c', '122', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '68', '2870000', '1148', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '3024', '4', '15'), ('4692', 'Spirit Sword - Haste', 'rhand', 'true', '1420', '2', '2', 'fine_steel', 'c', '122', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '68', '2870000', '1148', 'true', 'true', 'true', 'true', '3037', '2', '0', '0', '0', '0', '0', '0'), ('4693', 'Raid Sword - Focus', 'rhand', 'true', '1420', '2', '2', 'fine_steel', 'c', '122', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '68', '2870000', '1148', 'true', 'true', 'true', 'true', '3010', '2', '0', '0', '0', '0', '0', '0'), ('4694', 'Raid Sword - Critical Drain', 'rhand', 'true', '1420', '2', '2', 'fine_steel', 'c', '122', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '68', '2870000', '1148', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '3022', '2', '15'), ('4695', 'Raid Sword - Critical Poison', 'rhand', 'true', '1420', '2', '2', 'fine_steel', 'c', '122', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '68', '2870000', '1148', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '3024', '4', '15'), ('4696', 'Caliburs - Guidance', 'rhand', 'true', '1400', '3', '3', 'oriharukon', 'c', '139', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '76', '4300000', '1720', 'true', 'true', 'true', 'true', '3007', '3', '0', '0', '0', '0', '0', '0'), ('4697', 'Caliburs - Focus', 'rhand', 'true', '1400', '3', '3', 'oriharukon', 'c', '139', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '76', '4300000', '1720', 'true', 'true', 'true', 'true', '3010', '3', '0', '0', '0', '0', '0', '0'), ('4698', 'Caliburs - Critical Damage', 'rhand', 'true', '1400', '3', '3', 'oriharukon', 'c', '139', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '76', '4300000', '1720', 'true', 'true', 'true', 'true', '3023', '3', '0', '0', '0', '0', '0', '0'), ('4699', 'Sword of Delusion - Focus', 'rhand', 'true', '1400', '3', '3', 'mithril', 'c', '139', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '76', '4300000', '1720', 'true', 'true', 'true', 'true', '3010', '3', '0', '0', '0', '0', '0', '0'), ('4700', 'Sword of Delusion - Health', 'rhand', 'true', '1400', '3', '3', 'mithril', 'c', '139', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '76', '4300000', '1720', 'true', 'true', 'true', 'true', '3013', '1', '0', '0', '0', '0', '0', '0'), ('4701', 'Sword of Delusion - Rsk. Haste', 'rhand', 'true', '1400', '3', '3', 'mithril', 'c', '139', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '76', '4300000', '1720', 'true', 'true', 'true', 'true', '3032', '3', '0', '0', '0', '0', '0', '0'), ('4702', 'Tsurugi - Focus', 'rhand', 'true', '1400', '3', '3', 'fine_steel', 'c', '139', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '76', '4300000', '1720', 'true', 'true', 'true', 'true', '3010', '3', '0', '0', '0', '0', '0', '0'), ('4703', 'Tsurugi - Critical Damage', 'rhand', 'true', '1400', '3', '3', 'fine_steel', 'c', '139', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '76', '4300000', '1720', 'true', 'true', 'true', 'true', '3023', '3', '0', '0', '0', '0', '0', '0'), ('4704', 'Tsurugi - Haste', 'rhand', 'true', '1400', '3', '3', 'fine_steel', 'c', '139', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '76', '4300000', '1720', 'true', 'true', 'true', 'true', '3037', '3', '0', '0', '0', '0', '0', '0'), ('4705', 'Sword of Nightmare - Health', 'rhand', 'true', '1400', '3', '3', 'blood_steel', 'c', '139', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '76', '4300000', '1720', 'true', 'true', 'true', 'true', '3013', '1', '0', '0', '0', '0', '0', '0'), ('4706', 'Sword of Nightmare - Focus', 'rhand', 'true', '1400', '3', '3', 'blood_steel', 'c', '139', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '76', '4300000', '1720', 'true', 'true', 'true', 'true', '3010', '3', '0', '0', '0', '0', '0', '0'), ('4707', 'Sword of Nightmare - Light', 'rhand', 'true', '420', '3', '3', 'blood_steel', 'c', '139', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '76', '4300000', '1720', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('4708', 'Samurai Longsword - Focus', 'rhand', 'true', '1380', '3', '3', 'oriharukon', 'c', '156', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '83', '6130000', '2452', 'true', 'true', 'true', 'true', '3010', '4', '0', '0', '0', '0', '0', '0'), ('4709', 'Samurai Longsword - Critical Damage', 'rhand', 'true', '1380', '3', '3', 'oriharukon', 'c', '156', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '83', '6130000', '2452', 'true', 'true', 'true', 'true', '3023', '4', '0', '0', '0', '0', '0', '0'), ('4710', 'Samurai Longsword - Haste', 'rhand', 'true', '1380', '3', '3', 'oriharukon', 'c', '156', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '83', '6130000', '2452', 'true', 'true', 'true', 'true', '3037', '4', '0', '0', '0', '0', '0', '0'), ('4711', 'Flamberge - Critical Damage', 'lrhand', 'true', '2010', '2', '2', 'bronze', 'c', '130', '10', 'bigsword', '8', '0.00000', '0', '0', '0', '325', '0', '61', '2290000', '916', 'true', 'true', 'true', 'true', '3023', '1', '0', '0', '0', '0', '0', '0'), ('4712', 'Flamberge - Focus', 'lrhand', 'true', '2010', '2', '2', 'bronze', 'c', '130', '10', 'bigsword', '8', '0.00000', '0', '0', '0', '325', '0', '61', '2290000', '916', 'true', 'true', 'true', 'true', '3010', '1', '0', '0', '0', '0', '0', '0'), ('4713', 'Flamberge - Light', 'lrhand', 'true', '600', '2', '2', 'bronze', 'c', '130', '10', 'bigsword', '8', '0.00000', '0', '0', '0', '325', '0', '61', '2290000', '916', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('4714', 'Keshanberk - Guidance', 'rhand', 'true', '1370', '1', '1', 'oriharukon', 'b', '175', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '91', '8680000', '1157', 'true', 'true', 'true', 'true', '3007', '5', '0', '0', '0', '0', '0', '0'), ('4715', 'Keshanberk - Focus', 'rhand', 'true', '1370', '1', '1', 'oriharukon', 'b', '175', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '91', '8680000', '1157', 'true', 'true', 'true', 'true', '3010', '5', '0', '0', '0', '0', '0', '0'), ('4716', 'Keshanberk - Back Blow', 'rhand', 'true', '1370', '1', '1', 'oriharukon', 'b', '175', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '91', '8680000', '1157', 'true', 'true', 'true', 'true', '3018', '5', '0', '0', '0', '0', '0', '0'), ('4717', 'Sword of Damascus - Focus', 'rhand', 'true', '1350', '1', '1', 'damascus', 'b', '194', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '99', '13100000', '1746', 'true', 'true', 'true', 'true', '3010', '6', '0', '0', '0', '0', '0', '0'), ('4718', 'Sword of Damascus - Critical Damage', 'rhand', 'true', '1350', '1', '1', 'damascus', 'b', '194', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '99', '13100000', '1746', 'true', 'true', 'true', 'true', '3023', '3', '0', '0', '0', '0', '0', '0'), ('4719', 'Sword of Damascus - Haste', 'rhand', 'true', '1350', '1', '1', 'damascus', 'b', '194', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '99', '13100000', '1746', 'true', 'true', 'true', 'true', '3037', '6', '0', '0', '0', '0', '0', '0'), ('4720', 'Tallum Blade - Health', 'rhand', 'true', '1330', '1', '1', 'adamantaite', 'a', '213', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '107', '18300000', '1464', 'true', 'true', 'true', 'true', '3013', '3', '0', '0', '0', '0', '0', '0'), ('4721', 'Tallum Blade - Rsk. Evasion', 'rhand', 'true', '1330', '1', '1', 'adamantaite', 'a', '213', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '107', '18300000', '1464', 'true', 'true', 'true', 'true', '3028', '1', '0', '0', '0', '0', '0', '0'), ('4722', 'Tallum Blade - Rsk. Haste', 'rhand', 'true', '1330', '1', '1', 'adamantaite', 'a', '213', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '107', '18300000', '1464', 'true', 'true', 'true', 'true', '3032', '2', '0', '0', '0', '0', '0', '0'), ('4723', 'Great Sword - Health', 'lrhand', 'true', '1930', '1', '1', 'steel', 'b', '213', '10', 'bigsword', '8', '0.00000', '0', '0', '0', '325', '0', '91', '8680000', '1157', 'true', 'true', 'true', 'true', '3013', '1', '0', '0', '0', '0', '0', '0'), ('4724', 'Great Sword - Critical Damage', 'lrhand', 'true', '1930', '1', '1', 'steel', 'b', '213', '10', 'bigsword', '8', '0.00000', '0', '0', '0', '325', '0', '91', '8680000', '1157', 'true', 'true', 'true', 'true', '3023', '5', '0', '0', '0', '0', '0', '0'), ('4725', 'Great Sword - Focus', 'lrhand', 'true', '1930', '1', '1', 'steel', 'b', '213', '10', 'bigsword', '8', '0.00000', '0', '0', '0', '325', '0', '91', '8680000', '1157', 'true', 'true', 'true', 'true', '3010', '5', '0', '0', '0', '0', '0', '0'), ('4726', 'Big Hammer - Health', 'rhand', 'true', '1710', '2', '2', 'fine_steel', 'c', '107', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '61', '2290000', '916', 'true', 'true', 'true', 'true', '3013', '1', '0', '0', '0', '0', '0', '0'), ('4727', 'Big Hammer - Rsk.Focus', 'rhand', 'true', '1710', '2', '2', 'fine_steel', 'c', '107', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '61', '2290000', '916', 'true', 'true', 'true', 'true', '3027', '1', '0', '0', '0', '0', '0', '0'), ('4728', 'Big Hammer - Haste', 'rhand', 'true', '1710', '2', '2', 'fine_steel', 'c', '107', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '61', '2290000', '916', 'true', 'true', 'true', 'true', '3037', '1', '0', '0', '0', '0', '0', '0'), ('4729', 'Battle Axe - Anger', 'rhand', 'true', '1720', '2', '2', 'fine_steel', 'c', '107', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '61', '2290000', '916', 'true', 'true', 'true', 'true', '3012', '1', '0', '0', '0', '0', '0', '0'), ('4730', 'Battle Axe - Rsk.Focus', 'rhand', 'true', '1720', '2', '2', 'fine_steel', 'c', '107', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '61', '2290000', '916', 'true', 'true', 'true', 'true', '3027', '1', '0', '0', '0', '0', '0', '0'), ('4731', 'Battle Axe - Haste', 'rhand', 'true', '1720', '2', '2', 'fine_steel', 'c', '107', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '61', '2290000', '916', 'true', 'true', 'true', 'true', '3037', '1', '0', '0', '0', '0', '0', '0'), ('4732', 'Silver Axe - Anger', 'rhand', 'true', '1690', '2', '2', 'fine_steel', 'c', '107', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '61', '2290000', '916', 'true', 'true', 'true', 'true', '3012', '1', '0', '0', '0', '0', '0', '0'), ('4733', 'Silver Axe - Rsk.Focus', 'rhand', 'true', '1690', '2', '2', 'fine_steel', 'c', '107', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '61', '2290000', '916', 'true', 'true', 'true', 'true', '3027', '1', '0', '0', '0', '0', '0', '0'), ('4734', 'Silver Axe - Haste', 'rhand', 'true', '1690', '2', '2', 'fine_steel', 'c', '107', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '61', '2290000', '916', 'true', 'true', 'true', 'true', '3037', '1', '0', '0', '0', '0', '0', '0'), ('4735', 'Skull Graver - Anger', 'rhand', 'true', '1640', '2', '2', 'fine_steel', 'c', '107', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '61', '2290000', '916', 'true', 'true', 'true', 'true', '3012', '1', '0', '0', '0', '0', '0', '0'), ('4736', 'Skull Graver - Health', 'rhand', 'true', '1640', '2', '2', 'fine_steel', 'c', '107', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '61', '2290000', '916', 'true', 'true', 'true', 'true', '3013', '1', '0', '0', '0', '0', '0', '0'), ('4737', 'Skull Graver - Rsk.Focus', 'rhand', 'true', '1640', '2', '2', 'fine_steel', 'c', '107', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '61', '2290000', '916', 'true', 'true', 'true', 'true', '3027', '1', '0', '0', '0', '0', '0', '0'), ('4738', 'Dwarven War Hammer - Anger', 'rhand', 'true', '1670', '2', '2', 'fine_steel', 'c', '122', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '68', '2870000', '1148', 'true', 'true', 'true', 'true', '3012', '2', '0', '0', '0', '0', '0', '0'), ('4739', 'Dwarven War Hammer - Health', 'rhand', 'true', '1670', '2', '2', 'fine_steel', 'c', '122', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '68', '2870000', '1148', 'true', 'true', 'true', 'true', '3013', '1', '0', '0', '0', '0', '0', '0'), ('4740', 'Dwarven War Hammer - Haste', 'rhand', 'true', '1670', '2', '2', 'fine_steel', 'c', '122', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '68', '2870000', '1148', 'true', 'true', 'true', 'true', '3037', '2', '0', '0', '0', '0', '0', '0'), ('4741', 'War Axe - Anger', 'rhand', 'true', '1660', '3', '3', 'fine_steel', 'c', '139', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '76', '4300000', '1720', 'true', 'true', 'true', 'true', '3012', '3', '0', '0', '0', '0', '0', '0'), ('4742', 'War Axe - Health', 'rhand', 'true', '1660', '3', '3', 'fine_steel', 'c', '139', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '76', '4300000', '1720', 'true', 'true', 'true', 'true', '3013', '1', '0', '0', '0', '0', '0', '0'), ('4743', 'War Axe - Haste', 'rhand', 'true', '1660', '3', '3', 'fine_steel', 'c', '139', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '76', '4300000', '1720', 'true', 'true', 'true', 'true', '3037', '3', '0', '0', '0', '0', '0', '0'), ('4744', 'Yaksa Mace - Anger', 'rhand', 'true', '1640', '3', '3', 'fine_steel', 'c', '156', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '83', '6130000', '2452', 'true', 'true', 'true', 'true', '3012', '4', '0', '0', '0', '0', '0', '0'), ('4745', 'Yaksa Mace - Health', 'rhand', 'true', '1640', '3', '3', 'fine_steel', 'c', '156', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '83', '6130000', '2452', 'true', 'true', 'true', 'true', '3013', '1', '0', '0', '0', '0', '0', '0'), ('4746', 'Yaksa Mace - Rsk. Focus', 'rhand', 'true', '1640', '3', '3', 'fine_steel', 'c', '156', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '83', '6130000', '2452', 'true', 'true', 'true', 'true', '3027', '4', '0', '0', '0', '0', '0', '0'), ('4747', 'Heavy War Axe - Anger', 'rhand', 'true', '1620', '1', '1', 'fine_steel', 'b', '175', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '91', '8680000', '1157', 'true', 'true', 'true', 'true', '3012', '5', '0', '0', '0', '0', '0', '0'), ('4748', 'Heavy War Axe - Health', 'rhand', 'true', '1620', '1', '1', 'fine_steel', 'b', '175', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '91', '8680000', '1157', 'true', 'true', 'true', 'true', '3013', '1', '0', '0', '0', '0', '0', '0'), ('4749', 'Heavy War Axe - Rsk. Focus', 'rhand', 'true', '1620', '1', '1', 'fine_steel', 'b', '175', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '91', '8680000', '1157', 'true', 'true', 'true', 'true', '3027', '5', '0', '0', '0', '0', '0', '0'), ('4750', 'Deadman\'s Glory - Anger', 'rhand', 'true', '1600', '1', '1', 'bone', 'b', '194', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '99', '13100000', '1746', 'true', 'true', 'true', 'true', '3012', '6', '0', '0', '0', '0', '0', '0'), ('4751', 'Deadman\'s Glory - Health', 'rhand', 'true', '1600', '1', '1', 'bone', 'b', '194', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '99', '13100000', '1746', 'true', 'true', 'true', 'true', '3013', '1', '0', '0', '0', '0', '0', '0'), ('4752', 'Deadman\'s Glory - Haste', 'rhand', 'true', '1600', '1', '1', 'bone', 'b', '194', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '99', '13100000', '1746', 'true', 'true', 'true', 'true', '3037', '6', '0', '0', '0', '0', '0', '0'), ('4753', 'Art of Battle Axe - Health', 'rhand', 'true', '1570', '1', '1', 'chrysolite', 'b', '194', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '99', '13100000', '1746', 'true', 'true', 'true', 'true', '3013', '1', '0', '0', '0', '0', '0', '0'), ('4754', 'Art of Battle Axe - Rsk. Focus', 'rhand', 'true', '1570', '1', '1', 'chrysolite', 'b', '194', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '99', '13100000', '1746', 'true', 'true', 'true', 'true', '3027', '6', '0', '0', '0', '0', '0', '0'), ('4755', 'Art of Battle Axe - Haste', 'rhand', 'true', '1570', '1', '1', 'chrysolite', 'b', '194', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '99', '13100000', '1746', 'true', 'true', 'true', 'true', '3037', '6', '0', '0', '0', '0', '0', '0'), ('4756', 'Meteor Shower - Health', 'rhand', 'true', '1600', '1', '1', 'fine_steel', 'a', '213', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '107', '18300000', '1464', 'true', 'true', 'true', 'true', '3013', '1', '0', '0', '0', '0', '0', '0'), ('4757', 'Meteor Shower - Focus', 'rhand', 'true', '1600', '1', '1', 'fine_steel', 'a', '213', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '107', '18300000', '1464', 'true', 'true', 'true', 'true', '3010', '1', '0', '0', '0', '0', '0', '0'), ('4758', 'Meteor Shower - P.Focus', 'rhand', 'true', '1600', '1', '1', 'fine_steel', 'a', '213', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '107', '18300000', '1464', 'true', 'true', 'true', 'true', '3010', '1', '0', '0', '0', '0', '0', '0'), ('4759', 'Cursed Dagger - Critical Bleed', 'rhand', 'true', '1040', '2', '2', 'mithril', 'c', '94', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '61', '2290000', '916', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '3021', '3', '12'), ('4760', 'Cursed Dagger - Critical Poison', 'rhand', 'true', '1040', '2', '2', 'mithril', 'c', '94', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '61', '2290000', '916', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '3024', '4', '4'), ('4761', 'Cursed Dagger - Rsk. Haste', 'rhand', 'true', '1040', '2', '2', 'mithril', 'c', '94', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '61', '2290000', '916', 'true', 'true', 'true', 'true', '3033', '1', '0', '0', '0', '0', '0', '0'), ('4762', 'Dark Elven Dagger - Focus', 'rhand', 'true', '1050', '2', '2', 'fine_steel', 'c', '94', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '61', '2290000', '916', 'true', 'true', 'true', 'true', '3011', '1', '0', '0', '0', '0', '0', '0'), ('4763', 'Dark Elven Dagger - Back Blow', 'rhand', 'true', '1050', '2', '2', 'fine_steel', 'c', '94', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '61', '2290000', '916', 'true', 'true', 'true', 'true', '3019', '1', '0', '0', '0', '0', '0', '0'), ('4764', 'Dark Elven Dagger - Mortal Strike', 'rhand', 'true', '1050', '2', '2', 'fine_steel', 'c', '94', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '61', '2290000', '916', 'true', 'true', 'true', 'true', '3035', '1', '0', '0', '0', '0', '0', '0'), ('4765', 'Stiletto - Critical Bleed', 'rhand', 'true', '1030', '2', '2', 'fine_steel', 'c', '107', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '68', '2870000', '1148', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '3021', '3', '12'), ('4766', 'Stiletto - Critical Poison', 'rhand', 'true', '1030', '2', '2', 'fine_steel', 'c', '107', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '68', '2870000', '1148', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '3024', '4', '4'), ('4767', 'Stiletto - Mortal Strike', 'rhand', 'true', '1030', '2', '2', 'fine_steel', 'c', '107', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '68', '2870000', '1148', 'true', 'true', 'true', 'true', '3035', '2', '0', '0', '0', '0', '0', '0'), ('4768', 'Grace Dagger - Evasion', 'rhand', 'true', '1020', '3', '3', 'fine_steel', 'c', '122', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '76', '4300000', '1720', 'true', 'true', 'true', 'true', '3009', '3', '0', '0', '0', '0', '0', '0'), ('4769', 'Grace Dagger - Focus', 'rhand', 'true', '1020', '3', '3', 'fine_steel', 'c', '122', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '76', '4300000', '1720', 'true', 'true', 'true', 'true', '3011', '3', '0', '0', '0', '0', '0', '0'), ('4770', 'Grace Dagger - Back Blow', 'rhand', 'true', '1020', '3', '3', 'fine_steel', 'c', '122', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '76', '4300000', '1720', 'true', 'true', 'true', 'true', '3019', '3', '0', '0', '0', '0', '0', '0'), ('4771', 'Dark Screamer - Evasion', 'rhand', 'true', '1010', '3', '3', 'fine_steel', 'c', '122', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '76', '4300000', '1720', 'true', 'true', 'true', 'true', '3009', '3', '0', '0', '0', '0', '0', '0'), ('4772', 'Dark Screamer - Focus', 'rhand', 'true', '1010', '3', '3', 'fine_steel', 'c', '122', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '76', '4300000', '1720', 'true', 'true', 'true', 'true', '3011', '3', '0', '0', '0', '0', '0', '0'), ('4773', 'Dark Screamer - Critical Bleed', 'rhand', 'true', '1010', '3', '3', 'fine_steel', 'c', '122', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '76', '4300000', '1720', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '3021', '4', '10'), ('4774', 'Crystal Dagger - Critical Bleed', 'rhand', 'true', '1000', '3', '3', 'crystal', 'c', '136', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '83', '6130000', '2452', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '3021', '4', '10'), ('4775', 'Crystal Dagger - Critical Poison', 'rhand', 'true', '1000', '3', '3', 'crystal', 'c', '136', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '83', '6130000', '2452', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '3024', '5', '3'), ('4776', 'Crystal Dagger - Mortal Strike', 'rhand', 'true', '1000', '3', '3', 'crystal', 'c', '136', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '83', '6130000', '2452', 'true', 'true', 'true', 'true', '3035', '4', '0', '0', '0', '0', '0', '0'), ('4777', 'Kris - Evasion', 'rhand', 'true', '980', '1', '1', 'mithril', 'b', '153', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '91', '8680000', '1157', 'true', 'true', 'true', 'true', '3009', '5', '0', '0', '0', '0', '0', '0'), ('4778', 'Kris - Focus', 'rhand', 'true', '980', '1', '1', 'mithril', 'b', '153', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '91', '8680000', '1157', 'true', 'true', 'true', 'true', '3011', '5', '0', '0', '0', '0', '0', '0'), ('4779', 'Kris - Back Blow', 'rhand', 'true', '980', '1', '1', 'mithril', 'b', '153', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '91', '8680000', '1157', 'true', 'true', 'true', 'true', '3019', '5', '0', '0', '0', '0', '0', '0'), ('4780', 'Demon Dagger - Critical Bleed', 'rhand', 'true', '970', '1', '1', 'blood_steel', 'b', '170', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '99', '13100000', '1746', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '3021', '4', '10'), ('4781', 'Demon Dagger - Critical Poison', 'rhand', 'true', '970', '1', '1', 'blood_steel', 'b', '170', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '99', '13100000', '1746', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '3024', '5', '3'), ('4782', 'Demon Dagger - Mortal Strike', 'rhand', 'true', '970', '1', '1', 'blood_steel', 'b', '170', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '99', '13100000', '1746', 'true', 'true', 'true', 'true', '3035', '6', '0', '0', '0', '0', '0', '0'), ('4783', 'Bloody Orchid - Evasion', 'rhand', 'true', '960', '1', '1', 'blood_steel', 'a', '186', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '107', '18300000', '1464', 'true', 'true', 'true', 'true', '3009', '6', '0', '0', '0', '0', '0', '0'), ('4784', 'Bloody Orchid - Focus', 'rhand', 'true', '960', '1', '1', 'blood_steel', 'a', '186', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '107', '18300000', '1464', 'true', 'true', 'true', 'true', '3011', '2', '0', '0', '0', '0', '0', '0'), ('4785', 'Bloody Orchid - Back Blow', 'rhand', 'true', '960', '1', '1', 'blood_steel', 'a', '186', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '107', '18300000', '1464', 'true', 'true', 'true', 'true', '3019', '6', '0', '0', '0', '0', '0', '0'), ('4786', 'Hell Knife - Focus', 'rhand', 'true', '740', '1', '1', 'blood_steel', 'b', '122', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '122', '8680000', '1157', 'true', 'true', 'true', 'true', '3011', '5', '0', '0', '0', '0', '0', '0'), ('4787', 'Hell Knife - Back Blow', 'rhand', 'true', '740', '1', '1', 'blood_steel', 'b', '122', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '122', '8680000', '1157', 'true', 'true', 'true', 'true', '3018', '5', '0', '0', '0', '0', '0', '0'), ('4788', 'Hell Knife - Mortal Strike', 'rhand', 'true', '740', '1', '1', 'blood_steel', 'b', '122', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '122', '8680000', '1157', 'true', 'true', 'true', 'true', '3035', '5', '0', '0', '0', '0', '0', '0'), ('4789', 'Chakram - Critical Drain', 'lrhand', 'true', '1490', '2', '2', 'fine_steel', 'c', '130', '5', 'dualfist', '4', '4.00000', '0', '0', '0', '325', '0', '61', '2290000', '916', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '3022', '1', '10'), ('4790', 'Chakram - Critical Poison', 'lrhand', 'true', '1490', '2', '2', 'fine_steel', 'c', '130', '5', 'dualfist', '4', '4.00000', '0', '0', '0', '325', '0', '61', '2290000', '916', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '3024', '4', '8'), ('4791', 'Chakram - Rsk. Haste', 'lrhand', 'true', '1490', '2', '2', 'fine_steel', 'c', '130', '5', 'dualfist', '4', '4.00000', '0', '0', '0', '325', '0', '61', '2290000', '916', 'true', 'true', 'true', 'true', '3034', '1', '0', '0', '0', '0', '0', '0'), ('4792', 'Fisted Blade - Rsk. Evasion', 'lrhand', 'true', '1480', '3', '3', 'fine_steel', 'c', '169', '5', 'dualfist', '4', '4.00000', '0', '0', '0', '325', '0', '76', '4300000', '1720', 'true', 'true', 'true', 'true', '3030', '3', '0', '0', '0', '0', '0', '0'); INSERT INTO `weapon` VALUES ('4793', 'Fisted Blade - Rsk. Haste', 'lrhand', 'true', '1480', '3', '3', 'fine_steel', 'c', '169', '5', 'dualfist', '4', '4.00000', '0', '0', '0', '325', '0', '76', '4300000', '1720', 'true', 'true', 'true', 'true', '3034', '3', '0', '0', '0', '0', '0', '0'), ('4794', 'Fisted Blade - Haste', 'lrhand', 'true', '1480', '3', '3', 'fine_steel', 'c', '169', '5', 'dualfist', '4', '4.00000', '0', '0', '0', '325', '0', '76', '4300000', '1720', 'true', 'true', 'true', 'true', '3037', '3', '0', '0', '0', '0', '0', '0'), ('4795', 'Great Pata - Critical Drain', 'lrhand', 'true', '1460', '3', '3', 'chrysolite', 'c', '190', '5', 'dualfist', '4', '4.00000', '0', '0', '0', '325', '0', '83', '6130000', '2452', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '3022', '3', '10'), ('4796', 'Great Pata - Critical Poison', 'lrhand', 'true', '1460', '3', '3', 'chrysolite', 'c', '190', '5', 'dualfist', '4', '4.00000', '0', '0', '0', '325', '0', '83', '6130000', '2452', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '3024', '5', '7'), ('4797', 'Great Pata - Rsk. Haste', 'lrhand', 'true', '1460', '3', '3', 'chrysolite', 'c', '190', '5', 'dualfist', '4', '4.00000', '0', '0', '0', '325', '0', '83', '6130000', '2452', 'true', 'true', 'true', 'true', '3034', '4', '0', '0', '0', '0', '0', '0'), ('4798', 'Knuckle Duster - Rsk. Evasion', 'lrhand', 'true', '1490', '2', '2', 'fine_steel', 'c', '148', '5', 'dualfist', '4', '4.00000', '0', '0', '0', '325', '0', '68', '2870000', '1148', 'true', 'true', 'true', 'true', '3030', '2', '0', '0', '0', '0', '0', '0'), ('4799', 'Knuckle Duster - Rsk. Haste', 'lrhand', 'true', '1490', '2', '2', 'fine_steel', 'c', '148', '5', 'dualfist', '4', '4.00000', '0', '0', '0', '325', '0', '68', '2870000', '1148', 'true', 'true', 'true', 'true', '3034', '2', '0', '0', '0', '0', '0', '0'), ('4800', 'Knuckle Duster - Haste', 'lrhand', 'true', '1490', '2', '2', 'fine_steel', 'c', '148', '5', 'dualfist', '4', '4.00000', '0', '0', '0', '325', '0', '68', '2870000', '1148', 'true', 'true', 'true', 'true', '3037', '2', '0', '0', '0', '0', '0', '0'), ('4801', 'Arthro Nail - Critical Poison', 'lrhand', 'true', '1420', '1', '1', 'blood_steel', 'b', '213', '5', 'dualfist', '4', '4.00000', '0', '0', '0', '325', '0', '91', '8680000', '1157', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '3024', '5', '7'), ('4802', 'Arthro Nail - Rsk. Evasion', 'lrhand', 'true', '1420', '1', '1', 'blood_steel', 'b', '213', '5', 'dualfist', '4', '4.00000', '0', '0', '0', '325', '0', '91', '8680000', '1157', 'true', 'true', 'true', 'true', '3030', '5', '0', '0', '0', '0', '0', '0'), ('4803', 'Arthro Nail - Rsk. Haste', 'lrhand', 'true', '1420', '1', '1', 'blood_steel', 'b', '213', '5', 'dualfist', '4', '4.00000', '0', '0', '0', '325', '0', '91', '8680000', '1157', 'true', 'true', 'true', 'true', '3034', '5', '0', '0', '0', '0', '0', '0'), ('4804', 'Bellion Cestus - Critical Drain', 'lrhand', 'true', '1390', '1', '1', 'mithril', 'b', '236', '5', 'dualfist', '4', '4.00000', '0', '0', '0', '325', '0', '99', '13100000', '1746', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '3022', '5', '10'), ('4805', 'Bellion Cestus - Critical Poison', 'lrhand', 'true', '1390', '1', '1', 'mithril', 'b', '236', '5', 'dualfist', '4', '4.00000', '0', '0', '0', '325', '0', '99', '13100000', '1746', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '3024', '6', '6'), ('4806', 'Bellion Cestus - Rsk. Haste', 'lrhand', 'true', '1390', '1', '1', 'mithril', 'b', '236', '5', 'dualfist', '4', '4.00000', '0', '0', '0', '325', '0', '99', '13100000', '1746', 'true', 'true', 'true', 'true', '3034', '6', '0', '0', '0', '0', '0', '0'), ('4807', 'Blood Tornado - Critical Drain', 'lrhand', 'true', '1370', '1', '1', 'blood_steel', 'a', '259', '5', 'dualfist', '4', '4.00000', '0', '0', '0', '325', '0', '107', '18300000', '1464', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '3022', '6', '10'), ('4808', 'Blood Tornado - Rsk. Evasion', 'lrhand', 'true', '1370', '1', '1', 'blood_steel', 'a', '259', '5', 'dualfist', '4', '4.00000', '0', '0', '0', '325', '0', '107', '18300000', '1464', 'true', 'true', 'true', 'true', '3030', '6', '0', '0', '0', '0', '0', '0'), ('4809', 'Blood Tornado - Haste', 'lrhand', 'true', '1370', '1', '1', 'blood_steel', 'a', '259', '5', 'dualfist', '4', '4.00000', '0', '0', '0', '325', '0', '107', '18300000', '1464', 'true', 'true', 'true', 'true', '3037', '6', '0', '0', '0', '0', '0', '0'), ('4810', 'Crystallized Ice Bow - Guidance', 'lrhand', 'true', '1790', '8', '2', 'crystal', 'c', '220', '5', 'bow', '12', '-3.00000', '0', '0', '0', '293', '6', '61', '2290000', '916', 'true', 'true', 'true', 'true', '3008', '1', '0', '0', '0', '0', '0', '0'), ('4811', 'Crystallized Ice Bow - Evasion', 'lrhand', 'true', '1790', '8', '2', 'crystal', 'c', '220', '5', 'bow', '12', '-3.00000', '0', '0', '0', '293', '6', '61', '2290000', '916', 'true', 'true', 'true', 'true', '3009', '1', '0', '0', '0', '0', '0', '0'), ('4812', 'Crystallized Ice Bow - Quick Recovery', 'lrhand', 'true', '1790', '8', '2', 'crystal', 'c', '220', '5', 'bow', '12', '-3.00000', '0', '0', '0', '293', '6', '61', '2290000', '916', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('4813', 'Elemental Bow - Guidance', 'lrhand', 'true', '1770', '8', '2', 'fine_steel', 'c', '277', '5', 'bow', '12', '-3.00000', '0', '0', '0', '227', '7', '75', '2870000', '1148', 'true', 'true', 'true', 'true', '3008', '2', '0', '0', '0', '0', '0', '0'), ('4814', 'Elemental Bow - Miser', 'lrhand', 'true', '1770', '8', '2', 'fine_steel', 'c', '277', '5', 'bow', '12', '-3.00000', '0', '0', '0', '227', '7', '75', '2870000', '1148', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('4815', 'Elemental Bow - Quick Recovery', 'lrhand', 'true', '1770', '8', '2', 'fine_steel', 'c', '277', '5', 'bow', '12', '-3.00000', '0', '0', '0', '227', '7', '75', '2870000', '1148', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('4816', 'Elven Bow of Nobility - Evasion', 'lrhand', 'true', '1760', '8', '2', 'mithril', 'c', '252', '5', 'bow', '12', '-3.00000', '0', '0', '0', '293', '7', '68', '2870000', '1148', 'true', 'true', 'true', 'true', '3009', '2', '0', '0', '0', '0', '0', '0'), ('4817', 'Elven Bow of Nobility - Miser', 'lrhand', 'true', '1760', '8', '2', 'mithril', 'c', '252', '5', 'bow', '12', '-3.00000', '0', '0', '0', '293', '7', '68', '2870000', '1148', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('4818', 'Elven Bow of Nobility - Cheap Shot', 'lrhand', 'true', '1760', '8', '2', 'mithril', 'c', '252', '5', 'bow', '12', '-3.00000', '0', '0', '0', '293', '7', '68', '2870000', '1148', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('4819', 'Akat Long Bow - Guidance', 'lrhand', 'true', '1740', '9', '3', 'horn', 'c', '316', '5', 'bow', '12', '-3.00000', '0', '0', '0', '227', '7', '84', '4300000', '1720', 'true', 'true', 'true', 'true', '3008', '3', '0', '0', '0', '0', '0', '0'), ('4820', 'Akat Long Bow - Evasion', 'lrhand', 'true', '1740', '9', '3', 'horn', 'c', '316', '5', 'bow', '12', '-3.00000', '0', '0', '0', '227', '7', '84', '4300000', '1720', 'true', 'true', 'true', 'true', '3009', '3', '0', '0', '0', '0', '0', '0'), ('4821', 'Akat Long Bow - Miser', 'lrhand', 'true', '1740', '9', '3', 'horn', 'c', '316', '5', 'bow', '12', '-3.00000', '0', '0', '0', '227', '7', '84', '4300000', '1720', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('4822', 'Eminence Bow - Guidance', 'lrhand', 'true', '1720', '10', '3', 'chrysolite', 'c', '323', '5', 'bow', '12', '-3.00000', '0', '0', '0', '293', '8', '83', '6130000', '2452', 'true', 'true', 'true', 'true', '3008', '4', '0', '0', '0', '0', '0', '0'), ('4823', 'Eminence Bow - Miser', 'lrhand', 'true', '1720', '10', '3', 'chrysolite', 'c', '323', '5', 'bow', '12', '-3.00000', '0', '0', '0', '293', '8', '83', '6130000', '2452', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('4824', 'Eminence Bow - Cheap Shot', 'lrhand', 'true', '1720', '10', '3', 'chrysolite', 'c', '323', '5', 'bow', '12', '-3.00000', '0', '0', '0', '293', '8', '83', '6130000', '2452', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('4825', 'Dark Elven Long Bow - Evasion', 'lrhand', 'true', '1720', '3', '1', 'oriharukon', 'b', '397', '5', 'bow', '12', '-3.00000', '0', '0', '0', '227', '8', '100', '8680000', '1157', 'true', 'true', 'true', 'true', '3009', '5', '0', '0', '0', '0', '0', '0'), ('4826', 'Dark Elven Long Bow - Critical Bleed', 'lrhand', 'true', '1720', '3', '1', 'oriharukon', 'b', '397', '5', 'bow', '12', '-3.00000', '0', '0', '0', '227', '8', '100', '8680000', '1157', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '3021', '4', '30'), ('4827', 'Dark Elven Long Bow - Miser', 'lrhand', 'true', '1720', '3', '1', 'oriharukon', 'b', '397', '5', 'bow', '12', '-3.00000', '0', '0', '0', '227', '8', '100', '8680000', '1157', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('4828', 'Bow of Peril - Guidance', 'lrhand', 'true', '1700', '3', '1', 'blood_steel', 'b', '400', '5', 'bow', '12', '-3.00000', '0', '0', '0', '293', '9', '99', '13100000', '1746', 'true', 'true', 'true', 'true', '3008', '6', '0', '0', '0', '0', '0', '0'), ('4829', 'Bow of Peril - Quick Recovery', 'lrhand', 'true', '1700', '3', '1', 'blood_steel', 'b', '400', '5', 'bow', '12', '-3.00000', '0', '0', '0', '293', '9', '99', '13100000', '1746', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('4830', 'Bow of Peril - Cheap Shot', 'lrhand', 'true', '1700', '3', '1', 'blood_steel', 'b', '400', '5', 'bow', '12', '-3.00000', '0', '0', '0', '293', '9', '99', '13100000', '1746', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('4831', 'Carnage Bow - Critical Bleed', 'lrhand', 'true', '1670', '2', '1', 'damascus', 'a', '440', '5', 'bow', '12', '-3.00000', '0', '0', '0', '293', '9', '107', '18300000', '1464', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '3021', '4', '30'), ('4832', 'Carnage Bow - Mana Up', 'lrhand', 'true', '1670', '2', '1', 'damascus', 'a', '440', '5', 'bow', '12', '-3.00000', '0', '0', '0', '293', '9', '107', '18300000', '1464', 'true', 'true', 'true', 'true', '3014', '2', '0', '0', '0', '0', '0', '0'), ('4833', 'Carnage Bow - Quick Recovery', 'lrhand', 'true', '1670', '2', '1', 'damascus', 'a', '440', '5', 'bow', '12', '-3.00000', '0', '0', '0', '293', '9', '107', '18300000', '1464', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('4834', 'Scythe - Anger', 'lrhand', 'true', '2040', '2', '2', 'fine_steel', 'c', '107', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '61', '2290000', '916', 'true', 'true', 'true', 'true', '3600', '1', '0', '0', '0', '0', '0', '0'), ('4835', 'Scythe - Critical Stun', 'lrhand', 'true', '2040', '2', '2', 'fine_steel', 'c', '107', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '61', '2290000', '916', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '3571', '1', '18'), ('4836', 'Scythe - Light', 'lrhand', 'true', '610', '2', '2', 'fine_steel', 'c', '107', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '61', '2290000', '916', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('4837', 'Orcish Glaive - Anger', 'lrhand', 'true', '2030', '2', '2', 'fine_steel', 'c', '107', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '61', '2290000', '916', 'true', 'true', 'true', 'true', '3600', '1', '0', '0', '0', '0', '0', '0'), ('4838', 'Orcish Glaive - Critical Stun', 'lrhand', 'true', '2030', '2', '2', 'fine_steel', 'c', '107', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '61', '2290000', '916', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '3571', '1', '18'), ('4839', 'Orcish Glaive - Towering Blow', 'lrhand', 'true', '2030', '2', '2', 'fine_steel', 'c', '107', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '61', '2290000', '916', 'true', 'true', 'true', 'true', '3599', '1', '0', '0', '0', '0', '0', '0'), ('4840', 'Body Slasher - Critical Stun', 'lrhand', 'true', '2030', '2', '2', 'fine_steel', 'c', '107', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '61', '2290000', '916', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '3571', '1', '18'), ('4841', 'Body Slasher - Towering Blow', 'lrhand', 'true', '2030', '2', '2', 'fine_steel', 'c', '107', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '61', '2290000', '916', 'true', 'true', 'true', 'true', '3599', '1', '0', '0', '0', '0', '0', '0'), ('4842', 'Body Slasher - Wide Blow', 'lrhand', 'true', '2030', '2', '2', 'fine_steel', 'c', '107', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '61', '2290000', '916', 'true', 'true', 'true', 'true', '3599', '1', '0', '0', '0', '0', '0', '0'), ('4843', 'Bec de Corbin - Critical Stun', 'lrhand', 'true', '2020', '2', '2', 'fine_steel', 'c', '122', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '68', '2870000', '1148', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '3571', '1', '17'), ('4844', 'Bec de Corbin - Towering Blow', 'lrhand', 'true', '2020', '2', '2', 'fine_steel', 'c', '122', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '68', '2870000', '1148', 'true', 'true', 'true', 'true', '3599', '1', '0', '0', '0', '0', '0', '0'), ('4845', 'Bec de Corbin - Light', 'lrhand', 'true', '600', '2', '2', 'fine_steel', 'c', '122', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '68', '2870000', '1148', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('4846', 'Scorpion - Anger', 'lrhand', 'true', '1990', '3', '3', 'fine_steel', 'c', '144', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '78', '4780000', '1912', 'true', 'true', 'true', 'true', '3600', '3', '0', '0', '0', '0', '0', '0'), ('4847', 'Scorpion - Critical Stun', 'lrhand', 'true', '1990', '3', '3', 'fine_steel', 'c', '144', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '78', '4780000', '1912', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '3571', '1', '16'), ('4848', 'Scorpion - Towering Blow', 'lrhand', 'true', '1990', '3', '3', 'fine_steel', 'c', '144', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '78', '4780000', '1912', 'true', 'true', 'true', 'true', '3599', '1', '0', '0', '0', '0', '0', '0'), ('4849', 'Widow Maker - Critical Stun', 'lrhand', 'true', '1980', '3', '3', 'fine_steel', 'c', '144', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '78', '4780000', '1912', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '3571', '1', '16'), ('4850', 'Widow Maker - Towering Blow', 'lrhand', 'true', '1980', '3', '3', 'fine_steel', 'c', '144', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '78', '4780000', '1912', 'true', 'true', 'true', 'true', '3599', '1', '0', '0', '0', '0', '0', '0'), ('4851', 'Widow Maker - Wide Blow', 'lrhand', 'true', '1980', '3', '3', 'fine_steel', 'c', '144', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '78', '4780000', '1912', 'true', 'true', 'true', 'true', '3599', '1', '0', '0', '0', '0', '0', '0'), ('4852', 'Orcish Poleaxe - Critical Stun', 'lrhand', 'true', '1950', '3', '3', 'blood_steel', 'c', '156', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '83', '6130000', '2452', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '3571', '1', '15'), ('4853', 'Orcish Poleaxe - Towering Blow', 'lrhand', 'true', '1950', '3', '3', 'blood_steel', 'c', '156', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '83', '6130000', '2452', 'true', 'true', 'true', 'true', '3599', '1', '0', '0', '0', '0', '0', '0'), ('4854', 'Orcish Poleaxe - Wide Blow', 'lrhand', 'true', '1950', '3', '3', 'blood_steel', 'c', '156', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '83', '6130000', '2452', 'true', 'true', 'true', 'true', '3599', '1', '0', '0', '0', '0', '0', '0'), ('4855', 'Great Axe - Anger', 'lrhand', 'true', '1940', '1', '1', 'damascus', 'b', '175', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '91', '8680000', '1157', 'true', 'true', 'true', 'true', '3600', '5', '0', '0', '0', '0', '0', '0'), ('4856', 'Great Axe - Critical Stun', 'lrhand', 'true', '1940', '1', '1', 'damascus', 'b', '175', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '91', '8680000', '1157', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '3571', '1', '14'), ('4857', 'Great Axe - Light', 'lrhand', 'true', '580', '1', '1', 'damascus', 'b', '175', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '91', '8680000', '1157', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('4858', 'Lance - Anger', 'lrhand', 'true', '1920', '1', '1', 'blood_steel', 'b', '194', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '99', '13100000', '1746', 'true', 'true', 'true', 'true', '3600', '6', '0', '0', '0', '0', '0', '0'), ('4859', 'Lance - Critical Stun', 'lrhand', 'true', '1920', '1', '1', 'blood_steel', 'b', '194', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '99', '13100000', '1746', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '3571', '1', '13'), ('4860', 'Lance - Towering Blow', 'lrhand', 'true', '1920', '1', '1', 'blood_steel', 'b', '194', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '99', '13100000', '1746', 'true', 'true', 'true', 'true', '3599', '1', '0', '0', '0', '0', '0', '0'), ('4861', 'Halberd - Critical Stun', 'lrhand', 'true', '1900', '1', '1', 'oriharukon', 'a', '213', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '107', '18300000', '1464', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '3571', '1', '15'), ('4862', 'Halberd - Towering Blow', 'lrhand', 'true', '1900', '1', '1', 'oriharukon', 'a', '213', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '107', '18300000', '1464', 'true', 'true', 'true', 'true', '3599', '1', '0', '0', '0', '0', '0', '0'), ('4863', 'Halberd - Wide Blow', 'lrhand', 'true', '1900', '1', '1', 'oriharukon', 'a', '213', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '107', '18300000', '1464', 'true', 'true', 'true', 'true', '3599', '1', '0', '0', '0', '0', '0', '0'), ('4864', 'Heavy Doom Hammer - Magic Regeneration', 'lrhand', 'true', '1020', '2', '2', 'fine_steel', 'c', '103', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '81', '2290000', '916', 'true', 'true', 'true', 'true', '0', '0', '1044', '1', '30', '0', '0', '0'), ('4865', 'Heavy Doom Hammer - Mental Shield', 'lrhand', 'true', '1020', '2', '2', 'fine_steel', 'c', '103', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '81', '2290000', '916', 'true', 'true', 'true', 'true', '0', '0', '1035', '2', '30', '0', '0', '0'), ('4866', 'Heavy Doom Hammer - Magic Hold', 'lrhand', 'true', '1020', '2', '2', 'fine_steel', 'c', '103', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '81', '2290000', '916', 'true', 'true', 'true', 'true', '0', '0', '3577', '1', '10', '0', '0', '0'), ('4867', 'Crystal Staff - Rsk. Evasion', 'lrhand', 'true', '1020', '2', '2', 'crystal', 'c', '103', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '81', '2290000', '916', 'true', 'true', 'true', 'true', '3031', '1', '0', '0', '0', '0', '0', '0'), ('4868', 'Crystal Staff - Mana Up', 'lrhand', 'true', '1020', '2', '2', 'crystal', 'c', '103', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '81', '2290000', '916', 'true', 'true', 'true', 'true', '3014', '1', '0', '0', '0', '0', '0', '0'), ('4869', 'Crystal Staff - Bodily Blessing', 'lrhand', 'true', '1020', '2', '2', 'crystal', 'c', '103', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '81', '2290000', '916', 'true', 'true', 'true', 'true', '0', '0', '1045', '2', '20', '0', '0', '0'), ('4870', 'Heavy Doom Axe - Magic Poison', 'lrhand', 'true', '1010', '2', '2', 'fine_steel', 'c', '103', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '81', '2290000', '916', 'true', 'true', 'true', 'true', '0', '0', '1168', '6', '8', '0', '0', '0'), ('4871', 'Heavy Doom Axe - Magic Weakness', 'lrhand', 'true', '1010', '2', '2', 'fine_steel', 'c', '103', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '81', '2290000', '916', 'true', 'true', 'true', 'true', '0', '0', '1164', '6', '8', '0', '0', '0'), ('4872', 'Heavy Doom Axe - Magic Chaos', 'lrhand', 'true', '1010', '2', '2', 'fine_steel', 'c', '103', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '81', '2290000', '916', 'true', 'true', 'true', 'true', '0', '0', '1222', '2', '8', '0', '0', '0'), ('4873', 'Cursed Staff - Magic Hold', 'lrhand', 'true', '1000', '2', '2', 'wood', 'c', '119', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '91', '2870000', '1148', 'true', 'true', 'true', 'true', '0', '0', '3577', '1', '10', '0', '0', '0'), ('4874', 'Cursed Staff - Magic Poison', 'lrhand', 'true', '1000', '2', '2', 'wood', 'c', '119', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '91', '2870000', '1148', 'true', 'true', 'true', 'true', '0', '0', '1168', '6', '8', '0', '0', '0'), ('4875', 'Cursed Staff - Magic Weakness', 'lrhand', 'true', '1000', '2', '2', 'wood', 'c', '119', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '91', '2870000', '1148', 'true', 'true', 'true', 'true', '0', '0', '1164', '6', '8', '0', '0', '0'), ('4876', 'Paradia Staff - Magic Regeneration', 'lrhand', 'true', '1010', '3', '3', 'wood', 'c', '135', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '101', '4300000', '1720', 'true', 'true', 'true', 'true', '0', '0', '1044', '2', '30', '0', '0', '0'), ('4877', 'Paradia Staff - Mental Shield', 'lrhand', 'true', '1010', '3', '3', 'wood', 'c', '135', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '101', '4300000', '1720', 'true', 'true', 'true', 'true', '0', '0', '1035', '3', '30', '0', '0', '0'), ('4878', 'Paradia Staff - Magic Hold', 'lrhand', 'true', '1010', '3', '3', 'wood', 'c', '135', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '101', '4300000', '1720', 'true', 'true', 'true', 'true', '0', '0', '3577', '1', '10', '0', '0', '0'), ('4879', 'Pa\'agrian Hammer - Rsk. Evasion', 'lrhand', 'true', '1010', '3', '3', 'blood_steel', 'c', '135', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '101', '4300000', '1720', 'true', 'true', 'true', 'true', '3031', '3', '0', '0', '0', '0', '0', '0'), ('4880', 'Pa\'agrian Hammer - Magic Poison', 'lrhand', 'true', '1010', '3', '3', 'blood_steel', 'c', '135', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '101', '4300000', '1720', 'true', 'true', 'true', 'true', '0', '0', '1168', '6', '7', '0', '0', '0'), ('4881', 'Pa\'agrian Hammer - Magic Weakness', 'lrhand', 'true', '1010', '3', '3', 'blood_steel', 'c', '135', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '101', '4300000', '1720', 'true', 'true', 'true', 'true', '0', '0', '1164', '6', '7', '0', '0', '0'), ('4882', 'Sage\'s Staff - Magic Hold', 'lrhand', 'true', '1000', '3', '3', 'wood', 'c', '135', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '101', '4300000', '1720', 'true', 'true', 'true', 'true', '0', '0', '3577', '1', '10', '0', '0', '0'), ('4883', 'Sage\'s Staff - Magic Poison', 'lrhand', 'true', '1000', '3', '3', 'wood', 'c', '135', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '101', '4300000', '1720', 'true', 'true', 'true', 'true', '0', '0', '1168', '6', '7', '0', '0', '0'), ('4884', 'Sage\'s Staff - Magic Weakness', 'lrhand', 'true', '1000', '3', '3', 'wood', 'c', '135', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '101', '4300000', '1720', 'true', 'true', 'true', 'true', '0', '0', '1164', '6', '7', '0', '0', '0'), ('4885', 'Pa\'agrian Axe - Mana Up', 'lrhand', 'true', '990', '3', '3', 'blood_steel', 'c', '141', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '104', '4780000', '1912', 'true', 'true', 'true', 'true', '3014', '1', '0', '0', '0', '0', '0', '0'), ('4886', 'Pa\'agrian Axe - Magic Weakness', 'lrhand', 'true', '990', '3', '3', 'blood_steel', 'c', '141', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '104', '4780000', '1912', 'true', 'true', 'true', 'true', '0', '0', '1164', '6', '7', '0', '0', '0'), ('4887', 'Pa\'agrian Axe - Magic Chaos', 'lrhand', 'true', '990', '3', '3', 'blood_steel', 'c', '141', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '104', '4780000', '1912', 'true', 'true', 'true', 'true', '0', '0', '1222', '2', '7', '0', '0', '0'), ('4888', 'Deadman\'s Staff - Magic Regeneration', 'lrhand', 'true', '1010', '3', '3', 'bone', 'c', '152', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '111', '6130000', '2452', 'true', 'true', 'true', 'true', '0', '0', '1044', '2', '30', '0', '0', '0'), ('4889', 'Deadman\'s Staff - Mental Shield', 'lrhand', 'true', '1010', '3', '3', 'bone', 'c', '152', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '111', '6130000', '2452', 'true', 'true', 'true', 'true', '0', '0', '1035', '3', '30', '0', '0', '0'), ('4890', 'Deadman\'s Staff - Magic Hold', 'lrhand', 'true', '1010', '3', '3', 'bone', 'c', '152', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '111', '6130000', '2452', 'true', 'true', 'true', 'true', '0', '0', '3577', '1', '10', '0', '0', '0'), ('4891', 'Ghoul\'s Staff - Rsk. Evasion', 'lrhand', 'true', '1000', '3', '3', 'bone', 'c', '152', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '111', '6130000', '2452', 'true', 'true', 'true', 'true', '3031', '4', '0', '0', '0', '0', '0', '0'), ('4892', 'Ghoul\'s Staff - Mana Up', 'lrhand', 'true', '1000', '3', '3', 'bone', 'c', '152', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '111', '6130000', '2452', 'true', 'true', 'true', 'true', '3014', '1', '0', '0', '0', '0', '0', '0'), ('4893', 'Ghoul\'s Staff - Bodily Blessing', 'lrhand', 'true', '1000', '3', '3', 'bone', 'c', '152', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '111', '6130000', '2452', 'true', 'true', 'true', 'true', '0', '0', '1045', '4', '20', '0', '0', '0'), ('4894', 'Demon\'s Staff - Magic Poison', 'lrhand', 'true', '990', '3', '3', 'wood', 'c', '152', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '111', '6130000', '2452', 'true', 'true', 'true', 'true', '0', '0', '1168', '6', '7', '0', '0', '0'), ('4895', 'Demon\'s Staff - Magic Weakness', 'lrhand', 'true', '990', '3', '3', 'wood', 'c', '152', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '111', '6130000', '2452', 'true', 'true', 'true', 'true', '0', '0', '1164', '6', '7', '0', '0', '0'), ('4896', 'Demon\'s Staff - Magic Chaos', 'lrhand', 'true', '990', '3', '3', 'wood', 'c', '152', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '111', '6130000', '2452', 'true', 'true', 'true', 'true', '0', '0', '1222', '2', '7', '0', '0', '0'), ('4897', 'Sprite\'s Staff - Magic Regeneration', 'lrhand', 'true', '960', '1', '1', 'wood', 'b', '170', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '122', '8680000', '1157', 'true', 'true', 'true', 'true', '0', '0', '1044', '3', '30', '0', '0', '0'), ('4898', 'Sprite\'s Staff - Mental Shield', 'lrhand', 'true', '960', '1', '1', 'wood', 'b', '170', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '122', '8680000', '1157', 'true', 'true', 'true', 'true', '0', '0', '1035', '4', '30', '0', '0', '0'), ('4899', 'Sprite\'s Staff - Magic Hold', 'lrhand', 'true', '960', '1', '1', 'wood', 'b', '170', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '122', '8680000', '1157', 'true', 'true', 'true', 'true', '0', '0', '3577', '1', '10', '0', '0', '0'), ('4900', 'Staff of Evil Spirits - Magic Focus', 'lrhand', 'true', '930', '1', '1', 'wood', 'b', '189', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '132', '13100000', '1746', 'true', 'true', 'true', 'true', '0', '0', '1077', '3', '20', '0', '0', '0'), ('4901', 'Staff of Evil Spirits - Bodily Blessing', 'lrhand', 'true', '930', '1', '1', 'wood', 'b', '189', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '132', '13100000', '1746', 'true', 'true', 'true', 'true', '0', '0', '1045', '5', '20', '0', '0', '0'), ('4902', 'Staff of Evil Spirits - Magic Poison', 'lrhand', 'true', '930', '1', '1', 'wood', 'b', '189', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '132', '13100000', '1746', 'true', 'true', 'true', 'true', '0', '0', '1168', '6', '6', '0', '0', '0'), ('4903', 'Dasparion\'s Staff', 'lrhand', 'true', '920', '1', '1', 'adamantaite', 'a', '207', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '143', '18300000', '1464', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('4904', 'Dasparion\'s Staff', 'lrhand', 'true', '920', '1', '1', 'adamantaite', 'a', '207', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '143', '18300000', '1464', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('4905', 'Dasparion\'s Staff', 'lrhand', 'true', '920', '1', '1', 'adamantaite', 'a', '207', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '143', '18300000', '1464', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('5127', 'Dailaon Knife', 'rhand', 'false', '300', '2', '2', 'steel', 'd', '5', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '5', '409000', '743', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('5128', 'Crokian Blade', 'rhand', 'true', '300', '2', '2', 'steel', 'd', '5', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '5', '409000', '743', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('5129', 'Doll Knife', 'lrhand', 'false', '300', '2', '2', 'steel', 'd', '200', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '6', '409000', '743', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('5130', 'Nos Sword', 'rhand', 'true', '300', '2', '2', 'steel', 'd', '5', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '5', '409000', '743', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('5131', 'Parhit Staff', 'rhand', 'true', '300', '2', '2', 'steel', 'd', '5', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '5', '409000', '743', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('5132', 'Giant Trident', 'rhand', 'true', '300', '2', '2', 'steel', 'd', '5', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '5', '409000', '743', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('5133', 'Chrono Unitus', 'lrhand', 'false', '0', '0', '0', 'steel', 'none', '1', '5', 'dualfist', '4', '4.00000', '0', '0', '0', '325', '0', '1', '0', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('5176', 'Serpentine Spike', 'strider', 'false', '100', '1', '1', 'steel', 'none', '17', '10', 'pet', '8', '0.00000', '0', '0', '0', '277', '0', '21', '1600000', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('5177', 'Drake Horn', 'strider', 'false', '100', '1', '1', 'steel', 'none', '19', '10', 'pet', '8', '0.00000', '0', '0', '0', '277', '0', '24', '2300000', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('5178', 'Assult Alicorn', 'strider', 'false', '100', '1', '1', 'steel', 'none', '21', '10', 'pet', '8', '0.00000', '0', '0', '0', '277', '0', '27', '3400000', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('5179', 'Draconic Slicer', 'strider', 'false', '100', '1', '1', 'steel', 'none', '23', '10', 'pet', '8', '0.00000', '0', '0', '0', '277', '0', '30', '4900000', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('5180', 'Ohpdian Lance', 'strider', 'false', '100', '1', '1', 'steel', 'none', '25', '10', 'pet', '8', '0.00000', '0', '0', '0', '277', '0', '34', '7300000', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('5181', 'Diamond Drill', 'strider', 'false', '100', '1', '1', 'steel', 'none', '27', '10', 'pet', '8', '0.00000', '0', '0', '0', '277', '0', '37', '10000000', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('5187', 'Serpentine Grinder', 'hatchling', 'false', '100', '1', '1', 'steel', 'none', '19', '10', 'pet', '8', '0.00000', '0', '0', '0', '277', '0', '24', '2300000', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('5188', 'Fang of Dahak', 'hatchling', 'false', '100', '1', '1', 'steel', 'none', '21', '10', 'pet', '8', '0.00000', '0', '0', '0', '277', '0', '27', '3400000', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('5189', 'Crimson Blood Fang', 'hatchling', 'false', '100', '1', '1', 'steel', 'none', '23', '10', 'pet', '8', '0.00000', '0', '0', '0', '277', '0', '30', '4900000', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('5190', 'Draconic Chopper', 'hatchling', 'false', '100', '1', '1', 'steel', 'none', '25', '10', 'pet', '8', '0.00000', '0', '0', '0', '277', '0', '34', '7300000', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('5191', 'Diabolic Grinder', 'hatchling', 'false', '100', '1', '1', 'steel', 'none', '27', '10', 'pet', '8', '0.00000', '0', '0', '0', '277', '0', '37', '10000000', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('5217', 'Wolf Level 75 Weapon', 'wolf', 'false', '100', '1', '1', 'steel', 'none', '194', '10', 'pet', '8', '0.00000', '0', '0', '0', '277', '0', '136', '61084', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('5233', 'Keshanberk*Keshanberk', 'lrhand', 'true', '2080', '1', '1', 'fine_steel', 'a', '259', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '107', '18300000', '1464', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('5284', 'Zweihander', 'lrhand', 'false', '1530', '2', '2', 'bronze', 'none', '38', '10', 'bigsword', '8', '0.00000', '0', '0', '0', '325', '0', '21', '244000', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('5285', 'Heavy Sword', 'lrhand', 'true', '1520', '2', '2', 'steel', 'd', '49', '10', 'bigsword', '8', '0.00000', '0', '0', '0', '325', '0', '26', '409000', '743', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('5286', 'Berserker Blade', 'lrhand', 'true', '1380', '3', '3', 'oriharukon', 'c', '190', '10', 'bigsword', '8', '0.00000', '0', '0', '0', '325', '0', '83', '6130000', '2452', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('5292', 'Sealed Dark Crystal Shield', 'lhand', 'true', '1190', '0', '0', 'crystal', 'a', '0', '0', 'none', '0', '0.00000', '-8', '243', '20', '0', '0', '0', '1220000', '97', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('5315', 'Sealed Shield of Nightmare', 'lhand', 'true', '1180', '0', '0', 'leather', 'a', '0', '0', 'none', '0', '0.00000', '-8', '256', '20', '0', '0', '0', '1850000', '148', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('5596', 'Dasparion\'s Staff - Mana Up', 'lrhand', 'true', '920', '1', '1', 'adamantaite', 'a', '207', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '143', '18300000', '1464', 'true', 'true', 'true', 'true', '3014', '2', '0', '0', '0', '0', '0', '0'), ('5597', 'Dasparion\'s Staff - Conversion', 'lrhand', 'true', '920', '1', '1', 'adamantaite', 'a', '207', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '143', '18300000', '1464', 'true', 'true', 'true', 'true', '3048', '2', '0', '0', '0', '0', '0', '0'), ('5598', 'Dasparion\'s Staff - Acumen', 'lrhand', 'true', '920', '1', '1', 'adamantaite', 'a', '207', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '143', '18300000', '1464', 'true', 'true', 'true', 'true', '3047', '2', '0', '0', '0', '0', '0', '0'), ('5599', 'Meteor Shower - Focus', 'rhand', 'true', '1600', '1', '1', 'fine_steel', 'a', '213', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '107', '18300000', '1464', 'true', 'true', 'true', 'true', '3050', '1', '0', '0', '0', '0', '0', '0'), ('5600', 'Meteor Shower - Critical Bleed', 'rhand', 'true', '1600', '1', '1', 'fine_steel', 'a', '213', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '107', '18300000', '1464', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('5601', 'Meteor Shower - Rsk. Haste', 'rhand', 'true', '1600', '1', '1', 'fine_steel', 'a', '213', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '107', '18300000', '1464', 'true', 'true', 'true', 'true', '3056', '1', '0', '0', '0', '0', '0', '0'), ('5602', 'Elysian - Health', 'rhand', 'true', '1580', '1', '1', 'oriharukon', 'a', '232', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '114', '27000000', '2160', 'true', 'true', 'true', 'true', '3013', '3', '0', '0', '0', '3021', '5', '42'), ('5603', 'Elysian - Anger', 'rhand', 'true', '1580', '1', '1', 'oriharukon', 'a', '232', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '114', '27000000', '2160', 'true', 'true', 'true', 'true', '3057', '2', '0', '0', '0', '0', '0', '0'), ('5604', 'Elysian - Critical Drain', 'rhand', 'true', '1580', '1', '1', 'oriharukon', 'a', '232', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '114', '27000000', '2160', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('5605', 'Branch of The Mother Tree - Conversion', 'lrhand', 'true', '900', '1', '1', 'wood', 'a', '226', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '152', '27000000', '2160', 'true', 'true', 'true', 'true', '3048', '2', '0', '0', '0', '0', '0', '0'), ('5606', 'Branch of The Mother Tree - Magic Damage', 'lrhand', 'true', '900', '1', '1', 'wood', 'a', '226', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '152', '27000000', '2160', 'true', 'true', 'true', 'true', '3552', '1', '0', '0', '0', '0', '0', '0'), ('5607', 'Branch of The Mother Tree - Acumen', 'lrhand', 'true', '900', '1', '1', 'wood', 'a', '226', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '152', '27000000', '2160', 'true', 'true', 'true', 'true', '3047', '2', '0', '0', '0', '0', '0', '0'), ('5608', 'Carnage Bow - Light', 'lrhand', 'true', '500', '2', '1', 'damascus', 'a', '440', '5', 'bow', '12', '-3.00000', '0', '0', '0', '293', '9', '107', '18300000', '1464', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('5609', 'Carnage Bow - Critical Bleed', 'lrhand', 'true', '1670', '2', '1', 'damascus', 'a', '440', '5', 'bow', '12', '-3.00000', '0', '0', '0', '293', '9', '107', '18300000', '1464', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('5610', 'Carnage Bow - Mana Up', 'lrhand', 'true', '1670', '2', '1', 'damascus', 'a', '440', '5', 'bow', '12', '-3.00000', '0', '0', '0', '293', '9', '107', '18300000', '1464', 'true', 'true', 'true', 'true', '3014', '2', '0', '0', '0', '0', '0', '0'), ('5611', 'Soul Bow - Cheap Shot', 'lrhand', 'true', '1660', '2', '1', 'oriharukon', 'a', '528', '5', 'bow', '12', '-3.00000', '0', '0', '0', '227', '10', '125', '27000000', '2160', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('5612', 'Soul Bow - Quick Recovery', 'lrhand', 'true', '1660', '2', '1', 'oriharukon', 'a', '528', '5', 'bow', '12', '-3.00000', '0', '0', '0', '227', '10', '125', '27000000', '2160', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('5613', 'Soul Bow - Critical Poison', 'lrhand', 'true', '1660', '2', '1', 'oriharukon', 'a', '528', '5', 'bow', '12', '-3.00000', '0', '0', '0', '227', '10', '125', '27000000', '2160', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('5614', 'Bloody Orchid - Focus', 'rhand', 'true', '960', '1', '1', 'blood_steel', 'a', '186', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '107', '18300000', '1464', 'true', 'true', 'true', 'true', '3051', '1', '0', '0', '0', '0', '0', '0'), ('5615', 'Bloody Orchid - Back Blow', 'rhand', 'true', '960', '1', '1', 'blood_steel', 'a', '186', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '107', '18300000', '1464', 'true', 'true', 'true', 'true', '3063', '1', '0', '0', '0', '0', '0', '0'), ('5616', 'Bloody Orchid - Critical Bleed', 'rhand', 'true', '960', '1', '1', 'blood_steel', 'a', '186', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '107', '18300000', '1464', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '3021', '5', '35'), ('5617', 'Soul Separator - Guidance', 'rhand', 'true', '950', '1', '1', 'oriharukon', 'a', '203', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '114', '27000000', '2160', 'true', 'true', 'true', 'true', '3064', '1', '0', '0', '0', '0', '0', '0'), ('5618', 'Soul Separator - Critical Damage', 'rhand', 'true', '950', '1', '1', 'oriharukon', 'a', '203', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '114', '27000000', '2160', 'true', 'true', 'true', 'true', '3066', '1', '0', '0', '0', '0', '0', '0'), ('5619', 'Soul Separator - Rsk. Haste', 'rhand', 'true', '950', '1', '1', 'oriharukon', 'a', '203', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '114', '27000000', '2160', 'true', 'true', 'true', 'true', '3056', '1', '0', '0', '0', '0', '0', '0'), ('5620', 'Blood Tornado - Haste', 'lrhand', 'true', '1370', '1', '1', 'blood_steel', 'a', '259', '5', 'dualfist', '4', '4.00000', '0', '0', '0', '325', '0', '107', '18300000', '1464', 'true', 'true', 'true', 'true', '3068', '1', '0', '0', '0', '0', '0', '0'), ('5621', 'Blood Tornado - Focus', 'lrhand', 'true', '1370', '1', '1', 'blood_steel', 'a', '259', '5', 'dualfist', '4', '4.00000', '0', '0', '0', '325', '0', '107', '18300000', '1464', 'true', 'true', 'true', 'true', '3050', '1', '0', '0', '0', '0', '0', '0'), ('5622', 'Blood Tornado - Anger', 'lrhand', 'true', '1370', '1', '1', 'blood_steel', 'a', '259', '5', 'dualfist', '4', '4.00000', '0', '0', '0', '325', '0', '107', '18300000', '1464', 'true', 'true', 'true', 'true', '3058', '1', '0', '0', '0', '0', '0', '0'), ('5623', 'Dragon Grinder - Rsk. Evasion', 'lrhand', 'true', '1350', '1', '1', 'adamantaite', 'a', '282', '5', 'dualfist', '4', '4.00000', '0', '0', '0', '325', '0', '114', '27000000', '2160', 'true', 'true', 'true', 'true', '3069', '1', '0', '0', '0', '0', '0', '0'), ('5624', 'Dragon Grinder - Guidance', 'lrhand', 'true', '1350', '1', '1', 'adamantaite', 'a', '282', '5', 'dualfist', '4', '4.00000', '0', '0', '0', '325', '0', '114', '27000000', '2160', 'true', 'true', 'true', 'true', '3065', '1', '0', '0', '0', '0', '0', '0'), ('5625', 'Dragon Grinder - Health', 'lrhand', 'true', '1350', '1', '1', 'adamantaite', 'a', '282', '5', 'dualfist', '4', '4.00000', '0', '0', '0', '325', '0', '114', '27000000', '2160', 'true', 'true', 'true', 'true', '3013', '3', '0', '0', '0', '0', '0', '0'), ('5626', 'Halberd - Haste', 'lrhand', 'true', '1900', '1', '1', 'oriharukon', 'a', '213', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '107', '18300000', '1464', 'true', 'true', 'true', 'true', '3601', '7', '0', '0', '0', '0', '0', '0'), ('5627', 'Halberd - Critical Stun', 'lrhand', 'true', '1900', '1', '1', 'oriharukon', 'a', '213', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '107', '18300000', '1464', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '3070', '1', '25'), ('5628', 'Halberd - Wide Blow', 'lrhand', 'true', '1900', '1', '1', 'oriharukon', 'a', '213', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '107', '18300000', '1464', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('5629', 'Orcish Halberd', 'lrhand', 'true', '1880', '1', '1', 'blood_steel', 'a', '219', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '109', '21300000', '1704', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('5630', 'Orcish Halberd', 'lrhand', 'true', '1880', '1', '1', 'blood_steel', 'a', '219', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '109', '21300000', '1704', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('5631', 'Orcish Halberd', 'lrhand', 'true', '1880', '1', '1', 'blood_steel', 'a', '219', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '109', '21300000', '1704', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('5632', 'Tallum Glaive - Guidance', 'lrhand', 'true', '1840', '1', '1', 'chrysolite', 'a', '232', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '114', '27000000', '2160', 'true', 'true', 'true', 'true', '3602', '8', '0', '0', '0', '0', '0', '0'), ('5633', 'Tallum Glaive - Health', 'lrhand', 'true', '1840', '1', '1', 'chrysolite', 'a', '232', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '114', '27000000', '2160', 'true', 'true', 'true', 'true', '3013', '4', '0', '0', '0', '0', '0', '0'), ('5634', 'Tallum Glaive - Wide Blow', 'lrhand', 'true', '1840', '1', '1', 'chrysolite', 'a', '232', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '114', '27000000', '2160', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('5635', 'Tallum Blade - Critical Poison', 'rhand', 'true', '1330', '1', '1', 'adamantaite', 'a', '213', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '107', '18300000', '1464', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '3024', '5', '10'), ('5636', 'Tallum Blade - Haste', 'rhand', 'true', '1330', '1', '1', 'adamantaite', 'a', '213', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '107', '18300000', '1464', 'true', 'true', 'true', 'true', '3068', '1', '0', '0', '0', '0', '0', '0'), ('5637', 'Tallum Blade - Anger', 'rhand', 'true', '1330', '1', '1', 'adamantaite', 'a', '213', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '107', '18300000', '1464', 'true', 'true', 'true', 'true', '3057', '1', '0', '0', '0', '0', '0', '0'), ('5638', 'Elemental Sword - Magic Power', 'rhand', 'true', '830', '1', '1', 'mithril', 'a', '170', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '143', '18300000', '1464', 'true', 'true', 'true', 'true', '3073', '1', '0', '0', '0', '0', '0', '0'), ('5639', 'Elemental Sword - Magic Paralyze', 'rhand', 'true', '830', '1', '1', 'mithril', 'a', '170', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '143', '18300000', '1464', 'true', 'true', 'true', 'true', '0', '0', '3075', '1', '10', '0', '0', '0'), ('5640', 'Elemental Sword - Empower', 'rhand', 'true', '830', '1', '1', 'mithril', 'a', '170', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '143', '18300000', '1464', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('5641', 'Sword of Miracles - Magic Power', 'rhand', 'true', '840', '1', '1', 'adamantaite', 'a', '186', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '152', '27000000', '2160', 'true', 'true', 'true', 'true', '3073', '2', '0', '0', '0', '0', '0', '0'), ('5642', 'Sword of Miracles - Magic Silence', 'rhand', 'true', '840', '1', '1', 'adamantaite', 'a', '186', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '152', '27000000', '2160', 'true', 'true', 'true', 'true', '0', '0', '3074', '1', '10', '0', '0', '0'), ('5643', 'Sword of Miracles - Acumen', 'rhand', 'true', '840', '1', '1', 'adamantaite', 'a', '186', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '152', '27000000', '2160', 'true', 'true', 'true', 'true', '3047', '2', '0', '0', '0', '0', '0', '0'), ('5644', 'Dragon Slayer - Health', 'lrhand', 'true', '1840', '1', '1', 'bone', 'a', '282', '10', 'bigsword', '8', '0.00000', '0', '0', '0', '325', '0', '114', '27000000', '2160', 'true', 'true', 'true', 'true', '3013', '3', '0', '0', '0', '0', '0', '0'), ('5645', 'Dragon Slayer - Critical Bleed', 'lrhand', 'true', '1840', '1', '1', 'bone', 'a', '282', '10', 'bigsword', '8', '0.00000', '0', '0', '0', '325', '0', '114', '27000000', '2160', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '3021', '5', '24'), ('5646', 'Dragon Slayer - Critical Drain', 'lrhand', 'true', '1840', '1', '1', 'bone', 'a', '282', '10', 'bigsword', '8', '0.00000', '0', '0', '0', '325', '0', '114', '27000000', '2160', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '3022', '4', '20'), ('5647', 'Dark Legion\'s Edge - Critical Damage', 'rhand', 'true', '1320', '1', '1', 'fine_steel', 'a', '232', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '114', '27000000', '2160', 'true', 'true', 'true', 'true', '3067', '2', '0', '0', '0', '0', '0', '0'), ('5648', 'Dark Legion\'s Edge - Health', 'rhand', 'true', '1320', '1', '1', 'fine_steel', 'a', '232', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '114', '27000000', '2160', 'true', 'true', 'true', 'true', '3013', '3', '0', '0', '0', '0', '0', '0'), ('5649', 'Dark Legion\'s Edge - Rsk. Focus', 'rhand', 'true', '1320', '1', '1', 'fine_steel', 'a', '232', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '114', '27000000', '2160', 'true', 'true', 'true', 'true', '3071', '2', '0', '0', '0', '0', '0', '0'), ('5704', 'Keshanberk*Keshanberk', 'lrhand', 'true', '2080', '1', '1', 'fine_steel', 'a', '259', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '107', '18300000', '1464', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('5705', 'Keshanberk*Damascus', 'lrhand', 'true', '2080', '1', '1', 'fine_steel', 'a', '275', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '112', '24100000', '1928', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('5706', 'Damascus*Damascus', 'lrhand', 'true', '2080', '1', '1', 'fine_steel', 'a', '282', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '114', '27000000', '2160', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('5791', 'Tomb Guard A', 'lrhand', 'true', '2180', '2', '2', 'fine_steel', 'd', '78', '10', 'bigsword', '8', '0.00000', '0', '0', '0', '325', '0', '39', '967000', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('5792', 'Tomb Guard B', 'lrhand', 'true', '2180', '2', '2', 'fine_steel', 'd', '78', '10', 'bigsword', '8', '0.00000', '0', '0', '0', '325', '0', '39', '967000', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('5793', 'Tomb Savant A', 'rhand', 'true', '1380', '3', '3', 'oriharukon', 'c', '156', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '83', '6130000', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('5794', 'Tomb Savant B', 'rhand', 'true', '1380', '3', '3', 'oriharukon', 'c', '156', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '83', '6130000', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('5795', 'Tomb Guard A', 'lrhand', 'true', '2180', '2', '2', 'fine_steel', 'd', '78', '10', 'bigsword', '8', '0.00000', '0', '0', '0', '325', '0', '39', '967000', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('5796', 'Tomb Guard B', 'lrhand', 'true', '2180', '2', '2', 'fine_steel', 'd', '78', '10', 'bigsword', '8', '0.00000', '0', '0', '0', '325', '0', '39', '967000', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('5797', 'Tomb Savant A', 'rhand', 'true', '1380', '3', '3', 'oriharukon', 'c', '156', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '83', '6130000', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('5798', 'Tomb Savant B', 'rhand', 'true', '1380', '3', '3', 'oriharukon', 'c', '156', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '83', '6130000', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('5799', 'Nephilim Lord', 'lhand', 'true', '1320', '0', '0', 'leather', 'd', '0', '0', 'none', '0', '0.00000', '-8', '142', '20', '0', '0', '0', '78400', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('5800', 'Nephilim Lord', 'rhand', 'true', '1380', '3', '3', 'oriharukon', 'c', '156', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '83', '6130000', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('5801', 'Dusk', 'rhand', 'true', '1380', '3', '3', 'oriharukon', 'c', '156', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '83', '6130000', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('5802', 'Dawn', 'lhand', 'true', '1380', '3', '3', 'oriharukon', 'c', '156', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '83', '6130000', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('5817', 'Chrono Campana', 'lrhand', 'false', '0', '0', '0', 'steel', 'none', '1', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '1', '0', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('6307', 'Sword of Limit - Guidance', 'rhand', 'true', '1400', '3', '3', 'fine_steel', 'c', '139', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '76', '4300000', '1720', 'true', 'true', 'true', 'true', '3573', '1', '0', '0', '0', '0', '0', '0'), ('6308', 'Sword of Limit - Critical Drain', 'rhand', 'true', '1400', '3', '3', 'fine_steel', 'c', '139', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '76', '4300000', '1720', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '3022', '2', '10'), ('6309', 'Sword of Limit - Health', 'rhand', 'true', '1400', '3', '3', 'fine_steel', 'c', '139', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '76', '4300000', '1720', 'true', 'true', 'true', 'true', '3013', '1', '0', '0', '0', '0', '0', '0'), ('6310', 'Sword of Whispering Death - Empower', 'rhand', 'true', '920', '3', '3', 'fine_steel', 'c', '111', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '101', '4300000', '1720', 'true', 'true', 'true', 'true', '3072', '1', '0', '0', '0', '0', '0', '0'), ('6311', 'Sword of Whispering Death - Magic Power', 'rhand', 'true', '920', '3', '3', 'fine_steel', 'c', '111', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '101', '4300000', '1720', 'true', 'true', 'true', 'true', '3077', '1', '0', '0', '0', '0', '0', '0'), ('6312', 'Sword of Whispering Death - Magic Silence', 'rhand', 'true', '920', '3', '3', 'fine_steel', 'c', '111', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '101', '4300000', '1720', 'true', 'true', 'true', 'true', '0', '0', '3078', '2', '10', '0', '0', '0'), ('6313', 'Homunkulus\'s Sword - Acumen', 'rhand', 'true', '950', '3', '3', 'blood_steel', 'c', '111', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '101', '4300000', '1720', 'true', 'true', 'true', 'true', '3047', '1', '0', '0', '0', '0', '0', '0'), ('6314', 'Homunkulus\'s Sword - Conversion', 'rhand', 'true', '950', '3', '3', 'blood_steel', 'c', '111', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '101', '4300000', '1720', 'true', 'true', 'true', 'true', '3048', '1', '0', '0', '0', '0', '0', '0'), ('6315', 'Homunkulus\'s Sword - Magic Paralyze', 'rhand', 'true', '950', '3', '3', 'blood_steel', 'c', '111', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '101', '4300000', '1720', 'true', 'true', 'true', 'true', '0', '0', '3079', '1', '5', '0', '0', '0'), ('6347', 'Berserker Blade - Focus', 'lrhand', 'true', '1380', '3', '3', 'oriharukon', 'c', '190', '10', 'bigsword', '8', '0.00000', '0', '0', '0', '325', '0', '83', '6130000', '2452', 'true', 'true', 'true', 'true', '3010', '4', '0', '0', '0', '0', '0', '0'), ('6348', 'Berserker Blade - Critical Damage', 'lrhand', 'true', '1380', '3', '3', 'oriharukon', 'c', '190', '10', 'bigsword', '8', '0.00000', '0', '0', '0', '325', '0', '83', '6130000', '2452', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('6349', 'Berserker Blade - Haste', 'lrhand', 'true', '1380', '3', '3', 'oriharukon', 'c', '190', '10', 'bigsword', '8', '0.00000', '0', '0', '0', '325', '0', '83', '6130000', '2452', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('6354', 'Falchion - for Beginners', 'rhand', 'false', '1530', '2', '2', 'bronze', 'none', '31', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '21', '0', '0', 'false', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('6355', 'Mage Staff - for Beginners', 'lrhand', 'false', '1050', '2', '2', 'wood', 'none', '30', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '28', '0', '0', 'false', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('6356', 'Dark Elven Dagger - Rsk. Haste', 'rhand', 'true', '1050', '2', '2', 'fine_steel', 'c', '94', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '61', '2290000', '916', 'true', 'true', 'true', 'true', '3056', '2', '0', '0', '0', '0', '0', '0'), ('6357', 'Stiletto - Rsk. Haste', 'rhand', 'true', '1030', '2', '2', 'fine_steel', 'c', '107', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '68', '2870000', '1148', 'true', 'true', 'true', 'true', '3056', '2', '0', '0', '0', '0', '0', '0'), ('6358', 'Crystal Dagger - Critical Damage', 'rhand', 'true', '1000', '3', '3', 'crystal', 'c', '136', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '83', '6130000', '2452', 'true', 'true', 'true', 'true', '3043', '1', '0', '0', '0', '0', '0', '0'), ('6359', 'Demon Dagger - Critical Damage', 'rhand', 'true', '970', '1', '1', 'blood_steel', 'b', '170', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '99', '13100000', '1746', 'true', 'true', 'true', 'true', '3043', '2', '0', '0', '0', '0', '0', '0'), ('6364', 'Forgotten Blade', 'rhand', 'true', '1300', '1', '1', 'adamantaite', 's', '281', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '132', '48800000', '2440', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('6365', 'Basalt Battlehammer', 'rhand', 'true', '1570', '1', '1', 'adamantaite', 's', '281', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '132', '48800000', '2440', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('6366', 'Imperial Staff', 'lrhand', 'true', '910', '1', '1', 'adamantaite', 's', '274', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '175', '48800000', '2440', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('6367', 'Angel Slayer', 'rhand', 'true', '950', '1', '1', 'adamantaite', 's', '246', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '132', '48800000', '2440', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('6368', 'Shining Bow', 'lrhand', 'true', '1650', '1', '1', 'adamantaite', 's', '581', '5', 'bow', '12', '-3.00000', '0', '0', '0', '293', '11', '132', '48800000', '2440', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('6369', 'Dragon Hunter Axe', 'lrhand', 'true', '1820', '1', '1', 'adamantaite', 's', '342', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '132', '48800000', '2440', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('6370', 'Saint Spear', 'lrhand', 'true', '1800', '1', '1', 'adamantaite', 's', '281', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '132', '48800000', '2440', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('6371', 'Demon Splinter', 'lrhand', 'true', '1350', '1', '1', 'adamantaite', 's', '342', '5', 'dualfist', '4', '4.00000', '0', '0', '0', '325', '0', '132', '48800000', '2440', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('6372', 'Heaven\'s Divider', 'lrhand', 'true', '1380', '1', '1', 'adamantaite', 's', '342', '10', 'bigsword', '8', '0.00000', '0', '0', '0', '325', '0', '132', '48800000', '2440', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('6377', 'Imperial Crusader Shield', 'lhand', 'true', '1170', '0', '0', 'bone', 's', '0', '0', 'none', '0', '0.00000', '-8', '290', '20', '0', '0', '0', '3760000', '188', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('6529', 'Baby Duck Rod', 'lrhand', 'false', '1000', '0', '0', 'bone', 'none', '1', '1', 'rod', '0', '-3.00000', '0', '0', '0', '325', '0', '1', '30000', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('6530', 'Albatross Rod', 'lrhand', 'false', '1000', '0', '0', 'bone', 'd', '1', '1', 'rod', '0', '-3.00000', '0', '0', '0', '325', '0', '1', '100000', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('6531', 'Pelican Rod', 'lrhand', 'false', '1000', '0', '0', 'bone', 'c', '1', '1', 'rod', '0', '-3.00000', '0', '0', '0', '325', '0', '1', '400000', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('6532', 'KingFisher Rod', 'lrhand', 'false', '1000', '0', '0', 'bone', 'b', '1', '1', 'rod', '0', '-3.00000', '0', '0', '0', '325', '0', '1', '1200000', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('6533', 'Cygnus Pole', 'lrhand', 'false', '1000', '0', '0', 'bone', 'a', '1', '1', 'rod', '0', '-3.00000', '0', '0', '0', '325', '0', '1', '4000000', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('6534', 'Triton Pole', 'lrhand', 'false', '1000', '0', '0', 'bone', 's', '1', '1', 'rod', '0', '-3.00000', '0', '0', '0', '325', '0', '1', '10000000', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('6579', 'Arcana Mace', 'rhand', 'true', '1300', '1', '1', 'adamantaite', 's', '225', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '175', '48800000', '2440', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('6580', 'Tallum Blade*Dark Legion\'s Edge', 'lrhand', 'true', '2080', '1', '1', 'adamantaite', 's', '342', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '132', '48800000', '2440', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('6581', 'Forgotten Blade - Haste', 'rhand', 'true', '1300', '1', '1', 'adamantaite', 's', '281', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '132', '48800000', '2440', 'true', 'true', 'true', 'true', '3564', '1', '0', '0', '0', '0', '0', '0'), ('6582', 'Forgotten Blade - Health', 'rhand', 'true', '1300', '1', '1', 'adamantaite', 's', '281', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '132', '48800000', '2440', 'true', 'true', 'true', 'true', '3013', '4', '0', '0', '0', '0', '0', '0'), ('6583', 'Forgotten Blade - Focus', 'rhand', 'true', '1300', '1', '1', 'adamantaite', 's', '281', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '132', '48800000', '2440', 'true', 'true', 'true', 'true', '3566', '1', '0', '0', '0', '0', '0', '0'), ('6584', 'Basalt Battlehammer - HP Drain', 'rhand', 'true', '1570', '1', '1', 'adamantaite', 's', '281', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '132', '48800000', '2440', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '3022', '7', '20'), ('6585', 'Basalt Battlehammer - Health', 'rhand', 'true', '1570', '1', '1', 'adamantaite', 's', '281', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '132', '48800000', '2440', 'true', 'true', 'true', 'true', '3013', '1', '0', '0', '0', '0', '0', '0'), ('6586', 'Basalt Battlehammer - HP Regeneration', 'rhand', 'true', '1570', '1', '1', 'adamantaite', 's', '281', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '132', '48800000', '2440', 'true', 'true', 'true', 'true', '3569', '1', '0', '0', '0', '0', '0', '0'), ('6587', 'Imperial Staff - Empower', 'lrhand', 'true', '910', '1', '1', 'adamantaite', 's', '274', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '175', '48800000', '2440', 'true', 'true', 'true', 'true', '3575', '1', '0', '0', '0', '0', '0', '0'), ('6588', 'Imperial Staff - MP Regeneration', 'lrhand', 'true', '910', '1', '1', 'adamantaite', 's', '274', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '175', '48800000', '2440', 'true', 'true', 'true', 'true', '3576', '1', '0', '0', '0', '0', '0', '0'), ('6589', 'Imperial Staff - Magic Hold', 'lrhand', 'true', '910', '1', '1', 'adamantaite', 's', '274', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '175', '48800000', '2440', 'true', 'true', 'true', 'true', '0', '0', '3577', '1', '30', '0', '0', '0'), ('6590', 'Angel Slayer - Crt. Damage', 'rhand', 'true', '950', '1', '1', 'adamantaite', 's', '246', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '132', '48800000', '2440', 'true', 'true', 'true', 'true', '3572', '1', '0', '0', '0', '0', '0', '0'), ('6591', 'Angel Slayer - HP Drain', 'rhand', 'true', '950', '1', '1', 'adamantaite', 's', '246', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '132', '48800000', '2440', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '3022', '7', '20'), ('6592', 'Angel Slayer - Haste', 'rhand', 'true', '950', '1', '1', 'adamantaite', 's', '246', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '132', '48800000', '2440', 'true', 'true', 'true', 'true', '3564', '1', '0', '0', '0', '0', '0', '0'), ('6593', 'Shining Bow - Cheap Shot', 'lrhand', 'true', '1650', '1', '1', 'adamantaite', 's', '581', '5', 'bow', '12', '-3.00000', '0', '0', '0', '293', '11', '132', '48800000', '2440', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('6594', 'Shining Bow - Focus', 'lrhand', 'true', '1650', '1', '1', 'adamantaite', 's', '581', '5', 'bow', '12', '-3.00000', '0', '0', '0', '293', '11', '132', '48800000', '2440', 'true', 'true', 'true', 'true', '3567', '1', '0', '0', '0', '0', '0', '0'), ('6595', 'Shining Bow - Crt. Slow', 'lrhand', 'true', '1650', '1', '1', 'adamantaite', 's', '581', '5', 'bow', '12', '-3.00000', '0', '0', '0', '293', '11', '132', '48800000', '2440', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '3574', '1', '10'), ('6596', 'Dragon Hunter Axe - HP Regeneration', 'lrhand', 'true', '1820', '1', '1', 'adamantaite', 's', '342', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '132', '48800000', '2440', 'true', 'true', 'true', 'true', '3569', '1', '0', '0', '0', '0', '0', '0'), ('6597', 'Dragon Hunter Axe - Health', 'lrhand', 'true', '1820', '1', '1', 'adamantaite', 's', '342', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '132', '48800000', '2440', 'true', 'true', 'true', 'true', '3013', '1', '0', '0', '0', '0', '0', '0'), ('6598', 'Dragon Hunter Axe - HP Drain', 'lrhand', 'true', '1820', '1', '1', 'adamantaite', 's', '342', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '132', '48800000', '2440', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '3022', '7', '20'), ('6599', 'Saint Spear - Health', 'lrhand', 'true', '1800', '1', '1', 'adamantaite', 's', '281', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '132', '48800000', '2440', 'true', 'true', 'true', 'true', '3013', '4', '0', '0', '0', '0', '0', '0'), ('6600', 'Saint Spear - Guidance', 'lrhand', 'true', '1800', '1', '1', 'adamantaite', 's', '281', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '132', '48800000', '2440', 'true', 'true', 'true', 'true', '3602', '5', '0', '0', '0', '0', '0', '0'), ('6601', 'Saint Spear - Haste', 'lrhand', 'true', '1800', '1', '1', 'adamantaite', 's', '281', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '132', '48800000', '2440', 'true', 'true', 'true', 'true', '3564', '1', '0', '0', '0', '0', '0', '0'), ('6602', 'Demon Splinter - Focus', 'lrhand', 'true', '1350', '1', '1', 'adamantaite', 's', '342', '5', 'dualfist', '4', '4.00000', '0', '0', '0', '325', '0', '132', '48800000', '2440', 'true', 'true', 'true', 'true', '3565', '1', '0', '0', '0', '0', '0', '0'), ('6603', 'Demon Splinter - Health', 'lrhand', 'true', '1350', '1', '1', 'adamantaite', 's', '342', '5', 'dualfist', '4', '4.00000', '0', '0', '0', '325', '0', '132', '48800000', '2440', 'true', 'true', 'true', 'true', '3013', '4', '0', '0', '0', '0', '0', '0'), ('6604', 'Demon Splinter - Crt. Stun', 'lrhand', 'true', '1350', '1', '1', 'adamantaite', 's', '342', '5', 'dualfist', '4', '4.00000', '0', '0', '0', '325', '0', '132', '48800000', '2440', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '3070', '1', '25'), ('6605', 'Heavens Divider - Haste', 'lrhand', 'true', '1380', '1', '1', 'adamantaite', 's', '342', '10', 'bigsword', '8', '0.00000', '0', '0', '0', '325', '0', '132', '48800000', '2440', 'true', 'true', 'true', 'true', '3601', '9', '0', '0', '0', '0', '0', '0'), ('6606', 'Heavens Divider - Health', 'lrhand', 'true', '1380', '1', '1', 'adamantaite', 's', '342', '10', 'bigsword', '8', '0.00000', '0', '0', '0', '325', '0', '132', '48800000', '2440', 'true', 'true', 'true', 'true', '3013', '4', '0', '0', '0', '0', '0', '0'), ('6607', 'Heavens Divider - Focus', 'lrhand', 'true', '1380', '1', '1', 'adamantaite', 's', '342', '10', 'bigsword', '8', '0.00000', '0', '0', '0', '325', '0', '132', '48800000', '2440', 'true', 'true', 'true', 'true', '3566', '1', '0', '0', '0', '0', '0', '0'), ('6608', 'Arcana Mace - Acumen', 'rhand', 'true', '1300', '1', '1', 'adamantaite', 's', '225', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '175', '48800000', '2440', 'true', 'true', 'true', 'true', '3047', '2', '0', '0', '0', '0', '0', '0'), ('6609', 'Arcana Mace - MP Regeneration', 'rhand', 'true', '1300', '1', '1', 'adamantaite', 's', '225', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '175', '48800000', '2440', 'true', 'true', 'true', 'true', '3576', '1', '0', '0', '0', '0', '0', '0'), ('6610', 'Arcana Mace - Mana Up', 'rhand', 'true', '1300', '1', '1', 'adamantaite', 's', '225', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '175', '48800000', '2440', 'true', 'true', 'true', 'true', '3014', '2', '0', '0', '0', '0', '0', '0'), ('6611', 'Infinity Blade', 'rhand', 'false', '1300', '1', '1', 'adamantaite', 's', '297', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '137', '57000000', '2850', 'false', 'false', 'false', 'false', '3578', '1', '0', '0', '0', '3579', '1', '4'), ('6612', 'Infinity Cleaver', 'lrhand', 'false', '1300', '1', '1', 'adamantaite', 's', '361', '10', 'bigsword', '8', '0.00000', '0', '0', '0', '325', '0', '137', '57000000', '2850', 'false', 'false', 'false', 'false', '3582', '1', '0', '0', '0', '0', '0', '0'), ('6613', 'Infinity Axe', 'rhand', 'false', '1300', '1', '1', 'adamantaite', 's', '297', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '137', '57000000', '2850', 'false', 'false', 'false', 'false', '3580', '1', '0', '0', '0', '3581', '1', '4'), ('6614', 'Infinity Rod', 'rhand', 'false', '1300', '1', '1', 'adamantaite', 's', '238', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '182', '57000000', '2850', 'false', 'false', 'false', 'false', '3597', '1', '3598', '1', '15', '0', '0', '0'), ('6615', 'Infinity Crusher', 'lrhand', 'false', '1300', '1', '1', 'adamantaite', 's', '361', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '137', '57000000', '2850', 'false', 'false', 'false', 'false', '3583', '1', '0', '0', '0', '3584', '1', '5'), ('6616', 'Infinity Scepter', 'lrhand', 'false', '1300', '1', '1', 'adamantaite', 's', '290', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '182', '57000000', '2850', 'false', 'false', 'false', 'false', '3595', '1', '3596', '1', '15', '0', '0', '0'), ('6617', 'Infinity Stinger', 'rhand', 'false', '1300', '1', '1', 'adamantaite', 's', '260', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '137', '57000000', '2850', 'false', 'false', 'false', 'false', '3589', '1', '0', '0', '0', '3590', '1', '5'), ('6618', 'Infinity Fang', 'lrhand', 'false', '1300', '1', '1', 'adamantaite', 's', '361', '5', 'dualfist', '4', '4.00000', '0', '0', '0', '325', '0', '137', '57000000', '2850', 'false', 'false', 'false', 'false', '3587', '1', '0', '0', '0', '3588', '1', '25'), ('6619', 'Infinity Bow', 'lrhand', 'false', '1300', '1', '1', 'adamantaite', 's', '614', '5', 'bow', '12', '-3.00000', '0', '0', '0', '293', '11', '137', '57000000', '2850', 'false', 'false', 'false', 'false', '3593', '1', '0', '0', '0', '3594', '1', '7'), ('6620', 'Infinity Wing', 'lrhand', 'false', '1300', '1', '1', 'adamantaite', 's', '361', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '137', '57000000', '2850', 'false', 'false', 'false', 'false', '3585', '1', '0', '0', '0', '3586', '1', '7'), ('6621', 'Infinity Spear', 'lrhand', 'false', '1300', '1', '1', 'adamantaite', 's', '297', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '137', '57000000', '2850', 'false', 'false', 'false', 'false', '3591', '1', '0', '0', '0', '3592', '1', '5'), ('6678', 'Sealed Imperial Crusader Shield', 'lhand', 'true', '1170', '0', '0', 'bone', 's', '0', '0', 'none', '0', '0.00000', '-8', '276', '20', '0', '0', '0', '3760000', '188', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('6715', 'Monster Only(Silenos Archer)', 'lrhand', 'false', '1950', '1', '1', 'wood', 'none', '16', '5', 'bow', '12', '-3.00000', '0', '0', '0', '293', '1', '6', '768', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('6716', 'Monster Only(Silenos Shaman)', 'lrhand', 'false', '1080', '1', '1', 'wood', 'none', '11', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '12', '12500', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('6717', 'Monster Only(Einhasad Warrior)', 'rhand', 'false', '1560', '2', '2', 'fine_steel', 'none', '24', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '17', '136000', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('6718', 'Monster Only(Einhasad Shaman)', 'lrhand', 'false', '1560', '2', '2', 'adamantaite', 'none', '24', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '17', '136000', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('6719', 'Monster Only(Ketra Orc Chieftain)', 'lrhand', 'false', '990', '3', '3', 'blood_steel', 'c', '141', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '104', '4780000', '1912', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('6720', 'Monster Only(Shadow of Halisha)', 'lrhand', 'false', '1950', '1', '1', 'wood', 'none', '16', '5', 'bow', '12', '-3.00000', '0', '0', '0', '293', '1', '6', '768', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('6721', 'Monster Only(Shield of Imperial Warlord Zombie)', 'lhand', 'false', '1430', '0', '0', 'leather', 'none', '0', '0', 'none', '0', '0.00000', '-8', '47', '20', '0', '0', '0', '39', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('6722', 'Monster Only(Ahrimanes)', 'lrhand', 'false', '2080', '1', '1', 'fine_steel', 'b', '236', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '99', '13100000', '1746', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('6723', 'Monster Only(Vampire Warrior)', 'lrhand', 'false', '2090', '3', '3', 'fine_steel', 'd', '112', '10', 'bigsword', '8', '0.00000', '0', '0', '0', '325', '0', '54', '1800000', '3272', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('6902', 'Pledge Shield', 'lhand', 'true', '1380', '0', '0', 'bone', 'none', '0', '0', 'none', '0', '0.00000', '-8', '90', '20', '0', '0', '0', '12900', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('6917', 'Monster Only (Poison Sting)', 'rhand', 'false', '6', '0', '0', 'wood', 'none', '0', '0', 'fist', '0', '0.00000', '0', '0', '0', '0', '0', '0', '2', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('6918', 'Monster Only (Shield of Silenos)', 'lhand', 'false', '1380', '0', '0', 'bone', 'none', '0', '0', 'none', '0', '0.00000', '-8', '90', '20', '0', '0', '0', '12900', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('6919', 'Monster Only (Shield of Ketra Orc)', 'lhand', 'false', '1320', '0', '0', 'fine_steel', 'none', '0', '0', 'none', '0', '0.00000', '-8', '142', '20', '0', '0', '0', '78400', '142', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('7014', 'Monster Only (Shield of Dark Dragon)', 'lhand', 'false', '4800', '0', '0', 'damascus', 'none', '0', '0', 'none', '0', '0.00000', '-8', '230', '20', '0', '0', '0', '845000', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('7015', 'Shield of Castle Pledge', 'lhand', 'true', '1380', '0', '0', 'bone', 'none', '0', '0', 'none', '0', '0.00000', '-8', '90', '20', '0', '0', '0', '12900', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('7058', 'Chrono Darbuka', 'lrhand', 'false', '0', '0', '0', 'steel', 'none', '1', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '1', '0', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('7560', 'Monster Only (Fishing Rod)', 'lrhand', 'false', '1000', '0', '0', 'bone', 'none', '1', '1', 'rod', '0', '-3.00000', '0', '0', '0', '325', '0', '1', '30000', '0', 'false', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('7575', 'Draconic Bow', 'lrhand', 'true', '1650', '1', '1', 'adamantaite', 's', '581', '5', 'bow', '12', '-3.00000', '0', '0', '0', '293', '11', '132', '48800000', '2440', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('7576', 'Draconic Bow - Cheap Shot', 'lrhand', 'true', '1650', '1', '1', 'adamantaite', 's', '581', '5', 'bow', '12', '-3.00000', '0', '0', '0', '293', '11', '132', '48800000', '2440', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('7577', 'Draconic Bow - Focus', 'lrhand', 'true', '1650', '1', '1', 'adamantaite', 's', '581', '5', 'bow', '12', '-3.00000', '0', '0', '0', '293', '11', '132', '48800000', '2440', 'true', 'true', 'true', 'true', '3567', '2', '0', '0', '0', '0', '0', '0'), ('7578', 'Draconic Bow - Critical Slow', 'lrhand', 'true', '1650', '1', '1', 'adamantaite', 's', '581', '5', 'bow', '12', '-3.00000', '0', '0', '0', '293', '11', '132', '48800000', '2440', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '3574', '1', '10'), ('7701', 'Stick of Faith - Mana Up', 'rhand', 'true', '1160', '2', '2', 'wood', 'c', '85', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '81', '2290000', '916', 'true', 'true', 'true', 'true', '3014', '1', '0', '0', '0', '0', '0', '0'), ('7702', 'Stick of Faith - Magic Hold', 'rhand', 'true', '1160', '2', '2', 'wood', 'c', '85', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '81', '2290000', '916', 'true', 'true', 'true', 'true', '0', '0', '3577', '1', '10', '0', '0', '0'), ('7703', 'Stick of Faith - Magic Shield', 'rhand', 'true', '1160', '2', '2', 'wood', 'c', '85', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '81', '2290000', '916', 'true', 'true', 'true', 'true', '0', '0', '1035', '2', '50', '0', '0', '0'), ('7704', 'Stick of Eternity - Empower', 'rhand', 'true', '1130', '3', '3', 'wood', 'c', '111', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '101', '4300000', '1720', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('7705', 'Stick of Eternity - Rsk.,Evasion', 'rhand', 'true', '1130', '3', '3', 'wood', 'c', '111', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '101', '4300000', '1720', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('7706', 'Stick of Eternity - Blessed Body', 'rhand', 'true', '1130', '3', '3', 'wood', 'c', '111', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '101', '4300000', '1720', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('7707', 'Nirvana Axe - Magic Power', 'rhand', 'true', '1150', '3', '3', 'fine_steel', 'c', '111', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '101', '4300000', '1720', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('7708', 'Nirvana Axe - Magic Poison', 'rhand', 'true', '1150', '3', '3', 'fine_steel', 'c', '111', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '101', '4300000', '1720', 'true', 'true', 'true', 'true', '0', '0', '1168', '6', '7', '0', '0', '0'), ('7709', 'Nirvana Axe - Magic Weakness', 'rhand', 'true', '1150', '3', '3', 'fine_steel', 'c', '111', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '101', '4300000', '1720', 'true', 'true', 'true', 'true', '0', '0', '1164', '6', '7', '0', '0', '0'), ('7710', 'Club of Nature - Acumen', 'rhand', 'true', '1100', '3', '3', 'wood', 'c', '111', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '101', '4300000', '1720', 'true', 'true', 'true', 'true', '3047', '1', '0', '0', '0', '0', '0', '0'), ('7711', 'Club of Nature - Magic Mental Shield', 'rhand', 'true', '1100', '3', '3', 'wood', 'c', '111', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '101', '4300000', '1720', 'true', 'true', 'true', 'true', '0', '0', '1035', '3', '50', '0', '0', '0'), ('7712', 'Club of Nature - Magic Hold', 'rhand', 'true', '1100', '3', '3', 'wood', 'c', '111', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '101', '4300000', '1720', 'true', 'true', 'true', 'true', '0', '0', '3577', '1', '10', '0', '0', '0'), ('7713', 'Mace of The Underworld - Mana Up', 'rhand', 'true', '1090', '3', '3', 'fine_steel', 'c', '111', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '101', '4300000', '1720', 'true', 'true', 'true', 'true', '3014', '1', '0', '0', '0', '0', '0', '0'), ('7714', 'Mace of The Underworld - Magic Silence', 'rhand', 'true', '1090', '3', '3', 'fine_steel', 'c', '111', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '101', '4300000', '1720', 'true', 'true', 'true', 'true', '0', '0', '3078', '2', '10', '0', '0', '0'), ('7715', 'Mace of The Underworld - Conversion', 'rhand', 'true', '1090', '3', '3', 'fine_steel', 'c', '111', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '101', '4300000', '1720', 'true', 'true', 'true', 'true', '3048', '1', '0', '0', '0', '0', '0', '0'), ('7716', 'Inferno Staff - Acumen', 'lrhand', 'true', '1000', '3', '3', 'wood', 'c', '135', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '101', '4300000', '1720', 'true', 'true', 'true', 'true', '3047', '1', '0', '0', '0', '0', '0', '0'), ('7717', 'Inferno Staff - Magic Silence', 'lrhand', 'true', '1000', '3', '3', 'wood', 'c', '135', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '101', '4300000', '1720', 'true', 'true', 'true', 'true', '0', '0', '3078', '2', '10', '0', '0', '0'), ('7718', 'Inferno Staff - Magic Paralyze', 'lrhand', 'true', '1000', '3', '3', 'wood', 'c', '135', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '101', '4300000', '1720', 'true', 'true', 'true', 'true', '0', '0', '3079', '1', '5', '0', '0', '0'), ('7719', 'Poleaxe - Critical Stun', 'lrhand', 'true', '2010', '3', '3', 'bronze', 'c', '139', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '76', '4300000', '1720', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '3070', '1', '25'), ('7720', 'Poleaxe - Towering Blow', 'lrhand', 'true', '2010', '3', '3', 'bronze', 'c', '139', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '76', '4300000', '1720', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('7721', 'Poleaxe - Wide Blow', 'lrhand', 'true', '2010', '3', '3', 'bronze', 'c', '139', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '76', '4300000', '1720', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0'), ('7722', 'Sword of Valhalla - Acumen', 'rhand', 'true', '900', '1', '1', 'oriharukon', 'b', '140', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '122', '8680000', '1157', 'true', 'true', 'true', 'true', '3047', '1', '0', '0', '0', '0', '0', '0'), ('7723', 'Sword of Valhalla - Magic Weakness', 'rhand', 'true', '900', '1', '1', 'oriharukon', 'b', '140', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '122', '8680000', '1157', 'true', 'true', 'true', 'true', '0', '0', '1164', '6', '7', '0', '0', '0'), ('7724', 'Sword of Valhalla - Magic Regeneration', 'rhand', 'true', '900', '1', '1', 'oriharukon', 'b', '140', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '122', '8680000', '1157', 'true', 'true', 'true', 'true', '0', '0', '1044', '3', '30', '0', '0', '0'), ('7810', 'Soulfire Dirk - Mana Up', 'rhand', 'true', '750', '2', '2', 'fine_steel', 'c', '86', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '91', '2870000', '1148', 'true', 'true', 'true', 'true', '3014', '1', '0', '0', '0', '0', '0', '0'), ('7811', 'Soulfire Dirk - Magic Hold', 'rhand', 'true', '750', '2', '2', 'fine_steel', 'c', '86', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '91', '2870000', '1148', 'true', 'true', 'true', 'true', '0', '0', '3577', '1', '10', '0', '0', '0'), ('7812', 'Soulfire Dirk - Magic Silence', 'rhand', 'true', '750', '2', '2', 'fine_steel', 'c', '86', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '91', '2870000', '1148', 'true', 'true', 'true', 'true', '0', '0', '3078', '2', '10', '0', '0', '0'), ('7813', 'Hell Knife - Magic Regeneration', 'rhand', 'true', '740', '1', '1', 'blood_steel', 'b', '122', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '122', '8680000', '1157', 'true', 'true', 'true', 'true', '0', '0', '1044', '3', '30', '0', '0', '0'), ('7814', 'Hell Knife - Mental Shield', 'rhand', 'true', '740', '1', '1', 'blood_steel', 'b', '122', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '122', '8680000', '1157', 'true', 'true', 'true', 'true', '0', '0', '1035', '3', '50', '0', '0', '0'), ('7815', 'Hell Knife - Magic Weakness', 'rhand', 'true', '740', '1', '1', 'blood_steel', 'b', '122', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '122', '8680000', '1157', 'true', 'true', 'true', 'true', '0', '0', '1164', '3', '7', '0', '0', '0'), ('7816', 'Apprentice Adventurer\'s Staff', 'lrhand', 'false', '1070', '2', '2', 'wood', 'none', '23', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '22', '0', '0', 'false', 'false', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0'), ('7817', 'Apprentice Adventurer\'s Bone Club', 'rhand', 'false', '1850', '2', '2', 'fine_steel', 'none', '24', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '17', '0', '0', 'false', 'false', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0'), ('7818', 'Apprentice Adventurer\'s Knife', 'rhand', 'false', '1120', '2', '2', 'mithril', 'none', '21', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '17', '0', '0', 'false', 'false', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0'), ('7819', 'Apprentice Adventurer\'s Cestus', 'lrhand', 'false', '1570', '2', '2', 'steel', 'none', '29', '5', 'dualfist', '4', '4.00000', '0', '0', '0', '325', '0', '17', '0', '0', 'false', 'false', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0'), ('7820', 'Apprentice Adventurer\'s Bow', 'lrhand', 'false', '1900', '7', '2', 'wood', 'none', '49', '5', 'bow', '12', '-3.00000', '0', '0', '0', '293', '3', '17', '0', '0', 'false', 'false', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0'), ('7821', 'Apprentice Adventurer\'s Long Sword', 'rhand', 'false', '1560', '2', '2', 'fine_steel', 'none', '24', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '17', '0', '0', 'false', 'false', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0'), ('7822', 'Traveler\'s Mace', 'rhand', 'false', '1300', '2', '2', 'steel', 'd', '41', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '43', '0', '0', 'false', 'false', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0'), ('7823', 'Traveler\'s Dark Elven Bow', 'lrhand', 'false', '1830', '6', '2', 'steel', 'd', '105', '5', 'bow', '12', '-3.00000', '0', '0', '0', '293', '4', '32', '0', '0', 'false', 'false', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0'), ('7824', 'Traveler\'s Long Bow', 'lrhand', 'false', '1830', '6', '2', 'steel', 'd', '105', '5', 'bow', '12', '-3.00000', '0', '0', '0', '293', '4', '32', '0', '0', 'false', 'false', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0'), ('7825', 'Traveler\'s Staff', 'lrhand', 'false', '1040', '2', '2', 'wood', 'd', '50', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '43', '0', '0', 'false', 'false', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0'), ('7826', 'Traveler\'s Bastard Sword', 'rhand', 'false', '1510', '2', '2', 'fine_steel', 'd', '51', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '32', '0', '0', 'false', 'false', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0'), ('7827', 'Traveler\'s Wand', 'rhand', 'false', '570', '2', '2', 'steel', 'd', '41', '10', 'etc', '8', '0.00000', '0', '0', '0', '379', '0', '43', '0', '0', 'false', 'false', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0'), ('7828', 'Traveler\'s Jamadhr', 'lrhand', 'false', '1550', '2', '2', 'steel', 'd', '62', '5', 'dualfist', '4', '4.00000', '0', '0', '0', '325', '0', '32', '0', '0', 'false', 'false', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0'), ('7829', 'Traveler\'s Tomahawk', 'rhand', 'false', '1780', '2', '2', 'bronze', 'd', '51', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '32', '0', '0', 'false', 'false', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0'), ('7830', 'Traveler\'s Poniard Dagger', 'rhand', 'false', '1090', '2', '2', 'steel', 'd', '45', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '32', '0', '0', 'false', 'false', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0'), ('7831', 'Traveler\'s Pike', 'lrhand', 'false', '2090', '2', '2', 'steel', 'd', '51', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '32', '0', '0', 'false', 'false', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0'), ('7834', 'Art of Battle Axe', 'rhand', 'true', '1570', '1', '1', 'chrysolite', 'b', '194', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '99', '13100000', '1746', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0');