Guest User

L2Icons for L2JFrozen by Tessa ^^

a guest
Dec 13th, 2014
480
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
SQL 404.48 KB | None | 0 0
  1. -- ----------------------------
  2. -- Table structure for `weapon`
  3. -- ----------------------------
  4. DROP TABLE IF EXISTS `weapon`;
  5. CREATE TABLE `weapon` (
  6.   `item_id` DECIMAL(11,0) NOT NULL DEFAULT '0',
  7.   `name` VARCHAR(70) DEFAULT NULL,
  8.   `bodypart` VARCHAR(15) DEFAULT NULL,
  9.   `crystallizable` VARCHAR(5) DEFAULT NULL,
  10.   `weight` DECIMAL(4,0) DEFAULT NULL,
  11.   `soulshots` DECIMAL(2,0) DEFAULT NULL,
  12.   `spiritshots` DECIMAL(1,0) DEFAULT NULL,
  13.   `crystal_type` enum('none','d','c','b','a','s') NOT NULL DEFAULT 'none',
  14.   `p_dam` DECIMAL(5,0) DEFAULT NULL,
  15.   `rnd_dam` DECIMAL(2,0) DEFAULT NULL,
  16.   `weaponType` VARCHAR(8) DEFAULT NULL,
  17.   `critical` DECIMAL(2,0) DEFAULT NULL,
  18.   `hit_modify` DECIMAL(6,5) DEFAULT NULL,
  19.   `avoid_modify` DECIMAL(2,0) DEFAULT NULL,
  20.   `shield_def` DECIMAL(3,0) DEFAULT NULL,
  21.   `shield_def_rate` DECIMAL(2,0) DEFAULT NULL,
  22.   `atk_speed` DECIMAL(3,0) DEFAULT NULL,
  23.   `mp_consume` DECIMAL(2,0) DEFAULT NULL,
  24.   `m_dam` DECIMAL(3,0) DEFAULT NULL,
  25.   `duration` DECIMAL(3,0) DEFAULT NULL,
  26.   `price` DECIMAL(11,0) DEFAULT NULL,
  27.   `crystal_count` INT(4) DEFAULT NULL,
  28.   `sellable` VARCHAR(5) DEFAULT NULL,
  29.   `dropable` VARCHAR(5) DEFAULT NULL,
  30.   `destroyable` VARCHAR(5) DEFAULT NULL,
  31.   `tradeable` VARCHAR(5) DEFAULT NULL,
  32.   `item_skill_id` DECIMAL(11,0) NOT NULL DEFAULT '0',
  33.   `item_skill_lvl` DECIMAL(11,0) NOT NULL DEFAULT '0',
  34.   `enchant4_skill_id` DECIMAL(11,0) NOT NULL DEFAULT '0',
  35.   `enchant4_skill_lvl` DECIMAL(11,0) NOT NULL DEFAULT '0',
  36.   `onCast_skill_id` DECIMAL(11,0) NOT NULL DEFAULT '0',
  37.   `onCast_skill_lvl` DECIMAL(11,0) NOT NULL DEFAULT '0',
  38.   `onCast_skill_chance` DECIMAL(11,0) NOT NULL DEFAULT '0',
  39.   `onCrit_skill_id` DECIMAL(11,0) NOT NULL DEFAULT '0',
  40.   `onCrit_skill_lvl` DECIMAL(11,0) NOT NULL DEFAULT '0',
  41.   `onCrit_skill_chance` DECIMAL(11,0) NOT NULL DEFAULT '0',
  42.   `icon` VARCHAR(100) DEFAULT 'ICON',
  43.   PRIMARY KEY (`item_id`)
  44. ) ENGINE=MyISAM DEFAULT CHARSET=latin1;
  45.  
  46. -- ----------------------------
  47. -- Records of weapon
  48. -- ----------------------------
  49. INSERT INTO `weapon` VALUES ('1', 'Short Sword', 'rhand', 'false', '1600', '1', '1', 'none', '8', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '6', '-1', '768', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_small_sword_i00');
  50. INSERT INTO `weapon` VALUES ('2', 'Long Sword', 'rhand', 'false', '1560', '2', '2', 'none', '24', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '17', '-1', '136000', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_long_sword_i00');
  51. INSERT INTO `weapon` VALUES ('3', 'Broadsword', 'rhand', 'false', '1590', '1', '1', 'none', '11', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '9', '-1', '12500', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_broad_sword_i00');
  52. INSERT INTO `weapon` VALUES ('4', 'Club', 'rhand', 'false', '1870', '1', '1', 'none', '8', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '6', '-1', '768', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_club_i00');
  53. INSERT INTO `weapon` VALUES ('5', 'Mace', 'rhand', 'false', '1880', '1', '1', 'none', '11', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '9', '-1', '12500', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_mace_i00');
  54. INSERT INTO `weapon` VALUES ('6', 'Apprentice\'s Wand', 'rhand', 'false', '1350', '1', '1', 'none', '5', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '7', '-1', '138', '0', 'false', 'false', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_apprentices_wand_i00');
  55. INSERT INTO `weapon` VALUES ('7', 'Apprentice\'s Rod', 'rhand', 'false', '1330', '1', '1', 'none', '6', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '8', '-1', '768', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_apprentices_rod_i00');
  56. INSERT INTO `weapon` VALUES ('8', 'Willow Staff', 'lrhand', 'false', '1080', '1', '1', 'none', '11', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '12', '-1', '12500', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_willow_staff_i00');
  57. INSERT INTO `weapon` VALUES ('9', 'Cedar Staff', 'lrhand', 'false', '1090', '2', '2', 'none', '16', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '16', '-1', '54100', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_cedar_staff_i00');
  58. INSERT INTO `weapon` VALUES ('10', 'Dagger', 'rhand', 'false', '1160', '1', '1', 'none', '5', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '5', '-1', '138', '0', 'false', 'false', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dagger_i00');
  59. INSERT INTO `weapon` VALUES ('11', 'Bone Dagger', 'rhand', 'false', '1150', '1', '1', 'none', '7', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '6', '-1', '768', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_bone_dagger_i00');
  60. INSERT INTO `weapon` VALUES ('12', 'Knife', 'rhand', 'false', '1140', '1', '1', 'none', '10', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '9', '-1', '12500', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_knife_i00');
  61. INSERT INTO `weapon` VALUES ('13', 'Short Bow', 'lrhand', 'false', '1950', '1', '1', 'none', '16', '5', 'bow', '12', '-3.00000', '0', '0', '0', '293', '1', '6', '-1', '768', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_short_bow_i00');
  62. INSERT INTO `weapon` VALUES ('14', 'Bow', 'lrhand', 'false', '1930', '1', '1', 'none', '23', '5', 'bow', '12', '-3.00000', '0', '0', '0', '293', '1', '9', '-1', '12500', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_bow_i00');
  63. INSERT INTO `weapon` VALUES ('15', 'Short Spear', 'lrhand', 'false', '2140', '2', '2', 'none', '24', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '17', '-1', '136000', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_short_spear_i00');
  64. INSERT INTO `weapon` VALUES ('16', 'Long Spear', 'lrhand', 'false', '2120', '2', '2', 'none', '31', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '21', '-1', '244000', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_long_spear_i00');
  65. INSERT INTO `weapon` VALUES ('18', 'Leather Shield', 'lhand', 'false', '1430', '0', '0', 'none', '0', '0', 'none', '0', '0.00000', '-8', '47', '20', '0', '0', '0', '-1', '39', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.shield_leather_shield_i00');
  66. INSERT INTO `weapon` VALUES ('19', 'Small Shield', 'lhand', 'false', '1420', '0', '0', 'none', '0', '0', 'none', '0', '0.00000', '-8', '56', '20', '0', '0', '0', '-1', '638', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.shield_small_shield_i00');
  67. INSERT INTO `weapon` VALUES ('20', 'Buckler', 'lhand', 'false', '1410', '0', '0', 'none', '0', '0', 'none', '0', '0.00000', '-8', '67', '20', '0', '0', '0', '-1', '2780', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.shield_buckler_i00');
  68. INSERT INTO `weapon` VALUES ('66', 'Gladius', 'rhand', 'false', '1570', '2', '2', 'none', '17', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '12', '-1', '54100', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_gladius_i00');
  69. INSERT INTO `weapon` VALUES ('67', 'Orcish Sword', 'rhand', 'false', '1570', '2', '2', 'none', '17', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '12', '-1', '54100', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_orcish_sword_i00');
  70. INSERT INTO `weapon` VALUES ('68', 'Falchion', 'rhand', 'false', '1530', '2', '2', 'none', '31', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '21', '-1', '244000', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_falchion_i00');
  71. INSERT INTO `weapon` VALUES ('69', 'Bastard Sword', 'rhand', 'true', '1510', '2', '2', 'd', '51', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '32', '-1', '644000', '1170', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_bastard_sword_i00');
  72. INSERT INTO `weapon` VALUES ('70', 'Claymore', 'lrhand', 'true', '2090', '3', '3', 'd', '112', '10', 'bigsword', '8', '0.00000', '0', '0', '0', '325', '0', '54', '-1', '1800000', '3272', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_claymore_i00');
  73. INSERT INTO `weapon` VALUES ('71', 'Flamberge', 'lrhand', 'true', '2010', '2', '2', 'c', '130', '10', 'bigsword', '8', '0.00000', '0', '0', '0', '325', '0', '61', '-1', '2290000', '916', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_flamberge_i00');
  74. INSERT INTO `weapon` VALUES ('72', 'Stormbringer', 'rhand', 'true', '1430', '2', '2', 'c', '107', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '61', '-1', '2290000', '916', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_stormbringer_i00');
  75. INSERT INTO `weapon` VALUES ('73', 'Shamshir', 'rhand', 'true', '1420', '2', '2', 'c', '122', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '68', '-1', '2870000', '1148', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_shamshir_i00');
  76. INSERT INTO `weapon` VALUES ('74', 'Katana', 'rhand', 'true', '1420', '2', '2', 'c', '122', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '68', '-1', '2870000', '1148', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_katana_i00');
  77. INSERT INTO `weapon` VALUES ('75', 'Caliburs', 'rhand', 'true', '1400', '3', '3', 'c', '139', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '76', '-1', '4300000', '1720', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_caliburs_i00');
  78. INSERT INTO `weapon` VALUES ('76', 'Sword of Delusion', 'rhand', 'true', '1400', '3', '3', 'c', '139', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '76', '-1', '4300000', '1720', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_sword_of_delusion_i00');
  79. INSERT INTO `weapon` VALUES ('77', 'Tsurugi', 'rhand', 'true', '1400', '3', '3', 'c', '139', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '76', '-1', '4300000', '1720', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_tsurugi_i00');
  80. INSERT INTO `weapon` VALUES ('78', 'Great Sword', 'lrhand', 'true', '1930', '1', '1', 'b', '213', '10', 'bigsword', '8', '0.00000', '0', '0', '0', '325', '0', '91', '-1', '8680000', '1157', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_great_sword_i00');
  81. INSERT INTO `weapon` VALUES ('79', 'Sword of Damascus', 'rhand', 'true', '1350', '1', '1', 'b', '194', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '99', '-1', '13100000', '1746', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_sword_of_damascus_i00');
  82. INSERT INTO `weapon` VALUES ('80', 'Tallum Blade', 'rhand', 'true', '1330', '1', '1', 'a', '213', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '107', '-1', '18300000', '1464', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_tallum_blade_i00');
  83. INSERT INTO `weapon` VALUES ('81', 'Dragon Slayer', 'lrhand', 'true', '1840', '1', '1', 'a', '282', '10', 'bigsword', '8', '0.00000', '0', '0', '0', '325', '0', '114', '-1', '27000000', '2160', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dragon_slayer_i00');
  84. INSERT INTO `weapon` VALUES ('82', 'God\'s Blade', 'rhand', 'true', '1300', '1', '1', 's', '257', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '124', '-1', '38000000', '1900', 'false', 'false', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_forgotten_blade_i00');
  85. INSERT INTO `weapon` VALUES ('83', 'Sword of Magic', 'rhand', 'true', '970', '2', '2', 'd', '43', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '45', '-1', '716000', '1301', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_sword_of_magic_i00');
  86. INSERT INTO `weapon` VALUES ('84', 'Homunkulus\'s Sword', 'rhand', 'true', '950', '3', '3', 'c', '111', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '101', '-1', '4300000', '1720', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_homunkuluss_sword_i00');
  87. INSERT INTO `weapon` VALUES ('85', 'Phantom Sword', 'rhand', 'true', '860', '1', '1', 'a', '170', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '143', '-1', '18300000', '1464', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_phantom_sword_i00');
  88. INSERT INTO `weapon` VALUES ('86', 'Tomahawk', 'rhand', 'true', '1780', '2', '2', 'd', '51', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '32', '-1', '644000', '1170', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_tomahawk_i00');
  89. INSERT INTO `weapon` VALUES ('87', 'Iron Hammer', 'rhand', 'false', '1850', '2', '2', 'none', '31', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '21', '-1', '244000', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_iron_hammer_i00');
  90. INSERT INTO `weapon` VALUES ('88', 'Morning Star', 'rhand', 'true', '1720', '3', '3', 'd', '79', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '47', '-1', '1400000', '2545', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_morning_star_i00');
  91. INSERT INTO `weapon` VALUES ('89', 'Big Hammer', 'rhand', 'true', '1710', '2', '2', 'c', '107', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '61', '-1', '2290000', '916', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_big_hammer_i00');
  92. INSERT INTO `weapon` VALUES ('90', 'Goat Head Staff', 'lrhand', 'true', '1000', '3', '3', 'd', '77', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '63', '-1', '1400000', '2545', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_goathead_staff_i00');
  93. INSERT INTO `weapon` VALUES ('91', 'Heavy War Axe', 'rhand', 'true', '1620', '1', '1', 'b', '175', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '91', '-1', '8680000', '1157', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_heavy_war_axe_i00');
  94. INSERT INTO `weapon` VALUES ('92', 'Sprite\'s Staff', 'lrhand', 'true', '960', '1', '1', 'b', '170', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '122', '-1', '8680000', '1157', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_sprites_staff_i00');
  95. INSERT INTO `weapon` VALUES ('93', 'Winged Spear', 'lrhand', 'true', '2060', '3', '3', 'd', '79', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '47', '-1', '1400000', '2545', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_winged_spear_i00');
  96. INSERT INTO `weapon` VALUES ('94', 'Bec de Corbin', 'lrhand', 'true', '2020', '2', '2', 'c', '122', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '68', '-1', '2870000', '1148', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_bech_de_corbin_i00');
  97. INSERT INTO `weapon` VALUES ('95', 'Poleaxe', 'lrhand', 'true', '2010', '3', '3', 'c', '139', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '76', '-1', '4300000', '1720', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_poleaxe_i00');
  98. INSERT INTO `weapon` VALUES ('96', 'Scythe', 'lrhand', 'true', '2040', '2', '2', 'c', '107', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '61', '-1', '2290000', '916', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_scythe_i00');
  99. INSERT INTO `weapon` VALUES ('97', 'Lance', 'lrhand', 'true', '1920', '1', '1', 'b', '194', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '99', '-1', '13100000', '1746', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_lancia_i00');
  100. INSERT INTO `weapon` VALUES ('98', 'Halberd', 'lrhand', 'true', '1900', '1', '1', 'a', '213', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '107', '-1', '18300000', '1464', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_halbard_i00');
  101. INSERT INTO `weapon` VALUES ('99', 'Apprentice\'s Spellbook', 'rhand', 'false', '650', '1', '1', 'none', '9', '10', 'etc', '8', '0.00000', '0', '0', '0', '379', '0', '12', '-1', '12500', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_apprentices_spellbook_i00');
  102. INSERT INTO `weapon` VALUES ('100', 'Voodoo Doll', 'rhand', 'false', '630', '2', '2', 'none', '25', '10', 'etc', '8', '0.00000', '0', '0', '0', '379', '0', '28', '-1', '244000', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_voodoo_doll_i00');
  103. INSERT INTO `weapon` VALUES ('101', 'Scroll of Wisdom', 'rhand', 'true', '610', '2', '2', 'd', '32', '10', 'etc', '8', '0.00000', '0', '0', '0', '379', '0', '35', '-1', '409000', '743', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_scroll_of_wisdom_i00');
  104. INSERT INTO `weapon` VALUES ('102', 'Round Shield', 'lhand', 'false', '1390', '0', '0', 'none', '0', '0', 'none', '0', '0.00000', '-8', '79', '20', '0', '0', '0', '-1', '7110', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.shield_round_shield_i00');
  105. INSERT INTO `weapon` VALUES ('103', 'Tower Shield', 'lhand', 'true', '1240', '0', '0', 'c', '0', '0', 'none', '0', '0.00000', '-8', '190', '20', '0', '0', '0', '-1', '258000', '103', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.shield_tower_shield_i00');
  106. INSERT INTO `weapon` VALUES ('104', 'Shield of Victory', 'lhand', 'true', '6400', '0', '0', 'b', '0', '0', 'none', '0', '0.00000', '-8', '216', '20', '0', '0', '0', '-1', '545000', '72', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.shield_small_shield_i00');
  107. INSERT INTO `weapon` VALUES ('105', 'Implosion Shield', 'lhand', 'true', '4800', '0', '0', 'b', '0', '0', 'none', '0', '0.00000', '-8', '216', '20', '0', '0', '0', '-1', '545000', '72', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.shield_doom_shield_i00');
  108. INSERT INTO `weapon` VALUES ('106', 'Dark Dragon Shield', 'lhand', 'true', '4800', '0', '0', 'b', '0', '0', 'none', '0', '0.00000', '-8', '230', '20', '0', '0', '0', '-1', '845000', '112', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.shield_dark_dragon_shield_i00');
  109. INSERT INTO `weapon` VALUES ('107', 'Composite Shield', 'lhand', 'true', '1230', '0', '0', 'c', '0', '0', 'none', '0', '0.00000', '-8', '190', '20', '0', '0', '0', '-1', '258000', '103', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.shield_composite_shield_i00');
  110. INSERT INTO `weapon` VALUES ('108', 'Masterpiece Shield', 'lhand', 'true', '5600', '0', '0', 'b', '0', '0', 'none', '0', '0.00000', '-8', '230', '20', '0', '0', '0', '-1', '845000', '112', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.shield_masterpiece_shield_i00');
  111. INSERT INTO `weapon` VALUES ('109', 'Shield of Solar Eclipse', 'lhand', 'true', '4800', '0', '0', 'b', '0', '0', 'none', '0', '0.00000', '-8', '216', '20', '0', '0', '0', '-1', '545000', '72', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.shield_shield_of_sola_eclipse_i00');
  112. INSERT INTO `weapon` VALUES ('110', 'Doom Shield', 'lhand', 'true', '1200', '0', '0', 'b', '0', '0', 'none', '0', '0.00000', '-8', '230', '20', '0', '0', '0', '-1', '845000', '112', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.shield_doom_shield_i00');
  113. INSERT INTO `weapon` VALUES ('111', 'Shield of Pledge', 'lhand', 'true', '4800', '0', '0', 'b', '0', '0', 'none', '0', '0.00000', '-8', '216', '20', '0', '0', '0', '-1', '545000', '72', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.shield_shield_of_pledge_i00');
  114. INSERT INTO `weapon` VALUES ('120', 'Sword of Reflection', 'rhand', 'false', '1550', '2', '2', 'none', '24', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '17', '-1', '136000', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_sword_of_watershadow_i00');
  115. INSERT INTO `weapon` VALUES ('121', 'Sword of Watershadow', 'rhand', 'false', '1540', '2', '2', 'none', '24', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '17', '-1', '136000', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_sword_of_watershadow_i00');
  116. INSERT INTO `weapon` VALUES ('122', 'Handmade Sword', 'rhand', 'false', '1570', '2', '2', 'none', '17', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '12', '-1', '54100', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_handmade_sword_i00');
  117. INSERT INTO `weapon` VALUES ('123', 'Saber', 'rhand', 'true', '1520', '2', '2', 'd', '40', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '26', '-1', '409000', '743', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_saber_i00');
  118. INSERT INTO `weapon` VALUES ('124', 'Two-Handed Sword', 'lrhand', 'true', '2180', '2', '2', 'd', '78', '10', 'bigsword', '8', '0.00000', '0', '0', '0', '325', '0', '39', '-1', '967000', '1758', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_two_handed_sword_i00');
  119. INSERT INTO `weapon` VALUES ('125', 'Spinebone Sword', 'rhand', 'true', '1510', '2', '2', 'd', '51', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '32', '-1', '644000', '1170', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_spinebone_sword_i00');
  120. INSERT INTO `weapon` VALUES ('126', 'Artisan\'s Sword', 'rhand', 'true', '1500', '2', '2', 'd', '51', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '32', '-1', '644000', '1170', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_artisans_sword_i00');
  121. INSERT INTO `weapon` VALUES ('127', 'Crimson Sword', 'rhand', 'true', '1490', '2', '2', 'd', '64', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '39', '-1', '967000', '1758', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_crimson_sword_i00');
  122. INSERT INTO `weapon` VALUES ('128', 'Knight\'s Sword', 'rhand', 'true', '1500', '2', '2', 'd', '51', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '32', '-1', '644000', '1170', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_knights_sword_i00');
  123. INSERT INTO `weapon` VALUES ('129', 'Sword of Revolution', 'rhand', 'true', '1450', '3', '3', 'd', '79', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '47', '-1', '1400000', '2545', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_sword_of_revolution_i00');
  124. INSERT INTO `weapon` VALUES ('130', 'Elven Sword', 'rhand', 'true', '1470', '2', '2', 'd', '64', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '39', '-1', '967000', '1758', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_elven_sword_i00');
  125. INSERT INTO `weapon` VALUES ('131', 'Spirit Sword', 'rhand', 'true', '1420', '2', '2', 'c', '122', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '68', '-1', '2870000', '1148', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_spirits_sword_i00');
  126. INSERT INTO `weapon` VALUES ('132', 'Sword of Limit', 'rhand', 'true', '1400', '3', '3', 'c', '139', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '76', '-1', '4300000', '1720', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_sword_of_limit_i00');
  127. INSERT INTO `weapon` VALUES ('133', 'Raid Sword', 'rhand', 'true', '1420', '2', '2', 'c', '122', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '68', '-1', '2870000', '1148', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_raid_sword_i00');
  128. INSERT INTO `weapon` VALUES ('134', 'Sword of Nightmare', 'rhand', 'true', '1400', '3', '3', 'c', '139', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '76', '-1', '4300000', '1720', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_sword_of_nightmare_i00');
  129. INSERT INTO `weapon` VALUES ('135', 'Samurai Longsword', 'rhand', 'true', '1380', '3', '3', 'c', '156', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '83', '-1', '6130000', '2452', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_samurai_longsword_i00');
  130. INSERT INTO `weapon` VALUES ('136', 'Blade of Serenity', 'rhand', 'true', '1370', '1', '1', 'b', '175', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '91', '-1', '8680000', '1157', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_limpid_sword_i00');
  131. INSERT INTO `weapon` VALUES ('137', 'Mist Sword', 'rhand', 'true', '1370', '1', '1', 'b', '175', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '91', '-1', '8680000', '1157', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_homunkuluss_sword_i00');
  132. INSERT INTO `weapon` VALUES ('138', 'Sword of Desert', 'rhand', 'true', '1370', '1', '1', 'b', '175', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '91', '-1', '8680000', '1157', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_bastard_sword_i00');
  133. INSERT INTO `weapon` VALUES ('139', 'Dusk Sword', 'rhand', 'true', '1370', '1', '1', 'b', '175', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '91', '-1', '8680000', '1157', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_deathbreath_sword_i00');
  134. INSERT INTO `weapon` VALUES ('140', 'Eminence Sword', 'rhand', 'true', '1370', '1', '1', 'b', '175', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '91', '-1', '8680000', '1157', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_sword_of_delusion_i00');
  135. INSERT INTO `weapon` VALUES ('141', 'Hazard Sword', 'rhand', 'true', '1370', '1', '1', 'b', '175', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '91', '-1', '8680000', '1157', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_sword_of_revolution_i00');
  136. INSERT INTO `weapon` VALUES ('142', 'Keshanberk', 'rhand', 'true', '1370', '1', '1', 'b', '175', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '91', '-1', '8680000', '1157', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_kshanberk_i00');
  137. INSERT INTO `weapon` VALUES ('143', 'Sword of Mystic', 'rhand', 'true', '980', '2', '2', 'd', '43', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '45', '-1', '716000', '1301', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_sword_of_mystic_i00');
  138. INSERT INTO `weapon` VALUES ('144', 'Sword of Occult', 'rhand', 'true', '970', '2', '2', 'd', '43', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '45', '-1', '716000', '1301', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_sword_of_occult_i00');
  139. INSERT INTO `weapon` VALUES ('145', 'Sword of Whispering Death', 'rhand', 'true', '920', '3', '3', 'c', '111', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '101', '-1', '4300000', '1720', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_deathbreath_sword_i00');
  140. INSERT INTO `weapon` VALUES ('146', 'Ghoulbane', 'rhand', 'true', '910', '1', '1', 'b', '140', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '122', '-1', '8680000', '1157', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_falchion_i00');
  141. INSERT INTO `weapon` VALUES ('147', 'Tear of Darkness', 'rhand', 'true', '830', '1', '1', 'a', '170', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '143', '-1', '18300000', '1464', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_shamshir_i00');
  142. INSERT INTO `weapon` VALUES ('148', 'Sword of Valhalla', 'rhand', 'true', '900', '1', '1', 'b', '140', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '122', '-1', '8680000', '1157', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_sword_of_valhalla_i00');
  143. INSERT INTO `weapon` VALUES ('149', 'Sword of Life', 'rhand', 'true', '840', '1', '1', 'a', '170', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '143', '-1', '18300000', '1464', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_needle_wolverine_i00');
  144. INSERT INTO `weapon` VALUES ('150', 'Elemental Sword', 'rhand', 'true', '830', '1', '1', 'a', '170', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '143', '-1', '18300000', '1464', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_elemental_sword_i00');
  145. INSERT INTO `weapon` VALUES ('151', 'Sword of Miracles', 'rhand', 'true', '840', '1', '1', 'a', '186', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '152', '-1', '27000000', '2160', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_sword_of_miracle_i00');
  146. INSERT INTO `weapon` VALUES ('152', 'Heavy Chisel', 'rhand', 'false', '1890', '1', '1', 'none', '10', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '8', '-1', '8070', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_heavy_chisel_i00');
  147. INSERT INTO `weapon` VALUES ('153', 'Sickle', 'rhand', 'false', '1850', '1', '1', 'none', '12', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '9', '-1', '18500', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_sickle_i00');
  148. INSERT INTO `weapon` VALUES ('154', 'Dwarven Mace', 'rhand', 'false', '1860', '2', '2', 'none', '17', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '12', '-1', '54100', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dwarven_mace_i00');
  149. INSERT INTO `weapon` VALUES ('155', 'Buzdygan', 'rhand', 'false', '1800', '2', '2', 'none', '31', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '21', '-1', '244000', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_buzdygan_i00');
  150. INSERT INTO `weapon` VALUES ('156', 'Hand Axe', 'rhand', 'true', '1820', '2', '2', 'd', '40', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '26', '-1', '409000', '743', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_hand_axe_i00');
  151. INSERT INTO `weapon` VALUES ('157', 'Spiked Club', 'rhand', 'true', '1750', '2', '2', 'd', '64', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '39', '-1', '967000', '1758', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_spike_club_i00');
  152. INSERT INTO `weapon` VALUES ('158', 'Tarbar', 'rhand', 'true', '1730', '3', '3', 'd', '79', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '47', '-1', '1400000', '2545', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_tarbar_i00');
  153. INSERT INTO `weapon` VALUES ('159', 'Bonebreaker', 'rhand', 'true', '1720', '3', '3', 'd', '92', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '54', '-1', '1800000', '3272', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_bonebreaker_i00');
  154. INSERT INTO `weapon` VALUES ('160', 'Battle Axe', 'rhand', 'true', '1720', '2', '2', 'c', '107', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '61', '-1', '2290000', '916', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_battle_axe_i00');
  155. INSERT INTO `weapon` VALUES ('161', 'Silver Axe', 'rhand', 'true', '1690', '2', '2', 'c', '107', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '61', '-1', '2290000', '916', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_war_pick_i00');
  156. INSERT INTO `weapon` VALUES ('162', 'War Axe', 'rhand', 'true', '1660', '3', '3', 'c', '139', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '76', '-1', '4300000', '1720', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_war_axe_i00');
  157. INSERT INTO `weapon` VALUES ('163', '_', 'rhand', 'true', '4000', '1', '1', 'b', '175', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '91', '-1', '8680000', '1157', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_war_axe_i00');
  158. INSERT INTO `weapon` VALUES ('164', 'Elysian', 'rhand', 'true', '1580', '1', '1', 'a', '232', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '114', '-1', '27000000', '2160', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_elysian_i00');
  159. INSERT INTO `weapon` VALUES ('165', 'Yablonski\'s Hammer', 'rhand', 'true', '1570', '1', '1', 's', '251', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '121', '-1', '35300000', '1765', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_basalt_battlehammer_i00');
  160. INSERT INTO `weapon` VALUES ('166', 'Heavy Mace', 'rhand', 'true', '1800', '2', '2', 'd', '40', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '26', '-1', '409000', '743', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_heavy_mace_i00');
  161. INSERT INTO `weapon` VALUES ('167', 'Scalpel', 'rhand', 'true', '1810', '2', '2', 'd', '40', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '26', '-1', '409000', '743', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_scalpel_i00');
  162. INSERT INTO `weapon` VALUES ('168', 'Work Hammer', 'rhand', 'true', '1790', '2', '2', 'd', '40', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '26', '-1', '409000', '743', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_work_hammer_i00');
  163. INSERT INTO `weapon` VALUES ('169', 'Skull Breaker', 'rhand', 'true', '1740', '3', '3', 'd', '79', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '47', '-1', '1400000', '2545', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_skull_breaker_i00');
  164. INSERT INTO `weapon` VALUES ('170', '_', 'rhand', 'true', '6400', '1', '1', 'a', '258', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '86', '-1', '16600000', '7', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_war_axe_i00');
  165. INSERT INTO `weapon` VALUES ('171', 'Deadman\'s Glory', 'rhand', 'true', '1600', '1', '1', 'b', '194', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '99', '-1', '13100000', '1746', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_deadmans_glory_i00');
  166. INSERT INTO `weapon` VALUES ('172', 'Heavy Bone Club', 'rhand', 'true', '1730', '3', '3', 'd', '79', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '47', '-1', '1400000', '2545', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_heavy_bone_club_i00');
  167. INSERT INTO `weapon` VALUES ('173', 'Skull Graver', 'rhand', 'true', '1640', '2', '2', 'c', '107', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '61', '-1', '2290000', '916', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_skull_graver_i00');
  168. INSERT INTO `weapon` VALUES ('174', 'Nirvana Axe', 'rhand', 'true', '1150', '3', '3', 'c', '111', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '101', '-1', '4300000', '1720', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_nirvana_axe_i00');
  169. INSERT INTO `weapon` VALUES ('175', 'Art of Battle Axe', 'rhand', 'true', '1570', '1', '1', 'b', '194', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '99', '-1', '13100000', '1746', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_art_of_battle_axe_i00');
  170. INSERT INTO `weapon` VALUES ('176', 'Journeyman\'s Staff', 'lrhand', 'false', '1070', '2', '2', 'none', '23', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '22', '-1', '136000', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_apprentices_staff_i00');
  171. INSERT INTO `weapon` VALUES ('177', 'Mage Staff', 'lrhand', 'false', '1050', '2', '2', 'none', '30', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '28', '-1', '244000', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_apprentices_staff_i00');
  172. INSERT INTO `weapon` VALUES ('178', 'Bone Staff', 'lrhand', 'true', '1060', '2', '2', 'd', '39', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '35', '-1', '409000', '743', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_apprentices_staff_i00');
  173. INSERT INTO `weapon` VALUES ('179', 'Mace of Prayer', 'rhand', 'true', '1300', '2', '2', 'd', '41', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '43', '-1', '644000', '1170', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_mace_of_prayer_i00');
  174. INSERT INTO `weapon` VALUES ('180', 'Mace of Judgment', 'rhand', 'true', '1280', '2', '2', 'd', '41', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '43', '-1', '644000', '1170', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_mace_of_judgment_i00');
  175. INSERT INTO `weapon` VALUES ('181', 'Mace of Miracle', 'rhand', 'true', '1250', '2', '2', 'd', '41', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '43', '-1', '644000', '1170', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_mace_of_miracle_i00');
  176. INSERT INTO `weapon` VALUES ('182', 'Doom Hammer', 'rhand', 'true', '1200', '2', '2', 'd', '41', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '43', '-1', '644000', '1170', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_doom_hammer_i00');
  177. INSERT INTO `weapon` VALUES ('183', 'Mystic Staff', 'lrhand', 'true', '1040', '2', '2', 'd', '50', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '43', '-1', '644000', '1170', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_mystic_staff_i00');
  178. INSERT INTO `weapon` VALUES ('184', 'Conjuror\'s Staff', 'lrhand', 'true', '1030', '2', '2', 'd', '50', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '43', '-1', '644000', '1170', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_conjure_staff_i00');
  179. INSERT INTO `weapon` VALUES ('185', 'Staff of Mana', 'lrhand', 'true', '1040', '2', '2', 'd', '50', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '43', '-1', '644000', '1170', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_staff_of_mana_i00');
  180. INSERT INTO `weapon` VALUES ('186', 'Staff of Magic', 'lrhand', 'true', '1020', '2', '2', 'd', '62', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '52', '-1', '967000', '1758', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_staff_of_magicpower_i00');
  181. INSERT INTO `weapon` VALUES ('187', 'Atuba Hammer', 'lrhand', 'true', '1010', '3', '3', 'd', '90', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '72', '-1', '1800000', '3272', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_atuba_hammer_i00');
  182. INSERT INTO `weapon` VALUES ('188', 'Ghost Staff', 'lrhand', 'true', '1000', '3', '3', 'd', '90', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '72', '-1', '1800000', '3272', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_ghost_staff_i00');
  183. INSERT INTO `weapon` VALUES ('189', 'Staff of Life', 'rhand', 'true', '1180', '3', '3', 'd', '74', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '72', '-1', '1800000', '3272', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_life_stick_i00');
  184. INSERT INTO `weapon` VALUES ('190', 'Atuba Mace', 'lrhand', 'true', '1010', '3', '3', 'd', '90', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '72', '-1', '1800000', '3272', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_atuba_mace_i00');
  185. INSERT INTO `weapon` VALUES ('191', 'Heavy Doom Hammer', 'lrhand', 'true', '1020', '2', '2', 'c', '103', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '81', '-1', '2290000', '916', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_heavy_doom_hammer_i00');
  186. INSERT INTO `weapon` VALUES ('192', 'Crystal Staff', 'lrhand', 'true', '1020', '2', '2', 'c', '103', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '81', '-1', '2290000', '916', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_crystal_staff_i00');
  187. INSERT INTO `weapon` VALUES ('193', 'Stick of Faith', 'rhand', 'true', '1160', '2', '2', 'c', '85', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '81', '-1', '2290000', '916', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_stick_of_faith_i00');
  188. INSERT INTO `weapon` VALUES ('194', 'Heavy Doom Axe', 'lrhand', 'true', '1010', '2', '2', 'c', '103', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '81', '-1', '2290000', '916', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_heavy_doom_axe_i00');
  189. INSERT INTO `weapon` VALUES ('195', 'Cursed Staff', 'lrhand', 'true', '1000', '2', '2', 'c', '119', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '91', '-1', '2870000', '1148', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_cursed_staff_i00');
  190. INSERT INTO `weapon` VALUES ('196', 'Stick of Eternity', 'rhand', 'true', '1130', '3', '3', 'c', '111', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '101', '-1', '4300000', '1720', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_stick_of_eternity_i00');
  191. INSERT INTO `weapon` VALUES ('197', 'Paradia Staff', 'lrhand', 'true', '1010', '3', '3', 'c', '135', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '101', '-1', '4300000', '1720', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_paradia_staff_i00');
  192. INSERT INTO `weapon` VALUES ('198', 'Inferno Staff', 'lrhand', 'true', '1000', '3', '3', 'c', '135', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '101', '-1', '4300000', '1720', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_inferno_staff_i00');
  193. INSERT INTO `weapon` VALUES ('199', 'Pa\'agrian Hammer', 'lrhand', 'true', '1010', '3', '3', 'c', '135', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '101', '-1', '4300000', '1720', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_paagrio_hammer_i00');
  194. INSERT INTO `weapon` VALUES ('200', 'Sage\'s Staff', 'lrhand', 'true', '1000', '3', '3', 'c', '135', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '101', '-1', '4300000', '1720', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_sages_staff_i00');
  195. INSERT INTO `weapon` VALUES ('201', 'Club of Nature', 'rhand', 'true', '1100', '3', '3', 'c', '111', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '101', '-1', '4300000', '1720', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_club_of_nature_i00');
  196. INSERT INTO `weapon` VALUES ('202', 'Mace of The Underworld', 'rhand', 'true', '1090', '3', '3', 'c', '111', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '101', '-1', '4300000', '1720', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_mace_of_underworld_i00');
  197. INSERT INTO `weapon` VALUES ('203', 'Pa\'agrian Axe', 'lrhand', 'true', '990', '3', '3', 'c', '141', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '104', '-1', '4780000', '1912', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_paagrio_axe_i00');
  198. INSERT INTO `weapon` VALUES ('204', 'Deadman\'s Staff', 'lrhand', 'true', '1010', '3', '3', 'c', '152', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '111', '-1', '6130000', '2452', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_deadmans_staff_i00');
  199. INSERT INTO `weapon` VALUES ('205', 'Ghoul\'s Staff', 'lrhand', 'true', '1000', '3', '3', 'c', '152', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '111', '-1', '6130000', '2452', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_ghouls_staff_i00');
  200. INSERT INTO `weapon` VALUES ('206', 'Demon\'s Staff', 'lrhand', 'true', '990', '3', '3', 'c', '152', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '111', '-1', '6130000', '2452', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_demons_staff_i00');
  201. INSERT INTO `weapon` VALUES ('207', 'Staff of Phantom', 'lrhand', 'true', '980', '1', '1', 'b', '170', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '122', '-1', '8680000', '1157', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_apprentices_staff_i00');
  202. INSERT INTO `weapon` VALUES ('208', 'Staff of Seal', 'lrhand', 'true', '970', '1', '1', 'b', '170', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '122', '-1', '8680000', '1157', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_apprentices_staff_i00');
  203. INSERT INTO `weapon` VALUES ('209', 'Divine Staff', 'lrhand', 'true', '960', '1', '1', 'b', '189', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '132', '-1', '13100000', '1746', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_apprentices_staff_i00');
  204. INSERT INTO `weapon` VALUES ('210', 'Staff of Evil Spirits', 'lrhand', 'true', '930', '1', '1', 'b', '189', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '132', '-1', '13100000', '1746', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_staff_of_evil_sprit_i00');
  205. INSERT INTO `weapon` VALUES ('211', 'Staff of Nobility', 'lrhand', 'true', '910', '1', '1', 'b', '189', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '132', '-1', '13100000', '1746', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_apprentices_staff_i00');
  206. INSERT INTO `weapon` VALUES ('212', 'Dasparion\'s Staff', 'lrhand', 'true', '920', '1', '1', 'a', '207', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '143', '-1', '18300000', '1464', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dasparions_staff_i00');
  207. INSERT INTO `weapon` VALUES ('213', 'Branch of The Mother Tree', 'lrhand', 'true', '900', '1', '1', 'a', '226', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '152', '-1', '27000000', '2160', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_worldtrees_branch_i00');
  208. INSERT INTO `weapon` VALUES ('214', 'The Staff', 'lrhand', 'true', '910', '1', '1', 's', '245', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '162', '-1', '35300000', '1765', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_imperial_staff_i00');
  209. INSERT INTO `weapon` VALUES ('215', 'Doom Dagger', 'rhand', 'false', '1130', '1', '1', 'none', '10', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '9', '-1', '12500', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_doomed_dagger_i00');
  210. INSERT INTO `weapon` VALUES ('216', 'Dirk', 'rhand', 'false', '1130', '2', '2', 'none', '15', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '12', '-1', '54100', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dirk_i00');
  211. INSERT INTO `weapon` VALUES ('217', 'Shining Knife', 'rhand', 'false', '1120', '2', '2', 'none', '21', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '17', '-1', '136000', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_shining_knife_i00');
  212. INSERT INTO `weapon` VALUES ('218', 'Throwing Knife', 'rhand', 'false', '1120', '2', '2', 'none', '21', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '17', '-1', '136000', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_throw_knife_i00');
  213. INSERT INTO `weapon` VALUES ('219', 'Sword Breaker', 'rhand', 'false', '1110', '2', '2', 'none', '27', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '21', '-1', '244000', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_sword_breaker_i00');
  214. INSERT INTO `weapon` VALUES ('220', 'Crafted Dagger', 'rhand', 'true', '1100', '2', '2', 'd', '35', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '26', '-1', '409000', '743', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_handiwork_dagger_i00');
  215. INSERT INTO `weapon` VALUES ('221', 'Assassin Knife', 'rhand', 'true', '1100', '2', '2', 'd', '35', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '26', '-1', '409000', '743', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_assassin_knife_i00');
  216. INSERT INTO `weapon` VALUES ('222', 'Poniard Dagger', 'rhand', 'true', '1090', '2', '2', 'd', '45', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '32', '-1', '644000', '1170', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dirk_i00');
  217. INSERT INTO `weapon` VALUES ('223', 'Kukuri', 'rhand', 'true', '1080', '2', '2', 'd', '56', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '39', '-1', '967000', '1758', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_kukuri_i00');
  218. INSERT INTO `weapon` VALUES ('224', 'Maingauche', 'rhand', 'true', '1070', '3', '3', 'd', '69', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '47', '-1', '1400000', '2545', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_maingauche_i00');
  219. INSERT INTO `weapon` VALUES ('225', 'Mithril Dagger', 'rhand', 'true', '1060', '3', '3', 'd', '80', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '54', '-1', '1800000', '3272', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_mithril_dagger_i00');
  220. INSERT INTO `weapon` VALUES ('226', 'Cursed Dagger', 'rhand', 'true', '1040', '2', '2', 'c', '94', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '61', '-1', '2290000', '916', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_cursed_dagger_i00');
  221. INSERT INTO `weapon` VALUES ('227', 'Stiletto', 'rhand', 'true', '1030', '2', '2', 'c', '107', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '68', '-1', '2870000', '1148', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_stiletto_i00');
  222. INSERT INTO `weapon` VALUES ('228', 'Crystal Dagger', 'rhand', 'true', '1000', '3', '3', 'c', '136', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '83', '-1', '6130000', '2452', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_crystal_dagger_i00');
  223. INSERT INTO `weapon` VALUES ('229', 'Kris', 'rhand', 'true', '980', '1', '1', 'b', '153', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '91', '-1', '8680000', '1157', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_kris_i00');
  224. INSERT INTO `weapon` VALUES ('230', 'Wolverine Needle', 'rhand', 'true', '1040', '2', '2', 'c', '94', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '61', '-1', '2290000', '916', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_needle_wolverine_i00');
  225. INSERT INTO `weapon` VALUES ('231', 'Grace Dagger', 'rhand', 'true', '1020', '3', '3', 'c', '122', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '76', '-1', '4300000', '1720', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_grace_dagger_i00');
  226. INSERT INTO `weapon` VALUES ('232', 'Dark Elven Dagger', 'rhand', 'true', '1050', '2', '2', 'c', '94', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '61', '-1', '2290000', '916', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_darkelven_dagger_i00');
  227. INSERT INTO `weapon` VALUES ('233', 'Dark Screamer', 'rhand', 'true', '1010', '3', '3', 'c', '122', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '76', '-1', '4300000', '1720', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dark_screamer_i00');
  228. INSERT INTO `weapon` VALUES ('234', 'Demon Dagger', 'rhand', 'true', '970', '1', '1', 'b', '170', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '99', '-1', '13100000', '1746', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_demons_sword_i00');
  229. INSERT INTO `weapon` VALUES ('235', 'Bloody Orchid', 'rhand', 'true', '960', '1', '1', 'a', '186', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '107', '-1', '18300000', '1464', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_bloody_orchid_i00');
  230. INSERT INTO `weapon` VALUES ('236', 'Soul Separator', 'rhand', 'true', '950', '1', '1', 'a', '203', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '114', '-1', '27000000', '2160', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_soul_separator_i00');
  231. INSERT INTO `weapon` VALUES ('237', 'Dragon\'s Tooth', 'rhand', 'true', '950', '1', '1', 's', '220', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '121', '-1', '35300000', '1765', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_angel_slayer_i00');
  232. INSERT INTO `weapon` VALUES ('238', 'Dagger of Mana', 'rhand', 'true', '750', '2', '2', 'd', '45', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '52', '-1', '967000', '1758', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dagger_of_mana_i00');
  233. INSERT INTO `weapon` VALUES ('239', 'Mystic Knife', 'rhand', 'true', '760', '2', '2', 'd', '45', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '52', '-1', '967000', '1758', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_mystic_knife_i00');
  234. INSERT INTO `weapon` VALUES ('240', 'Conjurer\'s Knife', 'rhand', 'true', '750', '2', '2', 'd', '45', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '52', '-1', '967000', '1758', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_conjure_knife_i00');
  235. INSERT INTO `weapon` VALUES ('241', 'Shilen Knife', 'rhand', 'true', '750', '2', '2', 'd', '45', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '52', '-1', '967000', '1758', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_knife_o\'_silenus_i00');
  236. INSERT INTO `weapon` VALUES ('242', 'Soulfire Dirk', 'rhand', 'true', '750', '2', '2', 'c', '86', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '91', '-1', '2870000', '1148', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dagger_of_magicflame_i00');
  237. INSERT INTO `weapon` VALUES ('243', 'Hell Knife', 'rhand', 'true', '740', '1', '1', 'b', '122', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '122', '-1', '8680000', '1157', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_hell_knife_i00');
  238. INSERT INTO `weapon` VALUES ('244', 'Elven Fighter Fist', 'rhand', 'false', '0', '0', '0', 'none', '0', '5', 'fist', '4', '4.00000', '0', '0', '0', '325', '0', '0', '-1', '22', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'ICON');
  239. INSERT INTO `weapon` VALUES ('245', 'Dark Fighter Fist', 'rhand', 'false', '0', '0', '0', 'none', '0', '5', 'fist', '4', '4.00000', '0', '0', '0', '325', '0', '0', '-1', '33', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'ICON');
  240. INSERT INTO `weapon` VALUES ('246', 'Human Fighter Fist', 'rhand', 'false', '0', '0', '0', 'none', '0', '5', 'fist', '4', '4.00000', '0', '0', '0', '325', '0', '0', '-1', '44', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'ICON');
  241. INSERT INTO `weapon` VALUES ('247', 'Dwarven Fighter Fist', 'rhand', 'false', '0', '0', '0', 'none', '0', '5', 'fist', '4', '4.00000', '0', '0', '0', '325', '0', '0', '-1', '56', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'ICON');
  242. INSERT INTO `weapon` VALUES ('248', 'Orc Fighter Fist', 'rhand', 'false', '0', '0', '0', 'none', '0', '5', 'fist', '4', '4.00000', '0', '0', '0', '325', '0', '0', '-1', '67', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'ICON');
  243. INSERT INTO `weapon` VALUES ('249', 'Elven Mystic Fist', 'rhand', 'false', '0', '0', '0', 'none', '0', '5', 'fist', '4', '4.00000', '0', '0', '0', '325', '0', '0', '-1', '11', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'ICON');
  244. INSERT INTO `weapon` VALUES ('250', 'Dark Mystic Fist', 'rhand', 'false', '0', '0', '0', 'none', '0', '5', 'fist', '4', '4.00000', '0', '0', '0', '325', '0', '0', '-1', '22', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'ICON');
  245. INSERT INTO `weapon` VALUES ('251', 'Human Mystic Fist', 'rhand', 'false', '0', '0', '0', 'none', '0', '5', 'fist', '4', '4.00000', '0', '0', '0', '325', '0', '0', '-1', '33', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'ICON');
  246. INSERT INTO `weapon` VALUES ('252', 'Orc Shaman Fist', 'rhand', 'false', '0', '0', '0', 'none', '0', '10', 'fist', '8', '0.00000', '0', '0', '0', '379', '0', '0', '-1', '44', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'ICON');
  247. INSERT INTO `weapon` VALUES ('253', 'Spiked Gloves', 'lrhand', 'false', '1590', '1', '1', 'none', '10', '5', 'dualfist', '4', '4.00000', '0', '0', '0', '325', '0', '6', '-1', '768', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_spike_glove_i00');
  248. INSERT INTO `weapon` VALUES ('254', 'Iron Gloves', 'lrhand', 'false', '1580', '1', '1', 'none', '13', '5', 'dualfist', '4', '4.00000', '0', '0', '0', '325', '0', '9', '-1', '12500', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_iron_glove_i00');
  249. INSERT INTO `weapon` VALUES ('255', 'Fox Claw Gloves', 'lrhand', 'false', '1560', '2', '2', 'none', '21', '5', 'dualfist', '4', '4.00000', '0', '0', '0', '325', '0', '12', '-1', '54100', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_foxs_nail_i00');
  250. INSERT INTO `weapon` VALUES ('256', 'Cestus', 'lrhand', 'false', '1570', '2', '2', 'none', '29', '5', 'dualfist', '4', '4.00000', '0', '0', '0', '325', '0', '17', '-1', '136000', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_vipers_canine_i00');
  251. INSERT INTO `weapon` VALUES ('257', 'Viper\'s Fang', 'lrhand', 'false', '1560', '2', '2', 'none', '38', '5', 'dualfist', '4', '4.00000', '0', '0', '0', '325', '0', '21', '-1', '244000', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_vipers_canine_i00');
  252. INSERT INTO `weapon` VALUES ('258', 'Bagh-Nakh', 'lrhand', 'true', '1540', '2', '2', 'd', '49', '5', 'dualfist', '4', '4.00000', '0', '0', '0', '325', '0', '26', '-1', '409000', '743', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_baghnakh_i00');
  253. INSERT INTO `weapon` VALUES ('259', 'Single-Edged Jamadhr', 'lrhand', 'true', '1550', '2', '2', 'd', '62', '5', 'dualfist', '4', '4.00000', '0', '0', '0', '325', '0', '32', '-1', '644000', '1170', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_single-edged_jamadhr_i00');
  254. INSERT INTO `weapon` VALUES ('260', 'Triple-Edged Jamadhr', 'lrhand', 'true', '1540', '2', '2', 'd', '78', '5', 'dualfist', '4', '4.00000', '0', '0', '0', '325', '0', '39', '-1', '967000', '1758', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_triple-edged_jamadhr_i00');
  255. INSERT INTO `weapon` VALUES ('261', 'Bich\'Hwa', 'lrhand', 'true', '1510', '3', '3', 'd', '96', '5', 'dualfist', '4', '4.00000', '0', '0', '0', '325', '0', '47', '-1', '1400000', '2545', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_bichhwa_i00');
  256. INSERT INTO `weapon` VALUES ('262', 'Scallop Jamadhr', 'lrhand', 'true', '1520', '3', '3', 'd', '112', '5', 'dualfist', '4', '4.00000', '0', '0', '0', '325', '0', '54', '-1', '1800000', '3272', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_scallop_jamadhr_i00');
  257. INSERT INTO `weapon` VALUES ('263', 'Chakram', 'lrhand', 'true', '1490', '2', '2', 'c', '130', '5', 'dualfist', '4', '4.00000', '0', '0', '0', '325', '0', '61', '-1', '2290000', '916', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_chakram_i00');
  258. INSERT INTO `weapon` VALUES ('264', 'Pata', 'lrhand', 'true', '1440', '1', '1', 'b', '204', '5', 'dualfist', '4', '4.00000', '0', '0', '0', '325', '0', '89', '-1', '7830000', '1044', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_chakram_i00');
  259. INSERT INTO `weapon` VALUES ('265', 'Fisted Blade', 'lrhand', 'true', '1480', '3', '3', 'c', '169', '5', 'dualfist', '4', '4.00000', '0', '0', '0', '325', '0', '76', '-1', '4300000', '1720', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_fist_blade_i00');
  260. INSERT INTO `weapon` VALUES ('266', 'Great Pata', 'lrhand', 'true', '1460', '3', '3', 'c', '190', '5', 'dualfist', '4', '4.00000', '0', '0', '0', '325', '0', '83', '-1', '6130000', '2452', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_great_pata_i00');
  261. INSERT INTO `weapon` VALUES ('267', 'Arthro Nail', 'lrhand', 'true', '1420', '1', '1', 'b', '213', '5', 'dualfist', '4', '4.00000', '0', '0', '0', '325', '0', '91', '-1', '8680000', '1157', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_arthro_nail_i00');
  262. INSERT INTO `weapon` VALUES ('268', 'Bellion Cestus', 'lrhand', 'true', '1390', '1', '1', 'b', '236', '5', 'dualfist', '4', '4.00000', '0', '0', '0', '325', '0', '99', '-1', '13100000', '1746', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_bellion_cestus_i00');
  263. INSERT INTO `weapon` VALUES ('269', 'Blood Tornado', 'lrhand', 'true', '1370', '1', '1', 'a', '259', '5', 'dualfist', '4', '4.00000', '0', '0', '0', '325', '0', '107', '-1', '18300000', '1464', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_blood_tornado_i00');
  264. INSERT INTO `weapon` VALUES ('270', 'Dragon Grinder', 'lrhand', 'true', '1350', '1', '1', 'a', '282', '5', 'dualfist', '4', '4.00000', '0', '0', '0', '325', '0', '114', '-1', '27000000', '2160', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dragon_grinder_i00');
  265. INSERT INTO `weapon` VALUES ('271', 'Hunting Bow', 'lrhand', 'false', '1910', '6', '2', 'none', '34', '5', 'bow', '12', '-3.00000', '0', '0', '0', '293', '2', '12', '-1', '54100', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_hunting_bow_i00');
  266. INSERT INTO `weapon` VALUES ('272', 'Forest Bow', 'lrhand', 'false', '1900', '7', '2', 'none', '49', '5', 'bow', '12', '-3.00000', '0', '0', '0', '293', '3', '17', '-1', '136000', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_short_bow_i00');
  267. INSERT INTO `weapon` VALUES ('273', 'Composition Bow', 'lrhand', 'false', '1880', '7', '2', 'none', '64', '5', 'bow', '12', '-3.00000', '0', '0', '0', '293', '3', '21', '-1', '244000', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_composition_bow_i00');
  268. INSERT INTO `weapon` VALUES ('274', 'Strengthened Bow', 'lrhand', 'true', '1870', '6', '2', 'd', '82', '5', 'bow', '12', '-3.00000', '0', '0', '0', '293', '3', '26', '-1', '409000', '743', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_strengthening_bow_i00');
  269. INSERT INTO `weapon` VALUES ('275', 'Long Bow', 'lrhand', 'true', '1830', '6', '2', 'd', '114', '5', 'bow', '12', '-3.00000', '0', '0', '0', '227', '4', '35', '-1', '644000', '1170', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_long_bow_i00');
  270. INSERT INTO `weapon` VALUES ('276', 'Elven Bow', 'lrhand', 'true', '1850', '6', '2', 'd', '105', '5', 'bow', '12', '-3.00000', '0', '0', '0', '293', '4', '32', '-1', '644000', '1170', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_elven_bow_i00');
  271. INSERT INTO `weapon` VALUES ('277', 'Dark Elven Bow', 'lrhand', 'true', '1830', '6', '2', 'd', '105', '5', 'bow', '12', '-3.00000', '0', '0', '0', '293', '4', '32', '-1', '644000', '1170', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dark_elven_bow_i00');
  272. INSERT INTO `weapon` VALUES ('278', 'Gastraphetes', 'lrhand', 'true', '1840', '8', '2', 'd', '132', '5', 'bow', '12', '-3.00000', '0', '0', '0', '293', '4', '39', '-1', '967000', '1758', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_gastraphetes_i00');
  273. INSERT INTO `weapon` VALUES ('279', 'Strengthened Long Bow', 'lrhand', 'true', '1820', '10', '3', 'd', '179', '5', 'bow', '12', '-3.00000', '0', '0', '0', '227', '5', '51', '-1', '1400000', '2545', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_strengthening_long_bow_i00');
  274. INSERT INTO `weapon` VALUES ('280', 'Light Crossbow', 'lrhand', 'true', '1810', '10', '3', 'd', '191', '5', 'bow', '12', '-3.00000', '0', '0', '0', '293', '6', '54', '-1', '1800000', '3272', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_cyclone_bow_i00');
  275. INSERT INTO `weapon` VALUES ('281', 'Crystallized Ice Bow', 'lrhand', 'true', '1790', '8', '2', 'c', '220', '5', 'bow', '12', '-3.00000', '0', '0', '0', '293', '6', '61', '-1', '2290000', '916', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_crystallized_ice_bow_i00');
  276. INSERT INTO `weapon` VALUES ('282', 'Elemental Bow', 'lrhand', 'true', '1770', '8', '2', 'c', '277', '5', 'bow', '12', '-3.00000', '0', '0', '0', '227', '7', '75', '-1', '2870000', '1148', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_elemental_bow_i00');
  277. INSERT INTO `weapon` VALUES ('283', 'Akat Long Bow', 'lrhand', 'true', '1740', '9', '3', 'c', '316', '5', 'bow', '12', '-3.00000', '0', '0', '0', '227', '7', '84', '-1', '4300000', '1720', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_akat_long_bow_i00');
  278. INSERT INTO `weapon` VALUES ('284', 'Dark Elven Long Bow', 'lrhand', 'true', '1720', '3', '1', 'b', '397', '5', 'bow', '12', '-3.00000', '0', '0', '0', '227', '8', '100', '-1', '8680000', '1157', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dark_elven_long_bow_i00');
  279. INSERT INTO `weapon` VALUES ('285', 'Noble Elven Bow', 'lrhand', 'true', '1760', '8', '2', 'c', '252', '5', 'bow', '12', '-3.00000', '0', '0', '0', '293', '7', '68', '-1', '2870000', '1148', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_noble_elven_bow_i00');
  280. INSERT INTO `weapon` VALUES ('286', 'Eminence Bow', 'lrhand', 'true', '1720', '10', '3', 'c', '323', '5', 'bow', '12', '-3.00000', '0', '0', '0', '293', '8', '83', '-1', '6130000', '2452', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_eminence_bow_i00');
  281. INSERT INTO `weapon` VALUES ('287', 'Bow of Peril', 'lrhand', 'true', '1700', '3', '1', 'b', '400', '5', 'bow', '12', '-3.00000', '0', '0', '0', '293', '9', '99', '-1', '13100000', '1746', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_hazard_bow_i00');
  282. INSERT INTO `weapon` VALUES ('288', 'Carnage Bow', 'lrhand', 'true', '1670', '2', '1', 'a', '440', '5', 'bow', '12', '-3.00000', '0', '0', '0', '293', '9', '107', '-1', '18300000', '1464', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_carnium_bow_i00');
  283. INSERT INTO `weapon` VALUES ('289', 'Soul Bow', 'lrhand', 'true', '1660', '2', '1', 'a', '528', '5', 'bow', '12', '-3.00000', '0', '0', '0', '227', '10', '125', '-1', '27000000', '2160', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_soul_bow_i00');
  284. INSERT INTO `weapon` VALUES ('290', 'The Bow', 'lrhand', 'true', '1650', '1', '1', 's', '519', '5', 'bow', '12', '-3.00000', '0', '0', '0', '293', '10', '121', '-1', '35300000', '1765', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_shining_bow_i00');
  285. INSERT INTO `weapon` VALUES ('291', 'Trident', 'lrhand', 'true', '2100', '2', '2', 'd', '40', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '26', '-1', '409000', '743', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_trident_i00');
  286. INSERT INTO `weapon` VALUES ('292', 'Pike', 'lrhand', 'true', '2090', '2', '2', 'd', '51', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '32', '-1', '644000', '1170', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_pike_i00');
  287. INSERT INTO `weapon` VALUES ('293', 'War Hammer', 'lrhand', 'true', '2080', '2', '2', 'd', '64', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '39', '-1', '967000', '1758', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_war_hammer_i00');
  288. INSERT INTO `weapon` VALUES ('294', 'War Pick', 'lrhand', 'true', '2050', '3', '3', 'd', '79', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '47', '-1', '1400000', '2545', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_hammer_in_flames_i00');
  289. INSERT INTO `weapon` VALUES ('295', 'Dwarven Trident', 'lrhand', 'true', '2090', '2', '2', 'd', '51', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '32', '-1', '644000', '1170', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dwarven_trident_i00');
  290. INSERT INTO `weapon` VALUES ('296', 'Dwarven Pike', 'lrhand', 'true', '2070', '2', '2', 'd', '64', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '39', '-1', '967000', '1758', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dwarven_pike_i00');
  291. INSERT INTO `weapon` VALUES ('297', 'Glaive', 'lrhand', 'true', '2050', '3', '3', 'd', '92', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '54', '-1', '1800000', '3272', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_glaive_i00');
  292. INSERT INTO `weapon` VALUES ('298', 'Orcish Glaive', 'lrhand', 'true', '2030', '2', '2', 'c', '107', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '61', '-1', '2290000', '916', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_orcish_glaive_i00');
  293. INSERT INTO `weapon` VALUES ('299', 'Orcish Poleaxe', 'lrhand', 'true', '1950', '3', '3', 'c', '156', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '83', '-1', '6130000', '2452', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_orcish_poleaxe_i00');
  294. INSERT INTO `weapon` VALUES ('300', 'Great Axe', 'lrhand', 'true', '1940', '1', '1', 'b', '175', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '91', '-1', '8680000', '1157', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_great_axe_i00');
  295. INSERT INTO `weapon` VALUES ('301', 'Scorpion', 'lrhand', 'true', '1990', '3', '3', 'c', '144', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '78', '-1', '4780000', '1912', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_scorpion_i00');
  296. INSERT INTO `weapon` VALUES ('302', 'Body Slasher', 'lrhand', 'true', '2030', '2', '2', 'c', '107', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '61', '-1', '2290000', '916', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_body_slasher_i00');
  297. INSERT INTO `weapon` VALUES ('303', 'Widow Maker', 'lrhand', 'true', '1980', '3', '3', 'c', '144', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '78', '-1', '4780000', '1912', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_widow_maker_i00');
  298. INSERT INTO `weapon` VALUES ('304', 'Orcish Halberd', 'lrhand', 'true', '1880', '1', '1', 'a', '219', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '109', '-1', '21300000', '1704', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_orcish_halbard_i00');
  299. INSERT INTO `weapon` VALUES ('305', 'Tallum Glaive', 'lrhand', 'true', '1840', '1', '1', 'a', '232', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '114', '-1', '27000000', '2160', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_tallum_glaive_i00');
  300. INSERT INTO `weapon` VALUES ('306', 'Dragon Claw Axe', 'lrhand', 'true', '1820', '1', '1', 's', '251', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '121', '-1', '35300000', '1765', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dragon_hunter_axe_i00');
  301. INSERT INTO `weapon` VALUES ('307', 'Aurakyria Lance', 'lrhand', 'true', '1800', '1', '1', 's', '269', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '128', '-1', '0', '0', 'false', 'false', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_saint_spear_i00');
  302. INSERT INTO `weapon` VALUES ('308', 'Buffalo\'s Horn', 'rhand', 'false', '660', '1', '1', 'none', '6', '10', 'etc', '8', '0.00000', '0', '0', '0', '379', '0', '8', '-1', '768', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_buffalo_horn_i00');
  303. INSERT INTO `weapon` VALUES ('309', 'Tears of Eva', 'rhand', 'false', '630', '2', '2', 'none', '19', '10', 'etc', '8', '0.00000', '0', '0', '0', '379', '0', '22', '-1', '136000', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_tears_of_eva_i00');
  304. INSERT INTO `weapon` VALUES ('310', 'Relic of The Saints', 'rhand', 'false', '610', '2', '2', 'none', '19', '10', 'etc', '8', '0.00000', '0', '0', '0', '379', '0', '22', '-1', '136000', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_apprentices_spellbook_i00');
  305. INSERT INTO `weapon` VALUES ('311', 'Crucifix of Blessing', 'rhand', 'false', '620', '2', '2', 'none', '25', '10', 'etc', '8', '0.00000', '0', '0', '0', '379', '0', '28', '-1', '244000', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_crucifix_of_blessing_i00');
  306. INSERT INTO `weapon` VALUES ('312', 'Branch of Life', 'rhand', 'true', '620', '2', '2', 'd', '32', '10', 'etc', '8', '0.00000', '0', '0', '0', '379', '0', '35', '-1', '409000', '743', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_branch_of_life_i00');
  307. INSERT INTO `weapon` VALUES ('313', 'Temptation of Abyss', 'rhand', 'true', '610', '2', '2', 'd', '32', '10', 'etc', '8', '0.00000', '0', '0', '0', '379', '0', '35', '-1', '409000', '743', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_temptation_of_abyss_i00');
  308. INSERT INTO `weapon` VALUES ('314', 'Proof of Revenge', 'rhand', 'true', '600', '2', '2', 'd', '32', '10', 'etc', '8', '0.00000', '0', '0', '0', '379', '0', '35', '-1', '409000', '743', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_proof_of_revenge_i00');
  309. INSERT INTO `weapon` VALUES ('315', 'Divine Tome', 'rhand', 'true', '570', '2', '2', 'd', '41', '10', 'etc', '8', '0.00000', '0', '0', '0', '379', '0', '43', '-1', '644000', '1170', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_divine_tome_i00');
  310. INSERT INTO `weapon` VALUES ('316', 'Blood of Saints', 'rhand', 'true', '580', '2', '2', 'd', '51', '10', 'etc', '8', '0.00000', '0', '0', '0', '379', '0', '52', '-1', '967000', '1758', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_blood_of_saints_i00');
  311. INSERT INTO `weapon` VALUES ('317', 'Tome of Blood', 'rhand', 'true', '570', '2', '2', 'd', '51', '10', 'etc', '8', '0.00000', '0', '0', '0', '379', '0', '52', '-1', '967000', '1758', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_tome_of_blood_i00');
  312. INSERT INTO `weapon` VALUES ('318', 'Crucifix of Blood', 'rhand', 'true', '540', '3', '3', 'd', '63', '10', 'etc', '8', '0.00000', '0', '0', '0', '379', '0', '63', '-1', '1400000', '2545', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_crucifix_of_blood_i00');
  313. INSERT INTO `weapon` VALUES ('319', 'Eye of Infinity', 'rhand', 'true', '1600', '3', '3', 'd', '63', '10', 'etc', '8', '0.00000', '0', '0', '0', '379', '0', '63', '-1', '1400000', '2545', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_apprentices_spellbook_i00');
  314. INSERT INTO `weapon` VALUES ('320', 'Blue Crystal Skull', 'rhand', 'true', '1600', '3', '3', 'd', '67', '10', 'etc', '8', '0.00000', '0', '0', '0', '379', '0', '66', '-1', '1520000', '2763', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_apprentices_spellbook_i00');
  315. INSERT INTO `weapon` VALUES ('321', 'Demon Fangs', 'rhand', 'true', '1600', '3', '3', 'd', '67', '10', 'etc', '8', '0.00000', '0', '0', '0', '379', '0', '66', '-1', '1520000', '2763', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_demon_fangs_i00');
  316. INSERT INTO `weapon` VALUES ('322', 'Vajra Wands', 'rhand', 'true', '1600', '3', '3', 'd', '74', '10', 'etc', '8', '0.00000', '0', '0', '0', '379', '0', '72', '-1', '1800000', '3272', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_apprentices_spellbook_i00');
  317. INSERT INTO `weapon` VALUES ('323', 'Ancient Reagent', 'rhand', 'true', '1600', '3', '3', 'd', '74', '10', 'etc', '8', '0.00000', '0', '0', '0', '379', '0', '72', '-1', '1800000', '3272', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_apprentices_spellbook_i00');
  318. INSERT INTO `weapon` VALUES ('324', 'Tears of Fairy', 'rhand', 'true', '1600', '2', '2', 'c', '98', '10', 'etc', '8', '0.00000', '0', '0', '0', '379', '0', '91', '-1', '2870000', '1148', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_apprentices_spellbook_i00');
  319. INSERT INTO `weapon` VALUES ('325', 'Horn of Glory', 'rhand', 'true', '540', '2', '2', 'c', '98', '10', 'etc', '8', '0.00000', '0', '0', '0', '379', '0', '91', '-1', '2870000', '1148', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_horn_of_glory_i00');
  320. INSERT INTO `weapon` VALUES ('326', 'Heathen\'s Book', 'rhand', 'true', '560', '3', '3', 'c', '111', '10', 'etc', '8', '0.00000', '0', '0', '0', '379', '0', '101', '-1', '4300000', '1720', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_heathens_book_i00');
  321. INSERT INTO `weapon` VALUES ('327', 'Hex Doll', 'rhand', 'true', '1600', '3', '3', 'c', '111', '10', 'etc', '8', '0.00000', '0', '0', '0', '379', '0', '101', '-1', '4300000', '1720', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_apprentices_spellbook_i00');
  322. INSERT INTO `weapon` VALUES ('328', 'Candle of Wisdom', 'rhand', 'true', '1600', '3', '3', 'c', '125', '10', 'etc', '8', '0.00000', '0', '0', '0', '379', '0', '111', '-1', '6130000', '2452', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_apprentices_spellbook_i00');
  323. INSERT INTO `weapon` VALUES ('329', 'Blessed Branch', 'rhand', 'true', '800', '3', '3', 'c', '125', '10', 'etc', '8', '0.00000', '0', '0', '0', '379', '0', '111', '-1', '6130000', '2452', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_apprentices_spellbook_i00');
  324. INSERT INTO `weapon` VALUES ('330', 'Phoenix Feather', 'rhand', 'true', '800', '3', '3', 'c', '125', '10', 'etc', '8', '0.00000', '0', '0', '0', '379', '0', '111', '-1', '6130000', '2452', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_apprentices_spellbook_i00');
  325. INSERT INTO `weapon` VALUES ('331', 'Cerberus Eye', 'rhand', 'true', '1600', '3', '3', 'c', '125', '10', 'etc', '8', '0.00000', '0', '0', '0', '379', '0', '111', '-1', '6130000', '2452', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_apprentices_spellbook_i00');
  326. INSERT INTO `weapon` VALUES ('332', 'Scroll of Destruction', 'rhand', 'true', '1600', '3', '3', 'c', '125', '10', 'etc', '8', '0.00000', '0', '0', '0', '379', '0', '111', '-1', '6130000', '2452', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_apprentices_spellbook_i00');
  327. INSERT INTO `weapon` VALUES ('333', 'Claws of Black Dragon', 'rhand', 'true', '1600', '3', '3', 'c', '125', '10', 'etc', '8', '0.00000', '0', '0', '0', '379', '0', '111', '-1', '6130000', '2452', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_apprentices_spellbook_i00');
  328. INSERT INTO `weapon` VALUES ('334', 'Three Eyed Crow\'s Feather', 'rhand', 'true', '1600', '3', '3', 'c', '125', '10', 'etc', '8', '0.00000', '0', '0', '0', '379', '0', '111', '-1', '6130000', '2452', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_apprentices_spellbook_i00');
  329. INSERT INTO `weapon` VALUES ('335', 'Soul Crystal', 'rhand', 'true', '1600', '1', '1', 'b', '155', '10', 'etc', '8', '0.00000', '0', '0', '0', '379', '0', '132', '-1', '13100000', '1746', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_apprentices_spellbook_i00');
  330. INSERT INTO `weapon` VALUES ('336', 'Scroll of Mana', 'rhand', 'true', '1600', '1', '1', 'b', '170', '10', 'etc', '8', '0.00000', '0', '0', '0', '379', '0', '143', '-1', '18300000', '2440', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_apprentices_spellbook_i00');
  331. INSERT INTO `weapon` VALUES ('337', 'Scroll of Massacre', 'rhand', 'true', '1600', '1', '1', 'b', '170', '10', 'etc', '8', '0.00000', '0', '0', '0', '379', '0', '143', '-1', '18300000', '2440', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_apprentices_spellbook_i00');
  332. INSERT INTO `weapon` VALUES ('338', 'Wyvern\'s Skull', 'rhand', 'true', '4800', '1', '1', 'b', '170', '10', 'etc', '8', '0.00000', '0', '0', '0', '379', '0', '143', '-1', '18300000', '2440', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_apprentices_spellbook_i00');
  333. INSERT INTO `weapon` VALUES ('339', 'Blood Crystal', 'rhand', 'true', '1600', '1', '1', 'b', '170', '10', 'etc', '8', '0.00000', '0', '0', '0', '379', '0', '143', '-1', '18300000', '2440', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_apprentices_spellbook_i00');
  334. INSERT INTO `weapon` VALUES ('340', 'Unicorn\'s Horn', 'rhand', 'true', '1600', '1', '1', 'b', '170', '10', 'etc', '8', '0.00000', '0', '0', '0', '379', '0', '143', '-1', '18300000', '2440', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_apprentices_spellbook_i00');
  335. INSERT INTO `weapon` VALUES ('341', 'Forgotten Tome', 'rhand', 'true', '1600', '1', '1', 'a', '186', '10', 'etc', '8', '0.00000', '0', '0', '0', '379', '0', '152', '-1', '27000000', '2160', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_apprentices_spellbook_i00');
  336. INSERT INTO `weapon` VALUES ('342', 'Enchanted Flute', 'rhand', 'true', '1600', '1', '1', 'a', '186', '10', 'etc', '8', '0.00000', '0', '0', '0', '379', '0', '152', '-1', '27000000', '2160', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_apprentices_spellbook_i00');
  337. INSERT INTO `weapon` VALUES ('343', 'Headless Arrow', 'rhand', 'true', '1600', '1', '1', 'a', '186', '10', 'etc', '8', '0.00000', '0', '0', '0', '379', '0', '152', '-1', '27000000', '2160', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_apprentices_spellbook_i00');
  338. INSERT INTO `weapon` VALUES ('344', 'Proof of Overlord', 'rhand', 'true', '1600', '1', '1', 'a', '186', '10', 'etc', '8', '0.00000', '0', '0', '0', '379', '0', '152', '-1', '27000000', '2160', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_apprentices_spellbook_i00');
  339. INSERT INTO `weapon` VALUES ('345', 'Deathbringer Sword', 'rhand', 'true', '4800', '1', '1', 'a', '186', '10', 'etc', '8', '0.00000', '0', '0', '0', '379', '0', '152', '-1', '27000000', '2160', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_apprentices_spellbook_i00');
  340. INSERT INTO `weapon` VALUES ('346', 'Tears of Fallen Angel', 'rhand', 'true', '1600', '1', '1', 's', '201', '10', 'etc', '8', '0.00000', '0', '0', '0', '379', '0', '162', '-1', '35300000', '1765', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_apprentices_spellbook_i00');
  341. INSERT INTO `weapon` VALUES ('625', 'Bone Shield', 'lhand', 'false', '1380', '0', '0', 'none', '0', '0', 'none', '0', '0.00000', '-8', '90', '20', '0', '0', '0', '-1', '12900', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.shield_bone_shield_i00');
  342. INSERT INTO `weapon` VALUES ('626', 'Bronze Shield', 'lhand', 'true', '1370', '0', '0', 'd', '0', '0', 'none', '0', '0.00000', '-8', '101', '20', '0', '0', '0', '-1', '21900', '39', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.shield_bronze_shield_i00');
  343. INSERT INTO `weapon` VALUES ('627', 'Aspis', 'lhand', 'true', '1350', '0', '0', 'd', '0', '0', 'none', '0', '0.00000', '-8', '114', '20', '0', '0', '0', '-1', '35000', '63', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.shield_aspis_i00');
  344. INSERT INTO `weapon` VALUES ('628', 'Hoplon', 'lhand', 'true', '1340', '0', '0', 'd', '0', '0', 'none', '0', '0.00000', '-8', '128', '20', '0', '0', '0', '-1', '53300', '96', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.shield_hoplon_i00');
  345. INSERT INTO `weapon` VALUES ('629', 'Kite Shield', 'lhand', 'true', '1320', '0', '0', 'd', '0', '0', 'none', '0', '0.00000', '-8', '142', '20', '0', '0', '0', '-1', '78400', '142', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.shield_kite_shield_i00');
  346. INSERT INTO `weapon` VALUES ('630', 'Square Shield', 'lhand', 'true', '1310', '0', '0', 'd', '0', '0', 'none', '0', '0.00000', '-8', '154', '20', '0', '0', '0', '-1', '103000', '187', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.shield_square_shield_i00');
  347. INSERT INTO `weapon` VALUES ('631', 'Eldarake', 'lhand', 'true', '1290', '0', '0', 'c', '0', '0', 'none', '0', '0.00000', '-8', '166', '20', '0', '0', '0', '-1', '133000', '53', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.shield_eldarake_i00');
  348. INSERT INTO `weapon` VALUES ('632', 'Knight\'s Shield', 'lhand', 'true', '1260', '0', '0', 'c', '0', '0', 'none', '0', '0.00000', '-8', '178', '20', '0', '0', '0', '-1', '169000', '67', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.shield_knight_shield_i00');
  349. INSERT INTO `weapon` VALUES ('633', 'Zubei\'s Shield', 'lhand', 'true', '1210', '0', '0', 'b', '0', '0', 'none', '0', '0.00000', '-8', '216', '20', '0', '0', '0', '-1', '545000', '72', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.shield_shrnoens_shield_i00');
  350. INSERT INTO `weapon` VALUES ('634', 'Dragon Shield', 'lhand', 'true', '1170', '0', '0', 's', '0', '0', 'none', '0', '0.00000', '-8', '269', '20', '0', '0', '0', '-1', '2510000', '125', 'true', 'false', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.shield_shield_of_nightmare_i00');
  351. INSERT INTO `weapon` VALUES ('635', 'Wolf Shield', 'lhand', 'true', '640', '0', '0', 'b', '0', '0', 'none', '0', '0.00000', '-8', '216', '20', '0', '0', '0', '-1', '545000', '72', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.shield_small_shield_i00');
  352. INSERT INTO `weapon` VALUES ('636', 'Shining Dragon Shield', 'lhand', 'true', '720', '0', '0', 'b', '0', '0', 'none', '0', '0.00000', '-8', '230', '20', '0', '0', '0', '-1', '845000', '112', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.shield_doom_shield_i00');
  353. INSERT INTO `weapon` VALUES ('637', 'Shield of Valor', 'lhand', 'true', '720', '0', '0', 'b', '0', '0', 'none', '0', '0.00000', '-8', '230', '20', '0', '0', '0', '-1', '845000', '112', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.shield_small_shield_i00');
  354. INSERT INTO `weapon` VALUES ('638', 'Glorious Shield', 'lhand', 'true', '800', '0', '0', 'b', '0', '0', 'none', '0', '0.00000', '-8', '216', '20', '0', '0', '0', '-1', '545000', '72', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.shield_shield_of_victory_i00');
  355. INSERT INTO `weapon` VALUES ('639', 'Red Flame Shield', 'lhand', 'true', '960', '0', '0', 'b', '0', '0', 'none', '0', '0.00000', '-8', '230', '20', '0', '0', '0', '-1', '845000', '112', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.shield_tower_shield_i00');
  356. INSERT INTO `weapon` VALUES ('640', 'Elven Crystal Shield', 'lhand', 'true', '720', '0', '0', 'b', '0', '0', 'none', '0', '0.00000', '-8', '216', '20', '0', '0', '0', '-1', '545000', '72', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.shield_masterpiece_shield_i00');
  357. INSERT INTO `weapon` VALUES ('641', 'Dark Crystal Shield', 'lhand', 'true', '1190', '0', '0', 'a', '0', '0', 'none', '0', '0.00000', '-8', '243', '20', '0', '0', '0', '-1', '1220000', '97', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.shield_dark_crystal_shield_i00');
  358. INSERT INTO `weapon` VALUES ('642', 'Elven Vagian Shield', 'lhand', 'true', '560', '0', '0', 'b', '0', '0', 'none', '0', '0.00000', '-8', '216', '20', '0', '0', '0', '-1', '545000', '72', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.shield_shield_of_victory_i00');
  359. INSERT INTO `weapon` VALUES ('643', 'Dark Vagian Shield', 'lhand', 'true', '560', '0', '0', 'b', '0', '0', 'none', '0', '0.00000', '-8', '230', '20', '0', '0', '0', '-1', '845000', '112', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.shield_shield_of_victory_i00');
  360. INSERT INTO `weapon` VALUES ('644', 'Hell Shield', 'lhand', 'true', '640', '0', '0', 'b', '0', '0', 'none', '0', '0.00000', '-8', '230', '20', '0', '0', '0', '-1', '845000', '112', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.shield_shield_of_grace_i00');
  361. INSERT INTO `weapon` VALUES ('645', 'Art of Shield', 'lhand', 'true', '560', '0', '0', 'b', '0', '0', 'none', '0', '0.00000', '-8', '216', '20', '0', '0', '0', '-1', '545000', '72', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.shield_knight_shield_i00');
  362. INSERT INTO `weapon` VALUES ('646', 'Shield of Silence', 'lhand', 'true', '640', '0', '0', 'b', '0', '0', 'none', '0', '0.00000', '-8', '216', '20', '0', '0', '0', '-1', '545000', '72', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.shield_shield_of_assistance_i00');
  363. INSERT INTO `weapon` VALUES ('647', 'Gust Shield', 'lhand', 'true', '720', '0', '0', 'b', '0', '0', 'none', '0', '0.00000', '-8', '230', '20', '0', '0', '0', '-1', '845000', '112', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.shield_shield_of_grace_i00');
  364. INSERT INTO `weapon` VALUES ('648', 'Prairie Shield', 'lhand', 'true', '800', '0', '0', 'b', '0', '0', 'none', '0', '0.00000', '-8', '216', '20', '0', '0', '0', '-1', '545000', '72', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.shield_knight_shield_i00');
  365. INSERT INTO `weapon` VALUES ('649', 'Shield of The Underworld', 'lhand', 'true', '880', '0', '0', 'b', '0', '0', 'none', '0', '0.00000', '-8', '230', '20', '0', '0', '0', '-1', '845000', '112', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.shield_knight_shield_i00');
  366. INSERT INTO `weapon` VALUES ('650', 'Shield of Concentration', 'lhand', 'true', '960', '0', '0', 'b', '0', '0', 'none', '0', '0.00000', '-8', '216', '20', '0', '0', '0', '-1', '545000', '72', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.shield_shield_of_grace_i00');
  367. INSERT INTO `weapon` VALUES ('651', 'Ace\'s Shield', 'lhand', 'true', '1040', '0', '0', 'b', '0', '0', 'none', '0', '0.00000', '-8', '230', '20', '0', '0', '0', '-1', '845000', '112', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.shield_shield_of_assistance_i00');
  368. INSERT INTO `weapon` VALUES ('652', 'Guardian\'s Shield', 'lhand', 'true', '1120', '0', '0', 'b', '0', '0', 'none', '0', '0.00000', '-8', '216', '20', '0', '0', '0', '-1', '545000', '72', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.shield_knight_shield_i00');
  369. INSERT INTO `weapon` VALUES ('653', 'Marksman Shield', 'lhand', 'true', '1200', '0', '0', 'b', '0', '0', 'none', '0', '0.00000', '-8', '230', '20', '0', '0', '0', '-1', '845000', '112', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.shield_doom_shield_i00');
  370. INSERT INTO `weapon` VALUES ('654', 'Shield of Mana', 'lhand', 'true', '480', '0', '0', 'b', '0', '0', 'none', '0', '0.00000', '-8', '216', '20', '0', '0', '0', '-1', '545000', '72', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.shield_shield_of_pledge_i00');
  371. INSERT INTO `weapon` VALUES ('655', 'Sage\'s Shield', 'lhand', 'true', '560', '0', '0', 'b', '0', '0', 'none', '0', '0.00000', '-8', '230', '20', '0', '0', '0', '-1', '845000', '112', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.shield_sages_shield_i00');
  372. INSERT INTO `weapon` VALUES ('656', 'Paradia Shield', 'lhand', 'true', '480', '0', '0', 'b', '0', '0', 'none', '0', '0.00000', '-8', '216', '20', '0', '0', '0', '-1', '545000', '72', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.shield_knight_shield_i00');
  373. INSERT INTO `weapon` VALUES ('657', 'Inferno Shield', 'lhand', 'true', '560', '0', '0', 'b', '0', '0', 'none', '0', '0.00000', '-8', '230', '20', '0', '0', '0', '-1', '845000', '112', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.shield_shield_of_victory_i00');
  374. INSERT INTO `weapon` VALUES ('658', 'Shield of Black Ore', 'lhand', 'true', '560', '0', '0', 'b', '0', '0', 'none', '0', '0.00000', '-8', '230', '20', '0', '0', '0', '-1', '845000', '112', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.shield_composite_shield_i00');
  375. INSERT INTO `weapon` VALUES ('659', 'Shield of Summoning', 'lhand', 'true', '480', '0', '0', 'b', '0', '0', 'none', '0', '0.00000', '-8', '216', '20', '0', '0', '0', '-1', '545000', '72', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.shield_shield_of_sola_eclipse_i00');
  376. INSERT INTO `weapon` VALUES ('660', 'Otherworldly Shield', 'lhand', 'true', '560', '0', '0', 'b', '0', '0', 'none', '0', '0.00000', '-8', '230', '20', '0', '0', '0', '-1', '845000', '112', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.shield_round_shield_i00');
  377. INSERT INTO `weapon` VALUES ('661', 'Elemental Shield', 'lhand', 'true', '480', '0', '0', 'b', '0', '0', 'none', '0', '0.00000', '-8', '216', '20', '0', '0', '0', '-1', '545000', '72', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.shield_knight_shield_i00');
  378. INSERT INTO `weapon` VALUES ('662', 'Shield of Phantom', 'lhand', 'true', '560', '0', '0', 'b', '0', '0', 'none', '0', '0.00000', '-8', '230', '20', '0', '0', '0', '-1', '845000', '112', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.shield_shield_of_assistance_i00');
  379. INSERT INTO `weapon` VALUES ('663', 'Shield of Grace', 'lhand', 'true', '480', '0', '0', 'b', '0', '0', 'none', '0', '0.00000', '-8', '216', '20', '0', '0', '0', '-1', '545000', '72', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.shield_leather_shield_i00');
  380. INSERT INTO `weapon` VALUES ('664', 'Shield of Holy Spirit', 'lhand', 'true', '560', '0', '0', 'b', '0', '0', 'none', '0', '0.00000', '-8', '230', '20', '0', '0', '0', '-1', '845000', '112', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.shield_composite_shield_i00');
  381. INSERT INTO `weapon` VALUES ('665', 'Phoenix Shield', 'lhand', 'true', '480', '0', '0', 'b', '0', '0', 'none', '0', '0.00000', '-8', '216', '20', '0', '0', '0', '-1', '545000', '72', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.shield_knight_shield_i00');
  382. INSERT INTO `weapon` VALUES ('666', 'Cerberus Shield', 'lhand', 'true', '560', '0', '0', 'b', '0', '0', 'none', '0', '0.00000', '-8', '230', '20', '0', '0', '0', '-1', '845000', '112', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.shield_doom_shield_i00');
  383. INSERT INTO `weapon` VALUES ('667', 'Shield of Aid', 'lhand', 'true', '480', '0', '0', 'b', '0', '0', 'none', '0', '0.00000', '-8', '216', '20', '0', '0', '0', '-1', '545000', '72', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.shield_shield_of_assistance_i00');
  384. INSERT INTO `weapon` VALUES ('668', 'Shield of Blessing', 'lhand', 'true', '560', '0', '0', 'b', '0', '0', 'none', '0', '0.00000', '-8', '230', '20', '0', '0', '0', '-1', '845000', '112', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.shield_shield_of_pledge_i00');
  385. INSERT INTO `weapon` VALUES ('669', 'Flame Shield', 'lhand', 'true', '480', '0', '0', 'b', '0', '0', 'none', '0', '0.00000', '-8', '216', '20', '0', '0', '0', '-1', '545000', '72', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.shield_composite_shield_i00');
  386. INSERT INTO `weapon` VALUES ('670', 'Shield of Bravery', 'lhand', 'true', '560', '0', '0', 'b', '0', '0', 'none', '0', '0.00000', '-8', '230', '20', '0', '0', '0', '-1', '845000', '112', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.shield_shield_of_assistance_i00');
  387. INSERT INTO `weapon` VALUES ('671', 'Blood Shield', 'lhand', 'true', '480', '0', '0', 'b', '0', '0', 'none', '0', '0.00000', '-8', '216', '20', '0', '0', '0', '-1', '545000', '72', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.shield_knight_shield_i00');
  388. INSERT INTO `weapon` VALUES ('672', 'Absolute Shield', 'lhand', 'true', '560', '0', '0', 'b', '0', '0', 'none', '0', '0.00000', '-8', '230', '20', '0', '0', '0', '-1', '845000', '112', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.shield_knight_shield_i00');
  389. INSERT INTO `weapon` VALUES ('673', 'Avadon Shield', 'lhand', 'true', '1210', '0', '0', 'b', '0', '0', 'none', '0', '0.00000', '-8', '216', '20', '0', '0', '0', '-1', '545000', '72', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.shield_avadon_shield_i00');
  390. INSERT INTO `weapon` VALUES ('674', 'Divine Shield', 'lhand', 'true', '560', '0', '0', 'b', '0', '0', 'none', '0', '0.00000', '-8', '230', '20', '0', '0', '0', '-1', '845000', '112', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.shield_knight_shield_i00');
  391. INSERT INTO `weapon` VALUES ('738', 'Sword of Solidarity', 'rhand', 'false', '1300', '1', '1', 'none', '12', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '9', '-1', '18500', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_long_sword_i00');
  392. INSERT INTO `weapon` VALUES ('743', 'Sword of Sentinel', 'rhand', 'false', '1300', '1', '1', 'none', '14', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '11', '-1', '33600', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_broad_sword_i00');
  393. INSERT INTO `weapon` VALUES ('744', 'Staff of Sentinel', 'lrhand', 'false', '1800', '1', '1', 'none', '13', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '14', '-1', '33600', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_cedar_staff_i00');
  394. INSERT INTO `weapon` VALUES ('747', 'Wand of Adept', 'rhand', 'false', '1300', '1', '1', 'none', '11', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '13', '-1', '25500', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_apprentices_wand_i00');
  395. INSERT INTO `weapon` VALUES ('748', 'Gallint\'s Oak Wand', 'rhand', 'false', '1350', '1', '1', 'none', '10', '20', 'blunt', '4', '4.00000', '0', '0', '0', '325', '0', '10', '-1', '0', '0', 'false', 'false', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_club_i00');
  396. INSERT INTO `weapon` VALUES ('749', '0', 'lrhand', 'true', '100', '0', '0', 'd', '21', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '32', '-1', '35800', '5', 'true', 'false', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_apprentices_staff_i00');
  397. INSERT INTO `weapon` VALUES ('754', 'Red Sunset Staff', 'lrhand', 'false', '1700', '1', '1', 'none', '13', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '13', '-1', '25500', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_cedar_staff_i00');
  398. INSERT INTO `weapon` VALUES ('945', 'Skeleton Buckler', 'lhand', 'false', '1400', '0', '0', 'none', '0', '0', 'none', '0', '0.00000', '-8', '69', '20', '0', '0', '0', '-1', '3440', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.shield_skeleton_buckler_i00');
  399. INSERT INTO `weapon` VALUES ('946', 'Skeleton Dagger', 'rhand', 'false', '1100', '2', '2', 'none', '16', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '13', '-1', '66600', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dagger_i00');
  400. INSERT INTO `weapon` VALUES ('975', 'Blood Saber', 'rhand', 'false', '1450', '1', '1', 'none', '14', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '11', '-1', '33600', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_broad_sword_i00');
  401. INSERT INTO `weapon` VALUES ('981', 'Red Sunset Sword', 'lrhand', 'false', '1300', '1', '1', 'none', '16', '10', 'bigsword', '8', '0.00000', '0', '0', '0', '325', '0', '10', '-1', '25500', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_brandish_i00');
  402. INSERT INTO `weapon` VALUES ('989', 'Eldritch Dagger', 'rhand', 'false', '1130', '1', '1', 'none', '11', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '10', '-1', '25500', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_knife_i00');
  403. INSERT INTO `weapon` VALUES ('1142', 'Rusted Bronze Sword', 'rhand', 'false', '1400', '2', '2', 'none', '18', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '21', '-1', '0', '0', 'false', 'false', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_broad_sword_i00');
  404. INSERT INTO `weapon` VALUES ('1181', 'Neti\'s Bow', 'lrhand', 'false', '1850', '7', '2', 'none', '45', '5', 'bow', '12', '-3.00000', '0', '0', '0', '293', '2', '16', '-1', '0', '0', 'false', 'false', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_bow_i00');
  405. INSERT INTO `weapon` VALUES ('1182', 'Neti\'s Dagger', 'rhand', 'false', '1000', '2', '2', 'none', '19', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '16', '-1', '0', '0', 'false', 'false', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_knife_i00');
  406. INSERT INTO `weapon` VALUES ('1213', 'Guard\'s Bow', 'lrhand', 'false', '1800', '7', '2', 'none', '49', '5', 'bow', '12', '-3.00000', '0', '0', '0', '293', '3', '17', '-1', '136000', '0', 'false', 'false', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_bow_i00');
  407. INSERT INTO `weapon` VALUES ('1295', 'Long Sword', 'rhand', 'false', '200', '2', '2', 'none', '22', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '6', '-1', '66600', '0', 'false', 'true', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_long_sword_i00');
  408. INSERT INTO `weapon` VALUES ('1296', 'Gladius', 'rhand', 'false', '300', '2', '2', 'none', '22', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '6', '-1', '66600', '0', 'false', 'true', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_gladius_i00');
  409. INSERT INTO `weapon` VALUES ('1297', 'Bastard Sword', 'rhand', 'false', '400', '2', '2', 'none', '22', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '6', '-1', '66600', '0', 'false', 'true', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_bastard_sword_i00');
  410. INSERT INTO `weapon` VALUES ('1298', 'Caliburs', 'rhand', 'false', '500', '2', '2', 'none', '22', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '6', '-1', '66600', '0', 'false', 'true', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_caliburs_i00');
  411. INSERT INTO `weapon` VALUES ('1299', 'Great Sword', 'lrhand', 'false', '500', '3', '3', 'none', '200', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '6', '-1', '3340000', '0', 'false', 'true', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_2hs03');
  412. INSERT INTO `weapon` VALUES ('1300', 'Apprentice\'s Rod', 'rhand', 'false', '80', '2', '2', 'none', '22', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '6', '-1', '66600', '0', 'false', 'true', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_apprentices_rod_i00');
  413. INSERT INTO `weapon` VALUES ('1301', 'Big Hammer', 'rhand', 'false', '300', '2', '2', 'none', '22', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '6', '-1', '66600', '0', 'false', 'true', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_big_hammer_i00');
  414. INSERT INTO `weapon` VALUES ('1302', 'Bec de Corbin', 'lrhand', 'false', '750', '2', '2', 'none', '22', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '6', '-1', '66600', '0', 'false', 'true', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_bech_de_corbin_i00');
  415. INSERT INTO `weapon` VALUES ('1303', 'Lance', 'lrhand', 'false', '750', '2', '2', 'none', '1', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '6', '-1', '66600', '0', 'false', 'true', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_lancia_i00');
  416. INSERT INTO `weapon` VALUES ('1304', 'Conjuror\'s Staff', 'lrhand', 'false', '150', '2', '2', 'none', '15', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '17', '-1', '66600', '0', 'false', 'true', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_apprentices_staff_i00');
  417. INSERT INTO `weapon` VALUES ('1305', 'Knife', 'rhand', 'false', '120', '2', '2', 'none', '1', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '6', '-1', '66600', '0', 'false', 'true', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_knife_i00');
  418. INSERT INTO `weapon` VALUES ('1306', 'Crafted Dagger', 'rhand', 'false', '100', '2', '2', 'none', '22', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '6', '-1', '66600', '0', 'false', 'true', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_knife_i00');
  419. INSERT INTO `weapon` VALUES ('1307', 'Bow', 'lrhand', 'false', '150', '9', '3', 'none', '120', '5', 'bow', '12', '-3.00000', '0', '0', '0', '293', '7', '6', '-1', '3340000', '0', 'false', 'true', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_bow_i00');
  420. INSERT INTO `weapon` VALUES ('1328', 'Shield of Grace', 'lhand', 'false', '300', '0', '0', 'none', '0', '0', 'none', '0', '0.00000', '-8', '71', '20', '0', '0', '0', '-1', '1090000', '0', 'false', 'true', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.shield_leather_shield_i00');
  421. INSERT INTO `weapon` VALUES ('1329', 'Shield of Victory', 'lhand', 'false', '350', '0', '0', 'none', '0', '0', 'none', '0', '0.00000', '-8', '71', '20', '0', '0', '0', '-1', '1430000', '0', 'false', 'true', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.shield_small_shield_i00');
  422. INSERT INTO `weapon` VALUES ('1330', 'Zubei\'s Shield', 'lhand', 'false', '500', '0', '0', 'none', '0', '0', 'none', '0', '0.00000', '-8', '71', '20', '0', '0', '0', '-1', '1850000', '0', 'false', 'true', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.shield_buckler_i00');
  423. INSERT INTO `weapon` VALUES ('1331', 'Otherworldly Shield', 'lhand', 'false', '350', '0', '0', 'none', '0', '0', 'none', '0', '0.00000', '-8', '71', '20', '0', '0', '0', '-1', '1430000', '0', 'false', 'true', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.shield_round_shield_i00');
  424. INSERT INTO `weapon` VALUES ('1332', 'Knight\'s Shield', 'lhand', 'false', '500', '0', '0', 'none', '0', '0', 'none', '0', '0.00000', '-8', '71', '20', '0', '0', '0', '-1', '321000', '0', 'false', 'true', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.shield_tower_shield_i00');
  425. INSERT INTO `weapon` VALUES ('1333', 'Brandish', 'lrhand', 'false', '2250', '2', '2', 'none', '21', '10', 'bigsword', '8', '0.00000', '0', '0', '0', '325', '0', '12', '-1', '54100', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_brandish_i00');
  426. INSERT INTO `weapon` VALUES ('1376', 'Guard Spear', 'lrhand', 'true', '300', '2', '2', 'd', '50', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '26', '-1', '409000', '743', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_guard_spear_i00');
  427. INSERT INTO `weapon` VALUES ('1471', 'Silenos Blowgun', 'rhand', 'true', '300', '2', '2', 'd', '5', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '5', '-1', '409000', '743', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_monster_i00');
  428. INSERT INTO `weapon` VALUES ('1472', 'Dreadbane', 'lrhand', 'true', '300', '2', '2', 'd', '50', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '26', '-1', '409000', '743', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_monster_i00');
  429. INSERT INTO `weapon` VALUES ('1510', 'Butcher\'s Sword', 'rhand', 'false', '1450', '1', '1', 'none', '13', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '10', '-1', '25500', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_orcish_sword_i00');
  430. INSERT INTO `weapon` VALUES ('1511', 'Silversmith Hammer', 'rhand', 'false', '1860', '1', '1', 'none', '13', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '10', '-1', '25500', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_iron_hammer_i00');
  431. INSERT INTO `weapon` VALUES ('1660', 'Cursed Maingauche', 'rhand', 'true', '1070', '3', '3', 'd', '62', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '42', '-1', '1400000', '2545', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_maingauche_i01');
  432. INSERT INTO `weapon` VALUES ('2368', 'Training Gloves', 'lrhand', 'false', '1580', '1', '1', 'none', '7', '5', 'dualfist', '4', '4.00000', '0', '0', '0', '325', '0', '5', '-1', '138', '0', 'false', 'false', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_training_gloves_i00');
  433. INSERT INTO `weapon` VALUES ('2369', 'Squire\'s Sword', 'rhand', 'false', '1600', '1', '1', 'none', '6', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '5', '-1', '138', '0', 'false', 'false', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_squires_sword_i00');
  434. INSERT INTO `weapon` VALUES ('2370', 'Guild Member\'s Club', 'rhand', 'false', '1910', '1', '1', 'none', '6', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '5', '-1', '138', '0', 'false', 'false', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_club_i00');
  435. INSERT INTO `weapon` VALUES ('2371', 'Fist of Butcher', 'lrhand', 'false', '1400', '1', '1', 'none', '16', '5', 'dualfist', '4', '4.00000', '0', '0', '0', '325', '0', '10', '-1', '25500', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_iron_glove_i00');
  436. INSERT INTO `weapon` VALUES ('2372', 'Dagger of Adept', 'rhand', 'false', '1050', '1', '1', 'none', '11', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '10', '-1', '25500', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_doomed_dagger_i00');
  437. INSERT INTO `weapon` VALUES ('2373', 'Eldritch Staff', 'lrhand', 'false', '1050', '1', '1', 'none', '13', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '13', '-1', '25500', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_apprentices_staff_i00');
  438. INSERT INTO `weapon` VALUES ('2374', 'Red Sunset Dagger', 'rhand', 'false', '1100', '1', '1', 'none', '11', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '10', '-1', '25500', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_doomed_dagger_i00');
  439. INSERT INTO `weapon` VALUES ('2493', 'Brigandine Shield', 'lhand', 'true', '1320', '0', '0', 'd', '0', '0', 'none', '0', '0.00000', '-8', '142', '20', '0', '0', '0', '-1', '78400', '142', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.shield_brigandine_shield_i00');
  440. INSERT INTO `weapon` VALUES ('2494', 'Plate Shield', 'lhand', 'true', '1310', '0', '0', 'd', '0', '0', 'none', '0', '0.00000', '-8', '154', '20', '0', '0', '0', '-1', '103000', '187', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.shield_plate_shield_i00');
  441. INSERT INTO `weapon` VALUES ('2495', 'Chain Shield', 'lhand', 'true', '1280', '0', '0', 'c', '0', '0', 'none', '0', '0.00000', '-8', '166', '20', '0', '0', '0', '-1', '133000', '53', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.shield_chain_shield_i00');
  442. INSERT INTO `weapon` VALUES ('2496', 'Dwarven Chain Shield', 'lhand', 'true', '1280', '0', '0', 'c', '0', '0', 'none', '0', '0.00000', '-8', '174', '20', '0', '0', '0', '-1', '156000', '62', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.shield_dwarven_chain_shield_i00');
  443. INSERT INTO `weapon` VALUES ('2497', 'Full Plate Shield', 'lhand', 'true', '1220', '0', '0', 'c', '0', '0', 'none', '0', '0.00000', '-8', '203', '20', '0', '0', '0', '-1', '375000', '150', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.shield_full_plate_shield_i00');
  444. INSERT INTO `weapon` VALUES ('2498', 'Shield of Nightmare', 'lhand', 'true', '1180', '0', '0', 'a', '0', '0', 'none', '0', '0.00000', '-8', '256', '20', '0', '0', '0', '-1', '1850000', '148', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.shield_shield_of_nightmare_i00');
  445. INSERT INTO `weapon` VALUES ('2499', 'Elven Long Sword', 'rhand', 'true', '1440', '3', '3', 'd', '92', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '54', '-1', '1800000', '3272', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_elven_long_sword_i00');
  446. INSERT INTO `weapon` VALUES ('2500', 'Dark Legion\'s Edge', 'rhand', 'true', '1320', '1', '1', 'a', '232', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '114', '-1', '27000000', '2160', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dark_legions_edge_i00');
  447. INSERT INTO `weapon` VALUES ('2501', 'Bone Club', 'rhand', 'false', '1850', '2', '2', 'none', '24', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '17', '-1', '136000', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_club_i00');
  448. INSERT INTO `weapon` VALUES ('2502', 'Dwarven War Hammer', 'rhand', 'true', '1670', '2', '2', 'c', '122', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '68', '-1', '2870000', '1148', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dwarven_warhammer_i00');
  449. INSERT INTO `weapon` VALUES ('2503', 'Yaksa Mace', 'rhand', 'true', '1640', '3', '3', 'c', '156', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '83', '-1', '6130000', '2452', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_yaksa_mace_i00');
  450. INSERT INTO `weapon` VALUES ('2504', 'Meteor Shower', 'rhand', 'true', '1600', '1', '1', 'a', '213', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '107', '-1', '18300000', '1464', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_meteor_shower_i00');
  451. INSERT INTO `weapon` VALUES ('2505', 'Iron Canine', 'wolf', 'false', '100', '1', '1', 'none', '4', '10', 'pet', '8', '0.00000', '0', '0', '0', '277', '0', '5', '-1', '14000', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.etc_pet_arms_i00');
  452. INSERT INTO `weapon` VALUES ('2507', 'Lizardspear', 'rhand', 'false', '300', '2', '2', 'd', '5', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '5', '-1', '409000', '743', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_doomed_dagger_i00');
  453. INSERT INTO `weapon` VALUES ('2516', 'Saber*Saber', 'lrhand', 'true', '2530', '2', '2', 'd', '73', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '37', '-1', '877000', '1594', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dual_sword_i00');
  454. INSERT INTO `weapon` VALUES ('2517', 'Saber*Bastard Sword', 'lrhand', 'true', '2520', '3', '3', 'd', '83', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '41', '-1', '1060000', '1927', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dual_sword_i00');
  455. INSERT INTO `weapon` VALUES ('2518', 'Saber*Spinebone Sword', 'lrhand', 'true', '2530', '3', '3', 'd', '83', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '41', '-1', '1060000', '1927', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dual_sword_i00');
  456. INSERT INTO `weapon` VALUES ('2519', 'Saber*Artisan\'s Sword', 'lrhand', 'true', '2520', '3', '3', 'd', '83', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '41', '-1', '1060000', '1927', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dual_sword_i00');
  457. INSERT INTO `weapon` VALUES ('2520', 'Saber*Knight\'s Sword', 'lrhand', 'true', '2510', '3', '3', 'd', '83', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '41', '-1', '1060000', '1927', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dual_sword_i00');
  458. INSERT INTO `weapon` VALUES ('2521', 'Saber*Crimson Sword', 'lrhand', 'true', '2530', '3', '3', 'd', '96', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '47', '-1', '1400000', '2545', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dual_sword_i00');
  459. INSERT INTO `weapon` VALUES ('2522', 'Saber*Elven Sword', 'lrhand', 'true', '2510', '3', '3', 'd', '96', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '47', '-1', '1400000', '2545', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dual_sword_i00');
  460. INSERT INTO `weapon` VALUES ('2523', 'Saber*Sword of Revolution', 'lrhand', 'true', '2420', '2', '2', 'c', '118', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '56', '-1', '1960000', '784', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dual_sword_i00');
  461. INSERT INTO `weapon` VALUES ('2524', 'Saber*Elven Long Sword', 'lrhand', 'true', '2420', '2', '2', 'c', '130', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '61', '-1', '2290000', '916', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dual_sword_i00');
  462. INSERT INTO `weapon` VALUES ('2525', 'Bastard Sword*Bastard Sword', 'lrhand', 'true', '2470', '3', '3', 'd', '96', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '47', '-1', '1400000', '2545', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dual_sword_i00');
  463. INSERT INTO `weapon` VALUES ('2526', 'Bastard Sword*Spinebone Sword', 'lrhand', 'true', '2470', '3', '3', 'd', '96', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '47', '-1', '1400000', '2545', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dual_sword_i00');
  464. INSERT INTO `weapon` VALUES ('2527', 'Bastard Sword*Artisan\'s Sword', 'lrhand', 'true', '2480', '3', '3', 'd', '96', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '47', '-1', '1400000', '2545', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dual_sword_i00');
  465. INSERT INTO `weapon` VALUES ('2528', 'Bastard Sword*Knight\'s Sword', 'lrhand', 'true', '2500', '3', '3', 'd', '96', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '47', '-1', '1400000', '2545', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dual_sword_i00');
  466. INSERT INTO `weapon` VALUES ('2529', 'Bastard Sword*Crimson Sword', 'lrhand', 'true', '2470', '3', '3', 'd', '107', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '51', '-1', '1660000', '3018', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dual_sword_i00');
  467. INSERT INTO `weapon` VALUES ('2530', 'Bastard Sword*Elven Sword', 'lrhand', 'true', '2460', '3', '3', 'd', '107', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '51', '-1', '1660000', '3018', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dual_sword_i00');
  468. INSERT INTO `weapon` VALUES ('2531', 'Bastard Sword*Sword of Revolution', 'lrhand', 'true', '2450', '2', '2', 'c', '124', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '58', '-1', '2120000', '848', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dual_sword_i00');
  469. INSERT INTO `weapon` VALUES ('2532', 'Bastard Sword*Elven Long Sword', 'lrhand', 'true', '2430', '2', '2', 'c', '136', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '63', '-1', '2470000', '988', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dual_sword_i00');
  470. INSERT INTO `weapon` VALUES ('2533', 'Spinebone Sword*Spinebone Sword', 'lrhand', 'true', '2520', '3', '3', 'd', '96', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '47', '-1', '1400000', '2545', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dual_sword_i00');
  471. INSERT INTO `weapon` VALUES ('2534', 'Spinebone Sword*Artisan\'s Sword', 'lrhand', 'true', '2460', '3', '3', 'd', '96', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '47', '-1', '1400000', '2545', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dual_sword_i00');
  472. INSERT INTO `weapon` VALUES ('2535', 'Spinebone Sword*Knight\'s Sword', 'lrhand', 'true', '2470', '3', '3', 'd', '96', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '47', '-1', '1400000', '2545', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dual_sword_i00');
  473. INSERT INTO `weapon` VALUES ('2536', 'Spinebone Sword*Crimson Sword', 'lrhand', 'true', '2520', '3', '3', 'd', '107', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '51', '-1', '1660000', '3018', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dual_sword_i00');
  474. INSERT INTO `weapon` VALUES ('2537', 'Spinebone Sword*Elven Sword', 'lrhand', 'true', '2460', '3', '3', 'd', '107', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '51', '-1', '1660000', '3018', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dual_sword_i00');
  475. INSERT INTO `weapon` VALUES ('2538', 'Spinebone Sword*Sword of Revolution', 'lrhand', 'true', '2460', '2', '2', 'c', '124', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '58', '-1', '2120000', '848', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dual_sword_i00');
  476. INSERT INTO `weapon` VALUES ('2539', 'Spinebone Sword*Elven Long Sword', 'lrhand', 'true', '2390', '2', '2', 'c', '136', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '63', '-1', '2470000', '988', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dual_sword_i00');
  477. INSERT INTO `weapon` VALUES ('2540', 'Artisan\'s Sword*Artisan\'s Sword', 'lrhand', 'true', '2480', '3', '3', 'd', '96', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '47', '-1', '1400000', '2545', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dual_sword_i00');
  478. INSERT INTO `weapon` VALUES ('2541', 'Artisan\'s Sword*Knight\'s Sword', 'lrhand', 'true', '2470', '3', '3', 'd', '96', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '47', '-1', '1400000', '2545', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dual_sword_i00');
  479. INSERT INTO `weapon` VALUES ('2542', 'Artisan\'s Sword*Crimson Sword', 'lrhand', 'true', '2450', '3', '3', 'd', '107', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '51', '-1', '1660000', '3018', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dual_sword_i00');
  480. INSERT INTO `weapon` VALUES ('2543', 'Artisan\'s Sword*Elven Sword', 'lrhand', 'true', '2470', '3', '3', 'd', '107', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '51', '-1', '1660000', '3018', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dual_sword_i00');
  481. INSERT INTO `weapon` VALUES ('2544', 'Artisan\'s Sword*Sword of Revolution', 'lrhand', 'true', '2420', '2', '2', 'c', '124', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '58', '-1', '2120000', '848', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dual_sword_i00');
  482. INSERT INTO `weapon` VALUES ('2545', 'Artisan\'s Sword*Elven Long Sword', 'lrhand', 'true', '2410', '2', '2', 'c', '136', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '63', '-1', '2470000', '988', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dual_sword_i00');
  483. INSERT INTO `weapon` VALUES ('2546', 'Knight\'s Sword*Knight\'s Sword', 'lrhand', 'true', '2460', '3', '3', 'd', '96', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '47', '-1', '1400000', '2545', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dual_sword_i00');
  484. INSERT INTO `weapon` VALUES ('2547', 'Knight\'s Sword*Crimson Sword', 'lrhand', 'true', '2460', '3', '3', 'd', '107', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '51', '-1', '1660000', '3018', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dual_sword_i00');
  485. INSERT INTO `weapon` VALUES ('2548', 'Knight\'s Sword*Elven Sword', 'lrhand', 'true', '2450', '3', '3', 'd', '107', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '51', '-1', '1660000', '3018', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dual_sword_i00');
  486. INSERT INTO `weapon` VALUES ('2549', 'Knight\'s Sword*Sword of Revolution', 'lrhand', 'true', '2430', '2', '2', 'c', '124', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '58', '-1', '2120000', '848', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dual_sword_i00');
  487. INSERT INTO `weapon` VALUES ('2550', 'Knight\'s Sword*Elven Long Sword', 'lrhand', 'true', '2370', '2', '2', 'c', '136', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '63', '-1', '2470000', '988', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dual_sword_i00');
  488. INSERT INTO `weapon` VALUES ('2551', 'Crimson Sword*Crimson Sword', 'lrhand', 'true', '2440', '2', '2', 'c', '118', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '56', '-1', '1960000', '784', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dual_sword_i00');
  489. INSERT INTO `weapon` VALUES ('2552', 'Crimson Sword*Elven Sword', 'lrhand', 'true', '2450', '2', '2', 'c', '118', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '56', '-1', '1960000', '784', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dual_sword_i00');
  490. INSERT INTO `weapon` VALUES ('2553', 'Crimson Sword*Sword of Revolution', 'lrhand', 'true', '2390', '2', '2', 'c', '136', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '63', '-1', '2470000', '988', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dual_sword_i00');
  491. INSERT INTO `weapon` VALUES ('2554', 'Crimson Sword*Elven Long Sword', 'lrhand', 'true', '2360', '2', '2', 'c', '148', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '68', '-1', '2870000', '1148', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dual_sword_i00');
  492. INSERT INTO `weapon` VALUES ('2555', 'Elven Sword*Elven Sword', 'lrhand', 'true', '2440', '2', '2', 'c', '118', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '56', '-1', '1960000', '784', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dual_sword_i00');
  493. INSERT INTO `weapon` VALUES ('2556', 'Elven Sword*Sword of Revolution', 'lrhand', 'true', '2410', '2', '2', 'c', '136', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '63', '-1', '2470000', '988', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dual_sword_i00');
  494. INSERT INTO `weapon` VALUES ('2557', 'Elven Sword*Elven Long Sword', 'lrhand', 'true', '2410', '2', '2', 'c', '148', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '68', '-1', '2870000', '1148', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dual_sword_i00');
  495. INSERT INTO `weapon` VALUES ('2558', 'Sword of Revolution*Sword of Revolution', 'lrhand', 'true', '2360', '2', '2', 'c', '148', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '68', '-1', '2870000', '1148', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dual_sword_i00');
  496. INSERT INTO `weapon` VALUES ('2559', 'Sword of Revolution*Elven Long Sword', 'lrhand', 'true', '2340', '3', '3', 'c', '155', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '70', '-1', '3340000', '1336', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dual_sword_i00');
  497. INSERT INTO `weapon` VALUES ('2560', 'Elven Long Sword*Elven Long Sword', 'lrhand', 'true', '2340', '3', '3', 'c', '162', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '73', '-1', '3820000', '1528', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dual_sword_i00');
  498. INSERT INTO `weapon` VALUES ('2561', 'Stormbringer*Stormbringer', 'lrhand', 'true', '2330', '3', '3', 'c', '175', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '78', '-1', '4780000', '1912', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dual_sword_i00');
  499. INSERT INTO `weapon` VALUES ('2562', 'Stormbringer*Shamshir', 'lrhand', 'true', '2300', '3', '3', 'c', '183', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '81', '-1', '5280000', '2112', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dual_sword_i00');
  500. INSERT INTO `weapon` VALUES ('2563', 'Stormbringer*Katana', 'lrhand', 'true', '2320', '3', '3', 'c', '183', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '81', '-1', '5280000', '2112', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dual_sword_i00');
  501. INSERT INTO `weapon` VALUES ('2564', 'Stormbringer*Spirit Sword', 'lrhand', 'true', '2310', '3', '3', 'c', '183', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '81', '-1', '5280000', '2112', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dual_sword_i00');
  502. INSERT INTO `weapon` VALUES ('2565', 'Stormbringer*Raid Sword', 'lrhand', 'true', '2340', '3', '3', 'c', '183', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '81', '-1', '5280000', '2112', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dual_sword_i00');
  503. INSERT INTO `weapon` VALUES ('2566', 'Stormbringer*Caliburs', 'lrhand', 'true', '2260', '1', '1', 'b', '197', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '86', '-1', '6980000', '930', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dual_sword_i00');
  504. INSERT INTO `weapon` VALUES ('2567', 'Stormbringer*Sword of Limit', 'lrhand', 'true', '2240', '1', '1', 'b', '197', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '86', '-1', '6980000', '930', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dual_sword_i00');
  505. INSERT INTO `weapon` VALUES ('2568', 'Stormbringer*Sword of Delusion', 'lrhand', 'true', '2230', '1', '1', 'b', '197', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '86', '-1', '6980000', '930', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dual_sword_i00');
  506. INSERT INTO `weapon` VALUES ('2569', 'Stormbringer*Sword of Nightmare', 'lrhand', 'true', '2250', '1', '1', 'b', '197', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '86', '-1', '6980000', '930', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dual_sword_i00');
  507. INSERT INTO `weapon` VALUES ('2570', 'Stormbringer*Tsurugi', 'lrhand', 'true', '2220', '1', '1', 'b', '197', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '86', '-1', '6980000', '930', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dual_sword_i00');
  508. INSERT INTO `weapon` VALUES ('2571', 'Stormbringer*Samurai Long sword', 'lrhand', 'true', '2150', '1', '1', 'b', '213', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '91', '-1', '8680000', '1157', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dual_sword_i00');
  509. INSERT INTO `weapon` VALUES ('2572', 'Shamshir*Shamshir', 'lrhand', 'true', '2330', '3', '3', 'c', '190', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '83', '-1', '6130000', '2452', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dual_sword_i00');
  510. INSERT INTO `weapon` VALUES ('2573', 'Shamshir*Katana', 'lrhand', 'true', '2310', '3', '3', 'c', '190', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '83', '-1', '6130000', '2452', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dual_sword_i00');
  511. INSERT INTO `weapon` VALUES ('2574', 'Shamshir*Spirit Sword', 'lrhand', 'true', '2280', '3', '3', 'c', '190', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '83', '-1', '6130000', '2452', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dual_sword_i00');
  512. INSERT INTO `weapon` VALUES ('2575', 'Shamshir*Raid Sword', 'lrhand', 'true', '2280', '3', '3', 'c', '190', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '83', '-1', '6130000', '2452', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dual_sword_i00');
  513. INSERT INTO `weapon` VALUES ('2576', 'Shamshir*Caliburs', 'lrhand', 'true', '2230', '1', '1', 'b', '204', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '89', '-1', '7830000', '1044', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dual_sword_i00');
  514. INSERT INTO `weapon` VALUES ('2577', 'Shamshir*Sword of Limit', 'lrhand', 'true', '2240', '1', '1', 'b', '204', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '89', '-1', '7830000', '1044', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dual_sword_i00');
  515. INSERT INTO `weapon` VALUES ('2578', 'Shamshir*Sword of Delusion', 'lrhand', 'true', '2200', '1', '1', 'b', '204', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '89', '-1', '7830000', '1044', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dual_sword_i00');
  516. INSERT INTO `weapon` VALUES ('2579', 'Shamshir*Sword of Nightmare', 'lrhand', 'true', '2210', '1', '1', 'b', '204', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '89', '-1', '7830000', '1044', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dual_sword_i00');
  517. INSERT INTO `weapon` VALUES ('2580', 'Shamshir*Tsurugi', 'lrhand', 'true', '2220', '1', '1', 'b', '204', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '89', '-1', '7830000', '1044', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dual_sword_i00');
  518. INSERT INTO `weapon` VALUES ('2581', 'Shamshir*Samurai Long Sword', 'lrhand', 'true', '2110', '1', '1', 'b', '220', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '94', '-1', '9550000', '1273', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dual_sword_i00');
  519. INSERT INTO `weapon` VALUES ('2582', 'Katana*Katana', 'lrhand', 'true', '2270', '3', '3', 'c', '190', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '83', '-1', '6130000', '2452', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dual_sword_i00');
  520. INSERT INTO `weapon` VALUES ('2583', 'Katana*Spirit Sword', 'lrhand', 'true', '2250', '3', '3', 'c', '190', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '83', '-1', '6130000', '2452', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dual_sword_i00');
  521. INSERT INTO `weapon` VALUES ('2584', 'Katana*Raid Sword', 'lrhand', 'true', '2270', '3', '3', 'c', '190', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '83', '-1', '6130000', '2452', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dual_sword_i00');
  522. INSERT INTO `weapon` VALUES ('2585', 'Katana*Caliburs', 'lrhand', 'true', '2220', '1', '1', 'b', '204', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '89', '-1', '7830000', '1044', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dual_sword_i00');
  523. INSERT INTO `weapon` VALUES ('2586', 'Katana*Sword of Limit', 'lrhand', 'true', '2180', '1', '1', 'b', '204', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '89', '-1', '7830000', '1044', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dual_sword_i00');
  524. INSERT INTO `weapon` VALUES ('2587', 'Katana*Sword of Delusion', 'lrhand', 'true', '2190', '1', '1', 'b', '204', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '89', '-1', '7830000', '1044', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dual_sword_i00');
  525. INSERT INTO `weapon` VALUES ('2588', 'Katana*Sword of Nightmare', 'lrhand', 'true', '2170', '1', '1', 'b', '204', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '89', '-1', '7830000', '1044', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dual_sword_i00');
  526. INSERT INTO `weapon` VALUES ('2589', 'Katana*Tsurugi', 'lrhand', 'true', '2210', '1', '1', 'b', '204', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '89', '-1', '7830000', '1044', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dual_sword_i00');
  527. INSERT INTO `weapon` VALUES ('2590', 'Katana*Samurai Long Sword', 'lrhand', 'true', '2130', '1', '1', 'b', '220', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '94', '-1', '9550000', '1273', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dual_sword_i00');
  528. INSERT INTO `weapon` VALUES ('2591', 'Spirit Sword*Spirit Sword', 'lrhand', 'true', '2240', '3', '3', 'c', '190', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '83', '-1', '6130000', '2452', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dual_sword_i00');
  529. INSERT INTO `weapon` VALUES ('2592', 'Spirit Sword*Raid Sword', 'lrhand', 'true', '2260', '3', '3', 'c', '190', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '83', '-1', '6130000', '2452', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dual_sword_i00');
  530. INSERT INTO `weapon` VALUES ('2593', 'Spirit Sword*Caliburs', 'lrhand', 'true', '2240', '1', '1', 'b', '204', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '89', '-1', '7830000', '1044', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dual_sword_i00');
  531. INSERT INTO `weapon` VALUES ('2594', 'Spirit Sword*Sword of Limit', 'lrhand', 'true', '2240', '1', '1', 'b', '204', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '89', '-1', '7830000', '1044', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dual_sword_i00');
  532. INSERT INTO `weapon` VALUES ('2595', 'Spirit Sword*Sword of Delusion', 'lrhand', 'true', '2250', '1', '1', 'b', '204', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '89', '-1', '7830000', '1044', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dual_sword_i00');
  533. INSERT INTO `weapon` VALUES ('2596', 'Spirit Sword*Sword of Nightmare', 'lrhand', 'true', '2250', '1', '1', 'b', '204', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '89', '-1', '7830000', '1044', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dual_sword_i00');
  534. INSERT INTO `weapon` VALUES ('2597', 'Spirit Sword*Tsurugi', 'lrhand', 'true', '2220', '1', '1', 'b', '204', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '89', '-1', '7830000', '1044', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dual_sword_i00');
  535. INSERT INTO `weapon` VALUES ('2598', 'Spirit Sword*Samurai Long Sword', 'lrhand', 'true', '2110', '1', '1', 'b', '220', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '94', '-1', '9550000', '1273', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dual_sword_i00');
  536. INSERT INTO `weapon` VALUES ('2599', 'Raid Sword*Raid Sword', 'lrhand', 'true', '2250', '3', '3', 'c', '190', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '83', '-1', '6130000', '2452', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dual_sword_i00');
  537. INSERT INTO `weapon` VALUES ('2600', 'Raid Sword*Caliburs', 'lrhand', 'true', '2190', '1', '1', 'b', '204', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '89', '-1', '7830000', '1044', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dual_sword_i00');
  538. INSERT INTO `weapon` VALUES ('2601', 'Raid Sword*Sword of Limit', 'lrhand', 'true', '2170', '1', '1', 'b', '204', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '89', '-1', '7830000', '1044', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dual_sword_i00');
  539. INSERT INTO `weapon` VALUES ('2602', 'Raid Sword*Sword of Delusion', 'lrhand', 'true', '2180', '1', '1', 'b', '204', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '89', '-1', '7830000', '1044', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dual_sword_i00');
  540. INSERT INTO `weapon` VALUES ('2603', 'Raid Sword*Sword of Nightmare', 'lrhand', 'true', '2170', '1', '1', 'b', '204', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '89', '-1', '7830000', '1044', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dual_sword_i00');
  541. INSERT INTO `weapon` VALUES ('2604', 'Raid Sword*Tsurugi', 'lrhand', 'true', '2170', '1', '1', 'b', '204', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '89', '-1', '7830000', '1044', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dual_sword_i00');
  542. INSERT INTO `weapon` VALUES ('2605', 'Raid Sword*Samurai Long Sword', 'lrhand', 'true', '2130', '1', '1', 'b', '220', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '94', '-1', '9550000', '1273', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dual_sword_i00');
  543. INSERT INTO `weapon` VALUES ('2606', 'Caliburs*Caliburs', 'lrhand', 'true', '2140', '1', '1', 'b', '213', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '91', '-1', '8680000', '1157', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dual_sword_i00');
  544. INSERT INTO `weapon` VALUES ('2607', 'Caliburs*Sword of Limit', 'lrhand', 'true', '2150', '1', '1', 'b', '213', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '91', '-1', '8680000', '1157', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dual_sword_i00');
  545. INSERT INTO `weapon` VALUES ('2608', 'Caliburs*Sword of Delusion', 'lrhand', 'true', '2140', '1', '1', 'b', '213', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '91', '-1', '8680000', '1157', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dual_sword_i00');
  546. INSERT INTO `weapon` VALUES ('2609', 'Caliburs*Sword of Nightmare', 'lrhand', 'true', '2170', '1', '1', 'b', '213', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '91', '-1', '8680000', '1157', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dual_sword_i00');
  547. INSERT INTO `weapon` VALUES ('2610', 'Caliburs*Tsurugi', 'lrhand', 'true', '2150', '1', '1', 'b', '213', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '91', '-1', '8680000', '1157', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dual_sword_i00');
  548. INSERT INTO `weapon` VALUES ('2611', 'Caliburs*Samurai Long Sword', 'lrhand', 'true', '2120', '1', '1', 'b', '228', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '97', '-1', '11300000', '1506', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dual_sword_i00');
  549. INSERT INTO `weapon` VALUES ('2612', 'Sword of Limit*Sword of Limit', 'lrhand', 'true', '2140', '1', '1', 'b', '213', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '91', '-1', '8680000', '1157', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dual_sword_i00');
  550. INSERT INTO `weapon` VALUES ('2613', 'Sword of Limit*Sword of Delusion', 'lrhand', 'true', '2140', '1', '1', 'b', '213', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '91', '-1', '8680000', '1157', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dual_sword_i00');
  551. INSERT INTO `weapon` VALUES ('2614', 'Sword of Limit*Sword of Nightmare', 'lrhand', 'true', '2130', '1', '1', 'b', '213', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '91', '-1', '8680000', '1157', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dual_sword_i00');
  552. INSERT INTO `weapon` VALUES ('2615', 'Sword of Limit*Tsurugi', 'lrhand', 'true', '2120', '1', '1', 'b', '213', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '91', '-1', '8680000', '1157', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dual_sword_i00');
  553. INSERT INTO `weapon` VALUES ('2616', 'Sword of Limit*Samurai Long Sword', 'lrhand', 'true', '2100', '1', '1', 'b', '228', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '97', '-1', '11300000', '1506', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dual_sword_i00');
  554. INSERT INTO `weapon` VALUES ('2617', 'Sword of Delusion*Sword of Delusion', 'lrhand', 'true', '2150', '1', '1', 'b', '213', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '91', '-1', '8680000', '1157', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dual_sword_i00');
  555. INSERT INTO `weapon` VALUES ('2618', 'Sword of Delusion*Sword of Nightmare', 'lrhand', 'true', '2130', '1', '1', 'b', '213', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '91', '-1', '8680000', '1157', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dual_sword_i00');
  556. INSERT INTO `weapon` VALUES ('2619', 'Sword of Delusion*Tsurugi', 'lrhand', 'true', '2140', '1', '1', 'b', '213', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '91', '-1', '8680000', '1157', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dual_sword_i00');
  557. INSERT INTO `weapon` VALUES ('2620', 'Sword of Delusion*Samurai Long Sword', 'lrhand', 'true', '2110', '1', '1', 'b', '228', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '97', '-1', '11300000', '1506', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dual_sword_i00');
  558. INSERT INTO `weapon` VALUES ('2621', 'Sword of Nightmare*Sword of Nightmare', 'lrhand', 'true', '2130', '1', '1', 'b', '213', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '91', '-1', '8680000', '1157', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dual_sword_i00');
  559. INSERT INTO `weapon` VALUES ('2622', 'Sword of Nightmare*Tsurugi', 'lrhand', 'true', '2140', '1', '1', 'b', '213', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '91', '-1', '8680000', '1157', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dual_sword_i00');
  560. INSERT INTO `weapon` VALUES ('2623', 'Sword of Nightmare*Samurai Long Sword', 'lrhand', 'true', '2080', '1', '1', 'b', '228', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '97', '-1', '11300000', '1506', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dual_sword_i00');
  561. INSERT INTO `weapon` VALUES ('2624', 'Tsurugi*Tsurugi', 'lrhand', 'true', '2120', '1', '1', 'b', '213', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '91', '-1', '8680000', '1157', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dual_sword_i00');
  562. INSERT INTO `weapon` VALUES ('2625', 'Tsurugi*Samurai Long Sword', 'lrhand', 'true', '2090', '1', '1', 'b', '228', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '97', '-1', '11300000', '1506', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dual_sword_i00');
  563. INSERT INTO `weapon` VALUES ('2626', 'Samurai Long Sword*Samurai Long Sword', 'lrhand', 'true', '2080', '1', '1', 'b', '236', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '99', '-1', '13100000', '1746', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dual_sword_i00');
  564. INSERT INTO `weapon` VALUES ('2915', 'Old Knight Sword', 'rhand', 'false', '3200', '2', '2', 'none', '24', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '17', '-1', '136000', '0', 'false', 'false', 'false', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_long_sword_i00');
  565. INSERT INTO `weapon` VALUES ('3026', 'Talins Spear', 'lrhand', 'false', '800', '2', '2', 'none', '24', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '17', '-1', '0', '0', 'false', 'false', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_short_spear_i00');
  566. INSERT INTO `weapon` VALUES ('3027', 'Old Knight\'s Sword', 'lrhand', 'false', '2100', '2', '2', 'none', '29', '10', 'bigsword', '8', '0.00000', '0', '0', '0', '325', '0', '17', '-1', '0', '0', 'false', 'false', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_brandish_i00');
  567. INSERT INTO `weapon` VALUES ('3028', 'Crescent Moon Bow', 'lrhand', 'false', '600', '6', '2', 'none', '34', '5', 'bow', '12', '-3.00000', '0', '0', '0', '293', '2', '12', '-1', '0', '0', 'false', 'false', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_short_bow_i00');
  568. INSERT INTO `weapon` VALUES ('3029', 'Sword of Binding', 'rhand', 'false', '1200', '2', '2', 'none', '17', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '12', '-1', '0', '0', 'false', 'false', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_gladius_i00');
  569. INSERT INTO `weapon` VALUES ('3439', 'Shining Canine', 'wolf', 'false', '100', '1', '1', 'none', '7', '10', 'pet', '8', '0.00000', '0', '0', '0', '277', '0', '8', '-1', '34000', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.etc_pet_arms_i00');
  570. INSERT INTO `weapon` VALUES ('3471', 'Cybellin\'s Dagger', 'rhand', 'false', '400', '1', '1', 'none', '10', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '9', '-1', '0', '0', 'false', 'false', 'false', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_doomed_dagger_i00');
  571. INSERT INTO `weapon` VALUES ('3902', 'Ghost Canine', 'wolf', 'false', '100', '1', '1', 'none', '11', '10', 'pet', '8', '0.00000', '0', '0', '0', '277', '0', '10', '-1', '61000', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.etc_pet_arms_i00');
  572. INSERT INTO `weapon` VALUES ('3903', 'Mithril Canine', 'wolf', 'false', '100', '1', '1', 'none', '16', '10', 'pet', '8', '0.00000', '0', '0', '0', '277', '0', '14', '-1', '100000', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.etc_pet_arms_i01');
  573. INSERT INTO `weapon` VALUES ('3904', 'Sylvan Canine', 'wolf', 'false', '100', '1', '1', 'none', '23', '10', 'pet', '8', '0.00000', '0', '0', '0', '277', '0', '18', '-1', '160000', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.etc_pet_arms_i01');
  574. INSERT INTO `weapon` VALUES ('3905', 'Orikarukon Canine', 'wolf', 'false', '100', '1', '1', 'none', '31', '10', 'pet', '8', '0.00000', '0', '0', '0', '277', '0', '24', '-1', '240000', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.etc_pet_arms_i01');
  575. INSERT INTO `weapon` VALUES ('3906', 'Fang of Saltydog', 'wolf', 'false', '100', '1', '1', 'none', '40', '10', 'pet', '8', '0.00000', '0', '0', '0', '277', '0', '30', '-1', '350000', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.etc_pet_arms_i01');
  576. INSERT INTO `weapon` VALUES ('3907', 'Fang of Cerberus', 'wolf', 'false', '100', '1', '1', 'none', '49', '10', 'pet', '8', '0.00000', '0', '0', '0', '277', '0', '36', '-1', '450000', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.etc_pet_arms_i01');
  577. INSERT INTO `weapon` VALUES ('3908', 'Fang of Coyote', 'wolf', 'false', '100', '1', '1', 'none', '58', '10', 'pet', '8', '0.00000', '0', '0', '0', '277', '0', '42', '-1', '570000', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.etc_pet_arms_i02');
  578. INSERT INTO `weapon` VALUES ('3909', 'Crystalized Ice Canine', 'wolf', 'false', '100', '1', '1', 'none', '69', '10', 'pet', '8', '0.00000', '0', '0', '0', '277', '0', '50', '-1', '720000', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.etc_pet_arms_i02');
  579. INSERT INTO `weapon` VALUES ('3910', 'Fang of The Blue Wolf', 'wolf', 'false', '100', '1', '1', 'none', '80', '10', 'pet', '8', '0.00000', '0', '0', '0', '277', '0', '58', '-1', '1100000', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.etc_pet_arms_i02');
  580. INSERT INTO `weapon` VALUES ('3911', 'Fang of Fenril', 'wolf', 'false', '100', '1', '1', 'none', '93', '10', 'pet', '8', '0.00000', '0', '0', '0', '277', '0', '66', '-1', '1500000', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.etc_pet_arms_i02');
  581. INSERT INTO `weapon` VALUES ('3919', 'Serpent Fang', 'hatchling', 'false', '100', '1', '1', 'none', '8', '10', 'pet', '8', '0.00000', '0', '0', '0', '277', '0', '7', '-1', '200000', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.etc_pet_arms_i03');
  582. INSERT INTO `weapon` VALUES ('3920', 'Viperbite', 'hatchling', 'false', '100', '1', '1', 'none', '9', '10', 'pet', '8', '0.00000', '0', '0', '0', '277', '0', '10', '-1', '310000', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.etc_pet_arms_i03');
  583. INSERT INTO `weapon` VALUES ('3921', 'Shadow Fang', 'hatchling', 'false', '100', '1', '1', 'none', '10', '10', 'pet', '8', '0.00000', '0', '0', '0', '277', '0', '11', '-1', '420000', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.etc_pet_arms_i03');
  584. INSERT INTO `weapon` VALUES ('3922', 'Alya Fang', 'hatchling', 'false', '100', '1', '1', 'none', '12', '10', 'pet', '8', '0.00000', '0', '0', '0', '277', '0', '13', '-1', '570000', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.etc_pet_arms_i04');
  585. INSERT INTO `weapon` VALUES ('3923', 'Torturer', 'hatchling', 'false', '100', '1', '1', 'none', '13', '10', 'pet', '8', '0.00000', '0', '0', '0', '277', '0', '16', '-1', '760000', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.etc_pet_arms_i04');
  586. INSERT INTO `weapon` VALUES ('3924', 'Unuk Alhay Fang', 'hatchling', 'false', '100', '1', '1', 'none', '15', '10', 'pet', '8', '0.00000', '0', '0', '0', '277', '0', '18', '-1', '1100000', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.etc_pet_arms_i04');
  587. INSERT INTO `weapon` VALUES ('3925', 'Antiplague', 'hatchling', 'false', '100', '1', '1', 'none', '17', '10', 'pet', '8', '0.00000', '0', '0', '0', '277', '0', '21', '-1', '1600000', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.etc_pet_arms_i04');
  588. INSERT INTO `weapon` VALUES ('3937', 'Giant Bar', 'lrhand', 'true', '300', '2', '2', 'd', '50', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '26', '-1', '409000', '743', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_monster_i00');
  589. INSERT INTO `weapon` VALUES ('3938', 'Giant Rod', 'lrhand', 'true', '300', '2', '2', 'd', '50', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '26', '-1', '409000', '743', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_monster_i00');
  590. INSERT INTO `weapon` VALUES ('3939', 'Lady\'s Fan', 'lrhand', 'true', '300', '2', '2', 'd', '50', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '26', '-1', '409000', '743', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_monster_i00');
  591. INSERT INTO `weapon` VALUES ('4027', 'Bouquet', 'rhand', 'false', '0', '0', '0', 'none', '8', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '6', '-1', '0', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.etc_plan_i00');
  592. INSERT INTO `weapon` VALUES ('4028', 'Giant Cannon', 'rhand', 'true', '300', '2', '2', 'd', '5', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '5', '-1', '409000', '743', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_monster_i00');
  593. INSERT INTO `weapon` VALUES ('4202', 'Chrono Cithara', 'rhand', 'false', '0', '0', '0', 'none', '1', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '1', '-1', '0', '0', 'true', 'false', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_chrono_cithara_i00');
  594. INSERT INTO `weapon` VALUES ('4219', 'Dream Sword', 'rhand', 'true', '1530', '2', '2', 'none', '31', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '21', '-1', '244000', '0', 'false', 'false', 'false', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_knights_sword_i00');
  595. INSERT INTO `weapon` VALUES ('4220', 'Dream Knife', 'rhand', 'true', '1110', '2', '2', 'none', '27', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '21', '-1', '244000', '0', 'false', 'false', 'false', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_assassin_knife_i00');
  596. INSERT INTO `weapon` VALUES ('4221', 'Ubiquitous Axe', 'rhand', 'true', '1850', '2', '2', 'none', '31', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '21', '-1', '244000', '0', 'false', 'false', 'false', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_tomahawk_i00');
  597. INSERT INTO `weapon` VALUES ('4222', 'Dream Shield', 'lhand', 'true', '1380', '0', '0', 'none', '0', '0', 'none', '0', '0.00000', '-8', '90', '20', '0', '0', '0', '-1', '12900', '0', 'false', 'false', 'false', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.shield_hoplon_i00');
  598. INSERT INTO `weapon` VALUES ('4223', 'Ubiquitous Shield', 'lhand', 'true', '1380', '0', '0', 'none', '0', '0', 'none', '0', '0.00000', '-8', '90', '20', '0', '0', '0', '-1', '12900', '0', 'false', 'false', 'false', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.shield_dwarven_chain_shield_i00');
  599. INSERT INTO `weapon` VALUES ('4233', 'Knuckle Duster', 'lrhand', 'true', '1490', '2', '2', 'c', '148', '5', 'dualfist', '4', '4.00000', '0', '0', '0', '325', '0', '68', '-1', '2870000', '1148', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_knuckle_dust_i00');
  600. INSERT INTO `weapon` VALUES ('4237', 'Hatchling\'s Level 65 Weapon', 'hatchling', 'false', '100', '1', '1', 'none', '24', '10', 'pet', '8', '0.00000', '0', '0', '0', '277', '0', '32', '-1', '0', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.etc_pet_arms_i04');
  601. INSERT INTO `weapon` VALUES ('4238', 'Hatchling\'s Level 75 Weapon', 'hatchling', 'false', '100', '1', '1', 'none', '31', '10', 'pet', '8', '0.00000', '0', '0', '0', '277', '0', '43', '-1', '0', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.etc_pet_arms_i04');
  602. INSERT INTO `weapon` VALUES ('4665', 'Pipette Knife', 'rhand', 'false', '1140', '1', '1', 'none', '10', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '9', '-1', '0', '0', 'false', 'false', 'false', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_knife_i00');
  603. INSERT INTO `weapon` VALUES ('4681', 'Stormbringer - Critical Anger', 'rhand', 'true', '1430', '2', '2', 'c', '107', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '61', '-1', '2290000', '916', 'true', 'true', 'true', 'true', '3026', '1', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_stormbringer_i01');
  604. INSERT INTO `weapon` VALUES ('4682', 'Stormbringer - Focus', 'rhand', 'true', '1430', '2', '2', 'c', '107', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '61', '-1', '2290000', '916', 'true', 'true', 'true', 'true', '3010', '1', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_stormbringer_i01');
  605. INSERT INTO `weapon` VALUES ('4683', 'Stormbringer - Light', 'rhand', 'true', '430', '2', '2', 'c', '107', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '61', '-1', '2290000', '916', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_stormbringer_i01');
  606. INSERT INTO `weapon` VALUES ('4684', 'Shamshir - Guidance', 'rhand', 'true', '1420', '2', '2', 'c', '122', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '68', '-1', '2870000', '1148', 'true', 'true', 'true', 'true', '3007', '2', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_shamshir_i01');
  607. INSERT INTO `weapon` VALUES ('4685', 'Shamshir - Back Blow', 'rhand', 'true', '1420', '2', '2', 'c', '122', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '68', '-1', '2870000', '1148', 'true', 'true', 'true', 'true', '3018', '2', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_shamshir_i01');
  608. INSERT INTO `weapon` VALUES ('4686', 'Shamshir - Rsk. Evasion', 'rhand', 'true', '1420', '2', '2', 'c', '122', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '68', '-1', '2870000', '1148', 'true', 'true', 'true', 'true', '3028', '2', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_shamshir_i01');
  609. INSERT INTO `weapon` VALUES ('4687', 'Katana - Focus', 'rhand', 'true', '1420', '2', '2', 'c', '122', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '68', '-1', '2870000', '1148', 'true', 'true', 'true', 'true', '3010', '2', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_katana_i01');
  610. INSERT INTO `weapon` VALUES ('4688', 'Katana - Critical Damage', 'rhand', 'true', '1420', '2', '2', 'c', '122', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '68', '-1', '2870000', '1148', 'true', 'true', 'true', 'true', '3023', '2', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_katana_i01');
  611. INSERT INTO `weapon` VALUES ('4689', 'Katana - Haste', 'rhand', 'true', '1420', '2', '2', 'c', '122', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '68', '-1', '2870000', '1148', 'true', 'true', 'true', 'true', '3036', '2', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_katana_i01');
  612. INSERT INTO `weapon` VALUES ('4690', 'Spirit Sword - Critical Damage', 'rhand', 'true', '1420', '2', '2', 'c', '122', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '68', '-1', '2870000', '1148', 'true', 'true', 'true', 'true', '3023', '2', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_spirits_sword_i01');
  613. INSERT INTO `weapon` VALUES ('4691', 'Spirit Sword - Critical Poison', 'rhand', 'true', '1420', '2', '2', 'c', '122', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '68', '-1', '2870000', '1148', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_spirits_sword_i01');
  614. INSERT INTO `weapon` VALUES ('4692', 'Spirit Sword - Haste', 'rhand', 'true', '1420', '2', '2', 'c', '122', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '68', '-1', '2870000', '1148', 'true', 'true', 'true', 'true', '3036', '2', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_spirits_sword_i01');
  615. INSERT INTO `weapon` VALUES ('4693', 'Raid Sword - Focus', 'rhand', 'true', '1420', '2', '2', 'c', '122', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '68', '-1', '2870000', '1148', 'true', 'true', 'true', 'true', '3010', '2', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_raid_sword_i01');
  616. INSERT INTO `weapon` VALUES ('4694', 'Raid Sword - Critical Drain', 'rhand', 'true', '1420', '2', '2', 'c', '122', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '68', '-1', '2870000', '1148', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_raid_sword_i01');
  617. INSERT INTO `weapon` VALUES ('4695', 'Raid Sword - Critical Poison', 'rhand', 'true', '1420', '2', '2', 'c', '122', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '68', '-1', '2870000', '1148', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_raid_sword_i01');
  618. INSERT INTO `weapon` VALUES ('4696', 'Caliburs - Guidance', 'rhand', 'true', '1400', '3', '3', 'c', '139', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '76', '-1', '4300000', '1720', 'true', 'true', 'true', 'true', '3007', '3', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_caliburs_i01');
  619. INSERT INTO `weapon` VALUES ('4697', 'Caliburs - Focus', 'rhand', 'true', '1400', '3', '3', 'c', '139', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '76', '-1', '4300000', '1720', 'true', 'true', 'true', 'true', '3010', '3', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_caliburs_i01');
  620. INSERT INTO `weapon` VALUES ('4698', 'Caliburs - Critical Damage', 'rhand', 'true', '1400', '3', '3', 'c', '139', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '76', '-1', '4300000', '1720', 'true', 'true', 'true', 'true', '3023', '3', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_caliburs_i01');
  621. INSERT INTO `weapon` VALUES ('4699', 'Sword of Delusion - Focus', 'rhand', 'true', '1400', '3', '3', 'c', '139', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '76', '-1', '4300000', '1720', 'true', 'true', 'true', 'true', '3010', '3', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_sword_of_delusion_i01');
  622. INSERT INTO `weapon` VALUES ('4700', 'Sword of Delusion - Health', 'rhand', 'true', '1400', '3', '3', 'c', '139', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '76', '-1', '4300000', '1720', 'true', 'true', 'true', 'true', '3013', '1', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_sword_of_delusion_i01');
  623. INSERT INTO `weapon` VALUES ('4701', 'Sword of Delusion - Rsk. Haste', 'rhand', 'true', '1400', '3', '3', 'c', '139', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '76', '-1', '4300000', '1720', 'true', 'true', 'true', 'true', '3032', '3', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_sword_of_delusion_i01');
  624. INSERT INTO `weapon` VALUES ('4702', 'Tsurugi - Focus', 'rhand', 'true', '1400', '3', '3', 'c', '139', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '76', '-1', '4300000', '1720', 'true', 'true', 'true', 'true', '3010', '3', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_tsurugi_i01');
  625. INSERT INTO `weapon` VALUES ('4703', 'Tsurugi - Critical Damage', 'rhand', 'true', '1400', '3', '3', 'c', '139', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '76', '-1', '4300000', '1720', 'true', 'true', 'true', 'true', '3023', '3', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_tsurugi_i01');
  626. INSERT INTO `weapon` VALUES ('4704', 'Tsurugi - Haste', 'rhand', 'true', '1400', '3', '3', 'c', '139', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '76', '-1', '4300000', '1720', 'true', 'true', 'true', 'true', '3036', '3', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_tsurugi_i01');
  627. INSERT INTO `weapon` VALUES ('4705', 'Sword of Nightmare - Health', 'rhand', 'true', '1400', '3', '3', 'c', '139', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '76', '-1', '4300000', '1720', 'true', 'true', 'true', 'true', '3013', '1', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_sword_of_nightmare_i01');
  628. INSERT INTO `weapon` VALUES ('4706', 'Sword of Nightmare - Focus', 'rhand', 'true', '1400', '3', '3', 'c', '139', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '76', '-1', '4300000', '1720', 'true', 'true', 'true', 'true', '3010', '3', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_sword_of_nightmare_i01');
  629. INSERT INTO `weapon` VALUES ('4707', 'Sword of Nightmare - Light', 'rhand', 'true', '420', '3', '3', 'c', '139', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '76', '-1', '4300000', '1720', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_sword_of_nightmare_i01');
  630. INSERT INTO `weapon` VALUES ('4708', 'Samurai Longsword - Focus', 'rhand', 'true', '1380', '3', '3', 'c', '156', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '83', '-1', '6130000', '2452', 'true', 'true', 'true', 'true', '3010', '4', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_samurai_longsword_i01');
  631. INSERT INTO `weapon` VALUES ('4709', 'Samurai Longsword - Critical Damage', 'rhand', 'true', '1380', '3', '3', 'c', '156', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '83', '-1', '6130000', '2452', 'true', 'true', 'true', 'true', '3023', '4', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_samurai_longsword_i01');
  632. INSERT INTO `weapon` VALUES ('4710', 'Samurai Longsword - Haste', 'rhand', 'true', '1380', '3', '3', 'c', '156', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '83', '-1', '6130000', '2452', 'true', 'true', 'true', 'true', '3036', '4', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_samurai_longsword_i01');
  633. INSERT INTO `weapon` VALUES ('4711', 'Flamberge - Critical Damage', 'lrhand', 'true', '2010', '2', '2', 'c', '130', '10', 'bigsword', '8', '0.00000', '0', '0', '0', '325', '0', '61', '-1', '2290000', '916', 'true', 'true', 'true', 'true', '3023', '1', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_flamberge_i01');
  634. INSERT INTO `weapon` VALUES ('4712', 'Flamberge - Focus', 'lrhand', 'true', '2010', '2', '2', 'c', '130', '10', 'bigsword', '8', '0.00000', '0', '0', '0', '325', '0', '61', '-1', '2290000', '916', 'true', 'true', 'true', 'true', '3010', '1', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_flamberge_i01');
  635. INSERT INTO `weapon` VALUES ('4713', 'Flamberge - Light', 'lrhand', 'true', '600', '2', '2', 'c', '130', '10', 'bigsword', '8', '0.00000', '0', '0', '0', '325', '0', '61', '-1', '2290000', '916', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_flamberge_i01');
  636. INSERT INTO `weapon` VALUES ('4714', 'Keshanberk - Guidance', 'rhand', 'true', '1370', '1', '1', 'b', '175', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '91', '-1', '8680000', '1157', 'true', 'true', 'true', 'true', '3007', '5', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_kshanberk_i01');
  637. INSERT INTO `weapon` VALUES ('4715', 'Keshanberk - Focus', 'rhand', 'true', '1370', '1', '1', 'b', '175', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '91', '-1', '8680000', '1157', 'true', 'true', 'true', 'true', '3010', '5', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_kshanberk_i01');
  638. INSERT INTO `weapon` VALUES ('4716', 'Keshanberk - Back Blow', 'rhand', 'true', '1370', '1', '1', 'b', '175', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '91', '-1', '8680000', '1157', 'true', 'true', 'true', 'true', '3018', '5', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_kshanberk_i01');
  639. INSERT INTO `weapon` VALUES ('4717', 'Sword of Damascus - Focus', 'rhand', 'true', '1350', '1', '1', 'b', '194', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '99', '-1', '13100000', '1746', 'true', 'true', 'true', 'true', '3010', '6', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_sword_of_damascus_i01');
  640. INSERT INTO `weapon` VALUES ('4718', 'Sword of Damascus - Critical Damage', 'rhand', 'true', '1350', '1', '1', 'b', '194', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '99', '-1', '13100000', '1746', 'true', 'true', 'true', 'true', '3023', '3', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_sword_of_damascus_i01');
  641. INSERT INTO `weapon` VALUES ('4719', 'Sword of Damascus - Haste', 'rhand', 'true', '1350', '1', '1', 'b', '194', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '99', '-1', '13100000', '1746', 'true', 'true', 'true', 'true', '3036', '6', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_sword_of_damascus_i01');
  642. INSERT INTO `weapon` VALUES ('4720', 'Tallum Blade - Health', 'rhand', 'true', '1330', '1', '1', 'a', '213', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '107', '-1', '18300000', '1464', 'true', 'true', 'true', 'true', '3013', '1', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_tallum_blade_i01');
  643. INSERT INTO `weapon` VALUES ('4721', 'Tallum Blade - Rsk. Evasion', 'rhand', 'true', '1330', '1', '1', 'a', '213', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '107', '-1', '18300000', '1464', 'true', 'true', 'true', 'true', '3028', '1', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_tallum_blade_i01');
  644. INSERT INTO `weapon` VALUES ('4722', 'Tallum Blade - Rsk. Haste', 'rhand', 'true', '1330', '1', '1', 'a', '213', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '107', '-1', '18300000', '1464', 'true', 'true', 'true', 'true', '3032', '2', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_tallum_blade_i01');
  645. INSERT INTO `weapon` VALUES ('4723', 'Great Sword - Health', 'lrhand', 'true', '1930', '1', '1', 'b', '213', '10', 'bigsword', '8', '0.00000', '0', '0', '0', '325', '0', '91', '-1', '8680000', '1157', 'true', 'true', 'true', 'true', '3013', '1', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_great_sword_i01');
  646. INSERT INTO `weapon` VALUES ('4724', 'Great Sword - Critical Damage', 'lrhand', 'true', '1930', '1', '1', 'b', '213', '10', 'bigsword', '8', '0.00000', '0', '0', '0', '325', '0', '91', '-1', '8680000', '1157', 'true', 'true', 'true', 'true', '3023', '5', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_great_sword_i01');
  647. INSERT INTO `weapon` VALUES ('4725', 'Great Sword - Focus', 'lrhand', 'true', '1930', '1', '1', 'b', '213', '10', 'bigsword', '8', '0.00000', '0', '0', '0', '325', '0', '91', '-1', '8680000', '1157', 'true', 'true', 'true', 'true', '3010', '5', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_great_sword_i01');
  648. INSERT INTO `weapon` VALUES ('4726', 'Big Hammer - Health', 'rhand', 'true', '1710', '2', '2', 'c', '107', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '61', '-1', '2290000', '916', 'true', 'true', 'true', 'true', '3013', '1', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_big_hammer_i01');
  649. INSERT INTO `weapon` VALUES ('4727', 'Big Hammer - Rsk.Focus', 'rhand', 'true', '1710', '2', '2', 'c', '107', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '61', '-1', '2290000', '916', 'true', 'true', 'true', 'true', '3027', '1', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_big_hammer_i01');
  650. INSERT INTO `weapon` VALUES ('4728', 'Big Hammer - Haste', 'rhand', 'true', '1710', '2', '2', 'c', '107', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '61', '-1', '2290000', '916', 'true', 'true', 'true', 'true', '3036', '1', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_big_hammer_i01');
  651. INSERT INTO `weapon` VALUES ('4729', 'Battle Axe - Anger', 'rhand', 'true', '1720', '2', '2', 'c', '107', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '61', '-1', '2290000', '916', 'true', 'true', 'true', 'true', '3012', '1', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_battle_axe_i01');
  652. INSERT INTO `weapon` VALUES ('4730', 'Battle Axe - Rsk.Focus', 'rhand', 'true', '1720', '2', '2', 'c', '107', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '61', '-1', '2290000', '916', 'true', 'true', 'true', 'true', '3027', '1', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_battle_axe_i01');
  653. INSERT INTO `weapon` VALUES ('4731', 'Battle Axe - Haste', 'rhand', 'true', '1720', '2', '2', 'c', '107', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '61', '-1', '2290000', '916', 'true', 'true', 'true', 'true', '3036', '1', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_battle_axe_i01');
  654. INSERT INTO `weapon` VALUES ('4732', 'Silver Axe - Anger', 'rhand', 'true', '1690', '2', '2', 'c', '107', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '61', '-1', '2290000', '916', 'true', 'true', 'true', 'true', '3012', '1', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_war_pick_i01');
  655. INSERT INTO `weapon` VALUES ('4733', 'Silver Axe - Rsk.Focus', 'rhand', 'true', '1690', '2', '2', 'c', '107', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '61', '-1', '2290000', '916', 'true', 'true', 'true', 'true', '3027', '1', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_war_pick_i01');
  656. INSERT INTO `weapon` VALUES ('4734', 'Silver Axe - Haste', 'rhand', 'true', '1690', '2', '2', 'c', '107', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '61', '-1', '2290000', '916', 'true', 'true', 'true', 'true', '3036', '1', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_war_pick_i01');
  657. INSERT INTO `weapon` VALUES ('4735', 'Skull Graver - Anger', 'rhand', 'true', '1640', '2', '2', 'c', '107', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '61', '-1', '2290000', '916', 'true', 'true', 'true', 'true', '3012', '1', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_skull_graver_i01');
  658. INSERT INTO `weapon` VALUES ('4736', 'Skull Graver - Health', 'rhand', 'true', '1640', '2', '2', 'c', '107', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '61', '-1', '2290000', '916', 'true', 'true', 'true', 'true', '3013', '1', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_skull_graver_i01');
  659. INSERT INTO `weapon` VALUES ('4737', 'Skull Graver - Rsk.Focus', 'rhand', 'true', '1640', '2', '2', 'c', '107', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '61', '-1', '2290000', '916', 'true', 'true', 'true', 'true', '3027', '1', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_skull_graver_i01');
  660. INSERT INTO `weapon` VALUES ('4738', 'Dwarven War Hammer - Anger', 'rhand', 'true', '1670', '2', '2', 'c', '122', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '68', '-1', '2870000', '1148', 'true', 'true', 'true', 'true', '3012', '2', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dwarven_warhammer_i01');
  661. INSERT INTO `weapon` VALUES ('4739', 'Dwarven War Hammer - Health', 'rhand', 'true', '1670', '2', '2', 'c', '122', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '68', '-1', '2870000', '1148', 'true', 'true', 'true', 'true', '3013', '1', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dwarven_warhammer_i01');
  662. INSERT INTO `weapon` VALUES ('4740', 'Dwarven War Hammer - Haste', 'rhand', 'true', '1670', '2', '2', 'c', '122', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '68', '-1', '2870000', '1148', 'true', 'true', 'true', 'true', '3036', '2', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dwarven_warhammer_i01');
  663. INSERT INTO `weapon` VALUES ('4741', 'War Axe - Anger', 'rhand', 'true', '1660', '3', '3', 'c', '139', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '76', '-1', '4300000', '1720', 'true', 'true', 'true', 'true', '3012', '3', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_war_axe_i01');
  664. INSERT INTO `weapon` VALUES ('4742', 'War Axe - Health', 'rhand', 'true', '1660', '3', '3', 'c', '139', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '76', '-1', '4300000', '1720', 'true', 'true', 'true', 'true', '3013', '1', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_war_axe_i01');
  665. INSERT INTO `weapon` VALUES ('4743', 'War Axe - Haste', 'rhand', 'true', '1660', '3', '3', 'c', '139', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '76', '-1', '4300000', '1720', 'true', 'true', 'true', 'true', '3036', '3', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_war_axe_i01');
  666. INSERT INTO `weapon` VALUES ('4744', 'Yaksa Mace - Anger', 'rhand', 'true', '1640', '3', '3', 'c', '156', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '83', '-1', '6130000', '2452', 'true', 'true', 'true', 'true', '3012', '4', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_yaksa_mace_i01');
  667. INSERT INTO `weapon` VALUES ('4745', 'Yaksa Mace - Health', 'rhand', 'true', '1640', '3', '3', 'c', '156', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '83', '-1', '6130000', '2452', 'true', 'true', 'true', 'true', '3013', '1', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_yaksa_mace_i01');
  668. INSERT INTO `weapon` VALUES ('4746', 'Yaksa Mace - Rsk. Focus', 'rhand', 'true', '1640', '3', '3', 'c', '156', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '83', '-1', '6130000', '2452', 'true', 'true', 'true', 'true', '3027', '4', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_yaksa_mace_i01');
  669. INSERT INTO `weapon` VALUES ('4747', 'Heavy War Axe - Anger', 'rhand', 'true', '1620', '1', '1', 'b', '175', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '91', '-1', '8680000', '1157', 'true', 'true', 'true', 'true', '3012', '5', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_heavy_war_axe_i01');
  670. INSERT INTO `weapon` VALUES ('4748', 'Heavy War Axe - Health', 'rhand', 'true', '1620', '1', '1', 'b', '175', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '91', '-1', '8680000', '1157', 'true', 'true', 'true', 'true', '3013', '1', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_heavy_war_axe_i01');
  671. INSERT INTO `weapon` VALUES ('4749', 'Heavy War Axe - Rsk. Focus', 'rhand', 'true', '1620', '1', '1', 'b', '175', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '91', '-1', '8680000', '1157', 'true', 'true', 'true', 'true', '3027', '5', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_heavy_war_axe_i01');
  672. INSERT INTO `weapon` VALUES ('4750', 'Deadman\'s Glory - Anger', 'rhand', 'true', '1600', '1', '1', 'b', '194', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '99', '-1', '13100000', '1746', 'true', 'true', 'true', 'true', '3012', '6', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_deadmans_glory_i01');
  673. INSERT INTO `weapon` VALUES ('4751', 'Deadman\'s Glory - Health', 'rhand', 'true', '1600', '1', '1', 'b', '194', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '99', '-1', '13100000', '1746', 'true', 'true', 'true', 'true', '3013', '1', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_deadmans_glory_i01');
  674. INSERT INTO `weapon` VALUES ('4752', 'Deadman\'s Glory - Haste', 'rhand', 'true', '1600', '1', '1', 'b', '194', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '99', '-1', '13100000', '1746', 'true', 'true', 'true', 'true', '3036', '6', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_deadmans_glory_i01');
  675. INSERT INTO `weapon` VALUES ('4753', 'Art of Battle Axe - Health', 'rhand', 'true', '1570', '1', '1', 'b', '194', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '99', '-1', '13100000', '1746', 'true', 'true', 'true', 'true', '3013', '1', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_art_of_battle_axe_i01');
  676. INSERT INTO `weapon` VALUES ('4754', 'Art of Battle Axe - Rsk. Focus', 'rhand', 'true', '1570', '1', '1', 'b', '194', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '99', '-1', '13100000', '1746', 'true', 'true', 'true', 'true', '3027', '6', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_art_of_battle_axe_i01');
  677. INSERT INTO `weapon` VALUES ('4755', 'Art of Battle Axe - Haste', 'rhand', 'true', '1570', '1', '1', 'b', '194', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '99', '-1', '13100000', '1746', 'true', 'true', 'true', 'true', '3036', '6', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_art_of_battle_axe_i01');
  678. INSERT INTO `weapon` VALUES ('4756', 'Meteor Shower - Health', 'rhand', 'true', '1600', '1', '1', 'a', '213', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '107', '-1', '18300000', '1464', 'true', 'true', 'true', 'true', '3013', '1', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_meteor_shower_i01');
  679. INSERT INTO `weapon` VALUES ('4757', 'Meteor Shower - Focus', 'rhand', 'true', '1600', '1', '1', 'a', '213', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '107', '-1', '18300000', '1464', 'true', 'true', 'true', 'true', '3010', '1', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_meteor_shower_i01');
  680. INSERT INTO `weapon` VALUES ('4758', 'Meteor Shower - P.Focus', 'rhand', 'true', '1600', '1', '1', 'a', '213', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '107', '-1', '18300000', '1464', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_meteor_shower_i01');
  681. INSERT INTO `weapon` VALUES ('4759', 'Cursed Dagger - Critical Bleed', 'rhand', 'true', '1040', '2', '2', 'c', '94', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '61', '-1', '2290000', '916', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_cursed_dagger_i01');
  682. INSERT INTO `weapon` VALUES ('4760', 'Cursed Dagger - Critical Poison', 'rhand', 'true', '1040', '2', '2', 'c', '94', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '61', '-1', '2290000', '916', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_cursed_dagger_i01');
  683. INSERT INTO `weapon` VALUES ('4761', 'Cursed Dagger - Rsk. Haste', 'rhand', 'true', '1040', '2', '2', 'c', '94', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '61', '-1', '2290000', '916', 'true', 'true', 'true', 'true', '3033', '1', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_cursed_dagger_i01');
  684. INSERT INTO `weapon` VALUES ('4762', 'Dark Elven Dagger - Focus', 'rhand', 'true', '1050', '2', '2', 'c', '94', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '61', '-1', '2290000', '916', 'true', 'true', 'true', 'true', '3011', '1', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_darkelven_dagger_i01');
  685. INSERT INTO `weapon` VALUES ('4763', 'Dark Elven Dagger - Back Blow', 'rhand', 'true', '1050', '2', '2', 'c', '94', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '61', '-1', '2290000', '916', 'true', 'true', 'true', 'true', '3019', '1', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_darkelven_dagger_i01');
  686. INSERT INTO `weapon` VALUES ('4764', 'Dark Elven Dagger - Mortal Strike', 'rhand', 'true', '1050', '2', '2', 'c', '94', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '61', '-1', '2290000', '916', 'true', 'true', 'true', 'true', '3035', '1', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_darkelven_dagger_i01');
  687. INSERT INTO `weapon` VALUES ('4765', 'Stiletto - Critical Bleed', 'rhand', 'true', '1030', '2', '2', 'c', '107', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '68', '-1', '2870000', '1148', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_stiletto_i01');
  688. INSERT INTO `weapon` VALUES ('4766', 'Stiletto - Critical Poison', 'rhand', 'true', '1030', '2', '2', 'c', '107', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '68', '-1', '2870000', '1148', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_stiletto_i01');
  689. INSERT INTO `weapon` VALUES ('4767', 'Stiletto - Mortal Strike', 'rhand', 'true', '1030', '2', '2', 'c', '107', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '68', '-1', '2870000', '1148', 'true', 'true', 'true', 'true', '3035', '2', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_stiletto_i01');
  690. INSERT INTO `weapon` VALUES ('4768', 'Grace Dagger - Evasion', 'rhand', 'true', '1020', '3', '3', 'c', '122', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '76', '-1', '4300000', '1720', 'true', 'true', 'true', 'true', '3009', '3', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_grace_dagger_i01');
  691. INSERT INTO `weapon` VALUES ('4769', 'Grace Dagger - Focus', 'rhand', 'true', '1020', '3', '3', 'c', '122', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '76', '-1', '4300000', '1720', 'true', 'true', 'true', 'true', '3011', '3', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_grace_dagger_i01');
  692. INSERT INTO `weapon` VALUES ('4770', 'Grace Dagger - Back Blow', 'rhand', 'true', '1020', '3', '3', 'c', '122', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '76', '-1', '4300000', '1720', 'true', 'true', 'true', 'true', '3019', '3', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_grace_dagger_i01');
  693. INSERT INTO `weapon` VALUES ('4771', 'Dark Screamer - Evasion', 'rhand', 'true', '1010', '3', '3', 'c', '122', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '76', '-1', '4300000', '1720', 'true', 'true', 'true', 'true', '3009', '3', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dark_screamer_i01');
  694. INSERT INTO `weapon` VALUES ('4772', 'Dark Screamer - Focus', 'rhand', 'true', '1010', '3', '3', 'c', '122', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '76', '-1', '4300000', '1720', 'true', 'true', 'true', 'true', '3011', '3', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dark_screamer_i01');
  695. INSERT INTO `weapon` VALUES ('4773', 'Dark Screamer - Critical Bleed', 'rhand', 'true', '1010', '3', '3', 'c', '122', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '76', '-1', '4300000', '1720', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dark_screamer_i01');
  696. INSERT INTO `weapon` VALUES ('4774', 'Crystal Dagger - Critical Bleed', 'rhand', 'true', '1000', '3', '3', 'c', '136', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '83', '-1', '6130000', '2452', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_crystal_dagger_i01');
  697. INSERT INTO `weapon` VALUES ('4775', 'Crystal Dagger - Critical Poison', 'rhand', 'true', '1000', '3', '3', 'c', '136', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '83', '-1', '6130000', '2452', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_crystal_dagger_i01');
  698. INSERT INTO `weapon` VALUES ('4776', 'Crystal Dagger - Mortal Strike', 'rhand', 'true', '1000', '3', '3', 'c', '136', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '83', '-1', '6130000', '2452', 'true', 'true', 'true', 'true', '3035', '4', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_crystal_dagger_i01');
  699. INSERT INTO `weapon` VALUES ('4777', 'Kris - Evasion', 'rhand', 'true', '980', '1', '1', 'b', '153', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '91', '-1', '8680000', '1157', 'true', 'true', 'true', 'true', '3009', '5', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_kris_i01');
  700. INSERT INTO `weapon` VALUES ('4778', 'Kris - Focus', 'rhand', 'true', '980', '1', '1', 'b', '153', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '91', '-1', '8680000', '1157', 'true', 'true', 'true', 'true', '3011', '5', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_kris_i01');
  701. INSERT INTO `weapon` VALUES ('4779', 'Kris - Back Blow', 'rhand', 'true', '980', '1', '1', 'b', '153', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '91', '-1', '8680000', '1157', 'true', 'true', 'true', 'true', '3019', '5', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_kris_i01');
  702. INSERT INTO `weapon` VALUES ('4780', 'Demon Dagger - Critical Bleed', 'rhand', 'true', '970', '1', '1', 'b', '170', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '99', '-1', '13100000', '1746', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_demons_sword_i01');
  703. INSERT INTO `weapon` VALUES ('4781', 'Demon Dagger - Critical Poison', 'rhand', 'true', '970', '1', '1', 'b', '170', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '99', '-1', '13100000', '1746', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_demons_sword_i01');
  704. INSERT INTO `weapon` VALUES ('4782', 'Demon Dagger - Mortal Strike', 'rhand', 'true', '970', '1', '1', 'b', '170', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '99', '-1', '13100000', '1746', 'true', 'true', 'true', 'true', '3035', '6', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_demons_sword_i01');
  705. INSERT INTO `weapon` VALUES ('4783', 'Bloody Orchid - Evasion', 'rhand', 'true', '960', '1', '1', 'a', '186', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '107', '-1', '18300000', '1464', 'true', 'true', 'true', 'true', '3009', '6', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_bloody_orchid_i01');
  706. INSERT INTO `weapon` VALUES ('4784', 'Bloody Orchid - Focus', 'rhand', 'true', '960', '1', '1', 'a', '186', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '107', '-1', '18300000', '1464', 'true', 'true', 'true', 'true', '3011', '2', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_bloody_orchid_i01');
  707. INSERT INTO `weapon` VALUES ('4785', 'Bloody Orchid - Back Blow', 'rhand', 'true', '960', '1', '1', 'a', '186', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '107', '-1', '18300000', '1464', 'true', 'true', 'true', 'true', '3019', '6', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_bloody_orchid_i01');
  708. INSERT INTO `weapon` VALUES ('4786', 'Hell Knife - Focus', 'rhand', 'true', '740', '1', '1', 'b', '122', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '122', '-1', '8680000', '1157', 'true', 'true', 'true', 'true', '3011', '5', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_hell_knife_i01');
  709. INSERT INTO `weapon` VALUES ('4787', 'Hell Knife - Back Blow', 'rhand', 'true', '740', '1', '1', 'b', '122', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '122', '-1', '8680000', '1157', 'true', 'true', 'true', 'true', '3019', '5', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_hell_knife_i01');
  710. INSERT INTO `weapon` VALUES ('4788', 'Hell Knife - Mortal Strike', 'rhand', 'true', '740', '1', '1', 'b', '122', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '122', '-1', '8680000', '1157', 'true', 'true', 'true', 'true', '3035', '5', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_hell_knife_i01');
  711. INSERT INTO `weapon` VALUES ('4789', 'Chakram - Critical Drain', 'lrhand', 'true', '1490', '2', '2', 'c', '130', '5', 'dualfist', '4', '4.00000', '0', '0', '0', '325', '0', '61', '-1', '2290000', '916', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_chakram_i01');
  712. INSERT INTO `weapon` VALUES ('4790', 'Chakram - Critical Poison', 'lrhand', 'true', '1490', '2', '2', 'c', '130', '5', 'dualfist', '4', '4.00000', '0', '0', '0', '325', '0', '61', '-1', '2290000', '916', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_chakram_i01');
  713. INSERT INTO `weapon` VALUES ('4791', 'Chakram - Rsk. Haste', 'lrhand', 'true', '1490', '2', '2', 'c', '130', '5', 'dualfist', '4', '4.00000', '0', '0', '0', '325', '0', '61', '-1', '2290000', '916', 'true', 'true', 'true', 'true', '3034', '1', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_chakram_i01');
  714. INSERT INTO `weapon` VALUES ('4792', 'Fisted Blade - Rsk. Evasion', 'lrhand', 'true', '1480', '3', '3', 'c', '169', '5', 'dualfist', '4', '4.00000', '0', '0', '0', '325', '0', '76', '-1', '4300000', '1720', 'true', 'true', 'true', 'true', '3030', '3', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_fist_blade_i01');
  715. INSERT INTO `weapon` VALUES ('4793', 'Fisted Blade - Rsk. Haste', 'lrhand', 'true', '1480', '3', '3', 'c', '169', '5', 'dualfist', '4', '4.00000', '0', '0', '0', '325', '0', '76', '-1', '4300000', '1720', 'true', 'true', 'true', 'true', '3034', '3', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_fist_blade_i01');
  716. INSERT INTO `weapon` VALUES ('4794', 'Fisted Blade - Haste', 'lrhand', 'true', '1480', '3', '3', 'c', '169', '5', 'dualfist', '4', '4.00000', '0', '0', '0', '325', '0', '76', '-1', '4300000', '1720', 'true', 'true', 'true', 'true', '3037', '3', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_fist_blade_i01');
  717. INSERT INTO `weapon` VALUES ('4795', 'Great Pata - Critical Drain', 'lrhand', 'true', '1460', '3', '3', 'c', '190', '5', 'dualfist', '4', '4.00000', '0', '0', '0', '325', '0', '83', '-1', '6130000', '2452', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_great_pata_i01');
  718. INSERT INTO `weapon` VALUES ('4796', 'Great Pata - Critical Poison', 'lrhand', 'true', '1460', '3', '3', 'c', '190', '5', 'dualfist', '4', '4.00000', '0', '0', '0', '325', '0', '83', '-1', '6130000', '2452', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_great_pata_i01');
  719. INSERT INTO `weapon` VALUES ('4797', 'Great Pata - Rsk. Haste', 'lrhand', 'true', '1460', '3', '3', 'c', '190', '5', 'dualfist', '4', '4.00000', '0', '0', '0', '325', '0', '83', '-1', '6130000', '2452', 'true', 'true', 'true', 'true', '3034', '4', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_great_pata_i01');
  720. INSERT INTO `weapon` VALUES ('4798', 'Knuckle Duster - Rsk. Evasion', 'lrhand', 'true', '1490', '2', '2', 'c', '148', '5', 'dualfist', '4', '4.00000', '0', '0', '0', '325', '0', '68', '-1', '2870000', '1148', 'true', 'true', 'true', 'true', '3030', '2', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_knuckle_dust_i01');
  721. INSERT INTO `weapon` VALUES ('4799', 'Knuckle Duster - Rsk. Haste', 'lrhand', 'true', '1490', '2', '2', 'c', '148', '5', 'dualfist', '4', '4.00000', '0', '0', '0', '325', '0', '68', '-1', '2870000', '1148', 'true', 'true', 'true', 'true', '3034', '2', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_knuckle_dust_i01');
  722. INSERT INTO `weapon` VALUES ('4800', 'Knuckle Duster - Haste', 'lrhand', 'true', '1490', '2', '2', 'c', '148', '5', 'dualfist', '4', '4.00000', '0', '0', '0', '325', '0', '68', '-1', '2870000', '1148', 'true', 'true', 'true', 'true', '3037', '2', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_knuckle_dust_i01');
  723. INSERT INTO `weapon` VALUES ('4801', 'Arthro Nail - Critical Poison', 'lrhand', 'true', '1420', '1', '1', 'b', '213', '5', 'dualfist', '4', '4.00000', '0', '0', '0', '325', '0', '91', '-1', '8680000', '1157', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_arthro_nail_i01');
  724. INSERT INTO `weapon` VALUES ('4802', 'Arthro Nail - Rsk. Evasion', 'lrhand', 'true', '1420', '1', '1', 'b', '213', '5', 'dualfist', '4', '4.00000', '0', '0', '0', '325', '0', '91', '-1', '8680000', '1157', 'true', 'true', 'true', 'true', '3030', '5', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_arthro_nail_i01');
  725. INSERT INTO `weapon` VALUES ('4803', 'Arthro Nail - Rsk. Haste', 'lrhand', 'true', '1420', '1', '1', 'b', '213', '5', 'dualfist', '4', '4.00000', '0', '0', '0', '325', '0', '91', '-1', '8680000', '1157', 'true', 'true', 'true', 'true', '3034', '5', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_arthro_nail_i01');
  726. INSERT INTO `weapon` VALUES ('4804', 'Bellion Cestus - Critical Drain', 'lrhand', 'true', '1390', '1', '1', 'b', '236', '5', 'dualfist', '4', '4.00000', '0', '0', '0', '325', '0', '99', '-1', '13100000', '1746', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_bellion_cestus_i01');
  727. INSERT INTO `weapon` VALUES ('4805', 'Bellion Cestus - Critical Poison', 'lrhand', 'true', '1390', '1', '1', 'b', '236', '5', 'dualfist', '4', '4.00000', '0', '0', '0', '325', '0', '99', '-1', '13100000', '1746', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_bellion_cestus_i01');
  728. INSERT INTO `weapon` VALUES ('4806', 'Bellion Cestus - Rsk. Haste', 'lrhand', 'true', '1390', '1', '1', 'b', '236', '5', 'dualfist', '4', '4.00000', '0', '0', '0', '325', '0', '99', '-1', '13100000', '1746', 'true', 'true', 'true', 'true', '3034', '6', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_bellion_cestus_i01');
  729. INSERT INTO `weapon` VALUES ('4807', 'Blood Tornado - Critical Drain', 'lrhand', 'true', '1370', '1', '1', 'a', '259', '5', 'dualfist', '4', '4.00000', '0', '0', '0', '325', '0', '107', '-1', '18300000', '1464', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_blood_tornado_i01');
  730. INSERT INTO `weapon` VALUES ('4808', 'Blood Tornado - Rsk. Evasion', 'lrhand', 'true', '1370', '1', '1', 'a', '259', '5', 'dualfist', '4', '4.00000', '0', '0', '0', '325', '0', '107', '-1', '18300000', '1464', 'true', 'true', 'true', 'true', '3030', '6', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_blood_tornado_i01');
  731. INSERT INTO `weapon` VALUES ('4809', 'Blood Tornado - Haste', 'lrhand', 'true', '1370', '1', '1', 'a', '259', '5', 'dualfist', '4', '4.00000', '0', '0', '0', '325', '0', '107', '-1', '18300000', '1464', 'true', 'true', 'true', 'true', '3037', '6', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_blood_tornado_i01');
  732. INSERT INTO `weapon` VALUES ('4810', 'Crystallized Ice Bow - Guidance', 'lrhand', 'true', '1790', '8', '2', 'c', '220', '5', 'bow', '12', '-3.00000', '0', '0', '0', '293', '6', '61', '-1', '2290000', '916', 'true', 'true', 'true', 'true', '3008', '1', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_crystallized_ice_bow_i01');
  733. INSERT INTO `weapon` VALUES ('4811', 'Crystallized Ice Bow - Evasion', 'lrhand', 'true', '1790', '8', '2', 'c', '220', '5', 'bow', '12', '-3.00000', '0', '0', '0', '293', '6', '61', '-1', '2290000', '916', 'true', 'true', 'true', 'true', '3009', '1', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_crystallized_ice_bow_i01');
  734. INSERT INTO `weapon` VALUES ('4812', 'Crystallized Ice Bow - Quick Recovery', 'lrhand', 'true', '1790', '8', '2', 'c', '220', '5', 'bow', '12', '-3.00000', '0', '0', '0', '293', '6', '61', '-1', '2290000', '916', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_crystallized_ice_bow_i01');
  735. INSERT INTO `weapon` VALUES ('4813', 'Elemental Bow - Guidance', 'lrhand', 'true', '1770', '8', '2', 'c', '277', '5', 'bow', '12', '-3.00000', '0', '0', '0', '227', '7', '75', '-1', '2870000', '1148', 'true', 'true', 'true', 'true', '3008', '2', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_elemental_bow_i01');
  736. INSERT INTO `weapon` VALUES ('4814', 'Elemental Bow - Miser', 'lrhand', 'true', '1770', '8', '2', 'c', '277', '5', 'bow', '12', '-3.00000', '0', '0', '0', '227', '7', '75', '-1', '2870000', '1148', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_elemental_bow_i01');
  737. INSERT INTO `weapon` VALUES ('4815', 'Elemental Bow - Quick Recovery', 'lrhand', 'true', '1770', '8', '2', 'c', '277', '5', 'bow', '12', '-3.00000', '0', '0', '0', '227', '7', '75', '-1', '2870000', '1148', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_elemental_bow_i01');
  738. INSERT INTO `weapon` VALUES ('4816', 'Elven Bow of Nobility - Evasion', 'lrhand', 'true', '1760', '8', '2', 'c', '252', '5', 'bow', '12', '-3.00000', '0', '0', '0', '293', '7', '68', '-1', '2870000', '1148', 'true', 'true', 'true', 'true', '3009', '2', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_noble_elven_bow_i01');
  739. INSERT INTO `weapon` VALUES ('4817', 'Elven Bow of Nobility - Miser', 'lrhand', 'true', '1760', '8', '2', 'c', '252', '5', 'bow', '12', '-3.00000', '0', '0', '0', '293', '7', '68', '-1', '2870000', '1148', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_noble_elven_bow_i01');
  740. INSERT INTO `weapon` VALUES ('4818', 'Elven Bow of Nobility - Cheap Shot', 'lrhand', 'true', '1760', '8', '2', 'c', '252', '5', 'bow', '12', '-3.00000', '0', '0', '0', '293', '7', '68', '-1', '2870000', '1148', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_noble_elven_bow_i01');
  741. INSERT INTO `weapon` VALUES ('4819', 'Akat Long Bow - Guidance', 'lrhand', 'true', '1740', '9', '3', 'c', '316', '5', 'bow', '12', '-3.00000', '0', '0', '0', '227', '7', '84', '-1', '4300000', '1720', 'true', 'true', 'true', 'true', '3008', '3', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_akat_long_bow_i01');
  742. INSERT INTO `weapon` VALUES ('4820', 'Akat Long Bow - Evasion', 'lrhand', 'true', '1740', '9', '3', 'c', '316', '5', 'bow', '12', '-3.00000', '0', '0', '0', '227', '7', '84', '-1', '4300000', '1720', 'true', 'true', 'true', 'true', '3009', '3', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_akat_long_bow_i01');
  743. INSERT INTO `weapon` VALUES ('4821', 'Akat Long Bow - Miser', 'lrhand', 'true', '1740', '9', '3', 'c', '316', '5', 'bow', '12', '-3.00000', '0', '0', '0', '227', '7', '84', '-1', '4300000', '1720', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_akat_long_bow_i01');
  744. INSERT INTO `weapon` VALUES ('4822', 'Eminence Bow - Guidance', 'lrhand', 'true', '1720', '10', '3', 'c', '323', '5', 'bow', '12', '-3.00000', '0', '0', '0', '293', '8', '83', '-1', '6130000', '2452', 'true', 'true', 'true', 'true', '3008', '4', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_eminence_bow_i01');
  745. INSERT INTO `weapon` VALUES ('4823', 'Eminence Bow - Miser', 'lrhand', 'true', '1720', '10', '3', 'c', '323', '5', 'bow', '12', '-3.00000', '0', '0', '0', '293', '8', '83', '-1', '6130000', '2452', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_eminence_bow_i01');
  746. INSERT INTO `weapon` VALUES ('4824', 'Eminence Bow - Cheap Shot', 'lrhand', 'true', '1720', '10', '3', 'c', '323', '5', 'bow', '12', '-3.00000', '0', '0', '0', '293', '8', '83', '-1', '6130000', '2452', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_eminence_bow_i01');
  747. INSERT INTO `weapon` VALUES ('4825', 'Dark Elven Long Bow - Evasion', 'lrhand', 'true', '1720', '3', '1', 'b', '397', '5', 'bow', '12', '-3.00000', '0', '0', '0', '227', '8', '100', '-1', '8680000', '1157', 'true', 'true', 'true', 'true', '3009', '5', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dark_elven_long_bow_i01');
  748. INSERT INTO `weapon` VALUES ('4826', 'Dark Elven Long Bow - Critical Bleed', 'lrhand', 'true', '1720', '3', '1', 'b', '397', '5', 'bow', '12', '-3.00000', '0', '0', '0', '227', '8', '100', '-1', '8680000', '1157', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dark_elven_long_bow_i01');
  749. INSERT INTO `weapon` VALUES ('4827', 'Dark Elven Long Bow - Miser', 'lrhand', 'true', '1720', '3', '1', 'b', '397', '5', 'bow', '12', '-3.00000', '0', '0', '0', '227', '8', '100', '-1', '8680000', '1157', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dark_elven_long_bow_i01');
  750. INSERT INTO `weapon` VALUES ('4828', 'Bow of Peril - Guidance', 'lrhand', 'true', '1700', '3', '1', 'b', '400', '5', 'bow', '12', '-3.00000', '0', '0', '0', '293', '9', '99', '-1', '13100000', '1746', 'true', 'true', 'true', 'true', '3008', '6', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_hazard_bow_i01');
  751. INSERT INTO `weapon` VALUES ('4829', 'Bow of Peril - Quick Recovery', 'lrhand', 'true', '1700', '3', '1', 'b', '400', '5', 'bow', '12', '-3.00000', '0', '0', '0', '293', '9', '99', '-1', '13100000', '1746', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_hazard_bow_i01');
  752. INSERT INTO `weapon` VALUES ('4830', 'Bow of Peril - Cheap Shot', 'lrhand', 'true', '1700', '3', '1', 'b', '400', '5', 'bow', '12', '-3.00000', '0', '0', '0', '293', '9', '99', '-1', '13100000', '1746', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_hazard_bow_i01');
  753. INSERT INTO `weapon` VALUES ('4831', 'Carnage Bow - Critical Bleed', 'lrhand', 'true', '1670', '2', '1', 'a', '440', '5', 'bow', '12', '-3.00000', '0', '0', '0', '293', '9', '107', '-1', '18300000', '1464', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_carnium_bow_i01');
  754. INSERT INTO `weapon` VALUES ('4832', 'Carnage Bow - Mana Up', 'lrhand', 'true', '1670', '2', '1', 'a', '440', '5', 'bow', '12', '-3.00000', '0', '0', '0', '293', '9', '107', '-1', '18300000', '1464', 'true', 'true', 'true', 'true', '3014', '1', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_carnium_bow_i01');
  755. INSERT INTO `weapon` VALUES ('4833', 'Carnage Bow - Quick Recovery', 'lrhand', 'true', '1670', '2', '1', 'a', '440', '5', 'bow', '12', '-3.00000', '0', '0', '0', '293', '9', '107', '-1', '18300000', '1464', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_carnium_bow_i01');
  756. INSERT INTO `weapon` VALUES ('4834', 'Scythe - Anger', 'lrhand', 'true', '2040', '2', '2', 'c', '107', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '61', '-1', '2290000', '916', 'true', 'true', 'true', 'true', '3600', '1', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_scythe_i01');
  757. INSERT INTO `weapon` VALUES ('4835', 'Scythe - Critical Stun', 'lrhand', 'true', '2040', '2', '2', 'c', '107', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '61', '-1', '2290000', '916', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_scythe_i01');
  758. INSERT INTO `weapon` VALUES ('4836', 'Scythe - Light', 'lrhand', 'true', '610', '2', '2', 'c', '107', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '61', '-1', '2290000', '916', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_scythe_i01');
  759. INSERT INTO `weapon` VALUES ('4837', 'Orcish Glaive - Anger', 'lrhand', 'true', '2030', '2', '2', 'c', '107', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '61', '-1', '2290000', '916', 'true', 'true', 'true', 'true', '3600', '1', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_orcish_glaive_i01');
  760. INSERT INTO `weapon` VALUES ('4838', 'Orcish Glaive - Critical Stun', 'lrhand', 'true', '2030', '2', '2', 'c', '107', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '61', '-1', '2290000', '916', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_orcish_glaive_i01');
  761. INSERT INTO `weapon` VALUES ('4839', 'Orcish Glaive - Towering Blow', 'lrhand', 'true', '2030', '2', '2', 'c', '107', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '61', '-1', '2290000', '916', 'true', 'true', 'true', 'true', '3599', '1', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_orcish_glaive_i01');
  762. INSERT INTO `weapon` VALUES ('4840', 'Body Slasher - Critical Stun', 'lrhand', 'true', '2030', '2', '2', 'c', '107', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '61', '-1', '2290000', '916', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_body_slasher_i01');
  763. INSERT INTO `weapon` VALUES ('4841', 'Body Slasher - Towering Blow', 'lrhand', 'true', '2030', '2', '2', 'c', '107', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '61', '-1', '2290000', '916', 'true', 'true', 'true', 'true', '3599', '1', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_body_slasher_i01');
  764. INSERT INTO `weapon` VALUES ('4842', 'Body Slasher - Wide Blow', 'lrhand', 'true', '2030', '2', '2', 'c', '107', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '61', '-1', '2290000', '916', 'true', 'true', 'true', 'true', '3599', '1', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_body_slasher_i01');
  765. INSERT INTO `weapon` VALUES ('4843', 'Bec de Corbin - Critical Stun', 'lrhand', 'true', '2020', '2', '2', 'c', '122', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '68', '-1', '2870000', '1148', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_bech_de_corbin_i01');
  766. INSERT INTO `weapon` VALUES ('4844', 'Bec de Corbin - Towering Blow', 'lrhand', 'true', '2020', '2', '2', 'c', '122', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '68', '-1', '2870000', '1148', 'true', 'true', 'true', 'true', '3599', '1', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_bech_de_corbin_i01');
  767. INSERT INTO `weapon` VALUES ('4845', 'Bec de Corbin - Light', 'lrhand', 'true', '600', '2', '2', 'c', '122', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '68', '-1', '2870000', '1148', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_bech_de_corbin_i01');
  768. INSERT INTO `weapon` VALUES ('4846', 'Scorpion - Anger', 'lrhand', 'true', '1990', '3', '3', 'c', '144', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '78', '-1', '4780000', '1912', 'true', 'true', 'true', 'true', '3600', '3', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_scorpion_i01');
  769. INSERT INTO `weapon` VALUES ('4847', 'Scorpion - Critical Stun', 'lrhand', 'true', '1990', '3', '3', 'c', '144', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '78', '-1', '4780000', '1912', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_scorpion_i01');
  770. INSERT INTO `weapon` VALUES ('4848', 'Scorpion - Towering Blow', 'lrhand', 'true', '1990', '3', '3', 'c', '144', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '78', '-1', '4780000', '1912', 'true', 'true', 'true', 'true', '3599', '1', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_scorpion_i01');
  771. INSERT INTO `weapon` VALUES ('4849', 'Widow Maker - Critical Stun', 'lrhand', 'true', '1980', '3', '3', 'c', '144', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '78', '-1', '4780000', '1912', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_widow_maker_i01');
  772. INSERT INTO `weapon` VALUES ('4850', 'Widow Maker - Towering Blow', 'lrhand', 'true', '1980', '3', '3', 'c', '144', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '78', '-1', '4780000', '1912', 'true', 'true', 'true', 'true', '3599', '1', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_widow_maker_i01');
  773. INSERT INTO `weapon` VALUES ('4851', 'Widow Maker - Wide Blow', 'lrhand', 'true', '1980', '3', '3', 'c', '144', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '78', '-1', '4780000', '1912', 'true', 'true', 'true', 'true', '3599', '1', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_widow_maker_i01');
  774. INSERT INTO `weapon` VALUES ('4852', 'Orcish Poleaxe - Critical Stun', 'lrhand', 'true', '1950', '3', '3', 'c', '156', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '83', '-1', '6130000', '2452', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_orcish_poleaxe_i01');
  775. INSERT INTO `weapon` VALUES ('4853', 'Orcish Poleaxe - Towering Blow', 'lrhand', 'true', '1950', '3', '3', 'c', '156', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '83', '-1', '6130000', '2452', 'true', 'true', 'true', 'true', '3599', '1', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_orcish_poleaxe_i01');
  776. INSERT INTO `weapon` VALUES ('4854', 'Orcish Poleaxe - Wide Blow', 'lrhand', 'true', '1950', '3', '3', 'c', '156', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '83', '-1', '6130000', '2452', 'true', 'true', 'true', 'true', '3599', '1', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_orcish_poleaxe_i01');
  777. INSERT INTO `weapon` VALUES ('4855', 'Great Axe - Anger', 'lrhand', 'true', '1940', '1', '1', 'b', '175', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '91', '-1', '8680000', '1157', 'true', 'true', 'true', 'true', '3600', '5', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_great_axe_i01');
  778. INSERT INTO `weapon` VALUES ('4856', 'Great Axe - Critical Stun', 'lrhand', 'true', '1940', '1', '1', 'b', '175', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '91', '-1', '8680000', '1157', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_great_axe_i01');
  779. INSERT INTO `weapon` VALUES ('4857', 'Great Axe - Light', 'lrhand', 'true', '580', '1', '1', 'b', '175', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '91', '-1', '8680000', '1157', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_great_axe_i01');
  780. INSERT INTO `weapon` VALUES ('4858', 'Lance - Anger', 'lrhand', 'true', '1920', '1', '1', 'b', '194', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '99', '-1', '13100000', '1746', 'true', 'true', 'true', 'true', '3600', '6', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_lancia_i01');
  781. INSERT INTO `weapon` VALUES ('4859', 'Lance - Critical Stun', 'lrhand', 'true', '1920', '1', '1', 'b', '194', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '99', '-1', '13100000', '1746', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_lancia_i01');
  782. INSERT INTO `weapon` VALUES ('4860', 'Lance - Towering Blow', 'lrhand', 'true', '1920', '1', '1', 'b', '194', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '99', '-1', '13100000', '1746', 'true', 'true', 'true', 'true', '3599', '1', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_lancia_i01');
  783. INSERT INTO `weapon` VALUES ('4861', 'Halberd - Critical Stun', 'lrhand', 'true', '1900', '1', '1', 'a', '213', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '107', '-1', '18300000', '1464', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_halbard_i01');
  784. INSERT INTO `weapon` VALUES ('4862', 'Halberd - Towering Blow', 'lrhand', 'true', '1900', '1', '1', 'a', '213', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '107', '-1', '18300000', '1464', 'true', 'true', 'true', 'true', '3599', '1', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_halbard_i01');
  785. INSERT INTO `weapon` VALUES ('4863', 'Halberd - Wide Blow', 'lrhand', 'true', '1900', '1', '1', 'a', '213', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '107', '-1', '18300000', '1464', 'true', 'true', 'true', 'true', '3599', '1', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_halbard_i01');
  786. INSERT INTO `weapon` VALUES ('4864', 'Heavy Doom Hammer - Magic Regeneration', 'lrhand', 'true', '1020', '2', '2', 'c', '103', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '81', '-1', '2290000', '916', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '1044', '1', '30', '0', '0', '0', 'icon.weapon_heavy_doom_hammer_i01');
  787. INSERT INTO `weapon` VALUES ('4865', 'Heavy Doom Hammer - Mental Shield', 'lrhand', 'true', '1020', '2', '2', 'c', '103', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '81', '-1', '2290000', '916', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '1035', '2', '50', '0', '0', '0', 'icon.weapon_heavy_doom_hammer_i01');
  788. INSERT INTO `weapon` VALUES ('4866', 'Heavy Doom Hammer - Magic Hold', 'lrhand', 'true', '1020', '2', '2', 'c', '103', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '81', '-1', '2290000', '916', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '1201', '23', '10', '0', '0', '0', 'icon.weapon_heavy_doom_hammer_i01');
  789. INSERT INTO `weapon` VALUES ('4867', 'Crystal Staff - Rsk. Evasion', 'lrhand', 'true', '1020', '2', '2', 'c', '103', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '81', '-1', '2290000', '916', 'true', 'true', 'true', 'true', '3031', '1', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_crystal_staff_i01');
  790. INSERT INTO `weapon` VALUES ('4868', 'Crystal Staff - Mana Up', 'lrhand', 'true', '1020', '2', '2', 'c', '103', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '81', '-1', '2290000', '916', 'true', 'true', 'true', 'true', '3014', '1', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_crystal_staff_i01');
  791. INSERT INTO `weapon` VALUES ('4869', 'Crystal Staff - Bodily Blessing', 'lrhand', 'true', '1020', '2', '2', 'c', '103', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '81', '-1', '2290000', '916', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_crystal_staff_i01');
  792. INSERT INTO `weapon` VALUES ('4870', 'Heavy Doom Axe - Magic Poison', 'lrhand', 'true', '1010', '2', '2', 'c', '103', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '81', '-1', '2290000', '916', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '1168', '6', '8', '0', '0', '0', 'icon.weapon_heavy_doom_axe_i01');
  793. INSERT INTO `weapon` VALUES ('4871', 'Heavy Doom Axe - Magic Weakness', 'lrhand', 'true', '1010', '2', '2', 'c', '103', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '81', '-1', '2290000', '916', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '1164', '6', '8', '0', '0', '0', 'icon.weapon_heavy_doom_axe_i01');
  794. INSERT INTO `weapon` VALUES ('4872', 'Heavy Doom Axe - Magic Chaos', 'lrhand', 'true', '1010', '2', '2', 'c', '103', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '81', '-1', '2290000', '916', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '1222', '2', '8', '0', '0', '0', 'icon.weapon_heavy_doom_axe_i01');
  795. INSERT INTO `weapon` VALUES ('4873', 'Cursed Staff - Magic Hold', 'lrhand', 'true', '1000', '2', '2', 'c', '119', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '91', '-1', '2870000', '1148', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '1201', '23', '10', '0', '0', '0', 'icon.weapon_cursed_staff_i01');
  796. INSERT INTO `weapon` VALUES ('4874', 'Cursed Staff - Magic Poison', 'lrhand', 'true', '1000', '2', '2', 'c', '119', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '91', '-1', '2870000', '1148', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '1168', '6', '8', '0', '0', '0', 'icon.weapon_cursed_staff_i01');
  797. INSERT INTO `weapon` VALUES ('4875', 'Cursed Staff - Magic Weakness', 'lrhand', 'true', '1000', '2', '2', 'c', '119', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '91', '-1', '2870000', '1148', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '1164', '6', '8', '0', '0', '0', 'icon.weapon_cursed_staff_i01');
  798. INSERT INTO `weapon` VALUES ('4876', 'Paradia Staff - Magic Regeneration', 'lrhand', 'true', '1010', '3', '3', 'c', '135', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '101', '-1', '4300000', '1720', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '1044', '2', '30', '0', '0', '0', 'icon.weapon_paradia_staff_i01');
  799. INSERT INTO `weapon` VALUES ('4877', 'Paradia Staff - Mental Shield', 'lrhand', 'true', '1010', '3', '3', 'c', '135', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '101', '-1', '4300000', '1720', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '1035', '3', '50', '0', '0', '0', 'icon.weapon_paradia_staff_i01');
  800. INSERT INTO `weapon` VALUES ('4878', 'Paradia Staff - Magic Hold', 'lrhand', 'true', '1010', '3', '3', 'c', '135', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '101', '-1', '4300000', '1720', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '1201', '23', '10', '0', '0', '0', 'icon.weapon_paradia_staff_i01');
  801. INSERT INTO `weapon` VALUES ('4879', 'Pa\'agrian Hammer - Rsk. Evasion', 'lrhand', 'true', '1010', '3', '3', 'c', '135', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '101', '-1', '4300000', '1720', 'true', 'true', 'true', 'true', '3031', '3', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_paagrio_hammer_i01');
  802. INSERT INTO `weapon` VALUES ('4880', 'Pa\'agrian Hammer - Magic Poison', 'lrhand', 'true', '1010', '3', '3', 'c', '135', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '101', '-1', '4300000', '1720', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '1168', '6', '7', '0', '0', '0', 'icon.weapon_paagrio_hammer_i01');
  803. INSERT INTO `weapon` VALUES ('4881', 'Pa\'agrian Hammer - Magic Weakness', 'lrhand', 'true', '1010', '3', '3', 'c', '135', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '101', '-1', '4300000', '1720', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '1164', '6', '7', '0', '0', '0', 'icon.weapon_paagrio_hammer_i01');
  804. INSERT INTO `weapon` VALUES ('4882', 'Sage\'s Staff - Magic Hold', 'lrhand', 'true', '1000', '3', '3', 'c', '135', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '101', '-1', '4300000', '1720', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '1201', '23', '10', '0', '0', '0', 'icon.weapon_sages_staff_i01');
  805. INSERT INTO `weapon` VALUES ('4883', 'Sage\'s Staff - Magic Poison', 'lrhand', 'true', '1000', '3', '3', 'c', '135', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '101', '-1', '4300000', '1720', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '1168', '6', '7', '0', '0', '0', 'icon.weapon_sages_staff_i01');
  806. INSERT INTO `weapon` VALUES ('4884', 'Sage\'s Staff - Magic Weakness', 'lrhand', 'true', '1000', '3', '3', 'c', '135', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '101', '-1', '4300000', '1720', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '1164', '6', '7', '0', '0', '0', 'icon.weapon_sages_staff_i01');
  807. INSERT INTO `weapon` VALUES ('4885', 'Pa\'agrian Axe - Mana Up', 'lrhand', 'true', '990', '3', '3', 'c', '141', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '104', '-1', '4780000', '1912', 'true', 'true', 'true', 'true', '3014', '1', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_paagrio_axe_i01');
  808. INSERT INTO `weapon` VALUES ('4886', 'Pa\'agrian Axe - Magic Weakness', 'lrhand', 'true', '990', '3', '3', 'c', '141', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '104', '-1', '4780000', '1912', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '1164', '6', '7', '0', '0', '0', 'icon.weapon_paagrio_axe_i01');
  809. INSERT INTO `weapon` VALUES ('4887', 'Pa\'agrian Axe - Magic Chaos', 'lrhand', 'true', '990', '3', '3', 'c', '141', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '104', '-1', '4780000', '1912', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '1222', '2', '7', '0', '0', '0', 'icon.weapon_paagrio_axe_i01');
  810. INSERT INTO `weapon` VALUES ('4888', 'Deadman\'s Staff - Magic Regeneration', 'lrhand', 'true', '1010', '3', '3', 'c', '152', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '111', '-1', '6130000', '2452', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '1044', '1', '30', '0', '0', '0', 'icon.weapon_deadmans_staff_i01');
  811. INSERT INTO `weapon` VALUES ('4889', 'Deadman\'s Staff - Mental Shield', 'lrhand', 'true', '1010', '3', '3', 'c', '152', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '111', '-1', '6130000', '2452', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '1035', '3', '50', '0', '0', '0', 'icon.weapon_deadmans_staff_i01');
  812. INSERT INTO `weapon` VALUES ('4890', 'Deadman\'s Staff - Magic Hold', 'lrhand', 'true', '1010', '3', '3', 'c', '152', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '111', '-1', '6130000', '2452', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '1201', '23', '10', '0', '0', '0', 'icon.weapon_deadmans_staff_i01');
  813. INSERT INTO `weapon` VALUES ('4891', 'Ghoul\'s Staff - Rsk. Evasion', 'lrhand', 'true', '1000', '3', '3', 'c', '152', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '111', '-1', '6130000', '2452', 'true', 'true', 'true', 'true', '3031', '4', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_ghouls_staff_i01');
  814. INSERT INTO `weapon` VALUES ('4892', 'Ghoul\'s Staff - Mana Up', 'lrhand', 'true', '1000', '3', '3', 'c', '152', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '111', '-1', '6130000', '2452', 'true', 'true', 'true', 'true', '3014', '1', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_ghouls_staff_i01');
  815. INSERT INTO `weapon` VALUES ('4893', 'Ghoul\'s Staff - Bodily Blessing', 'lrhand', 'true', '1000', '3', '3', 'c', '152', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '111', '-1', '6130000', '2452', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_ghouls_staff_i01');
  816. INSERT INTO `weapon` VALUES ('4894', 'Demon\'s Staff - Magic Poison', 'lrhand', 'true', '990', '3', '3', 'c', '152', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '111', '-1', '6130000', '2452', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '1168', '6', '7', '0', '0', '0', 'icon.weapon_demons_staff_i01');
  817. INSERT INTO `weapon` VALUES ('4895', 'Demon\'s Staff - Magic Weakness', 'lrhand', 'true', '990', '3', '3', 'c', '152', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '111', '-1', '6130000', '2452', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '1164', '6', '7', '0', '0', '0', 'icon.weapon_demons_staff_i01');
  818. INSERT INTO `weapon` VALUES ('4896', 'Demon\'s Staff - Magic Chaos', 'lrhand', 'true', '990', '3', '3', 'c', '152', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '111', '-1', '6130000', '2452', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '1222', '2', '7', '0', '0', '0', 'icon.weapon_demons_staff_i01');
  819. INSERT INTO `weapon` VALUES ('4897', 'Sprite\'s Staff - Magic Regeneration', 'lrhand', 'true', '960', '1', '1', 'b', '170', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '122', '-1', '8680000', '1157', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '1044', '3', '30', '0', '0', '0', 'icon.weapon_sprites_staff_i01');
  820. INSERT INTO `weapon` VALUES ('4898', 'Sprite\'s Staff - Mental Shield', 'lrhand', 'true', '960', '1', '1', 'b', '170', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '122', '-1', '8680000', '1157', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '1035', '4', '50', '0', '0', '0', 'icon.weapon_sprites_staff_i01');
  821. INSERT INTO `weapon` VALUES ('4899', 'Sprite\'s Staff - Magic Hold', 'lrhand', 'true', '960', '1', '1', 'b', '170', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '122', '-1', '8680000', '1157', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '1201', '23', '10', '0', '0', '0', 'icon.weapon_sprites_staff_i01');
  822. INSERT INTO `weapon` VALUES ('4900', 'Staff of Evil Spirits - Magic Focus', 'lrhand', 'true', '930', '1', '1', 'b', '189', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '132', '-1', '13100000', '1746', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_staff_of_evil_sprit_i01');
  823. INSERT INTO `weapon` VALUES ('4901', 'Staff of Evil Spirits - Bodily Blessing', 'lrhand', 'true', '930', '1', '1', 'b', '189', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '132', '-1', '13100000', '1746', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_staff_of_evil_sprit_i01');
  824. INSERT INTO `weapon` VALUES ('4902', 'Staff of Evil Spirits - Magic Poison', 'lrhand', 'true', '930', '1', '1', 'b', '189', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '132', '-1', '13100000', '1746', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '1168', '6', '6', '0', '0', '0', 'icon.weapon_staff_of_evil_sprit_i01');
  825. INSERT INTO `weapon` VALUES ('4903', 'Dasparion\'s Staff', 'lrhand', 'true', '920', '1', '1', 'a', '207', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '143', '-1', '18300000', '1464', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dasparions_staff_i01');
  826. INSERT INTO `weapon` VALUES ('4904', 'Dasparion\'s Staff', 'lrhand', 'true', '920', '1', '1', 'a', '207', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '143', '-1', '18300000', '1464', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dasparions_staff_i01');
  827. INSERT INTO `weapon` VALUES ('4905', 'Dasparion\'s Staff', 'lrhand', 'true', '920', '1', '1', 'a', '207', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '143', '-1', '18300000', '1464', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dasparions_staff_i01');
  828. INSERT INTO `weapon` VALUES ('5127', 'Dailaon Knife', 'rhand', 'false', '300', '2', '2', 'd', '5', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '5', '-1', '409000', '743', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_monster_i00');
  829. INSERT INTO `weapon` VALUES ('5128', 'Crokian Blade', 'rhand', 'true', '300', '2', '2', 'd', '5', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '5', '-1', '409000', '743', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_monster_i00');
  830. INSERT INTO `weapon` VALUES ('5129', 'Doll Knife', 'lrhand', 'false', '300', '2', '2', 'd', '200', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '6', '-1', '409000', '743', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_monster_i00');
  831. INSERT INTO `weapon` VALUES ('5130', 'Nos Sword', 'rhand', 'true', '300', '2', '2', 'd', '5', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '5', '-1', '409000', '743', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_monster_i00');
  832. INSERT INTO `weapon` VALUES ('5131', 'Parhit Staff', 'rhand', 'true', '300', '2', '2', 'd', '5', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '5', '-1', '409000', '743', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_monster_i00');
  833. INSERT INTO `weapon` VALUES ('5132', 'Giant Trident', 'rhand', 'true', '300', '2', '2', 'd', '5', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '5', '-1', '409000', '743', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_monster_i00');
  834. INSERT INTO `weapon` VALUES ('5133', 'Chrono Unitus', 'lrhand', 'false', '0', '0', '0', 'none', '1', '5', 'dualfist', '4', '4.00000', '0', '0', '0', '325', '0', '1', '-1', '0', '0', 'true', 'false', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_chrono_tambourine_i00');
  835. INSERT INTO `weapon` VALUES ('5176', 'Serpentine Spike', 'strider', 'false', '100', '1', '1', 'none', '17', '10', 'pet', '8', '0.00000', '0', '0', '0', '277', '0', '21', '-1', '1600000', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.etc_pet_arms_i08');
  836. INSERT INTO `weapon` VALUES ('5177', 'Drake Horn', 'strider', 'false', '100', '1', '1', 'none', '19', '10', 'pet', '8', '0.00000', '0', '0', '0', '277', '0', '24', '-1', '2300000', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.etc_pet_arms_i09');
  837. INSERT INTO `weapon` VALUES ('5178', 'Assult Alicorn', 'strider', 'false', '100', '1', '1', 'none', '21', '10', 'pet', '8', '0.00000', '0', '0', '0', '277', '0', '27', '-1', '3400000', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.etc_pet_arms_i09');
  838. INSERT INTO `weapon` VALUES ('5179', 'Draconic Slicer', 'strider', 'false', '100', '1', '1', 'none', '23', '10', 'pet', '8', '0.00000', '0', '0', '0', '277', '0', '30', '-1', '4900000', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.etc_pet_arms_i10');
  839. INSERT INTO `weapon` VALUES ('5180', 'Ohpdian Lance', 'strider', 'false', '100', '1', '1', 'none', '25', '10', 'pet', '8', '0.00000', '0', '0', '0', '277', '0', '34', '-1', '7300000', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.etc_pet_arms_i10');
  840. INSERT INTO `weapon` VALUES ('5181', 'Diamond Drill', 'strider', 'false', '100', '1', '1', 'none', '27', '10', 'pet', '8', '0.00000', '0', '0', '0', '277', '0', '37', '-1', '10000000', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.etc_pet_arms_i11');
  841. INSERT INTO `weapon` VALUES ('5187', 'Serpentine Grinder', 'hatchling', 'false', '100', '1', '1', 'none', '19', '10', 'pet', '8', '0.00000', '0', '0', '0', '277', '0', '24', '-1', '2300000', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.etc_pet_arms_i05');
  842. INSERT INTO `weapon` VALUES ('5188', 'Fang of Dahak', 'hatchling', 'false', '100', '1', '1', 'none', '21', '10', 'pet', '8', '0.00000', '0', '0', '0', '277', '0', '27', '-1', '3400000', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.etc_pet_arms_i05');
  843. INSERT INTO `weapon` VALUES ('5189', 'Crimson Blood Fang', 'hatchling', 'false', '100', '1', '1', 'none', '23', '10', 'pet', '8', '0.00000', '0', '0', '0', '277', '0', '30', '-1', '4900000', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.etc_pet_arms_i06');
  844. INSERT INTO `weapon` VALUES ('5190', 'Draconic Chopper', 'hatchling', 'false', '100', '1', '1', 'none', '25', '10', 'pet', '8', '0.00000', '0', '0', '0', '277', '0', '34', '-1', '7300000', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.etc_pet_arms_i06');
  845. INSERT INTO `weapon` VALUES ('5191', 'Diabolic Grinder', 'hatchling', 'false', '100', '1', '1', 'none', '27', '10', 'pet', '8', '0.00000', '0', '0', '0', '277', '0', '37', '-1', '10000000', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.etc_pet_arms_i07');
  846. INSERT INTO `weapon` VALUES ('5217', 'Wolf Level 75 Weapon', 'wolf', 'false', '100', '1', '1', 'none', '194', '10', 'pet', '8', '0.00000', '0', '0', '0', '277', '0', '136', '-1', '61084', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.etc_pet_arms_i02');
  847. INSERT INTO `weapon` VALUES ('5233', 'Keshanberk*Keshanberk', 'lrhand', 'true', '2080', '1', '1', 'a', '259', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '107', '-1', '18300000', '1464', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dual_sword_i00');
  848. INSERT INTO `weapon` VALUES ('5284', 'Zweihander', 'lrhand', 'false', '1530', '2', '2', 'none', '38', '10', 'bigsword', '8', '0.00000', '0', '0', '0', '325', '0', '21', '-1', '244000', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_zweihander_i00');
  849. INSERT INTO `weapon` VALUES ('5285', 'Heavy Sword', 'lrhand', 'true', '1520', '2', '2', 'd', '49', '10', 'bigsword', '8', '0.00000', '0', '0', '0', '325', '0', '26', '-1', '409000', '743', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_heavy_sword_i00');
  850. INSERT INTO `weapon` VALUES ('5286', 'Berserker Blade', 'lrhand', 'true', '1380', '3', '3', 'c', '190', '10', 'bigsword', '8', '0.00000', '0', '0', '0', '325', '0', '83', '-1', '6130000', '2452', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_berserker_blade_i00');
  851. INSERT INTO `weapon` VALUES ('5292', 'Sealed Dark Crystal Shield', 'lhand', 'true', '1190', '0', '0', 'a', '0', '0', 'none', '0', '0.00000', '-8', '243', '20', '0', '0', '0', '-1', '1220000', '97', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.shield_dark_crystal_shield_i02');
  852. INSERT INTO `weapon` VALUES ('5315', 'Sealed Shield of Nightmare', 'lhand', 'true', '1180', '0', '0', 'a', '0', '0', 'none', '0', '0.00000', '-8', '256', '20', '0', '0', '0', '-1', '1850000', '148', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.shield_shield_of_nightmare_i02');
  853. INSERT INTO `weapon` VALUES ('5596', 'Dasparion\'s Staff - Mana Up', 'lrhand', 'true', '920', '1', '1', 'a', '207', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '143', '-1', '18300000', '1464', 'true', 'true', 'true', 'true', '3014', '2', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dasparions_staff_i01');
  854. INSERT INTO `weapon` VALUES ('5597', 'Dasparion\'s Staff - Conversion', 'lrhand', 'true', '920', '1', '1', 'a', '207', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '143', '-1', '18300000', '1464', 'true', 'true', 'true', 'true', '3048', '2', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dasparions_staff_i01');
  855. INSERT INTO `weapon` VALUES ('5598', 'Dasparion\'s Staff - Acumen', 'lrhand', 'true', '920', '1', '1', 'a', '207', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '143', '-1', '18300000', '1464', 'true', 'true', 'true', 'true', '3047', '2', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dasparions_staff_i01');
  856. INSERT INTO `weapon` VALUES ('5599', 'Meteor Shower - Focus', 'rhand', 'true', '1600', '1', '1', 'a', '213', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '107', '-1', '18300000', '1464', 'true', 'true', 'true', 'true', '3050', '1', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_meteor_shower_i01');
  857. INSERT INTO `weapon` VALUES ('5600', 'Meteor Shower - Critical Bleed', 'rhand', 'true', '1600', '1', '1', 'a', '213', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '107', '-1', '18300000', '1464', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '3021', '5', '35', 'icon.weapon_meteor_shower_i01');
  858. INSERT INTO `weapon` VALUES ('5601', 'Meteor Shower - Rsk. Haste', 'rhand', 'true', '1600', '1', '1', 'a', '213', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '107', '-1', '18300000', '1464', 'true', 'true', 'true', 'true', '3056', '2', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_meteor_shower_i01');
  859. INSERT INTO `weapon` VALUES ('5602', 'Elysian - Health', 'rhand', 'true', '1580', '1', '1', 'a', '232', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '114', '-1', '27000000', '2160', 'true', 'true', 'true', 'true', '3013', '3', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_elysian_i01');
  860. INSERT INTO `weapon` VALUES ('5603', 'Elysian - Anger', 'rhand', 'true', '1580', '1', '1', 'a', '232', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '114', '-1', '27000000', '2160', 'true', 'true', 'true', 'true', '3057', '2', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_elysian_i01');
  861. INSERT INTO `weapon` VALUES ('5604', 'Elysian - Critical Drain', 'rhand', 'true', '1580', '1', '1', 'a', '232', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '114', '-1', '27000000', '2160', 'true', 'true', 'true', 'true', '3072', '1', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_elysian_i01');
  862. INSERT INTO `weapon` VALUES ('5605', 'Branch of The Mother Tree - Conversion', 'lrhand', 'true', '900', '1', '1', 'a', '226', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '152', '-1', '27000000', '2160', 'true', 'true', 'true', 'true', '3048', '2', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_worldtrees_branch_i01');
  863. INSERT INTO `weapon` VALUES ('5606', 'Branch of The Mother Tree - Magic Damage', 'lrhand', 'true', '900', '1', '1', 'a', '226', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '152', '-1', '27000000', '2160', 'true', 'true', 'true', 'true', '3552', '1', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_worldtrees_branch_i01');
  864. INSERT INTO `weapon` VALUES ('5607', 'Branch of The Mother Tree - Acumen', 'lrhand', 'true', '900', '1', '1', 'a', '226', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '152', '-1', '27000000', '2160', 'true', 'true', 'true', 'true', '3047', '2', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_worldtrees_branch_i01');
  865. INSERT INTO `weapon` VALUES ('5608', 'Carnage Bow - Light', 'lrhand', 'true', '500', '2', '1', 'a', '440', '5', 'bow', '12', '-3.00000', '0', '0', '0', '293', '9', '107', '-1', '18300000', '1464', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_carnium_bow_i01');
  866. INSERT INTO `weapon` VALUES ('5609', 'Carnage Bow - Critical Bleed', 'lrhand', 'true', '1670', '2', '1', 'a', '440', '5', 'bow', '12', '-3.00000', '0', '0', '0', '293', '9', '107', '-1', '18300000', '1464', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '3021', '5', '35', 'icon.weapon_carnium_bow_i01');
  867. INSERT INTO `weapon` VALUES ('5610', 'Carnage Bow - Mana Up', 'lrhand', 'true', '1670', '2', '1', 'a', '440', '5', 'bow', '12', '-3.00000', '0', '0', '0', '293', '9', '107', '-1', '18300000', '1464', 'true', 'true', 'true', 'true', '3014', '2', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_carnium_bow_i01');
  868. INSERT INTO `weapon` VALUES ('5611', 'Soul Bow - Cheap Shot', 'lrhand', 'true', '1660', '2', '1', 'a', '528', '5', 'bow', '12', '-3.00000', '0', '0', '0', '227', '10', '125', '-1', '27000000', '2160', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_soul_bow_i01');
  869. INSERT INTO `weapon` VALUES ('5612', 'Soul Bow - Quick Recovery', 'lrhand', 'true', '1660', '2', '1', 'a', '528', '5', 'bow', '12', '-3.00000', '0', '0', '0', '227', '10', '125', '-1', '27000000', '2160', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_soul_bow_i01');
  870. INSERT INTO `weapon` VALUES ('5613', 'Soul Bow - Critical Poison', 'lrhand', 'true', '1660', '2', '1', 'a', '528', '5', 'bow', '12', '-3.00000', '0', '0', '0', '227', '10', '125', '-1', '27000000', '2160', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '3024', '5', '10', 'icon.weapon_soul_bow_i01');
  871. INSERT INTO `weapon` VALUES ('5614', 'Bloody Orchid - Focus', 'rhand', 'true', '960', '1', '1', 'a', '186', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '107', '-1', '18300000', '1464', 'true', 'true', 'true', 'true', '3051', '1', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_bloody_orchid_i01');
  872. INSERT INTO `weapon` VALUES ('5615', 'Bloody Orchid - Back Blow', 'rhand', 'true', '960', '1', '1', 'a', '186', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '107', '-1', '18300000', '1464', 'true', 'true', 'true', 'true', '3599', '1', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_bloody_orchid_i01');
  873. INSERT INTO `weapon` VALUES ('5616', 'Bloody Orchid - Critical Bleed', 'rhand', 'true', '960', '1', '1', 'a', '186', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '107', '-1', '18300000', '1464', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '3021', '5', '35', 'icon.weapon_bloody_orchid_i01');
  874. INSERT INTO `weapon` VALUES ('5617', 'Soul Separator - Guidance', 'rhand', 'true', '950', '1', '1', 'a', '203', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '114', '-1', '27000000', '2160', 'true', 'true', 'true', 'true', '3064', '1', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_soul_separator_i01');
  875. INSERT INTO `weapon` VALUES ('5618', 'Soul Separator - Critical Damage', 'rhand', 'true', '950', '1', '1', 'a', '203', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '114', '-1', '27000000', '2160', 'true', 'true', 'true', 'true', '3066', '2', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_soul_separator_i01');
  876. INSERT INTO `weapon` VALUES ('5619', 'Soul Separator - Rsk. Haste', 'rhand', 'true', '950', '1', '1', 'a', '203', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '114', '-1', '27000000', '2160', 'true', 'true', 'true', 'true', '3056', '2', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_soul_separator_i01');
  877. INSERT INTO `weapon` VALUES ('5620', 'Blood Tornado - Haste', 'lrhand', 'true', '1370', '1', '1', 'a', '259', '5', 'dualfist', '4', '4.00000', '0', '0', '0', '325', '0', '107', '-1', '18300000', '1464', 'true', 'true', 'true', 'true', '3068', '2', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_blood_tornado_i01');
  878. INSERT INTO `weapon` VALUES ('5621', 'Blood Tornado - Focus', 'lrhand', 'true', '1370', '1', '1', 'a', '259', '5', 'dualfist', '4', '4.00000', '0', '0', '0', '325', '0', '107', '-1', '18300000', '1464', 'true', 'true', 'true', 'true', '3565', '1', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_blood_tornado_i01');
  879. INSERT INTO `weapon` VALUES ('5622', 'Blood Tornado - Anger', 'lrhand', 'true', '1370', '1', '1', 'a', '259', '5', 'dualfist', '4', '4.00000', '0', '0', '0', '325', '0', '107', '-1', '18300000', '1464', 'true', 'true', 'true', 'true', '3058', '1', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_blood_tornado_i01');
  880. INSERT INTO `weapon` VALUES ('5623', 'Dragon Grinder - Rsk. Evasion', 'lrhand', 'true', '1350', '1', '1', 'a', '282', '5', 'dualfist', '4', '4.00000', '0', '0', '0', '325', '0', '114', '-1', '27000000', '2160', 'true', 'true', 'true', 'true', '3069', '1', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dragon_grinder_i01');
  881. INSERT INTO `weapon` VALUES ('5624', 'Dragon Grinder - Guidance', 'lrhand', 'true', '1350', '1', '1', 'a', '282', '5', 'dualfist', '4', '4.00000', '0', '0', '0', '325', '0', '114', '-1', '27000000', '2160', 'true', 'true', 'true', 'true', '3065', '1', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dragon_grinder_i01');
  882. INSERT INTO `weapon` VALUES ('5625', 'Dragon Grinder - Health', 'lrhand', 'true', '1350', '1', '1', 'a', '282', '5', 'dualfist', '4', '4.00000', '0', '0', '0', '325', '0', '114', '-1', '27000000', '2160', 'true', 'true', 'true', 'true', '3013', '3', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dragon_grinder_i01');
  883. INSERT INTO `weapon` VALUES ('5626', 'Halberd - Haste', 'lrhand', 'true', '1900', '1', '1', 'a', '213', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '107', '-1', '18300000', '1464', 'true', 'true', 'true', 'true', '3601', '7', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_halbard_i01');
  884. INSERT INTO `weapon` VALUES ('5627', 'Halberd - Critical Stun', 'lrhand', 'true', '1900', '1', '1', 'a', '213', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '107', '-1', '18300000', '1464', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '3070', '1', '25', 'icon.weapon_halbard_i01');
  885. INSERT INTO `weapon` VALUES ('5628', 'Halberd - Wide Blow', 'lrhand', 'true', '1900', '1', '1', 'a', '213', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '107', '-1', '18300000', '1464', 'true', 'true', 'true', 'true', '3599', '1', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_halbard_i01');
  886. INSERT INTO `weapon` VALUES ('5629', 'Orcish Halberd', 'lrhand', 'true', '1880', '1', '1', 'a', '219', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '109', '-1', '21300000', '1704', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_orcish_halbard_i01');
  887. INSERT INTO `weapon` VALUES ('5630', 'Orcish Halberd', 'lrhand', 'true', '1880', '1', '1', 'a', '219', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '109', '-1', '21300000', '1704', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_orcish_halbard_i01');
  888. INSERT INTO `weapon` VALUES ('5631', 'Orcish Halberd', 'lrhand', 'true', '1880', '1', '1', 'a', '219', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '109', '-1', '21300000', '1704', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_orcish_halbard_i01');
  889. INSERT INTO `weapon` VALUES ('5632', 'Tallum Glaive - Guidance', 'lrhand', 'true', '1840', '1', '1', 'a', '232', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '114', '-1', '27000000', '2160', 'true', 'true', 'true', 'true', '3602', '8', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_tallum_glaive_i01');
  890. INSERT INTO `weapon` VALUES ('5633', 'Tallum Glaive - Health', 'lrhand', 'true', '1840', '1', '1', 'a', '232', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '114', '-1', '27000000', '2160', 'true', 'true', 'true', 'true', '3013', '4', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_tallum_glaive_i01');
  891. INSERT INTO `weapon` VALUES ('5634', 'Tallum Glaive - Wide Blow', 'lrhand', 'true', '1840', '1', '1', 'a', '232', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '114', '-1', '27000000', '2160', 'true', 'true', 'true', 'true', '3599', '1', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_tallum_glaive_i01');
  892. INSERT INTO `weapon` VALUES ('5635', 'Tallum Blade - Critical Poison', 'rhand', 'true', '1330', '1', '1', 'a', '213', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '107', '-1', '18300000', '1464', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '3024', '5', '10', 'icon.weapon_tallum_blade_i01');
  893. INSERT INTO `weapon` VALUES ('5636', 'Tallum Blade - Haste', 'rhand', 'true', '1330', '1', '1', 'a', '213', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '107', '-1', '18300000', '1464', 'true', 'true', 'true', 'true', '3068', '2', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_tallum_blade_i01');
  894. INSERT INTO `weapon` VALUES ('5637', 'Tallum Blade - Anger', 'rhand', 'true', '1330', '1', '1', 'a', '213', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '107', '-1', '18300000', '1464', 'true', 'true', 'true', 'true', '3057', '1', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_tallum_blade_i01');
  895. INSERT INTO `weapon` VALUES ('5638', 'Elemental Sword - Magic Power', 'rhand', 'true', '830', '1', '1', 'a', '170', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '143', '-1', '18300000', '1464', 'true', 'true', 'true', 'true', '3073', '1', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_elemental_sword_i01');
  896. INSERT INTO `weapon` VALUES ('5639', 'Elemental Sword - Magic Paralyze', 'rhand', 'true', '830', '1', '1', 'a', '170', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '143', '-1', '18300000', '1464', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '3075', '1', '10', '0', '0', '0', 'icon.weapon_elemental_sword_i01');
  897. INSERT INTO `weapon` VALUES ('5640', 'Elemental Sword - Empower', 'rhand', 'true', '830', '1', '1', 'a', '170', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '143', '-1', '18300000', '1464', 'true', 'true', 'true', 'true', '3072', '1', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_elemental_sword_i01');
  898. INSERT INTO `weapon` VALUES ('5641', 'Sword of Miracles - Magic Power', 'rhand', 'true', '840', '1', '1', 'a', '186', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '152', '-1', '27000000', '2160', 'true', 'true', 'true', 'true', '3073', '2', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_sword_of_miracle_i01');
  899. INSERT INTO `weapon` VALUES ('5642', 'Sword of Miracles - Magic Silence', 'rhand', 'true', '840', '1', '1', 'a', '186', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '152', '-1', '27000000', '2160', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '3074', '1', '10', '0', '0', '0', 'icon.weapon_sword_of_miracle_i01');
  900. INSERT INTO `weapon` VALUES ('5643', 'Sword of Miracles - Acumen', 'rhand', 'true', '840', '1', '1', 'a', '186', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '152', '-1', '27000000', '2160', 'true', 'true', 'true', 'true', '3047', '2', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_sword_of_miracle_i01');
  901. INSERT INTO `weapon` VALUES ('5644', 'Dragon Slayer - Health', 'lrhand', 'true', '1840', '1', '1', 'a', '282', '10', 'bigsword', '8', '0.00000', '0', '0', '0', '325', '0', '114', '-1', '27000000', '2160', 'true', 'true', 'true', 'true', '3013', '3', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dragon_slayer_i01');
  902. INSERT INTO `weapon` VALUES ('5645', 'Dragon Slayer - Critical Bleed', 'lrhand', 'true', '1840', '1', '1', 'a', '282', '10', 'bigsword', '8', '0.00000', '0', '0', '0', '325', '0', '114', '-1', '27000000', '2160', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '3021', '5', '24', 'icon.weapon_dragon_slayer_i01');
  903. INSERT INTO `weapon` VALUES ('5646', 'Dragon Slayer - Critical Drain', 'lrhand', 'true', '1840', '1', '1', 'a', '282', '10', 'bigsword', '8', '0.00000', '0', '0', '0', '325', '0', '114', '-1', '27000000', '2160', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '3022', '4', '20', 'icon.weapon_dragon_slayer_i01');
  904. INSERT INTO `weapon` VALUES ('5647', 'Dark Legion\'s Edge - Critical Damage', 'rhand', 'true', '1320', '1', '1', 'a', '232', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '114', '-1', '27000000', '2160', 'true', 'true', 'true', 'true', '3067', '2', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dark_legions_edge_i01');
  905. INSERT INTO `weapon` VALUES ('5648', 'Dark Legion\'s Edge - Health', 'rhand', 'true', '1320', '1', '1', 'a', '232', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '114', '-1', '27000000', '2160', 'true', 'true', 'true', 'true', '3013', '3', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dark_legions_edge_i01');
  906. INSERT INTO `weapon` VALUES ('5649', 'Dark Legion\'s Edge - Rsk. Focus', 'rhand', 'true', '1320', '1', '1', 'a', '232', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '114', '-1', '27000000', '2160', 'true', 'true', 'true', 'true', '3071', '2', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dark_legions_edge_i01');
  907. INSERT INTO `weapon` VALUES ('5704', 'Keshanberk*Keshanberk', 'lrhand', 'true', '2080', '1', '1', 'a', '259', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '107', '-1', '18300000', '1464', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dual_sword_i00');
  908. INSERT INTO `weapon` VALUES ('5705', 'Keshanberk*Damascus', 'lrhand', 'true', '2080', '1', '1', 'a', '275', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '112', '-1', '24100000', '1928', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dual_sword_i00');
  909. INSERT INTO `weapon` VALUES ('5706', 'Damascus*Damascus', 'lrhand', 'true', '2080', '1', '1', 'a', '282', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '114', '-1', '27000000', '2160', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dual_sword_i00');
  910. INSERT INTO `weapon` VALUES ('5791', 'Tomb Guard A', 'lrhand', 'true', '2180', '2', '2', 'd', '78', '10', 'bigsword', '8', '0.00000', '0', '0', '0', '325', '0', '39', '-1', '967000', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_monster_i00');
  911. INSERT INTO `weapon` VALUES ('5792', 'Tomb Guard B', 'lrhand', 'true', '2180', '2', '2', 'd', '78', '10', 'bigsword', '8', '0.00000', '0', '0', '0', '325', '0', '39', '-1', '967000', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_monster_i00');
  912. INSERT INTO `weapon` VALUES ('5793', 'Tomb Savant A', 'rhand', 'true', '1380', '3', '3', 'c', '156', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '83', '-1', '6130000', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_monster_i00');
  913. INSERT INTO `weapon` VALUES ('5794', 'Tomb Savant B', 'rhand', 'true', '1380', '3', '3', 'c', '156', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '83', '-1', '6130000', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_monster_i00');
  914. INSERT INTO `weapon` VALUES ('5795', 'Tomb Guard A', 'lrhand', 'true', '2180', '2', '2', 'd', '78', '10', 'bigsword', '8', '0.00000', '0', '0', '0', '325', '0', '39', '-1', '967000', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_monster_i00');
  915. INSERT INTO `weapon` VALUES ('5796', 'Tomb Guard B', 'lrhand', 'true', '2180', '2', '2', 'd', '78', '10', 'bigsword', '8', '0.00000', '0', '0', '0', '325', '0', '39', '-1', '967000', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_monster_i00');
  916. INSERT INTO `weapon` VALUES ('5797', 'Tomb Savant A', 'rhand', 'true', '1380', '3', '3', 'c', '156', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '83', '-1', '6130000', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_monster_i00');
  917. INSERT INTO `weapon` VALUES ('5798', 'Tomb Savant B', 'rhand', 'true', '1380', '3', '3', 'c', '156', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '83', '-1', '6130000', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_monster_i00');
  918. INSERT INTO `weapon` VALUES ('5799', 'Nephilim Lord', 'lhand', 'true', '1320', '0', '0', 'd', '0', '0', 'none', '0', '0.00000', '-8', '142', '20', '0', '0', '0', '-1', '78400', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_monster_i00');
  919. INSERT INTO `weapon` VALUES ('5800', 'Nephilim Lord', 'rhand', 'true', '1380', '3', '3', 'c', '156', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '83', '-1', '6130000', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_monster_i00');
  920. INSERT INTO `weapon` VALUES ('5801', 'Dusk', 'rhand', 'true', '1380', '3', '3', 'c', '156', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '83', '-1', '6130000', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_monster_i00');
  921. INSERT INTO `weapon` VALUES ('5802', 'Dawn', 'lhand', 'true', '1380', '3', '3', 'c', '156', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '83', '-1', '6130000', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_monster_i00');
  922. INSERT INTO `weapon` VALUES ('5817', 'Chrono Campana', 'lrhand', 'false', '0', '0', '0', 'none', '1', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '1', '-1', '0', '0', 'true', 'false', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_chrono_campana_i00');
  923. INSERT INTO `weapon` VALUES ('6307', 'Sword of Limit - Guidance', 'rhand', 'true', '1400', '3', '3', 'c', '139', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '76', '-1', '4300000', '1720', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_sword_of_limit_i01');
  924. INSERT INTO `weapon` VALUES ('6308', 'Sword of Limit - Critical Drain', 'rhand', 'true', '1400', '3', '3', 'c', '139', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '76', '-1', '4300000', '1720', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_sword_of_limit_i01');
  925. INSERT INTO `weapon` VALUES ('6309', 'Sword of Limit - Health', 'rhand', 'true', '1400', '3', '3', 'c', '139', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '76', '-1', '4300000', '1720', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_sword_of_limit_i01');
  926. INSERT INTO `weapon` VALUES ('6310', 'Sword of Whispering Death - Empower', 'rhand', 'true', '920', '3', '3', 'c', '111', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '101', '-1', '4300000', '1720', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_deathbreath_sword_i01');
  927. INSERT INTO `weapon` VALUES ('6311', 'Sword of Whispering Death - Magic Power', 'rhand', 'true', '920', '3', '3', 'c', '111', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '101', '-1', '4300000', '1720', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_deathbreath_sword_i01');
  928. INSERT INTO `weapon` VALUES ('6312', 'Sword of Whispering Death - Magic Silence', 'rhand', 'true', '920', '3', '3', 'c', '111', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '101', '-1', '4300000', '1720', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_deathbreath_sword_i01');
  929. INSERT INTO `weapon` VALUES ('6313', 'Homunkulus\'s Sword - Acumen', 'rhand', 'true', '950', '3', '3', 'c', '111', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '101', '-1', '4300000', '1720', 'true', 'true', 'true', 'true', '3047', '1', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_homunkuluss_sword_i01');
  930. INSERT INTO `weapon` VALUES ('6314', 'Homunkulus\'s Sword - Conversion', 'rhand', 'true', '950', '3', '3', 'c', '111', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '101', '-1', '4300000', '1720', 'true', 'true', 'true', 'true', '3048', '1', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_homunkuluss_sword_i01');
  931. INSERT INTO `weapon` VALUES ('6315', 'Homunkulus\'s Sword - Magic Paralyze', 'rhand', 'true', '950', '3', '3', 'c', '111', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '101', '-1', '4300000', '1720', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_homunkuluss_sword_i01');
  932. INSERT INTO `weapon` VALUES ('6347', 'Berserker Blade - Focus', 'lrhand', 'true', '1380', '3', '3', 'c', '190', '10', 'bigsword', '8', '0.00000', '0', '0', '0', '325', '0', '83', '-1', '6130000', '2452', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_berserker_blade_i01');
  933. INSERT INTO `weapon` VALUES ('6348', 'Berserker Blade - Critical Damage', 'lrhand', 'true', '1380', '3', '3', 'c', '190', '10', 'bigsword', '8', '0.00000', '0', '0', '0', '325', '0', '83', '-1', '6130000', '2452', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_berserker_blade_i01');
  934. INSERT INTO `weapon` VALUES ('6349', 'Berserker Blade - Haste', 'lrhand', 'true', '1380', '3', '3', 'c', '190', '10', 'bigsword', '8', '0.00000', '0', '0', '0', '325', '0', '83', '-1', '6130000', '2452', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_berserker_blade_i01');
  935. INSERT INTO `weapon` VALUES ('6354', 'Falchion - for Beginners', 'rhand', 'false', '1530', '2', '2', 'none', '31', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '21', '-1', '0', '0', 'false', 'false', 'false', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_falchion_i00');
  936. INSERT INTO `weapon` VALUES ('6355', 'Mage Staff - for Beginners', 'lrhand', 'false', '1050', '2', '2', 'none', '30', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '28', '-1', '0', '0', 'false', 'false', 'false', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_apprentices_staff_i00');
  937. INSERT INTO `weapon` VALUES ('6356', 'Dark Elven Dagger - Rsk. Haste', 'rhand', 'true', '1050', '2', '2', 'c', '94', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '61', '-1', '2290000', '916', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_darkelven_dagger_i01');
  938. INSERT INTO `weapon` VALUES ('6357', 'Stiletto - Rsk. Haste', 'rhand', 'true', '1030', '2', '2', 'c', '107', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '68', '-1', '2870000', '1148', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_stiletto_i01');
  939. INSERT INTO `weapon` VALUES ('6358', 'Crystal Dagger - Critical Damage', 'rhand', 'true', '1000', '3', '3', 'c', '136', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '83', '-1', '6130000', '2452', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_crystal_dagger_i01');
  940. INSERT INTO `weapon` VALUES ('6359', 'Demon Dagger - Critical Damage', 'rhand', 'true', '970', '1', '1', 'b', '170', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '99', '-1', '13100000', '1746', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_demons_sword_i01');
  941. INSERT INTO `weapon` VALUES ('6364', 'Forgotten Blade', 'rhand', 'true', '1300', '1', '1', 's', '281', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '132', '-1', '48800000', '2440', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_forgotten_blade_i00');
  942. INSERT INTO `weapon` VALUES ('6365', 'Basalt Battlehammer', 'rhand', 'true', '1570', '1', '1', 's', '281', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '132', '-1', '48800000', '2440', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_basalt_battlehammer_i00');
  943. INSERT INTO `weapon` VALUES ('6366', 'Imperial Staff', 'lrhand', 'true', '910', '1', '1', 's', '274', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '175', '-1', '48800000', '2440', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_imperial_staff_i00');
  944. INSERT INTO `weapon` VALUES ('6367', 'Angel Slayer', 'rhand', 'true', '950', '1', '1', 's', '246', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '132', '-1', '48800000', '2440', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_angel_slayer_i00');
  945. INSERT INTO `weapon` VALUES ('6368', 'Shining Bow', 'lrhand', 'true', '1650', '1', '1', 's', '581', '5', 'bow', '12', '-3.00000', '0', '0', '0', '293', '11', '132', '-1', '48800000', '2440', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_shining_bow_i00');
  946. INSERT INTO `weapon` VALUES ('6369', 'Dragon Hunter Axe', 'lrhand', 'true', '1820', '1', '1', 's', '342', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '132', '-1', '48800000', '2440', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dragon_hunter_axe_i00');
  947. INSERT INTO `weapon` VALUES ('6370', 'Saint Spear', 'lrhand', 'true', '1800', '1', '1', 's', '281', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '132', '-1', '48800000', '2440', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_saint_spear_i00');
  948. INSERT INTO `weapon` VALUES ('6371', 'Demon Splinter', 'lrhand', 'true', '1350', '1', '1', 's', '342', '5', 'dualfist', '4', '4.00000', '0', '0', '0', '325', '0', '132', '-1', '48800000', '2440', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_demon_splinter_i00');
  949. INSERT INTO `weapon` VALUES ('6372', 'Heaven\'s Divider', 'lrhand', 'true', '1380', '1', '1', 's', '342', '10', 'bigsword', '8', '0.00000', '0', '0', '0', '325', '0', '132', '-1', '48800000', '2440', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_heavens_divider_i00');
  950. INSERT INTO `weapon` VALUES ('6377', 'Imperial Crusader Shield', 'lhand', 'true', '1170', '0', '0', 's', '0', '0', 'none', '0', '0.00000', '-8', '290', '20', '0', '0', '0', '-1', '3760000', '188', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.shield_imperial_crusader_shield_i00');
  951. INSERT INTO `weapon` VALUES ('6529', 'Baby Duck Rod', 'lrhand', 'false', '1000', '0', '0', 'none', '1', '1', 'rod', '0', '-3.00000', '0', '0', '0', '325', '0', '1', '-1', '30000', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_fishing_rod_i00');
  952. INSERT INTO `weapon` VALUES ('6530', 'Albatross Rod', 'lrhand', 'false', '1000', '0', '0', 'd', '1', '1', 'rod', '0', '-3.00000', '0', '0', '0', '325', '0', '1', '-1', '100000', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_fishing_rod_i01');
  953. INSERT INTO `weapon` VALUES ('6531', 'Pelican Rod', 'lrhand', 'false', '1000', '0', '0', 'c', '1', '1', 'rod', '0', '-3.00000', '0', '0', '0', '325', '0', '1', '-1', '400000', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_fishing_rod_i02');
  954. INSERT INTO `weapon` VALUES ('6532', 'KingFisher Rod', 'lrhand', 'false', '1000', '0', '0', 'b', '1', '1', 'rod', '0', '-3.00000', '0', '0', '0', '325', '0', '1', '-1', '1200000', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_fishing_rod_i03');
  955. INSERT INTO `weapon` VALUES ('6533', 'Cygnus Pole', 'lrhand', 'false', '1000', '0', '0', 'a', '1', '1', 'rod', '0', '-3.00000', '0', '0', '0', '325', '0', '1', '-1', '4000000', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_fishing_rod_i04');
  956. INSERT INTO `weapon` VALUES ('6534', 'Triton Pole', 'lrhand', 'false', '1000', '0', '0', 's', '1', '1', 'rod', '0', '-3.00000', '0', '0', '0', '325', '0', '1', '-1', '10000000', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_fishing_rod_i05');
  957. INSERT INTO `weapon` VALUES ('6579', 'Arcana Mace', 'rhand', 'true', '1300', '1', '1', 's', '225', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '175', '-1', '48800000', '2440', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_arcana_mace_i00');
  958. INSERT INTO `weapon` VALUES ('6580', 'Tallum Blade*Dark Legion\'s Edge', 'lrhand', 'true', '2080', '1', '1', 's', '342', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '132', '-1', '48800000', '2440', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dual_sword_i00');
  959. INSERT INTO `weapon` VALUES ('6581', 'Forgotten Blade - Haste', 'rhand', 'true', '1300', '1', '1', 's', '281', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '132', '-1', '48800000', '2440', 'true', 'true', 'true', 'true', '3037', '2', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_forgotten_blade_i01');
  960. INSERT INTO `weapon` VALUES ('6582', 'Forgotten Blade - Health', 'rhand', 'true', '1300', '1', '1', 's', '281', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '132', '-1', '48800000', '2440', 'true', 'true', 'true', 'true', '3013', '4', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_forgotten_blade_i01');
  961. INSERT INTO `weapon` VALUES ('6583', 'Forgotten Blade - Focus', 'rhand', 'true', '1300', '1', '1', 's', '281', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '132', '-1', '48800000', '2440', 'true', 'true', 'true', 'true', '3566', '1', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_forgotten_blade_i01');
  962. INSERT INTO `weapon` VALUES ('6584', 'Basalt Battlehammer - HP Drain', 'rhand', 'true', '1570', '1', '1', 's', '281', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '132', '-1', '48800000', '2440', 'true', 'true', 'true', 'true', '3568', '1', '0', '0', '0', '0', '0', '3022', '7', '20', 'icon.weapon_basalt_battlehammer_i01');
  963. INSERT INTO `weapon` VALUES ('6585', 'Basalt Battlehammer - Health', 'rhand', 'true', '1570', '1', '1', 's', '281', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '132', '-1', '48800000', '2440', 'true', 'true', 'true', 'true', '3013', '1', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_basalt_battlehammer_i01');
  964. INSERT INTO `weapon` VALUES ('6586', 'Basalt Battlehammer - HP Regeneration', 'rhand', 'true', '1570', '1', '1', 's', '281', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '132', '-1', '48800000', '2440', 'true', 'true', 'true', 'true', '3569', '1', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_basalt_battlehammer_i01');
  965. INSERT INTO `weapon` VALUES ('6587', 'Imperial Staff - Empower', 'lrhand', 'true', '910', '1', '1', 's', '274', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '175', '-1', '48800000', '2440', 'true', 'true', 'true', 'true', '3076', '1', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_imperial_staff_i01');
  966. INSERT INTO `weapon` VALUES ('6588', 'Imperial Staff - MP Regeneration', 'lrhand', 'true', '910', '1', '1', 's', '274', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '175', '-1', '48800000', '2440', 'true', 'true', 'true', 'true', '3576', '1', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_imperial_staff_i01');
  967. INSERT INTO `weapon` VALUES ('6589', 'Imperial Staff - Magic Hold', 'lrhand', 'true', '910', '1', '1', 's', '274', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '175', '-1', '48800000', '2440', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '3577', '1', '30', '0', '0', '0', 'icon.weapon_imperial_staff_i01');
  968. INSERT INTO `weapon` VALUES ('6590', 'Angel Slayer - Crt. Damage', 'rhand', 'true', '950', '1', '1', 's', '246', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '132', '-1', '48800000', '2440', 'true', 'true', 'true', 'true', '3572', '1', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_angel_slayer_i01');
  969. INSERT INTO `weapon` VALUES ('6591', 'Angel Slayer - HP Drain', 'rhand', 'true', '950', '1', '1', 's', '246', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '132', '-1', '48800000', '2440', 'true', 'true', 'true', 'true', '3568', '1', '0', '0', '0', '0', '0', '3022', '7', '20', 'icon.weapon_angel_slayer_i01');
  970. INSERT INTO `weapon` VALUES ('6592', 'Angel Slayer - Haste', 'rhand', 'true', '950', '1', '1', 's', '246', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '132', '-1', '48800000', '2440', 'true', 'true', 'true', 'true', '3037', '4', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_angel_slayer_i01');
  971. INSERT INTO `weapon` VALUES ('6593', 'Shining Bow - Cheap Shot', 'lrhand', 'true', '1650', '1', '1', 's', '581', '5', 'bow', '12', '-3.00000', '0', '0', '0', '293', '11', '132', '-1', '48800000', '2440', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_shining_bow_i01');
  972. INSERT INTO `weapon` VALUES ('6594', 'Shining Bow - Focus', 'lrhand', 'true', '1650', '1', '1', 's', '581', '5', 'bow', '12', '-3.00000', '0', '0', '0', '293', '11', '132', '-1', '48800000', '2440', 'true', 'true', 'true', 'true', '3567', '2', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_shining_bow_i01');
  973. INSERT INTO `weapon` VALUES ('6595', 'Shining Bow - Crt. Slow', 'lrhand', 'true', '1650', '1', '1', 's', '581', '5', 'bow', '12', '-3.00000', '0', '0', '0', '293', '11', '132', '-1', '48800000', '2440', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '3574', '1', '10', 'icon.weapon_shining_bow_i01');
  974. INSERT INTO `weapon` VALUES ('6596', 'Dragon Hunter Axe - HP Regeneration', 'lrhand', 'true', '1820', '1', '1', 's', '342', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '132', '-1', '48800000', '2440', 'true', 'true', 'true', 'true', '3569', '1', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dragon_hunter_axe_i01');
  975. INSERT INTO `weapon` VALUES ('6597', 'Dragon Hunter Axe - Health', 'lrhand', 'true', '1820', '1', '1', 's', '342', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '132', '-1', '48800000', '2440', 'true', 'true', 'true', 'true', '3013', '1', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dragon_hunter_axe_i01');
  976. INSERT INTO `weapon` VALUES ('6598', 'Dragon Hunter Axe - HP Drain', 'lrhand', 'true', '1820', '1', '1', 's', '342', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '132', '-1', '48800000', '2440', 'true', 'true', 'true', 'true', '3568', '1', '0', '0', '0', '0', '0', '3022', '7', '20', 'icon.weapon_dragon_hunter_axe_i01');
  977. INSERT INTO `weapon` VALUES ('6599', 'Saint Spear - Health', 'lrhand', 'true', '1800', '1', '1', 's', '281', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '132', '-1', '48800000', '2440', 'true', 'true', 'true', 'true', '3013', '4', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_saint_spear_i01');
  978. INSERT INTO `weapon` VALUES ('6600', 'Saint Spear - Guidance', 'lrhand', 'true', '1800', '1', '1', 's', '281', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '132', '-1', '48800000', '2440', 'true', 'true', 'true', 'true', '3602', '5', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_saint_spear_i01');
  979. INSERT INTO `weapon` VALUES ('6601', 'Saint Spear - Haste', 'lrhand', 'true', '1800', '1', '1', 's', '281', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '132', '-1', '48800000', '2440', 'true', 'true', 'true', 'true', '3068', '2', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_saint_spear_i01');
  980. INSERT INTO `weapon` VALUES ('6602', 'Demon Splinter - Focus', 'lrhand', 'true', '1350', '1', '1', 's', '342', '5', 'dualfist', '4', '4.00000', '0', '0', '0', '325', '0', '132', '-1', '48800000', '2440', 'true', 'true', 'true', 'true', '3565', '1', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_demon_splinter_i01');
  981. INSERT INTO `weapon` VALUES ('6603', 'Demon Splinter - Health', 'lrhand', 'true', '1350', '1', '1', 's', '342', '5', 'dualfist', '4', '4.00000', '0', '0', '0', '325', '0', '132', '-1', '48800000', '2440', 'true', 'true', 'true', 'true', '3013', '4', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_demon_splinter_i01');
  982. INSERT INTO `weapon` VALUES ('6604', 'Demon Splinter - Crt. Stun', 'lrhand', 'true', '1350', '1', '1', 's', '342', '5', 'dualfist', '4', '4.00000', '0', '0', '0', '325', '0', '132', '-1', '48800000', '2440', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '3070', '1', '16', 'icon.weapon_demon_splinter_i01');
  983. INSERT INTO `weapon` VALUES ('6605', 'Heavens Divider - Haste', 'lrhand', 'true', '1380', '1', '1', 's', '342', '10', 'bigsword', '8', '0.00000', '0', '0', '0', '325', '0', '132', '-1', '48800000', '2440', 'true', 'true', 'true', 'true', '3601', '9', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_heavens_divider_i01');
  984. INSERT INTO `weapon` VALUES ('6606', 'Heavens Divider - Health', 'lrhand', 'true', '1380', '1', '1', 's', '342', '10', 'bigsword', '8', '0.00000', '0', '0', '0', '325', '0', '132', '-1', '48800000', '2440', 'true', 'true', 'true', 'true', '3013', '4', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_heavens_divider_i01');
  985. INSERT INTO `weapon` VALUES ('6607', 'Heavens Divider - Focus', 'lrhand', 'true', '1380', '1', '1', 's', '342', '10', 'bigsword', '8', '0.00000', '0', '0', '0', '325', '0', '132', '-1', '48800000', '2440', 'true', 'true', 'true', 'true', '3566', '1', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_heavens_divider_i01');
  986. INSERT INTO `weapon` VALUES ('6608', 'Arcana Mace - Acumen', 'rhand', 'true', '1300', '1', '1', 's', '225', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '175', '-1', '48800000', '2440', 'true', 'true', 'true', 'true', '3047', '2', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_arcana_mace_i01');
  987. INSERT INTO `weapon` VALUES ('6609', 'Arcana Mace - MP Regeneration', 'rhand', 'true', '1300', '1', '1', 's', '225', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '175', '-1', '48800000', '2440', 'true', 'true', 'true', 'true', '3576', '1', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_arcana_mace_i01');
  988. INSERT INTO `weapon` VALUES ('6610', 'Arcana Mace - Mana Up', 'rhand', 'true', '1300', '1', '1', 's', '225', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '175', '-1', '48800000', '2440', 'true', 'true', 'true', 'true', '3014', '2', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_arcana_mace_i01');
  989. INSERT INTO `weapon` VALUES ('6611', 'Infinity Blade', 'rhand', 'false', '1300', '1', '1', 's', '297', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '137', '-1', '57000000', '2850', 'false', 'false', 'false', 'false', '3578', '1', '0', '0', '0', '0', '0', '3579', '1', '4', 'icon.weapon_the_sword_of_hero_i00');
  990. INSERT INTO `weapon` VALUES ('6612', 'Infinity Cleaver', 'lrhand', 'false', '1300', '1', '1', 's', '361', '10', 'bigsword', '8', '0.00000', '0', '0', '0', '325', '0', '137', '-1', '57000000', '2850', 'false', 'false', 'false', 'false', '3582', '1', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_the_two_handed_sword_of_hero_i00');
  991. INSERT INTO `weapon` VALUES ('6613', 'Infinity Axe', 'rhand', 'false', '1300', '1', '1', 's', '297', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '137', '-1', '57000000', '2850', 'false', 'false', 'false', 'false', '3580', '1', '0', '0', '0', '0', '0', '3581', '1', '5', 'icon.weapon_the_axe_of_hero_i00');
  992. INSERT INTO `weapon` VALUES ('6614', 'Infinity Rod', 'rhand', 'false', '1300', '1', '1', 's', '238', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '182', '-1', '57000000', '2850', 'false', 'false', 'false', 'false', '3597', '1', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_the_mace_of_hero_i00');
  993. INSERT INTO `weapon` VALUES ('6615', 'Infinity Crusher', 'lrhand', 'false', '1300', '1', '1', 's', '361', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '137', '-1', '57000000', '2850', 'false', 'false', 'false', 'false', '3583', '1', '0', '0', '0', '0', '0', '3584', '1', '25', 'icon.weapon_the_hammer_of_hero_i00');
  994. INSERT INTO `weapon` VALUES ('6616', 'Infinity Scepter', 'lrhand', 'false', '1300', '1', '1', 's', '290', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '182', '-1', '57000000', '2850', 'false', 'false', 'false', 'false', '3595', '1', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_the_staff_of_hero_i00');
  995. INSERT INTO `weapon` VALUES ('6617', 'Infinity Stinger', 'rhand', 'false', '1300', '1', '1', 's', '260', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '137', '-1', '57000000', '2850', 'false', 'false', 'false', 'false', '3589', '1', '0', '0', '0', '0', '0', '3590', '1', '5', 'icon.weapon_the_dagger_of_hero_i00');
  996. INSERT INTO `weapon` VALUES ('6618', 'Infinity Fang', 'lrhand', 'false', '1300', '1', '1', 's', '361', '5', 'dualfist', '4', '4.00000', '0', '0', '0', '325', '0', '137', '-1', '57000000', '2850', 'false', 'false', 'false', 'false', '3587', '1', '0', '0', '0', '0', '0', '3588', '1', '25', 'icon.weapon_the_fist_of_hero_i00');
  997. INSERT INTO `weapon` VALUES ('6619', 'Infinity Bow', 'lrhand', 'false', '1300', '1', '1', 's', '614', '5', 'bow', '12', '-3.00000', '0', '0', '0', '293', '11', '137', '-1', '57000000', '2850', 'false', 'false', 'false', 'false', '3593', '1', '0', '0', '0', '0', '0', '3594', '1', '7', 'icon.weapon_the_bow_of_hero_i00');
  998. INSERT INTO `weapon` VALUES ('6620', 'Infinity Wing', 'lrhand', 'false', '1300', '1', '1', 's', '361', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '137', '-1', '57000000', '2850', 'false', 'false', 'false', 'false', '3585', '1', '0', '0', '0', '0', '0', '3586', '1', '10', 'icon.weapon_the_dualsword_of_hero_i00');
  999. INSERT INTO `weapon` VALUES ('6621', 'Infinity Spear', 'lrhand', 'false', '1300', '1', '1', 's', '297', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '137', '-1', '57000000', '2850', 'false', 'false', 'false', 'false', '3591', '1', '0', '0', '0', '0', '0', '3592', '1', '20', 'icon.weapon_the_pole_of_hero_i00');
  1000. INSERT INTO `weapon` VALUES ('6678', 'Sealed Imperial Crusader Shield', 'lhand', 'true', '1170', '0', '0', 's', '0', '0', 'none', '0', '0.00000', '-8', '276', '20', '0', '0', '0', '-1', '3760000', '188', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.shield_imperial_crusader_shield_i02');
  1001. INSERT INTO `weapon` VALUES ('6715', 'Monster Only(Silenos Archer)', 'lrhand', 'false', '1950', '1', '1', 'none', '16', '5', 'bow', '12', '-3.00000', '0', '0', '0', '293', '1', '6', '-1', '768', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_monster_i00');
  1002. INSERT INTO `weapon` VALUES ('6716', 'Monster Only(Silenos Shaman)', 'lrhand', 'false', '1080', '1', '1', 'none', '11', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '12', '-1', '12500', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_monster_i00');
  1003. INSERT INTO `weapon` VALUES ('6717', 'Monster Only(Einhasad Warrior)', 'rhand', 'false', '1560', '2', '2', 'none', '24', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '17', '-1', '136000', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_monster_i00');
  1004. INSERT INTO `weapon` VALUES ('6718', 'Monster Only(Einhasad Shaman)', 'lrhand', 'false', '1560', '2', '2', 'none', '24', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '17', '-1', '136000', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_monster_i00');
  1005. INSERT INTO `weapon` VALUES ('6719', 'Monster Only(Ketra Orc Chieftain)', 'lrhand', 'false', '990', '3', '3', 'c', '141', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '104', '-1', '4780000', '1912', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_monster_i00');
  1006. INSERT INTO `weapon` VALUES ('6720', 'Monster Only(Shadow of Halisha)', 'lrhand', 'false', '1950', '1', '1', 'none', '16', '5', 'bow', '12', '-3.00000', '0', '0', '0', '293', '1', '6', '-1', '768', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_monster_i00');
  1007. INSERT INTO `weapon` VALUES ('6721', 'Monster Only(Shield of Imperial Warlord Zombie)', 'lhand', 'false', '1430', '0', '0', 'none', '0', '0', 'none', '0', '0.00000', '-8', '47', '20', '0', '0', '0', '-1', '39', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_monster_i00');
  1008. INSERT INTO `weapon` VALUES ('6722', 'Monster Only(Ahrimanes)', 'lrhand', 'false', '2080', '1', '1', 'b', '236', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '99', '-1', '13100000', '1746', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_monster_i00');
  1009. INSERT INTO `weapon` VALUES ('6723', 'Monster Only(Vampire Warrior)', 'lrhand', 'false', '2090', '3', '3', 'd', '112', '10', 'bigsword', '8', '0.00000', '0', '0', '0', '325', '0', '54', '-1', '1800000', '3272', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_monster_i00');
  1010. INSERT INTO `weapon` VALUES ('6902', 'Pledge Shield', 'lhand', 'true', '1380', '0', '0', 'none', '0', '0', 'none', '0', '0.00000', '-8', '90', '20', '0', '0', '0', '-1', '12900', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.shield_pledge_shield_i00');
  1011. INSERT INTO `weapon` VALUES ('6917', 'Monster Only (Poison Sting)', 'rhand', 'false', '6', '0', '0', 'none', '0', '0', 'fist', '0', '0.00000', '0', '0', '0', '0', '0', '0', '-1', '2', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_monster_i00');
  1012. INSERT INTO `weapon` VALUES ('6918', 'Monster Only (Shield of Silenos)', 'lhand', 'false', '1380', '0', '0', 'none', '0', '0', 'none', '0', '0.00000', '-8', '90', '20', '0', '0', '0', '-1', '12900', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_monster_i00');
  1013. INSERT INTO `weapon` VALUES ('6919', 'Monster Only (Shield of Ketra Orc)', 'lhand', 'false', '1320', '0', '0', 'none', '0', '0', 'none', '0', '0.00000', '-8', '142', '20', '0', '0', '0', '-1', '78400', '142', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_monster_i00');
  1014. INSERT INTO `weapon` VALUES ('7014', 'Monster Only (Shield of Dark Dragon)', 'lhand', 'false', '4800', '0', '0', 'none', '0', '0', 'none', '0', '0.00000', '-8', '230', '20', '0', '0', '0', '-1', '845000', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_monster_i00');
  1015. INSERT INTO `weapon` VALUES ('7015', 'Shield of Castle Pledge', 'lhand', 'true', '1380', '0', '0', 'none', '0', '0', 'none', '0', '0.00000', '-8', '90', '20', '0', '0', '0', '-1', '12900', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.shield_pledge_shield_i00');
  1016. INSERT INTO `weapon` VALUES ('7058', 'Chrono Darbuka', 'lrhand', 'false', '0', '0', '0', 'none', '1', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '1', '-1', '0', '0', 'true', 'false', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_chrono_darbuka_i00');
  1017. INSERT INTO `weapon` VALUES ('7560', 'Monster Only (Fishing Rod)', 'lrhand', 'false', '1000', '0', '0', 'none', '1', '1', 'rod', '0', '-3.00000', '0', '0', '0', '325', '0', '1', '-1', '30000', '0', 'false', 'false', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_monster_i00');
  1018. INSERT INTO `weapon` VALUES ('7575', 'Draconic Bow', 'lrhand', 'true', '1650', '1', '1', 's', '581', '5', 'bow', '12', '-3.00000', '0', '0', '0', '293', '11', '132', '-1', '48800000', '2440', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_draconic_bow_i00');
  1019. INSERT INTO `weapon` VALUES ('7576', 'Draconic Bow - Cheap Shot', 'lrhand', 'true', '1650', '1', '1', 's', '581', '5', 'bow', '12', '-3.00000', '0', '0', '0', '293', '11', '132', '-1', '48800000', '2440', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_draconic_bow_i01');
  1020. INSERT INTO `weapon` VALUES ('7577', 'Draconic Bow - Focus', 'lrhand', 'true', '1650', '1', '1', 's', '581', '5', 'bow', '12', '-3.00000', '0', '0', '0', '293', '11', '132', '-1', '48800000', '2440', 'true', 'true', 'true', 'true', '3567', '1', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_draconic_bow_i01');
  1021. INSERT INTO `weapon` VALUES ('7578', 'Draconic Bow - Critical Slow', 'lrhand', 'true', '1650', '1', '1', 's', '581', '5', 'bow', '12', '-3.00000', '0', '0', '0', '293', '11', '132', '-1', '48800000', '2440', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '3574', '1', '10', 'icon.weapon_draconic_bow_i01');
  1022. INSERT INTO `weapon` VALUES ('7701', 'Stick of Faith - Mana Up', 'rhand', 'true', '1160', '2', '2', 'c', '85', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '81', '-1', '2290000', '916', 'true', 'true', 'true', 'true', '3014', '1', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_stick_of_faith_i01');
  1023. INSERT INTO `weapon` VALUES ('7702', 'Stick of Faith - Magic Hold', 'rhand', 'true', '1160', '2', '2', 'c', '85', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '81', '-1', '2290000', '916', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '1201', '23', '10', '0', '0', '0', 'icon.weapon_stick_of_faith_i01');
  1024. INSERT INTO `weapon` VALUES ('7703', 'Stick of Faith - Magic Shield', 'rhand', 'true', '1160', '2', '2', 'c', '85', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '81', '-1', '2290000', '916', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '1035', '2', '50', '0', '0', '0', 'icon.weapon_stick_of_faith_i01');
  1025. INSERT INTO `weapon` VALUES ('7704', 'Stick of Eternity - Empower', 'rhand', 'true', '1130', '3', '3', 'c', '111', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '101', '-1', '4300000', '1720', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_stick_of_eternity_i01');
  1026. INSERT INTO `weapon` VALUES ('7705', 'Stick of Eternity - Rsk., Evasion', 'rhand', 'true', '1130', '3', '3', 'c', '111', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '101', '-1', '4300000', '1720', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_stick_of_eternity_i01');
  1027. INSERT INTO `weapon` VALUES ('7706', 'Stick of Eternity - Blessed Body', 'rhand', 'true', '1130', '3', '3', 'c', '111', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '101', '-1', '4300000', '1720', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_stick_of_eternity_i01');
  1028. INSERT INTO `weapon` VALUES ('7707', 'Nirvana Axe - Magic Power', 'rhand', 'true', '1150', '3', '3', 'c', '111', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '101', '-1', '4300000', '1720', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_nirvana_axe_i01');
  1029. INSERT INTO `weapon` VALUES ('7708', 'Nirvana Axe - Magic Poison', 'rhand', 'true', '1150', '3', '3', 'c', '111', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '101', '-1', '4300000', '1720', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '1168', '6', '7', '0', '0', '0', 'icon.weapon_nirvana_axe_i01');
  1030. INSERT INTO `weapon` VALUES ('7709', 'Nirvana Axe - Magic Weakness', 'rhand', 'true', '1150', '3', '3', 'c', '111', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '101', '-1', '4300000', '1720', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '1164', '6', '7', '0', '0', '0', 'icon.weapon_nirvana_axe_i01');
  1031. INSERT INTO `weapon` VALUES ('7710', 'Club of Nature - Acumen', 'rhand', 'true', '1100', '3', '3', 'c', '111', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '101', '-1', '4300000', '1720', 'true', 'true', 'true', 'true', '3047', '1', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_club_of_nature_i01');
  1032. INSERT INTO `weapon` VALUES ('7711', 'Club of Nature - Magic Mental Shield', 'rhand', 'true', '1100', '3', '3', 'c', '111', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '101', '-1', '4300000', '1720', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '1035', '3', '50', '0', '0', '0', 'icon.weapon_club_of_nature_i01');
  1033. INSERT INTO `weapon` VALUES ('7712', 'Club of Nature - Magic Hold', 'rhand', 'true', '1100', '3', '3', 'c', '111', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '101', '-1', '4300000', '1720', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '1201', '23', '10', '0', '0', '0', 'icon.weapon_club_of_nature_i01');
  1034. INSERT INTO `weapon` VALUES ('7713', 'Mace of The Underworld - Mana Up', 'rhand', 'true', '1090', '3', '3', 'c', '111', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '101', '-1', '4300000', '1720', 'true', 'true', 'true', 'true', '3014', '1', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_mace_of_underworld_i01');
  1035. INSERT INTO `weapon` VALUES ('7714', 'Mace of The Underworld - Magic Silence', 'rhand', 'true', '1090', '3', '3', 'c', '111', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '101', '-1', '4300000', '1720', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_mace_of_underworld_i01');
  1036. INSERT INTO `weapon` VALUES ('7715', 'Mace of The Underworld - Conversion', 'rhand', 'true', '1090', '3', '3', 'c', '111', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '101', '-1', '4300000', '1720', 'true', 'true', 'true', 'true', '3048', '2', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_mace_of_underworld_i01');
  1037. INSERT INTO `weapon` VALUES ('7716', 'Inferno Staff - Acumen', 'lrhand', 'true', '1000', '3', '3', 'c', '135', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '101', '-1', '4300000', '1720', 'true', 'true', 'true', 'true', '3047', '1', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_inferno_staff_i01');
  1038. INSERT INTO `weapon` VALUES ('7717', 'Inferno Staff - Magic Silence', 'lrhand', 'true', '1000', '3', '3', 'c', '135', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '101', '-1', '4300000', '1720', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_inferno_staff_i01');
  1039. INSERT INTO `weapon` VALUES ('7718', 'Inferno Staff - Magic Paralyze', 'lrhand', 'true', '1000', '3', '3', 'c', '135', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '101', '-1', '4300000', '1720', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_inferno_staff_i01');
  1040. INSERT INTO `weapon` VALUES ('7719', 'Poleaxe - Critical Stun', 'lrhand', 'true', '2010', '3', '3', 'c', '139', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '76', '-1', '4300000', '1720', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_poleaxe_i01');
  1041. INSERT INTO `weapon` VALUES ('7720', 'Poleaxe - Towering Blow', 'lrhand', 'true', '2010', '3', '3', 'c', '139', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '76', '-1', '4300000', '1720', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_poleaxe_i01');
  1042. INSERT INTO `weapon` VALUES ('7721', 'Poleaxe - Wide Blow', 'lrhand', 'true', '2010', '3', '3', 'c', '139', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '76', '-1', '4300000', '1720', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_poleaxe_i01');
  1043. INSERT INTO `weapon` VALUES ('7722', 'Sword of Valhalla - Acumen', 'rhand', 'true', '900', '1', '1', 'b', '140', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '122', '-1', '8680000', '1157', 'true', 'true', 'true', 'true', '3047', '1', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_sword_of_valhalla_i01');
  1044. INSERT INTO `weapon` VALUES ('7723', 'Sword of Valhalla - Magic Weakness', 'rhand', 'true', '900', '1', '1', 'b', '140', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '122', '-1', '8680000', '1157', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '1164', '6', '7', '0', '0', '0', 'icon.weapon_sword_of_valhalla_i01');
  1045. INSERT INTO `weapon` VALUES ('7724', 'Sword of Valhalla - Magic Regeneration', 'rhand', 'true', '900', '1', '1', 'b', '140', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '122', '-1', '8680000', '1157', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '1044', '3', '30', '0', '0', '0', 'icon.weapon_sword_of_valhalla_i01');
  1046. INSERT INTO `weapon` VALUES ('7810', 'Soulfire Dirk - Mana Up', 'rhand', 'true', '750', '2', '2', 'c', '86', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '91', '-1', '2870000', '1148', 'true', 'true', 'true', 'true', '3014', '1', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dagger_of_magicflame_i01');
  1047. INSERT INTO `weapon` VALUES ('7811', 'Soulfire Dirk - Magic Hold', 'rhand', 'true', '750', '2', '2', 'c', '86', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '91', '-1', '2870000', '1148', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '1201', '23', '10', '0', '0', '0', 'icon.weapon_dagger_of_magicflame_i01');
  1048. INSERT INTO `weapon` VALUES ('7812', 'Soulfire Dirk - Magic Silence', 'rhand', 'true', '750', '2', '2', 'c', '86', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '91', '-1', '2870000', '1148', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dagger_of_magicflame_i01');
  1049. INSERT INTO `weapon` VALUES ('7813', 'Hell Knife - Magic Regeneration', 'rhand', 'true', '740', '1', '1', 'b', '122', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '122', '-1', '8680000', '1157', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '1044', '3', '30', '0', '0', '0', 'icon.weapon_hell_knife_i01');
  1050. INSERT INTO `weapon` VALUES ('7814', 'Hell Knife - Mental Shield', 'rhand', 'true', '740', '1', '1', 'b', '122', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '122', '-1', '8680000', '1157', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '1035', '4', '50', '0', '0', '0', 'icon.weapon_hell_knife_i01');
  1051. INSERT INTO `weapon` VALUES ('7815', 'Hell Knife - Magic Weakness', 'rhand', 'true', '740', '1', '1', 'b', '122', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '122', '-1', '8680000', '1157', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '1164', '3', '7', '0', '0', '0', 'icon.weapon_hell_knife_i01');
  1052. INSERT INTO `weapon` VALUES ('7816', 'Apprentice Adventurer\'s Staff', 'lrhand', 'false', '1070', '2', '2', 'none', '23', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '22', '-1', '0', '0', 'false', 'false', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_apprentices_staff_i00');
  1053. INSERT INTO `weapon` VALUES ('7817', 'Apprentice Adventurer\'s Bone Club', 'rhand', 'false', '1850', '2', '2', 'none', '24', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '17', '-1', '0', '0', 'false', 'false', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_club_i00');
  1054. INSERT INTO `weapon` VALUES ('7818', 'Apprentice Adventurer\'s Knife', 'rhand', 'false', '1120', '2', '2', 'none', '21', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '17', '-1', '0', '0', 'false', 'false', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_shining_knife_i00');
  1055. INSERT INTO `weapon` VALUES ('7819', 'Apprentice Adventurer\'s Cestus', 'lrhand', 'false', '1570', '2', '2', 'none', '29', '5', 'dualfist', '4', '4.00000', '0', '0', '0', '325', '0', '17', '-1', '0', '0', 'false', 'false', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_vipers_canine_i00');
  1056. INSERT INTO `weapon` VALUES ('7820', 'Apprentice Adventurer\'s Bow', 'lrhand', 'false', '1900', '7', '2', 'none', '49', '5', 'bow', '12', '-3.00000', '0', '0', '0', '293', '3', '17', '-1', '0', '0', 'false', 'false', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_short_bow_i00');
  1057. INSERT INTO `weapon` VALUES ('7821', 'Apprentice Adventurer\'s Long Sword', 'rhand', 'false', '1560', '2', '2', 'none', '24', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '17', '-1', '0', '0', 'false', 'false', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_long_sword_i00');
  1058. INSERT INTO `weapon` VALUES ('7822', 'Traveler\'s Mace', 'rhand', 'false', '1300', '2', '2', 'd', '41', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '43', '-1', '0', '0', 'false', 'false', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_mace_of_prayer_i00');
  1059. INSERT INTO `weapon` VALUES ('7823', 'Traveler\'s Dark Elven Bow', 'lrhand', 'false', '1830', '6', '2', 'd', '105', '5', 'bow', '12', '-3.00000', '0', '0', '0', '293', '4', '32', '-1', '0', '0', 'false', 'false', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dark_elven_bow_i00');
  1060. INSERT INTO `weapon` VALUES ('7824', 'Traveler\'s Long Bow', 'lrhand', 'false', '1830', '6', '2', 'd', '105', '5', 'bow', '12', '-3.00000', '0', '0', '0', '293', '4', '32', '-1', '0', '0', 'false', 'false', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_strengthening_bow_i00');
  1061. INSERT INTO `weapon` VALUES ('7825', 'Traveler\'s Staff', 'lrhand', 'false', '1040', '2', '2', 'd', '50', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '43', '-1', '0', '0', 'false', 'false', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_staff_of_mana_i00');
  1062. INSERT INTO `weapon` VALUES ('7826', 'Traveler\'s Bastard Sword', 'rhand', 'false', '1510', '2', '2', 'd', '51', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '32', '-1', '0', '0', 'false', 'false', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_bastard_sword_i00');
  1063. INSERT INTO `weapon` VALUES ('7827', 'Traveler\'s Wand', 'rhand', 'false', '570', '2', '2', 'd', '41', '10', 'etc', '8', '0.00000', '0', '0', '0', '379', '0', '43', '-1', '0', '0', 'false', 'false', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_divine_tome_i00');
  1064. INSERT INTO `weapon` VALUES ('7828', 'Traveler\'s Jamadhr', 'lrhand', 'false', '1550', '2', '2', 'd', '62', '5', 'dualfist', '4', '4.00000', '0', '0', '0', '325', '0', '32', '-1', '0', '0', 'false', 'false', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_baghnakh_i00');
  1065. INSERT INTO `weapon` VALUES ('7829', 'Traveler\'s Tomahawk', 'rhand', 'false', '1780', '2', '2', 'd', '51', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '32', '-1', '0', '0', 'false', 'false', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_tomahawk_i00');
  1066. INSERT INTO `weapon` VALUES ('7830', 'Traveler\'s Poniard Dagger', 'rhand', 'false', '1090', '2', '2', 'd', '45', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '32', '-1', '0', '0', 'false', 'false', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dirk_i00');
  1067. INSERT INTO `weapon` VALUES ('7831', 'Traveler\'s Pike', 'lrhand', 'false', '2090', '2', '2', 'd', '51', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '32', '-1', '0', '0', 'false', 'false', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_pike_i00');
  1068. INSERT INTO `weapon` VALUES ('7834', 'Art of Battle Axe', 'rhand', 'true', '1570', '1', '1', 'b', '194', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '99', '-1', '13100000', '1746', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_monster_i00');
  1069. INSERT INTO `weapon` VALUES ('7880', 'Steel Sword', 'lrhand', 'true', '2100', '2', '2', 'd', '49', '10', 'bigsword', '8', '0.00000', '0', '0', '0', '325', '0', '26', '-1', '409000', '743', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_iron_sword_i00');
  1070. INSERT INTO `weapon` VALUES ('7881', 'Titan Sword', 'lrhand', 'true', '2020', '3', '3', 'd', '96', '10', 'bigsword', '8', '0.00000', '0', '0', '0', '325', '0', '47', '-1', '1400000', '2545', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_giants_sword_i00');
  1071. INSERT INTO `weapon` VALUES ('7882', 'Pa\'agrian Sword', 'lrhand', 'true', '1980', '3', '3', 'c', '169', '10', 'bigsword', '8', '0.00000', '0', '0', '0', '325', '0', '76', '-1', '4300000', '1720', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_sword_of_paagrio_i00');
  1072. INSERT INTO `weapon` VALUES ('7883', 'Guardian Sword', 'lrhand', 'true', '1930', '1', '1', 'b', '236', '10', 'bigsword', '8', '0.00000', '0', '0', '0', '325', '0', '99', '-1', '13100000', '1746', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_guardians_sword_i00');
  1073. INSERT INTO `weapon` VALUES ('7884', 'Infernal Master', 'lrhand', 'true', '1900', '1', '1', 'a', '259', '10', 'bigsword', '8', '0.00000', '0', '0', '0', '325', '0', '107', '-1', '18300000', '1464', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_inferno_master_i00');
  1074. INSERT INTO `weapon` VALUES ('7885', 'Priest Sword', 'rhand', 'true', '1520', '2', '2', 'd', '32', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '35', '-1', '409000', '743', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_sword_of_priest_i00');
  1075. INSERT INTO `weapon` VALUES ('7886', 'Sword of Magic Fog', 'rhand', 'true', '1450', '3', '3', 'd', '63', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '63', '-1', '1400000', '2545', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_sword_of_magic_fog_i00');
  1076. INSERT INTO `weapon` VALUES ('7887', 'Mysterious Sword', 'rhand', 'true', '1430', '2', '2', 'c', '85', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '81', '-1', '2290000', '916', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_mystery_sword_i00');
  1077. INSERT INTO `weapon` VALUES ('7888', 'Ecliptic Sword', 'rhand', 'true', '1380', '3', '3', 'c', '125', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '111', '-1', '6130000', '2452', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_sword_of_eclipse_i00');
  1078. INSERT INTO `weapon` VALUES ('7889', 'Wizard\'s Tear', 'rhand', 'true', '1350', '1', '1', 'b', '155', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '132', '-1', '13100000', '1746', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_tears_of_wizard_i00');
  1079. INSERT INTO `weapon` VALUES ('7890', 'Priest Mace', 'rhand', 'true', '1720', '3', '3', 'd', '63', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '63', '-1', '1400000', '2545', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_mace_of_priest_i00');
  1080. INSERT INTO `weapon` VALUES ('7891', 'Ecliptic Axe', 'rhand', 'true', '1640', '3', '3', 'c', '125', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '111', '-1', '6130000', '2452', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_eclipse_axe_i00');
  1081. INSERT INTO `weapon` VALUES ('7892', 'Spell Breaker', 'rhand', 'true', '1620', '1', '1', 'b', '140', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '122', '-1', '8680000', '1157', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_spell_breaker_i00');
  1082. INSERT INTO `weapon` VALUES ('7893', 'Kaim Vanul\'s Bones', 'rhand', 'true', '1570', '1', '1', 'b', '155', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '132', '-1', '13100000', '1746', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_bone_of_kaim_vanul_i00');
  1083. INSERT INTO `weapon` VALUES ('7894', 'Spiritual Eye', 'rhand', 'true', '1550', '1', '1', 'a', '170', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '143', '-1', '18300000', '1464', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_eye_of_soul_i00');
  1084. INSERT INTO `weapon` VALUES ('7895', 'Flaming Dragon Skull', 'rhand', 'true', '1530', '1', '1', 'a', '186', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '152', '-1', '27000000', '2160', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dragon_flame_head_i00');
  1085. INSERT INTO `weapon` VALUES ('7896', 'Titan Hammer', 'lrhand', 'true', '2100', '3', '3', 'd', '96', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '47', '-1', '1400000', '2545', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_giants_hammer_i00');
  1086. INSERT INTO `weapon` VALUES ('7897', 'Dwarven Hammer', 'lrhand', 'true', '2010', '3', '3', 'c', '190', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '83', '-1', '6130000', '2452', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dwarven_hammer_i00');
  1087. INSERT INTO `weapon` VALUES ('7898', 'Karik Horn', 'lrhand', 'true', '2020', '3', '3', 'c', '169', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '76', '-1', '4300000', '1720', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_horn_of_karik_i00');
  1088. INSERT INTO `weapon` VALUES ('7899', 'Destroyer Hammer', 'lrhand', 'true', '1910', '1', '1', 'a', '259', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '107', '-1', '18300000', '1464', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_hammer_of_destroyer_i00');
  1089. INSERT INTO `weapon` VALUES ('7900', 'Ice Storm Hammer', 'lrhand', 'true', '1950', '1', '1', 'b', '213', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '91', '-1', '8680000', '1157', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_ice_storm_hammer_i00');
  1090. INSERT INTO `weapon` VALUES ('7901', 'Star Buster', 'lrhand', 'true', '1930', '1', '1', 'b', '236', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '99', '-1', '13100000', '1746', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_star_buster_i00');
  1091. INSERT INTO `weapon` VALUES ('7902', 'Doom Crusher', 'lrhand', 'true', '1900', '1', '1', 'a', '282', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '114', '-1', '27000000', '2160', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_doom_crusher_i00');
  1092. INSERT INTO `weapon` VALUES ('7903', 'Frintezza\'s Sword', 'lrhand', 'true', '2180', '2', '2', 'none', '78', '10', 'bigsword', '8', '0.00000', '0', '0', '0', '325', '0', '39', '-1', '0', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_monster_i00');
  1093. INSERT INTO `weapon` VALUES ('8102', 'Pa\'agrian Sword - Focus', 'lrhand', 'true', '1980', '3', '3', 'c', '169', '10', 'bigsword', '8', '0.00000', '0', '0', '0', '325', '0', '76', '-1', '4300000', '1720', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_sword_of_paagrio_i01');
  1094. INSERT INTO `weapon` VALUES ('8103', 'Pa\'agrian Sword - Health', 'lrhand', 'true', '1980', '3', '3', 'c', '169', '10', 'bigsword', '8', '0.00000', '0', '0', '0', '325', '0', '76', '-1', '4300000', '1720', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_sword_of_paagrio_i01');
  1095. INSERT INTO `weapon` VALUES ('8104', 'Pa\'agrian Sword - Critical Drain', 'lrhand', 'true', '1980', '3', '3', 'c', '169', '10', 'bigsword', '8', '0.00000', '0', '0', '0', '325', '0', '76', '-1', '4300000', '1720', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_sword_of_paagrio_i01');
  1096. INSERT INTO `weapon` VALUES ('8105', 'Guardian Sword - Critical Drain', 'lrhand', 'true', '1930', '1', '1', 'b', '236', '10', 'bigsword', '8', '0.00000', '0', '0', '0', '325', '0', '99', '-1', '13100000', '1746', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_guardians_sword_i01');
  1097. INSERT INTO `weapon` VALUES ('8106', 'Guardian Sword - Health', 'lrhand', 'true', '1930', '1', '1', 'b', '236', '10', 'bigsword', '8', '0.00000', '0', '0', '0', '325', '0', '99', '-1', '13100000', '1746', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_guardians_sword_i01');
  1098. INSERT INTO `weapon` VALUES ('8107', 'Guardian Sword - Critical Bleed', 'lrhand', 'true', '1930', '1', '1', 'b', '236', '10', 'bigsword', '8', '0.00000', '0', '0', '0', '325', '0', '99', '-1', '13100000', '1746', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_guardians_sword_i01');
  1099. INSERT INTO `weapon` VALUES ('8108', 'Infernal Master - Haste', 'lrhand', 'true', '1900', '1', '1', 'a', '259', '10', 'bigsword', '8', '0.00000', '0', '0', '0', '325', '0', '107', '-1', '18300000', '1464', 'true', 'true', 'true', 'true', '3037', '6', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_inferno_master_i01');
  1100. INSERT INTO `weapon` VALUES ('8109', 'Infernal Master - Critical Damage', 'lrhand', 'true', '1900', '1', '1', 'a', '259', '10', 'bigsword', '8', '0.00000', '0', '0', '0', '325', '0', '107', '-1', '18300000', '1464', 'true', 'true', 'true', 'true', '3066', '1', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_inferno_master_i01');
  1101. INSERT INTO `weapon` VALUES ('8110', 'Infernal Master - Focus', 'lrhand', 'true', '1900', '1', '1', 'a', '259', '10', 'bigsword', '8', '0.00000', '0', '0', '0', '325', '0', '107', '-1', '18300000', '1464', 'true', 'true', 'true', 'true', '3050', '2', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_inferno_master_i01');
  1102. INSERT INTO `weapon` VALUES ('8111', 'Mysterious Sword - Acumen', 'rhand', 'true', '1430', '2', '2', 'c', '85', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '81', '-1', '2290000', '916', 'true', 'true', 'true', 'true', '3047', '1', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_mystery_sword_i01');
  1103. INSERT INTO `weapon` VALUES ('8112', 'Mysterious Sword - Magic Power', 'rhand', 'true', '1430', '2', '2', 'c', '85', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '81', '-1', '2290000', '916', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_mystery_sword_i01');
  1104. INSERT INTO `weapon` VALUES ('8113', 'Mysterious Sword - Magic Weakness', 'rhand', 'true', '1430', '2', '2', 'c', '85', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '81', '-1', '2290000', '916', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '1164', '6', '8', '0', '0', '0', 'icon.weapon_mystery_sword_i01');
  1105. INSERT INTO `weapon` VALUES ('8114', 'Ecliptic Sword - Empower', 'rhand', 'true', '1380', '3', '3', 'c', '125', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '111', '-1', '6130000', '2452', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_sword_of_eclipse_i01');
  1106. INSERT INTO `weapon` VALUES ('8115', 'Ecliptic Sword - Magic Power', 'rhand', 'true', '1380', '3', '3', 'c', '125', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '111', '-1', '6130000', '2452', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_sword_of_eclipse_i01');
  1107. INSERT INTO `weapon` VALUES ('8116', 'Ecliptic Sword - Magic Silence', 'rhand', 'true', '1380', '3', '3', 'c', '125', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '111', '-1', '6130000', '2452', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_sword_of_eclipse_i01');
  1108. INSERT INTO `weapon` VALUES ('8117', 'Wizard\'s Tear - Acumen', 'rhand', 'true', '1350', '1', '1', 'b', '155', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '132', '-1', '13100000', '1746', 'true', 'true', 'true', 'true', '3047', '2', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_tears_of_wizard_i01');
  1109. INSERT INTO `weapon` VALUES ('8118', 'Wizard\'s Tear - Magic Power', 'rhand', 'true', '1350', '1', '1', 'b', '155', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '132', '-1', '13100000', '1746', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_tears_of_wizard_i01');
  1110. INSERT INTO `weapon` VALUES ('8119', 'Wizard\'s Tear - Conversion', 'rhand', 'true', '1350', '1', '1', 'b', '155', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '132', '-1', '13100000', '1746', 'true', 'true', 'true', 'true', '3048', '2', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_tears_of_wizard_i01');
  1111. INSERT INTO `weapon` VALUES ('8120', 'Dwarven Hammer - Health', 'lrhand', 'true', '2010', '3', '3', 'c', '190', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '83', '-1', '6130000', '2452', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dwarven_hammer_i01');
  1112. INSERT INTO `weapon` VALUES ('8121', 'Dwarven Hammer - Anger', 'lrhand', 'true', '2010', '3', '3', 'c', '190', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '83', '-1', '6130000', '2452', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dwarven_hammer_i01');
  1113. INSERT INTO `weapon` VALUES ('8122', 'Dwarven Hammer - Critical Bleed', 'lrhand', 'true', '2010', '3', '3', 'c', '190', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '83', '-1', '6130000', '2452', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dwarven_hammer_i01');
  1114. INSERT INTO `weapon` VALUES ('8123', 'Karik Horn - Focus', 'lrhand', 'true', '2020', '3', '3', 'c', '169', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '76', '-1', '4300000', '1720', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_horn_of_karik_i01');
  1115. INSERT INTO `weapon` VALUES ('8124', 'Karik Horn - Haste', 'lrhand', 'true', '2020', '3', '3', 'c', '169', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '76', '-1', '4300000', '1720', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_horn_of_karik_i01');
  1116. INSERT INTO `weapon` VALUES ('8125', 'Karik Horn - Critical Drain', 'lrhand', 'true', '2020', '3', '3', 'c', '169', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '76', '-1', '4300000', '1720', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_horn_of_karik_i01');
  1117. INSERT INTO `weapon` VALUES ('8126', 'Destroyer Hammer - Health', 'lrhand', 'true', '1910', '1', '1', 'a', '259', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '107', '-1', '18300000', '1464', 'true', 'true', 'true', 'true', '3013', '4', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_hammer_of_destroyer_i01');
  1118. INSERT INTO `weapon` VALUES ('8127', 'Destroyer Hammer - Haste', 'lrhand', 'true', '1910', '1', '1', 'a', '259', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '107', '-1', '18300000', '1464', 'true', 'true', 'true', 'true', '3037', '6', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_hammer_of_destroyer_i01');
  1119. INSERT INTO `weapon` VALUES ('8128', 'Destroyer Hammer - Critical Drain', 'lrhand', 'true', '1910', '1', '1', 'a', '259', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '107', '-1', '18300000', '1464', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '3022', '5', '10', 'icon.weapon_hammer_of_destroyer_i01');
  1120. INSERT INTO `weapon` VALUES ('8129', 'Ice Storm Hammer - Focus', 'lrhand', 'true', '1950', '1', '1', 'b', '213', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '91', '-1', '8680000', '1157', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_ice_storm_hammer_i01');
  1121. INSERT INTO `weapon` VALUES ('8130', 'Ice Storm Hammer - Anger', 'lrhand', 'true', '1950', '1', '1', 'b', '213', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '91', '-1', '8680000', '1157', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_ice_storm_hammer_i01');
  1122. INSERT INTO `weapon` VALUES ('8131', 'Ice Storm Hammer - Critical Bleed', 'lrhand', 'true', '1950', '1', '1', 'b', '213', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '91', '-1', '8680000', '1157', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_ice_storm_hammer_i01');
  1123. INSERT INTO `weapon` VALUES ('8132', 'Star Buster - Health', 'lrhand', 'true', '1930', '1', '1', 'b', '236', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '99', '-1', '13100000', '1746', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_star_buster_i01');
  1124. INSERT INTO `weapon` VALUES ('8133', 'Star Buster - Haste', 'lrhand', 'true', '1930', '1', '1', 'b', '236', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '99', '-1', '13100000', '1746', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_star_buster_i01');
  1125. INSERT INTO `weapon` VALUES ('8134', 'Star Buster - Rsk. Focus', 'lrhand', 'true', '1930', '1', '1', 'b', '236', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '99', '-1', '13100000', '1746', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_star_buster_i01');
  1126. INSERT INTO `weapon` VALUES ('8135', 'Doom Crusher - Health', 'lrhand', 'true', '1900', '1', '1', 'a', '282', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '114', '-1', '27000000', '2160', 'true', 'true', 'true', 'true', '3013', '3', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_doom_crusher_i01');
  1127. INSERT INTO `weapon` VALUES ('8136', 'Doom Crusher - Anger', 'lrhand', 'true', '1900', '1', '1', 'a', '282', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '114', '-1', '27000000', '2160', 'true', 'true', 'true', 'true', '3057', '1', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_doom_crusher_i01');
  1128. INSERT INTO `weapon` VALUES ('8137', 'Doom Crusher - Rsk. Haste', 'lrhand', 'true', '1900', '1', '1', 'a', '282', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '114', '-1', '27000000', '2160', 'true', 'true', 'true', 'true', '3032', '4', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_doom_crusher_i01');
  1129. INSERT INTO `weapon` VALUES ('8138', 'Ecliptic Axe - Conversion', 'rhand', 'true', '1640', '3', '3', 'c', '125', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '111', '-1', '6130000', '2452', 'true', 'true', 'true', 'true', '3048', '2', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_eclipse_axe_i01');
  1130. INSERT INTO `weapon` VALUES ('8139', 'Ecliptic Axe - Magic Power', 'rhand', 'true', '1640', '3', '3', 'c', '125', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '111', '-1', '6130000', '2452', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_eclipse_axe_i01');
  1131. INSERT INTO `weapon` VALUES ('8140', 'Ecliptic Axe - Magic Hold', 'rhand', 'true', '1640', '3', '3', 'c', '125', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '111', '-1', '6130000', '2452', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '1201', '23', '10', '0', '0', '0', 'icon.weapon_eclipse_axe_i01');
  1132. INSERT INTO `weapon` VALUES ('8141', 'Spell Breaker - Acumen', 'rhand', 'true', '1620', '1', '1', 'b', '140', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '122', '-1', '8680000', '1157', 'true', 'true', 'true', 'true', '3047', '1', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_spell_breaker_i01');
  1133. INSERT INTO `weapon` VALUES ('8142', 'Spell Breaker - Magic Mental Shield', 'rhand', 'true', '1620', '1', '1', 'b', '140', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '122', '-1', '8680000', '1157', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '1035', '4', '50', '0', '0', '0', 'icon.weapon_spell_breaker_i01');
  1134. INSERT INTO `weapon` VALUES ('8143', 'Spell Breaker - Magic Hold', 'rhand', 'true', '1620', '1', '1', 'b', '140', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '122', '-1', '8680000', '1157', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '1201', '23', '10', '0', '0', '0', 'icon.weapon_spell_breaker_i01');
  1135. INSERT INTO `weapon` VALUES ('8144', 'Kaim Vanul\'s Bones - Mana Up', 'rhand', 'true', '1570', '1', '1', 'b', '155', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '132', '-1', '13100000', '1746', 'true', 'true', 'true', 'true', '3014', '1', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_bone_of_kaim_vanul_i01');
  1136. INSERT INTO `weapon` VALUES ('8145', 'Kaim Vanul\'s Bones - Magic Silence', 'rhand', 'true', '1570', '1', '1', 'b', '155', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '132', '-1', '13100000', '1746', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_bone_of_kaim_vanul_i01');
  1137. INSERT INTO `weapon` VALUES ('8146', 'Kaim Vanul\'s Bones - Conversion', 'rhand', 'true', '1570', '1', '1', 'b', '155', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '132', '-1', '13100000', '1746', 'true', 'true', 'true', 'true', '3048', '2', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_bone_of_kaim_vanul_i01');
  1138. INSERT INTO `weapon` VALUES ('8147', 'Spiritual Eye - Mana Up', 'rhand', 'true', '1550', '1', '1', 'a', '170', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '143', '-1', '18300000', '1464', 'true', 'true', 'true', 'true', '3014', '1', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_eye_of_soul_i01');
  1139. INSERT INTO `weapon` VALUES ('8148', 'Spiritual Eye - Magic Poison', 'rhand', 'true', '1550', '1', '1', 'a', '170', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '143', '-1', '18300000', '1464', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '1168', '6', '10', '0', '0', '0', 'icon.weapon_eye_of_soul_i01');
  1140. INSERT INTO `weapon` VALUES ('8149', 'Spiritual Eye - Acumen', 'rhand', 'true', '1550', '1', '1', 'a', '170', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '143', '-1', '18300000', '1464', 'true', 'true', 'true', 'true', '3047', '2', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_eye_of_soul_i01');
  1141. INSERT INTO `weapon` VALUES ('8150', 'Flaming Dragon Skull - Acumen', 'rhand', 'true', '1530', '1', '1', 'a', '186', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '152', '-1', '27000000', '2160', 'true', 'true', 'true', 'true', '3047', '2', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dragon_flame_head_i01');
  1142. INSERT INTO `weapon` VALUES ('8151', 'Flaming Dragon Skull - Magic Power', 'rhand', 'true', '1530', '1', '1', 'a', '186', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '152', '-1', '27000000', '2160', 'true', 'true', 'true', 'true', '3073', '1', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dragon_flame_head_i01');
  1143. INSERT INTO `weapon` VALUES ('8152', 'Flaming Dragon Skull - Magic Silence', 'rhand', 'true', '1530', '1', '1', 'a', '186', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '152', '-1', '27000000', '2160', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '3074', '1', '10', '0', '0', '0', 'icon.weapon_dragon_flame_head_i01');
  1144. INSERT INTO `weapon` VALUES ('8190', 'Demonic Sword Zariche', 'lrhand', 'true', '1840', '0', '0', 'none', '361', '10', 'bigsword', '8', '0.00000', '0', '0', '0', '325', '0', '137', '-1', '0', '0', 'false', 'false', 'false', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_unique_zariche_i00');
  1145. INSERT INTO `weapon` VALUES ('8203', 'Monster Only (Venom Sword)', 'lrhand', 'true', '1560', '1', '1', 'none', '0', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '0', '-1', '0', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_monster_i00');
  1146. INSERT INTO `weapon` VALUES ('8204', 'Monster Only (Follower of Frintezza Calibur)', 'rhand', 'false', '1560', '2', '2', 'none', '0', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '0', '-1', '0', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_monster_i00');
  1147. INSERT INTO `weapon` VALUES ('8205', 'Monster Only (Heretic Priest Sickle)', 'lrhand', 'true', '1920', '1', '1', 'none', '0', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '0', '-1', '0', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_monster_i00');
  1148. INSERT INTO `weapon` VALUES ('8206', 'Monster Only (Heretic Priest Sword)', 'lrhand', 'true', '2080', '1', '1', 'none', '0', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '0', '-1', '0', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_monster_i00');
  1149. INSERT INTO `weapon` VALUES ('8207', 'Monster Only (Heretic Private Axe)', 'lrhand', 'true', '1560', '1', '1', 'none', '0', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '0', '-1', '0', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_monster_i00');
  1150. INSERT INTO `weapon` VALUES ('8208', 'Monster Only (Heretic Private Staff)', 'lrhand', 'true', '1560', '1', '1', 'none', '0', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '0', '-1', '0', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_monster_i00');
  1151. INSERT INTO `weapon` VALUES ('8209', 'Monster Only (Lidia Von Helmann Sword)', 'rhand', 'false', '1560', '2', '2', 'none', '0', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '0', '-1', '0', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_monster_i00');
  1152. INSERT INTO `weapon` VALUES ('8210', 'Monster Only (Monk Warrior Shield)', 'lhand', 'false', '4800', '0', '0', 'none', '0', '0', 'none', '0', '0.00000', '-8', '230', '20', '0', '0', '0', '-1', '0', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_monster_i00');
  1153. INSERT INTO `weapon` VALUES ('8211', 'Monster Only (Monk Warrior Sword)', 'rhand', 'false', '1560', '2', '2', 'none', '0', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '0', '-1', '0', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_monster_i00');
  1154. INSERT INTO `weapon` VALUES ('8212', 'Monster Only (Solina Brother Mace)', 'rhand', 'true', '1570', '1', '1', 'none', '0', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '0', '-1', '0', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_monster_i00');
  1155. INSERT INTO `weapon` VALUES ('8213', 'Monster Only (Solina Father Mace)', 'rhand', 'true', '1570', '1', '1', 'none', '0', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '0', '-1', '0', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_monster_i00');
  1156. INSERT INTO `weapon` VALUES ('8214', 'Monster Only (Solina Priest Pole)', 'lrhand', 'false', '1920', '1', '1', 'none', '0', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '0', '-1', '0', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_monster_i00');
  1157. INSERT INTO `weapon` VALUES ('8215', 'Monster Only (Zombie Enlisted Man Sword)', 'lrhand', 'true', '2090', '3', '3', 'none', '0', '10', 'bigsword', '8', '0.00000', '0', '0', '0', '325', '0', '0', '-1', '0', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_monster_i00');
  1158. INSERT INTO `weapon` VALUES ('8216', 'Monster Only (Zombie Enlisted Man Claw)', 'lrhand', 'false', '1350', '1', '1', 'none', '0', '5', 'dualfist', '4', '4.00000', '0', '0', '0', '325', '0', '0', '-1', '0', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_monster_i00');
  1159. INSERT INTO `weapon` VALUES ('8217', 'Monster Only (Zombie Gateguard Spear)', 'rhand', 'true', '1560', '2', '2', 'none', '0', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '0', '-1', '0', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_monster_i00');
  1160. INSERT INTO `weapon` VALUES ('8218', 'Monster Only (Zombie Laborer Axe)', 'rhand', 'true', '1570', '1', '1', 'none', '0', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '0', '-1', '0', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_monster_i00');
  1161. INSERT INTO `weapon` VALUES ('8219', 'Monster Only (Zombie Laborer Sword)', 'rhand', 'true', '1560', '2', '2', 'none', '0', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '0', '-1', '0', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_monster_i00');
  1162. INSERT INTO `weapon` VALUES ('8220', 'Monster Only (Apostle Grail Bow)', 'lrhand', 'true', '1950', '1', '1', 'none', '0', '5', 'bow', '12', '-3.00000', '0', '0', '0', '293', '1', '0', '-1', '0', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_monster_i00');
  1163. INSERT INTO `weapon` VALUES ('8221', 'Monster Only (Apostle Grail Spear)', 'lrhand', 'false', '1920', '1', '1', 'none', '0', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '0', '-1', '0', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_monster_i00');
  1164. INSERT INTO `weapon` VALUES ('8222', 'Monster Only (Follower of Frintezza Tran Calibur)', 'rhand', 'true', '1560', '2', '2', 'none', '0', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '0', '-1', '0', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_monster_i00');
  1165. INSERT INTO `weapon` VALUES ('8350', 'Chrono Maracas', 'lrhand', 'true', '0', '0', '0', 'none', '1', '5', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '1', '-1', '0', '0', 'true', 'false', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_chrono_maracas_i00');
  1166. INSERT INTO `weapon` VALUES ('8527', 'For Monsters Only (Strengthened Bow)', 'lrhand', 'true', '1870', '6', '2', 'd', '82', '5', 'bow', '12', '-3.00000', '0', '0', '0', '293', '3', '26', '-1', '0', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_monster_i00');
  1167. INSERT INTO `weapon` VALUES ('8528', 'For Monsters Only (Doom Hammer)', 'rhand', 'true', '1200', '2', '2', 'd', '41', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '43', '-1', '0', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_monster_i00');
  1168. INSERT INTO `weapon` VALUES ('8529', 'For Monsters Only (Knife)', 'rhand', 'false', '1140', '1', '1', 'none', '10', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '9', '-1', '0', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_monster_i00');
  1169. INSERT INTO `weapon` VALUES ('8530', 'For Monsters Only (Squire\'s Sword)', 'rhand', 'false', '1600', '1', '1', 'none', '6', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '5', '-1', '0', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_monster_i00');
  1170. INSERT INTO `weapon` VALUES ('8531', 'For Monsters Only (Bone Staff)', 'lrhand', 'true', '1060', '2', '2', 'd', '39', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '35', '-1', '0', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_monster_i00');
  1171. INSERT INTO `weapon` VALUES ('8532', 'For Monsters Only (Spinebone Sword)', 'rhand', 'true', '1510', '2', '2', 'd', '51', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '32', '-1', '0', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_monster_i00');
  1172. INSERT INTO `weapon` VALUES ('8533', 'For Monsters Only (Crimson Sword)', 'rhand', 'true', '1490', '2', '2', 'd', '64', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '39', '-1', '0', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_monster_i00');
  1173. INSERT INTO `weapon` VALUES ('8576', 'Apprentice\'s Staff (Event)', 'lrhand', 'false', '1070', '2', '2', 'none', '23', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '22', '-1', '0', '0', 'false', 'false', 'false', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_apprentices_staff_i00');
  1174. INSERT INTO `weapon` VALUES ('8577', 'Bone Club (Event)', 'rhand', 'false', '1850', '2', '2', 'none', '24', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '17', '-1', '0', '0', 'false', 'false', 'false', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_club_i00');
  1175. INSERT INTO `weapon` VALUES ('8578', 'Shining Knife (Event)', 'rhand', 'false', '1120', '2', '2', 'none', '21', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '17', '-1', '0', '0', 'false', 'false', 'false', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_shining_knife_i00');
  1176. INSERT INTO `weapon` VALUES ('8579', 'Cestus (Event)', 'lrhand', 'false', '1570', '2', '2', 'none', '29', '5', 'dualfist', '4', '4.00000', '0', '0', '0', '325', '0', '17', '-1', '0', '0', 'false', 'false', 'false', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_vipers_canine_i00');
  1177. INSERT INTO `weapon` VALUES ('8580', 'Forest Bow (Event)', 'lrhand', 'false', '1900', '7', '2', 'none', '49', '5', 'bow', '12', '-3.00000', '0', '0', '0', '293', '3', '17', '-1', '0', '0', 'false', 'false', 'false', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_short_bow_i00');
  1178. INSERT INTO `weapon` VALUES ('8581', 'Long Sword (Event)', 'rhand', 'false', '1560', '2', '2', 'none', '24', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '17', '-1', '0', '0', 'false', 'false', 'false', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_long_sword_i00');
  1179. INSERT INTO `weapon` VALUES ('8582', 'Mace of Prayer (Event)', 'rhand', 'false', '1300', '2', '2', 'd', '41', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '43', '-1', '0', '0', 'false', 'false', 'false', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_mace_of_prayer_i00');
  1180. INSERT INTO `weapon` VALUES ('8583', 'Dark Elven Bow (Event)', 'lrhand', 'false', '1830', '6', '2', 'd', '105', '5', 'bow', '12', '-3.00000', '0', '0', '0', '293', '4', '32', '-1', '0', '0', 'false', 'false', 'false', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dark_elven_bow_i00');
  1181. INSERT INTO `weapon` VALUES ('8584', 'Long Bow (Event)', 'lrhand', 'false', '1830', '6', '2', 'd', '114', '5', 'bow', '12', '-3.00000', '0', '0', '0', '227', '4', '35', '-1', '0', '0', 'false', 'false', 'false', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_strengthening_bow_i00');
  1182. INSERT INTO `weapon` VALUES ('8585', 'Staff of Mana (Event)', 'lrhand', 'false', '1040', '2', '2', 'd', '50', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '43', '-1', '0', '0', 'false', 'false', 'false', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_staff_of_mana_i00');
  1183. INSERT INTO `weapon` VALUES ('8586', 'Bastard Sword (Event)', 'rhand', 'false', '1510', '2', '2', 'd', '51', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '32', '-1', '0', '0', 'false', 'false', 'false', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_bastard_sword_i00');
  1184. INSERT INTO `weapon` VALUES ('8587', 'Divine Tomb (Event)', 'rhand', 'false', '570', '2', '2', 'd', '41', '10', 'etc', '8', '0.00000', '0', '0', '0', '379', '0', '43', '-1', '0', '0', 'false', 'false', 'false', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_divine_tome_i00');
  1185. INSERT INTO `weapon` VALUES ('8588', 'Single-Edged Jamadhr (Event)', 'lrhand', 'false', '1550', '2', '2', 'd', '62', '5', 'dualfist', '4', '4.00000', '0', '0', '0', '325', '0', '32', '-1', '0', '0', 'false', 'false', 'false', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_baghnakh_i00');
  1186. INSERT INTO `weapon` VALUES ('8589', 'Tomahawk (Event)', 'rhand', 'false', '1780', '2', '2', 'd', '51', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '32', '-1', '0', '0', 'false', 'false', 'false', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_tomahawk_i00');
  1187. INSERT INTO `weapon` VALUES ('8590', 'Poniard Daggar (Event)', 'rhand', 'false', '1090', '2', '2', 'd', '45', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '32', '-1', '0', '0', 'false', 'false', 'false', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dirk_i00');
  1188. INSERT INTO `weapon` VALUES ('8591', 'Pike (Event)', 'lrhand', 'false', '2090', '2', '2', 'd', '51', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '32', '-1', '0', '0', 'false', 'false', 'false', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_pike_i00');
  1189. INSERT INTO `weapon` VALUES ('8678', 'Sirra\'s Blade', 'rhand', 'true', '1300', '1', '1', 'a', '251', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '121', '-1', '0', '2824', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_sirr_blade_i00');
  1190. INSERT INTO `weapon` VALUES ('8679', 'Sword of Ipos', 'lrhand', 'true', '1820', '1', '1', 'a', '305', '10', 'bigsword', '8', '0.00000', '0', '0', '0', '325', '0', '121', '-1', '0', '2824', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_sword_of_ipos_i00');
  1191. INSERT INTO `weapon` VALUES ('8680', 'Barakiel\'s Axe', 'rhand', 'true', '1550', '1', '1', 'a', '251', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '121', '-1', '0', '2824', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_barakiel_axe_i00');
  1192. INSERT INTO `weapon` VALUES ('8681', 'Behemoth\'s Tuning Fork', 'lrhand', 'true', '1890', '1', '1', 'a', '305', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '121', '-1', '0', '2824', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_tuning_fork_of_behemoth_i00');
  1193. INSERT INTO `weapon` VALUES ('8682', 'Naga Storm', 'rhand', 'true', '930', '1', '1', 'a', '220', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '121', '-1', '0', '2824', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_naga_storm_i00');
  1194. INSERT INTO `weapon` VALUES ('8683', 'Tiphon\'s Spear', 'lrhand', 'true', '1820', '1', '1', 'a', '251', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '121', '-1', '0', '2824', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_tiphon_spear_i00');
  1195. INSERT INTO `weapon` VALUES ('8684', 'Shyeed\'s Bow', 'lrhand', 'true', '1640', '2', '1', 'a', '570', '5', 'bow', '12', '-3.00000', '0', '0', '0', '227', '10', '133', '-1', '0', '2824', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_shyid_bow_i00');
  1196. INSERT INTO `weapon` VALUES ('8685', 'Sobekk\'s Hurricane', 'lrhand', 'true', '1330', '1', '1', 'a', '305', '5', 'dualfist', '4', '4.00000', '0', '0', '0', '325', '0', '121', '-1', '0', '2824', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_sobekk_hurricane_i00');
  1197. INSERT INTO `weapon` VALUES ('8686', 'Themis\' Tongue', 'rhand', 'true', '820', '1', '1', 'a', '202', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '161', '-1', '0', '2824', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_tongue_of_themis_i00');
  1198. INSERT INTO `weapon` VALUES ('8687', 'Cabrio\'s Hand', 'rhand', 'true', '1510', '1', '1', 'a', '202', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '161', '-1', '0', '2824', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_hand_of_cabrio_i00');
  1199. INSERT INTO `weapon` VALUES ('8688', 'Daimon Crystal', 'lrhand', 'true', '880', '1', '1', 'a', '245', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '161', '-1', '0', '2824', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_crystal_of_deamon_i00');
  1200. INSERT INTO `weapon` VALUES ('8689', 'Blood Sword Akamanah', 'lrhand', 'true', '1840', '0', '0', 'none', '361', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '137', '-1', '0', '0', 'false', 'false', 'false', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dual_sword_i00');
  1201. INSERT INTO `weapon` VALUES ('8763', 'Elrokian Trap', 'rhand', 'false', '500', '0', '0', 'a', '0', '0', 'blunt', '0', '0.00000', '0', '0', '0', '379', '0', '0', '-1', '0', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_seize_mace_i00');
  1202. INSERT INTO `weapon` VALUES ('8788', 'Sirra\'s Blade - Haste', 'rhand', 'true', '1300', '1', '1', 'a', '251', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '121', '-1', '0', '2824', 'true', 'true', 'true', 'true', '3037', '6', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_sirr_blade_i01');
  1203. INSERT INTO `weapon` VALUES ('8789', 'Sirra\'s Blade - Health', 'rhand', 'true', '1300', '1', '1', 'a', '251', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '121', '-1', '0', '2824', 'true', 'true', 'true', 'true', '3013', '4', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_sirr_blade_i01');
  1204. INSERT INTO `weapon` VALUES ('8790', 'Sirra\'s Blade - Critical Poison', 'rhand', 'true', '1300', '1', '1', 'a', '251', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '121', '-1', '0', '2824', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '3024', '6', '15', 'icon.weapon_sirr_blade_i01');
  1205. INSERT INTO `weapon` VALUES ('8791', 'Sword of Ipos - Focus', 'lrhand', 'true', '1820', '1', '1', 'a', '305', '10', 'bigsword', '8', '0.00000', '0', '0', '0', '325', '0', '121', '-1', '0', '2824', 'true', 'true', 'true', 'true', '3050', '2', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_sword_of_ipos_i01');
  1206. INSERT INTO `weapon` VALUES ('8792', 'Sword of Ipos - Haste', 'lrhand', 'true', '1820', '1', '1', 'a', '305', '10', 'bigsword', '8', '0.00000', '0', '0', '0', '325', '0', '121', '-1', '0', '2824', 'true', 'true', 'true', 'true', '3037', '6', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_sword_of_ipos_i01');
  1207. INSERT INTO `weapon` VALUES ('8793', 'Sword of Ipos - Health', 'lrhand', 'true', '1820', '1', '1', 'a', '305', '10', 'bigsword', '8', '0.00000', '0', '0', '0', '325', '0', '121', '-1', '0', '2824', 'true', 'true', 'true', 'true', '3013', '4', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_sword_of_ipos_i01');
  1208. INSERT INTO `weapon` VALUES ('8794', 'Barakiel\'s Axe - Health', 'rhand', 'true', '1550', '1', '1', 'a', '251', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '121', '-1', '0', '2824', 'true', 'true', 'true', 'true', '3013', '4', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_barakiel_axe_i01');
  1209. INSERT INTO `weapon` VALUES ('8795', 'Barakiel\'s Axe - Haste', 'rhand', 'true', '1550', '1', '1', 'a', '251', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '121', '-1', '0', '2824', 'true', 'true', 'true', 'true', '3037', '6', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_barakiel_axe_i01');
  1210. INSERT INTO `weapon` VALUES ('8796', 'Barakiel\'s Axe - Focus', 'rhand', 'true', '1550', '1', '1', 'a', '251', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '121', '-1', '0', '2824', 'true', 'true', 'true', 'true', '3050', '2', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_barakiel_axe_i01');
  1211. INSERT INTO `weapon` VALUES ('8797', 'Behemoth\'s Tuning Fork - Focus', 'lrhand', 'true', '1890', '1', '1', 'a', '305', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '121', '-1', '0', '2824', 'true', 'true', 'true', 'true', '3050', '2', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_tuning_fork_of_behemoth_i01');
  1212. INSERT INTO `weapon` VALUES ('8798', 'Behemoth\'s Tuning Fork - Health', 'lrhand', 'true', '1890', '1', '1', 'a', '305', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '121', '-1', '0', '2824', 'true', 'true', 'true', 'true', '3013', '4', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_tuning_fork_of_behemoth_i01');
  1213. INSERT INTO `weapon` VALUES ('8799', 'Behemoth\'s Tuning Fork - Anger', 'lrhand', 'true', '1890', '1', '1', 'a', '305', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '121', '-1', '0', '2824', 'true', 'true', 'true', 'true', '3057', '1', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_tuning_fork_of_behemoth_i01');
  1214. INSERT INTO `weapon` VALUES ('8800', 'Naga Storm - Focus', 'rhand', 'true', '930', '1', '1', 'a', '220', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '121', '-1', '0', '2824', 'true', 'true', 'true', 'true', '3051', '1', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_naga_storm_i01');
  1215. INSERT INTO `weapon` VALUES ('8801', 'Naga Storm - Critical Damage', 'rhand', 'true', '930', '1', '1', 'a', '220', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '121', '-1', '0', '2824', 'true', 'true', 'true', 'true', '3066', '1', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_naga_storm_i01');
  1216. INSERT INTO `weapon` VALUES ('8802', 'Naga Storm - Back Blow', 'rhand', 'true', '930', '1', '1', 'a', '220', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '121', '-1', '0', '2824', 'true', 'true', 'true', 'true', '3018', '5', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_naga_storm_i01');
  1217. INSERT INTO `weapon` VALUES ('8803', 'Tiphon\'s Spear - Critical Stun', 'lrhand', 'true', '1820', '1', '1', 'a', '251', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '121', '-1', '0', '2824', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '3070', '1', '25', 'icon.weapon_tiphon_spear_i01');
  1218. INSERT INTO `weapon` VALUES ('8804', 'Tiphon\'s Spear - Towering Blow', 'lrhand', 'true', '1820', '1', '1', 'a', '251', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '121', '-1', '0', '2824', 'true', 'true', 'true', 'true', '3599', '1', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_tiphon_spear_i01');
  1219. INSERT INTO `weapon` VALUES ('8805', 'Tiphon\'s Spear - Wild Blow', 'lrhand', 'true', '1820', '1', '1', 'a', '251', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '121', '-1', '0', '2824', 'true', 'true', 'true', 'true', '3599', '1', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_tiphon_spear_i01');
  1220. INSERT INTO `weapon` VALUES ('8806', 'Shyeed\'s Bow - Cheap Shot', 'lrhand', 'true', '1640', '2', '1', 'a', '570', '5', 'bow', '12', '-3.00000', '0', '0', '0', '227', '10', '133', '-1', '0', '2824', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_shyid_bow_i01');
  1221. INSERT INTO `weapon` VALUES ('8807', 'Shyeed\'s Bow - Focus', 'lrhand', 'true', '1640', '2', '1', 'a', '570', '5', 'bow', '12', '-3.00000', '0', '0', '0', '227', '10', '133', '-1', '0', '2824', 'true', 'true', 'true', 'true', '3050', '2', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_shyid_bow_i01');
  1222. INSERT INTO `weapon` VALUES ('8808', 'Shyeed\'s Bow - Quick Recovery', 'lrhand', 'true', '1640', '2', '1', 'a', '570', '5', 'bow', '12', '-3.00000', '0', '0', '0', '227', '10', '133', '-1', '0', '2824', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_shyid_bow_i01');
  1223. INSERT INTO `weapon` VALUES ('8809', 'Sobekk\'s Hurricane - Rsk. Haste', 'lrhand', 'true', '1330', '1', '1', 'a', '305', '5', 'dualfist', '4', '4.00000', '0', '0', '0', '325', '0', '121', '-1', '0', '2824', 'true', 'true', 'true', 'true', '3032', '4', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_sobekk_hurricane_i01');
  1224. INSERT INTO `weapon` VALUES ('8810', 'Sobekk\'s Hurricane - Haste', 'lrhand', 'true', '1330', '1', '1', 'a', '305', '5', 'dualfist', '4', '4.00000', '0', '0', '0', '325', '0', '121', '-1', '0', '2824', 'true', 'true', 'true', 'true', '3037', '6', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_sobekk_hurricane_i01');
  1225. INSERT INTO `weapon` VALUES ('8811', 'Sobekk\'s Hurricane - Critical Drain', 'lrhand', 'true', '1330', '1', '1', 'a', '305', '5', 'dualfist', '4', '4.00000', '0', '0', '0', '325', '0', '121', '-1', '0', '2824', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '3022', '5', '10', 'icon.weapon_sobekk_hurricane_i01');
  1226. INSERT INTO `weapon` VALUES ('8812', 'Themis\' Tongue - Mana Up', 'rhand', 'true', '820', '1', '1', 'a', '202', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '161', '-1', '0', '2824', 'true', 'true', 'true', 'true', '3014', '2', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_tongue_of_themis_i01');
  1227. INSERT INTO `weapon` VALUES ('8813', 'Themis\' Tongue - Magic Mental Shield', 'rhand', 'true', '820', '1', '1', 'a', '202', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '161', '-1', '0', '2824', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '1035', '4', '50', '0', '0', '0', 'icon.weapon_tongue_of_themis_i01');
  1228. INSERT INTO `weapon` VALUES ('8814', 'Themis\' Tongue - Magic Focus', 'rhand', 'true', '820', '1', '1', 'a', '202', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '161', '-1', '0', '2824', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '1077', '3', '20', '0', '0', '0', 'icon.weapon_tongue_of_themis_i01');
  1229. INSERT INTO `weapon` VALUES ('8815', 'Cabrio\'s Hand - Conversion', 'rhand', 'true', '1510', '1', '1', 'a', '202', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '161', '-1', '0', '2824', 'true', 'true', 'true', 'true', '3048', '2', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_hand_of_cabrio_i01');
  1230. INSERT INTO `weapon` VALUES ('8816', 'Cabrio\'s Hand - Mana Up', 'rhand', 'true', '1510', '1', '1', 'a', '202', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '161', '-1', '0', '2824', 'true', 'true', 'true', 'true', '3014', '2', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_hand_of_cabrio_i01');
  1231. INSERT INTO `weapon` VALUES ('8817', 'Cabrio\'s Hand - Magic Silence', 'rhand', 'true', '1510', '1', '1', 'a', '202', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '161', '-1', '0', '2824', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '3078', '2', '10', '0', '0', '0', 'icon.weapon_hand_of_cabrio_i01');
  1232. INSERT INTO `weapon` VALUES ('8818', 'Daimon Crystal - Mana Up', 'lrhand', 'true', '880', '1', '1', 'a', '245', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '161', '-1', '0', '2824', 'true', 'true', 'true', 'true', '3014', '2', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_crystal_of_deamon_i01');
  1233. INSERT INTO `weapon` VALUES ('8819', 'Daimon Crystal - Acumen', 'lrhand', 'true', '880', '1', '1', 'a', '245', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '161', '-1', '0', '2824', 'true', 'true', 'true', 'true', '3047', '3', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_crystal_of_deamon_i01');
  1234. INSERT INTO `weapon` VALUES ('8820', 'Daimon Crystal - Magic Mental Shield', 'lrhand', 'true', '880', '1', '1', 'a', '245', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '161', '-1', '0', '2824', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '1035', '3', '50', '0', '0', '0', 'icon.weapon_crystal_of_deamon_i01');
  1235. INSERT INTO `weapon` VALUES ('8821', 'Shadow Item: Two Handed Sword', 'lrhand', 'true', '730', '2', '2', 'd', '78', '10', 'bigsword', '8', '0.00000', '0', '0', '0', '325', '0', '39', '90', '0', '0', 'false', 'false', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_two_handed_sword_i00');
  1236. INSERT INTO `weapon` VALUES ('8822', 'Shadow Item: Crimson Sword', 'rhand', 'true', '500', '2', '2', 'd', '64', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '39', '90', '0', '0', 'false', 'false', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.time_weapon_crimson_sword_i00');
  1237. INSERT INTO `weapon` VALUES ('8823', 'Shadow Item: Spiked Club', 'rhand', 'true', '590', '2', '2', 'd', '64', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '39', '90', '0', '0', 'false', 'false', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.time_weapon_spike_club_i00');
  1238. INSERT INTO `weapon` VALUES ('8824', 'Shadow Item: Staff of Magic', 'lrhand', 'true', '340', '2', '2', 'd', '62', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '52', '90', '0', '0', 'false', 'false', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.time_weapon_staff_of_magicpower_i00');
  1239. INSERT INTO `weapon` VALUES ('8825', 'Shadow Item: Kukuri', 'rhand', 'true', '360', '2', '2', 'd', '56', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '39', '90', '0', '0', 'false', 'false', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.time_weapon_kukuri_i00');
  1240. INSERT INTO `weapon` VALUES ('8826', 'Shadow Item: Dagger of Mana', 'rhand', 'true', '250', '2', '2', 'd', '45', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '52', '90', '0', '0', 'false', 'false', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.time_weapon_dagger_of_mana_i00');
  1241. INSERT INTO `weapon` VALUES ('8827', 'Shadow Item: Triple-Edged Jamadhr', 'lrhand', 'true', '520', '2', '2', 'd', '78', '5', 'dualfist', '4', '4.00000', '0', '0', '0', '325', '0', '39', '90', '0', '0', 'false', 'false', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.time_weapon_triple_edged_jamadhr_i00');
  1242. INSERT INTO `weapon` VALUES ('8828', 'Shadow Item: Gastraphetes', 'lrhand', 'true', '620', '8', '2', 'd', '132', '5', 'bow', '12', '-3.00000', '0', '0', '0', '293', '4', '39', '90', '0', '0', 'false', 'false', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.time_weapon_gastraphetes_i00');
  1243. INSERT INTO `weapon` VALUES ('8829', 'Shadow Item: War Hammer', 'lrhand', 'true', '700', '2', '2', 'd', '64', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '39', '90', '0', '0', 'false', 'false', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.time_weapon_war_hammer_i00');
  1244. INSERT INTO `weapon` VALUES ('8830', 'Shadow Item: Katana', 'rhand', 'true', '480', '2', '2', 'c', '122', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '68', '300', '0', '0', 'false', 'false', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.time_weapon_katana_i00');
  1245. INSERT INTO `weapon` VALUES ('8831', 'Shadow Item: Bec de Corbin', 'lrhand', 'true', '680', '2', '2', 'c', '122', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '68', '300', '0', '0', 'false', 'false', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.time_weapon_bech_de_corbin_i00');
  1246. INSERT INTO `weapon` VALUES ('8832', 'Shadow Item: Cursed Staff', 'lrhand', 'true', '340', '2', '2', 'c', '119', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '91', '300', '0', '0', 'false', 'false', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.time_weapon_cursed_staff_i00');
  1247. INSERT INTO `weapon` VALUES ('8833', 'Shadow Item: Stiletto', 'rhand', 'true', '350', '2', '2', 'c', '107', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '68', '300', '0', '0', 'false', 'false', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.time_weapon_stiletto_i00');
  1248. INSERT INTO `weapon` VALUES ('8834', 'Shadow Item: Soulfire Dirk', 'rhand', 'true', '250', '2', '2', 'c', '86', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '91', '300', '0', '0', 'false', 'false', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.time_weapon_dagger_of_magicflame_i00');
  1249. INSERT INTO `weapon` VALUES ('8835', 'Shadow Item: Elemental Bow', 'lrhand', 'true', '590', '8', '2', 'c', '277', '5', 'bow', '12', '-3.00000', '0', '0', '0', '227', '7', '75', '300', '0', '0', 'false', 'false', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.time_weapon_elemental_bow_i00');
  1250. INSERT INTO `weapon` VALUES ('8836', 'Shadow Item: Dwarven War Hammer', 'rhand', 'true', '560', '2', '2', 'c', '122', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '68', '300', '0', '0', 'false', 'false', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.time_weapon_dwarven_warhammer_i00');
  1251. INSERT INTO `weapon` VALUES ('8837', 'Shadow Item: Sword of Revolution', 'lrhand', 'true', '790', '2', '2', 'c', '148', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '68', '300', '0', '0', 'false', 'false', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.time_weapon_two_handed_sword_i00');
  1252. INSERT INTO `weapon` VALUES ('8838', 'Shadow Item: Knuckle Duster', 'lrhand', 'true', '500', '2', '2', 'c', '148', '5', 'dualfist', '4', '4.00000', '0', '0', '0', '325', '0', '68', '300', '0', '0', 'false', 'false', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.time_weapon_knuckle_dust_i00');
  1253. INSERT INTO `weapon` VALUES ('8839', 'Shadow Item: Sword of Delusion', 'rhand', 'true', '470', '3', '3', 'c', '139', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '76', '300', '0', '0', 'false', 'false', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.time_weapon_sword_of_delusion_i00');
  1254. INSERT INTO `weapon` VALUES ('8840', 'Shadow Item: Poleaxe', 'lrhand', 'true', '670', '3', '3', 'c', '139', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '76', '300', '0', '0', 'false', 'false', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.time_weapon_poleaxe_i00');
  1255. INSERT INTO `weapon` VALUES ('8841', 'Shadow Item: Stick of Eternity', 'rhand', 'true', '380', '3', '3', 'c', '111', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '101', '300', '0', '0', 'false', 'false', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.time_weapon_stick_of_eternity_i00');
  1256. INSERT INTO `weapon` VALUES ('8842', 'Shadow Item: Inferno Staff', 'lrhand', 'true', '340', '3', '3', 'c', '135', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '101', '300', '0', '0', 'false', 'false', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.time_weapon_inferno_staff_i00');
  1257. INSERT INTO `weapon` VALUES ('8843', 'Shadow Item: Pa\'agrian Hammer', 'lrhand', 'true', '340', '3', '3', 'c', '135', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '101', '300', '0', '0', 'false', 'false', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.time_weapon_paagrio_hammer_i00');
  1258. INSERT INTO `weapon` VALUES ('8844', 'Shadow Item: Dark Screamer', 'rhand', 'true', '340', '3', '3', 'c', '122', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '76', '300', '0', '0', 'false', 'false', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.time_weapon_dark_screamer_i00');
  1259. INSERT INTO `weapon` VALUES ('8845', 'Shadow Item: Akat Long Bow', 'lrhand', 'true', '580', '9', '3', 'c', '316', '5', 'bow', '12', '-3.00000', '0', '0', '0', '227', '7', '84', '300', '0', '0', 'false', 'false', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.time_weapon_akat_long_bow_i00');
  1260. INSERT INTO `weapon` VALUES ('8846', 'Shadow Item: Pa\'agrian Sword', 'lrhand', 'true', '660', '3', '3', 'c', '169', '10', 'bigsword', '8', '0.00000', '0', '0', '0', '325', '0', '76', '300', '0', '0', 'false', 'false', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.time_weapon_sword_of_paagrio_i00');
  1261. INSERT INTO `weapon` VALUES ('8847', 'Shadow Item: Fisted Blade', 'lrhand', 'true', '500', '3', '3', 'c', '169', '5', 'dualfist', '4', '4.00000', '0', '0', '0', '325', '0', '76', '300', '0', '0', 'false', 'false', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.time_weapon_fist_blade_i00');
  1262. INSERT INTO `weapon` VALUES ('8848', 'Shadow Item: Stormbringer', 'lrhand', 'true', '780', '3', '3', 'c', '175', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '78', '300', '0', '0', 'false', 'false', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.time_weapon_dual_sword_i00');
  1263. INSERT INTO `weapon` VALUES ('8849', 'Shadow Item: Great Sword', 'lrhand', 'true', '650', '1', '1', 'b', '213', '10', 'bigsword', '8', '0.00000', '0', '0', '0', '325', '0', '91', '300', '0', '0', 'false', 'false', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.time_weapon_great_sword_i00');
  1264. INSERT INTO `weapon` VALUES ('8850', 'Shadow Item: Heavy War Axe', 'rhand', 'true', '540', '1', '1', 'b', '175', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '91', '300', '0', '0', 'false', 'false', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.time_weapon_heavy_war_axe_i00');
  1265. INSERT INTO `weapon` VALUES ('8851', 'Shadow Item: Sprite\'s Staff', 'lrhand', 'true', '320', '1', '1', 'b', '170', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '122', '300', '0', '0', 'false', 'false', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.time_weapon_sprites_staff_i00');
  1266. INSERT INTO `weapon` VALUES ('8852', 'Shadow Item: Keshanberk', 'rhand', 'true', '460', '1', '1', 'b', '175', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '91', '300', '0', '0', 'false', 'false', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.time_weapon_kshanberk_i00');
  1267. INSERT INTO `weapon` VALUES ('8853', 'Shadow Item: Sword of Valhalla', 'rhand', 'true', '300', '1', '1', 'b', '140', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '122', '300', '0', '0', 'false', 'false', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.time_weapon_sword_of_valhalla_i00');
  1268. INSERT INTO `weapon` VALUES ('8854', 'Shadow Item: Kris', 'rhand', 'true', '330', '1', '1', 'b', '153', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '91', '300', '0', '0', 'false', 'false', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.time_weapon_kris_i00');
  1269. INSERT INTO `weapon` VALUES ('8855', 'Shadow Item: Arthro Nail', 'lrhand', 'true', '480', '1', '1', 'b', '213', '5', 'dualfist', '4', '4.00000', '0', '0', '0', '325', '0', '91', '300', '0', '0', 'false', 'false', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.time_weapon_arthro_nail_i00');
  1270. INSERT INTO `weapon` VALUES ('8856', 'Shadow Item: Dark Elven Long Bow', 'lrhand', 'true', '580', '3', '1', 'b', '397', '5', 'bow', '12', '-3.00000', '0', '0', '0', '227', '8', '100', '300', '0', '0', 'false', 'false', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.time_weapon_dark_elven_long_bow_i00');
  1271. INSERT INTO `weapon` VALUES ('8857', 'Shadow Item: Swords of Delusion', 'lrhand', 'true', '720', '1', '1', 'b', '213', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '91', '300', '0', '0', 'false', 'false', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.time_weapon_dual_sword_i00');
  1272. INSERT INTO `weapon` VALUES ('8858', 'Shadow Item: Great Axe', 'lrhand', 'true', '650', '1', '1', 'b', '175', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '91', '300', '0', '0', 'false', 'false', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.time_weapon_great_axe_i00');
  1273. INSERT INTO `weapon` VALUES ('8859', 'Shadow Item: Tallum Blade', 'rhand', 'true', '450', '1', '1', 'a', '213', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '107', '300', '0', '0', 'false', 'false', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.time_weapon_tallum_blade_i00');
  1274. INSERT INTO `weapon` VALUES ('8860', 'Shadow Item: Halberd', 'lrhand', 'true', '640', '1', '1', 'a', '213', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '107', '300', '0', '0', 'false', 'false', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.time_weapon_halbard_i00');
  1275. INSERT INTO `weapon` VALUES ('8861', 'Shadow Item: Dasparion\'s Staff', 'lrhand', 'true', '310', '1', '1', 'a', '207', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '143', '300', '0', '0', 'false', 'false', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.time_weapon_dasparions_staff_i00');
  1276. INSERT INTO `weapon` VALUES ('8862', 'Shadow Item: Bloody Orchid', 'rhand', 'true', '320', '1', '1', 'a', '186', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '107', '300', '0', '0', 'false', 'false', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.time_weapon_bloody_orchid_i00');
  1277. INSERT INTO `weapon` VALUES ('8863', 'Shadow Item: Blood Tornado', 'lrhand', 'true', '460', '1', '1', 'a', '259', '5', 'dualfist', '4', '4.00000', '0', '0', '0', '325', '0', '107', '300', '0', '0', 'false', 'false', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.time_weapon_blood_tornado_i00');
  1278. INSERT INTO `weapon` VALUES ('8864', 'Shadow Item: Carnage Bow', 'lrhand', 'true', '560', '2', '1', 'a', '440', '5', 'bow', '12', '-3.00000', '0', '0', '0', '293', '9', '107', '300', '0', '0', 'false', 'false', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.time_weapon_carnium_bow_i00');
  1279. INSERT INTO `weapon` VALUES ('8865', 'Shadow Item: Dual Keshanberk', 'lrhand', 'true', '700', '1', '1', 'a', '259', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '107', '300', '0', '0', 'false', 'false', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.time_weapon_dual_sword_i00');
  1280. INSERT INTO `weapon` VALUES ('8866', 'Shadow Item: Meteor Shower', 'rhand', 'true', '540', '1', '1', 'a', '213', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '107', '300', '0', '0', 'false', 'false', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.time_weapon_meteor_shower_i00');
  1281. INSERT INTO `weapon` VALUES ('8867', 'Shadow Item: Inferno Master', 'lrhand', 'true', '640', '1', '1', 'a', '259', '10', 'bigsword', '8', '0.00000', '0', '0', '0', '325', '0', '107', '300', '0', '0', 'false', 'false', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.time_weapon_inferno_master_i00');
  1282. INSERT INTO `weapon` VALUES ('8926', 'Shadow Item: Sword of Delusion', 'rhand', 'true', '470', '3', '3', 'c', '139', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '76', '120', '0', '0', 'false', 'false', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.time_weapon_sword_of_delusion_i00');
  1283. INSERT INTO `weapon` VALUES ('8927', 'Shadow Item: Poleaxe', 'lrhand', 'true', '670', '3', '3', 'c', '139', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '76', '120', '0', '0', 'false', 'false', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.time_weapon_poleaxe_i00');
  1284. INSERT INTO `weapon` VALUES ('8928', 'Shadow Item: Stick of Eternity', 'rhand', 'true', '380', '3', '3', 'c', '111', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '101', '120', '0', '0', 'false', 'false', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.time_weapon_stick_of_eternity_i00');
  1285. INSERT INTO `weapon` VALUES ('8929', 'Shadow Item: Inferno Staff', 'lrhand', 'true', '340', '3', '3', 'c', '135', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '101', '120', '0', '0', 'false', 'false', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.time_weapon_inferno_staff_i00');
  1286. INSERT INTO `weapon` VALUES ('8930', 'Shadow Item: Pa\'agrian Hammer', 'lrhand', 'true', '340', '3', '3', 'c', '135', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '101', '120', '0', '0', 'false', 'false', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.time_weapon_paagrio_hammer_i00');
  1287. INSERT INTO `weapon` VALUES ('8931', 'Shadow Item: Dark Screamer', 'rhand', 'true', '340', '3', '3', 'c', '122', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '76', '120', '0', '0', 'false', 'false', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.time_weapon_dark_screamer_i00');
  1288. INSERT INTO `weapon` VALUES ('8932', 'Shadow Item: Akat Long Bow', 'lrhand', 'true', '580', '9', '3', 'c', '316', '5', 'bow', '12', '-3.00000', '0', '0', '0', '227', '7', '84', '120', '0', '0', 'false', 'false', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.time_weapon_akat_long_bow_i00');
  1289. INSERT INTO `weapon` VALUES ('8933', 'Shadow Item: Pa\'agrian Sword', 'lrhand', 'true', '660', '3', '3', 'c', '169', '10', 'bigsword', '8', '0.00000', '0', '0', '0', '325', '0', '76', '120', '0', '0', 'false', 'false', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.time_weapon_sword_of_paagrio_i00');
  1290. INSERT INTO `weapon` VALUES ('8934', 'Shadow Item: Fisted Blade', 'lrhand', 'true', '500', '3', '3', 'c', '169', '5', 'dualfist', '4', '4.00000', '0', '0', '0', '325', '0', '76', '120', '0', '0', 'false', 'false', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.time_weapon_fist_blade_i00');
  1291. INSERT INTO `weapon` VALUES ('8935', 'Test Rapier', 'rhand', 'true', '1380', '3', '3', 'c', '156', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '83', '120', '0', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_monster_i00');
  1292. INSERT INTO `weapon` VALUES ('8937', 'Shadow Item: Stormbringer', 'lrhand', 'true', '780', '3', '3', 'c', '175', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '78', '120', '0', '0', 'false', 'false', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.time_weapon_dual_sword_i00');
  1293. INSERT INTO `weapon` VALUES ('8938', 'Damascus * Tallum Blade', 'lrhand', 'true', '1890', '1', '1', 'a', '305', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '121', '-1', '0', '2824', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dual_sword_i00');
  1294. INSERT INTO `weapon` VALUES ('8972', 'Shadow Item: Long Spear', 'lrhand', 'false', '707', '2', '2', 'none', '31', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '21', '600', '0', '0', 'false', 'false', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_long_spear_i00');
  1295. INSERT INTO `weapon` VALUES ('8973', 'Shadow Item: Falchion', 'rhand', 'false', '510', '2', '2', 'none', '31', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '21', '600', '0', '0', 'false', 'false', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_falchion_i00');
  1296. INSERT INTO `weapon` VALUES ('8974', 'Shadow Item: Iron Hammer', 'rhand', 'false', '617', '2', '2', 'none', '31', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '21', '600', '0', '0', 'false', 'false', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_iron_hammer_i00');
  1297. INSERT INTO `weapon` VALUES ('8975', 'Shadow Item: Voodoo Doll', 'rhand', 'false', '210', '2', '2', 'none', '25', '10', 'etc', '8', '0.00000', '0', '0', '0', '379', '0', '28', '600', '0', '0', 'false', 'false', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_voodoo_doll_i00');
  1298. INSERT INTO `weapon` VALUES ('8976', 'Shadow Item: Buzdygan', 'rhand', 'false', '600', '2', '2', 'none', '31', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '21', '600', '0', '0', 'false', 'false', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_buzdygan_i00');
  1299. INSERT INTO `weapon` VALUES ('8977', 'Shadow Item: Mage Staff', 'lrhand', 'false', '350', '2', '2', 'none', '30', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '28', '600', '0', '0', 'false', 'false', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_apprentices_staff_i00');
  1300. INSERT INTO `weapon` VALUES ('8978', 'Shadow Item: Sword Breaker', 'rhand', 'false', '370', '2', '2', 'none', '27', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '21', '600', '0', '0', 'false', 'false', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_sword_breaker_i00');
  1301. INSERT INTO `weapon` VALUES ('8979', 'Shadow Item: Viper\'s Fang', 'lrhand', 'false', '520', '2', '2', 'none', '38', '5', 'dualfist', '4', '4.00000', '0', '0', '0', '325', '0', '21', '600', '0', '0', 'false', 'false', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_vipers_canine_i00');
  1302. INSERT INTO `weapon` VALUES ('8980', 'Shadow Item: Composition Bow', 'lrhand', 'false', '627', '7', '2', 'none', '64', '5', 'bow', '12', '-3.00000', '0', '0', '0', '293', '3', '21', '600', '0', '0', 'false', 'false', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_composition_bow_i00');
  1303. INSERT INTO `weapon` VALUES ('8981', 'Shadow Item: Crucifix of Blessing', 'rhand', 'false', '207', '2', '2', 'none', '25', '10', 'etc', '8', '0.00000', '0', '0', '0', '379', '0', '28', '600', '0', '0', 'false', 'false', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_crucifix_of_blessing_i00');
  1304. INSERT INTO `weapon` VALUES ('8982', 'Shadow Item: Two Handed Sword', 'lrhand', 'true', '730', '2', '2', 'd', '78', '10', 'bigsword', '8', '0.00000', '0', '0', '0', '325', '0', '39', '600', '0', '0', 'false', 'false', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_two_handed_sword_i00');
  1305. INSERT INTO `weapon` VALUES ('8983', 'Shadow Item: Crimson Sword', 'rhand', 'true', '500', '2', '2', 'd', '64', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '39', '600', '0', '0', 'false', 'false', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_crimson_sword_i00');
  1306. INSERT INTO `weapon` VALUES ('8984', 'Shadow Item: Spiked Club', 'rhand', 'true', '590', '2', '2', 'd', '64', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '39', '600', '0', '0', 'false', 'false', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_spike_club_i00');
  1307. INSERT INTO `weapon` VALUES ('8985', 'Shadow Item: Staff of Magic', 'lrhand', 'true', '340', '2', '2', 'd', '62', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '52', '600', '0', '0', 'false', 'false', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_staff_of_magicpower_i00');
  1308. INSERT INTO `weapon` VALUES ('8986', 'Shadow Item: Kukuri', 'rhand', 'true', '360', '2', '2', 'd', '56', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '39', '600', '0', '0', 'false', 'false', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_kukuri_i00');
  1309. INSERT INTO `weapon` VALUES ('8987', 'Shadow Item: Dagger of Mana', 'rhand', 'true', '250', '2', '2', 'd', '45', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '52', '600', '0', '0', 'false', 'false', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dagger_of_mana_i00');
  1310. INSERT INTO `weapon` VALUES ('8988', 'Shadow Item: Triple-Edged Jamadhr', 'lrhand', 'true', '520', '2', '2', 'd', '78', '5', 'dualfist', '4', '4.00000', '0', '0', '0', '325', '0', '39', '600', '0', '0', 'false', 'false', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_triple-edged_jamadhr_i00');
  1311. INSERT INTO `weapon` VALUES ('8989', 'Shadow Item: Gastraphetes', 'lrhand', 'true', '620', '8', '2', 'd', '132', '5', 'bow', '12', '-3.00000', '0', '0', '0', '293', '4', '39', '600', '0', '0', 'false', 'false', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_gastraphetes_i00');
  1312. INSERT INTO `weapon` VALUES ('8990', 'Shadow Item: War Hammer', 'lrhand', 'true', '700', '2', '2', 'd', '64', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '39', '600', '0', '0', 'false', 'false', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_war_hammer_i00');
  1313. INSERT INTO `weapon` VALUES ('8991', 'Shadow Item: Sword of Delusion', 'rhand', 'true', '470', '3', '3', 'c', '139', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '76', '600', '0', '0', 'false', 'false', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_sword_of_delusion_i00');
  1314. INSERT INTO `weapon` VALUES ('8992', 'Shadow Item: Poleaxe', 'lrhand', 'true', '670', '3', '3', 'c', '139', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '76', '600', '0', '0', 'false', 'false', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_poleaxe_i00');
  1315. INSERT INTO `weapon` VALUES ('8993', 'Shadow Item: Stick of Eternity', 'rhand', 'true', '380', '3', '3', 'c', '111', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '101', '600', '0', '0', 'false', 'false', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_stick_of_eternity_i00');
  1316. INSERT INTO `weapon` VALUES ('8994', 'Shadow Item: Inferno Staff', 'lrhand', 'true', '340', '3', '3', 'c', '135', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '101', '600', '0', '0', 'false', 'false', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_inferno_staff_i00');
  1317. INSERT INTO `weapon` VALUES ('8995', 'Shadow Item: Pa\'agrian Hammer', 'lrhand', 'true', '340', '3', '3', 'c', '135', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '101', '600', '0', '0', 'false', 'false', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_paagrio_hammer_i00');
  1318. INSERT INTO `weapon` VALUES ('8996', 'Shadow Item: Dark Screamer', 'rhand', 'true', '340', '3', '3', 'c', '122', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '76', '600', '0', '0', 'false', 'false', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dark_screamer_i00');
  1319. INSERT INTO `weapon` VALUES ('8997', 'Shadow Item: Akat Long Bow', 'lrhand', 'true', '580', '9', '3', 'c', '316', '5', 'bow', '12', '-3.00000', '0', '0', '0', '227', '7', '84', '600', '0', '0', 'false', 'false', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_akat_long_bow_i00');
  1320. INSERT INTO `weapon` VALUES ('8998', 'Shadow Item: Pa\'agrian Sword', 'lrhand', 'true', '660', '3', '3', 'c', '169', '10', 'bigsword', '8', '0.00000', '0', '0', '0', '325', '0', '76', '600', '0', '0', 'false', 'false', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_sword_of_paagrio_i00');
  1321. INSERT INTO `weapon` VALUES ('8999', 'Shadow Item: Fisted Blade', 'lrhand', 'true', '500', '3', '3', 'c', '169', '5', 'dualfist', '4', '4.00000', '0', '0', '0', '325', '0', '76', '600', '0', '0', 'false', 'false', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_fist_blade_i00');
  1322. INSERT INTO `weapon` VALUES ('9000', 'Shadow Item: Stormbringer*Stormbringer', 'lrhand', 'true', '780', '3', '3', 'c', '175', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '78', '600', '0', '0', 'false', 'false', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dual_sword_i00');
  1323. INSERT INTO `weapon` VALUES ('9001', 'Shadow Item: Great Sword', 'lrhand', 'true', '650', '1', '1', 'b', '213', '10', 'bigsword', '8', '0.00000', '0', '0', '0', '325', '0', '91', '600', '0', '0', 'false', 'false', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_great_sword_i00');
  1324. INSERT INTO `weapon` VALUES ('9002', 'Shadow Item: Heavy War Axe', 'rhand', 'true', '540', '1', '1', 'b', '175', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '91', '600', '0', '0', 'false', 'false', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_heavy_war_axe_i00');
  1325. INSERT INTO `weapon` VALUES ('9003', 'Shadow Item: Sprite\'s Staff', 'lrhand', 'true', '320', '1', '1', 'b', '170', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '122', '600', '0', '0', 'false', 'false', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_sprites_staff_i00');
  1326. INSERT INTO `weapon` VALUES ('9004', 'Shadow Item: Keshanberk', 'rhand', 'true', '460', '1', '1', 'b', '175', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '91', '600', '0', '0', 'false', 'false', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_kshanberk_i00');
  1327. INSERT INTO `weapon` VALUES ('9005', 'Shadow Item: Sword of Valhalla', 'rhand', 'true', '300', '1', '1', 'b', '140', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '122', '600', '0', '0', 'false', 'false', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_sword_of_valhalla_i00');
  1328. INSERT INTO `weapon` VALUES ('9006', 'Shadow Item: Kris', 'rhand', 'true', '330', '1', '1', 'b', '153', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '91', '600', '0', '0', 'false', 'false', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_kris_i00');
  1329. INSERT INTO `weapon` VALUES ('9007', 'Shadow Item: Arthro Nail', 'lrhand', 'true', '480', '1', '1', 'b', '213', '5', 'dualfist', '4', '4.00000', '0', '0', '0', '325', '0', '91', '600', '0', '0', 'false', 'false', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_arthro_nail_i00');
  1330. INSERT INTO `weapon` VALUES ('9008', 'Shadow Item: Dark Elven Long Bow', 'lrhand', 'true', '580', '3', '1', 'b', '397', '5', 'bow', '12', '-3.00000', '0', '0', '0', '227', '8', '100', '600', '0', '0', 'false', 'false', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dark_elven_long_bow_i00');
  1331. INSERT INTO `weapon` VALUES ('9009', 'Shadow Item: Sword of Delusion*Sword of Delusion', 'lrhand', 'true', '720', '1', '1', 'b', '213', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '91', '600', '0', '0', 'false', 'false', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dual_sword_i00');
  1332. INSERT INTO `weapon` VALUES ('9010', 'Shadow Item: Great Axe', 'lrhand', 'true', '650', '1', '1', 'b', '175', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '91', '600', '0', '0', 'false', 'false', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_great_axe_i00');
  1333. INSERT INTO `weapon` VALUES ('9011', 'Shadow Item: Tallum Blade', 'rhand', 'true', '450', '1', '1', 'a', '213', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '107', '600', '0', '0', 'false', 'false', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_tallum_blade_i00');
  1334. INSERT INTO `weapon` VALUES ('9012', 'Shadow Item: Halberd', 'lrhand', 'true', '640', '1', '1', 'a', '213', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '107', '600', '0', '0', 'false', 'false', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_halbard_i00');
  1335. INSERT INTO `weapon` VALUES ('9013', 'Shadow Item: Dasparion\'s Staff', 'lrhand', 'true', '310', '1', '1', 'a', '207', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '143', '600', '0', '0', 'false', 'false', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dasparions_staff_i00');
  1336. INSERT INTO `weapon` VALUES ('9014', 'Shadow Item: Bloody Orchid', 'rhand', 'true', '320', '1', '1', 'a', '186', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '107', '600', '0', '0', 'false', 'false', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_bloody_orchid_i00');
  1337. INSERT INTO `weapon` VALUES ('9015', 'Shadow Item: Blood Tornado', 'lrhand', 'true', '460', '1', '1', 'a', '259', '5', 'dualfist', '4', '4.00000', '0', '0', '0', '325', '0', '107', '600', '0', '0', 'false', 'false', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_blood_tornado_i00');
  1338. INSERT INTO `weapon` VALUES ('9016', 'Shadow Item: Carnage Bow', 'lrhand', 'true', '560', '2', '1', 'a', '440', '5', 'bow', '12', '-3.00000', '0', '0', '0', '293', '9', '107', '600', '0', '0', 'false', 'false', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_carnium_bow_i00');
  1339. INSERT INTO `weapon` VALUES ('9017', 'Shadow Item: Keshanberk*Keshanberk', 'lrhand', 'true', '700', '1', '1', 'a', '259', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '107', '600', '0', '0', 'false', 'false', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dual_sword_i00');
  1340. INSERT INTO `weapon` VALUES ('9018', 'Shadow Item: Meteor Shower', 'rhand', 'true', '540', '1', '1', 'a', '213', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '107', '600', '0', '0', 'false', 'false', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_meteor_shower_i00');
  1341. INSERT INTO `weapon` VALUES ('9019', 'Shadow Item: Inferno Master', 'lrhand', 'true', '640', '1', '1', 'a', '259', '10', 'bigsword', '8', '0.00000', '0', '0', '0', '325', '0', '107', '600', '0', '0', 'false', 'false', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_inferno_master_i00');
  1342. INSERT INTO `weapon` VALUES ('9020', 'Shadow Item: Keshanberk*Damascus', 'lrhand', 'true', '693', '1', '1', 'a', '275', '10', 'dual', '8', '0.00000', '0', '0', '0', '325', '0', '112', '600', '0', '0', 'false', 'false', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dual_sword_i00');
  1343. INSERT INTO `weapon` VALUES ('9021', 'Shadow Item: Dragon Slayer', 'lrhand', 'true', '613', '1', '1', 'a', '282', '10', 'bigsword', '8', '0.00000', '0', '0', '0', '325', '0', '114', '600', '0', '0', 'false', 'false', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dragon_slayer_i00');
  1344. INSERT INTO `weapon` VALUES ('9022', 'Shadow Item: Sword of Miracles', 'rhand', 'true', '280', '1', '1', 'a', '186', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '152', '600', '0', '0', 'false', 'false', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_sword_of_miracle_i00');
  1345. INSERT INTO `weapon` VALUES ('9023', 'Shadow Item: Elysian', 'rhand', 'true', '527', '1', '1', 'a', '232', '20', 'blunt', '4', '4.00000', '0', '0', '0', '379', '0', '114', '600', '0', '0', 'false', 'false', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_elysian_i00');
  1346. INSERT INTO `weapon` VALUES ('9024', 'Shadow Item: Branch of the Mother Tree', 'lrhand', 'true', '300', '1', '1', 'a', '226', '20', 'bigblunt', '4', '4.00000', '0', '0', '0', '325', '0', '152', '600', '0', '0', 'false', 'false', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_worldtrees_branch_i00');
  1347. INSERT INTO `weapon` VALUES ('9025', 'Shadow Item: Soul Separator', 'rhand', 'true', '317', '1', '1', 'a', '203', '5', 'dagger', '12', '-3.00000', '0', '0', '0', '433', '0', '114', '600', '0', '0', 'false', 'false', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_soul_separator_i00');
  1348. INSERT INTO `weapon` VALUES ('9026', 'Shadow Item: Dragon Grinder', 'lrhand', 'true', '450', '1', '1', 'a', '282', '5', 'dualfist', '4', '4.00000', '0', '0', '0', '325', '0', '114', '600', '0', '0', 'false', 'false', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dragon_grinder_i00');
  1349. INSERT INTO `weapon` VALUES ('9027', 'Shadow Item: Soul Bow', 'lrhand', 'true', '553', '2', '1', 'a', '528', '5', 'bow', '12', '-3.00000', '0', '0', '0', '227', '10', '125', '600', '0', '0', 'false', 'false', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_soul_bow_i00');
  1350. INSERT INTO `weapon` VALUES ('9028', 'Shadow Item: Tallum Glaive', 'lrhand', 'true', '613', '1', '1', 'a', '232', '10', 'pole', '8', '-3.00000', '0', '0', '0', '325', '0', '114', '600', '0', '0', 'false', 'false', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_tallum_glaive_i00');
  1351. INSERT INTO `weapon` VALUES ('9029', 'Shadow Item: Dark Legion', 'rhand', 'true', '440', '1', '1', 'a', '232', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '114', '600', '0', '0', 'false', 'false', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_dark_legions_edge_i00');
  1352. INSERT INTO `weapon` VALUES ('9036', 'Shadow Item: Bone Shield', 'lhand', 'false', '460', '0', '0', 'none', '0', '0', 'none', '0', '0.00000', '-8', '90', '20', '0', '0', '0', '600', '0', '0', 'false', 'false', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.shield_bone_shield_i00');
  1353. INSERT INTO `weapon` VALUES ('9044', 'Shadow Item: Hoplon', 'lhand', 'true', '447', '0', '0', 'd', '0', '0', 'none', '0', '0.00000', '-8', '128', '20', '0', '0', '0', '600', '0', '0', 'false', 'false', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.shield_hoplon_i00');
  1354. INSERT INTO `weapon` VALUES ('9056', 'Shadow Item: Composite Shield', 'lhand', 'true', '410', '0', '0', 'c', '0', '0', 'none', '0', '0.00000', '-8', '190', '20', '0', '0', '0', '600', '0', '0', 'false', 'false', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.shield_composite_shield_i00');
  1355. INSERT INTO `weapon` VALUES ('9070', 'Shadow Item: Zubei\'s Shield', 'lhand', 'true', '403', '0', '0', 'b', '0', '0', 'none', '0', '0.00000', '-8', '216', '20', '0', '0', '0', '600', '0', '0', 'false', 'false', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.shield_shrnoens_shield_i00');
  1356. INSERT INTO `weapon` VALUES ('9084', 'Shadow Item: Dark Crystal Shield', 'lhand', 'true', '397', '0', '0', 'a', '0', '0', 'none', '0', '0.00000', '-8', '243', '20', '0', '0', '0', '600', '0', '0', 'false', 'false', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.shield_dark_crystal_shield_i00');
  1357. INSERT INTO `weapon` VALUES ('9129', 'Shadow Item: Shield of Nightmare', 'lhand', 'true', '400', '0', '0', 'a', '0', '0', 'none', '0', '0.00000', '-8', '256', '20', '0', '0', '0', '600', '0', '0', 'false', 'false', 'true', 'false', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.shield_shield_of_nightmare_i00');
  1358. INSERT INTO `weapon` VALUES ('9136', 'Sword of Valakas (1-Handed)', 'rhand', 'true', '1380', '3', '3', 'c', '156', '10', 'sword', '8', '0.00000', '0', '0', '0', '379', '0', '83', '-1', '0', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_monster_i00');
  1359. INSERT INTO `weapon` VALUES ('9137', 'Sword of Valakas (2-Handed)', 'lrhand', 'true', '2180', '2', '2', 'd', '78', '10', 'bigsword', '8', '0.00000', '0', '0', '0', '325', '0', '39', '-1', '0', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_monster_i00');
  1360. INSERT INTO `weapon` VALUES ('9140', 'Salvation Bow', 'lrhand', 'false', '900', '1', '1', 'none', '1', '1', 'bow', '12', '-3.00000', '0', '0', '0', '293', '1', '1', '-1', '0', '0', 'true', 'true', 'true', 'true', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_krono_bow_i00');
  1361. INSERT INTO `weapon` VALUES ('9141', 'Redemption Bow - Event Use', 'lrhand', 'false', '300', '1', '1', 'none', '1', '1', 'bow', '12', '-3.00000', '0', '0', '0', '293', '1', '1', '60', '0', '0', 'true', 'false', 'true', 'true', '3260', '1', '0', '0', '0', '0', '0', '0', '0', '0', 'icon.weapon_krono_bow_i00');
Advertisement
Add Comment
Please, Sign In to add comment