mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-11 21:01:29 +00:00
3977 lines
1.8 MiB
3977 lines
1.8 MiB
-- Drop tables to reload data
|
|
DROP VIEW IF EXISTS vwMercNpcTypes;
|
|
DROP TABLE IF EXISTS merc_spell_list_entries;
|
|
DROP TABLE IF EXISTS merc_spell_lists;
|
|
DROP TABLE IF EXISTS merc_armorinfo;
|
|
DROP TABLE IF EXISTS merc_weaponinfo;
|
|
DROP TABLE IF EXISTS merc_stats;
|
|
|
|
CREATE TABLE merc_stats (
|
|
merc_npc_type_id int(11) unsigned NOT NULL,
|
|
clientlevel tinyint(2) unsigned NOT NULL default '1',
|
|
level tinyint(2) unsigned NOT NULL default '1',
|
|
hp int(11) NOT NULL default '1',
|
|
mana int(11) NOT NULL default '0',
|
|
AC smallint(5) NOT NULL default '1',
|
|
ATK mediumint(9) NOT NULL default '1',
|
|
STR mediumint(8) unsigned NOT NULL default '75',
|
|
STA mediumint(8) unsigned NOT NULL default '75',
|
|
DEX mediumint(8) unsigned NOT NULL default '75',
|
|
AGI mediumint(8) unsigned NOT NULL default '75',
|
|
_INT mediumint(8) unsigned NOT NULL default '80',
|
|
WIS mediumint(8) unsigned NOT NULL default '80',
|
|
CHA mediumint(8) unsigned NOT NULL default '75',
|
|
MR smallint(5) NOT NULL default '15',
|
|
CR smallint(5) NOT NULL default '15',
|
|
DR smallint(5) NOT NULL default '15',
|
|
FR smallint(5) NOT NULL default '15',
|
|
PR smallint(5) NOT NULL default '15',
|
|
Corrup smallint(5) NOT NULL default '15',
|
|
mindmg int(10) unsigned NOT NULL default '1',
|
|
maxdmg int(10) unsigned NOT NULL default '1',
|
|
attack_count smallint(6) NOT NULL default '0',
|
|
attack_speed tinyint(3) NOT NULL default '0',
|
|
specialattks varchar(36) NOT NULL default '',
|
|
Accuracy mediumint(9) NOT NULL default '0',
|
|
hp_regen_rate int(11) unsigned NOT NULL default '1',
|
|
mana_regen_rate int(11) unsigned NOT NULL default '1',
|
|
runspeed float NOT NULL default '0',
|
|
spellscale float NOT NULL default '100',
|
|
healscale float NOT NULL default '100',
|
|
PRIMARY KEY (merc_npc_type_id, clientlevel)
|
|
);
|
|
|
|
CREATE TABLE merc_armorinfo (
|
|
id int(11) NOT NULL auto_increment,
|
|
merc_npc_type_id int(11) unsigned NOT NULL,
|
|
minlevel tinyint(2) unsigned NOT NULL default '1',
|
|
maxlevel tinyint(2) unsigned NOT NULL default '255',
|
|
texture tinyint(2) unsigned NOT NULL default '0',
|
|
helmtexture tinyint(2) unsigned NOT NULL default '0',
|
|
armortint_id int(10) unsigned NOT NULL default '0',
|
|
armortint_red tinyint(3) unsigned NOT NULL default '0',
|
|
armortint_green tinyint(3) unsigned NOT NULL default '0',
|
|
armortint_blue tinyint(3) unsigned NOT NULL default '0',
|
|
PRIMARY KEY (id)
|
|
);
|
|
|
|
CREATE TABLE merc_weaponinfo (
|
|
id int(11) NOT NULL auto_increment,
|
|
merc_npc_type_id int(11) NOT NULL,
|
|
minlevel tinyint(2) unsigned NOT NULL default '0',
|
|
maxlevel tinyint(2) unsigned NOT NULL default '0',
|
|
d_meele_texture1 int(10) unsigned NOT NULL default '0',
|
|
d_meele_texture2 int(10) unsigned NOT NULL default '0',
|
|
prim_melee_type tinyint(4) unsigned NOT NULL default '28',
|
|
sec_melee_type tinyint(4) unsigned NOT NULL default '28',
|
|
PRIMARY KEY (id)
|
|
);
|
|
|
|
create table merc_spell_lists
|
|
(
|
|
merc_spell_list_id int UNSIGNED NOT NULL AUTO_INCREMENT,
|
|
class_id int UNSIGNED NOT NULL,
|
|
proficiency_id tinyint UNSIGNED NOT NULL,
|
|
name varchar(50) NOT NULL,
|
|
PRIMARY KEY (merc_spell_list_id)
|
|
);
|
|
|
|
create table merc_spell_list_entries
|
|
(
|
|
merc_spell_list_entry_id int UNSIGNED NOT NULL AUTO_INCREMENT,
|
|
merc_spell_list_id int UNSIGNED NOT NULL,
|
|
spell_id int UNSIGNED NOT NULL,
|
|
spell_type int UNSIGNED NOT NULL default '0',
|
|
stance_id tinyint UNSIGNED NOT NULL default '0',
|
|
minlevel tinyint UNSIGNED NOT NULL default '1',
|
|
maxlevel tinyint UNSIGNED NOT NULL default '255',
|
|
slot tinyint NOT NULL default '-1',
|
|
procChance tinyint UNSIGNED NOT NULL default '0',
|
|
PRIMARY KEY (merc_spell_list_entry_id),
|
|
KEY FK_merc_spell_lists_1 (merc_spell_list_id),
|
|
CONSTRAINT FK_merc_spell_lists_1 FOREIGN KEY (merc_spell_list_id) REFERENCES merc_spell_lists (merc_spell_list_id)
|
|
);
|
|
|
|
CREATE VIEW vwMercNpcTypes AS
|
|
SELECT
|
|
ms.merc_npc_type_id,
|
|
'' AS name,
|
|
ms.clientlevel,
|
|
ms.level,
|
|
mtyp.race_id,
|
|
mstyp.class_id,
|
|
ms.hp,
|
|
ms.mana,
|
|
0 AS gender,
|
|
mai.texture,
|
|
mai.helmtexture,
|
|
ms.attack_speed,
|
|
ms.STR,
|
|
ms.STA,
|
|
ms.DEX,
|
|
ms.AGI,
|
|
ms._INT,
|
|
ms.WIS,
|
|
ms.CHA,
|
|
ms.MR,
|
|
ms.CR,
|
|
ms.DR,
|
|
ms.FR,
|
|
ms.PR,
|
|
ms.Corrup,
|
|
ms.mindmg,
|
|
ms.maxdmg,
|
|
ms.attack_count,
|
|
ms.specialattks AS npcspecialattks,
|
|
mwi.d_meele_texture1,
|
|
mwi.d_meele_texture2,
|
|
mwi.prim_melee_type,
|
|
mwi.sec_melee_type,
|
|
ms.runspeed,
|
|
ms.hp_regen_rate,
|
|
ms.mana_regen_rate,
|
|
1 AS bodytype,
|
|
mai.armortint_id,
|
|
mai.armortint_red,
|
|
mai.armortint_green,
|
|
mai.armortint_blue,
|
|
ms.AC,
|
|
ms.ATK,
|
|
ms.Accuracy,
|
|
ms.spellscale,
|
|
ms.healscale
|
|
FROM merc_stats ms
|
|
INNER JOIN merc_armorinfo mai
|
|
ON ms.merc_npc_type_id = mai.merc_npc_type_id
|
|
AND mai.minlevel <= ms.level AND mai.maxlevel >= ms.level
|
|
INNER JOIN merc_weaponinfo mwi
|
|
ON ms.merc_npc_type_id = mwi.merc_npc_type_id
|
|
AND mwi.minlevel <= ms.level AND mwi.maxlevel >= ms.level
|
|
INNER JOIN merc_templates mtem
|
|
ON mtem.merc_npc_type_id = ms.merc_npc_type_id
|
|
INNER JOIN merc_types mtyp
|
|
ON mtem.merc_type_id = mtyp.merc_type_id
|
|
INNER JOIN merc_subtypes mstyp
|
|
ON mtem.merc_subtype_id = mstyp.merc_subtype_id;
|
|
|
|
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 1), 1, 1, 50, 0, 35, 28, 66, 66, 66, 66, 75, 75, 66, 15, 15, 15, 15, 15, 15, 3, 10, 1, -18, '', 0, 13, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 2), 1, 1, 55, 0, 36, 29, 67, 67, 67, 67, 77, 77, 67, 18, 18, 18, 18, 18, 18, 3, 12, 1, -18, '', 0, 15, 0, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 3), 1, 1, 60, 0, 38, 29, 68, 68, 68, 68, 79, 79, 68, 21, 21, 21, 21, 21, 21, 4, 15, 1, -18, '', 0, 17, 0, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 4), 1, 1, 65, 0, 39, 30, 69, 69, 69, 69, 81, 81, 69, 24, 24, 24, 24, 24, 24, 4, 18, 1, -18, '', 0, 19, 0, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 5), 1, 1, 70, 0, 41, 30, 70, 70, 70, 70, 83, 83, 70, 27, 27, 27, 27, 27, 27, 5, 21, 1, -18, '', 0, 21, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 1), 1, 1, 85, 0, 43, 30, 71, 71, 71, 71, 95, 95, 71, 31, 31, 31, 31, 31, 31, 4, 17, 1, -18, '', 0, 23, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 2), 1, 1, 90, 0, 44, 31, 72, 72, 72, 72, 97, 97, 72, 34, 34, 34, 34, 34, 34, 5, 19, 1, -18, '', 0, 25, 0, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 3), 1, 1, 95, 0, 46, 31, 73, 73, 73, 73, 99, 99, 73, 37, 37, 37, 37, 37, 37, 5, 22, 1, -18, '', 0, 27, 0, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 4), 1, 1, 100, 0, 47, 32, 74, 74, 74, 74, 101, 101, 74, 40, 40, 40, 40, 40, 40, 6, 25, 1, -18, '', 0, 29, 0, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 5), 1, 1, 105, 0, 49, 32, 75, 75, 75, 75, 103, 103, 75, 43, 43, 43, 43, 43, 43, 6, 28, 1, -18, '', 0, 31, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 1), 1, 1, 43, 29, 27, 17, 56, 56, 56, 56, 106, 106, 56, 15, 15, 15, 15, 15, 15, 1, 8, 1, -18, '', 0, 8, 5, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 2), 1, 1, 46, 32, 28, 17, 57, 57, 57, 57, 109, 109, 57, 18, 18, 18, 18, 18, 18, 1, 10, 1, -18, '', 0, 9, 6, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 3), 1, 1, 49, 35, 29, 18, 58, 58, 58, 58, 112, 112, 58, 21, 21, 21, 21, 21, 21, 2, 11, 1, -18, '', 0, 10, 7, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 4), 1, 1, 52, 38, 30, 18, 59, 59, 59, 59, 115, 115, 59, 24, 24, 24, 24, 24, 24, 2, 13, 1, -18, '', 0, 11, 8, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 5), 1, 1, 55, 41, 31, 18, 60, 60, 60, 60, 118, 118, 60, 27, 27, 27, 27, 27, 27, 2, 14, 1, -18, '', 0, 12, 9, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 1), 1, 1, 73, 54, 33, 18, 61, 61, 61, 61, 131, 131, 61, 31, 31, 31, 31, 31, 31, 2, 13, 1, -18, '', 0, 14, 8, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 2), 1, 1, 76, 57, 34, 18, 62, 62, 62, 62, 134, 134, 62, 34, 34, 34, 34, 34, 34, 2, 14, 1, -18, '', 0, 15, 9, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 3), 1, 1, 79, 60, 35, 19, 63, 63, 63, 63, 137, 137, 63, 37, 37, 37, 37, 37, 37, 2, 15, 1, -18, '', 0, 16, 10, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 4), 1, 1, 82, 63, 36, 19, 64, 64, 64, 64, 140, 140, 64, 40, 40, 40, 40, 40, 40, 3, 17, 1, -18, '', 0, 17, 11, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 5), 1, 1, 85, 66, 37, 19, 65, 65, 65, 65, 143, 143, 65, 43, 43, 43, 43, 43, 43, 3, 18, 1, -18, '', 0, 18, 12, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 1), 1, 1, 44, 0, 20, 28, 66, 66, 66, 66, 75, 75, 66, 15, 15, 15, 15, 15, 15, 3, 9, 1, -18, '', 0, 11, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 2), 1, 1, 48, 0, 21, 29, 67, 67, 67, 67, 77, 77, 67, 18, 18, 18, 18, 18, 18, 3, 11, 1, -18, '', 0, 13, 0, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 3), 1, 1, 52, 0, 21, 29, 68, 68, 68, 68, 79, 79, 68, 21, 21, 21, 21, 21, 21, 4, 14, 1, -18, '', 0, 15, 0, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 4), 1, 1, 56, 0, 22, 30, 69, 69, 69, 69, 81, 81, 69, 24, 24, 24, 24, 24, 24, 4, 17, 1, -18, '', 0, 17, 0, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 5), 1, 1, 60, 0, 22, 30, 70, 70, 70, 70, 83, 83, 70, 27, 27, 27, 27, 27, 27, 5, 19, 1, -18, '', 0, 19, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 1), 1, 1, 74, 0, 25, 31, 71, 71, 71, 71, 95, 95, 71, 31, 31, 31, 31, 31, 31, 4, 15, 1, -18, '', 0, 19, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 2), 1, 1, 78, 0, 26, 32, 72, 72, 72, 72, 97, 97, 72, 34, 34, 34, 34, 34, 34, 5, 18, 1, -18, '', 0, 21, 0, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 3), 1, 1, 82, 0, 26, 32, 73, 73, 73, 73, 99, 99, 73, 37, 37, 37, 37, 37, 37, 5, 20, 1, -18, '', 0, 23, 0, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 4), 1, 1, 86, 0, 27, 33, 74, 74, 74, 74, 101, 101, 74, 40, 40, 40, 40, 40, 40, 6, 23, 1, -18, '', 0, 25, 0, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 5), 1, 1, 90, 0, 27, 33, 75, 75, 75, 75, 103, 103, 75, 43, 43, 43, 43, 43, 43, 6, 26, 1, -18, '', 0, 27, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 1), 1, 1, 37, 29, 13, 8, 56, 56, 56, 56, 106, 106, 56, 15, 15, 15, 15, 15, 15, 1, 8, 1, -18, '', 0, 7, 5, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 2), 1, 1, 39, 32, 13, 8, 57, 57, 57, 57, 109, 109, 57, 18, 18, 18, 18, 18, 18, 1, 10, 1, -18, '', 0, 8, 6, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 3), 1, 1, 41, 35, 14, 8, 58, 58, 58, 58, 112, 112, 58, 21, 21, 21, 21, 21, 21, 2, 11, 1, -18, '', 0, 9, 7, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 4), 1, 1, 43, 38, 14, 9, 59, 59, 59, 59, 115, 115, 59, 24, 24, 24, 24, 24, 24, 2, 13, 1, -18, '', 0, 10, 8, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 5), 1, 1, 45, 41, 14, 9, 60, 60, 60, 60, 118, 118, 60, 27, 27, 27, 27, 27, 27, 2, 14, 1, -18, '', 0, 11, 9, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 1), 1, 1, 62, 54, 16, 9, 61, 61, 61, 61, 131, 131, 61, 31, 31, 31, 31, 31, 31, 2, 13, 1, -18, '', 0, 12, 8, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 2), 1, 1, 64, 57, 16, 9, 62, 62, 62, 62, 134, 134, 62, 34, 34, 34, 34, 34, 34, 2, 14, 1, -18, '', 0, 13, 9, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 3), 1, 1, 66, 60, 17, 9, 63, 63, 63, 63, 137, 137, 63, 37, 37, 37, 37, 37, 37, 2, 15, 1, -18, '', 0, 14, 10, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 4), 1, 1, 68, 63, 17, 10, 64, 64, 64, 64, 140, 140, 64, 40, 40, 40, 40, 40, 40, 3, 17, 1, -18, '', 0, 15, 11, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 5), 1, 1, 70, 66, 17, 10, 65, 65, 65, 65, 143, 143, 65, 43, 43, 43, 43, 43, 43, 3, 18, 1, -18, '', 0, 16, 12, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 1), 2, 2, 90, 0, 69, 56, 67, 67, 67, 67, 78, 78, 67, 17, 17, 17, 17, 17, 17, 3, 11, 1, -18, '', 0, 13, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 2), 2, 2, 100, 0, 72, 57, 68, 68, 68, 68, 80, 80, 68, 20, 20, 20, 20, 20, 20, 4, 14, 1, -18, '', 0, 15, 0, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 3), 2, 2, 110, 0, 75, 58, 69, 69, 69, 69, 82, 82, 69, 23, 23, 23, 23, 23, 23, 4, 17, 1, -18, '', 0, 17, 0, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 4), 2, 2, 120, 0, 78, 59, 70, 70, 70, 70, 84, 84, 70, 26, 26, 26, 26, 26, 26, 5, 19, 1, -18, '', 0, 19, 0, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 5), 2, 2, 130, 0, 81, 60, 71, 71, 71, 71, 86, 86, 71, 29, 29, 29, 29, 29, 29, 5, 22, 1, -18, '', 0, 21, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 1), 2, 2, 160, 0, 85, 61, 73, 73, 73, 73, 98, 98, 73, 35, 35, 35, 35, 35, 35, 4, 18, 1, -18, '', 0, 23, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 2), 2, 2, 170, 0, 88, 62, 74, 74, 74, 74, 100, 100, 74, 38, 38, 38, 38, 38, 38, 5, 21, 1, -18, '', 0, 25, 0, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 3), 2, 2, 180, 0, 91, 63, 75, 75, 75, 75, 102, 102, 75, 41, 41, 41, 41, 41, 41, 5, 24, 1, -18, '', 0, 27, 0, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 4), 2, 2, 190, 0, 94, 64, 76, 76, 76, 76, 104, 104, 76, 44, 44, 44, 44, 44, 44, 6, 26, 1, -18, '', 0, 29, 0, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 5), 2, 2, 200, 0, 97, 65, 77, 77, 77, 77, 106, 106, 77, 47, 47, 47, 47, 47, 47, 6, 29, 1, -18, '', 0, 31, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 1), 2, 2, 76, 59, 54, 33, 57, 57, 57, 57, 110, 110, 57, 17, 17, 17, 17, 17, 17, 1, 10, 1, -18, '', 0, 8, 5, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 2), 2, 2, 82, 65, 56, 34, 58, 58, 58, 58, 113, 113, 58, 20, 20, 20, 20, 20, 20, 2, 11, 1, -18, '', 0, 9, 6, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 3), 2, 2, 88, 71, 58, 35, 59, 59, 59, 59, 116, 116, 59, 23, 23, 23, 23, 23, 23, 2, 13, 1, -18, '', 0, 10, 7, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 4), 2, 2, 94, 77, 60, 35, 60, 60, 60, 60, 119, 119, 60, 26, 26, 26, 26, 26, 26, 2, 14, 1, -18, '', 0, 11, 8, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 5), 2, 2, 100, 83, 62, 36, 61, 61, 61, 61, 122, 122, 61, 29, 29, 29, 29, 29, 29, 2, 15, 1, -18, '', 0, 12, 9, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 1), 2, 2, 136, 109, 66, 36, 63, 63, 63, 63, 135, 135, 63, 35, 35, 35, 35, 35, 35, 2, 14, 1, -18, '', 0, 14, 8, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 2), 2, 2, 142, 115, 68, 37, 64, 64, 64, 64, 138, 138, 64, 38, 38, 38, 38, 38, 38, 2, 15, 1, -18, '', 0, 15, 9, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 3), 2, 2, 148, 121, 70, 38, 65, 65, 65, 65, 141, 141, 65, 41, 41, 41, 41, 41, 41, 3, 17, 1, -18, '', 0, 16, 10, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 4), 2, 2, 154, 127, 72, 38, 66, 66, 66, 66, 144, 144, 66, 44, 44, 44, 44, 44, 44, 3, 18, 1, -18, '', 0, 17, 11, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 5), 2, 2, 160, 133, 74, 39, 67, 67, 67, 67, 147, 147, 67, 47, 47, 47, 47, 47, 47, 3, 20, 1, -18, '', 0, 18, 12, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 1), 2, 2, 78, 0, 41, 57, 67, 67, 67, 67, 78, 78, 67, 17, 17, 17, 17, 17, 17, 3, 10, 1, -18, '', 0, 11, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 2), 2, 2, 86, 0, 42, 58, 68, 68, 68, 68, 80, 80, 68, 20, 20, 20, 20, 20, 20, 4, 13, 1, -18, '', 0, 13, 0, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 3), 2, 2, 94, 0, 43, 59, 69, 69, 69, 69, 82, 82, 69, 23, 23, 23, 23, 23, 23, 4, 15, 1, -18, '', 0, 15, 0, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 4), 2, 2, 102, 0, 44, 60, 70, 70, 70, 70, 84, 84, 70, 26, 26, 26, 26, 26, 26, 5, 18, 1, -18, '', 0, 17, 0, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 5), 2, 2, 110, 0, 45, 61, 71, 71, 71, 71, 86, 86, 71, 29, 29, 29, 29, 29, 29, 5, 20, 1, -18, '', 0, 19, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 1), 2, 2, 138, 0, 51, 63, 73, 73, 73, 73, 98, 98, 73, 35, 35, 35, 35, 35, 35, 4, 17, 1, -18, '', 0, 19, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 2), 2, 2, 146, 0, 52, 64, 74, 74, 74, 74, 100, 100, 74, 38, 38, 38, 38, 38, 38, 5, 19, 1, -18, '', 0, 21, 0, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 3), 2, 2, 154, 0, 53, 65, 75, 75, 75, 75, 102, 102, 75, 41, 41, 41, 41, 41, 41, 5, 22, 1, -18, '', 0, 23, 0, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 4), 2, 2, 162, 0, 54, 66, 76, 76, 76, 76, 104, 104, 76, 44, 44, 44, 44, 44, 44, 6, 24, 1, -18, '', 0, 25, 0, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 5), 2, 2, 170, 0, 55, 67, 77, 77, 77, 77, 106, 106, 77, 47, 47, 47, 47, 47, 47, 6, 27, 1, -18, '', 0, 27, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 1), 2, 2, 64, 59, 26, 16, 57, 57, 57, 57, 110, 110, 57, 17, 17, 17, 17, 17, 17, 1, 10, 1, -18, '', 0, 7, 5, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 2), 2, 2, 68, 65, 27, 17, 58, 58, 58, 58, 113, 113, 58, 20, 20, 20, 20, 20, 20, 2, 11, 1, -18, '', 0, 8, 6, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 3), 2, 2, 72, 71, 28, 17, 59, 59, 59, 59, 116, 116, 59, 23, 23, 23, 23, 23, 23, 2, 13, 1, -18, '', 0, 9, 7, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 4), 2, 2, 76, 77, 28, 18, 60, 60, 60, 60, 119, 119, 60, 26, 26, 26, 26, 26, 26, 2, 14, 1, -18, '', 0, 10, 8, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 5), 2, 2, 80, 83, 29, 18, 61, 61, 61, 61, 122, 122, 61, 29, 29, 29, 29, 29, 29, 2, 15, 1, -18, '', 0, 11, 9, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 1), 2, 2, 114, 109, 32, 18, 63, 63, 63, 63, 135, 135, 63, 35, 35, 35, 35, 35, 35, 2, 14, 1, -18, '', 0, 12, 8, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 2), 2, 2, 118, 115, 33, 19, 64, 64, 64, 64, 138, 138, 64, 38, 38, 38, 38, 38, 38, 2, 15, 1, -18, '', 0, 13, 9, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 3), 2, 2, 122, 121, 34, 19, 65, 65, 65, 65, 141, 141, 65, 41, 41, 41, 41, 41, 41, 3, 17, 1, -18, '', 0, 14, 10, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 4), 2, 2, 126, 127, 34, 20, 66, 66, 66, 66, 144, 144, 66, 44, 44, 44, 44, 44, 44, 3, 18, 1, -18, '', 0, 15, 11, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 5), 2, 2, 130, 133, 35, 20, 67, 67, 67, 67, 147, 147, 67, 47, 47, 47, 47, 47, 47, 3, 20, 1, -18, '', 0, 16, 12, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 1), 3, 3, 130, 0, 104, 84, 67, 67, 67, 67, 81, 81, 67, 19, 19, 19, 19, 19, 19, 3, 12, 1, -18, '', 0, 14, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 2), 3, 3, 145, 0, 108, 86, 68, 68, 68, 68, 83, 83, 68, 22, 22, 22, 22, 22, 22, 4, 15, 1, -18, '', 0, 16, 0, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 3), 3, 3, 160, 0, 113, 87, 69, 69, 69, 69, 85, 85, 69, 25, 25, 25, 25, 25, 25, 4, 18, 1, -18, '', 0, 18, 0, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 4), 3, 3, 175, 0, 117, 89, 70, 70, 70, 70, 87, 87, 70, 28, 28, 28, 28, 28, 28, 5, 21, 1, -18, '', 0, 20, 0, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 5), 3, 3, 190, 0, 122, 90, 71, 71, 71, 71, 89, 89, 71, 31, 31, 31, 31, 31, 31, 5, 24, 1, -18, '', 0, 22, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 1), 3, 3, 235, 0, 128, 91, 73, 73, 73, 73, 101, 101, 73, 37, 37, 37, 37, 37, 37, 5, 19, 1, -18, '', 0, 24, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 2), 3, 3, 250, 0, 132, 93, 74, 74, 74, 74, 103, 103, 74, 40, 40, 40, 40, 40, 40, 5, 22, 1, -18, '', 0, 26, 0, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 3), 3, 3, 265, 0, 137, 94, 75, 75, 75, 75, 105, 105, 75, 43, 43, 43, 43, 43, 43, 6, 25, 1, -18, '', 0, 28, 0, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 4), 3, 3, 280, 0, 141, 96, 76, 76, 76, 76, 107, 107, 76, 46, 46, 46, 46, 46, 46, 6, 28, 1, -18, '', 0, 30, 0, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 5), 3, 3, 295, 0, 146, 97, 77, 77, 77, 77, 109, 109, 77, 49, 49, 49, 49, 49, 49, 7, 31, 1, -18, '', 0, 32, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 1), 3, 3, 109, 91, 81, 51, 57, 57, 57, 57, 113, 113, 57, 19, 19, 19, 19, 19, 19, 2, 11, 1, -18, '', 0, 8, 5, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 2), 3, 3, 118, 100, 84, 52, 58, 58, 58, 58, 116, 116, 58, 22, 22, 22, 22, 22, 22, 2, 13, 1, -18, '', 0, 9, 6, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 3), 3, 3, 127, 109, 87, 53, 59, 59, 59, 59, 119, 119, 59, 25, 25, 25, 25, 25, 25, 2, 14, 1, -18, '', 0, 10, 7, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 4), 3, 3, 136, 118, 90, 54, 60, 60, 60, 60, 122, 122, 60, 28, 28, 28, 28, 28, 28, 2, 15, 1, -18, '', 0, 11, 8, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 5), 3, 3, 145, 127, 93, 55, 61, 61, 61, 61, 125, 125, 61, 31, 31, 31, 31, 31, 31, 3, 17, 1, -18, '', 0, 12, 9, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 1), 3, 3, 199, 166, 99, 55, 63, 63, 63, 63, 138, 138, 63, 37, 37, 37, 37, 37, 37, 2, 15, 1, -18, '', 0, 14, 8, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 2), 3, 3, 208, 175, 102, 56, 64, 64, 64, 64, 141, 141, 64, 40, 40, 40, 40, 40, 40, 3, 17, 1, -18, '', 0, 15, 9, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 3), 3, 3, 217, 184, 105, 57, 65, 65, 65, 65, 144, 144, 65, 43, 43, 43, 43, 43, 43, 3, 18, 1, -18, '', 0, 16, 10, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 4), 3, 3, 226, 193, 108, 58, 66, 66, 66, 66, 147, 147, 66, 46, 46, 46, 46, 46, 46, 3, 20, 1, -18, '', 0, 17, 11, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 5), 3, 3, 235, 202, 111, 59, 67, 67, 67, 67, 150, 150, 67, 49, 49, 49, 49, 49, 49, 3, 21, 1, -18, '', 0, 18, 12, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 1), 3, 3, 112, 0, 61, 85, 67, 67, 67, 67, 81, 81, 67, 19, 19, 19, 19, 19, 19, 3, 11, 1, -18, '', 0, 12, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 2), 3, 3, 124, 0, 63, 87, 68, 68, 68, 68, 83, 83, 68, 22, 22, 22, 22, 22, 22, 4, 14, 1, -18, '', 0, 14, 0, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 3), 3, 3, 136, 0, 64, 88, 69, 69, 69, 69, 85, 85, 69, 25, 25, 25, 25, 25, 25, 4, 17, 1, -18, '', 0, 16, 0, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 4), 3, 3, 148, 0, 66, 90, 70, 70, 70, 70, 87, 87, 70, 28, 28, 28, 28, 28, 28, 5, 19, 1, -18, '', 0, 18, 0, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 5), 3, 3, 160, 0, 67, 91, 71, 71, 71, 71, 89, 89, 71, 31, 31, 31, 31, 31, 31, 5, 22, 1, -18, '', 0, 20, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 1), 3, 3, 202, 0, 76, 94, 73, 73, 73, 73, 101, 101, 73, 37, 37, 37, 37, 37, 37, 5, 18, 1, -18, '', 0, 20, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 2), 3, 3, 214, 0, 78, 96, 74, 74, 74, 74, 103, 103, 74, 40, 40, 40, 40, 40, 40, 5, 20, 1, -18, '', 0, 22, 0, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 3), 3, 3, 226, 0, 79, 97, 75, 75, 75, 75, 105, 105, 75, 43, 43, 43, 43, 43, 43, 6, 23, 1, -18, '', 0, 24, 0, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 4), 3, 3, 238, 0, 81, 99, 76, 76, 76, 76, 107, 107, 76, 46, 46, 46, 46, 46, 46, 6, 26, 1, -18, '', 0, 26, 0, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 5), 3, 3, 250, 0, 82, 100, 77, 77, 77, 77, 109, 109, 77, 49, 49, 49, 49, 49, 49, 7, 28, 1, -18, '', 0, 28, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 1), 3, 3, 91, 91, 40, 24, 57, 57, 57, 57, 113, 113, 57, 19, 19, 19, 19, 19, 19, 2, 11, 1, -18, '', 0, 7, 5, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 2), 3, 3, 97, 100, 41, 25, 58, 58, 58, 58, 116, 116, 58, 22, 22, 22, 22, 22, 22, 2, 13, 1, -18, '', 0, 8, 6, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 3), 3, 3, 103, 109, 42, 26, 59, 59, 59, 59, 119, 119, 59, 25, 25, 25, 25, 25, 25, 2, 14, 1, -18, '', 0, 9, 7, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 4), 3, 3, 109, 118, 43, 27, 60, 60, 60, 60, 122, 122, 60, 28, 28, 28, 28, 28, 28, 2, 15, 1, -18, '', 0, 10, 8, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 5), 3, 3, 115, 127, 44, 27, 61, 61, 61, 61, 125, 125, 61, 31, 31, 31, 31, 31, 31, 3, 17, 1, -18, '', 0, 11, 9, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 1), 3, 3, 166, 166, 49, 27, 63, 63, 63, 63, 138, 138, 63, 37, 37, 37, 37, 37, 37, 2, 15, 1, -18, '', 0, 12, 8, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 2), 3, 3, 172, 175, 50, 28, 64, 64, 64, 64, 141, 141, 64, 40, 40, 40, 40, 40, 40, 3, 17, 1, -18, '', 0, 13, 9, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 3), 3, 3, 178, 184, 51, 29, 65, 65, 65, 65, 144, 144, 65, 43, 43, 43, 43, 43, 43, 3, 18, 1, -18, '', 0, 14, 10, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 4), 3, 3, 184, 193, 52, 30, 66, 66, 66, 66, 147, 147, 66, 46, 46, 46, 46, 46, 46, 3, 20, 1, -18, '', 0, 15, 11, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 5), 3, 3, 190, 202, 53, 30, 67, 67, 67, 67, 150, 150, 67, 49, 49, 49, 49, 49, 49, 3, 21, 1, -18, '', 0, 16, 12, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 1), 4, 4, 170, 0, 138, 112, 68, 68, 68, 68, 84, 84, 68, 22, 22, 22, 22, 22, 22, 4, 14, 1, -18, '', 0, 14, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 2), 4, 4, 190, 0, 144, 114, 69, 69, 69, 69, 86, 86, 69, 26, 26, 26, 26, 26, 26, 4, 17, 1, -18, '', 0, 16, 0, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 3), 4, 4, 210, 0, 150, 116, 70, 70, 70, 70, 88, 88, 70, 30, 30, 30, 30, 30, 30, 5, 19, 1, -18, '', 0, 18, 0, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 4), 4, 4, 230, 0, 156, 118, 71, 71, 71, 71, 90, 90, 71, 34, 34, 34, 34, 34, 34, 5, 22, 1, -18, '', 0, 20, 0, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 5), 4, 4, 250, 0, 162, 120, 72, 72, 72, 72, 92, 92, 72, 38, 38, 38, 38, 38, 38, 6, 25, 1, -18, '', 0, 22, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 1), 4, 4, 310, 0, 170, 122, 75, 75, 75, 75, 104, 104, 75, 40, 40, 40, 40, 40, 40, 5, 21, 1, -18, '', 0, 24, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 2), 4, 4, 330, 0, 176, 124, 76, 76, 76, 76, 106, 106, 76, 44, 44, 44, 44, 44, 44, 5, 24, 1, -18, '', 0, 26, 0, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 3), 4, 4, 350, 0, 182, 126, 77, 77, 77, 77, 108, 108, 77, 48, 48, 48, 48, 48, 48, 6, 26, 1, -18, '', 0, 28, 0, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 4), 4, 4, 370, 0, 188, 128, 78, 78, 78, 78, 110, 110, 78, 52, 52, 52, 52, 52, 52, 6, 29, 1, -18, '', 0, 30, 0, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 5), 4, 4, 390, 0, 194, 130, 79, 79, 79, 79, 112, 112, 79, 56, 56, 56, 56, 56, 56, 7, 32, 1, -18, '', 0, 32, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 1), 4, 4, 142, 125, 108, 67, 58, 58, 58, 58, 117, 117, 58, 22, 22, 22, 22, 22, 22, 2, 13, 1, -18, '', 0, 9, 5, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 2), 4, 4, 154, 137, 112, 68, 59, 59, 59, 59, 120, 120, 59, 26, 26, 26, 26, 26, 26, 2, 14, 1, -18, '', 0, 10, 6, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 3), 4, 4, 166, 149, 116, 70, 60, 60, 60, 60, 123, 123, 60, 30, 30, 30, 30, 30, 30, 2, 15, 1, -18, '', 0, 11, 7, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 4), 4, 4, 178, 161, 120, 71, 61, 61, 61, 61, 126, 126, 61, 34, 34, 34, 34, 34, 34, 3, 17, 1, -18, '', 0, 12, 8, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 5), 4, 4, 190, 173, 124, 72, 62, 62, 62, 62, 129, 129, 62, 38, 38, 38, 38, 38, 38, 3, 18, 1, -18, '', 0, 13, 9, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 1), 4, 4, 262, 225, 132, 73, 65, 65, 65, 65, 142, 142, 65, 40, 40, 40, 40, 40, 40, 3, 17, 1, -18, '', 0, 15, 8, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 2), 4, 4, 274, 237, 136, 74, 66, 66, 66, 66, 145, 145, 66, 44, 44, 44, 44, 44, 44, 3, 18, 1, -18, '', 0, 16, 9, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 3), 4, 4, 286, 249, 140, 76, 67, 67, 67, 67, 148, 148, 67, 48, 48, 48, 48, 48, 48, 3, 20, 1, -18, '', 0, 17, 10, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 4), 4, 4, 298, 261, 144, 77, 68, 68, 68, 68, 151, 151, 68, 52, 52, 52, 52, 52, 52, 3, 21, 1, -18, '', 0, 18, 11, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 5), 4, 4, 310, 273, 148, 78, 69, 69, 69, 69, 154, 154, 69, 56, 56, 56, 56, 56, 56, 4, 22, 1, -18, '', 0, 19, 12, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 1), 4, 4, 146, 0, 82, 114, 68, 68, 68, 68, 84, 84, 68, 22, 22, 22, 22, 22, 22, 4, 13, 1, -18, '', 0, 12, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 2), 4, 4, 162, 0, 84, 116, 69, 69, 69, 69, 86, 86, 69, 26, 26, 26, 26, 26, 26, 4, 15, 1, -18, '', 0, 14, 0, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 3), 4, 4, 178, 0, 86, 118, 70, 70, 70, 70, 88, 88, 70, 30, 30, 30, 30, 30, 30, 5, 18, 1, -18, '', 0, 16, 0, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 4), 4, 4, 194, 0, 88, 120, 71, 71, 71, 71, 90, 90, 71, 34, 34, 34, 34, 34, 34, 5, 20, 1, -18, '', 0, 18, 0, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 5), 4, 4, 210, 0, 90, 122, 72, 72, 72, 72, 92, 92, 72, 38, 38, 38, 38, 38, 38, 6, 23, 1, -18, '', 0, 20, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 1), 4, 4, 266, 0, 102, 126, 75, 75, 75, 75, 104, 104, 75, 40, 40, 40, 40, 40, 40, 5, 19, 1, -18, '', 0, 20, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 2), 4, 4, 282, 0, 104, 128, 76, 76, 76, 76, 106, 106, 76, 44, 44, 44, 44, 44, 44, 5, 22, 1, -18, '', 0, 22, 0, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 3), 4, 4, 298, 0, 106, 130, 77, 77, 77, 77, 108, 108, 77, 48, 48, 48, 48, 48, 48, 6, 24, 1, -18, '', 0, 24, 0, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 4), 4, 4, 314, 0, 108, 132, 78, 78, 78, 78, 110, 110, 78, 52, 52, 52, 52, 52, 52, 6, 27, 1, -18, '', 0, 26, 0, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 5), 4, 4, 330, 0, 110, 134, 79, 79, 79, 79, 112, 112, 79, 56, 56, 56, 56, 56, 56, 7, 30, 1, -18, '', 0, 28, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 1), 4, 4, 118, 125, 53, 33, 58, 58, 58, 58, 117, 117, 58, 22, 22, 22, 22, 22, 22, 2, 13, 1, -18, '', 0, 8, 5, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 2), 4, 4, 126, 137, 54, 34, 59, 59, 59, 59, 120, 120, 59, 26, 26, 26, 26, 26, 26, 2, 14, 1, -18, '', 0, 9, 6, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 3), 4, 4, 134, 149, 56, 35, 60, 60, 60, 60, 123, 123, 60, 30, 30, 30, 30, 30, 30, 2, 15, 1, -18, '', 0, 10, 7, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 4), 4, 4, 142, 161, 57, 36, 61, 61, 61, 61, 126, 126, 61, 34, 34, 34, 34, 34, 34, 3, 17, 1, -18, '', 0, 11, 8, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 5), 4, 4, 150, 173, 58, 37, 62, 62, 62, 62, 129, 129, 62, 38, 38, 38, 38, 38, 38, 3, 18, 1, -18, '', 0, 12, 9, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 1), 4, 4, 218, 225, 65, 37, 65, 65, 65, 65, 142, 142, 65, 40, 40, 40, 40, 40, 40, 3, 17, 1, -18, '', 0, 13, 8, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 2), 4, 4, 226, 237, 66, 38, 66, 66, 66, 66, 145, 145, 66, 44, 44, 44, 44, 44, 44, 3, 18, 1, -18, '', 0, 14, 9, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 3), 4, 4, 234, 249, 68, 39, 67, 67, 67, 67, 148, 148, 67, 48, 48, 48, 48, 48, 48, 3, 20, 1, -18, '', 0, 15, 10, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 4), 4, 4, 242, 261, 69, 40, 68, 68, 68, 68, 151, 151, 68, 52, 52, 52, 52, 52, 52, 3, 21, 1, -18, '', 0, 16, 11, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 5), 4, 4, 250, 273, 70, 41, 69, 69, 69, 69, 154, 154, 69, 56, 56, 56, 56, 56, 56, 4, 22, 1, -18, '', 0, 17, 12, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 1), 5, 5, 211, 0, 173, 140, 69, 69, 69, 69, 87, 87, 69, 24, 24, 24, 24, 24, 24, 4, 15, 1, -18, '', 0, 14, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 2), 5, 5, 236, 0, 180, 143, 70, 70, 70, 70, 89, 89, 70, 28, 28, 28, 28, 28, 28, 4, 18, 1, -18, '', 0, 16, 0, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 3), 5, 5, 261, 0, 188, 145, 71, 71, 71, 71, 91, 91, 71, 32, 32, 32, 32, 32, 32, 5, 21, 1, -18, '', 0, 18, 0, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 4), 5, 5, 286, 0, 195, 148, 72, 72, 72, 72, 93, 93, 72, 36, 36, 36, 36, 36, 36, 5, 24, 1, -18, '', 0, 20, 0, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 5), 5, 5, 311, 0, 203, 150, 73, 73, 73, 73, 95, 95, 73, 40, 40, 40, 40, 40, 40, 6, 26, 1, -18, '', 0, 22, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 1), 5, 5, 386, 0, 213, 152, 76, 76, 76, 76, 107, 107, 76, 44, 44, 44, 44, 44, 44, 5, 22, 1, -18, '', 0, 24, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 2), 5, 5, 411, 0, 220, 155, 77, 77, 77, 77, 109, 109, 77, 48, 48, 48, 48, 48, 48, 6, 25, 1, -18, '', 0, 26, 0, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 3), 5, 5, 436, 0, 228, 157, 78, 78, 78, 78, 111, 111, 78, 52, 52, 52, 52, 52, 52, 6, 28, 1, -18, '', 0, 28, 0, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 4), 5, 5, 461, 0, 235, 160, 79, 79, 79, 79, 113, 113, 79, 56, 56, 56, 56, 56, 56, 7, 31, 1, -18, '', 0, 30, 0, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 5), 5, 5, 486, 0, 243, 162, 80, 80, 80, 80, 115, 115, 80, 60, 60, 60, 60, 60, 60, 7, 33, 1, -18, '', 0, 32, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 1), 5, 5, 176, 160, 135, 84, 59, 59, 59, 59, 120, 120, 59, 24, 24, 24, 24, 24, 24, 2, 14, 1, -18, '', 0, 9, 6, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 2), 5, 5, 191, 175, 140, 86, 60, 60, 60, 60, 123, 123, 60, 28, 28, 28, 28, 28, 28, 2, 15, 1, -18, '', 0, 10, 7, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 3), 5, 5, 206, 190, 145, 88, 61, 61, 61, 61, 126, 126, 61, 32, 32, 32, 32, 32, 32, 3, 17, 1, -18, '', 0, 11, 8, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 4), 5, 5, 221, 205, 150, 89, 62, 62, 62, 62, 129, 129, 62, 36, 36, 36, 36, 36, 36, 3, 18, 1, -18, '', 0, 12, 9, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 5), 5, 5, 236, 220, 155, 91, 63, 63, 63, 63, 132, 132, 63, 40, 40, 40, 40, 40, 40, 3, 20, 1, -18, '', 0, 13, 10, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 1), 5, 5, 326, 285, 165, 91, 66, 66, 66, 66, 145, 145, 66, 44, 44, 44, 44, 44, 44, 3, 18, 1, -18, '', 0, 15, 9, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 2), 5, 5, 341, 300, 170, 93, 67, 67, 67, 67, 148, 148, 67, 48, 48, 48, 48, 48, 48, 3, 20, 1, -18, '', 0, 16, 10, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 3), 5, 5, 356, 315, 175, 95, 68, 68, 68, 68, 151, 151, 68, 52, 52, 52, 52, 52, 52, 3, 21, 1, -18, '', 0, 17, 11, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 4), 5, 5, 371, 330, 180, 96, 69, 69, 69, 69, 154, 154, 69, 56, 56, 56, 56, 56, 56, 4, 22, 1, -18, '', 0, 18, 12, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 5), 5, 5, 386, 345, 185, 98, 70, 70, 70, 70, 157, 157, 70, 60, 60, 60, 60, 60, 60, 4, 24, 1, -18, '', 0, 19, 13, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 1), 5, 5, 181, 0, 102, 142, 69, 69, 69, 69, 87, 87, 69, 24, 24, 24, 24, 24, 24, 4, 14, 1, -18, '', 0, 12, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 2), 5, 5, 201, 0, 105, 145, 70, 70, 70, 70, 89, 89, 70, 28, 28, 28, 28, 28, 28, 4, 17, 1, -18, '', 0, 14, 0, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 3), 5, 5, 221, 0, 107, 147, 71, 71, 71, 71, 91, 91, 71, 32, 32, 32, 32, 32, 32, 5, 19, 1, -18, '', 0, 16, 0, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 4), 5, 5, 241, 0, 110, 150, 72, 72, 72, 72, 93, 93, 72, 36, 36, 36, 36, 36, 36, 5, 22, 1, -18, '', 0, 18, 0, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 5), 5, 5, 261, 0, 112, 152, 73, 73, 73, 73, 95, 95, 73, 40, 40, 40, 40, 40, 40, 6, 24, 1, -18, '', 0, 20, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 1), 5, 5, 331, 0, 127, 157, 76, 76, 76, 76, 107, 107, 76, 44, 44, 44, 44, 44, 44, 5, 20, 1, -18, '', 0, 20, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 2), 5, 5, 351, 0, 130, 160, 77, 77, 77, 77, 109, 109, 77, 48, 48, 48, 48, 48, 48, 6, 23, 1, -18, '', 0, 22, 0, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 3), 5, 5, 371, 0, 132, 162, 78, 78, 78, 78, 111, 111, 78, 52, 52, 52, 52, 52, 52, 6, 26, 1, -18, '', 0, 24, 0, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 4), 5, 5, 391, 0, 135, 165, 79, 79, 79, 79, 113, 113, 79, 56, 56, 56, 56, 56, 56, 7, 28, 1, -18, '', 0, 26, 0, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 5), 5, 5, 411, 0, 137, 167, 80, 80, 80, 80, 115, 115, 80, 60, 60, 60, 60, 60, 60, 7, 31, 1, -18, '', 0, 28, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 1), 5, 5, 146, 160, 66, 41, 59, 59, 59, 59, 120, 120, 59, 24, 24, 24, 24, 24, 24, 2, 14, 1, -18, '', 0, 8, 6, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 2), 5, 5, 156, 175, 68, 42, 60, 60, 60, 60, 123, 123, 60, 28, 28, 28, 28, 28, 28, 2, 15, 1, -18, '', 0, 9, 7, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 3), 5, 5, 166, 190, 70, 43, 61, 61, 61, 61, 126, 126, 61, 32, 32, 32, 32, 32, 32, 3, 17, 1, -18, '', 0, 10, 8, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 4), 5, 5, 176, 205, 71, 45, 62, 62, 62, 62, 129, 129, 62, 36, 36, 36, 36, 36, 36, 3, 18, 1, -18, '', 0, 11, 9, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 5), 5, 5, 186, 220, 73, 46, 63, 63, 63, 63, 132, 132, 63, 40, 40, 40, 40, 40, 40, 3, 20, 1, -18, '', 0, 12, 10, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 1), 5, 5, 271, 285, 81, 46, 66, 66, 66, 66, 145, 145, 66, 44, 44, 44, 44, 44, 44, 3, 18, 1, -18, '', 0, 13, 9, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 2), 5, 5, 281, 300, 83, 47, 67, 67, 67, 67, 148, 148, 67, 48, 48, 48, 48, 48, 48, 3, 20, 1, -18, '', 0, 14, 10, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 3), 5, 5, 291, 315, 85, 48, 68, 68, 68, 68, 151, 151, 68, 52, 52, 52, 52, 52, 52, 3, 21, 1, -18, '', 0, 15, 11, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 4), 5, 5, 301, 330, 86, 50, 69, 69, 69, 69, 154, 154, 69, 56, 56, 56, 56, 56, 56, 4, 22, 1, -18, '', 0, 16, 12, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 5), 5, 5, 311, 345, 88, 51, 70, 70, 70, 70, 157, 157, 70, 60, 60, 60, 60, 60, 60, 4, 24, 1, -18, '', 0, 17, 13, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 1), 6, 6, 253, 0, 207, 168, 70, 70, 70, 70, 90, 90, 70, 26, 26, 26, 26, 26, 26, 4, 17, 1, -18, '', 0, 15, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 2), 6, 6, 283, 0, 216, 171, 71, 71, 71, 71, 92, 92, 71, 30, 30, 30, 30, 30, 30, 5, 19, 1, -18, '', 0, 17, 0, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 3), 6, 6, 313, 0, 225, 174, 72, 72, 72, 72, 94, 94, 72, 34, 34, 34, 34, 34, 34, 5, 22, 1, -18, '', 0, 19, 0, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 4), 6, 6, 343, 0, 234, 177, 73, 73, 73, 73, 96, 96, 73, 38, 38, 38, 38, 38, 38, 6, 25, 1, -18, '', 0, 21, 0, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 5), 6, 6, 373, 0, 243, 180, 74, 74, 74, 74, 98, 98, 74, 42, 42, 42, 42, 42, 42, 6, 28, 1, -18, '', 0, 23, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 1), 6, 6, 463, 0, 255, 183, 78, 78, 78, 78, 110, 110, 78, 46, 46, 46, 46, 46, 46, 5, 24, 1, -18, '', 0, 25, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 2), 6, 6, 493, 0, 264, 186, 79, 79, 79, 79, 112, 112, 79, 50, 50, 50, 50, 50, 50, 6, 26, 1, -18, '', 0, 27, 0, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 3), 6, 6, 523, 0, 273, 189, 80, 80, 80, 80, 114, 114, 80, 54, 54, 54, 54, 54, 54, 6, 29, 1, -18, '', 0, 29, 0, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 4), 6, 6, 553, 0, 282, 192, 81, 81, 81, 81, 116, 116, 81, 58, 58, 58, 58, 58, 58, 7, 32, 1, -18, '', 0, 31, 0, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 5), 6, 6, 583, 0, 291, 195, 82, 82, 82, 82, 118, 118, 82, 62, 62, 62, 62, 62, 62, 7, 35, 1, -18, '', 0, 33, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 1), 6, 6, 210, 197, 162, 101, 60, 60, 60, 60, 124, 124, 60, 26, 26, 26, 26, 26, 26, 2, 15, 1, -18, '', 0, 9, 6, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 2), 6, 6, 228, 215, 168, 103, 61, 61, 61, 61, 127, 127, 61, 30, 30, 30, 30, 30, 30, 3, 17, 1, -18, '', 0, 10, 7, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 3), 6, 6, 246, 233, 174, 105, 62, 62, 62, 62, 130, 130, 62, 34, 34, 34, 34, 34, 34, 3, 18, 1, -18, '', 0, 11, 8, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 4), 6, 6, 264, 251, 180, 107, 63, 63, 63, 63, 133, 133, 63, 38, 38, 38, 38, 38, 38, 3, 20, 1, -18, '', 0, 12, 9, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 5), 6, 6, 282, 269, 186, 109, 64, 64, 64, 64, 136, 136, 64, 42, 42, 42, 42, 42, 42, 3, 21, 1, -18, '', 0, 13, 10, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 1), 6, 6, 390, 347, 198, 110, 68, 68, 68, 68, 149, 149, 68, 46, 46, 46, 46, 46, 46, 3, 20, 1, -18, '', 0, 15, 9, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 2), 6, 6, 408, 365, 204, 112, 69, 69, 69, 69, 152, 152, 69, 50, 50, 50, 50, 50, 50, 3, 21, 1, -18, '', 0, 16, 10, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 3), 6, 6, 426, 383, 210, 114, 70, 70, 70, 70, 155, 155, 70, 54, 54, 54, 54, 54, 54, 4, 22, 1, -18, '', 0, 17, 11, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 4), 6, 6, 444, 401, 216, 116, 71, 71, 71, 71, 158, 158, 71, 58, 58, 58, 58, 58, 58, 4, 24, 1, -18, '', 0, 18, 12, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 5), 6, 6, 462, 419, 222, 118, 72, 72, 72, 72, 161, 161, 72, 62, 62, 62, 62, 62, 62, 4, 25, 1, -18, '', 0, 19, 13, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 1), 6, 6, 216, 0, 123, 171, 70, 70, 70, 70, 90, 90, 70, 26, 26, 26, 26, 26, 26, 4, 15, 1, -18, '', 0, 13, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 2), 6, 6, 240, 0, 126, 174, 71, 71, 71, 71, 92, 92, 71, 30, 30, 30, 30, 30, 30, 5, 18, 1, -18, '', 0, 15, 0, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 3), 6, 6, 264, 0, 129, 177, 72, 72, 72, 72, 94, 94, 72, 34, 34, 34, 34, 34, 34, 5, 20, 1, -18, '', 0, 17, 0, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 4), 6, 6, 288, 0, 132, 180, 73, 73, 73, 73, 96, 96, 73, 38, 38, 38, 38, 38, 38, 6, 23, 1, -18, '', 0, 19, 0, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 5), 6, 6, 312, 0, 135, 183, 74, 74, 74, 74, 98, 98, 74, 42, 42, 42, 42, 42, 42, 6, 26, 1, -18, '', 0, 21, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 1), 6, 6, 396, 0, 153, 189, 78, 78, 78, 78, 110, 110, 78, 46, 46, 46, 46, 46, 46, 5, 22, 1, -18, '', 0, 21, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 2), 6, 6, 420, 0, 156, 192, 79, 79, 79, 79, 112, 112, 79, 50, 50, 50, 50, 50, 50, 6, 24, 1, -18, '', 0, 23, 0, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 3), 6, 6, 444, 0, 159, 195, 80, 80, 80, 80, 114, 114, 80, 54, 54, 54, 54, 54, 54, 6, 27, 1, -18, '', 0, 25, 0, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 4), 6, 6, 468, 0, 162, 198, 81, 81, 81, 81, 116, 116, 81, 58, 58, 58, 58, 58, 58, 7, 30, 1, -18, '', 0, 27, 0, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 5), 6, 6, 492, 0, 165, 201, 82, 82, 82, 82, 118, 118, 82, 62, 62, 62, 62, 62, 62, 7, 32, 1, -18, '', 0, 29, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 1), 6, 6, 174, 197, 80, 49, 60, 60, 60, 60, 124, 124, 60, 26, 26, 26, 26, 26, 26, 2, 15, 1, -18, '', 0, 8, 6, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 2), 6, 6, 186, 215, 82, 51, 61, 61, 61, 61, 127, 127, 61, 30, 30, 30, 30, 30, 30, 3, 17, 1, -18, '', 0, 9, 7, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 3), 6, 6, 198, 233, 84, 52, 62, 62, 62, 62, 130, 130, 62, 34, 34, 34, 34, 34, 34, 3, 18, 1, -18, '', 0, 10, 8, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 4), 6, 6, 210, 251, 86, 54, 63, 63, 63, 63, 133, 133, 63, 38, 38, 38, 38, 38, 38, 3, 20, 1, -18, '', 0, 11, 9, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 5), 6, 6, 222, 269, 88, 55, 64, 64, 64, 64, 136, 136, 64, 42, 42, 42, 42, 42, 42, 3, 21, 1, -18, '', 0, 12, 10, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 1), 6, 6, 324, 347, 98, 55, 68, 68, 68, 68, 149, 149, 68, 46, 46, 46, 46, 46, 46, 3, 20, 1, -18, '', 0, 13, 9, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 2), 6, 6, 336, 365, 100, 57, 69, 69, 69, 69, 152, 152, 69, 50, 50, 50, 50, 50, 50, 3, 21, 1, -18, '', 0, 14, 10, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 3), 6, 6, 348, 383, 102, 58, 70, 70, 70, 70, 155, 155, 70, 54, 54, 54, 54, 54, 54, 4, 22, 1, -18, '', 0, 15, 11, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 4), 6, 6, 360, 401, 104, 60, 71, 71, 71, 71, 158, 158, 71, 58, 58, 58, 58, 58, 58, 4, 24, 1, -18, '', 0, 16, 12, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 5), 6, 6, 372, 419, 106, 61, 72, 72, 72, 72, 161, 161, 72, 62, 62, 62, 62, 62, 62, 4, 25, 1, -18, '', 0, 17, 13, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 1), 7, 7, 294, 0, 242, 196, 71, 71, 71, 71, 93, 93, 71, 28, 28, 28, 28, 28, 28, 4, 18, 1, -18, '', 0, 15, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 2), 7, 7, 329, 0, 252, 200, 72, 72, 72, 72, 95, 95, 72, 32, 32, 32, 32, 32, 32, 5, 21, 1, -18, '', 0, 17, 0, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 3), 7, 7, 364, 0, 263, 203, 73, 73, 73, 73, 97, 97, 73, 36, 36, 36, 36, 36, 36, 5, 24, 1, -18, '', 0, 19, 0, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 4), 7, 7, 399, 0, 273, 207, 74, 74, 74, 74, 99, 99, 74, 40, 40, 40, 40, 40, 40, 6, 26, 1, -18, '', 0, 21, 0, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 5), 7, 7, 434, 0, 284, 210, 75, 75, 75, 75, 101, 101, 75, 44, 44, 44, 44, 44, 44, 6, 29, 1, -18, '', 0, 23, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 1), 7, 7, 539, 0, 298, 213, 79, 79, 79, 79, 113, 113, 79, 48, 48, 48, 48, 48, 48, 6, 25, 1, -18, '', 0, 25, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 2), 7, 7, 574, 0, 308, 217, 80, 80, 80, 80, 115, 115, 80, 52, 52, 52, 52, 52, 52, 6, 28, 1, -18, '', 0, 27, 0, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 3), 7, 7, 609, 0, 319, 220, 81, 81, 81, 81, 117, 117, 81, 56, 56, 56, 56, 56, 56, 7, 31, 1, -18, '', 0, 29, 0, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 4), 7, 7, 644, 0, 329, 224, 82, 82, 82, 82, 119, 119, 82, 60, 60, 60, 60, 60, 60, 7, 33, 1, -18, '', 0, 31, 0, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 5), 7, 7, 679, 0, 340, 227, 83, 83, 83, 83, 121, 121, 83, 64, 64, 64, 64, 64, 64, 8, 36, 1, -18, '', 0, 33, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 1), 7, 7, 245, 235, 189, 118, 61, 61, 61, 61, 127, 127, 61, 28, 28, 28, 28, 28, 28, 3, 17, 1, -18, '', 0, 9, 6, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 2), 7, 7, 266, 256, 196, 120, 62, 62, 62, 62, 130, 130, 62, 32, 32, 32, 32, 32, 32, 3, 18, 1, -18, '', 0, 10, 7, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 3), 7, 7, 287, 277, 203, 123, 63, 63, 63, 63, 133, 133, 63, 36, 36, 36, 36, 36, 36, 3, 20, 1, -18, '', 0, 11, 8, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 4), 7, 7, 308, 298, 210, 125, 64, 64, 64, 64, 136, 136, 64, 40, 40, 40, 40, 40, 40, 3, 21, 1, -18, '', 0, 12, 9, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 5), 7, 7, 329, 319, 217, 127, 65, 65, 65, 65, 139, 139, 65, 44, 44, 44, 44, 44, 44, 4, 22, 1, -18, '', 0, 13, 10, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 1), 7, 7, 455, 410, 231, 128, 69, 69, 69, 69, 152, 152, 69, 48, 48, 48, 48, 48, 48, 3, 21, 1, -18, '', 0, 15, 9, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 2), 7, 7, 476, 431, 238, 130, 70, 70, 70, 70, 155, 155, 70, 52, 52, 52, 52, 52, 52, 4, 22, 1, -18, '', 0, 16, 10, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 3), 7, 7, 497, 452, 245, 133, 71, 71, 71, 71, 158, 158, 71, 56, 56, 56, 56, 56, 56, 4, 24, 1, -18, '', 0, 17, 11, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 4), 7, 7, 518, 473, 252, 135, 72, 72, 72, 72, 161, 161, 72, 60, 60, 60, 60, 60, 60, 4, 25, 1, -18, '', 0, 18, 12, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 5), 7, 7, 539, 494, 259, 137, 73, 73, 73, 73, 164, 164, 73, 64, 64, 64, 64, 64, 64, 4, 27, 1, -18, '', 0, 19, 13, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 1), 7, 7, 252, 0, 143, 199, 71, 71, 71, 71, 93, 93, 71, 28, 28, 28, 28, 28, 28, 4, 17, 1, -18, '', 0, 13, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 2), 7, 7, 280, 0, 147, 203, 72, 72, 72, 72, 95, 95, 72, 32, 32, 32, 32, 32, 32, 5, 19, 1, -18, '', 0, 15, 0, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 3), 7, 7, 308, 0, 150, 206, 73, 73, 73, 73, 97, 97, 73, 36, 36, 36, 36, 36, 36, 5, 22, 1, -18, '', 0, 17, 0, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 4), 7, 7, 336, 0, 154, 210, 74, 74, 74, 74, 99, 99, 74, 40, 40, 40, 40, 40, 40, 6, 24, 1, -18, '', 0, 19, 0, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 5), 7, 7, 364, 0, 157, 213, 75, 75, 75, 75, 101, 101, 75, 44, 44, 44, 44, 44, 44, 6, 27, 1, -18, '', 0, 21, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 1), 7, 7, 462, 0, 178, 220, 79, 79, 79, 79, 113, 113, 79, 48, 48, 48, 48, 48, 48, 6, 23, 1, -18, '', 0, 21, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 2), 7, 7, 490, 0, 182, 224, 80, 80, 80, 80, 115, 115, 80, 52, 52, 52, 52, 52, 52, 6, 26, 1, -18, '', 0, 23, 0, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 3), 7, 7, 518, 0, 185, 227, 81, 81, 81, 81, 117, 117, 81, 56, 56, 56, 56, 56, 56, 7, 28, 1, -18, '', 0, 25, 0, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 4), 7, 7, 546, 0, 189, 231, 82, 82, 82, 82, 119, 119, 82, 60, 60, 60, 60, 60, 60, 7, 31, 1, -18, '', 0, 27, 0, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 5), 7, 7, 574, 0, 192, 234, 83, 83, 83, 83, 121, 121, 83, 64, 64, 64, 64, 64, 64, 8, 33, 1, -18, '', 0, 29, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 1), 7, 7, 202, 235, 93, 57, 61, 61, 61, 61, 127, 127, 61, 28, 28, 28, 28, 28, 28, 3, 17, 1, -18, '', 0, 8, 6, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 2), 7, 7, 216, 256, 95, 59, 62, 62, 62, 62, 130, 130, 62, 32, 32, 32, 32, 32, 32, 3, 18, 1, -18, '', 0, 9, 7, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 3), 7, 7, 230, 277, 98, 61, 63, 63, 63, 63, 133, 133, 63, 36, 36, 36, 36, 36, 36, 3, 20, 1, -18, '', 0, 10, 8, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 4), 7, 7, 244, 298, 100, 63, 64, 64, 64, 64, 136, 136, 64, 40, 40, 40, 40, 40, 40, 3, 21, 1, -18, '', 0, 11, 9, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 5), 7, 7, 258, 319, 102, 64, 65, 65, 65, 65, 139, 139, 65, 44, 44, 44, 44, 44, 44, 4, 22, 1, -18, '', 0, 12, 10, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 1), 7, 7, 377, 410, 114, 64, 69, 69, 69, 69, 152, 152, 69, 48, 48, 48, 48, 48, 48, 3, 21, 1, -18, '', 0, 13, 9, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 2), 7, 7, 391, 431, 116, 66, 70, 70, 70, 70, 155, 155, 70, 52, 52, 52, 52, 52, 52, 4, 22, 1, -18, '', 0, 14, 10, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 3), 7, 7, 405, 452, 119, 68, 71, 71, 71, 71, 158, 158, 71, 56, 56, 56, 56, 56, 56, 4, 24, 1, -18, '', 0, 15, 11, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 4), 7, 7, 419, 473, 121, 70, 72, 72, 72, 72, 161, 161, 72, 60, 60, 60, 60, 60, 60, 4, 25, 1, -18, '', 0, 16, 12, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 5), 7, 7, 433, 494, 123, 71, 73, 73, 73, 73, 164, 164, 73, 64, 64, 64, 64, 64, 64, 4, 27, 1, -18, '', 0, 17, 13, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 1), 8, 8, 337, 0, 276, 224, 73, 73, 73, 73, 96, 96, 73, 31, 31, 31, 31, 31, 31, 5, 19, 1, -18, '', 0, 15, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 2), 8, 8, 377, 0, 288, 228, 74, 74, 74, 74, 98, 98, 74, 36, 36, 36, 36, 36, 36, 5, 22, 1, -18, '', 0, 17, 0, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 3), 8, 8, 417, 0, 300, 232, 75, 75, 75, 75, 100, 100, 75, 41, 41, 41, 41, 41, 41, 6, 25, 1, -18, '', 0, 19, 0, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 4), 8, 8, 457, 0, 312, 236, 76, 76, 76, 76, 102, 102, 76, 46, 46, 46, 46, 46, 46, 6, 28, 1, -18, '', 0, 21, 0, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 5), 8, 8, 497, 0, 324, 240, 77, 77, 77, 77, 104, 104, 77, 51, 51, 51, 51, 51, 51, 7, 31, 1, -18, '', 0, 23, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 1), 8, 8, 617, 0, 340, 244, 82, 82, 82, 82, 116, 116, 82, 53, 53, 53, 53, 53, 53, 6, 26, 1, -18, '', 0, 25, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 2), 8, 8, 657, 0, 352, 248, 83, 83, 83, 83, 118, 118, 83, 58, 58, 58, 58, 58, 58, 6, 29, 1, -18, '', 0, 27, 0, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 3), 8, 8, 697, 0, 364, 252, 84, 84, 84, 84, 120, 120, 84, 63, 63, 63, 63, 63, 63, 7, 32, 1, -18, '', 0, 29, 0, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 4), 8, 8, 737, 0, 376, 256, 85, 85, 85, 85, 122, 122, 85, 68, 68, 68, 68, 68, 68, 7, 35, 1, -18, '', 0, 31, 0, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 5), 8, 8, 777, 0, 388, 260, 86, 86, 86, 86, 124, 124, 86, 73, 73, 73, 73, 73, 73, 8, 38, 1, -18, '', 0, 33, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 1), 8, 8, 280, 275, 216, 134, 62, 62, 62, 62, 131, 131, 62, 31, 31, 31, 31, 31, 31, 3, 18, 1, -18, '', 0, 10, 6, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 2), 8, 8, 304, 299, 224, 137, 63, 63, 63, 63, 134, 134, 63, 36, 36, 36, 36, 36, 36, 3, 20, 1, -18, '', 0, 11, 7, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 3), 8, 8, 328, 323, 232, 140, 64, 64, 64, 64, 137, 137, 64, 41, 41, 41, 41, 41, 41, 3, 21, 1, -18, '', 0, 12, 8, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 4), 8, 8, 352, 347, 240, 142, 65, 65, 65, 65, 140, 140, 65, 46, 46, 46, 46, 46, 46, 4, 22, 1, -18, '', 0, 13, 9, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 5), 8, 8, 376, 371, 248, 145, 66, 66, 66, 66, 143, 143, 66, 51, 51, 51, 51, 51, 51, 4, 24, 1, -18, '', 0, 14, 10, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 1), 8, 8, 520, 475, 264, 146, 71, 71, 71, 71, 156, 156, 71, 53, 53, 53, 53, 53, 53, 4, 22, 1, -18, '', 0, 16, 9, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 2), 8, 8, 544, 499, 272, 149, 72, 72, 72, 72, 159, 159, 72, 58, 58, 58, 58, 58, 58, 4, 24, 1, -18, '', 0, 17, 10, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 3), 8, 8, 568, 523, 280, 152, 73, 73, 73, 73, 162, 162, 73, 63, 63, 63, 63, 63, 63, 4, 25, 1, -18, '', 0, 18, 11, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 4), 8, 8, 592, 547, 288, 154, 74, 74, 74, 74, 165, 165, 74, 68, 68, 68, 68, 68, 68, 4, 27, 1, -18, '', 0, 19, 12, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 5), 8, 8, 616, 571, 296, 157, 75, 75, 75, 75, 168, 168, 75, 73, 73, 73, 73, 73, 73, 5, 28, 1, -18, '', 0, 20, 13, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 1), 8, 8, 288, 0, 164, 228, 73, 73, 73, 73, 96, 96, 73, 31, 31, 31, 31, 31, 31, 5, 18, 1, -18, '', 0, 13, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 2), 8, 8, 320, 0, 168, 232, 74, 74, 74, 74, 98, 98, 74, 36, 36, 36, 36, 36, 36, 5, 20, 1, -18, '', 0, 15, 0, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 3), 8, 8, 352, 0, 172, 236, 75, 75, 75, 75, 100, 100, 75, 41, 41, 41, 41, 41, 41, 6, 23, 1, -18, '', 0, 17, 0, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 4), 8, 8, 384, 0, 176, 240, 76, 76, 76, 76, 102, 102, 76, 46, 46, 46, 46, 46, 46, 6, 26, 1, -18, '', 0, 19, 0, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 5), 8, 8, 416, 0, 180, 244, 77, 77, 77, 77, 104, 104, 77, 51, 51, 51, 51, 51, 51, 7, 28, 1, -18, '', 0, 21, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 1), 8, 8, 528, 0, 204, 252, 82, 82, 82, 82, 116, 116, 82, 53, 53, 53, 53, 53, 53, 6, 24, 1, -18, '', 0, 21, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 2), 8, 8, 560, 0, 208, 256, 83, 83, 83, 83, 118, 118, 83, 58, 58, 58, 58, 58, 58, 6, 27, 1, -18, '', 0, 23, 0, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 3), 8, 8, 592, 0, 212, 260, 84, 84, 84, 84, 120, 120, 84, 63, 63, 63, 63, 63, 63, 7, 30, 1, -18, '', 0, 25, 0, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 4), 8, 8, 624, 0, 216, 264, 85, 85, 85, 85, 122, 122, 85, 68, 68, 68, 68, 68, 68, 7, 32, 1, -18, '', 0, 27, 0, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 5), 8, 8, 656, 0, 220, 268, 86, 86, 86, 86, 124, 124, 86, 73, 73, 73, 73, 73, 73, 8, 35, 1, -18, '', 0, 29, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 1), 8, 8, 231, 275, 106, 66, 62, 62, 62, 62, 131, 131, 62, 31, 31, 31, 31, 31, 31, 3, 18, 1, -18, '', 0, 9, 6, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 2), 8, 8, 247, 299, 109, 68, 63, 63, 63, 63, 134, 134, 63, 36, 36, 36, 36, 36, 36, 3, 20, 1, -18, '', 0, 10, 7, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 3), 8, 8, 263, 323, 112, 70, 64, 64, 64, 64, 137, 137, 64, 41, 41, 41, 41, 41, 41, 3, 21, 1, -18, '', 0, 11, 8, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 4), 8, 8, 279, 347, 114, 72, 65, 65, 65, 65, 140, 140, 65, 46, 46, 46, 46, 46, 46, 4, 22, 1, -18, '', 0, 12, 9, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 5), 8, 8, 295, 371, 117, 74, 66, 66, 66, 66, 143, 143, 66, 51, 51, 51, 51, 51, 51, 4, 24, 1, -18, '', 0, 13, 10, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 1), 8, 8, 431, 475, 130, 74, 71, 71, 71, 71, 156, 156, 71, 53, 53, 53, 53, 53, 53, 4, 22, 1, -18, '', 0, 14, 9, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 2), 8, 8, 447, 499, 133, 76, 72, 72, 72, 72, 159, 159, 72, 58, 58, 58, 58, 58, 58, 4, 24, 1, -18, '', 0, 15, 10, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 3), 8, 8, 463, 523, 136, 78, 73, 73, 73, 73, 162, 162, 73, 63, 63, 63, 63, 63, 63, 4, 25, 1, -18, '', 0, 16, 11, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 4), 8, 8, 479, 547, 138, 80, 74, 74, 74, 74, 165, 165, 74, 68, 68, 68, 68, 68, 68, 4, 27, 1, -18, '', 0, 17, 12, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 5), 8, 8, 495, 571, 141, 82, 75, 75, 75, 75, 168, 168, 75, 73, 73, 73, 73, 73, 73, 5, 28, 1, -18, '', 0, 18, 13, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 1), 9, 9, 380, 0, 311, 252, 74, 74, 74, 74, 99, 99, 74, 33, 33, 33, 33, 33, 33, 5, 21, 1, -18, '', 0, 16, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 2), 9, 9, 425, 0, 324, 257, 75, 75, 75, 75, 101, 101, 75, 38, 38, 38, 38, 38, 38, 5, 24, 1, -18, '', 0, 18, 0, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 3), 9, 9, 470, 0, 338, 261, 76, 76, 76, 76, 103, 103, 76, 43, 43, 43, 43, 43, 43, 6, 26, 1, -18, '', 0, 20, 0, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 4), 9, 9, 515, 0, 351, 266, 77, 77, 77, 77, 105, 105, 77, 48, 48, 48, 48, 48, 48, 6, 29, 1, -18, '', 0, 22, 0, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 5), 9, 9, 560, 0, 365, 270, 78, 78, 78, 78, 107, 107, 78, 53, 53, 53, 53, 53, 53, 7, 32, 1, -18, '', 0, 24, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 1), 9, 9, 695, 0, 383, 274, 83, 83, 83, 83, 119, 119, 83, 55, 55, 55, 55, 55, 55, 6, 28, 1, -18, '', 0, 26, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 2), 9, 9, 740, 0, 396, 279, 84, 84, 84, 84, 121, 121, 84, 60, 60, 60, 60, 60, 60, 7, 31, 1, -18, '', 0, 28, 0, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 3), 9, 9, 785, 0, 410, 283, 85, 85, 85, 85, 123, 123, 85, 65, 65, 65, 65, 65, 65, 7, 33, 1, -18, '', 0, 30, 0, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 4), 9, 9, 830, 0, 423, 288, 86, 86, 86, 86, 125, 125, 86, 70, 70, 70, 70, 70, 70, 8, 36, 1, -18, '', 0, 32, 0, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 5), 9, 9, 875, 0, 437, 292, 87, 87, 87, 87, 127, 127, 87, 75, 75, 75, 75, 75, 75, 8, 39, 1, -18, '', 0, 34, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 1), 9, 9, 315, 317, 243, 152, 63, 63, 63, 63, 134, 134, 63, 33, 33, 33, 33, 33, 33, 3, 20, 1, -18, '', 0, 10, 6, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 2), 9, 9, 342, 344, 252, 155, 64, 64, 64, 64, 137, 137, 64, 38, 38, 38, 38, 38, 38, 3, 21, 1, -18, '', 0, 11, 7, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 3), 9, 9, 369, 371, 261, 158, 65, 65, 65, 65, 140, 140, 65, 43, 43, 43, 43, 43, 43, 4, 22, 1, -18, '', 0, 12, 8, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 4), 9, 9, 396, 398, 270, 161, 66, 66, 66, 66, 143, 143, 66, 48, 48, 48, 48, 48, 48, 4, 24, 1, -18, '', 0, 13, 9, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 5), 9, 9, 423, 425, 279, 164, 67, 67, 67, 67, 146, 146, 67, 53, 53, 53, 53, 53, 53, 4, 25, 1, -18, '', 0, 14, 10, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 1), 9, 9, 585, 542, 297, 165, 72, 72, 72, 72, 159, 159, 72, 55, 55, 55, 55, 55, 55, 4, 24, 1, -18, '', 0, 16, 9, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 2), 9, 9, 612, 569, 306, 168, 73, 73, 73, 73, 162, 162, 73, 60, 60, 60, 60, 60, 60, 4, 25, 1, -18, '', 0, 17, 10, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 3), 9, 9, 639, 596, 315, 171, 74, 74, 74, 74, 165, 165, 74, 65, 65, 65, 65, 65, 65, 4, 27, 1, -18, '', 0, 18, 11, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 4), 9, 9, 666, 623, 324, 174, 75, 75, 75, 75, 168, 168, 75, 70, 70, 70, 70, 70, 70, 5, 28, 1, -18, '', 0, 19, 12, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 5), 9, 9, 693, 650, 333, 177, 76, 76, 76, 76, 171, 171, 76, 75, 75, 75, 75, 75, 75, 5, 29, 1, -18, '', 0, 20, 13, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 1), 9, 9, 325, 0, 184, 256, 74, 74, 74, 74, 99, 99, 74, 33, 33, 33, 33, 33, 33, 5, 19, 1, -18, '', 0, 14, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 2), 9, 9, 361, 0, 189, 261, 75, 75, 75, 75, 101, 101, 75, 38, 38, 38, 38, 38, 38, 5, 22, 1, -18, '', 0, 16, 0, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 3), 9, 9, 397, 0, 193, 265, 76, 76, 76, 76, 103, 103, 76, 43, 43, 43, 43, 43, 43, 6, 24, 1, -18, '', 0, 18, 0, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 4), 9, 9, 433, 0, 198, 270, 77, 77, 77, 77, 105, 105, 77, 48, 48, 48, 48, 48, 48, 6, 27, 1, -18, '', 0, 20, 0, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 5), 9, 9, 469, 0, 202, 274, 78, 78, 78, 78, 107, 107, 78, 53, 53, 53, 53, 53, 53, 7, 30, 1, -18, '', 0, 22, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 1), 9, 9, 595, 0, 229, 283, 83, 83, 83, 83, 119, 119, 83, 55, 55, 55, 55, 55, 55, 6, 26, 1, -18, '', 0, 22, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 2), 9, 9, 631, 0, 234, 288, 84, 84, 84, 84, 121, 121, 84, 60, 60, 60, 60, 60, 60, 7, 28, 1, -18, '', 0, 24, 0, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 3), 9, 9, 667, 0, 238, 292, 85, 85, 85, 85, 123, 123, 85, 65, 65, 65, 65, 65, 65, 7, 31, 1, -18, '', 0, 26, 0, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 4), 9, 9, 703, 0, 243, 297, 86, 86, 86, 86, 125, 125, 86, 70, 70, 70, 70, 70, 70, 8, 33, 1, -18, '', 0, 28, 0, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 5), 9, 9, 739, 0, 247, 301, 87, 87, 87, 87, 127, 127, 87, 75, 75, 75, 75, 75, 75, 8, 36, 1, -18, '', 0, 30, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 1), 9, 9, 261, 317, 120, 74, 63, 63, 63, 63, 134, 134, 63, 33, 33, 33, 33, 33, 33, 3, 20, 1, -18, '', 0, 9, 6, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 2), 9, 9, 279, 344, 123, 76, 64, 64, 64, 64, 137, 137, 64, 38, 38, 38, 38, 38, 38, 3, 21, 1, -18, '', 0, 10, 7, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 3), 9, 9, 297, 371, 126, 78, 65, 65, 65, 65, 140, 140, 65, 43, 43, 43, 43, 43, 43, 4, 22, 1, -18, '', 0, 11, 8, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 4), 9, 9, 315, 398, 129, 81, 66, 66, 66, 66, 143, 143, 66, 48, 48, 48, 48, 48, 48, 4, 24, 1, -18, '', 0, 12, 9, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 5), 9, 9, 333, 425, 132, 83, 67, 67, 67, 67, 146, 146, 67, 53, 53, 53, 53, 53, 53, 4, 25, 1, -18, '', 0, 13, 10, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 1), 9, 9, 486, 542, 147, 83, 72, 72, 72, 72, 159, 159, 72, 55, 55, 55, 55, 55, 55, 4, 24, 1, -18, '', 0, 14, 9, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 2), 9, 9, 504, 569, 150, 85, 73, 73, 73, 73, 162, 162, 73, 60, 60, 60, 60, 60, 60, 4, 25, 1, -18, '', 0, 15, 10, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 3), 9, 9, 522, 596, 153, 87, 74, 74, 74, 74, 165, 165, 74, 65, 65, 65, 65, 65, 65, 4, 27, 1, -18, '', 0, 16, 11, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 4), 9, 9, 540, 623, 156, 90, 75, 75, 75, 75, 168, 168, 75, 70, 70, 70, 70, 70, 70, 5, 28, 1, -18, '', 0, 17, 12, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 5), 9, 9, 558, 650, 159, 92, 76, 76, 76, 76, 171, 171, 76, 75, 75, 75, 75, 75, 75, 5, 29, 1, -18, '', 0, 18, 13, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 1), 10, 10, 424, 0, 345, 280, 77, 77, 77, 77, 102, 102, 77, 35, 35, 35, 35, 35, 35, 5, 22, 1, -18, '', 0, 16, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 2), 10, 10, 474, 0, 360, 285, 79, 79, 79, 79, 104, 104, 79, 40, 40, 40, 40, 40, 40, 6, 25, 1, -18, '', 0, 18, 0, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 3), 10, 10, 524, 0, 375, 290, 81, 81, 81, 81, 106, 106, 81, 45, 45, 45, 45, 45, 45, 6, 28, 1, -18, '', 0, 20, 0, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 4), 10, 10, 574, 0, 390, 295, 83, 83, 83, 83, 108, 108, 83, 50, 50, 50, 50, 50, 50, 7, 31, 1, -18, '', 0, 22, 0, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 5), 10, 10, 624, 0, 405, 300, 85, 85, 85, 85, 110, 110, 85, 55, 55, 55, 55, 55, 55, 7, 33, 1, -18, '', 0, 24, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 1), 10, 10, 774, 0, 425, 305, 87, 87, 87, 87, 122, 122, 87, 57, 57, 57, 57, 57, 57, 6, 29, 1, -18, '', 0, 26, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 2), 10, 10, 824, 0, 440, 310, 89, 89, 89, 89, 124, 124, 89, 62, 62, 62, 62, 62, 62, 7, 32, 1, -18, '', 0, 28, 0, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 3), 10, 10, 874, 0, 455, 315, 91, 91, 91, 91, 126, 126, 91, 67, 67, 67, 67, 67, 67, 7, 35, 1, -18, '', 0, 30, 0, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 4), 10, 10, 924, 0, 470, 320, 93, 93, 93, 93, 128, 128, 93, 72, 72, 72, 72, 72, 72, 8, 38, 1, -18, '', 0, 32, 0, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 5), 10, 10, 974, 0, 485, 325, 95, 95, 95, 95, 130, 130, 95, 77, 77, 77, 77, 77, 77, 8, 40, 1, -18, '', 0, 34, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 1), 10, 10, 351, 360, 270, 168, 66, 66, 66, 66, 138, 138, 66, 35, 35, 35, 35, 35, 35, 3, 21, 1, -18, '', 0, 10, 7, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 2), 10, 10, 381, 390, 280, 171, 68, 68, 68, 68, 141, 141, 68, 40, 40, 40, 40, 40, 40, 4, 22, 1, -18, '', 0, 11, 8, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 3), 10, 10, 411, 420, 290, 175, 70, 70, 70, 70, 144, 144, 70, 45, 45, 45, 45, 45, 45, 4, 24, 1, -18, '', 0, 12, 9, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 4), 10, 10, 441, 450, 300, 178, 72, 72, 72, 72, 147, 147, 72, 50, 50, 50, 50, 50, 50, 4, 25, 1, -18, '', 0, 13, 10, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 5), 10, 10, 471, 480, 310, 181, 74, 74, 74, 74, 150, 150, 74, 55, 55, 55, 55, 55, 55, 4, 27, 1, -18, '', 0, 14, 11, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 1), 10, 10, 651, 610, 330, 183, 76, 76, 76, 76, 163, 163, 76, 57, 57, 57, 57, 57, 57, 4, 25, 1, -18, '', 0, 16, 10, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 2), 10, 10, 681, 640, 340, 186, 78, 78, 78, 78, 166, 166, 78, 62, 62, 62, 62, 62, 62, 4, 27, 1, -18, '', 0, 17, 11, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 3), 10, 10, 711, 670, 350, 190, 80, 80, 80, 80, 169, 169, 80, 67, 67, 67, 67, 67, 67, 5, 28, 1, -18, '', 0, 18, 12, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 4), 10, 10, 741, 700, 360, 193, 82, 82, 82, 82, 172, 172, 82, 72, 72, 72, 72, 72, 72, 5, 29, 1, -18, '', 0, 19, 13, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 5), 10, 10, 771, 730, 370, 196, 84, 84, 84, 84, 175, 175, 84, 77, 77, 77, 77, 77, 77, 5, 31, 1, -18, '', 0, 20, 14, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 1), 10, 10, 362, 0, 205, 285, 77, 77, 77, 77, 102, 102, 77, 35, 35, 35, 35, 35, 35, 5, 20, 1, -18, '', 0, 14, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 2), 10, 10, 402, 0, 210, 290, 79, 79, 79, 79, 104, 104, 79, 40, 40, 40, 40, 40, 40, 6, 23, 1, -18, '', 0, 16, 0, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 3), 10, 10, 442, 0, 215, 295, 81, 81, 81, 81, 106, 106, 81, 45, 45, 45, 45, 45, 45, 6, 26, 1, -18, '', 0, 18, 0, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 4), 10, 10, 482, 0, 220, 300, 83, 83, 83, 83, 108, 108, 83, 50, 50, 50, 50, 50, 50, 7, 28, 1, -18, '', 0, 20, 0, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 5), 10, 10, 522, 0, 225, 305, 85, 85, 85, 85, 110, 110, 85, 55, 55, 55, 55, 55, 55, 7, 31, 1, -18, '', 0, 22, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 1), 10, 10, 662, 0, 255, 315, 87, 87, 87, 87, 122, 122, 87, 57, 57, 57, 57, 57, 57, 6, 27, 1, -18, '', 0, 22, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 2), 10, 10, 702, 0, 260, 320, 89, 89, 89, 89, 124, 124, 89, 62, 62, 62, 62, 62, 62, 7, 30, 1, -18, '', 0, 24, 0, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 3), 10, 10, 742, 0, 265, 325, 91, 91, 91, 91, 126, 126, 91, 67, 67, 67, 67, 67, 67, 7, 32, 1, -18, '', 0, 26, 0, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 4), 10, 10, 782, 0, 270, 330, 93, 93, 93, 93, 128, 128, 93, 72, 72, 72, 72, 72, 72, 8, 35, 1, -18, '', 0, 28, 0, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 5), 10, 10, 822, 0, 275, 335, 95, 95, 95, 95, 130, 130, 95, 77, 77, 77, 77, 77, 77, 8, 37, 1, -18, '', 0, 30, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 1), 10, 10, 291, 360, 133, 82, 66, 66, 66, 66, 138, 138, 66, 35, 35, 35, 35, 35, 35, 3, 21, 1, -18, '', 0, 9, 7, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 2), 10, 10, 311, 390, 136, 85, 68, 68, 68, 68, 141, 141, 68, 40, 40, 40, 40, 40, 40, 4, 22, 1, -18, '', 0, 10, 8, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 3), 10, 10, 331, 420, 140, 87, 70, 70, 70, 70, 144, 144, 70, 45, 45, 45, 45, 45, 45, 4, 24, 1, -18, '', 0, 11, 9, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 4), 10, 10, 351, 450, 143, 90, 72, 72, 72, 72, 147, 147, 72, 50, 50, 50, 50, 50, 50, 4, 25, 1, -18, '', 0, 12, 10, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 5), 10, 10, 371, 480, 146, 92, 74, 74, 74, 74, 150, 150, 74, 55, 55, 55, 55, 55, 55, 4, 27, 1, -18, '', 0, 13, 11, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 1), 10, 10, 541, 610, 163, 92, 76, 76, 76, 76, 163, 163, 76, 57, 57, 57, 57, 57, 57, 4, 25, 1, -18, '', 0, 14, 10, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 2), 10, 10, 561, 640, 166, 95, 78, 78, 78, 78, 166, 166, 78, 62, 62, 62, 62, 62, 62, 4, 27, 1, -18, '', 0, 15, 11, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 3), 10, 10, 581, 670, 170, 97, 80, 80, 80, 80, 169, 169, 80, 67, 67, 67, 67, 67, 67, 5, 28, 1, -18, '', 0, 16, 12, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 4), 10, 10, 601, 700, 173, 100, 82, 82, 82, 82, 172, 172, 82, 72, 72, 72, 72, 72, 72, 5, 29, 1, -18, '', 0, 17, 13, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 5), 10, 10, 621, 730, 176, 102, 84, 84, 84, 84, 175, 175, 84, 77, 77, 77, 77, 77, 77, 5, 31, 1, -18, '', 0, 18, 14, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 1), 11, 11, 469, 0, 380, 308, 78, 78, 78, 78, 105, 105, 78, 37, 37, 37, 37, 37, 37, 5, 24, 1, -18, '', 0, 16, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 2), 11, 11, 524, 0, 396, 314, 80, 80, 80, 80, 107, 107, 80, 42, 42, 42, 42, 42, 42, 6, 26, 1, -18, '', 0, 18, 0, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 3), 11, 11, 579, 0, 413, 319, 82, 82, 82, 82, 109, 109, 82, 47, 47, 47, 47, 47, 47, 6, 29, 1, -18, '', 0, 20, 0, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 4), 11, 11, 634, 0, 429, 325, 84, 84, 84, 84, 111, 111, 84, 52, 52, 52, 52, 52, 52, 7, 32, 1, -18, '', 0, 22, 0, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 5), 11, 11, 689, 0, 446, 330, 86, 86, 86, 86, 113, 113, 86, 57, 57, 57, 57, 57, 57, 7, 35, 1, -18, '', 0, 24, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 1), 11, 11, 854, 0, 468, 335, 88, 88, 88, 88, 125, 125, 88, 61, 61, 61, 61, 61, 61, 7, 31, 1, -18, '', 0, 26, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 2), 11, 11, 909, 0, 484, 341, 90, 90, 90, 90, 127, 127, 90, 66, 66, 66, 66, 66, 66, 7, 33, 1, -18, '', 0, 28, 0, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 3), 11, 11, 964, 0, 501, 346, 92, 92, 92, 92, 129, 129, 92, 71, 71, 71, 71, 71, 71, 8, 36, 1, -18, '', 0, 30, 0, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 4), 11, 11, 1019, 0, 517, 352, 94, 94, 94, 94, 131, 131, 94, 76, 76, 76, 76, 76, 76, 8, 39, 1, -18, '', 0, 32, 0, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 5), 11, 11, 1074, 0, 534, 357, 96, 96, 96, 96, 133, 133, 96, 81, 81, 81, 81, 81, 81, 9, 42, 1, -18, '', 0, 34, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 1), 11, 11, 388, 405, 297, 185, 67, 67, 67, 67, 141, 141, 67, 37, 37, 37, 37, 37, 37, 4, 22, 1, -18, '', 0, 10, 7, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 2), 11, 11, 421, 438, 308, 189, 69, 69, 69, 69, 144, 144, 69, 42, 42, 42, 42, 42, 42, 4, 24, 1, -18, '', 0, 11, 8, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 3), 11, 11, 454, 471, 319, 193, 71, 71, 71, 71, 147, 147, 71, 47, 47, 47, 47, 47, 47, 4, 25, 1, -18, '', 0, 12, 9, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 4), 11, 11, 487, 504, 330, 196, 73, 73, 73, 73, 150, 150, 73, 52, 52, 52, 52, 52, 52, 4, 27, 1, -18, '', 0, 13, 10, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 5), 11, 11, 520, 537, 341, 200, 75, 75, 75, 75, 153, 153, 75, 57, 57, 57, 57, 57, 57, 5, 28, 1, -18, '', 0, 14, 11, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 1), 11, 11, 718, 680, 363, 201, 77, 77, 77, 77, 166, 166, 77, 61, 61, 61, 61, 61, 61, 4, 27, 1, -18, '', 0, 16, 10, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 2), 11, 11, 751, 713, 374, 205, 79, 79, 79, 79, 169, 169, 79, 66, 66, 66, 66, 66, 66, 5, 28, 1, -18, '', 0, 17, 11, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 3), 11, 11, 784, 746, 385, 209, 81, 81, 81, 81, 172, 172, 81, 71, 71, 71, 71, 71, 71, 5, 29, 1, -18, '', 0, 18, 12, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 4), 11, 11, 817, 779, 396, 212, 83, 83, 83, 83, 175, 175, 83, 76, 76, 76, 76, 76, 76, 5, 31, 1, -18, '', 0, 19, 13, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 5), 11, 11, 850, 812, 407, 216, 85, 85, 85, 85, 178, 178, 85, 81, 81, 81, 81, 81, 81, 5, 32, 1, -18, '', 0, 20, 14, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 1), 11, 11, 400, 0, 225, 313, 78, 78, 78, 78, 105, 105, 78, 37, 37, 37, 37, 37, 37, 5, 22, 1, -18, '', 0, 14, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 2), 11, 11, 444, 0, 231, 319, 80, 80, 80, 80, 107, 107, 80, 42, 42, 42, 42, 42, 42, 6, 24, 1, -18, '', 0, 16, 0, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 3), 11, 11, 488, 0, 236, 324, 82, 82, 82, 82, 109, 109, 82, 47, 47, 47, 47, 47, 47, 6, 27, 1, -18, '', 0, 18, 0, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 4), 11, 11, 532, 0, 242, 330, 84, 84, 84, 84, 111, 111, 84, 52, 52, 52, 52, 52, 52, 7, 30, 1, -18, '', 0, 20, 0, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 5), 11, 11, 576, 0, 247, 335, 86, 86, 86, 86, 113, 113, 86, 57, 57, 57, 57, 57, 57, 7, 32, 1, -18, '', 0, 22, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 1), 11, 11, 730, 0, 280, 346, 88, 88, 88, 88, 125, 125, 88, 61, 61, 61, 61, 61, 61, 7, 28, 1, -18, '', 0, 22, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 2), 11, 11, 774, 0, 286, 352, 90, 90, 90, 90, 127, 127, 90, 66, 66, 66, 66, 66, 66, 7, 31, 1, -18, '', 0, 24, 0, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 3), 11, 11, 818, 0, 291, 357, 92, 92, 92, 92, 129, 129, 92, 71, 71, 71, 71, 71, 71, 8, 33, 1, -18, '', 0, 26, 0, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 4), 11, 11, 862, 0, 297, 363, 94, 94, 94, 94, 131, 131, 94, 76, 76, 76, 76, 76, 76, 8, 36, 1, -18, '', 0, 28, 0, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 5), 11, 11, 906, 0, 302, 368, 96, 96, 96, 96, 133, 133, 96, 81, 81, 81, 81, 81, 81, 9, 39, 1, -18, '', 0, 30, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 1), 11, 11, 321, 405, 146, 90, 67, 67, 67, 67, 141, 141, 67, 37, 37, 37, 37, 37, 37, 4, 22, 1, -18, '', 0, 9, 7, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 2), 11, 11, 343, 438, 150, 93, 69, 69, 69, 69, 144, 144, 69, 42, 42, 42, 42, 42, 42, 4, 24, 1, -18, '', 0, 10, 8, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 3), 11, 11, 365, 471, 154, 96, 71, 71, 71, 71, 147, 147, 71, 47, 47, 47, 47, 47, 47, 4, 25, 1, -18, '', 0, 11, 9, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 4), 11, 11, 387, 504, 157, 99, 73, 73, 73, 73, 150, 150, 73, 52, 52, 52, 52, 52, 52, 4, 27, 1, -18, '', 0, 12, 10, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 5), 11, 11, 409, 537, 161, 101, 75, 75, 75, 75, 153, 153, 75, 57, 57, 57, 57, 57, 57, 5, 28, 1, -18, '', 0, 13, 11, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 1), 11, 11, 596, 680, 179, 101, 77, 77, 77, 77, 166, 166, 77, 61, 61, 61, 61, 61, 61, 4, 27, 1, -18, '', 0, 14, 10, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 2), 11, 11, 618, 713, 183, 104, 79, 79, 79, 79, 169, 169, 79, 66, 66, 66, 66, 66, 66, 5, 28, 1, -18, '', 0, 15, 11, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 3), 11, 11, 640, 746, 187, 107, 81, 81, 81, 81, 172, 172, 81, 71, 71, 71, 71, 71, 71, 5, 29, 1, -18, '', 0, 16, 12, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 4), 11, 11, 662, 779, 190, 110, 83, 83, 83, 83, 175, 175, 83, 76, 76, 76, 76, 76, 76, 5, 31, 1, -18, '', 0, 17, 13, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 5), 11, 11, 684, 812, 194, 112, 85, 85, 85, 85, 178, 178, 85, 81, 81, 81, 81, 81, 81, 5, 32, 1, -18, '', 0, 18, 14, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 1), 12, 12, 514, 0, 414, 336, 80, 80, 80, 80, 108, 108, 80, 40, 40, 40, 40, 40, 40, 6, 25, 1, -18, '', 0, 17, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 2), 12, 12, 574, 0, 432, 342, 82, 82, 82, 82, 110, 110, 82, 46, 46, 46, 46, 46, 46, 6, 28, 1, -18, '', 0, 19, 0, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 3), 12, 12, 634, 0, 450, 348, 84, 84, 84, 84, 112, 112, 84, 52, 52, 52, 52, 52, 52, 7, 31, 1, -18, '', 0, 21, 0, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 4), 12, 12, 694, 0, 468, 354, 86, 86, 86, 86, 114, 114, 86, 58, 58, 58, 58, 58, 58, 7, 33, 1, -18, '', 0, 23, 0, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 5), 12, 12, 754, 0, 486, 360, 88, 88, 88, 88, 116, 116, 88, 64, 64, 64, 64, 64, 64, 8, 36, 1, -18, '', 0, 25, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 1), 12, 12, 934, 0, 510, 366, 91, 91, 91, 91, 128, 128, 91, 64, 64, 64, 64, 64, 64, 7, 32, 1, -18, '', 0, 27, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 2), 12, 12, 994, 0, 528, 372, 93, 93, 93, 93, 130, 130, 93, 70, 70, 70, 70, 70, 70, 7, 35, 1, -18, '', 0, 29, 0, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 3), 12, 12, 1054, 0, 546, 378, 95, 95, 95, 95, 132, 132, 95, 76, 76, 76, 76, 76, 76, 8, 38, 1, -18, '', 0, 31, 0, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 4), 12, 12, 1114, 0, 564, 384, 97, 97, 97, 97, 134, 134, 97, 82, 82, 82, 82, 82, 82, 8, 40, 1, -18, '', 0, 33, 0, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 5), 12, 12, 1174, 0, 582, 390, 99, 99, 99, 99, 136, 136, 99, 88, 88, 88, 88, 88, 88, 9, 43, 1, -18, '', 0, 35, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 1), 12, 12, 426, 451, 324, 202, 69, 69, 69, 69, 145, 145, 69, 40, 40, 40, 40, 40, 40, 4, 24, 1, -18, '', 0, 11, 7, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 2), 12, 12, 462, 487, 336, 206, 71, 71, 71, 71, 148, 148, 71, 46, 46, 46, 46, 46, 46, 4, 25, 1, -18, '', 0, 12, 8, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 3), 12, 12, 498, 523, 348, 210, 73, 73, 73, 73, 151, 151, 73, 52, 52, 52, 52, 52, 52, 4, 27, 1, -18, '', 0, 13, 9, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 4), 12, 12, 534, 559, 360, 214, 75, 75, 75, 75, 154, 154, 75, 58, 58, 58, 58, 58, 58, 5, 28, 1, -18, '', 0, 14, 10, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 5), 12, 12, 570, 595, 372, 218, 77, 77, 77, 77, 157, 157, 77, 64, 64, 64, 64, 64, 64, 5, 29, 1, -18, '', 0, 15, 11, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 1), 12, 12, 786, 751, 396, 220, 80, 80, 80, 80, 170, 170, 80, 64, 64, 64, 64, 64, 64, 5, 28, 1, -18, '', 0, 17, 10, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 2), 12, 12, 822, 787, 408, 224, 82, 82, 82, 82, 173, 173, 82, 70, 70, 70, 70, 70, 70, 5, 29, 1, -18, '', 0, 18, 11, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 3), 12, 12, 858, 823, 420, 228, 84, 84, 84, 84, 176, 176, 84, 76, 76, 76, 76, 76, 76, 5, 31, 1, -18, '', 0, 19, 12, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 4), 12, 12, 894, 859, 432, 232, 86, 86, 86, 86, 179, 179, 86, 82, 82, 82, 82, 82, 82, 5, 32, 1, -18, '', 0, 20, 13, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 5), 12, 12, 930, 895, 444, 236, 88, 88, 88, 88, 182, 182, 88, 88, 88, 88, 88, 88, 88, 6, 34, 1, -18, '', 0, 21, 14, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 1), 12, 12, 439, 0, 246, 342, 80, 80, 80, 80, 108, 108, 80, 40, 40, 40, 40, 40, 40, 6, 23, 1, -18, '', 0, 15, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 2), 12, 12, 487, 0, 252, 348, 82, 82, 82, 82, 110, 110, 82, 46, 46, 46, 46, 46, 46, 6, 26, 1, -18, '', 0, 17, 0, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 3), 12, 12, 535, 0, 258, 354, 84, 84, 84, 84, 112, 112, 84, 52, 52, 52, 52, 52, 52, 7, 28, 1, -18, '', 0, 19, 0, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 4), 12, 12, 583, 0, 264, 360, 86, 86, 86, 86, 114, 114, 86, 58, 58, 58, 58, 58, 58, 7, 31, 1, -18, '', 0, 21, 0, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 5), 12, 12, 631, 0, 270, 366, 88, 88, 88, 88, 116, 116, 88, 64, 64, 64, 64, 64, 64, 8, 33, 1, -18, '', 0, 23, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 1), 12, 12, 799, 0, 306, 378, 91, 91, 91, 91, 128, 128, 91, 64, 64, 64, 64, 64, 64, 7, 30, 1, -18, '', 0, 23, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 2), 12, 12, 847, 0, 312, 384, 93, 93, 93, 93, 130, 130, 93, 70, 70, 70, 70, 70, 70, 7, 32, 1, -18, '', 0, 25, 0, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 3), 12, 12, 895, 0, 318, 390, 95, 95, 95, 95, 132, 132, 95, 76, 76, 76, 76, 76, 76, 8, 35, 1, -18, '', 0, 27, 0, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 4), 12, 12, 943, 0, 324, 396, 97, 97, 97, 97, 134, 134, 97, 82, 82, 82, 82, 82, 82, 8, 37, 1, -18, '', 0, 29, 0, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 5), 12, 12, 991, 0, 330, 402, 99, 99, 99, 99, 136, 136, 99, 88, 88, 88, 88, 88, 88, 9, 40, 1, -18, '', 0, 31, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 1), 12, 12, 353, 451, 160, 99, 69, 69, 69, 69, 145, 145, 69, 40, 40, 40, 40, 40, 40, 4, 24, 1, -18, '', 0, 10, 7, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 2), 12, 12, 377, 487, 164, 102, 71, 71, 71, 71, 148, 148, 71, 46, 46, 46, 46, 46, 46, 4, 25, 1, -18, '', 0, 11, 8, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 3), 12, 12, 401, 523, 168, 105, 73, 73, 73, 73, 151, 151, 73, 52, 52, 52, 52, 52, 52, 4, 27, 1, -18, '', 0, 12, 9, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 4), 12, 12, 425, 559, 172, 108, 75, 75, 75, 75, 154, 154, 75, 58, 58, 58, 58, 58, 58, 5, 28, 1, -18, '', 0, 13, 10, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 5), 12, 12, 449, 595, 176, 111, 77, 77, 77, 77, 157, 157, 77, 64, 64, 64, 64, 64, 64, 5, 29, 1, -18, '', 0, 14, 11, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 1), 12, 12, 653, 751, 196, 111, 80, 80, 80, 80, 170, 170, 80, 64, 64, 64, 64, 64, 64, 5, 28, 1, -18, '', 0, 15, 10, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 2), 12, 12, 677, 787, 200, 114, 82, 82, 82, 82, 173, 173, 82, 70, 70, 70, 70, 70, 70, 5, 29, 1, -18, '', 0, 16, 11, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 3), 12, 12, 701, 823, 204, 117, 84, 84, 84, 84, 176, 176, 84, 76, 76, 76, 76, 76, 76, 5, 31, 1, -18, '', 0, 17, 12, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 4), 12, 12, 725, 859, 208, 120, 86, 86, 86, 86, 179, 179, 86, 82, 82, 82, 82, 82, 82, 5, 32, 1, -18, '', 0, 18, 13, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 5), 12, 12, 749, 895, 212, 123, 88, 88, 88, 88, 182, 182, 88, 88, 88, 88, 88, 88, 88, 6, 34, 1, -18, '', 0, 19, 14, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 1), 13, 13, 561, 0, 449, 364, 81, 81, 81, 81, 111, 111, 81, 42, 42, 42, 42, 42, 42, 6, 26, 1, -18, '', 0, 17, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 2), 13, 13, 626, 0, 468, 371, 83, 83, 83, 83, 113, 113, 83, 48, 48, 48, 48, 48, 48, 6, 29, 1, -18, '', 0, 19, 0, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 3), 13, 13, 691, 0, 488, 377, 85, 85, 85, 85, 115, 115, 85, 54, 54, 54, 54, 54, 54, 7, 32, 1, -18, '', 0, 21, 0, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 4), 13, 13, 756, 0, 507, 384, 87, 87, 87, 87, 117, 117, 87, 60, 60, 60, 60, 60, 60, 7, 35, 1, -18, '', 0, 23, 0, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 5), 13, 13, 821, 0, 527, 390, 89, 89, 89, 89, 119, 119, 89, 66, 66, 66, 66, 66, 66, 8, 38, 1, -18, '', 0, 25, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 1), 13, 13, 1016, 0, 553, 396, 92, 92, 92, 92, 131, 131, 92, 66, 66, 66, 66, 66, 66, 7, 33, 1, -18, '', 0, 27, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 2), 13, 13, 1081, 0, 572, 403, 94, 94, 94, 94, 133, 133, 94, 72, 72, 72, 72, 72, 72, 8, 36, 1, -18, '', 0, 29, 0, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 3), 13, 13, 1146, 0, 592, 409, 96, 96, 96, 96, 135, 135, 96, 78, 78, 78, 78, 78, 78, 8, 39, 1, -18, '', 0, 31, 0, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 4), 13, 13, 1211, 0, 611, 416, 98, 98, 98, 98, 137, 137, 98, 84, 84, 84, 84, 84, 84, 9, 42, 1, -18, '', 0, 33, 0, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 5), 13, 13, 1276, 0, 631, 422, 100, 100, 100, 100, 139, 139, 100, 90, 90, 90, 90, 90, 90, 9, 45, 1, -18, '', 0, 35, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 1), 13, 13, 464, 499, 351, 219, 70, 70, 70, 70, 148, 148, 70, 42, 42, 42, 42, 42, 42, 4, 25, 1, -18, '', 0, 11, 7, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 2), 13, 13, 503, 538, 364, 223, 72, 72, 72, 72, 151, 151, 72, 48, 48, 48, 48, 48, 48, 4, 27, 1, -18, '', 0, 12, 8, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 3), 13, 13, 542, 577, 377, 228, 74, 74, 74, 74, 154, 154, 74, 54, 54, 54, 54, 54, 54, 5, 28, 1, -18, '', 0, 13, 9, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 4), 13, 13, 581, 616, 390, 232, 76, 76, 76, 76, 157, 157, 76, 60, 60, 60, 60, 60, 60, 5, 29, 1, -18, '', 0, 14, 10, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 5), 13, 13, 620, 655, 403, 236, 78, 78, 78, 78, 160, 160, 78, 66, 66, 66, 66, 66, 66, 5, 31, 1, -18, '', 0, 15, 11, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 1), 13, 13, 854, 824, 429, 238, 81, 81, 81, 81, 173, 173, 81, 66, 66, 66, 66, 66, 66, 5, 29, 1, -18, '', 0, 17, 10, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 2), 13, 13, 893, 863, 442, 242, 83, 83, 83, 83, 176, 176, 83, 72, 72, 72, 72, 72, 72, 5, 31, 1, -18, '', 0, 18, 11, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 3), 13, 13, 932, 902, 455, 247, 85, 85, 85, 85, 179, 179, 85, 78, 78, 78, 78, 78, 78, 5, 32, 1, -18, '', 0, 19, 12, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 4), 13, 13, 971, 941, 468, 251, 87, 87, 87, 87, 182, 182, 87, 84, 84, 84, 84, 84, 84, 6, 34, 1, -18, '', 0, 20, 13, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 5), 13, 13, 1010, 980, 481, 255, 89, 89, 89, 89, 185, 185, 89, 90, 90, 90, 90, 90, 90, 6, 35, 1, -18, '', 0, 21, 14, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 1), 13, 13, 479, 0, 266, 370, 81, 81, 81, 81, 111, 111, 81, 42, 42, 42, 42, 42, 42, 6, 24, 1, -18, '', 0, 15, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 2), 13, 13, 531, 0, 273, 377, 83, 83, 83, 83, 113, 113, 83, 48, 48, 48, 48, 48, 48, 6, 27, 1, -18, '', 0, 17, 0, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 3), 13, 13, 583, 0, 279, 383, 85, 85, 85, 85, 115, 115, 85, 54, 54, 54, 54, 54, 54, 7, 30, 1, -18, '', 0, 19, 0, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 4), 13, 13, 635, 0, 286, 390, 87, 87, 87, 87, 117, 117, 87, 60, 60, 60, 60, 60, 60, 7, 32, 1, -18, '', 0, 21, 0, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 5), 13, 13, 687, 0, 292, 396, 89, 89, 89, 89, 119, 119, 89, 66, 66, 66, 66, 66, 66, 8, 35, 1, -18, '', 0, 23, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 1), 13, 13, 869, 0, 331, 409, 92, 92, 92, 92, 131, 131, 92, 66, 66, 66, 66, 66, 66, 7, 31, 1, -18, '', 0, 23, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 2), 13, 13, 921, 0, 338, 416, 94, 94, 94, 94, 133, 133, 94, 72, 72, 72, 72, 72, 72, 8, 33, 1, -18, '', 0, 25, 0, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 3), 13, 13, 973, 0, 344, 422, 96, 96, 96, 96, 135, 135, 96, 78, 78, 78, 78, 78, 78, 8, 36, 1, -18, '', 0, 27, 0, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 4), 13, 13, 1025, 0, 351, 429, 98, 98, 98, 98, 137, 137, 98, 84, 84, 84, 84, 84, 84, 9, 39, 1, -18, '', 0, 29, 0, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 5), 13, 13, 1077, 0, 357, 435, 100, 100, 100, 100, 139, 139, 100, 90, 90, 90, 90, 90, 90, 9, 41, 1, -18, '', 0, 31, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 1), 13, 13, 385, 499, 173, 107, 70, 70, 70, 70, 148, 148, 70, 42, 42, 42, 42, 42, 42, 4, 25, 1, -18, '', 0, 10, 7, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 2), 13, 13, 411, 538, 177, 110, 72, 72, 72, 72, 151, 151, 72, 48, 48, 48, 48, 48, 48, 4, 27, 1, -18, '', 0, 11, 8, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 3), 13, 13, 437, 577, 182, 113, 74, 74, 74, 74, 154, 154, 74, 54, 54, 54, 54, 54, 54, 5, 28, 1, -18, '', 0, 12, 9, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 4), 13, 13, 463, 616, 186, 117, 76, 76, 76, 76, 157, 157, 76, 60, 60, 60, 60, 60, 60, 5, 29, 1, -18, '', 0, 13, 10, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 5), 13, 13, 489, 655, 190, 120, 78, 78, 78, 78, 160, 160, 78, 66, 66, 66, 66, 66, 66, 5, 31, 1, -18, '', 0, 14, 11, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 1), 13, 13, 710, 824, 212, 120, 81, 81, 81, 81, 173, 173, 81, 66, 66, 66, 66, 66, 66, 5, 29, 1, -18, '', 0, 15, 10, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 2), 13, 13, 736, 863, 216, 123, 83, 83, 83, 83, 176, 176, 83, 72, 72, 72, 72, 72, 72, 5, 31, 1, -18, '', 0, 16, 11, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 3), 13, 13, 762, 902, 221, 126, 85, 85, 85, 85, 179, 179, 85, 78, 78, 78, 78, 78, 78, 5, 32, 1, -18, '', 0, 17, 12, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 4), 13, 13, 788, 941, 225, 130, 87, 87, 87, 87, 182, 182, 87, 84, 84, 84, 84, 84, 84, 6, 34, 1, -18, '', 0, 18, 13, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 5), 13, 13, 814, 980, 229, 133, 89, 89, 89, 89, 185, 185, 89, 90, 90, 90, 90, 90, 90, 6, 35, 1, -18, '', 0, 19, 14, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 1), 14, 14, 609, 0, 483, 392, 83, 83, 83, 83, 114, 114, 83, 44, 44, 44, 44, 44, 44, 6, 28, 1, -18, '', 0, 17, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 2), 14, 14, 679, 0, 504, 399, 85, 85, 85, 85, 116, 116, 85, 50, 50, 50, 50, 50, 50, 7, 31, 1, -18, '', 0, 19, 0, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 3), 14, 14, 749, 0, 525, 406, 87, 87, 87, 87, 118, 118, 87, 56, 56, 56, 56, 56, 56, 7, 33, 1, -18, '', 0, 21, 0, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 4), 14, 14, 819, 0, 546, 413, 89, 89, 89, 89, 120, 120, 89, 62, 62, 62, 62, 62, 62, 8, 36, 1, -18, '', 0, 23, 0, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 5), 14, 14, 889, 0, 567, 420, 91, 91, 91, 91, 122, 122, 91, 68, 68, 68, 68, 68, 68, 8, 39, 1, -18, '', 0, 25, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 1), 14, 14, 1099, 0, 595, 427, 95, 95, 95, 95, 134, 134, 95, 70, 70, 70, 70, 70, 70, 7, 35, 1, -18, '', 0, 27, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 2), 14, 14, 1169, 0, 616, 434, 97, 97, 97, 97, 136, 136, 97, 76, 76, 76, 76, 76, 76, 8, 38, 1, -18, '', 0, 29, 0, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 3), 14, 14, 1239, 0, 637, 441, 99, 99, 99, 99, 138, 138, 99, 82, 82, 82, 82, 82, 82, 8, 40, 1, -18, '', 0, 31, 0, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 4), 14, 14, 1309, 0, 658, 448, 101, 101, 101, 101, 140, 140, 101, 88, 88, 88, 88, 88, 88, 9, 43, 1, -18, '', 0, 33, 0, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 5), 14, 14, 1379, 0, 679, 455, 103, 103, 103, 103, 142, 142, 103, 94, 94, 94, 94, 94, 94, 9, 46, 1, -18, '', 0, 35, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 1), 14, 14, 504, 549, 378, 235, 72, 72, 72, 72, 152, 152, 72, 44, 44, 44, 44, 44, 44, 4, 27, 1, -18, '', 0, 11, 7, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 2), 14, 14, 546, 591, 392, 240, 74, 74, 74, 74, 155, 155, 74, 50, 50, 50, 50, 50, 50, 5, 28, 1, -18, '', 0, 12, 8, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 3), 14, 14, 588, 633, 406, 245, 76, 76, 76, 76, 158, 158, 76, 56, 56, 56, 56, 56, 56, 5, 29, 1, -18, '', 0, 13, 9, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 4), 14, 14, 630, 675, 420, 249, 78, 78, 78, 78, 161, 161, 78, 62, 62, 62, 62, 62, 62, 5, 31, 1, -18, '', 0, 14, 10, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 5), 14, 14, 672, 717, 434, 254, 80, 80, 80, 80, 164, 164, 80, 68, 68, 68, 68, 68, 68, 5, 32, 1, -18, '', 0, 15, 11, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 1), 14, 14, 924, 899, 462, 256, 84, 84, 84, 84, 177, 177, 84, 70, 70, 70, 70, 70, 70, 5, 31, 1, -18, '', 0, 17, 10, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 2), 14, 14, 966, 941, 476, 261, 86, 86, 86, 86, 180, 180, 86, 76, 76, 76, 76, 76, 76, 5, 32, 1, -18, '', 0, 18, 11, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 3), 14, 14, 1008, 983, 490, 266, 88, 88, 88, 88, 183, 183, 88, 82, 82, 82, 82, 82, 82, 6, 34, 1, -18, '', 0, 19, 12, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 4), 14, 14, 1050, 1025, 504, 270, 90, 90, 90, 90, 186, 186, 90, 88, 88, 88, 88, 88, 88, 6, 35, 1, -18, '', 0, 20, 13, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 5), 14, 14, 1092, 1067, 518, 275, 92, 92, 92, 92, 189, 189, 92, 94, 94, 94, 94, 94, 94, 6, 36, 1, -18, '', 0, 21, 14, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 1), 14, 14, 520, 0, 287, 399, 83, 83, 83, 83, 114, 114, 83, 44, 44, 44, 44, 44, 44, 6, 26, 1, -18, '', 0, 15, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 2), 14, 14, 576, 0, 294, 406, 85, 85, 85, 85, 116, 116, 85, 50, 50, 50, 50, 50, 50, 7, 28, 1, -18, '', 0, 17, 0, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 3), 14, 14, 632, 0, 301, 413, 87, 87, 87, 87, 118, 118, 87, 56, 56, 56, 56, 56, 56, 7, 31, 1, -18, '', 0, 19, 0, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 4), 14, 14, 688, 0, 308, 420, 89, 89, 89, 89, 120, 120, 89, 62, 62, 62, 62, 62, 62, 8, 33, 1, -18, '', 0, 21, 0, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 5), 14, 14, 744, 0, 315, 427, 91, 91, 91, 91, 122, 122, 91, 68, 68, 68, 68, 68, 68, 8, 36, 1, -18, '', 0, 23, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 1), 14, 14, 940, 0, 357, 441, 95, 95, 95, 95, 134, 134, 95, 70, 70, 70, 70, 70, 70, 7, 32, 1, -18, '', 0, 23, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 2), 14, 14, 996, 0, 364, 448, 97, 97, 97, 97, 136, 136, 97, 76, 76, 76, 76, 76, 76, 8, 35, 1, -18, '', 0, 25, 0, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 3), 14, 14, 1052, 0, 371, 455, 99, 99, 99, 99, 138, 138, 99, 82, 82, 82, 82, 82, 82, 8, 37, 1, -18, '', 0, 27, 0, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 4), 14, 14, 1108, 0, 378, 462, 101, 101, 101, 101, 140, 140, 101, 88, 88, 88, 88, 88, 88, 9, 40, 1, -18, '', 0, 29, 0, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 5), 14, 14, 1164, 0, 385, 469, 103, 103, 103, 103, 142, 142, 103, 94, 94, 94, 94, 94, 94, 9, 43, 1, -18, '', 0, 31, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 1), 14, 14, 418, 549, 186, 115, 72, 72, 72, 72, 152, 152, 72, 44, 44, 44, 44, 44, 44, 4, 27, 1, -18, '', 0, 10, 7, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 2), 14, 14, 446, 591, 191, 119, 74, 74, 74, 74, 155, 155, 74, 50, 50, 50, 50, 50, 50, 5, 28, 1, -18, '', 0, 11, 8, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 3), 14, 14, 474, 633, 196, 122, 76, 76, 76, 76, 158, 158, 76, 56, 56, 56, 56, 56, 56, 5, 29, 1, -18, '', 0, 12, 9, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 4), 14, 14, 502, 675, 200, 126, 78, 78, 78, 78, 161, 161, 78, 62, 62, 62, 62, 62, 62, 5, 31, 1, -18, '', 0, 13, 10, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 5), 14, 14, 530, 717, 205, 129, 80, 80, 80, 80, 164, 164, 80, 68, 68, 68, 68, 68, 68, 5, 32, 1, -18, '', 0, 14, 11, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 1), 14, 14, 768, 899, 228, 129, 84, 84, 84, 84, 177, 177, 84, 70, 70, 70, 70, 70, 70, 5, 31, 1, -18, '', 0, 15, 10, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 2), 14, 14, 796, 941, 233, 133, 86, 86, 86, 86, 180, 180, 86, 76, 76, 76, 76, 76, 76, 5, 32, 1, -18, '', 0, 16, 11, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 3), 14, 14, 824, 983, 238, 136, 88, 88, 88, 88, 183, 183, 88, 82, 82, 82, 82, 82, 82, 6, 34, 1, -18, '', 0, 17, 12, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 4), 14, 14, 852, 1025, 242, 140, 90, 90, 90, 90, 186, 186, 90, 88, 88, 88, 88, 88, 88, 6, 35, 1, -18, '', 0, 18, 13, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 5), 14, 14, 880, 1067, 247, 143, 92, 92, 92, 92, 189, 189, 92, 94, 94, 94, 94, 94, 94, 6, 36, 1, -18, '', 0, 19, 14, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 1), 15, 15, 658, 0, 518, 420, 85, 85, 85, 85, 117, 117, 85, 46, 46, 46, 46, 46, 46, 6, 29, 1, -18, '', 0, 18, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 2), 15, 15, 733, 0, 540, 428, 87, 87, 87, 87, 119, 119, 87, 52, 52, 52, 52, 52, 52, 7, 32, 1, -18, '', 0, 20, 0, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 3), 15, 15, 808, 0, 563, 435, 89, 89, 89, 89, 121, 121, 89, 58, 58, 58, 58, 58, 58, 7, 35, 1, -18, '', 0, 22, 0, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 4), 15, 15, 883, 0, 585, 443, 91, 91, 91, 91, 123, 123, 91, 64, 64, 64, 64, 64, 64, 8, 38, 1, -18, '', 0, 24, 0, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 5), 15, 15, 958, 0, 608, 450, 93, 93, 93, 93, 125, 125, 93, 70, 70, 70, 70, 70, 70, 8, 40, 1, -18, '', 0, 26, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 1), 15, 15, 1183, 0, 638, 457, 97, 97, 97, 97, 137, 137, 97, 72, 72, 72, 72, 72, 72, 8, 36, 1, -18, '', 0, 28, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 2), 15, 15, 1258, 0, 660, 465, 99, 99, 99, 99, 139, 139, 99, 78, 78, 78, 78, 78, 78, 8, 39, 1, -18, '', 0, 30, 0, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 3), 15, 15, 1333, 0, 683, 472, 101, 101, 101, 101, 141, 141, 101, 84, 84, 84, 84, 84, 84, 9, 42, 1, -18, '', 0, 32, 0, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 4), 15, 15, 1408, 0, 705, 480, 103, 103, 103, 103, 143, 143, 103, 90, 90, 90, 90, 90, 90, 9, 45, 1, -18, '', 0, 34, 0, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 5), 15, 15, 1483, 0, 728, 487, 105, 105, 105, 105, 145, 145, 105, 96, 96, 96, 96, 96, 96, 10, 47, 1, -18, '', 0, 36, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 1), 15, 15, 544, 600, 405, 253, 74, 74, 74, 74, 155, 155, 74, 46, 46, 46, 46, 46, 46, 5, 28, 1, -18, '', 0, 11, 8, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 2), 15, 15, 589, 645, 420, 258, 76, 76, 76, 76, 158, 158, 76, 52, 52, 52, 52, 52, 52, 5, 29, 1, -18, '', 0, 12, 9, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 3), 15, 15, 634, 690, 435, 263, 78, 78, 78, 78, 161, 161, 78, 58, 58, 58, 58, 58, 58, 5, 31, 1, -18, '', 0, 13, 10, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 4), 15, 15, 679, 735, 450, 268, 80, 80, 80, 80, 164, 164, 80, 64, 64, 64, 64, 64, 64, 5, 32, 1, -18, '', 0, 14, 11, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 5), 15, 15, 724, 780, 465, 273, 82, 82, 82, 82, 167, 167, 82, 70, 70, 70, 70, 70, 70, 6, 34, 1, -18, '', 0, 15, 12, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 1), 15, 15, 994, 975, 495, 275, 86, 86, 86, 86, 180, 180, 86, 72, 72, 72, 72, 72, 72, 5, 32, 1, -18, '', 0, 17, 11, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 2), 15, 15, 1039, 1020, 510, 280, 88, 88, 88, 88, 183, 183, 88, 78, 78, 78, 78, 78, 78, 6, 34, 1, -18, '', 0, 18, 12, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 3), 15, 15, 1084, 1065, 525, 285, 90, 90, 90, 90, 186, 186, 90, 84, 84, 84, 84, 84, 84, 6, 35, 1, -18, '', 0, 19, 13, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 4), 15, 15, 1129, 1110, 540, 290, 92, 92, 92, 92, 189, 189, 92, 90, 90, 90, 90, 90, 90, 6, 36, 1, -18, '', 0, 20, 14, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 5), 15, 15, 1174, 1155, 555, 295, 94, 94, 94, 94, 192, 192, 94, 96, 96, 96, 96, 96, 96, 6, 38, 1, -18, '', 0, 21, 15, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 1), 15, 15, 562, 0, 307, 427, 85, 85, 85, 85, 117, 117, 85, 46, 46, 46, 46, 46, 46, 6, 27, 1, -18, '', 0, 16, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 2), 15, 15, 622, 0, 315, 435, 87, 87, 87, 87, 119, 119, 87, 52, 52, 52, 52, 52, 52, 7, 30, 1, -18, '', 0, 18, 0, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 3), 15, 15, 682, 0, 322, 442, 89, 89, 89, 89, 121, 121, 89, 58, 58, 58, 58, 58, 58, 7, 32, 1, -18, '', 0, 20, 0, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 4), 15, 15, 742, 0, 330, 450, 91, 91, 91, 91, 123, 123, 91, 64, 64, 64, 64, 64, 64, 8, 35, 1, -18, '', 0, 22, 0, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 5), 15, 15, 802, 0, 337, 457, 93, 93, 93, 93, 125, 125, 93, 70, 70, 70, 70, 70, 70, 8, 37, 1, -18, '', 0, 24, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 1), 15, 15, 1012, 0, 382, 472, 97, 97, 97, 97, 137, 137, 97, 72, 72, 72, 72, 72, 72, 8, 33, 1, -18, '', 0, 24, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 2), 15, 15, 1072, 0, 390, 480, 99, 99, 99, 99, 139, 139, 99, 78, 78, 78, 78, 78, 78, 8, 36, 1, -18, '', 0, 26, 0, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 3), 15, 15, 1132, 0, 397, 487, 101, 101, 101, 101, 141, 141, 101, 84, 84, 84, 84, 84, 84, 9, 39, 1, -18, '', 0, 28, 0, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 4), 15, 15, 1192, 0, 405, 495, 103, 103, 103, 103, 143, 143, 103, 90, 90, 90, 90, 90, 90, 9, 41, 1, -18, '', 0, 30, 0, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 5), 15, 15, 1252, 0, 412, 502, 105, 105, 105, 105, 145, 145, 105, 96, 96, 96, 96, 96, 96, 10, 44, 1, -18, '', 0, 32, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 1), 15, 15, 452, 600, 200, 123, 73, 73, 73, 73, 155, 155, 73, 46, 46, 46, 46, 46, 46, 5, 28, 1, -18, '', 0, 10, 8, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 2), 15, 15, 482, 645, 205, 127, 75, 75, 75, 75, 158, 158, 75, 52, 52, 52, 52, 52, 52, 5, 29, 1, -18, '', 0, 11, 9, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 3), 15, 15, 512, 690, 210, 131, 77, 77, 77, 77, 161, 161, 77, 58, 58, 58, 58, 58, 58, 5, 31, 1, -18, '', 0, 12, 10, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 4), 15, 15, 542, 735, 215, 135, 79, 79, 79, 79, 164, 164, 79, 64, 64, 64, 64, 64, 64, 5, 32, 1, -18, '', 0, 13, 11, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 5), 15, 15, 572, 780, 220, 138, 81, 81, 81, 81, 167, 167, 81, 70, 70, 70, 70, 70, 70, 6, 34, 1, -18, '', 0, 14, 12, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 1), 15, 15, 827, 975, 245, 138, 85, 85, 85, 85, 180, 180, 85, 72, 72, 72, 72, 72, 72, 5, 32, 1, -18, '', 0, 15, 11, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 2), 15, 15, 857, 1020, 250, 142, 87, 87, 87, 87, 183, 183, 87, 78, 78, 78, 78, 78, 78, 6, 34, 1, -18, '', 0, 16, 12, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 3), 15, 15, 887, 1065, 255, 146, 89, 89, 89, 89, 186, 186, 89, 84, 84, 84, 84, 84, 84, 6, 35, 1, -18, '', 0, 17, 13, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 4), 15, 15, 917, 1110, 260, 150, 91, 91, 91, 91, 189, 189, 91, 90, 90, 90, 90, 90, 90, 6, 36, 1, -18, '', 0, 18, 14, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 5), 15, 15, 947, 1155, 265, 153, 93, 93, 93, 93, 192, 192, 93, 96, 96, 96, 96, 96, 96, 6, 38, 1, -18, '', 0, 19, 15, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 1), 16, 16, 708, 0, 552, 448, 87, 87, 87, 87, 120, 120, 87, 49, 49, 49, 49, 49, 49, 7, 31, 1, -18, '', 0, 18, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 2), 16, 16, 788, 0, 576, 456, 89, 89, 89, 89, 122, 122, 89, 56, 56, 56, 56, 56, 56, 7, 33, 1, -18, '', 0, 20, 0, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 3), 16, 16, 868, 0, 600, 464, 91, 91, 91, 91, 124, 124, 91, 63, 63, 63, 63, 63, 63, 8, 36, 1, -18, '', 0, 22, 0, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 4), 16, 16, 948, 0, 624, 472, 93, 93, 93, 93, 126, 126, 93, 70, 70, 70, 70, 70, 70, 8, 39, 1, -18, '', 0, 24, 0, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 5), 16, 16, 1028, 0, 648, 480, 95, 95, 95, 95, 128, 128, 95, 77, 77, 77, 77, 77, 77, 9, 42, 1, -18, '', 0, 26, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 1), 16, 16, 1268, 0, 680, 488, 100, 100, 100, 100, 140, 140, 100, 75, 75, 75, 75, 75, 75, 8, 38, 1, -18, '', 0, 28, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 2), 16, 16, 1348, 0, 704, 496, 102, 102, 102, 102, 142, 142, 102, 82, 82, 82, 82, 82, 82, 8, 40, 1, -18, '', 0, 30, 0, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 3), 16, 16, 1428, 0, 728, 504, 104, 104, 104, 104, 144, 144, 104, 89, 89, 89, 89, 89, 89, 9, 43, 1, -18, '', 0, 32, 0, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 4), 16, 16, 1508, 0, 752, 512, 106, 106, 106, 106, 146, 146, 106, 96, 96, 96, 96, 96, 96, 9, 46, 1, -18, '', 0, 34, 0, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 5), 16, 16, 1588, 0, 776, 520, 108, 108, 108, 108, 148, 148, 108, 103, 103, 103, 103, 103, 103, 10, 49, 1, -18, '', 0, 36, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 1), 16, 16, 586, 653, 432, 269, 76, 76, 76, 76, 159, 159, 76, 49, 49, 49, 49, 49, 49, 5, 29, 1, -18, '', 0, 12, 8, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 2), 16, 16, 634, 701, 448, 274, 78, 78, 78, 78, 162, 162, 78, 56, 56, 56, 56, 56, 56, 5, 31, 1, -18, '', 0, 13, 9, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 3), 16, 16, 682, 749, 464, 280, 80, 80, 80, 80, 165, 165, 80, 63, 63, 63, 63, 63, 63, 5, 32, 1, -18, '', 0, 14, 10, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 4), 16, 16, 730, 797, 480, 285, 82, 82, 82, 82, 168, 168, 82, 70, 70, 70, 70, 70, 70, 6, 34, 1, -18, '', 0, 15, 11, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 5), 16, 16, 778, 845, 496, 290, 84, 84, 84, 84, 171, 171, 84, 77, 77, 77, 77, 77, 77, 6, 35, 1, -18, '', 0, 16, 12, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 1), 16, 16, 1066, 1053, 528, 293, 89, 89, 89, 89, 184, 184, 89, 75, 75, 75, 75, 75, 75, 6, 34, 1, -18, '', 0, 18, 11, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 2), 16, 16, 1114, 1101, 544, 298, 91, 91, 91, 91, 187, 187, 91, 82, 82, 82, 82, 82, 82, 6, 35, 1, -18, '', 0, 19, 12, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 3), 16, 16, 1162, 1149, 560, 304, 93, 93, 93, 93, 190, 190, 93, 89, 89, 89, 89, 89, 89, 6, 36, 1, -18, '', 0, 20, 13, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 4), 16, 16, 1210, 1197, 576, 309, 95, 95, 95, 95, 193, 193, 95, 96, 96, 96, 96, 96, 96, 6, 38, 1, -18, '', 0, 21, 14, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 5), 16, 16, 1258, 1245, 592, 314, 97, 97, 97, 97, 196, 196, 97, 103, 103, 103, 103, 103, 103, 7, 39, 1, -18, '', 0, 22, 15, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 1), 16, 16, 605, 0, 328, 456, 87, 87, 87, 87, 120, 120, 87, 49, 49, 49, 49, 49, 49, 7, 28, 1, -18, '', 0, 16, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 2), 16, 16, 669, 0, 336, 464, 89, 89, 89, 89, 122, 122, 89, 56, 56, 56, 56, 56, 56, 7, 31, 1, -18, '', 0, 18, 0, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 3), 16, 16, 733, 0, 344, 472, 91, 91, 91, 91, 124, 124, 91, 63, 63, 63, 63, 63, 63, 8, 33, 1, -18, '', 0, 20, 0, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 4), 16, 16, 797, 0, 352, 480, 93, 93, 93, 93, 126, 126, 93, 70, 70, 70, 70, 70, 70, 8, 36, 1, -18, '', 0, 22, 0, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 5), 16, 16, 861, 0, 360, 488, 95, 95, 95, 95, 128, 128, 95, 77, 77, 77, 77, 77, 77, 9, 39, 1, -18, '', 0, 24, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 1), 16, 16, 1085, 0, 408, 504, 100, 100, 100, 100, 140, 140, 100, 75, 75, 75, 75, 75, 75, 8, 35, 1, -18, '', 0, 24, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 2), 16, 16, 1149, 0, 416, 512, 102, 102, 102, 102, 142, 142, 102, 82, 82, 82, 82, 82, 82, 8, 37, 1, -18, '', 0, 26, 0, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 3), 16, 16, 1213, 0, 424, 520, 104, 104, 104, 104, 144, 144, 104, 89, 89, 89, 89, 89, 89, 9, 40, 1, -18, '', 0, 28, 0, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 4), 16, 16, 1277, 0, 432, 528, 106, 106, 106, 106, 146, 146, 106, 96, 96, 96, 96, 96, 96, 9, 43, 1, -18, '', 0, 30, 0, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 5), 16, 16, 1341, 0, 440, 536, 108, 108, 108, 108, 148, 148, 108, 103, 103, 103, 103, 103, 103, 10, 45, 1, -18, '', 0, 32, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 1), 16, 16, 487, 653, 213, 132, 76, 76, 76, 76, 159, 159, 76, 49, 49, 49, 49, 49, 49, 5, 29, 1, -18, '', 0, 11, 8, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 2), 16, 16, 519, 701, 218, 136, 78, 78, 78, 78, 162, 162, 78, 56, 56, 56, 56, 56, 56, 5, 31, 1, -18, '', 0, 12, 9, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 3), 16, 16, 551, 749, 224, 140, 80, 80, 80, 80, 165, 165, 80, 63, 63, 63, 63, 63, 63, 5, 32, 1, -18, '', 0, 13, 10, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 4), 16, 16, 583, 797, 229, 144, 82, 82, 82, 82, 168, 168, 82, 70, 70, 70, 70, 70, 70, 6, 34, 1, -18, '', 0, 14, 11, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 5), 16, 16, 615, 845, 234, 148, 84, 84, 84, 84, 171, 171, 84, 77, 77, 77, 77, 77, 77, 6, 35, 1, -18, '', 0, 15, 12, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 1), 16, 16, 887, 1053, 261, 148, 89, 89, 89, 89, 184, 184, 89, 75, 75, 75, 75, 75, 75, 6, 34, 1, -18, '', 0, 16, 11, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 2), 16, 16, 919, 1101, 266, 152, 91, 91, 91, 91, 187, 187, 91, 82, 82, 82, 82, 82, 82, 6, 35, 1, -18, '', 0, 17, 12, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 3), 16, 16, 951, 1149, 272, 156, 93, 93, 93, 93, 190, 190, 93, 89, 89, 89, 89, 89, 89, 6, 36, 1, -18, '', 0, 18, 13, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 4), 16, 16, 983, 1197, 277, 160, 95, 95, 95, 95, 193, 193, 95, 96, 96, 96, 96, 96, 96, 6, 38, 1, -18, '', 0, 19, 14, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 5), 16, 16, 1015, 1245, 282, 164, 97, 97, 97, 97, 196, 196, 97, 103, 103, 103, 103, 103, 103, 7, 39, 1, -18, '', 0, 20, 15, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 1), 17, 17, 760, 0, 587, 476, 89, 89, 89, 89, 123, 123, 89, 51, 51, 51, 51, 51, 51, 7, 32, 2, -18, '', 0, 18, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 2), 17, 17, 845, 0, 612, 485, 91, 91, 91, 91, 125, 125, 91, 58, 58, 58, 58, 58, 58, 7, 35, 2, -18, '', 0, 20, 0, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 3), 17, 17, 930, 0, 638, 493, 93, 93, 93, 93, 127, 127, 93, 65, 65, 65, 65, 65, 65, 8, 38, 2, -18, '', 0, 22, 0, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 4), 17, 17, 1015, 0, 663, 502, 95, 95, 95, 95, 129, 129, 95, 72, 72, 72, 72, 72, 72, 8, 40, 2, -18, '', 0, 24, 0, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 5), 17, 17, 1100, 0, 689, 510, 97, 97, 97, 97, 131, 131, 97, 79, 79, 79, 79, 79, 79, 9, 43, 2, -18, '', 0, 26, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 1), 17, 17, 1355, 0, 723, 518, 102, 102, 102, 102, 143, 143, 102, 79, 79, 79, 79, 79, 79, 8, 39, 2, -18, '', 0, 28, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 2), 17, 17, 1440, 0, 748, 527, 104, 104, 104, 104, 145, 145, 104, 86, 86, 86, 86, 86, 86, 9, 42, 2, -18, '', 0, 30, 0, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 3), 17, 17, 1525, 0, 774, 535, 106, 106, 106, 106, 147, 147, 106, 93, 93, 93, 93, 93, 93, 9, 45, 2, -18, '', 0, 32, 0, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 4), 17, 17, 1610, 0, 799, 544, 108, 108, 108, 108, 149, 149, 108, 100, 100, 100, 100, 100, 100, 10, 47, 2, -18, '', 0, 34, 0, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 5), 17, 17, 1695, 0, 825, 552, 110, 110, 110, 110, 151, 151, 110, 107, 107, 107, 107, 107, 107, 10, 50, 2, -18, '', 0, 36, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 1), 17, 17, 628, 707, 459, 286, 78, 78, 78, 78, 162, 162, 78, 51, 51, 51, 51, 51, 51, 5, 31, 1, -18, '', 0, 12, 8, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 2), 17, 17, 679, 758, 476, 292, 80, 80, 80, 80, 165, 165, 80, 58, 58, 58, 58, 58, 58, 5, 32, 1, -18, '', 0, 13, 9, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 3), 17, 17, 730, 809, 493, 298, 82, 82, 82, 82, 168, 168, 82, 65, 65, 65, 65, 65, 65, 6, 34, 1, -18, '', 0, 14, 10, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 4), 17, 17, 781, 860, 510, 303, 84, 84, 84, 84, 171, 171, 84, 72, 72, 72, 72, 72, 72, 6, 35, 1, -18, '', 0, 15, 11, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 5), 17, 17, 832, 911, 527, 309, 86, 86, 86, 86, 174, 174, 86, 79, 79, 79, 79, 79, 79, 6, 36, 1, -18, '', 0, 16, 12, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 1), 17, 17, 1138, 1132, 561, 311, 91, 91, 91, 91, 187, 187, 91, 79, 79, 79, 79, 79, 79, 6, 35, 1, -18, '', 0, 18, 11, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 2), 17, 17, 1189, 1183, 578, 317, 93, 93, 93, 93, 190, 190, 93, 86, 86, 86, 86, 86, 86, 6, 36, 1, -18, '', 0, 19, 12, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 3), 17, 17, 1240, 1234, 595, 323, 95, 95, 95, 95, 193, 193, 95, 93, 93, 93, 93, 93, 93, 6, 38, 1, -18, '', 0, 20, 13, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 4), 17, 17, 1291, 1285, 612, 328, 97, 97, 97, 97, 196, 196, 97, 100, 100, 100, 100, 100, 100, 7, 39, 1, -18, '', 0, 21, 14, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 5), 17, 17, 1342, 1336, 629, 334, 99, 99, 99, 99, 199, 199, 99, 107, 107, 107, 107, 107, 107, 7, 41, 1, -18, '', 0, 22, 15, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 1), 17, 17, 649, 0, 348, 484, 89, 89, 89, 89, 123, 123, 89, 51, 51, 51, 51, 51, 51, 7, 30, 2, -18, '', 0, 16, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 2), 17, 17, 717, 0, 357, 493, 91, 91, 91, 91, 125, 125, 91, 58, 58, 58, 58, 58, 58, 7, 32, 2, -18, '', 0, 18, 0, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 3), 17, 17, 785, 0, 365, 501, 93, 93, 93, 93, 127, 127, 93, 65, 65, 65, 65, 65, 65, 8, 35, 2, -18, '', 0, 20, 0, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 4), 17, 17, 853, 0, 374, 510, 95, 95, 95, 95, 129, 129, 95, 72, 72, 72, 72, 72, 72, 8, 37, 2, -18, '', 0, 22, 0, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 5), 17, 17, 921, 0, 382, 518, 97, 97, 97, 97, 131, 131, 97, 79, 79, 79, 79, 79, 79, 9, 40, 2, -18, '', 0, 24, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 1), 17, 17, 1159, 0, 433, 535, 102, 102, 102, 102, 143, 143, 102, 79, 79, 79, 79, 79, 79, 8, 36, 2, -18, '', 0, 24, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 2), 17, 17, 1227, 0, 442, 544, 104, 104, 104, 104, 145, 145, 104, 86, 86, 86, 86, 86, 86, 9, 39, 2, -18, '', 0, 26, 0, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 3), 17, 17, 1295, 0, 450, 552, 106, 106, 106, 106, 147, 147, 106, 93, 93, 93, 93, 93, 93, 9, 41, 2, -18, '', 0, 28, 0, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 4), 17, 17, 1363, 0, 459, 561, 108, 108, 108, 108, 149, 149, 108, 100, 100, 100, 100, 100, 100, 10, 44, 2, -18, '', 0, 30, 0, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 5), 17, 17, 1431, 0, 467, 569, 110, 110, 110, 110, 151, 151, 110, 107, 107, 107, 107, 107, 107, 10, 46, 2, -18, '', 0, 32, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 1), 17, 17, 523, 707, 226, 140, 77, 77, 77, 77, 162, 162, 77, 51, 51, 51, 51, 51, 51, 5, 31, 1, -18, '', 0, 11, 8, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 2), 17, 17, 557, 758, 232, 144, 79, 79, 79, 79, 165, 165, 79, 58, 58, 58, 58, 58, 58, 5, 32, 1, -18, '', 0, 12, 9, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 3), 17, 17, 591, 809, 238, 148, 81, 81, 81, 81, 168, 168, 81, 65, 65, 65, 65, 65, 65, 6, 34, 1, -18, '', 0, 13, 10, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 4), 17, 17, 625, 860, 243, 153, 83, 83, 83, 83, 171, 171, 83, 72, 72, 72, 72, 72, 72, 6, 35, 1, -18, '', 0, 14, 11, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 5), 17, 17, 659, 911, 249, 157, 85, 85, 85, 85, 174, 174, 85, 79, 79, 79, 79, 79, 79, 6, 36, 1, -18, '', 0, 15, 12, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 1), 17, 17, 948, 1132, 277, 157, 90, 90, 90, 90, 187, 187, 90, 79, 79, 79, 79, 79, 79, 6, 35, 1, -18, '', 0, 16, 11, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 2), 17, 17, 982, 1183, 283, 161, 92, 92, 92, 92, 190, 190, 92, 86, 86, 86, 86, 86, 86, 6, 36, 1, -18, '', 0, 17, 12, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 3), 17, 17, 1016, 1234, 289, 165, 94, 94, 94, 94, 193, 193, 94, 93, 93, 93, 93, 93, 93, 6, 38, 1, -18, '', 0, 18, 13, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 4), 17, 17, 1050, 1285, 294, 170, 96, 96, 96, 96, 196, 196, 96, 100, 100, 100, 100, 100, 100, 7, 39, 1, -18, '', 0, 19, 14, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 5), 17, 17, 1084, 1336, 300, 174, 98, 98, 98, 98, 199, 199, 98, 107, 107, 107, 107, 107, 107, 7, 41, 1, -18, '', 0, 20, 15, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 1), 18, 18, 813, 0, 621, 504, 92, 92, 92, 92, 126, 126, 92, 53, 53, 53, 53, 53, 53, 7, 33, 2, -18, '', 0, 19, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 2), 18, 18, 903, 0, 648, 513, 94, 94, 94, 94, 128, 128, 94, 60, 60, 60, 60, 60, 60, 8, 36, 2, -18, '', 0, 21, 0, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 3), 18, 18, 993, 0, 675, 522, 96, 96, 96, 96, 130, 130, 96, 67, 67, 67, 67, 67, 67, 8, 39, 2, -18, '', 0, 23, 0, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 4), 18, 18, 1083, 0, 702, 531, 98, 98, 98, 98, 132, 132, 98, 74, 74, 74, 74, 74, 74, 9, 42, 2, -18, '', 0, 25, 0, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 5), 18, 18, 1173, 0, 729, 540, 100, 100, 100, 100, 134, 134, 100, 81, 81, 81, 81, 81, 81, 9, 45, 2, -18, '', 0, 27, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 1), 18, 18, 1443, 0, 765, 549, 106, 106, 106, 106, 146, 146, 106, 81, 81, 81, 81, 81, 81, 8, 40, 2, -18, '', 0, 29, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 2), 18, 18, 1533, 0, 792, 558, 108, 108, 108, 108, 148, 148, 108, 88, 88, 88, 88, 88, 88, 9, 43, 2, -18, '', 0, 31, 0, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 3), 18, 18, 1623, 0, 819, 567, 110, 110, 110, 110, 150, 150, 110, 95, 95, 95, 95, 95, 95, 9, 46, 2, -18, '', 0, 33, 0, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 4), 18, 18, 1713, 0, 846, 576, 112, 112, 112, 112, 152, 152, 112, 102, 102, 102, 102, 102, 102, 10, 49, 2, -18, '', 0, 35, 0, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 5), 18, 18, 1803, 0, 873, 585, 114, 114, 114, 114, 154, 154, 114, 109, 109, 109, 109, 109, 109, 10, 52, 2, -18, '', 0, 37, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 1), 18, 18, 672, 763, 486, 303, 80, 80, 80, 80, 166, 166, 80, 53, 53, 53, 53, 53, 53, 5, 32, 1, -18, '', 0, 12, 8, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 2), 18, 18, 726, 817, 504, 309, 82, 82, 82, 82, 169, 169, 82, 60, 60, 60, 60, 60, 60, 6, 34, 1, -18, '', 0, 13, 9, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 3), 18, 18, 780, 871, 522, 315, 84, 84, 84, 84, 172, 172, 84, 67, 67, 67, 67, 67, 67, 6, 35, 1, -18, '', 0, 14, 10, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 4), 18, 18, 834, 925, 540, 321, 86, 86, 86, 86, 175, 175, 86, 74, 74, 74, 74, 74, 74, 6, 36, 1, -18, '', 0, 15, 11, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 5), 18, 18, 888, 979, 558, 327, 88, 88, 88, 88, 178, 178, 88, 81, 81, 81, 81, 81, 81, 6, 38, 1, -18, '', 0, 16, 12, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 1), 18, 18, 1212, 1213, 594, 330, 94, 94, 94, 94, 191, 191, 94, 81, 81, 81, 81, 81, 81, 6, 36, 1, -18, '', 0, 18, 11, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 2), 18, 18, 1266, 1267, 612, 336, 96, 96, 96, 96, 194, 194, 96, 88, 88, 88, 88, 88, 88, 6, 38, 1, -18, '', 0, 19, 12, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 3), 18, 18, 1320, 1321, 630, 342, 98, 98, 98, 98, 197, 197, 98, 95, 95, 95, 95, 95, 95, 7, 39, 1, -18, '', 0, 20, 13, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 4), 18, 18, 1374, 1375, 648, 348, 100, 100, 100, 100, 200, 200, 100, 102, 102, 102, 102, 102, 102, 7, 41, 1, -18, '', 0, 21, 14, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 5), 18, 18, 1428, 1429, 666, 354, 102, 102, 102, 102, 203, 203, 102, 109, 109, 109, 109, 109, 109, 7, 42, 1, -18, '', 0, 22, 15, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 1), 18, 18, 694, 0, 369, 513, 92, 92, 92, 92, 126, 126, 92, 53, 53, 53, 53, 53, 53, 7, 31, 2, -18, '', 0, 17, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 2), 18, 18, 766, 0, 378, 522, 94, 94, 94, 94, 128, 128, 94, 60, 60, 60, 60, 60, 60, 8, 33, 2, -18, '', 0, 19, 0, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 3), 18, 18, 838, 0, 387, 531, 96, 96, 96, 96, 130, 130, 96, 67, 67, 67, 67, 67, 67, 8, 36, 2, -18, '', 0, 21, 0, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 4), 18, 18, 910, 0, 396, 540, 98, 98, 98, 98, 132, 132, 98, 74, 74, 74, 74, 74, 74, 9, 39, 2, -18, '', 0, 23, 0, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 5), 18, 18, 982, 0, 405, 549, 100, 100, 100, 100, 134, 134, 100, 81, 81, 81, 81, 81, 81, 9, 41, 2, -18, '', 0, 25, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 1), 18, 18, 1234, 0, 459, 567, 106, 106, 106, 106, 146, 146, 106, 81, 81, 81, 81, 81, 81, 8, 37, 2, -18, '', 0, 25, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 2), 18, 18, 1306, 0, 468, 576, 108, 108, 108, 108, 148, 148, 108, 88, 88, 88, 88, 88, 88, 9, 40, 2, -18, '', 0, 27, 0, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 3), 18, 18, 1378, 0, 477, 585, 110, 110, 110, 110, 150, 150, 110, 95, 95, 95, 95, 95, 95, 9, 43, 2, -18, '', 0, 29, 0, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 4), 18, 18, 1450, 0, 486, 594, 112, 112, 112, 112, 152, 152, 112, 102, 102, 102, 102, 102, 102, 10, 45, 2, -18, '', 0, 31, 0, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 5), 18, 18, 1522, 0, 495, 603, 114, 114, 114, 114, 154, 154, 114, 109, 109, 109, 109, 109, 109, 10, 48, 2, -18, '', 0, 33, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 1), 18, 18, 560, 763, 240, 148, 80, 80, 80, 80, 166, 166, 80, 53, 53, 53, 53, 53, 53, 5, 32, 1, -18, '', 0, 11, 8, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 2), 18, 18, 596, 817, 246, 153, 82, 82, 82, 82, 169, 169, 82, 60, 60, 60, 60, 60, 60, 6, 34, 1, -18, '', 0, 12, 9, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 3), 18, 18, 632, 871, 252, 157, 84, 84, 84, 84, 172, 172, 84, 67, 67, 67, 67, 67, 67, 6, 35, 1, -18, '', 0, 13, 10, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 4), 18, 18, 668, 925, 258, 162, 86, 86, 86, 86, 175, 175, 86, 74, 74, 74, 74, 74, 74, 6, 36, 1, -18, '', 0, 14, 11, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 5), 18, 18, 704, 979, 264, 166, 88, 88, 88, 88, 178, 178, 88, 81, 81, 81, 81, 81, 81, 6, 38, 1, -18, '', 0, 15, 12, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 1), 18, 18, 1010, 1213, 294, 166, 94, 94, 94, 94, 191, 191, 94, 81, 81, 81, 81, 81, 81, 6, 36, 1, -18, '', 0, 16, 11, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 2), 18, 18, 1046, 1267, 300, 171, 96, 96, 96, 96, 194, 194, 96, 88, 88, 88, 88, 88, 88, 6, 38, 1, -18, '', 0, 17, 12, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 3), 18, 18, 1082, 1321, 306, 175, 98, 98, 98, 98, 197, 197, 98, 95, 95, 95, 95, 95, 95, 7, 39, 1, -18, '', 0, 18, 13, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 4), 18, 18, 1118, 1375, 312, 180, 100, 100, 100, 100, 200, 200, 100, 102, 102, 102, 102, 102, 102, 7, 41, 1, -18, '', 0, 19, 14, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 5), 18, 18, 1154, 1429, 318, 184, 102, 102, 102, 102, 203, 203, 102, 109, 109, 109, 109, 109, 109, 7, 42, 1, -18, '', 0, 20, 15, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 1), 19, 19, 867, 0, 656, 532, 94, 94, 94, 94, 129, 129, 94, 55, 55, 55, 55, 55, 55, 7, 35, 2, -18, '', 0, 19, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 2), 19, 19, 962, 0, 684, 542, 96, 96, 96, 96, 131, 131, 96, 62, 62, 62, 62, 62, 62, 8, 38, 2, -18, '', 0, 21, 0, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 3), 19, 19, 1057, 0, 713, 551, 98, 98, 98, 98, 133, 133, 98, 69, 69, 69, 69, 69, 69, 8, 40, 2, -18, '', 0, 23, 0, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 4), 19, 19, 1152, 0, 741, 561, 100, 100, 100, 100, 135, 135, 100, 76, 76, 76, 76, 76, 76, 9, 43, 2, -18, '', 0, 25, 0, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 5), 19, 19, 1247, 0, 770, 570, 102, 102, 102, 102, 137, 137, 102, 83, 83, 83, 83, 83, 83, 9, 46, 2, -18, '', 0, 27, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 1), 19, 19, 1532, 0, 808, 579, 108, 108, 108, 108, 149, 149, 108, 83, 83, 83, 83, 83, 83, 9, 42, 2, -18, '', 0, 29, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 2), 19, 19, 1627, 0, 836, 589, 110, 110, 110, 110, 151, 151, 110, 90, 90, 90, 90, 90, 90, 9, 45, 2, -18, '', 0, 31, 0, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 3), 19, 19, 1722, 0, 865, 598, 112, 112, 112, 112, 153, 153, 112, 97, 97, 97, 97, 97, 97, 10, 47, 2, -18, '', 0, 33, 0, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 4), 19, 19, 1817, 0, 893, 608, 114, 114, 114, 114, 155, 155, 114, 104, 104, 104, 104, 104, 104, 10, 50, 2, -18, '', 0, 35, 0, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 5), 19, 19, 1912, 0, 922, 617, 116, 116, 116, 116, 157, 157, 116, 111, 111, 111, 111, 111, 111, 11, 53, 2, -18, '', 0, 37, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 1), 19, 19, 717, 821, 513, 320, 82, 82, 82, 82, 169, 169, 82, 55, 55, 55, 55, 55, 55, 6, 34, 1, -18, '', 0, 12, 8, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 2), 19, 19, 774, 878, 532, 326, 84, 84, 84, 84, 172, 172, 84, 62, 62, 62, 62, 62, 62, 6, 35, 1, -18, '', 0, 13, 9, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 3), 19, 19, 831, 935, 551, 333, 86, 86, 86, 86, 175, 175, 86, 69, 69, 69, 69, 69, 69, 6, 36, 1, -18, '', 0, 14, 10, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 4), 19, 19, 888, 992, 570, 339, 88, 88, 88, 88, 178, 178, 88, 76, 76, 76, 76, 76, 76, 6, 38, 1, -18, '', 0, 15, 11, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 5), 19, 19, 945, 1049, 589, 345, 90, 90, 90, 90, 181, 181, 90, 83, 83, 83, 83, 83, 83, 7, 39, 1, -18, '', 0, 16, 12, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 1), 19, 19, 1287, 1296, 627, 348, 96, 96, 96, 96, 194, 194, 96, 83, 83, 83, 83, 83, 83, 6, 38, 1, -18, '', 0, 18, 11, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 2), 19, 19, 1344, 1353, 646, 354, 98, 98, 98, 98, 197, 197, 98, 90, 90, 90, 90, 90, 90, 7, 39, 1, -18, '', 0, 19, 12, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 3), 19, 19, 1401, 1410, 665, 361, 100, 100, 100, 100, 200, 200, 100, 97, 97, 97, 97, 97, 97, 7, 41, 1, -18, '', 0, 20, 13, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 4), 19, 19, 1458, 1467, 684, 367, 102, 102, 102, 102, 203, 203, 102, 104, 104, 104, 104, 104, 104, 7, 42, 1, -18, '', 0, 21, 14, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 5), 19, 19, 1515, 1524, 703, 373, 104, 104, 104, 104, 206, 206, 104, 111, 111, 111, 111, 111, 111, 7, 43, 1, -18, '', 0, 22, 15, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 1), 19, 19, 741, 0, 389, 541, 94, 94, 94, 94, 129, 129, 94, 55, 55, 55, 55, 55, 55, 7, 32, 2, -18, '', 0, 17, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 2), 19, 19, 817, 0, 399, 551, 96, 96, 96, 96, 131, 131, 96, 62, 62, 62, 62, 62, 62, 8, 35, 2, -18, '', 0, 19, 0, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 3), 19, 19, 893, 0, 408, 560, 98, 98, 98, 98, 133, 133, 98, 69, 69, 69, 69, 69, 69, 8, 37, 2, -18, '', 0, 21, 0, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 4), 19, 19, 969, 0, 418, 570, 100, 100, 100, 100, 135, 135, 100, 76, 76, 76, 76, 76, 76, 9, 40, 2, -18, '', 0, 23, 0, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 5), 19, 19, 1045, 0, 427, 579, 102, 102, 102, 102, 137, 137, 102, 83, 83, 83, 83, 83, 83, 9, 43, 2, -18, '', 0, 25, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 1), 19, 19, 1311, 0, 484, 598, 108, 108, 108, 108, 149, 149, 108, 83, 83, 83, 83, 83, 83, 9, 39, 2, -18, '', 0, 25, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 2), 19, 19, 1387, 0, 494, 608, 110, 110, 110, 110, 151, 151, 110, 90, 90, 90, 90, 90, 90, 9, 41, 2, -18, '', 0, 27, 0, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 3), 19, 19, 1463, 0, 503, 617, 112, 112, 112, 112, 153, 153, 112, 97, 97, 97, 97, 97, 97, 10, 44, 2, -18, '', 0, 29, 0, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 4), 19, 19, 1539, 0, 513, 627, 114, 114, 114, 114, 155, 155, 114, 104, 104, 104, 104, 104, 104, 10, 46, 2, -18, '', 0, 31, 0, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 5), 19, 19, 1615, 0, 522, 636, 116, 116, 116, 116, 157, 157, 116, 111, 111, 111, 111, 111, 111, 11, 49, 2, -18, '', 0, 33, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 1), 19, 19, 599, 821, 253, 156, 81, 81, 81, 81, 169, 169, 81, 55, 55, 55, 55, 55, 55, 6, 34, 1, -18, '', 0, 11, 8, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 2), 19, 19, 637, 878, 259, 161, 83, 83, 83, 83, 172, 172, 83, 62, 62, 62, 62, 62, 62, 6, 35, 1, -18, '', 0, 12, 9, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 3), 19, 19, 675, 935, 266, 166, 85, 85, 85, 85, 175, 175, 85, 69, 69, 69, 69, 69, 69, 6, 36, 1, -18, '', 0, 13, 10, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 4), 19, 19, 713, 992, 272, 171, 87, 87, 87, 87, 178, 178, 87, 76, 76, 76, 76, 76, 76, 6, 38, 1, -18, '', 0, 14, 11, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 5), 19, 19, 751, 1049, 278, 175, 89, 89, 89, 89, 181, 181, 89, 83, 83, 83, 83, 83, 83, 7, 39, 1, -18, '', 0, 15, 12, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 1), 19, 19, 1074, 1296, 310, 175, 95, 95, 95, 95, 194, 194, 95, 83, 83, 83, 83, 83, 83, 6, 38, 1, -18, '', 0, 16, 11, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 2), 19, 19, 1112, 1353, 316, 180, 97, 97, 97, 97, 197, 197, 97, 90, 90, 90, 90, 90, 90, 7, 39, 1, -18, '', 0, 17, 12, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 3), 19, 19, 1150, 1410, 323, 185, 99, 99, 99, 99, 200, 200, 99, 97, 97, 97, 97, 97, 97, 7, 41, 1, -18, '', 0, 18, 13, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 4), 19, 19, 1188, 1467, 329, 190, 101, 101, 101, 101, 203, 203, 101, 104, 104, 104, 104, 104, 104, 7, 42, 1, -18, '', 0, 19, 14, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 5), 19, 19, 1226, 1524, 335, 194, 103, 103, 103, 103, 206, 206, 103, 111, 111, 111, 111, 111, 111, 7, 43, 1, -18, '', 0, 20, 15, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 1), 20, 20, 924, 0, 690, 560, 98, 98, 98, 98, 132, 132, 98, 58, 58, 58, 58, 58, 58, 8, 36, 2, -18, '', 0, 19, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 2), 20, 20, 1024, 0, 720, 570, 101, 101, 101, 101, 134, 134, 101, 66, 66, 66, 66, 66, 66, 8, 39, 2, -18, '', 0, 21, 0, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 3), 20, 20, 1124, 0, 750, 580, 104, 104, 104, 104, 136, 136, 104, 74, 74, 74, 74, 74, 74, 9, 42, 2, -18, '', 0, 23, 0, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 4), 20, 20, 1224, 0, 780, 590, 107, 107, 107, 107, 138, 138, 107, 82, 82, 82, 82, 82, 82, 9, 45, 2, -18, '', 0, 25, 0, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 5), 20, 20, 1324, 0, 810, 600, 110, 110, 110, 110, 140, 140, 110, 90, 90, 90, 90, 90, 90, 10, 47, 2, -18, '', 0, 27, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 1), 20, 20, 1624, 0, 850, 610, 113, 113, 113, 113, 152, 152, 113, 88, 88, 88, 88, 88, 88, 9, 43, 2, -18, '', 0, 29, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 2), 20, 20, 1724, 0, 880, 620, 116, 116, 116, 116, 154, 154, 116, 96, 96, 96, 96, 96, 96, 9, 46, 2, -18, '', 0, 31, 0, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 3), 20, 20, 1824, 0, 910, 630, 119, 119, 119, 119, 156, 156, 119, 104, 104, 104, 104, 104, 104, 10, 49, 2, -18, '', 0, 33, 0, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 4), 20, 20, 1924, 0, 940, 640, 122, 122, 122, 122, 158, 158, 122, 112, 112, 112, 112, 112, 112, 10, 52, 2, -18, '', 0, 35, 0, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 5), 20, 20, 2024, 0, 970, 650, 125, 125, 125, 125, 160, 160, 125, 120, 120, 120, 120, 120, 120, 11, 54, 2, -18, '', 0, 37, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 1), 20, 20, 764, 880, 540, 336, 86, 86, 86, 86, 173, 173, 86, 58, 58, 58, 58, 58, 58, 6, 35, 1, -18, '', 0, 13, 9, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 2), 20, 20, 824, 940, 560, 343, 89, 89, 89, 89, 176, 176, 89, 66, 66, 66, 66, 66, 66, 6, 36, 1, -18, '', 0, 14, 10, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 3), 20, 20, 884, 1000, 580, 350, 92, 92, 92, 92, 179, 179, 92, 74, 74, 74, 74, 74, 74, 6, 38, 1, -18, '', 0, 15, 11, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 4), 20, 20, 944, 1060, 600, 356, 95, 95, 95, 95, 182, 182, 95, 82, 82, 82, 82, 82, 82, 7, 39, 1, -18, '', 0, 16, 12, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 5), 20, 20, 1004, 1120, 620, 363, 98, 98, 98, 98, 185, 185, 98, 90, 90, 90, 90, 90, 90, 7, 41, 1, -18, '', 0, 17, 13, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 1), 20, 20, 1364, 1380, 660, 366, 101, 101, 101, 101, 198, 198, 101, 88, 88, 88, 88, 88, 88, 7, 39, 1, -18, '', 0, 19, 12, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 2), 20, 20, 1424, 1440, 680, 373, 104, 104, 104, 104, 201, 201, 104, 96, 96, 96, 96, 96, 96, 7, 41, 1, -18, '', 0, 20, 13, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 3), 20, 20, 1484, 1500, 700, 380, 107, 107, 107, 107, 204, 204, 107, 104, 104, 104, 104, 104, 104, 7, 42, 1, -18, '', 0, 21, 14, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 4), 20, 20, 1544, 1560, 720, 386, 110, 110, 110, 110, 207, 207, 110, 112, 112, 112, 112, 112, 112, 7, 43, 1, -18, '', 0, 22, 15, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 5), 20, 20, 1604, 1620, 740, 393, 113, 113, 113, 113, 210, 210, 113, 120, 120, 120, 120, 120, 120, 8, 45, 1, -18, '', 0, 23, 16, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 1), 20, 20, 790, 0, 410, 570, 98, 98, 98, 98, 132, 132, 98, 58, 58, 58, 58, 58, 58, 8, 33, 2, -18, '', 0, 17, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 2), 20, 20, 870, 0, 420, 580, 101, 101, 101, 101, 134, 134, 101, 66, 66, 66, 66, 66, 66, 8, 36, 2, -18, '', 0, 19, 0, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 3), 20, 20, 950, 0, 430, 590, 104, 104, 104, 104, 136, 136, 104, 74, 74, 74, 74, 74, 74, 9, 39, 2, -18, '', 0, 21, 0, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 4), 20, 20, 1030, 0, 440, 600, 107, 107, 107, 107, 138, 138, 107, 82, 82, 82, 82, 82, 82, 9, 41, 2, -18, '', 0, 23, 0, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 5), 20, 20, 1110, 0, 450, 610, 110, 110, 110, 110, 140, 140, 110, 90, 90, 90, 90, 90, 90, 10, 44, 2, -18, '', 0, 25, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 1), 20, 20, 1390, 0, 510, 630, 113, 113, 113, 113, 152, 152, 113, 88, 88, 88, 88, 88, 88, 9, 40, 2, -18, '', 0, 25, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 2), 20, 20, 1470, 0, 520, 640, 116, 116, 116, 116, 154, 154, 116, 96, 96, 96, 96, 96, 96, 9, 43, 2, -18, '', 0, 27, 0, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 3), 20, 20, 1550, 0, 530, 650, 119, 119, 119, 119, 156, 156, 119, 104, 104, 104, 104, 104, 104, 10, 45, 2, -18, '', 0, 29, 0, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 4), 20, 20, 1630, 0, 540, 660, 122, 122, 122, 122, 158, 158, 122, 112, 112, 112, 112, 112, 112, 10, 48, 2, -18, '', 0, 31, 0, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 5), 20, 20, 1710, 0, 550, 670, 125, 125, 125, 125, 160, 160, 125, 120, 120, 120, 120, 120, 120, 11, 50, 2, -18, '', 0, 33, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 1), 20, 20, 638, 880, 266, 165, 85, 85, 85, 85, 173, 173, 85, 58, 58, 58, 58, 58, 58, 6, 35, 1, -18, '', 0, 12, 9, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 2), 20, 20, 678, 940, 273, 170, 88, 88, 88, 88, 176, 176, 88, 66, 66, 66, 66, 66, 66, 6, 36, 1, -18, '', 0, 13, 10, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 3), 20, 20, 718, 1000, 280, 175, 91, 91, 91, 91, 179, 179, 91, 74, 74, 74, 74, 74, 74, 6, 38, 1, -18, '', 0, 14, 11, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 4), 20, 20, 758, 1060, 286, 180, 94, 94, 94, 94, 182, 182, 94, 82, 82, 82, 82, 82, 82, 7, 39, 1, -18, '', 0, 15, 12, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 5), 20, 20, 798, 1120, 293, 185, 97, 97, 97, 97, 185, 185, 97, 90, 90, 90, 90, 90, 90, 7, 41, 1, -18, '', 0, 16, 13, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 1), 20, 20, 1138, 1380, 326, 185, 100, 100, 100, 100, 198, 198, 100, 88, 88, 88, 88, 88, 88, 7, 39, 1, -18, '', 0, 17, 12, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 2), 20, 20, 1178, 1440, 333, 190, 103, 103, 103, 103, 201, 201, 103, 96, 96, 96, 96, 96, 96, 7, 41, 1, -18, '', 0, 18, 13, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 3), 20, 20, 1218, 1500, 340, 195, 106, 106, 106, 106, 204, 204, 106, 104, 104, 104, 104, 104, 104, 7, 42, 1, -18, '', 0, 19, 14, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 4), 20, 20, 1258, 1560, 346, 200, 109, 109, 109, 109, 207, 207, 109, 112, 112, 112, 112, 112, 112, 7, 43, 1, -18, '', 0, 20, 15, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 5), 20, 20, 1298, 1620, 353, 205, 112, 112, 112, 112, 210, 210, 112, 120, 120, 120, 120, 120, 120, 8, 45, 1, -18, '', 0, 21, 16, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 1), 21, 21, 982, 0, 725, 588, 100, 100, 100, 100, 135, 135, 100, 60, 60, 60, 60, 60, 60, 8, 38, 2, -18, '', 0, 20, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 2), 21, 21, 1087, 0, 756, 599, 103, 103, 103, 103, 137, 137, 103, 68, 68, 68, 68, 68, 68, 8, 40, 2, -18, '', 0, 22, 0, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 3), 21, 21, 1192, 0, 788, 609, 106, 106, 106, 106, 139, 139, 106, 76, 76, 76, 76, 76, 76, 9, 43, 2, -18, '', 0, 24, 0, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 4), 21, 21, 1297, 0, 819, 620, 109, 109, 109, 109, 141, 141, 109, 84, 84, 84, 84, 84, 84, 9, 46, 2, -18, '', 0, 26, 0, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 5), 21, 21, 1402, 0, 851, 630, 112, 112, 112, 112, 143, 143, 112, 92, 92, 92, 92, 92, 92, 10, 49, 2, -18, '', 0, 28, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 1), 21, 21, 1717, 0, 893, 640, 115, 115, 115, 115, 155, 155, 115, 90, 90, 90, 90, 90, 90, 9, 45, 2, -18, '', 0, 30, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 2), 21, 21, 1822, 0, 924, 651, 118, 118, 118, 118, 157, 157, 118, 98, 98, 98, 98, 98, 98, 10, 47, 2, -18, '', 0, 32, 0, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 3), 21, 21, 1927, 0, 956, 661, 121, 121, 121, 121, 159, 159, 121, 106, 106, 106, 106, 106, 106, 10, 50, 2, -18, '', 0, 34, 0, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 4), 21, 21, 2032, 0, 987, 672, 124, 124, 124, 124, 161, 161, 124, 114, 114, 114, 114, 114, 114, 11, 53, 2, -18, '', 0, 36, 0, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 5), 21, 21, 2137, 0, 1019, 682, 127, 127, 127, 127, 163, 163, 127, 122, 122, 122, 122, 122, 122, 11, 56, 2, -18, '', 0, 38, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 1), 21, 21, 811, 941, 567, 354, 88, 88, 88, 88, 176, 176, 88, 60, 60, 60, 60, 60, 60, 6, 36, 1, -18, '', 0, 13, 9, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 2), 21, 21, 874, 1004, 588, 361, 91, 91, 91, 91, 179, 179, 91, 68, 68, 68, 68, 68, 68, 6, 38, 1, -18, '', 0, 14, 10, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 3), 21, 21, 937, 1067, 609, 368, 94, 94, 94, 94, 182, 182, 94, 76, 76, 76, 76, 76, 76, 7, 39, 1, -18, '', 0, 15, 11, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 4), 21, 21, 1000, 1130, 630, 375, 97, 97, 97, 97, 185, 185, 97, 84, 84, 84, 84, 84, 84, 7, 41, 1, -18, '', 0, 16, 12, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 5), 21, 21, 1063, 1193, 651, 382, 100, 100, 100, 100, 188, 188, 100, 92, 92, 92, 92, 92, 92, 7, 42, 1, -18, '', 0, 17, 13, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 1), 21, 21, 1441, 1466, 693, 385, 103, 103, 103, 103, 201, 201, 103, 90, 90, 90, 90, 90, 90, 7, 41, 1, -18, '', 0, 19, 12, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 2), 21, 21, 1504, 1529, 714, 392, 106, 106, 106, 106, 204, 204, 106, 98, 98, 98, 98, 98, 98, 7, 42, 1, -18, '', 0, 20, 13, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 3), 21, 21, 1567, 1592, 735, 399, 109, 109, 109, 109, 207, 207, 109, 106, 106, 106, 106, 106, 106, 7, 43, 1, -18, '', 0, 21, 14, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 4), 21, 21, 1630, 1655, 756, 406, 112, 112, 112, 112, 210, 210, 112, 114, 114, 114, 114, 114, 114, 8, 45, 1, -18, '', 0, 22, 15, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 5), 21, 21, 1693, 1718, 777, 413, 115, 115, 115, 115, 213, 213, 115, 122, 122, 122, 122, 122, 122, 8, 46, 1, -18, '', 0, 23, 16, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 1), 21, 21, 839, 0, 430, 598, 100, 100, 100, 100, 135, 135, 100, 60, 60, 60, 60, 60, 60, 8, 35, 2, -18, '', 0, 18, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 2), 21, 21, 923, 0, 441, 609, 103, 103, 103, 103, 137, 137, 103, 68, 68, 68, 68, 68, 68, 8, 37, 2, -18, '', 0, 20, 0, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 3), 21, 21, 1007, 0, 451, 619, 106, 106, 106, 106, 139, 139, 106, 76, 76, 76, 76, 76, 76, 9, 40, 2, -18, '', 0, 22, 0, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 4), 21, 21, 1091, 0, 462, 630, 109, 109, 109, 109, 141, 141, 109, 84, 84, 84, 84, 84, 84, 9, 43, 2, -18, '', 0, 24, 0, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 5), 21, 21, 1175, 0, 472, 640, 112, 112, 112, 112, 143, 143, 112, 92, 92, 92, 92, 92, 92, 10, 45, 2, -18, '', 0, 26, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 1), 21, 21, 1469, 0, 535, 661, 115, 115, 115, 115, 155, 155, 115, 90, 90, 90, 90, 90, 90, 9, 41, 2, -18, '', 0, 26, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 2), 21, 21, 1553, 0, 546, 672, 118, 118, 118, 118, 157, 157, 118, 98, 98, 98, 98, 98, 98, 10, 44, 2, -18, '', 0, 28, 0, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 3), 21, 21, 1637, 0, 556, 682, 121, 121, 121, 121, 159, 159, 121, 106, 106, 106, 106, 106, 106, 10, 46, 2, -18, '', 0, 30, 0, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 4), 21, 21, 1721, 0, 567, 693, 124, 124, 124, 124, 161, 161, 124, 114, 114, 114, 114, 114, 114, 11, 49, 2, -18, '', 0, 32, 0, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 5), 21, 21, 1805, 0, 577, 703, 127, 127, 127, 127, 163, 163, 127, 122, 122, 122, 122, 122, 122, 11, 52, 2, -18, '', 0, 34, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 1), 21, 21, 679, 941, 280, 173, 87, 87, 87, 87, 176, 176, 87, 60, 60, 60, 60, 60, 60, 6, 36, 1, -18, '', 0, 12, 9, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 2), 21, 21, 721, 1004, 287, 178, 90, 90, 90, 90, 179, 179, 90, 68, 68, 68, 68, 68, 68, 6, 38, 1, -18, '', 0, 13, 10, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 3), 21, 21, 763, 1067, 294, 183, 93, 93, 93, 93, 182, 182, 93, 76, 76, 76, 76, 76, 76, 7, 39, 1, -18, '', 0, 14, 11, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 4), 21, 21, 805, 1130, 301, 189, 96, 96, 96, 96, 185, 185, 96, 84, 84, 84, 84, 84, 84, 7, 41, 1, -18, '', 0, 15, 12, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 5), 21, 21, 847, 1193, 308, 194, 99, 99, 99, 99, 188, 188, 99, 92, 92, 92, 92, 92, 92, 7, 42, 1, -18, '', 0, 16, 13, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 1), 21, 21, 1204, 1466, 343, 194, 102, 102, 102, 102, 201, 201, 102, 90, 90, 90, 90, 90, 90, 7, 41, 1, -18, '', 0, 17, 12, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 2), 21, 21, 1246, 1529, 350, 199, 105, 105, 105, 105, 204, 204, 105, 98, 98, 98, 98, 98, 98, 7, 42, 1, -18, '', 0, 18, 13, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 3), 21, 21, 1288, 1592, 357, 204, 108, 108, 108, 108, 207, 207, 108, 106, 106, 106, 106, 106, 106, 7, 43, 1, -18, '', 0, 19, 14, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 4), 21, 21, 1330, 1655, 364, 210, 111, 111, 111, 111, 210, 210, 111, 114, 114, 114, 114, 114, 114, 8, 45, 1, -18, '', 0, 20, 15, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 5), 21, 21, 1372, 1718, 371, 215, 114, 114, 114, 114, 213, 213, 114, 122, 122, 122, 122, 122, 122, 8, 46, 1, -18, '', 0, 21, 16, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 1), 22, 22, 1042, 0, 759, 616, 103, 103, 103, 103, 138, 138, 103, 62, 62, 62, 62, 62, 62, 8, 39, 2, -18, '', 0, 20, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 2), 22, 22, 1152, 0, 792, 627, 106, 106, 106, 106, 140, 140, 106, 70, 70, 70, 70, 70, 70, 9, 42, 2, -18, '', 0, 22, 0, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 3), 22, 22, 1262, 0, 825, 638, 109, 109, 109, 109, 142, 142, 109, 78, 78, 78, 78, 78, 78, 9, 45, 2, -18, '', 0, 24, 0, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 4), 22, 22, 1372, 0, 858, 649, 112, 112, 112, 112, 144, 144, 112, 86, 86, 86, 86, 86, 86, 10, 47, 2, -18, '', 0, 26, 0, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 5), 22, 22, 1482, 0, 891, 660, 115, 115, 115, 115, 146, 146, 115, 94, 94, 94, 94, 94, 94, 10, 50, 2, -18, '', 0, 28, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 1), 22, 22, 1812, 0, 935, 671, 119, 119, 119, 119, 158, 158, 119, 92, 92, 92, 92, 92, 92, 9, 46, 2, -18, '', 0, 30, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 2), 22, 22, 1922, 0, 968, 682, 122, 122, 122, 122, 160, 160, 122, 100, 100, 100, 100, 100, 100, 10, 49, 2, -18, '', 0, 32, 0, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 3), 22, 22, 2032, 0, 1001, 693, 125, 125, 125, 125, 162, 162, 125, 108, 108, 108, 108, 108, 108, 10, 52, 2, -18, '', 0, 34, 0, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 4), 22, 22, 2142, 0, 1034, 704, 128, 128, 128, 128, 164, 164, 128, 116, 116, 116, 116, 116, 116, 11, 54, 2, -18, '', 0, 36, 0, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 5), 22, 22, 2252, 0, 1067, 715, 131, 131, 131, 131, 166, 166, 131, 124, 124, 124, 124, 124, 124, 11, 57, 2, -18, '', 0, 38, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 1), 22, 22, 861, 1003, 594, 370, 91, 91, 91, 91, 180, 180, 91, 62, 62, 62, 62, 62, 62, 6, 38, 1, -18, '', 0, 13, 9, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 2), 22, 22, 927, 1069, 616, 377, 94, 94, 94, 94, 183, 183, 94, 70, 70, 70, 70, 70, 70, 7, 39, 1, -18, '', 0, 14, 10, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 3), 22, 22, 993, 1135, 638, 385, 97, 97, 97, 97, 186, 186, 97, 78, 78, 78, 78, 78, 78, 7, 41, 1, -18, '', 0, 15, 11, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 4), 22, 22, 1059, 1201, 660, 392, 100, 100, 100, 100, 189, 189, 100, 86, 86, 86, 86, 86, 86, 7, 42, 1, -18, '', 0, 16, 12, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 5), 22, 22, 1125, 1267, 682, 399, 103, 103, 103, 103, 192, 192, 103, 94, 94, 94, 94, 94, 94, 7, 43, 1, -18, '', 0, 17, 13, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 1), 22, 22, 1521, 1553, 726, 403, 107, 107, 107, 107, 205, 205, 107, 92, 92, 92, 92, 92, 92, 7, 42, 1, -18, '', 0, 19, 12, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 2), 22, 22, 1587, 1619, 748, 410, 110, 110, 110, 110, 208, 208, 110, 100, 100, 100, 100, 100, 100, 7, 43, 1, -18, '', 0, 20, 13, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 3), 22, 22, 1653, 1685, 770, 418, 113, 113, 113, 113, 211, 211, 113, 108, 108, 108, 108, 108, 108, 8, 45, 1, -18, '', 0, 21, 14, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 4), 22, 22, 1719, 1751, 792, 425, 116, 116, 116, 116, 214, 214, 116, 116, 116, 116, 116, 116, 116, 8, 46, 1, -18, '', 0, 22, 15, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 5), 22, 22, 1785, 1817, 814, 432, 119, 119, 119, 119, 217, 217, 119, 124, 124, 124, 124, 124, 124, 8, 48, 1, -18, '', 0, 23, 16, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 1), 22, 22, 891, 0, 451, 627, 103, 103, 103, 103, 138, 138, 103, 62, 62, 62, 62, 62, 62, 8, 36, 2, -18, '', 0, 18, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 2), 22, 22, 979, 0, 462, 638, 106, 106, 106, 106, 140, 140, 106, 70, 70, 70, 70, 70, 70, 9, 39, 2, -18, '', 0, 20, 0, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 3), 22, 22, 1067, 0, 473, 649, 109, 109, 109, 109, 142, 142, 109, 78, 78, 78, 78, 78, 78, 9, 41, 2, -18, '', 0, 22, 0, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 4), 22, 22, 1155, 0, 484, 660, 112, 112, 112, 112, 144, 144, 112, 86, 86, 86, 86, 86, 86, 10, 44, 2, -18, '', 0, 24, 0, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 5), 22, 22, 1243, 0, 495, 671, 115, 115, 115, 115, 146, 146, 115, 94, 94, 94, 94, 94, 94, 10, 46, 2, -18, '', 0, 26, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 1), 22, 22, 1551, 0, 561, 693, 119, 119, 119, 119, 158, 158, 119, 92, 92, 92, 92, 92, 92, 9, 43, 2, -18, '', 0, 26, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 2), 22, 22, 1639, 0, 572, 704, 122, 122, 122, 122, 160, 160, 122, 100, 100, 100, 100, 100, 100, 10, 45, 2, -18, '', 0, 28, 0, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 3), 22, 22, 1727, 0, 583, 715, 125, 125, 125, 125, 162, 162, 125, 108, 108, 108, 108, 108, 108, 10, 48, 2, -18, '', 0, 30, 0, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 4), 22, 22, 1815, 0, 594, 726, 128, 128, 128, 128, 164, 164, 128, 116, 116, 116, 116, 116, 116, 11, 50, 2, -18, '', 0, 32, 0, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 5), 22, 22, 1903, 0, 605, 737, 131, 131, 131, 131, 166, 166, 131, 124, 124, 124, 124, 124, 124, 11, 53, 2, -18, '', 0, 34, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 1), 22, 22, 722, 1003, 293, 181, 90, 90, 90, 90, 180, 180, 90, 62, 62, 62, 62, 62, 62, 6, 38, 1, -18, '', 0, 12, 9, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 2), 22, 22, 766, 1069, 300, 187, 93, 93, 93, 93, 183, 183, 93, 70, 70, 70, 70, 70, 70, 7, 39, 1, -18, '', 0, 13, 10, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 3), 22, 22, 810, 1135, 308, 192, 96, 96, 96, 96, 186, 186, 96, 78, 78, 78, 78, 78, 78, 7, 41, 1, -18, '', 0, 14, 11, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 4), 22, 22, 854, 1201, 315, 198, 99, 99, 99, 99, 189, 189, 99, 86, 86, 86, 86, 86, 86, 7, 42, 1, -18, '', 0, 15, 12, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 5), 22, 22, 898, 1267, 322, 203, 102, 102, 102, 102, 192, 192, 102, 94, 94, 94, 94, 94, 94, 7, 43, 1, -18, '', 0, 16, 13, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 1), 22, 22, 1272, 1553, 359, 203, 106, 106, 106, 106, 205, 205, 106, 92, 92, 92, 92, 92, 92, 7, 42, 1, -18, '', 0, 17, 12, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 2), 22, 22, 1316, 1619, 366, 209, 109, 109, 109, 109, 208, 208, 109, 100, 100, 100, 100, 100, 100, 7, 43, 1, -18, '', 0, 18, 13, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 3), 22, 22, 1360, 1685, 374, 214, 112, 112, 112, 112, 211, 211, 112, 108, 108, 108, 108, 108, 108, 8, 45, 1, -18, '', 0, 19, 14, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 4), 22, 22, 1404, 1751, 381, 220, 115, 115, 115, 115, 214, 214, 115, 116, 116, 116, 116, 116, 116, 8, 46, 1, -18, '', 0, 20, 15, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 5), 22, 22, 1448, 1817, 388, 225, 118, 118, 118, 118, 217, 217, 118, 124, 124, 124, 124, 124, 124, 8, 48, 1, -18, '', 0, 21, 16, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 1), 23, 23, 1103, 0, 794, 644, 105, 105, 105, 105, 141, 141, 105, 64, 64, 64, 64, 64, 64, 8, 40, 2, -18, '', 0, 20, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 2), 23, 23, 1218, 0, 828, 656, 108, 108, 108, 108, 143, 143, 108, 72, 72, 72, 72, 72, 72, 9, 43, 2, -18, '', 0, 22, 0, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 3), 23, 23, 1333, 0, 863, 667, 111, 111, 111, 111, 145, 145, 111, 80, 80, 80, 80, 80, 80, 9, 46, 2, -18, '', 0, 24, 0, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 4), 23, 23, 1448, 0, 897, 679, 114, 114, 114, 114, 147, 147, 114, 88, 88, 88, 88, 88, 88, 10, 49, 2, -18, '', 0, 26, 0, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 5), 23, 23, 1563, 0, 932, 690, 117, 117, 117, 117, 149, 149, 117, 96, 96, 96, 96, 96, 96, 10, 52, 2, -18, '', 0, 28, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 1), 23, 23, 1908, 0, 978, 701, 121, 121, 121, 121, 161, 161, 121, 96, 96, 96, 96, 96, 96, 10, 47, 2, -18, '', 0, 30, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 2), 23, 23, 2023, 0, 1012, 713, 124, 124, 124, 124, 163, 163, 124, 104, 104, 104, 104, 104, 104, 10, 50, 2, -18, '', 0, 32, 0, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 3), 23, 23, 2138, 0, 1047, 724, 127, 127, 127, 127, 165, 165, 127, 112, 112, 112, 112, 112, 112, 11, 53, 2, -18, '', 0, 34, 0, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 4), 23, 23, 2253, 0, 1081, 736, 130, 130, 130, 130, 167, 167, 130, 120, 120, 120, 120, 120, 120, 11, 56, 2, -18, '', 0, 36, 0, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 5), 23, 23, 2368, 0, 1116, 747, 133, 133, 133, 133, 169, 169, 133, 128, 128, 128, 128, 128, 128, 12, 59, 2, -18, '', 0, 38, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 1), 23, 23, 912, 1067, 621, 387, 93, 93, 93, 93, 183, 183, 93, 64, 64, 64, 64, 64, 64, 7, 39, 1, -18, '', 0, 13, 9, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 2), 23, 23, 981, 1136, 644, 395, 96, 96, 96, 96, 186, 186, 96, 72, 72, 72, 72, 72, 72, 7, 41, 1, -18, '', 0, 14, 10, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 3), 23, 23, 1050, 1205, 667, 403, 99, 99, 99, 99, 189, 189, 99, 80, 80, 80, 80, 80, 80, 7, 42, 1, -18, '', 0, 15, 11, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 4), 23, 23, 1119, 1274, 690, 410, 102, 102, 102, 102, 192, 192, 102, 88, 88, 88, 88, 88, 88, 7, 43, 1, -18, '', 0, 16, 12, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 5), 23, 23, 1188, 1343, 713, 418, 105, 105, 105, 105, 195, 195, 105, 96, 96, 96, 96, 96, 96, 8, 45, 1, -18, '', 0, 17, 13, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 1), 23, 23, 1602, 1642, 759, 421, 109, 109, 109, 109, 208, 208, 109, 96, 96, 96, 96, 96, 96, 7, 43, 1, -18, '', 0, 19, 12, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 2), 23, 23, 1671, 1711, 782, 429, 112, 112, 112, 112, 211, 211, 112, 104, 104, 104, 104, 104, 104, 8, 45, 1, -18, '', 0, 20, 13, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 3), 23, 23, 1740, 1780, 805, 437, 115, 115, 115, 115, 214, 214, 115, 112, 112, 112, 112, 112, 112, 8, 46, 1, -18, '', 0, 21, 14, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 4), 23, 23, 1809, 1849, 828, 444, 118, 118, 118, 118, 217, 217, 118, 120, 120, 120, 120, 120, 120, 8, 48, 1, -18, '', 0, 22, 15, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 5), 23, 23, 1878, 1918, 851, 452, 121, 121, 121, 121, 220, 220, 121, 128, 128, 128, 128, 128, 128, 8, 49, 1, -18, '', 0, 23, 16, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 1), 23, 23, 944, 0, 471, 655, 105, 105, 105, 105, 141, 141, 105, 64, 64, 64, 64, 64, 64, 8, 37, 2, -18, '', 0, 18, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 2), 23, 23, 1036, 0, 483, 667, 108, 108, 108, 108, 143, 143, 108, 72, 72, 72, 72, 72, 72, 9, 40, 2, -18, '', 0, 20, 0, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 3), 23, 23, 1128, 0, 494, 678, 111, 111, 111, 111, 145, 145, 111, 80, 80, 80, 80, 80, 80, 9, 43, 2, -18, '', 0, 22, 0, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 4), 23, 23, 1220, 0, 506, 690, 114, 114, 114, 114, 147, 147, 114, 88, 88, 88, 88, 88, 88, 10, 45, 2, -18, '', 0, 24, 0, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 5), 23, 23, 1312, 0, 517, 701, 117, 117, 117, 117, 149, 149, 117, 96, 96, 96, 96, 96, 96, 10, 48, 2, -18, '', 0, 26, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 1), 23, 23, 1634, 0, 586, 724, 121, 121, 121, 121, 161, 161, 121, 96, 96, 96, 96, 96, 96, 10, 44, 2, -18, '', 0, 26, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 2), 23, 23, 1726, 0, 598, 736, 124, 124, 124, 124, 163, 163, 124, 104, 104, 104, 104, 104, 104, 10, 46, 2, -18, '', 0, 28, 0, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 3), 23, 23, 1818, 0, 609, 747, 127, 127, 127, 127, 165, 165, 127, 112, 112, 112, 112, 112, 112, 11, 49, 2, -18, '', 0, 30, 0, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 4), 23, 23, 1910, 0, 621, 759, 130, 130, 130, 130, 167, 167, 130, 120, 120, 120, 120, 120, 120, 11, 52, 2, -18, '', 0, 32, 0, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 5), 23, 23, 2002, 0, 632, 770, 133, 133, 133, 133, 169, 169, 133, 128, 128, 128, 128, 128, 128, 12, 54, 2, -18, '', 0, 34, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 1), 23, 23, 766, 1067, 306, 189, 92, 92, 92, 92, 183, 183, 92, 64, 64, 64, 64, 64, 64, 7, 39, 1, -18, '', 0, 12, 9, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 2), 23, 23, 812, 1136, 314, 195, 95, 95, 95, 95, 186, 186, 95, 72, 72, 72, 72, 72, 72, 7, 41, 1, -18, '', 0, 13, 10, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 3), 23, 23, 858, 1205, 322, 201, 98, 98, 98, 98, 189, 189, 98, 80, 80, 80, 80, 80, 80, 7, 42, 1, -18, '', 0, 14, 11, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 4), 23, 23, 904, 1274, 329, 207, 101, 101, 101, 101, 192, 192, 101, 88, 88, 88, 88, 88, 88, 7, 43, 1, -18, '', 0, 15, 12, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 5), 23, 23, 950, 1343, 337, 212, 104, 104, 104, 104, 195, 195, 104, 96, 96, 96, 96, 96, 96, 8, 45, 1, -18, '', 0, 16, 13, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 1), 23, 23, 1341, 1642, 375, 212, 108, 108, 108, 108, 208, 208, 108, 96, 96, 96, 96, 96, 96, 7, 43, 1, -18, '', 0, 17, 12, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 2), 23, 23, 1387, 1711, 383, 218, 111, 111, 111, 111, 211, 211, 111, 104, 104, 104, 104, 104, 104, 8, 45, 1, -18, '', 0, 18, 13, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 3), 23, 23, 1433, 1780, 391, 224, 114, 114, 114, 114, 214, 214, 114, 112, 112, 112, 112, 112, 112, 8, 46, 1, -18, '', 0, 19, 14, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 4), 23, 23, 1479, 1849, 398, 230, 117, 117, 117, 117, 217, 217, 117, 120, 120, 120, 120, 120, 120, 8, 48, 1, -18, '', 0, 20, 15, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 5), 23, 23, 1525, 1918, 406, 235, 120, 120, 120, 120, 220, 220, 120, 128, 128, 128, 128, 128, 128, 8, 49, 1, -18, '', 0, 21, 16, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 1), 24, 24, 1167, 0, 828, 672, 108, 108, 108, 108, 144, 144, 108, 67, 67, 67, 67, 67, 67, 9, 42, 2, -18, '', 0, 21, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 2), 24, 24, 1287, 0, 864, 684, 111, 111, 111, 111, 146, 146, 111, 76, 76, 76, 76, 76, 76, 9, 45, 2, -18, '', 0, 23, 0, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 3), 24, 24, 1407, 0, 900, 696, 114, 114, 114, 114, 148, 148, 114, 85, 85, 85, 85, 85, 85, 10, 47, 2, -18, '', 0, 25, 0, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 4), 24, 24, 1527, 0, 936, 708, 117, 117, 117, 117, 150, 150, 117, 94, 94, 94, 94, 94, 94, 10, 50, 2, -18, '', 0, 27, 0, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 5), 24, 24, 1647, 0, 972, 720, 120, 120, 120, 120, 152, 152, 120, 103, 103, 103, 103, 103, 103, 11, 53, 2, -18, '', 0, 29, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 1), 24, 24, 2007, 0, 1020, 732, 125, 125, 125, 125, 164, 164, 125, 99, 99, 99, 99, 99, 99, 10, 49, 2, -18, '', 0, 31, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 2), 24, 24, 2127, 0, 1056, 744, 128, 128, 128, 128, 166, 166, 128, 108, 108, 108, 108, 108, 108, 10, 52, 2, -18, '', 0, 33, 0, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 3), 24, 24, 2247, 0, 1092, 756, 131, 131, 131, 131, 168, 168, 131, 117, 117, 117, 117, 117, 117, 11, 54, 2, -18, '', 0, 35, 0, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 4), 24, 24, 2367, 0, 1128, 768, 134, 134, 134, 134, 170, 170, 134, 126, 126, 126, 126, 126, 126, 11, 57, 2, -18, '', 0, 37, 0, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 5), 24, 24, 2487, 0, 1164, 780, 137, 137, 137, 137, 172, 172, 137, 135, 135, 135, 135, 135, 135, 12, 60, 2, -18, '', 0, 39, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 1), 24, 24, 964, 1133, 648, 404, 96, 96, 96, 96, 187, 187, 96, 67, 67, 67, 67, 67, 67, 7, 41, 1, -18, '', 0, 14, 9, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 2), 24, 24, 1036, 1205, 672, 412, 99, 99, 99, 99, 190, 190, 99, 76, 76, 76, 76, 76, 76, 7, 42, 1, -18, '', 0, 15, 10, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 3), 24, 24, 1108, 1277, 696, 420, 102, 102, 102, 102, 193, 193, 102, 85, 85, 85, 85, 85, 85, 7, 43, 1, -18, '', 0, 16, 11, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 4), 24, 24, 1180, 1349, 720, 428, 105, 105, 105, 105, 196, 196, 105, 94, 94, 94, 94, 94, 94, 8, 45, 1, -18, '', 0, 17, 12, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 5), 24, 24, 1252, 1421, 744, 436, 108, 108, 108, 108, 199, 199, 108, 103, 103, 103, 103, 103, 103, 8, 46, 1, -18, '', 0, 18, 13, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 1), 24, 24, 1684, 1733, 792, 440, 113, 113, 113, 113, 212, 212, 113, 99, 99, 99, 99, 99, 99, 8, 45, 1, -18, '', 0, 20, 12, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 2), 24, 24, 1756, 1805, 816, 448, 116, 116, 116, 116, 215, 215, 116, 108, 108, 108, 108, 108, 108, 8, 46, 1, -18, '', 0, 21, 13, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 3), 24, 24, 1828, 1877, 840, 456, 119, 119, 119, 119, 218, 218, 119, 117, 117, 117, 117, 117, 117, 8, 48, 1, -18, '', 0, 22, 14, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 4), 24, 24, 1900, 1949, 864, 464, 122, 122, 122, 122, 221, 221, 122, 126, 126, 126, 126, 126, 126, 8, 49, 1, -18, '', 0, 23, 15, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 5), 24, 24, 1972, 2021, 888, 472, 125, 125, 125, 125, 224, 224, 125, 135, 135, 135, 135, 135, 135, 9, 50, 1, -18, '', 0, 24, 16, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 1), 24, 24, 998, 0, 492, 684, 108, 108, 108, 108, 144, 144, 108, 67, 67, 67, 67, 67, 67, 9, 39, 2, -18, '', 0, 19, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 2), 24, 24, 1094, 0, 504, 696, 111, 111, 111, 111, 146, 146, 111, 76, 76, 76, 76, 76, 76, 9, 41, 2, -18, '', 0, 21, 0, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 3), 24, 24, 1190, 0, 516, 708, 114, 114, 114, 114, 148, 148, 114, 85, 85, 85, 85, 85, 85, 10, 44, 2, -18, '', 0, 23, 0, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 4), 24, 24, 1286, 0, 528, 720, 117, 117, 117, 117, 150, 150, 117, 94, 94, 94, 94, 94, 94, 10, 46, 2, -18, '', 0, 25, 0, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 5), 24, 24, 1382, 0, 540, 732, 120, 120, 120, 120, 152, 152, 120, 103, 103, 103, 103, 103, 103, 11, 49, 2, -18, '', 0, 27, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 1), 24, 24, 1718, 0, 612, 756, 125, 125, 125, 125, 164, 164, 125, 99, 99, 99, 99, 99, 99, 10, 45, 2, -18, '', 0, 27, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 2), 24, 24, 1814, 0, 624, 768, 128, 128, 128, 128, 166, 166, 128, 108, 108, 108, 108, 108, 108, 10, 48, 2, -18, '', 0, 29, 0, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 3), 24, 24, 1910, 0, 636, 780, 131, 131, 131, 131, 168, 168, 131, 117, 117, 117, 117, 117, 117, 11, 50, 2, -18, '', 0, 31, 0, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 4), 24, 24, 2006, 0, 648, 792, 134, 134, 134, 134, 170, 170, 134, 126, 126, 126, 126, 126, 126, 11, 53, 2, -18, '', 0, 33, 0, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 5), 24, 24, 2102, 0, 660, 804, 137, 137, 137, 137, 172, 172, 137, 135, 135, 135, 135, 135, 135, 12, 56, 2, -18, '', 0, 35, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 1), 24, 24, 811, 1133, 320, 198, 95, 95, 95, 95, 187, 187, 95, 67, 67, 67, 67, 67, 67, 7, 41, 1, -18, '', 0, 13, 9, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 2), 24, 24, 859, 1205, 328, 204, 98, 98, 98, 98, 190, 190, 98, 76, 76, 76, 76, 76, 76, 7, 42, 1, -18, '', 0, 14, 10, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 3), 24, 24, 907, 1277, 336, 210, 101, 101, 101, 101, 193, 193, 101, 85, 85, 85, 85, 85, 85, 7, 43, 1, -18, '', 0, 15, 11, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 4), 24, 24, 955, 1349, 344, 216, 104, 104, 104, 104, 196, 196, 104, 94, 94, 94, 94, 94, 94, 8, 45, 1, -18, '', 0, 16, 12, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 5), 24, 24, 1003, 1421, 352, 222, 107, 107, 107, 107, 199, 199, 107, 103, 103, 103, 103, 103, 103, 8, 46, 1, -18, '', 0, 17, 13, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 1), 24, 24, 1411, 1733, 392, 222, 112, 112, 112, 112, 212, 212, 112, 99, 99, 99, 99, 99, 99, 8, 45, 1, -18, '', 0, 18, 12, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 2), 24, 24, 1459, 1805, 400, 228, 115, 115, 115, 115, 215, 215, 115, 108, 108, 108, 108, 108, 108, 8, 46, 1, -18, '', 0, 19, 13, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 3), 24, 24, 1507, 1877, 408, 234, 118, 118, 118, 118, 218, 218, 118, 117, 117, 117, 117, 117, 117, 8, 48, 1, -18, '', 0, 20, 14, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 4), 24, 24, 1555, 1949, 416, 240, 121, 121, 121, 121, 221, 221, 121, 126, 126, 126, 126, 126, 126, 8, 49, 1, -18, '', 0, 21, 15, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 5), 24, 24, 1603, 2021, 424, 246, 124, 124, 124, 124, 224, 224, 124, 135, 135, 135, 135, 135, 135, 9, 50, 1, -18, '', 0, 22, 16, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 1), 25, 25, 1233, 0, 863, 700, 111, 111, 111, 111, 147, 147, 111, 69, 69, 69, 69, 69, 69, 9, 43, 2, -18, '', 0, 21, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 2), 25, 25, 1358, 0, 900, 713, 114, 114, 114, 114, 149, 149, 114, 78, 78, 78, 78, 78, 78, 9, 46, 2, -18, '', 0, 23, 0, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 3), 25, 25, 1483, 0, 938, 725, 117, 117, 117, 117, 151, 151, 117, 87, 87, 87, 87, 87, 87, 10, 49, 2, -18, '', 0, 25, 0, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 4), 25, 25, 1608, 0, 975, 738, 120, 120, 120, 120, 153, 153, 120, 96, 96, 96, 96, 96, 96, 10, 52, 2, -18, '', 0, 27, 0, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 5), 25, 25, 1733, 0, 1013, 750, 123, 123, 123, 123, 155, 155, 123, 105, 105, 105, 105, 105, 105, 11, 54, 2, -18, '', 0, 29, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 1), 25, 25, 2108, 0, 1063, 762, 128, 128, 128, 128, 167, 167, 128, 101, 101, 101, 101, 101, 101, 10, 50, 2, -18, '', 0, 31, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 2), 25, 25, 2233, 0, 1100, 775, 131, 131, 131, 131, 169, 169, 131, 110, 110, 110, 110, 110, 110, 11, 53, 2, -18, '', 0, 33, 0, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 3), 25, 25, 2358, 0, 1138, 787, 134, 134, 134, 134, 171, 171, 134, 119, 119, 119, 119, 119, 119, 11, 56, 2, -18, '', 0, 35, 0, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 4), 25, 25, 2483, 0, 1175, 800, 137, 137, 137, 137, 173, 173, 137, 128, 128, 128, 128, 128, 128, 12, 59, 2, -18, '', 0, 37, 0, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 5), 25, 25, 2608, 0, 1213, 812, 140, 140, 140, 140, 175, 175, 140, 137, 137, 137, 137, 137, 137, 12, 61, 2, -18, '', 0, 39, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 1), 25, 25, 1018, 1200, 675, 421, 98, 98, 98, 98, 190, 190, 98, 69, 69, 69, 69, 69, 69, 7, 42, 1, -18, '', 0, 14, 10, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 2), 25, 25, 1093, 1275, 700, 429, 101, 101, 101, 101, 193, 193, 101, 78, 78, 78, 78, 78, 78, 7, 43, 1, -18, '', 0, 15, 11, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 3), 25, 25, 1168, 1350, 725, 438, 104, 104, 104, 104, 196, 196, 104, 87, 87, 87, 87, 87, 87, 8, 45, 1, -18, '', 0, 16, 12, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 4), 25, 25, 1243, 1425, 750, 446, 107, 107, 107, 107, 199, 199, 107, 96, 96, 96, 96, 96, 96, 8, 46, 1, -18, '', 0, 17, 13, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 5), 25, 25, 1318, 1500, 775, 454, 110, 110, 110, 110, 202, 202, 110, 105, 105, 105, 105, 105, 105, 8, 48, 1, -18, '', 0, 18, 14, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 1), 25, 25, 1768, 1825, 825, 458, 115, 115, 115, 115, 215, 215, 115, 101, 101, 101, 101, 101, 101, 8, 46, 1, -18, '', 0, 20, 13, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 2), 25, 25, 1843, 1900, 850, 466, 118, 118, 118, 118, 218, 218, 118, 110, 110, 110, 110, 110, 110, 8, 48, 1, -18, '', 0, 21, 14, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 3), 25, 25, 1918, 1975, 875, 475, 121, 121, 121, 121, 221, 221, 121, 119, 119, 119, 119, 119, 119, 8, 49, 1, -18, '', 0, 22, 15, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 4), 25, 25, 1993, 2050, 900, 483, 124, 124, 124, 124, 224, 224, 124, 128, 128, 128, 128, 128, 128, 9, 50, 1, -18, '', 0, 23, 16, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 5), 25, 25, 2068, 2125, 925, 491, 127, 127, 127, 127, 227, 227, 127, 137, 137, 137, 137, 137, 137, 9, 52, 1, -18, '', 0, 24, 17, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 1), 25, 25, 1055, 0, 512, 712, 111, 111, 111, 111, 147, 147, 111, 69, 69, 69, 69, 69, 69, 9, 40, 2, -18, '', 0, 19, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 2), 25, 25, 1155, 0, 525, 725, 114, 114, 114, 114, 149, 149, 114, 78, 78, 78, 78, 78, 78, 9, 43, 2, -18, '', 0, 21, 0, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 3), 25, 25, 1255, 0, 537, 737, 117, 117, 117, 117, 151, 151, 117, 87, 87, 87, 87, 87, 87, 10, 45, 2, -18, '', 0, 23, 0, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 4), 25, 25, 1355, 0, 550, 750, 120, 120, 120, 120, 153, 153, 120, 96, 96, 96, 96, 96, 96, 10, 48, 2, -18, '', 0, 25, 0, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 5), 25, 25, 1455, 0, 562, 762, 123, 123, 123, 123, 155, 155, 123, 105, 105, 105, 105, 105, 105, 11, 50, 2, -18, '', 0, 27, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 1), 25, 25, 1805, 0, 637, 787, 128, 128, 128, 128, 167, 167, 128, 101, 101, 101, 101, 101, 101, 10, 46, 2, -18, '', 0, 27, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 2), 25, 25, 1905, 0, 650, 800, 131, 131, 131, 131, 169, 169, 131, 110, 110, 110, 110, 110, 110, 11, 49, 2, -18, '', 0, 29, 0, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 3), 25, 25, 2005, 0, 662, 812, 134, 134, 134, 134, 171, 171, 134, 119, 119, 119, 119, 119, 119, 11, 52, 2, -18, '', 0, 31, 0, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 4), 25, 25, 2105, 0, 675, 825, 137, 137, 137, 137, 173, 173, 137, 128, 128, 128, 128, 128, 128, 12, 54, 2, -18, '', 0, 33, 0, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 5), 25, 25, 2205, 0, 687, 837, 140, 140, 140, 140, 175, 175, 140, 137, 137, 137, 137, 137, 137, 12, 57, 2, -18, '', 0, 35, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 1), 25, 25, 858, 1200, 333, 206, 97, 97, 97, 97, 190, 190, 97, 69, 69, 69, 69, 69, 69, 7, 42, 1, -18, '', 0, 13, 10, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 2), 25, 25, 908, 1275, 341, 212, 100, 100, 100, 100, 193, 193, 100, 78, 78, 78, 78, 78, 78, 7, 43, 1, -18, '', 0, 14, 11, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 3), 25, 25, 958, 1350, 350, 218, 103, 103, 103, 103, 196, 196, 103, 87, 87, 87, 87, 87, 87, 8, 45, 1, -18, '', 0, 15, 12, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 4), 25, 25, 1008, 1425, 358, 225, 106, 106, 106, 106, 199, 199, 106, 96, 96, 96, 96, 96, 96, 8, 46, 1, -18, '', 0, 16, 13, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 5), 25, 25, 1058, 1500, 366, 231, 109, 109, 109, 109, 202, 202, 109, 105, 105, 105, 105, 105, 105, 8, 48, 1, -18, '', 0, 17, 14, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 1), 25, 25, 1483, 1825, 408, 231, 114, 114, 114, 114, 215, 215, 114, 101, 101, 101, 101, 101, 101, 8, 46, 1, -18, '', 0, 18, 13, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 2), 25, 25, 1533, 1900, 416, 237, 117, 117, 117, 117, 218, 218, 117, 110, 110, 110, 110, 110, 110, 8, 48, 1, -18, '', 0, 19, 14, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 3), 25, 25, 1583, 1975, 425, 243, 120, 120, 120, 120, 221, 221, 120, 119, 119, 119, 119, 119, 119, 8, 49, 1, -18, '', 0, 20, 15, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 4), 25, 25, 1633, 2050, 433, 250, 123, 123, 123, 123, 224, 224, 123, 128, 128, 128, 128, 128, 128, 9, 50, 1, -18, '', 0, 21, 16, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 5), 25, 25, 1683, 2125, 441, 256, 126, 126, 126, 126, 227, 227, 126, 137, 137, 137, 137, 137, 137, 9, 52, 1, -18, '', 0, 22, 17, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 1), 26, 26, 1301, 0, 897, 728, 114, 114, 114, 114, 150, 150, 114, 71, 71, 71, 71, 71, 71, 9, 45, 2, -18, '', 0, 21, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 2), 26, 26, 1431, 0, 936, 741, 117, 117, 117, 117, 152, 152, 117, 80, 80, 80, 80, 80, 80, 10, 47, 2, -18, '', 0, 23, 0, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 3), 26, 26, 1561, 0, 975, 754, 120, 120, 120, 120, 154, 154, 120, 89, 89, 89, 89, 89, 89, 10, 50, 2, -18, '', 0, 25, 0, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 4), 26, 26, 1691, 0, 1014, 767, 123, 123, 123, 123, 156, 156, 123, 98, 98, 98, 98, 98, 98, 11, 53, 2, -18, '', 0, 27, 0, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 5), 26, 26, 1821, 0, 1053, 780, 126, 126, 126, 126, 158, 158, 126, 107, 107, 107, 107, 107, 107, 11, 56, 2, -18, '', 0, 29, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 1), 26, 26, 2211, 0, 1105, 793, 132, 132, 132, 132, 170, 170, 132, 105, 105, 105, 105, 105, 105, 10, 52, 2, -18, '', 0, 31, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 2), 26, 26, 2341, 0, 1144, 806, 135, 135, 135, 135, 172, 172, 135, 114, 114, 114, 114, 114, 114, 11, 54, 2, -18, '', 0, 33, 0, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 3), 26, 26, 2471, 0, 1183, 819, 138, 138, 138, 138, 174, 174, 138, 123, 123, 123, 123, 123, 123, 11, 57, 2, -18, '', 0, 35, 0, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 4), 26, 26, 2601, 0, 1222, 832, 141, 141, 141, 141, 176, 176, 141, 132, 132, 132, 132, 132, 132, 12, 60, 2, -18, '', 0, 37, 0, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 5), 26, 26, 2731, 0, 1261, 845, 144, 144, 144, 144, 178, 178, 144, 141, 141, 141, 141, 141, 141, 12, 63, 2, -18, '', 0, 39, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 1), 26, 26, 1074, 1269, 702, 437, 101, 101, 101, 101, 194, 194, 101, 71, 71, 71, 71, 71, 71, 7, 43, 1, -18, '', 0, 14, 10, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 2), 26, 26, 1152, 1347, 728, 446, 104, 104, 104, 104, 197, 197, 104, 80, 80, 80, 80, 80, 80, 8, 45, 1, -18, '', 0, 15, 11, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 3), 26, 26, 1230, 1425, 754, 455, 107, 107, 107, 107, 200, 200, 107, 89, 89, 89, 89, 89, 89, 8, 46, 1, -18, '', 0, 16, 12, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 4), 26, 26, 1308, 1503, 780, 463, 110, 110, 110, 110, 203, 203, 110, 98, 98, 98, 98, 98, 98, 8, 48, 1, -18, '', 0, 17, 13, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 5), 26, 26, 1386, 1581, 806, 472, 113, 113, 113, 113, 206, 206, 113, 107, 107, 107, 107, 107, 107, 8, 49, 1, -18, '', 0, 18, 14, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 1), 26, 26, 1854, 1919, 858, 476, 119, 119, 119, 119, 219, 219, 119, 105, 105, 105, 105, 105, 105, 8, 48, 1, -18, '', 0, 20, 13, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 2), 26, 26, 1932, 1997, 884, 485, 122, 122, 122, 122, 222, 222, 122, 114, 114, 114, 114, 114, 114, 8, 49, 1, -18, '', 0, 21, 14, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 3), 26, 26, 2010, 2075, 910, 494, 125, 125, 125, 125, 225, 225, 125, 123, 123, 123, 123, 123, 123, 9, 50, 1, -18, '', 0, 22, 15, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 4), 26, 26, 2088, 2153, 936, 502, 128, 128, 128, 128, 228, 228, 128, 132, 132, 132, 132, 132, 132, 9, 52, 1, -18, '', 0, 23, 16, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 5), 26, 26, 2166, 2231, 962, 511, 131, 131, 131, 131, 231, 231, 131, 141, 141, 141, 141, 141, 141, 9, 53, 1, -18, '', 0, 24, 17, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 1), 26, 26, 1113, 0, 533, 741, 114, 114, 114, 114, 150, 150, 114, 71, 71, 71, 71, 71, 71, 9, 41, 2, -18, '', 0, 19, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 2), 26, 26, 1217, 0, 546, 754, 117, 117, 117, 117, 152, 152, 117, 80, 80, 80, 80, 80, 80, 10, 44, 2, -18, '', 0, 21, 0, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 3), 26, 26, 1321, 0, 559, 767, 120, 120, 120, 120, 154, 154, 120, 89, 89, 89, 89, 89, 89, 10, 46, 2, -18, '', 0, 23, 0, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 4), 26, 26, 1425, 0, 572, 780, 123, 123, 123, 123, 156, 156, 123, 98, 98, 98, 98, 98, 98, 11, 49, 2, -18, '', 0, 25, 0, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 5), 26, 26, 1529, 0, 585, 793, 126, 126, 126, 126, 158, 158, 126, 107, 107, 107, 107, 107, 107, 11, 52, 2, -18, '', 0, 27, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 1), 26, 26, 1893, 0, 663, 819, 132, 132, 132, 132, 170, 170, 132, 105, 105, 105, 105, 105, 105, 10, 48, 2, -18, '', 0, 27, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 2), 26, 26, 1997, 0, 676, 832, 135, 135, 135, 135, 172, 172, 135, 114, 114, 114, 114, 114, 114, 11, 50, 2, -18, '', 0, 29, 0, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 3), 26, 26, 2101, 0, 689, 845, 138, 138, 138, 138, 174, 174, 138, 123, 123, 123, 123, 123, 123, 11, 53, 2, -18, '', 0, 31, 0, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 4), 26, 26, 2205, 0, 702, 858, 141, 141, 141, 141, 176, 176, 141, 132, 132, 132, 132, 132, 132, 12, 56, 2, -18, '', 0, 33, 0, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 5), 26, 26, 2309, 0, 715, 871, 144, 144, 144, 144, 178, 178, 144, 141, 141, 141, 141, 141, 141, 12, 58, 2, -18, '', 0, 35, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 1), 26, 26, 907, 1269, 346, 214, 100, 100, 100, 100, 194, 194, 100, 71, 71, 71, 71, 71, 71, 7, 43, 1, -18, '', 0, 13, 10, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 2), 26, 26, 959, 1347, 355, 221, 103, 103, 103, 103, 197, 197, 103, 80, 80, 80, 80, 80, 80, 8, 45, 1, -18, '', 0, 14, 11, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 3), 26, 26, 1011, 1425, 364, 227, 106, 106, 106, 106, 200, 200, 106, 89, 89, 89, 89, 89, 89, 8, 46, 1, -18, '', 0, 15, 12, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 4), 26, 26, 1063, 1503, 372, 234, 109, 109, 109, 109, 203, 203, 109, 98, 98, 98, 98, 98, 98, 8, 48, 1, -18, '', 0, 16, 13, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 5), 26, 26, 1115, 1581, 381, 240, 112, 112, 112, 112, 206, 206, 112, 107, 107, 107, 107, 107, 107, 8, 49, 1, -18, '', 0, 17, 14, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 1), 26, 26, 1557, 1919, 424, 240, 118, 118, 118, 118, 219, 219, 118, 105, 105, 105, 105, 105, 105, 8, 48, 1, -18, '', 0, 18, 13, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 2), 26, 26, 1609, 1997, 433, 247, 121, 121, 121, 121, 222, 222, 121, 114, 114, 114, 114, 114, 114, 8, 49, 1, -18, '', 0, 19, 14, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 3), 26, 26, 1661, 2075, 442, 253, 124, 124, 124, 124, 225, 225, 124, 123, 123, 123, 123, 123, 123, 9, 50, 1, -18, '', 0, 20, 15, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 4), 26, 26, 1713, 2153, 450, 260, 127, 127, 127, 127, 228, 228, 127, 132, 132, 132, 132, 132, 132, 9, 52, 1, -18, '', 0, 21, 16, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 5), 26, 26, 1765, 2231, 459, 266, 130, 130, 130, 130, 231, 231, 130, 141, 141, 141, 141, 141, 141, 9, 53, 1, -18, '', 0, 22, 17, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 1), 27, 27, 1371, 0, 932, 756, 117, 117, 117, 117, 153, 153, 117, 73, 73, 73, 73, 73, 73, 9, 46, 2, -18, '', 0, 22, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 2), 27, 27, 1506, 0, 972, 770, 120, 120, 120, 120, 155, 155, 120, 82, 82, 82, 82, 82, 82, 10, 49, 2, -18, '', 0, 24, 0, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 3), 27, 27, 1641, 0, 1013, 783, 123, 123, 123, 123, 157, 157, 123, 91, 91, 91, 91, 91, 91, 10, 52, 2, -18, '', 0, 26, 0, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 4), 27, 27, 1776, 0, 1053, 797, 126, 126, 126, 126, 159, 159, 126, 100, 100, 100, 100, 100, 100, 11, 54, 2, -18, '', 0, 28, 0, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 5), 27, 27, 1911, 0, 1094, 810, 129, 129, 129, 129, 161, 161, 129, 109, 109, 109, 109, 109, 109, 11, 57, 2, -18, '', 0, 30, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 1), 27, 27, 2316, 0, 1148, 823, 135, 135, 135, 135, 173, 173, 135, 107, 107, 107, 107, 107, 107, 11, 53, 2, -18, '', 0, 32, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 2), 27, 27, 2451, 0, 1188, 837, 138, 138, 138, 138, 175, 175, 138, 116, 116, 116, 116, 116, 116, 11, 56, 2, -18, '', 0, 34, 0, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 3), 27, 27, 2586, 0, 1229, 850, 141, 141, 141, 141, 177, 177, 141, 125, 125, 125, 125, 125, 125, 12, 59, 2, -18, '', 0, 36, 0, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 4), 27, 27, 2721, 0, 1269, 864, 144, 144, 144, 144, 179, 179, 144, 134, 134, 134, 134, 134, 134, 12, 61, 2, -18, '', 0, 38, 0, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 5), 27, 27, 2856, 0, 1310, 877, 147, 147, 147, 147, 181, 181, 147, 143, 143, 143, 143, 143, 143, 13, 64, 2, -18, '', 0, 40, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 1), 27, 27, 1132, 1339, 729, 455, 104, 104, 104, 104, 197, 197, 104, 73, 73, 73, 73, 73, 73, 8, 45, 1, -18, '', 0, 14, 10, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 2), 27, 27, 1213, 1420, 756, 464, 107, 107, 107, 107, 200, 200, 107, 82, 82, 82, 82, 82, 82, 8, 46, 1, -18, '', 0, 15, 11, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 3), 27, 27, 1294, 1501, 783, 473, 110, 110, 110, 110, 203, 203, 110, 91, 91, 91, 91, 91, 91, 8, 48, 1, -18, '', 0, 16, 12, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 4), 27, 27, 1375, 1582, 810, 482, 113, 113, 113, 113, 206, 206, 113, 100, 100, 100, 100, 100, 100, 8, 49, 1, -18, '', 0, 17, 13, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 5), 27, 27, 1456, 1663, 837, 491, 116, 116, 116, 116, 209, 209, 116, 109, 109, 109, 109, 109, 109, 9, 50, 1, -18, '', 0, 18, 14, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 1), 27, 27, 1942, 2014, 891, 495, 122, 122, 122, 122, 222, 222, 122, 107, 107, 107, 107, 107, 107, 8, 49, 1, -18, '', 0, 20, 13, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 2), 27, 27, 2023, 2095, 918, 504, 125, 125, 125, 125, 225, 225, 125, 116, 116, 116, 116, 116, 116, 9, 50, 1, -18, '', 0, 21, 14, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 3), 27, 27, 2104, 2176, 945, 513, 128, 128, 128, 128, 228, 228, 128, 125, 125, 125, 125, 125, 125, 9, 52, 1, -18, '', 0, 22, 15, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 4), 27, 27, 2185, 2257, 972, 522, 131, 131, 131, 131, 231, 231, 131, 134, 134, 134, 134, 134, 134, 9, 53, 1, -18, '', 0, 23, 16, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 5), 27, 27, 2266, 2338, 999, 531, 134, 134, 134, 134, 234, 234, 134, 143, 143, 143, 143, 143, 143, 9, 55, 1, -18, '', 0, 24, 17, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 1), 27, 27, 1174, 0, 553, 769, 117, 117, 117, 117, 153, 153, 117, 73, 73, 73, 73, 73, 73, 9, 43, 2, -18, '', 0, 20, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 2), 27, 27, 1282, 0, 567, 783, 120, 120, 120, 120, 155, 155, 120, 82, 82, 82, 82, 82, 82, 10, 45, 2, -18, '', 0, 22, 0, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 3), 27, 27, 1390, 0, 580, 796, 123, 123, 123, 123, 157, 157, 123, 91, 91, 91, 91, 91, 91, 10, 48, 2, -18, '', 0, 24, 0, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 4), 27, 27, 1498, 0, 594, 810, 126, 126, 126, 126, 159, 159, 126, 100, 100, 100, 100, 100, 100, 11, 50, 2, -18, '', 0, 26, 0, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 5), 27, 27, 1606, 0, 607, 823, 129, 129, 129, 129, 161, 161, 129, 109, 109, 109, 109, 109, 109, 11, 53, 2, -18, '', 0, 28, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 1), 27, 27, 1984, 0, 688, 850, 135, 135, 135, 135, 173, 173, 135, 107, 107, 107, 107, 107, 107, 11, 49, 2, -18, '', 0, 28, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 2), 27, 27, 2092, 0, 702, 864, 138, 138, 138, 138, 175, 175, 138, 116, 116, 116, 116, 116, 116, 11, 52, 2, -18, '', 0, 30, 0, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 3), 27, 27, 2200, 0, 715, 877, 141, 141, 141, 141, 177, 177, 141, 125, 125, 125, 125, 125, 125, 12, 54, 2, -18, '', 0, 32, 0, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 4), 27, 27, 2308, 0, 729, 891, 144, 144, 144, 144, 179, 179, 144, 134, 134, 134, 134, 134, 134, 12, 57, 2, -18, '', 0, 34, 0, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 5), 27, 27, 2416, 0, 742, 904, 147, 147, 147, 147, 181, 181, 147, 143, 143, 143, 143, 143, 143, 13, 59, 2, -18, '', 0, 36, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 1), 27, 27, 957, 1339, 360, 222, 102, 102, 102, 102, 197, 197, 102, 73, 73, 73, 73, 73, 73, 8, 45, 1, -18, '', 0, 13, 10, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 2), 27, 27, 1011, 1420, 369, 229, 105, 105, 105, 105, 200, 200, 105, 82, 82, 82, 82, 82, 82, 8, 46, 1, -18, '', 0, 14, 11, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 3), 27, 27, 1065, 1501, 378, 236, 108, 108, 108, 108, 203, 203, 108, 91, 91, 91, 91, 91, 91, 8, 48, 1, -18, '', 0, 15, 12, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 4), 27, 27, 1119, 1582, 387, 243, 111, 111, 111, 111, 206, 206, 111, 100, 100, 100, 100, 100, 100, 8, 49, 1, -18, '', 0, 16, 13, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 5), 27, 27, 1173, 1663, 396, 249, 114, 114, 114, 114, 209, 209, 114, 109, 109, 109, 109, 109, 109, 9, 50, 1, -18, '', 0, 17, 14, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 1), 27, 27, 1632, 2014, 441, 249, 120, 120, 120, 120, 222, 222, 120, 107, 107, 107, 107, 107, 107, 8, 49, 1, -18, '', 0, 18, 13, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 2), 27, 27, 1686, 2095, 450, 256, 123, 123, 123, 123, 225, 225, 123, 116, 116, 116, 116, 116, 116, 9, 50, 1, -18, '', 0, 19, 14, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 3), 27, 27, 1740, 2176, 459, 263, 126, 126, 126, 126, 228, 228, 126, 125, 125, 125, 125, 125, 125, 9, 52, 1, -18, '', 0, 20, 15, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 4), 27, 27, 1794, 2257, 468, 270, 129, 129, 129, 129, 231, 231, 129, 134, 134, 134, 134, 134, 134, 9, 53, 1, -18, '', 0, 21, 16, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 5), 27, 27, 1848, 2338, 477, 276, 132, 132, 132, 132, 234, 234, 132, 143, 143, 143, 143, 143, 143, 9, 55, 1, -18, '', 0, 22, 17, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 1), 28, 28, 1443, 0, 966, 784, 121, 121, 121, 121, 156, 156, 121, 76, 76, 76, 76, 76, 76, 10, 47, 2, -18, '', 0, 22, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 2), 28, 28, 1583, 0, 1008, 798, 124, 124, 124, 124, 158, 158, 124, 86, 86, 86, 86, 86, 86, 10, 50, 2, -18, '', 0, 24, 0, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 3), 28, 28, 1723, 0, 1050, 812, 127, 127, 127, 127, 160, 160, 127, 96, 96, 96, 96, 96, 96, 11, 53, 2, -18, '', 0, 26, 0, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 4), 28, 28, 1863, 0, 1092, 826, 130, 130, 130, 130, 162, 162, 130, 106, 106, 106, 106, 106, 106, 11, 56, 2, -18, '', 0, 28, 0, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 5), 28, 28, 2003, 0, 1134, 840, 133, 133, 133, 133, 164, 164, 133, 116, 116, 116, 116, 116, 116, 12, 59, 2, -18, '', 0, 30, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 1), 28, 28, 2423, 0, 1190, 854, 140, 140, 140, 140, 176, 176, 140, 110, 110, 110, 110, 110, 110, 11, 54, 2, -18, '', 0, 32, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 2), 28, 28, 2563, 0, 1232, 868, 143, 143, 143, 143, 178, 178, 143, 120, 120, 120, 120, 120, 120, 11, 57, 2, -18, '', 0, 34, 0, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 3), 28, 28, 2703, 0, 1274, 882, 146, 146, 146, 146, 180, 180, 146, 130, 130, 130, 130, 130, 130, 12, 60, 2, -18, '', 0, 36, 0, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 4), 28, 28, 2843, 0, 1316, 896, 149, 149, 149, 149, 182, 182, 149, 140, 140, 140, 140, 140, 140, 12, 63, 2, -18, '', 0, 38, 0, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 5), 28, 28, 2983, 0, 1358, 910, 152, 152, 152, 152, 184, 184, 152, 150, 150, 150, 150, 150, 150, 13, 66, 2, -18, '', 0, 40, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 1), 28, 28, 1192, 1411, 756, 471, 107, 107, 107, 107, 201, 201, 107, 76, 76, 76, 76, 76, 76, 8, 46, 1, -18, '', 0, 15, 10, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 2), 28, 28, 1276, 1495, 784, 480, 110, 110, 110, 110, 204, 204, 110, 86, 86, 86, 86, 86, 86, 8, 48, 1, -18, '', 0, 16, 11, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 3), 28, 28, 1360, 1579, 812, 490, 113, 113, 113, 113, 207, 207, 113, 96, 96, 96, 96, 96, 96, 8, 49, 1, -18, '', 0, 17, 12, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 4), 28, 28, 1444, 1663, 840, 499, 116, 116, 116, 116, 210, 210, 116, 106, 106, 106, 106, 106, 106, 9, 50, 1, -18, '', 0, 18, 13, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 5), 28, 28, 1528, 1747, 868, 508, 119, 119, 119, 119, 213, 213, 119, 116, 116, 116, 116, 116, 116, 9, 52, 1, -18, '', 0, 19, 14, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 1), 28, 28, 2032, 2111, 924, 513, 126, 126, 126, 126, 226, 226, 126, 110, 110, 110, 110, 110, 110, 9, 50, 1, -18, '', 0, 21, 13, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 2), 28, 28, 2116, 2195, 952, 522, 129, 129, 129, 129, 229, 229, 129, 120, 120, 120, 120, 120, 120, 9, 52, 1, -18, '', 0, 22, 14, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 3), 28, 28, 2200, 2279, 980, 532, 132, 132, 132, 132, 232, 232, 132, 130, 130, 130, 130, 130, 130, 9, 53, 1, -18, '', 0, 23, 15, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 4), 28, 28, 2284, 2363, 1008, 541, 135, 135, 135, 135, 235, 235, 135, 140, 140, 140, 140, 140, 140, 9, 55, 1, -18, '', 0, 24, 16, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 5), 28, 28, 2368, 2447, 1036, 550, 138, 138, 138, 138, 238, 238, 138, 150, 150, 150, 150, 150, 150, 10, 56, 1, -18, '', 0, 25, 17, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 1), 28, 28, 1236, 0, 574, 798, 121, 121, 121, 121, 156, 156, 121, 76, 76, 76, 76, 76, 76, 10, 44, 2, -18, '', 0, 20, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 2), 28, 28, 1348, 0, 588, 812, 124, 124, 124, 124, 158, 158, 124, 86, 86, 86, 86, 86, 86, 10, 46, 2, -18, '', 0, 22, 0, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 3), 28, 28, 1460, 0, 602, 826, 127, 127, 127, 127, 160, 160, 127, 96, 96, 96, 96, 96, 96, 11, 49, 2, -18, '', 0, 24, 0, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 4), 28, 28, 1572, 0, 616, 840, 130, 130, 130, 130, 162, 162, 130, 106, 106, 106, 106, 106, 106, 11, 52, 2, -18, '', 0, 26, 0, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 5), 28, 28, 1684, 0, 630, 854, 133, 133, 133, 133, 164, 164, 133, 116, 116, 116, 116, 116, 116, 12, 54, 2, -18, '', 0, 28, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 1), 28, 28, 2076, 0, 714, 882, 140, 140, 140, 140, 176, 176, 140, 110, 110, 110, 110, 110, 110, 11, 50, 2, -18, '', 0, 28, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 2), 28, 28, 2188, 0, 728, 896, 143, 143, 143, 143, 178, 178, 143, 120, 120, 120, 120, 120, 120, 11, 53, 2, -18, '', 0, 30, 0, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 3), 28, 28, 2300, 0, 742, 910, 146, 146, 146, 146, 180, 180, 146, 130, 130, 130, 130, 130, 130, 12, 56, 2, -18, '', 0, 32, 0, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 4), 28, 28, 2412, 0, 756, 924, 149, 149, 149, 149, 182, 182, 149, 140, 140, 140, 140, 140, 140, 12, 58, 2, -18, '', 0, 34, 0, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 5), 28, 28, 2524, 0, 770, 938, 152, 152, 152, 152, 184, 184, 152, 150, 150, 150, 150, 150, 150, 13, 61, 2, -18, '', 0, 36, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 1), 28, 28, 1009, 1411, 373, 231, 106, 106, 106, 106, 201, 201, 106, 76, 76, 76, 76, 76, 76, 8, 46, 1, -18, '', 0, 14, 10, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 2), 28, 28, 1065, 1495, 382, 238, 109, 109, 109, 109, 204, 204, 109, 86, 86, 86, 86, 86, 86, 8, 48, 1, -18, '', 0, 15, 11, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 3), 28, 28, 1121, 1579, 392, 245, 112, 112, 112, 112, 207, 207, 112, 96, 96, 96, 96, 96, 96, 8, 49, 1, -18, '', 0, 16, 12, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 4), 28, 28, 1177, 1663, 401, 252, 115, 115, 115, 115, 210, 210, 115, 106, 106, 106, 106, 106, 106, 9, 50, 1, -18, '', 0, 17, 13, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 5), 28, 28, 1233, 1747, 410, 259, 118, 118, 118, 118, 213, 213, 118, 116, 116, 116, 116, 116, 116, 9, 52, 1, -18, '', 0, 18, 14, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 1), 28, 28, 1709, 2111, 457, 259, 125, 125, 125, 125, 226, 226, 125, 110, 110, 110, 110, 110, 110, 9, 50, 1, -18, '', 0, 19, 13, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 2), 28, 28, 1765, 2195, 466, 266, 128, 128, 128, 128, 229, 229, 128, 120, 120, 120, 120, 120, 120, 9, 52, 1, -18, '', 0, 20, 14, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 3), 28, 28, 1821, 2279, 476, 273, 131, 131, 131, 131, 232, 232, 131, 130, 130, 130, 130, 130, 130, 9, 53, 1, -18, '', 0, 21, 15, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 4), 28, 28, 1877, 2363, 485, 280, 134, 134, 134, 134, 235, 235, 134, 140, 140, 140, 140, 140, 140, 9, 55, 1, -18, '', 0, 22, 16, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 5), 28, 28, 1933, 2447, 494, 287, 137, 137, 137, 137, 238, 238, 137, 150, 150, 150, 150, 150, 150, 10, 56, 1, -18, '', 0, 23, 17, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 1), 29, 29, 1518, 0, 1001, 812, 124, 124, 124, 124, 159, 159, 124, 78, 78, 78, 78, 78, 78, 10, 49, 2, -18, '', 0, 22, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 2), 29, 29, 1663, 0, 1044, 827, 127, 127, 127, 127, 161, 161, 127, 88, 88, 88, 88, 88, 88, 10, 52, 2, -18, '', 0, 24, 0, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 3), 29, 29, 1808, 0, 1088, 841, 130, 130, 130, 130, 163, 163, 130, 98, 98, 98, 98, 98, 98, 11, 54, 2, -18, '', 0, 26, 0, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 4), 29, 29, 1953, 0, 1131, 856, 133, 133, 133, 133, 165, 165, 133, 108, 108, 108, 108, 108, 108, 11, 57, 2, -18, '', 0, 28, 0, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 5), 29, 29, 2098, 0, 1175, 870, 136, 136, 136, 136, 167, 167, 136, 118, 118, 118, 118, 118, 118, 12, 60, 2, -18, '', 0, 30, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 1), 29, 29, 2533, 0, 1233, 884, 143, 143, 143, 143, 179, 179, 143, 114, 114, 114, 114, 114, 114, 11, 56, 2, -18, '', 0, 32, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 2), 29, 29, 2678, 0, 1276, 899, 146, 146, 146, 146, 181, 181, 146, 124, 124, 124, 124, 124, 124, 12, 59, 2, -18, '', 0, 34, 0, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 3), 29, 29, 2823, 0, 1320, 913, 149, 149, 149, 149, 183, 183, 149, 134, 134, 134, 134, 134, 134, 12, 61, 2, -18, '', 0, 36, 0, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 4), 29, 29, 2968, 0, 1363, 928, 152, 152, 152, 152, 185, 185, 152, 144, 144, 144, 144, 144, 144, 13, 64, 2, -18, '', 0, 38, 0, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 5), 29, 29, 3113, 0, 1407, 942, 155, 155, 155, 155, 187, 187, 155, 154, 154, 154, 154, 154, 154, 13, 67, 2, -18, '', 0, 40, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 1), 29, 29, 1253, 1485, 783, 488, 110, 110, 110, 110, 204, 204, 110, 78, 78, 78, 78, 78, 78, 8, 48, 1, -18, '', 0, 15, 10, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 2), 29, 29, 1340, 1572, 812, 498, 113, 113, 113, 113, 207, 207, 113, 88, 88, 88, 88, 88, 88, 8, 49, 1, -18, '', 0, 16, 11, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 3), 29, 29, 1427, 1659, 841, 508, 116, 116, 116, 116, 210, 210, 116, 98, 98, 98, 98, 98, 98, 9, 50, 1, -18, '', 0, 17, 12, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 4), 29, 29, 1514, 1746, 870, 517, 119, 119, 119, 119, 213, 213, 119, 108, 108, 108, 108, 108, 108, 9, 52, 1, -18, '', 0, 18, 13, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 5), 29, 29, 1601, 1833, 899, 527, 122, 122, 122, 122, 216, 216, 122, 118, 118, 118, 118, 118, 118, 9, 53, 1, -18, '', 0, 19, 14, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 1), 29, 29, 2123, 2210, 957, 531, 129, 129, 129, 129, 229, 229, 129, 114, 114, 114, 114, 114, 114, 9, 52, 1, -18, '', 0, 21, 13, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 2), 29, 29, 2210, 2297, 986, 541, 132, 132, 132, 132, 232, 232, 132, 124, 124, 124, 124, 124, 124, 9, 53, 1, -18, '', 0, 22, 14, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 3), 29, 29, 2297, 2384, 1015, 551, 135, 135, 135, 135, 235, 235, 135, 134, 134, 134, 134, 134, 134, 9, 55, 1, -18, '', 0, 23, 15, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 4), 29, 29, 2384, 2471, 1044, 560, 138, 138, 138, 138, 238, 238, 138, 144, 144, 144, 144, 144, 144, 10, 56, 1, -18, '', 0, 24, 16, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 5), 29, 29, 2471, 2558, 1073, 570, 141, 141, 141, 141, 241, 241, 141, 154, 154, 154, 154, 154, 154, 10, 57, 1, -18, '', 0, 25, 17, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 1), 29, 29, 1300, 0, 594, 826, 124, 124, 124, 124, 159, 159, 124, 78, 78, 78, 78, 78, 78, 10, 45, 2, -18, '', 0, 20, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 2), 29, 29, 1416, 0, 609, 841, 127, 127, 127, 127, 161, 161, 127, 88, 88, 88, 88, 88, 88, 10, 48, 2, -18, '', 0, 22, 0, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 3), 29, 29, 1532, 0, 623, 855, 130, 130, 130, 130, 163, 163, 130, 98, 98, 98, 98, 98, 98, 11, 50, 2, -18, '', 0, 24, 0, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 4), 29, 29, 1648, 0, 638, 870, 133, 133, 133, 133, 165, 165, 133, 108, 108, 108, 108, 108, 108, 11, 53, 2, -18, '', 0, 26, 0, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 5), 29, 29, 1764, 0, 652, 884, 136, 136, 136, 136, 167, 167, 136, 118, 118, 118, 118, 118, 118, 12, 56, 2, -18, '', 0, 28, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 1), 29, 29, 2170, 0, 739, 913, 143, 143, 143, 143, 179, 179, 143, 114, 114, 114, 114, 114, 114, 11, 52, 2, -18, '', 0, 28, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 2), 29, 29, 2286, 0, 754, 928, 146, 146, 146, 146, 181, 181, 146, 124, 124, 124, 124, 124, 124, 12, 54, 2, -18, '', 0, 30, 0, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 3), 29, 29, 2402, 0, 768, 942, 149, 149, 149, 149, 183, 183, 149, 134, 134, 134, 134, 134, 134, 12, 57, 2, -18, '', 0, 32, 0, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 4), 29, 29, 2518, 0, 783, 957, 152, 152, 152, 152, 185, 185, 152, 144, 144, 144, 144, 144, 144, 13, 59, 2, -18, '', 0, 34, 0, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 5), 29, 29, 2634, 0, 797, 971, 155, 155, 155, 155, 187, 187, 155, 154, 154, 154, 154, 154, 154, 13, 62, 2, -18, '', 0, 36, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 1), 29, 29, 1063, 1485, 386, 239, 108, 108, 108, 108, 204, 204, 108, 78, 78, 78, 78, 78, 78, 8, 48, 1, -18, '', 0, 14, 10, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 2), 29, 29, 1121, 1572, 396, 246, 111, 111, 111, 111, 207, 207, 111, 88, 88, 88, 88, 88, 88, 8, 49, 1, -18, '', 0, 15, 11, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 3), 29, 29, 1179, 1659, 406, 253, 114, 114, 114, 114, 210, 210, 114, 98, 98, 98, 98, 98, 98, 9, 50, 1, -18, '', 0, 16, 12, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 4), 29, 29, 1237, 1746, 415, 261, 117, 117, 117, 117, 213, 213, 117, 108, 108, 108, 108, 108, 108, 9, 52, 1, -18, '', 0, 17, 13, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 5), 29, 29, 1295, 1833, 425, 268, 120, 120, 120, 120, 216, 216, 120, 118, 118, 118, 118, 118, 118, 9, 53, 1, -18, '', 0, 18, 14, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 1), 29, 29, 1788, 2210, 473, 268, 127, 127, 127, 127, 229, 229, 127, 114, 114, 114, 114, 114, 114, 9, 52, 1, -18, '', 0, 19, 13, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 2), 29, 29, 1846, 2297, 483, 275, 130, 130, 130, 130, 232, 232, 130, 124, 124, 124, 124, 124, 124, 9, 53, 1, -18, '', 0, 20, 14, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 3), 29, 29, 1904, 2384, 493, 282, 133, 133, 133, 133, 235, 235, 133, 134, 134, 134, 134, 134, 134, 9, 55, 1, -18, '', 0, 21, 15, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 4), 29, 29, 1962, 2471, 502, 290, 136, 136, 136, 136, 238, 238, 136, 144, 144, 144, 144, 144, 144, 10, 56, 1, -18, '', 0, 22, 16, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 5), 29, 29, 2020, 2558, 512, 297, 139, 139, 139, 139, 241, 241, 139, 154, 154, 154, 154, 154, 154, 10, 57, 1, -18, '', 0, 23, 17, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 1), 30, 30, 1595, 0, 1035, 840, 129, 129, 129, 129, 162, 162, 129, 80, 80, 80, 80, 80, 80, 10, 50, 2, -18, '', 0, 23, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 2), 30, 30, 1745, 0, 1080, 855, 133, 133, 133, 133, 164, 164, 133, 90, 90, 90, 90, 90, 90, 11, 53, 2, -18, '', 0, 25, 0, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 3), 30, 30, 1895, 0, 1125, 870, 137, 137, 137, 137, 166, 166, 137, 100, 100, 100, 100, 100, 100, 11, 56, 2, -18, '', 0, 27, 0, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 4), 30, 30, 2045, 0, 1170, 885, 141, 141, 141, 141, 168, 168, 141, 110, 110, 110, 110, 110, 110, 12, 59, 2, -18, '', 0, 29, 0, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 5), 30, 30, 2195, 0, 1215, 900, 145, 145, 145, 145, 170, 170, 145, 120, 120, 120, 120, 120, 120, 12, 61, 2, -18, '', 0, 31, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 1), 30, 30, 2645, 0, 1275, 915, 149, 149, 149, 149, 182, 182, 149, 116, 116, 116, 116, 116, 116, 11, 57, 2, -18, '', 0, 33, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 2), 30, 30, 2795, 0, 1320, 930, 153, 153, 153, 153, 184, 184, 153, 126, 126, 126, 126, 126, 126, 12, 60, 2, -18, '', 0, 35, 0, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 3), 30, 30, 2945, 0, 1365, 945, 157, 157, 157, 157, 186, 186, 157, 136, 136, 136, 136, 136, 136, 12, 63, 2, -18, '', 0, 37, 0, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 4), 30, 30, 3095, 0, 1410, 960, 161, 161, 161, 161, 188, 188, 161, 146, 146, 146, 146, 146, 146, 13, 66, 2, -18, '', 0, 39, 0, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 5), 30, 30, 3245, 0, 1455, 975, 165, 165, 165, 165, 190, 190, 165, 156, 156, 156, 156, 156, 156, 13, 68, 2, -18, '', 0, 41, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 1), 30, 30, 1317, 1560, 810, 505, 114, 114, 114, 114, 208, 208, 114, 80, 80, 80, 80, 80, 80, 8, 49, 1, -18, '', 0, 15, 11, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 2), 30, 30, 1407, 1650, 840, 515, 118, 118, 118, 118, 211, 211, 118, 90, 90, 90, 90, 90, 90, 9, 50, 1, -18, '', 0, 16, 12, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 3), 30, 30, 1497, 1740, 870, 525, 122, 122, 122, 122, 214, 214, 122, 100, 100, 100, 100, 100, 100, 9, 52, 1, -18, '', 0, 17, 13, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 4), 30, 30, 1587, 1830, 900, 535, 126, 126, 126, 126, 217, 217, 126, 110, 110, 110, 110, 110, 110, 9, 53, 1, -18, '', 0, 18, 14, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 5), 30, 30, 1677, 1920, 930, 545, 130, 130, 130, 130, 220, 220, 130, 120, 120, 120, 120, 120, 120, 9, 55, 1, -18, '', 0, 19, 15, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 1), 30, 30, 2217, 2310, 990, 550, 134, 134, 134, 134, 233, 233, 134, 116, 116, 116, 116, 116, 116, 9, 53, 1, -18, '', 0, 21, 14, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 2), 30, 30, 2307, 2400, 1020, 560, 138, 138, 138, 138, 236, 236, 138, 126, 126, 126, 126, 126, 126, 9, 55, 1, -18, '', 0, 22, 15, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 3), 30, 30, 2397, 2490, 1050, 570, 142, 142, 142, 142, 239, 239, 142, 136, 136, 136, 136, 136, 136, 10, 56, 1, -18, '', 0, 23, 16, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 4), 30, 30, 2487, 2580, 1080, 580, 146, 146, 146, 146, 242, 242, 146, 146, 146, 146, 146, 146, 146, 10, 57, 1, -18, '', 0, 24, 17, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 5), 30, 30, 2577, 2670, 1110, 590, 150, 150, 150, 150, 245, 245, 150, 156, 156, 156, 156, 156, 156, 10, 59, 1, -18, '', 0, 25, 18, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 1), 30, 30, 1367, 0, 615, 855, 129, 129, 129, 129, 162, 162, 129, 80, 80, 80, 80, 80, 80, 10, 46, 2, -18, '', 0, 21, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 2), 30, 30, 1487, 0, 630, 870, 133, 133, 133, 133, 164, 164, 133, 90, 90, 90, 90, 90, 90, 11, 49, 2, -18, '', 0, 23, 0, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 3), 30, 30, 1607, 0, 645, 885, 137, 137, 137, 137, 166, 166, 137, 100, 100, 100, 100, 100, 100, 11, 52, 2, -18, '', 0, 25, 0, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 4), 30, 30, 1727, 0, 660, 900, 141, 141, 141, 141, 168, 168, 141, 110, 110, 110, 110, 110, 110, 12, 54, 2, -18, '', 0, 27, 0, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 5), 30, 30, 1847, 0, 675, 915, 145, 145, 145, 145, 170, 170, 145, 120, 120, 120, 120, 120, 120, 12, 57, 2, -18, '', 0, 29, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 1), 30, 30, 2267, 0, 765, 945, 149, 149, 149, 149, 182, 182, 149, 116, 116, 116, 116, 116, 116, 11, 53, 2, -18, '', 0, 29, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 2), 30, 30, 2387, 0, 780, 960, 153, 153, 153, 153, 184, 184, 153, 126, 126, 126, 126, 126, 126, 12, 56, 2, -18, '', 0, 31, 0, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 3), 30, 30, 2507, 0, 795, 975, 157, 157, 157, 157, 186, 186, 157, 136, 136, 136, 136, 136, 136, 12, 58, 2, -18, '', 0, 33, 0, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 4), 30, 30, 2627, 0, 810, 990, 161, 161, 161, 161, 188, 188, 161, 146, 146, 146, 146, 146, 146, 13, 61, 2, -18, '', 0, 35, 0, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 5), 30, 30, 2747, 0, 825, 1005, 165, 165, 165, 165, 190, 190, 165, 156, 156, 156, 156, 156, 156, 13, 63, 2, -18, '', 0, 37, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 1), 30, 30, 1120, 1560, 400, 247, 113, 113, 113, 113, 208, 208, 113, 80, 80, 80, 80, 80, 80, 8, 49, 1, -18, '', 0, 14, 11, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 2), 30, 30, 1180, 1650, 410, 255, 117, 117, 117, 117, 211, 211, 117, 90, 90, 90, 90, 90, 90, 9, 50, 1, -18, '', 0, 15, 12, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 3), 30, 30, 1240, 1740, 420, 262, 121, 121, 121, 121, 214, 214, 121, 100, 100, 100, 100, 100, 100, 9, 52, 1, -18, '', 0, 16, 13, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 4), 30, 30, 1300, 1830, 430, 270, 125, 125, 125, 125, 217, 217, 125, 110, 110, 110, 110, 110, 110, 9, 53, 1, -18, '', 0, 17, 14, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 5), 30, 30, 1360, 1920, 440, 277, 129, 129, 129, 129, 220, 220, 129, 120, 120, 120, 120, 120, 120, 9, 55, 1, -18, '', 0, 18, 15, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 1), 30, 30, 1870, 2310, 490, 277, 133, 133, 133, 133, 233, 233, 133, 116, 116, 116, 116, 116, 116, 9, 53, 1, -18, '', 0, 19, 14, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 2), 30, 30, 1930, 2400, 500, 285, 137, 137, 137, 137, 236, 236, 137, 126, 126, 126, 126, 126, 126, 9, 55, 1, -18, '', 0, 20, 15, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 3), 30, 30, 1990, 2490, 510, 292, 141, 141, 141, 141, 239, 239, 141, 136, 136, 136, 136, 136, 136, 10, 56, 1, -18, '', 0, 21, 16, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 4), 30, 30, 2050, 2580, 520, 300, 145, 145, 145, 145, 242, 242, 145, 146, 146, 146, 146, 146, 146, 10, 57, 1, -18, '', 0, 22, 17, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 5), 30, 30, 2110, 2670, 530, 307, 149, 149, 149, 149, 245, 245, 149, 156, 156, 156, 156, 156, 156, 10, 59, 1, -18, '', 0, 23, 18, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 1), 31, 31, 1675, 0, 1070, 868, 132, 132, 132, 132, 165, 165, 132, 82, 82, 82, 82, 82, 82, 10, 52, 2, -18, '', 0, 23, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 2), 31, 31, 1830, 0, 1116, 884, 136, 136, 136, 136, 167, 167, 136, 92, 92, 92, 92, 92, 92, 11, 54, 2, -18, '', 0, 25, 0, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 3), 31, 31, 1985, 0, 1163, 899, 140, 140, 140, 140, 169, 169, 140, 102, 102, 102, 102, 102, 102, 11, 57, 2, -18, '', 0, 27, 0, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 4), 31, 31, 2140, 0, 1209, 915, 144, 144, 144, 144, 171, 171, 144, 112, 112, 112, 112, 112, 112, 12, 60, 2, -18, '', 0, 29, 0, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 5), 31, 31, 2295, 0, 1256, 930, 148, 148, 148, 148, 173, 173, 148, 122, 122, 122, 122, 122, 122, 12, 63, 2, -18, '', 0, 31, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 1), 31, 31, 2760, 0, 1318, 945, 152, 152, 152, 152, 185, 185, 152, 118, 118, 118, 118, 118, 118, 12, 59, 2, -18, '', 0, 33, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 2), 31, 31, 2915, 0, 1364, 961, 156, 156, 156, 156, 187, 187, 156, 128, 128, 128, 128, 128, 128, 12, 61, 2, -18, '', 0, 35, 0, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 3), 31, 31, 3070, 0, 1411, 976, 160, 160, 160, 160, 189, 189, 160, 138, 138, 138, 138, 138, 138, 13, 64, 2, -18, '', 0, 37, 0, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 4), 31, 31, 3225, 0, 1457, 992, 164, 164, 164, 164, 191, 191, 164, 148, 148, 148, 148, 148, 148, 13, 67, 2, -18, '', 0, 39, 0, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 5), 31, 31, 3380, 0, 1504, 1007, 168, 168, 168, 168, 193, 193, 168, 158, 158, 158, 158, 158, 158, 14, 70, 2, -18, '', 0, 41, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 1), 31, 31, 1383, 1637, 837, 522, 117, 117, 117, 117, 211, 211, 117, 82, 82, 82, 82, 82, 82, 9, 50, 1, -18, '', 0, 15, 11, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 2), 31, 31, 1476, 1730, 868, 532, 121, 121, 121, 121, 214, 214, 121, 92, 92, 92, 92, 92, 92, 9, 52, 1, -18, '', 0, 16, 12, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 3), 31, 31, 1569, 1823, 899, 543, 125, 125, 125, 125, 217, 217, 125, 102, 102, 102, 102, 102, 102, 9, 53, 1, -18, '', 0, 17, 13, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 4), 31, 31, 1662, 1916, 930, 553, 129, 129, 129, 129, 220, 220, 129, 112, 112, 112, 112, 112, 112, 9, 55, 1, -18, '', 0, 18, 14, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 5), 31, 31, 1755, 2009, 961, 563, 133, 133, 133, 133, 223, 223, 133, 122, 122, 122, 122, 122, 122, 10, 56, 1, -18, '', 0, 19, 15, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 1), 31, 31, 2313, 2412, 1023, 568, 137, 137, 137, 137, 236, 236, 137, 118, 118, 118, 118, 118, 118, 9, 55, 1, -18, '', 0, 21, 14, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 2), 31, 31, 2406, 2505, 1054, 578, 141, 141, 141, 141, 239, 239, 141, 128, 128, 128, 128, 128, 128, 10, 56, 1, -18, '', 0, 22, 15, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 3), 31, 31, 2499, 2598, 1085, 589, 145, 145, 145, 145, 242, 242, 145, 138, 138, 138, 138, 138, 138, 10, 57, 1, -18, '', 0, 23, 16, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 4), 31, 31, 2592, 2691, 1116, 599, 149, 149, 149, 149, 245, 245, 149, 148, 148, 148, 148, 148, 148, 10, 59, 1, -18, '', 0, 24, 17, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 5), 31, 31, 2685, 2784, 1147, 609, 153, 153, 153, 153, 248, 248, 153, 158, 158, 158, 158, 158, 158, 10, 60, 1, -18, '', 0, 25, 18, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 1), 31, 31, 1436, 0, 635, 883, 132, 132, 132, 132, 165, 165, 132, 82, 82, 82, 82, 82, 82, 10, 48, 2, -18, '', 0, 21, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 2), 31, 31, 1560, 0, 651, 899, 136, 136, 136, 136, 167, 167, 136, 92, 92, 92, 92, 92, 92, 11, 50, 2, -18, '', 0, 23, 0, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 3), 31, 31, 1684, 0, 666, 914, 140, 140, 140, 140, 169, 169, 140, 102, 102, 102, 102, 102, 102, 11, 53, 2, -18, '', 0, 25, 0, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 4), 31, 31, 1808, 0, 682, 930, 144, 144, 144, 144, 171, 171, 144, 112, 112, 112, 112, 112, 112, 12, 56, 2, -18, '', 0, 27, 0, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 5), 31, 31, 1932, 0, 697, 945, 148, 148, 148, 148, 173, 173, 148, 122, 122, 122, 122, 122, 122, 12, 58, 2, -18, '', 0, 29, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 1), 31, 31, 2366, 0, 790, 976, 152, 152, 152, 152, 185, 185, 152, 118, 118, 118, 118, 118, 118, 12, 54, 2, -18, '', 0, 29, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 2), 31, 31, 2490, 0, 806, 992, 156, 156, 156, 156, 187, 187, 156, 128, 128, 128, 128, 128, 128, 12, 57, 2, -18, '', 0, 31, 0, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 3), 31, 31, 2614, 0, 821, 1007, 160, 160, 160, 160, 189, 189, 160, 138, 138, 138, 138, 138, 138, 13, 59, 2, -18, '', 0, 33, 0, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 4), 31, 31, 2738, 0, 837, 1023, 164, 164, 164, 164, 191, 191, 164, 148, 148, 148, 148, 148, 148, 13, 62, 2, -18, '', 0, 35, 0, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 5), 31, 31, 2862, 0, 852, 1038, 168, 168, 168, 168, 193, 193, 168, 158, 158, 158, 158, 158, 158, 14, 65, 2, -18, '', 0, 37, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 1), 31, 31, 1178, 1637, 413, 255, 115, 115, 115, 115, 211, 211, 115, 82, 82, 82, 82, 82, 82, 9, 50, 1, -18, '', 0, 14, 11, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 2), 31, 31, 1240, 1730, 423, 263, 119, 119, 119, 119, 214, 214, 119, 92, 92, 92, 92, 92, 92, 9, 52, 1, -18, '', 0, 15, 12, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 3), 31, 31, 1302, 1823, 434, 271, 123, 123, 123, 123, 217, 217, 123, 102, 102, 102, 102, 102, 102, 9, 53, 1, -18, '', 0, 16, 13, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 4), 31, 31, 1364, 1916, 444, 279, 127, 127, 127, 127, 220, 220, 127, 112, 112, 112, 112, 112, 112, 9, 55, 1, -18, '', 0, 17, 14, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 5), 31, 31, 1426, 2009, 454, 286, 131, 131, 131, 131, 223, 223, 131, 122, 122, 122, 122, 122, 122, 10, 56, 1, -18, '', 0, 18, 15, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 1), 31, 31, 1953, 2412, 506, 286, 135, 135, 135, 135, 236, 236, 135, 118, 118, 118, 118, 118, 118, 9, 55, 1, -18, '', 0, 19, 14, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 2), 31, 31, 2015, 2505, 516, 294, 139, 139, 139, 139, 239, 239, 139, 128, 128, 128, 128, 128, 128, 10, 56, 1, -18, '', 0, 20, 15, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 3), 31, 31, 2077, 2598, 527, 302, 143, 143, 143, 143, 242, 242, 143, 138, 138, 138, 138, 138, 138, 10, 57, 1, -18, '', 0, 21, 16, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 4), 31, 31, 2139, 2691, 537, 310, 147, 147, 147, 147, 245, 245, 147, 148, 148, 148, 148, 148, 148, 10, 59, 1, -18, '', 0, 22, 17, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 5), 31, 31, 2201, 2784, 547, 317, 151, 151, 151, 151, 248, 248, 151, 158, 158, 158, 158, 158, 158, 10, 60, 1, -18, '', 0, 23, 18, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 1), 32, 32, 1758, 0, 1104, 896, 136, 136, 136, 136, 168, 168, 136, 85, 85, 85, 85, 85, 85, 11, 53, 2, -18, '', 0, 23, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 2), 32, 32, 1918, 0, 1152, 912, 140, 140, 140, 140, 170, 170, 140, 96, 96, 96, 96, 96, 96, 11, 56, 2, -18, '', 0, 25, 0, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 3), 32, 32, 2078, 0, 1200, 928, 144, 144, 144, 144, 172, 172, 144, 107, 107, 107, 107, 107, 107, 12, 59, 2, -18, '', 0, 27, 0, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 4), 32, 32, 2238, 0, 1248, 944, 148, 148, 148, 148, 174, 174, 148, 118, 118, 118, 118, 118, 118, 12, 61, 2, -18, '', 0, 29, 0, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 5), 32, 32, 2398, 0, 1296, 960, 152, 152, 152, 152, 176, 176, 152, 129, 129, 129, 129, 129, 129, 13, 64, 2, -18, '', 0, 31, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 1), 32, 32, 2878, 0, 1360, 976, 157, 157, 157, 157, 188, 188, 157, 123, 123, 123, 123, 123, 123, 12, 60, 2, -18, '', 0, 33, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 2), 32, 32, 3038, 0, 1408, 992, 161, 161, 161, 161, 190, 190, 161, 134, 134, 134, 134, 134, 134, 12, 63, 2, -18, '', 0, 35, 0, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 3), 32, 32, 3198, 0, 1456, 1008, 165, 165, 165, 165, 192, 192, 165, 145, 145, 145, 145, 145, 145, 13, 66, 2, -18, '', 0, 37, 0, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 4), 32, 32, 3358, 0, 1504, 1024, 169, 169, 169, 169, 194, 194, 169, 156, 156, 156, 156, 156, 156, 13, 68, 2, -18, '', 0, 39, 0, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 5), 32, 32, 3518, 0, 1552, 1040, 173, 173, 173, 173, 196, 196, 173, 167, 167, 167, 167, 167, 167, 14, 71, 2, -18, '', 0, 41, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 1), 32, 32, 1451, 1715, 864, 538, 121, 121, 121, 121, 215, 215, 121, 85, 85, 85, 85, 85, 85, 9, 52, 1, -18, '', 0, 16, 11, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 2), 32, 32, 1547, 1811, 896, 549, 125, 125, 125, 125, 218, 218, 125, 96, 96, 96, 96, 96, 96, 9, 53, 1, -18, '', 0, 17, 12, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 3), 32, 32, 1643, 1907, 928, 560, 129, 129, 129, 129, 221, 221, 129, 107, 107, 107, 107, 107, 107, 9, 55, 1, -18, '', 0, 18, 13, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 4), 32, 32, 1739, 2003, 960, 570, 133, 133, 133, 133, 224, 224, 133, 118, 118, 118, 118, 118, 118, 10, 56, 1, -18, '', 0, 19, 14, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 5), 32, 32, 1835, 2099, 992, 581, 137, 137, 137, 137, 227, 227, 137, 129, 129, 129, 129, 129, 129, 10, 57, 1, -18, '', 0, 20, 15, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 1), 32, 32, 2411, 2515, 1056, 586, 142, 142, 142, 142, 240, 240, 142, 123, 123, 123, 123, 123, 123, 10, 56, 1, -18, '', 0, 22, 14, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 2), 32, 32, 2507, 2611, 1088, 597, 146, 146, 146, 146, 243, 243, 146, 134, 134, 134, 134, 134, 134, 10, 57, 1, -18, '', 0, 23, 15, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 3), 32, 32, 2603, 2707, 1120, 608, 150, 150, 150, 150, 246, 246, 150, 145, 145, 145, 145, 145, 145, 10, 59, 1, -18, '', 0, 24, 16, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 4), 32, 32, 2699, 2803, 1152, 618, 154, 154, 154, 154, 249, 249, 154, 156, 156, 156, 156, 156, 156, 10, 60, 1, -18, '', 0, 25, 17, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 5), 32, 32, 2795, 2899, 1184, 629, 158, 158, 158, 158, 252, 252, 158, 167, 167, 167, 167, 167, 167, 11, 62, 1, -18, '', 0, 26, 18, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 1), 32, 32, 1507, 0, 656, 912, 136, 136, 136, 136, 168, 168, 136, 85, 85, 85, 85, 85, 85, 11, 49, 2, -18, '', 0, 21, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 2), 32, 32, 1635, 0, 672, 928, 140, 140, 140, 140, 170, 170, 140, 96, 96, 96, 96, 96, 96, 11, 52, 2, -18, '', 0, 23, 0, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 3), 32, 32, 1763, 0, 688, 944, 144, 144, 144, 144, 172, 172, 144, 107, 107, 107, 107, 107, 107, 12, 54, 2, -18, '', 0, 25, 0, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 4), 32, 32, 1891, 0, 704, 960, 148, 148, 148, 148, 174, 174, 148, 118, 118, 118, 118, 118, 118, 12, 57, 2, -18, '', 0, 27, 0, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 5), 32, 32, 2019, 0, 720, 976, 152, 152, 152, 152, 176, 176, 152, 129, 129, 129, 129, 129, 129, 13, 59, 2, -18, '', 0, 29, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 1), 32, 32, 2467, 0, 816, 1008, 157, 157, 157, 157, 188, 188, 157, 123, 123, 123, 123, 123, 123, 12, 56, 2, -18, '', 0, 29, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 2), 32, 32, 2595, 0, 832, 1024, 161, 161, 161, 161, 190, 190, 161, 134, 134, 134, 134, 134, 134, 12, 58, 2, -18, '', 0, 31, 0, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 3), 32, 32, 2723, 0, 848, 1040, 165, 165, 165, 165, 192, 192, 165, 145, 145, 145, 145, 145, 145, 13, 61, 2, -18, '', 0, 33, 0, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 4), 32, 32, 2851, 0, 864, 1056, 169, 169, 169, 169, 194, 194, 169, 156, 156, 156, 156, 156, 156, 13, 63, 2, -18, '', 0, 35, 0, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 5), 32, 32, 2979, 0, 880, 1072, 173, 173, 173, 173, 196, 196, 173, 167, 167, 167, 167, 167, 167, 14, 66, 2, -18, '', 0, 37, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 1), 32, 32, 1238, 1715, 426, 264, 119, 119, 119, 119, 215, 215, 119, 85, 85, 85, 85, 85, 85, 9, 52, 1, -18, '', 0, 15, 11, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 2), 32, 32, 1302, 1811, 437, 272, 123, 123, 123, 123, 218, 218, 123, 96, 96, 96, 96, 96, 96, 9, 53, 1, -18, '', 0, 16, 12, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 3), 32, 32, 1366, 1907, 448, 280, 127, 127, 127, 127, 221, 221, 127, 107, 107, 107, 107, 107, 107, 9, 55, 1, -18, '', 0, 17, 13, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 4), 32, 32, 1430, 2003, 458, 288, 131, 131, 131, 131, 224, 224, 131, 118, 118, 118, 118, 118, 118, 10, 56, 1, -18, '', 0, 18, 14, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 5), 32, 32, 1494, 2099, 469, 296, 135, 135, 135, 135, 227, 227, 135, 129, 129, 129, 129, 129, 129, 10, 57, 1, -18, '', 0, 19, 15, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 1), 32, 32, 2038, 2515, 522, 296, 140, 140, 140, 140, 240, 240, 140, 123, 123, 123, 123, 123, 123, 10, 56, 1, -18, '', 0, 20, 14, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 2), 32, 32, 2102, 2611, 533, 304, 144, 144, 144, 144, 243, 243, 144, 134, 134, 134, 134, 134, 134, 10, 57, 1, -18, '', 0, 21, 15, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 3), 32, 32, 2166, 2707, 544, 312, 148, 148, 148, 148, 246, 246, 148, 145, 145, 145, 145, 145, 145, 10, 59, 1, -18, '', 0, 22, 16, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 4), 32, 32, 2230, 2803, 554, 320, 152, 152, 152, 152, 249, 249, 152, 156, 156, 156, 156, 156, 156, 10, 60, 1, -18, '', 0, 23, 17, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 5), 32, 32, 2294, 2899, 565, 328, 156, 156, 156, 156, 252, 252, 156, 167, 167, 167, 167, 167, 167, 11, 62, 1, -18, '', 0, 24, 18, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 1), 33, 33, 1843, 0, 1139, 924, 139, 139, 139, 139, 171, 171, 139, 87, 87, 87, 87, 87, 87, 11, 54, 2, -18, '', 0, 24, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 2), 33, 33, 2008, 0, 1188, 941, 143, 143, 143, 143, 173, 173, 143, 98, 98, 98, 98, 98, 98, 11, 57, 2, -18, '', 0, 26, 0, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 3), 33, 33, 2173, 0, 1238, 957, 147, 147, 147, 147, 175, 175, 147, 109, 109, 109, 109, 109, 109, 12, 60, 2, -18, '', 0, 28, 0, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 4), 33, 33, 2338, 0, 1287, 974, 151, 151, 151, 151, 177, 177, 151, 120, 120, 120, 120, 120, 120, 12, 63, 2, -18, '', 0, 30, 0, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 5), 33, 33, 2503, 0, 1337, 990, 155, 155, 155, 155, 179, 179, 155, 131, 131, 131, 131, 131, 131, 13, 66, 2, -18, '', 0, 32, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 1), 33, 33, 2998, 0, 1403, 1006, 160, 160, 160, 160, 191, 191, 160, 125, 125, 125, 125, 125, 125, 12, 61, 2, -18, '', 0, 34, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 2), 33, 33, 3163, 0, 1452, 1023, 164, 164, 164, 164, 193, 193, 164, 136, 136, 136, 136, 136, 136, 13, 64, 2, -18, '', 0, 36, 0, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 3), 33, 33, 3328, 0, 1502, 1039, 168, 168, 168, 168, 195, 195, 168, 147, 147, 147, 147, 147, 147, 13, 67, 2, -18, '', 0, 38, 0, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 4), 33, 33, 3493, 0, 1551, 1056, 172, 172, 172, 172, 197, 197, 172, 158, 158, 158, 158, 158, 158, 14, 70, 2, -18, '', 0, 40, 0, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 5), 33, 33, 3658, 0, 1601, 1072, 176, 176, 176, 176, 199, 199, 176, 169, 169, 169, 169, 169, 169, 14, 73, 2, -18, '', 0, 42, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 1), 33, 33, 1521, 1795, 891, 556, 124, 124, 124, 124, 218, 218, 124, 87, 87, 87, 87, 87, 87, 9, 53, 1, -18, '', 0, 16, 11, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 2), 33, 33, 1620, 1894, 924, 567, 128, 128, 128, 128, 221, 221, 128, 98, 98, 98, 98, 98, 98, 9, 55, 1, -18, '', 0, 17, 12, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 3), 33, 33, 1719, 1993, 957, 578, 132, 132, 132, 132, 224, 224, 132, 109, 109, 109, 109, 109, 109, 10, 56, 1, -18, '', 0, 18, 13, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 4), 33, 33, 1818, 2092, 990, 589, 136, 136, 136, 136, 227, 227, 136, 120, 120, 120, 120, 120, 120, 10, 57, 1, -18, '', 0, 19, 14, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 5), 33, 33, 1917, 2191, 1023, 600, 140, 140, 140, 140, 230, 230, 140, 131, 131, 131, 131, 131, 131, 10, 59, 1, -18, '', 0, 20, 15, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 1), 33, 33, 2511, 2620, 1089, 605, 145, 145, 145, 145, 243, 243, 145, 125, 125, 125, 125, 125, 125, 10, 57, 1, -18, '', 0, 22, 14, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 2), 33, 33, 2610, 2719, 1122, 616, 149, 149, 149, 149, 246, 246, 149, 136, 136, 136, 136, 136, 136, 10, 59, 1, -18, '', 0, 23, 15, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 3), 33, 33, 2709, 2818, 1155, 627, 153, 153, 153, 153, 249, 249, 153, 147, 147, 147, 147, 147, 147, 10, 60, 1, -18, '', 0, 24, 16, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 4), 33, 33, 2808, 2917, 1188, 638, 157, 157, 157, 157, 252, 252, 157, 158, 158, 158, 158, 158, 158, 11, 62, 1, -18, '', 0, 25, 17, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 5), 33, 33, 2907, 3016, 1221, 649, 161, 161, 161, 161, 255, 255, 161, 169, 169, 169, 169, 169, 169, 11, 63, 1, -18, '', 0, 26, 18, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 1), 33, 33, 1581, 0, 676, 940, 139, 139, 139, 139, 171, 171, 139, 87, 87, 87, 87, 87, 87, 11, 50, 2, -18, '', 0, 22, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 2), 33, 33, 1713, 0, 693, 957, 143, 143, 143, 143, 173, 173, 143, 98, 98, 98, 98, 98, 98, 11, 53, 2, -18, '', 0, 24, 0, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 3), 33, 33, 1845, 0, 709, 973, 147, 147, 147, 147, 175, 175, 147, 109, 109, 109, 109, 109, 109, 12, 56, 2, -18, '', 0, 26, 0, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 4), 33, 33, 1977, 0, 726, 990, 151, 151, 151, 151, 177, 177, 151, 120, 120, 120, 120, 120, 120, 12, 58, 2, -18, '', 0, 28, 0, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 5), 33, 33, 2109, 0, 742, 1006, 155, 155, 155, 155, 179, 179, 155, 131, 131, 131, 131, 131, 131, 13, 61, 2, -18, '', 0, 30, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 1), 33, 33, 2571, 0, 841, 1039, 160, 160, 160, 160, 191, 191, 160, 125, 125, 125, 125, 125, 125, 12, 57, 2, -18, '', 0, 30, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 2), 33, 33, 2703, 0, 858, 1056, 164, 164, 164, 164, 193, 193, 164, 136, 136, 136, 136, 136, 136, 13, 59, 2, -18, '', 0, 32, 0, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 3), 33, 33, 2835, 0, 874, 1072, 168, 168, 168, 168, 195, 195, 168, 147, 147, 147, 147, 147, 147, 13, 62, 2, -18, '', 0, 34, 0, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 4), 33, 33, 2967, 0, 891, 1089, 172, 172, 172, 172, 197, 197, 172, 158, 158, 158, 158, 158, 158, 14, 65, 2, -18, '', 0, 36, 0, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 5), 33, 33, 3099, 0, 907, 1105, 176, 176, 176, 176, 199, 199, 176, 169, 169, 169, 169, 169, 169, 14, 67, 2, -18, '', 0, 38, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 1), 33, 33, 1300, 1795, 440, 272, 122, 122, 122, 122, 218, 218, 122, 87, 87, 87, 87, 87, 87, 9, 53, 1, -18, '', 0, 15, 11, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 2), 33, 33, 1366, 1894, 451, 280, 126, 126, 126, 126, 221, 221, 126, 98, 98, 98, 98, 98, 98, 9, 55, 1, -18, '', 0, 16, 12, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 3), 33, 33, 1432, 1993, 462, 288, 130, 130, 130, 130, 224, 224, 130, 109, 109, 109, 109, 109, 109, 10, 56, 1, -18, '', 0, 17, 13, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 4), 33, 33, 1498, 2092, 473, 297, 134, 134, 134, 134, 227, 227, 134, 120, 120, 120, 120, 120, 120, 10, 57, 1, -18, '', 0, 18, 14, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 5), 33, 33, 1564, 2191, 484, 305, 138, 138, 138, 138, 230, 230, 138, 131, 131, 131, 131, 131, 131, 10, 59, 1, -18, '', 0, 19, 15, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 1), 33, 33, 2125, 2620, 539, 305, 143, 143, 143, 143, 243, 243, 143, 125, 125, 125, 125, 125, 125, 10, 57, 1, -18, '', 0, 20, 14, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 2), 33, 33, 2191, 2719, 550, 313, 147, 147, 147, 147, 246, 246, 147, 136, 136, 136, 136, 136, 136, 10, 59, 1, -18, '', 0, 21, 15, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 3), 33, 33, 2257, 2818, 561, 321, 151, 151, 151, 151, 249, 249, 151, 147, 147, 147, 147, 147, 147, 10, 60, 1, -18, '', 0, 22, 16, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 4), 33, 33, 2323, 2917, 572, 330, 155, 155, 155, 155, 252, 252, 155, 158, 158, 158, 158, 158, 158, 11, 62, 1, -18, '', 0, 23, 17, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 5), 33, 33, 2389, 3016, 583, 338, 159, 159, 159, 159, 255, 255, 159, 169, 169, 169, 169, 169, 169, 11, 63, 1, -18, '', 0, 24, 18, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 1), 34, 34, 1931, 0, 1173, 952, 143, 143, 143, 143, 174, 174, 143, 89, 89, 89, 89, 89, 89, 11, 56, 2, -18, '', 0, 24, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 2), 34, 34, 2101, 0, 1224, 969, 147, 147, 147, 147, 176, 176, 147, 100, 100, 100, 100, 100, 100, 12, 59, 2, -18, '', 0, 26, 0, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 3), 34, 34, 2271, 0, 1275, 986, 151, 151, 151, 151, 178, 178, 151, 111, 111, 111, 111, 111, 111, 12, 61, 2, -18, '', 0, 28, 0, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 4), 34, 34, 2441, 0, 1326, 1003, 155, 155, 155, 155, 180, 180, 155, 122, 122, 122, 122, 122, 122, 13, 64, 2, -18, '', 0, 30, 0, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 5), 34, 34, 2611, 0, 1377, 1020, 159, 159, 159, 159, 182, 182, 159, 133, 133, 133, 133, 133, 133, 13, 67, 2, -18, '', 0, 32, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 1), 34, 34, 3121, 0, 1445, 1037, 165, 165, 165, 165, 194, 194, 165, 127, 127, 127, 127, 127, 127, 12, 63, 2, -18, '', 0, 34, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 2), 34, 34, 3291, 0, 1496, 1054, 169, 169, 169, 169, 196, 196, 169, 138, 138, 138, 138, 138, 138, 13, 66, 2, -18, '', 0, 36, 0, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 3), 34, 34, 3461, 0, 1547, 1071, 173, 173, 173, 173, 198, 198, 173, 149, 149, 149, 149, 149, 149, 13, 68, 2, -18, '', 0, 38, 0, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 4), 34, 34, 3631, 0, 1598, 1088, 177, 177, 177, 177, 200, 200, 177, 160, 160, 160, 160, 160, 160, 14, 71, 2, -18, '', 0, 40, 0, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 5), 34, 34, 3801, 0, 1649, 1105, 181, 181, 181, 181, 202, 202, 181, 171, 171, 171, 171, 171, 171, 14, 74, 2, -18, '', 0, 42, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 1), 34, 34, 1594, 1877, 918, 572, 128, 128, 128, 128, 222, 222, 128, 89, 89, 89, 89, 89, 89, 9, 55, 1, -18, '', 0, 16, 11, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 2), 34, 34, 1696, 1979, 952, 583, 132, 132, 132, 132, 225, 225, 132, 100, 100, 100, 100, 100, 100, 10, 56, 1, -18, '', 0, 17, 12, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 3), 34, 34, 1798, 2081, 986, 595, 136, 136, 136, 136, 228, 228, 136, 111, 111, 111, 111, 111, 111, 10, 57, 1, -18, '', 0, 18, 13, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 4), 34, 34, 1900, 2183, 1020, 606, 140, 140, 140, 140, 231, 231, 140, 122, 122, 122, 122, 122, 122, 10, 59, 1, -18, '', 0, 19, 14, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 5), 34, 34, 2002, 2285, 1054, 617, 144, 144, 144, 144, 234, 234, 144, 133, 133, 133, 133, 133, 133, 10, 60, 1, -18, '', 0, 20, 15, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 1), 34, 34, 2614, 2727, 1122, 623, 150, 150, 150, 150, 247, 247, 150, 127, 127, 127, 127, 127, 127, 10, 59, 1, -18, '', 0, 22, 14, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 2), 34, 34, 2716, 2829, 1156, 634, 154, 154, 154, 154, 250, 250, 154, 138, 138, 138, 138, 138, 138, 10, 60, 1, -18, '', 0, 23, 15, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 3), 34, 34, 2818, 2931, 1190, 646, 158, 158, 158, 158, 253, 253, 158, 149, 149, 149, 149, 149, 149, 11, 62, 1, -18, '', 0, 24, 16, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 4), 34, 34, 2920, 3033, 1224, 657, 162, 162, 162, 162, 256, 256, 162, 160, 160, 160, 160, 160, 160, 11, 63, 1, -18, '', 0, 25, 17, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 5), 34, 34, 3022, 3135, 1258, 668, 166, 166, 166, 166, 259, 259, 166, 171, 171, 171, 171, 171, 171, 11, 64, 1, -18, '', 0, 26, 18, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 1), 34, 34, 1657, 0, 697, 969, 143, 143, 143, 143, 174, 174, 143, 89, 89, 89, 89, 89, 89, 11, 52, 2, -18, '', 0, 22, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 2), 34, 34, 1793, 0, 714, 986, 147, 147, 147, 147, 176, 176, 147, 100, 100, 100, 100, 100, 100, 12, 54, 2, -18, '', 0, 24, 0, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 3), 34, 34, 1929, 0, 731, 1003, 151, 151, 151, 151, 178, 178, 151, 111, 111, 111, 111, 111, 111, 12, 57, 2, -18, '', 0, 26, 0, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 4), 34, 34, 2065, 0, 748, 1020, 155, 155, 155, 155, 180, 180, 155, 122, 122, 122, 122, 122, 122, 13, 59, 2, -18, '', 0, 28, 0, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 5), 34, 34, 2201, 0, 765, 1037, 159, 159, 159, 159, 182, 182, 159, 133, 133, 133, 133, 133, 133, 13, 62, 2, -18, '', 0, 30, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 1), 34, 34, 2677, 0, 867, 1071, 165, 165, 165, 165, 194, 194, 165, 127, 127, 127, 127, 127, 127, 12, 58, 2, -18, '', 0, 30, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 2), 34, 34, 2813, 0, 884, 1088, 169, 169, 169, 169, 196, 196, 169, 138, 138, 138, 138, 138, 138, 13, 61, 2, -18, '', 0, 32, 0, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 3), 34, 34, 2949, 0, 901, 1105, 173, 173, 173, 173, 198, 198, 173, 149, 149, 149, 149, 149, 149, 13, 63, 2, -18, '', 0, 34, 0, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 4), 34, 34, 3085, 0, 918, 1122, 177, 177, 177, 177, 200, 200, 177, 160, 160, 160, 160, 160, 160, 14, 66, 2, -18, '', 0, 36, 0, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 5), 34, 34, 3221, 0, 935, 1139, 181, 181, 181, 181, 202, 202, 181, 171, 171, 171, 171, 171, 171, 14, 69, 2, -18, '', 0, 38, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 1), 34, 34, 1364, 1877, 453, 280, 126, 126, 126, 126, 222, 222, 126, 89, 89, 89, 89, 89, 89, 9, 55, 1, -18, '', 0, 15, 11, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 2), 34, 34, 1432, 1979, 464, 289, 130, 130, 130, 130, 225, 225, 130, 100, 100, 100, 100, 100, 100, 10, 56, 1, -18, '', 0, 16, 12, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 3), 34, 34, 1500, 2081, 476, 297, 134, 134, 134, 134, 228, 228, 134, 111, 111, 111, 111, 111, 111, 10, 57, 1, -18, '', 0, 17, 13, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 4), 34, 34, 1568, 2183, 487, 306, 138, 138, 138, 138, 231, 231, 138, 122, 122, 122, 122, 122, 122, 10, 59, 1, -18, '', 0, 18, 14, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 5), 34, 34, 1636, 2285, 498, 314, 142, 142, 142, 142, 234, 234, 142, 133, 133, 133, 133, 133, 133, 10, 60, 1, -18, '', 0, 19, 15, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 1), 34, 34, 2214, 2727, 555, 314, 148, 148, 148, 148, 247, 247, 148, 127, 127, 127, 127, 127, 127, 10, 59, 1, -18, '', 0, 20, 14, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 2), 34, 34, 2282, 2829, 566, 323, 152, 152, 152, 152, 250, 250, 152, 138, 138, 138, 138, 138, 138, 10, 60, 1, -18, '', 0, 21, 15, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 3), 34, 34, 2350, 2931, 578, 331, 156, 156, 156, 156, 253, 253, 156, 149, 149, 149, 149, 149, 149, 11, 62, 1, -18, '', 0, 22, 16, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 4), 34, 34, 2418, 3033, 589, 340, 160, 160, 160, 160, 256, 256, 160, 160, 160, 160, 160, 160, 160, 11, 63, 1, -18, '', 0, 23, 17, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 5), 34, 34, 2486, 3135, 600, 348, 164, 164, 164, 164, 259, 259, 164, 171, 171, 171, 171, 171, 171, 11, 64, 1, -18, '', 0, 24, 18, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 1), 35, 35, 2022, 0, 1208, 980, 147, 147, 147, 147, 177, 177, 147, 91, 91, 91, 91, 91, 91, 11, 57, 2, -18, '', 0, 24, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 2), 35, 35, 2197, 0, 1260, 998, 151, 151, 151, 151, 179, 179, 151, 102, 102, 102, 102, 102, 102, 12, 60, 2, -18, '', 0, 26, 0, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 3), 35, 35, 2372, 0, 1313, 1015, 155, 155, 155, 155, 181, 181, 155, 113, 113, 113, 113, 113, 113, 12, 63, 2, -18, '', 0, 28, 0, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 4), 35, 35, 2547, 0, 1365, 1033, 159, 159, 159, 159, 183, 183, 159, 124, 124, 124, 124, 124, 124, 13, 66, 2, -18, '', 0, 30, 0, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 5), 35, 35, 2722, 0, 1418, 1050, 163, 163, 163, 163, 185, 185, 163, 135, 135, 135, 135, 135, 135, 13, 68, 2, -18, '', 0, 32, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 1), 35, 35, 3247, 0, 1488, 1067, 169, 169, 169, 169, 197, 197, 169, 131, 131, 131, 131, 131, 131, 13, 64, 2, -18, '', 0, 34, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 2), 35, 35, 3422, 0, 1540, 1085, 173, 173, 173, 173, 199, 199, 173, 142, 142, 142, 142, 142, 142, 13, 67, 2, -18, '', 0, 36, 0, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 3), 35, 35, 3597, 0, 1593, 1102, 177, 177, 177, 177, 201, 201, 177, 153, 153, 153, 153, 153, 153, 14, 70, 2, -18, '', 0, 38, 0, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 4), 35, 35, 3772, 0, 1645, 1120, 181, 181, 181, 181, 203, 203, 181, 164, 164, 164, 164, 164, 164, 14, 73, 2, -18, '', 0, 40, 0, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 5), 35, 35, 3947, 0, 1698, 1137, 185, 185, 185, 185, 205, 205, 185, 175, 175, 175, 175, 175, 175, 15, 75, 2, -18, '', 0, 42, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 1), 35, 35, 1669, 1960, 945, 589, 131, 131, 131, 131, 225, 225, 131, 91, 91, 91, 91, 91, 91, 10, 56, 1, -18, '', 0, 16, 12, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 2), 35, 35, 1774, 2065, 980, 601, 135, 135, 135, 135, 228, 228, 135, 102, 102, 102, 102, 102, 102, 10, 57, 1, -18, '', 0, 17, 13, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 3), 35, 35, 1879, 2170, 1015, 613, 139, 139, 139, 139, 231, 231, 139, 113, 113, 113, 113, 113, 113, 10, 59, 1, -18, '', 0, 18, 14, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 4), 35, 35, 1984, 2275, 1050, 624, 143, 143, 143, 143, 234, 234, 143, 124, 124, 124, 124, 124, 124, 10, 60, 1, -18, '', 0, 19, 15, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 5), 35, 35, 2089, 2380, 1085, 636, 147, 147, 147, 147, 237, 237, 147, 135, 135, 135, 135, 135, 135, 11, 62, 1, -18, '', 0, 20, 16, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 1), 35, 35, 2719, 2835, 1155, 641, 153, 153, 153, 153, 250, 250, 153, 131, 131, 131, 131, 131, 131, 10, 60, 1, -18, '', 0, 22, 15, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 2), 35, 35, 2824, 2940, 1190, 653, 157, 157, 157, 157, 253, 253, 157, 142, 142, 142, 142, 142, 142, 11, 62, 1, -18, '', 0, 23, 16, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 3), 35, 35, 2929, 3045, 1225, 665, 161, 161, 161, 161, 256, 256, 161, 153, 153, 153, 153, 153, 153, 11, 63, 1, -18, '', 0, 24, 17, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 4), 35, 35, 3034, 3150, 1260, 676, 165, 165, 165, 165, 259, 259, 165, 164, 164, 164, 164, 164, 164, 11, 64, 1, -18, '', 0, 25, 18, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 5), 35, 35, 3139, 3255, 1295, 688, 169, 169, 169, 169, 262, 262, 169, 175, 175, 175, 175, 175, 175, 11, 66, 1, -18, '', 0, 26, 19, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 1), 35, 35, 1735, 0, 717, 997, 147, 147, 147, 147, 177, 177, 147, 91, 91, 91, 91, 91, 91, 11, 53, 2, -18, '', 0, 22, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 2), 35, 35, 1875, 0, 735, 1015, 151, 151, 151, 151, 179, 179, 151, 102, 102, 102, 102, 102, 102, 12, 56, 2, -18, '', 0, 24, 0, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 3), 35, 35, 2015, 0, 752, 1032, 155, 155, 155, 155, 181, 181, 155, 113, 113, 113, 113, 113, 113, 12, 58, 2, -18, '', 0, 26, 0, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 4), 35, 35, 2155, 0, 770, 1050, 159, 159, 159, 159, 183, 183, 159, 124, 124, 124, 124, 124, 124, 13, 61, 2, -18, '', 0, 28, 0, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 5), 35, 35, 2295, 0, 787, 1067, 163, 163, 163, 163, 185, 185, 163, 135, 135, 135, 135, 135, 135, 13, 63, 2, -18, '', 0, 30, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 1), 35, 35, 2785, 0, 892, 1102, 169, 169, 169, 169, 197, 197, 169, 131, 131, 131, 131, 131, 131, 13, 59, 2, -18, '', 0, 30, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 2), 35, 35, 2925, 0, 910, 1120, 173, 173, 173, 173, 199, 199, 173, 142, 142, 142, 142, 142, 142, 13, 62, 2, -18, '', 0, 32, 0, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 3), 35, 35, 3065, 0, 927, 1137, 177, 177, 177, 177, 201, 201, 177, 153, 153, 153, 153, 153, 153, 14, 65, 2, -18, '', 0, 34, 0, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 4), 35, 35, 3205, 0, 945, 1155, 181, 181, 181, 181, 203, 203, 181, 164, 164, 164, 164, 164, 164, 14, 67, 2, -18, '', 0, 36, 0, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 5), 35, 35, 3345, 0, 962, 1172, 185, 185, 185, 185, 205, 205, 185, 175, 175, 175, 175, 175, 175, 15, 70, 2, -18, '', 0, 38, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 1), 35, 35, 1431, 1960, 466, 288, 129, 129, 129, 129, 225, 225, 129, 91, 91, 91, 91, 91, 91, 10, 56, 1, -18, '', 0, 15, 12, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 2), 35, 35, 1501, 2065, 478, 297, 133, 133, 133, 133, 228, 228, 133, 102, 102, 102, 102, 102, 102, 10, 57, 1, -18, '', 0, 16, 13, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 3), 35, 35, 1571, 2170, 490, 306, 137, 137, 137, 137, 231, 231, 137, 113, 113, 113, 113, 113, 113, 10, 59, 1, -18, '', 0, 17, 14, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 4), 35, 35, 1641, 2275, 501, 315, 141, 141, 141, 141, 234, 234, 141, 124, 124, 124, 124, 124, 124, 10, 60, 1, -18, '', 0, 18, 15, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 5), 35, 35, 1711, 2380, 513, 323, 145, 145, 145, 145, 237, 237, 145, 135, 135, 135, 135, 135, 135, 11, 62, 1, -18, '', 0, 19, 16, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 1), 35, 35, 2306, 2835, 571, 323, 151, 151, 151, 151, 250, 250, 151, 131, 131, 131, 131, 131, 131, 10, 60, 1, -18, '', 0, 20, 15, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 2), 35, 35, 2376, 2940, 583, 332, 155, 155, 155, 155, 253, 253, 155, 142, 142, 142, 142, 142, 142, 11, 62, 1, -18, '', 0, 21, 16, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 3), 35, 35, 2446, 3045, 595, 341, 159, 159, 159, 159, 256, 256, 159, 153, 153, 153, 153, 153, 153, 11, 63, 1, -18, '', 0, 22, 17, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 4), 35, 35, 2516, 3150, 606, 350, 163, 163, 163, 163, 259, 259, 163, 164, 164, 164, 164, 164, 164, 11, 64, 1, -18, '', 0, 23, 18, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 5), 35, 35, 2586, 3255, 618, 358, 167, 167, 167, 167, 262, 262, 167, 175, 175, 175, 175, 175, 175, 11, 66, 1, -18, '', 0, 24, 19, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 1), 36, 36, 2116, 0, 1242, 1008, 151, 151, 151, 151, 180, 180, 151, 94, 94, 94, 94, 94, 94, 12, 59, 2, -18, '', 0, 25, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 2), 36, 36, 2296, 0, 1296, 1026, 155, 155, 155, 155, 182, 182, 155, 106, 106, 106, 106, 106, 106, 12, 61, 2, -18, '', 0, 27, 0, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 3), 36, 36, 2476, 0, 1350, 1044, 159, 159, 159, 159, 184, 184, 159, 118, 118, 118, 118, 118, 118, 13, 64, 2, -18, '', 0, 29, 0, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 4), 36, 36, 2656, 0, 1404, 1062, 163, 163, 163, 163, 186, 186, 163, 130, 130, 130, 130, 130, 130, 13, 67, 2, -18, '', 0, 31, 0, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 5), 36, 36, 2836, 0, 1458, 1080, 167, 167, 167, 167, 188, 188, 167, 142, 142, 142, 142, 142, 142, 14, 70, 2, -18, '', 0, 33, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 1), 36, 36, 3376, 0, 1530, 1098, 174, 174, 174, 174, 200, 200, 174, 134, 134, 134, 134, 134, 134, 13, 66, 2, -18, '', 0, 35, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 2), 36, 36, 3556, 0, 1584, 1116, 178, 178, 178, 178, 202, 202, 178, 146, 146, 146, 146, 146, 146, 13, 68, 2, -18, '', 0, 37, 0, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 3), 36, 36, 3736, 0, 1638, 1134, 182, 182, 182, 182, 204, 204, 182, 158, 158, 158, 158, 158, 158, 14, 71, 2, -18, '', 0, 39, 0, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 4), 36, 36, 3916, 0, 1692, 1152, 186, 186, 186, 186, 206, 206, 186, 170, 170, 170, 170, 170, 170, 14, 74, 2, -18, '', 0, 41, 0, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 5), 36, 36, 4096, 0, 1746, 1170, 190, 190, 190, 190, 208, 208, 190, 182, 182, 182, 182, 182, 182, 15, 77, 2, -18, '', 0, 43, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 1), 36, 36, 1746, 2045, 972, 606, 135, 135, 135, 135, 229, 229, 135, 94, 94, 94, 94, 94, 94, 10, 57, 1, -18, '', 0, 17, 12, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 2), 36, 36, 1854, 2153, 1008, 618, 139, 139, 139, 139, 232, 232, 139, 106, 106, 106, 106, 106, 106, 10, 59, 1, -18, '', 0, 18, 13, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 3), 36, 36, 1962, 2261, 1044, 630, 143, 143, 143, 143, 235, 235, 143, 118, 118, 118, 118, 118, 118, 10, 60, 1, -18, '', 0, 19, 14, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 4), 36, 36, 2070, 2369, 1080, 642, 147, 147, 147, 147, 238, 238, 147, 130, 130, 130, 130, 130, 130, 11, 62, 1, -18, '', 0, 20, 15, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 5), 36, 36, 2178, 2477, 1116, 654, 151, 151, 151, 151, 241, 241, 151, 142, 142, 142, 142, 142, 142, 11, 63, 1, -18, '', 0, 21, 16, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 1), 36, 36, 2826, 2945, 1188, 660, 158, 158, 158, 158, 254, 254, 158, 134, 134, 134, 134, 134, 134, 11, 62, 1, -18, '', 0, 23, 15, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 2), 36, 36, 2934, 3053, 1224, 672, 162, 162, 162, 162, 257, 257, 162, 146, 146, 146, 146, 146, 146, 11, 63, 1, -18, '', 0, 24, 16, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 3), 36, 36, 3042, 3161, 1260, 684, 166, 166, 166, 166, 260, 260, 166, 158, 158, 158, 158, 158, 158, 11, 64, 1, -18, '', 0, 25, 17, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 4), 36, 36, 3150, 3269, 1296, 696, 170, 170, 170, 170, 263, 263, 170, 170, 170, 170, 170, 170, 170, 11, 66, 1, -18, '', 0, 26, 18, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 5), 36, 36, 3258, 3377, 1332, 708, 174, 174, 174, 174, 266, 266, 174, 182, 182, 182, 182, 182, 182, 12, 67, 1, -18, '', 0, 27, 19, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 1), 36, 36, 1817, 0, 738, 1026, 151, 151, 151, 151, 180, 180, 151, 94, 94, 94, 94, 94, 94, 12, 54, 2, -18, '', 0, 23, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 2), 36, 36, 1961, 0, 756, 1044, 155, 155, 155, 155, 182, 182, 155, 106, 106, 106, 106, 106, 106, 12, 57, 2, -18, '', 0, 25, 0, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 3), 36, 36, 2105, 0, 774, 1062, 159, 159, 159, 159, 184, 184, 159, 118, 118, 118, 118, 118, 118, 13, 59, 2, -18, '', 0, 27, 0, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 4), 36, 36, 2249, 0, 792, 1080, 163, 163, 163, 163, 186, 186, 163, 130, 130, 130, 130, 130, 130, 13, 62, 2, -18, '', 0, 29, 0, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 5), 36, 36, 2393, 0, 810, 1098, 167, 167, 167, 167, 188, 188, 167, 142, 142, 142, 142, 142, 142, 14, 65, 2, -18, '', 0, 31, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 1), 36, 36, 2897, 0, 918, 1134, 174, 174, 174, 174, 200, 200, 174, 134, 134, 134, 134, 134, 134, 13, 61, 2, -18, '', 0, 31, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 2), 36, 36, 3041, 0, 936, 1152, 178, 178, 178, 178, 202, 202, 178, 146, 146, 146, 146, 146, 146, 13, 63, 2, -18, '', 0, 33, 0, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 3), 36, 36, 3185, 0, 954, 1170, 182, 182, 182, 182, 204, 204, 182, 158, 158, 158, 158, 158, 158, 14, 66, 2, -18, '', 0, 35, 0, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 4), 36, 36, 3329, 0, 972, 1188, 186, 186, 186, 186, 206, 206, 186, 170, 170, 170, 170, 170, 170, 14, 69, 2, -18, '', 0, 37, 0, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 5), 36, 36, 3473, 0, 990, 1206, 190, 190, 190, 190, 208, 208, 190, 182, 182, 182, 182, 182, 182, 15, 71, 2, -18, '', 0, 39, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 1), 36, 36, 1500, 2045, 480, 297, 133, 133, 133, 133, 229, 229, 133, 94, 94, 94, 94, 94, 94, 10, 57, 1, -18, '', 0, 16, 12, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 2), 36, 36, 1572, 2153, 492, 306, 137, 137, 137, 137, 232, 232, 137, 106, 106, 106, 106, 106, 106, 10, 59, 1, -18, '', 0, 17, 13, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 3), 36, 36, 1644, 2261, 504, 315, 141, 141, 141, 141, 235, 235, 141, 118, 118, 118, 118, 118, 118, 10, 60, 1, -18, '', 0, 18, 14, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 4), 36, 36, 1716, 2369, 516, 324, 145, 145, 145, 145, 238, 238, 145, 130, 130, 130, 130, 130, 130, 11, 62, 1, -18, '', 0, 19, 15, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 5), 36, 36, 1788, 2477, 528, 333, 149, 149, 149, 149, 241, 241, 149, 142, 142, 142, 142, 142, 142, 11, 63, 1, -18, '', 0, 20, 16, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 1), 36, 36, 2400, 2945, 588, 333, 156, 156, 156, 156, 254, 254, 156, 134, 134, 134, 134, 134, 134, 11, 62, 1, -18, '', 0, 21, 15, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 2), 36, 36, 2472, 3053, 600, 342, 160, 160, 160, 160, 257, 257, 160, 146, 146, 146, 146, 146, 146, 11, 63, 1, -18, '', 0, 22, 16, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 3), 36, 36, 2544, 3161, 612, 351, 164, 164, 164, 164, 260, 260, 164, 158, 158, 158, 158, 158, 158, 11, 64, 1, -18, '', 0, 23, 17, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 4), 36, 36, 2616, 3269, 624, 360, 168, 168, 168, 168, 263, 263, 168, 170, 170, 170, 170, 170, 170, 11, 66, 1, -18, '', 0, 24, 18, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 5), 36, 36, 2688, 3377, 636, 369, 172, 172, 172, 172, 266, 266, 172, 182, 182, 182, 182, 182, 182, 12, 67, 1, -18, '', 0, 25, 19, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 1), 37, 37, 2213, 0, 1277, 1036, 155, 155, 155, 155, 183, 183, 155, 96, 96, 96, 96, 96, 96, 12, 60, 2, -18, '', 0, 25, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 2), 37, 37, 2398, 0, 1332, 1055, 159, 159, 159, 159, 185, 185, 159, 108, 108, 108, 108, 108, 108, 12, 63, 2, -18, '', 0, 27, 0, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 3), 37, 37, 2583, 0, 1388, 1073, 163, 163, 163, 163, 187, 187, 163, 120, 120, 120, 120, 120, 120, 13, 66, 2, -18, '', 0, 29, 0, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 4), 37, 37, 2768, 0, 1443, 1092, 167, 167, 167, 167, 189, 189, 167, 132, 132, 132, 132, 132, 132, 13, 68, 2, -18, '', 0, 31, 0, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 5), 37, 37, 2953, 0, 1499, 1110, 171, 171, 171, 171, 191, 191, 171, 144, 144, 144, 144, 144, 144, 14, 71, 2, -18, '', 0, 33, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 1), 37, 37, 3508, 0, 1573, 1128, 178, 178, 178, 178, 203, 203, 178, 136, 136, 136, 136, 136, 136, 13, 67, 2, -18, '', 0, 35, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 2), 37, 37, 3693, 0, 1628, 1147, 182, 182, 182, 182, 205, 205, 182, 148, 148, 148, 148, 148, 148, 14, 70, 2, -18, '', 0, 37, 0, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 3), 37, 37, 3878, 0, 1684, 1165, 186, 186, 186, 186, 207, 207, 186, 160, 160, 160, 160, 160, 160, 14, 73, 2, -18, '', 0, 39, 0, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 4), 37, 37, 4063, 0, 1739, 1184, 190, 190, 190, 190, 209, 209, 190, 172, 172, 172, 172, 172, 172, 15, 75, 2, -18, '', 0, 41, 0, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 5), 37, 37, 4248, 0, 1795, 1202, 194, 194, 194, 194, 211, 211, 194, 184, 184, 184, 184, 184, 184, 15, 78, 2, -18, '', 0, 43, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 1), 37, 37, 1826, 2131, 999, 623, 139, 139, 139, 139, 232, 232, 139, 96, 96, 96, 96, 96, 96, 10, 59, 1, -18, '', 0, 17, 12, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 2), 37, 37, 1937, 2242, 1036, 635, 143, 143, 143, 143, 235, 235, 143, 108, 108, 108, 108, 108, 108, 10, 60, 1, -18, '', 0, 18, 13, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 3), 37, 37, 2048, 2353, 1073, 648, 147, 147, 147, 147, 238, 238, 147, 120, 120, 120, 120, 120, 120, 11, 62, 1, -18, '', 0, 19, 14, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 4), 37, 37, 2159, 2464, 1110, 660, 151, 151, 151, 151, 241, 241, 151, 132, 132, 132, 132, 132, 132, 11, 63, 1, -18, '', 0, 20, 15, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 5), 37, 37, 2270, 2575, 1147, 672, 155, 155, 155, 155, 244, 244, 155, 144, 144, 144, 144, 144, 144, 11, 64, 1, -18, '', 0, 21, 16, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 1), 37, 37, 2936, 3056, 1221, 678, 162, 162, 162, 162, 257, 257, 162, 136, 136, 136, 136, 136, 136, 11, 63, 1, -18, '', 0, 23, 15, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 2), 37, 37, 3047, 3167, 1258, 690, 166, 166, 166, 166, 260, 260, 166, 148, 148, 148, 148, 148, 148, 11, 64, 1, -18, '', 0, 24, 16, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 3), 37, 37, 3158, 3278, 1295, 703, 170, 170, 170, 170, 263, 263, 170, 160, 160, 160, 160, 160, 160, 11, 66, 1, -18, '', 0, 25, 17, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 4), 37, 37, 3269, 3389, 1332, 715, 174, 174, 174, 174, 266, 266, 174, 172, 172, 172, 172, 172, 172, 12, 67, 1, -18, '', 0, 26, 18, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 5), 37, 37, 3380, 3500, 1369, 727, 178, 178, 178, 178, 269, 269, 178, 184, 184, 184, 184, 184, 184, 12, 69, 1, -18, '', 0, 27, 19, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 1), 37, 37, 1901, 0, 758, 1054, 155, 155, 155, 155, 183, 183, 155, 96, 96, 96, 96, 96, 96, 12, 56, 2, -18, '', 0, 23, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 2), 37, 37, 2049, 0, 777, 1073, 159, 159, 159, 159, 185, 185, 159, 108, 108, 108, 108, 108, 108, 12, 58, 2, -18, '', 0, 25, 0, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 3), 37, 37, 2197, 0, 795, 1091, 163, 163, 163, 163, 187, 187, 163, 120, 120, 120, 120, 120, 120, 13, 61, 2, -18, '', 0, 27, 0, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 4), 37, 37, 2345, 0, 814, 1110, 167, 167, 167, 167, 189, 189, 167, 132, 132, 132, 132, 132, 132, 13, 63, 2, -18, '', 0, 29, 0, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 5), 37, 37, 2493, 0, 832, 1128, 171, 171, 171, 171, 191, 191, 171, 144, 144, 144, 144, 144, 144, 14, 66, 2, -18, '', 0, 31, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 1), 37, 37, 3011, 0, 943, 1165, 178, 178, 178, 178, 203, 203, 178, 136, 136, 136, 136, 136, 136, 13, 62, 2, -18, '', 0, 31, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 2), 37, 37, 3159, 0, 962, 1184, 182, 182, 182, 182, 205, 205, 182, 148, 148, 148, 148, 148, 148, 14, 65, 2, -18, '', 0, 33, 0, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 3), 37, 37, 3307, 0, 980, 1202, 186, 186, 186, 186, 207, 207, 186, 160, 160, 160, 160, 160, 160, 14, 67, 2, -18, '', 0, 35, 0, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 4), 37, 37, 3455, 0, 999, 1221, 190, 190, 190, 190, 209, 209, 190, 172, 172, 172, 172, 172, 172, 15, 70, 2, -18, '', 0, 37, 0, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 5), 37, 37, 3603, 0, 1017, 1239, 194, 194, 194, 194, 211, 211, 194, 184, 184, 184, 184, 184, 184, 15, 72, 2, -18, '', 0, 39, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 1), 37, 37, 1571, 2131, 493, 305, 136, 136, 136, 136, 232, 232, 136, 96, 96, 96, 96, 96, 96, 10, 59, 1, -18, '', 0, 16, 12, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 2), 37, 37, 1645, 2242, 505, 314, 140, 140, 140, 140, 235, 235, 140, 108, 108, 108, 108, 108, 108, 10, 60, 1, -18, '', 0, 17, 13, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 3), 37, 37, 1719, 2353, 518, 323, 144, 144, 144, 144, 238, 238, 144, 120, 120, 120, 120, 120, 120, 11, 62, 1, -18, '', 0, 18, 14, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 4), 37, 37, 1793, 2464, 530, 333, 148, 148, 148, 148, 241, 241, 148, 132, 132, 132, 132, 132, 132, 11, 63, 1, -18, '', 0, 19, 15, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 5), 37, 37, 1867, 2575, 542, 342, 152, 152, 152, 152, 244, 244, 152, 144, 144, 144, 144, 144, 144, 11, 64, 1, -18, '', 0, 20, 16, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 1), 37, 37, 2496, 3056, 604, 342, 159, 159, 159, 159, 257, 257, 159, 136, 136, 136, 136, 136, 136, 11, 63, 1, -18, '', 0, 21, 15, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 2), 37, 37, 2570, 3167, 616, 351, 163, 163, 163, 163, 260, 260, 163, 148, 148, 148, 148, 148, 148, 11, 64, 1, -18, '', 0, 22, 16, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 3), 37, 37, 2644, 3278, 629, 360, 167, 167, 167, 167, 263, 263, 167, 160, 160, 160, 160, 160, 160, 11, 66, 1, -18, '', 0, 23, 17, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 4), 37, 37, 2718, 3389, 641, 370, 171, 171, 171, 171, 266, 266, 171, 172, 172, 172, 172, 172, 172, 12, 67, 1, -18, '', 0, 24, 18, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 5), 37, 37, 2792, 3500, 653, 379, 175, 175, 175, 175, 269, 269, 175, 184, 184, 184, 184, 184, 184, 12, 69, 1, -18, '', 0, 25, 19, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 1), 38, 38, 2313, 0, 1311, 1064, 160, 160, 160, 160, 186, 186, 160, 98, 98, 98, 98, 98, 98, 12, 61, 2, -18, '', 0, 25, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 2), 38, 38, 2503, 0, 1368, 1083, 164, 164, 164, 164, 188, 188, 164, 110, 110, 110, 110, 110, 110, 13, 64, 2, -18, '', 0, 27, 0, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 3), 38, 38, 2693, 0, 1425, 1102, 168, 168, 168, 168, 190, 190, 168, 122, 122, 122, 122, 122, 122, 13, 67, 2, -18, '', 0, 29, 0, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 4), 38, 38, 2883, 0, 1482, 1121, 172, 172, 172, 172, 192, 192, 172, 134, 134, 134, 134, 134, 134, 14, 70, 2, -18, '', 0, 31, 0, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 5), 38, 38, 3073, 0, 1539, 1140, 176, 176, 176, 176, 194, 194, 176, 146, 146, 146, 146, 146, 146, 14, 73, 2, -18, '', 0, 33, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 1), 38, 38, 3643, 0, 1615, 1159, 184, 184, 184, 184, 206, 206, 184, 140, 140, 140, 140, 140, 140, 13, 68, 2, -18, '', 0, 35, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 2), 38, 38, 3833, 0, 1672, 1178, 188, 188, 188, 188, 208, 208, 188, 152, 152, 152, 152, 152, 152, 14, 71, 2, -18, '', 0, 37, 0, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 3), 38, 38, 4023, 0, 1729, 1197, 192, 192, 192, 192, 210, 210, 192, 164, 164, 164, 164, 164, 164, 14, 74, 2, -18, '', 0, 39, 0, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 4), 38, 38, 4213, 0, 1786, 1216, 196, 196, 196, 196, 212, 212, 196, 176, 176, 176, 176, 176, 176, 15, 77, 2, -18, '', 0, 41, 0, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 5), 38, 38, 4403, 0, 1843, 1235, 200, 200, 200, 200, 214, 214, 200, 188, 188, 188, 188, 188, 188, 15, 80, 2, -18, '', 0, 43, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 1), 38, 38, 1909, 2219, 1026, 639, 143, 143, 143, 143, 236, 236, 143, 98, 98, 98, 98, 98, 98, 10, 60, 1, -18, '', 0, 17, 12, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 2), 38, 38, 2023, 2333, 1064, 652, 147, 147, 147, 147, 239, 239, 147, 110, 110, 110, 110, 110, 110, 11, 62, 1, -18, '', 0, 18, 13, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 3), 38, 38, 2137, 2447, 1102, 665, 151, 151, 151, 151, 242, 242, 151, 122, 122, 122, 122, 122, 122, 11, 63, 1, -18, '', 0, 19, 14, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 4), 38, 38, 2251, 2561, 1140, 677, 155, 155, 155, 155, 245, 245, 155, 134, 134, 134, 134, 134, 134, 11, 64, 1, -18, '', 0, 20, 15, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 5), 38, 38, 2365, 2675, 1178, 690, 159, 159, 159, 159, 248, 248, 159, 146, 146, 146, 146, 146, 146, 11, 66, 1, -18, '', 0, 21, 16, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 1), 38, 38, 3049, 3169, 1254, 696, 167, 167, 167, 167, 261, 261, 167, 140, 140, 140, 140, 140, 140, 11, 64, 1, -18, '', 0, 23, 15, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 2), 38, 38, 3163, 3283, 1292, 709, 171, 171, 171, 171, 264, 264, 171, 152, 152, 152, 152, 152, 152, 11, 66, 1, -18, '', 0, 24, 16, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 3), 38, 38, 3277, 3397, 1330, 722, 175, 175, 175, 175, 267, 267, 175, 164, 164, 164, 164, 164, 164, 12, 67, 1, -18, '', 0, 25, 17, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 4), 38, 38, 3391, 3511, 1368, 734, 179, 179, 179, 179, 270, 270, 179, 176, 176, 176, 176, 176, 176, 12, 69, 1, -18, '', 0, 26, 18, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 5), 38, 38, 3505, 3625, 1406, 747, 183, 183, 183, 183, 273, 273, 183, 188, 188, 188, 188, 188, 188, 12, 70, 1, -18, '', 0, 27, 19, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 1), 38, 38, 1987, 0, 779, 1083, 160, 160, 160, 160, 186, 186, 160, 98, 98, 98, 98, 98, 98, 12, 57, 2, -18, '', 0, 23, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 2), 38, 38, 2139, 0, 798, 1102, 164, 164, 164, 164, 188, 188, 164, 110, 110, 110, 110, 110, 110, 13, 59, 2, -18, '', 0, 25, 0, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 3), 38, 38, 2291, 0, 817, 1121, 168, 168, 168, 168, 190, 190, 168, 122, 122, 122, 122, 122, 122, 13, 62, 2, -18, '', 0, 27, 0, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 4), 38, 38, 2443, 0, 836, 1140, 172, 172, 172, 172, 192, 192, 172, 134, 134, 134, 134, 134, 134, 14, 65, 2, -18, '', 0, 29, 0, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 5), 38, 38, 2595, 0, 855, 1159, 176, 176, 176, 176, 194, 194, 176, 146, 146, 146, 146, 146, 146, 14, 67, 2, -18, '', 0, 31, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 1), 38, 38, 3127, 0, 969, 1197, 184, 184, 184, 184, 206, 206, 184, 140, 140, 140, 140, 140, 140, 13, 63, 2, -18, '', 0, 31, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 2), 38, 38, 3279, 0, 988, 1216, 188, 188, 188, 188, 208, 208, 188, 152, 152, 152, 152, 152, 152, 14, 66, 2, -18, '', 0, 33, 0, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 3), 38, 38, 3431, 0, 1007, 1235, 192, 192, 192, 192, 210, 210, 192, 164, 164, 164, 164, 164, 164, 14, 69, 2, -18, '', 0, 35, 0, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 4), 38, 38, 3583, 0, 1026, 1254, 196, 196, 196, 196, 212, 212, 196, 176, 176, 176, 176, 176, 176, 15, 71, 2, -18, '', 0, 37, 0, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 5), 38, 38, 3735, 0, 1045, 1273, 200, 200, 200, 200, 214, 214, 200, 188, 188, 188, 188, 188, 188, 15, 74, 2, -18, '', 0, 39, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 1), 38, 38, 1645, 2219, 506, 313, 140, 140, 140, 140, 236, 236, 140, 98, 98, 98, 98, 98, 98, 10, 60, 1, -18, '', 0, 16, 12, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 2), 38, 38, 1721, 2333, 519, 323, 144, 144, 144, 144, 239, 239, 144, 110, 110, 110, 110, 110, 110, 11, 62, 1, -18, '', 0, 17, 13, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 3), 38, 38, 1797, 2447, 532, 332, 148, 148, 148, 148, 242, 242, 148, 122, 122, 122, 122, 122, 122, 11, 63, 1, -18, '', 0, 18, 14, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 4), 38, 38, 1873, 2561, 544, 342, 152, 152, 152, 152, 245, 245, 152, 134, 134, 134, 134, 134, 134, 11, 64, 1, -18, '', 0, 19, 15, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 5), 38, 38, 1949, 2675, 557, 351, 156, 156, 156, 156, 248, 248, 156, 146, 146, 146, 146, 146, 146, 11, 66, 1, -18, '', 0, 20, 16, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 1), 38, 38, 2595, 3169, 620, 351, 164, 164, 164, 164, 261, 261, 164, 140, 140, 140, 140, 140, 140, 11, 64, 1, -18, '', 0, 21, 15, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 2), 38, 38, 2671, 3283, 633, 361, 168, 168, 168, 168, 264, 264, 168, 152, 152, 152, 152, 152, 152, 11, 66, 1, -18, '', 0, 22, 16, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 3), 38, 38, 2747, 3397, 646, 370, 172, 172, 172, 172, 267, 267, 172, 164, 164, 164, 164, 164, 164, 12, 67, 1, -18, '', 0, 23, 17, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 4), 38, 38, 2823, 3511, 658, 380, 176, 176, 176, 176, 270, 270, 176, 176, 176, 176, 176, 176, 176, 12, 69, 1, -18, '', 0, 24, 18, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 5), 38, 38, 2899, 3625, 671, 389, 180, 180, 180, 180, 273, 273, 180, 188, 188, 188, 188, 188, 188, 12, 70, 1, -18, '', 0, 25, 19, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 1), 39, 39, 2417, 0, 1346, 1092, 164, 164, 164, 164, 189, 189, 164, 100, 100, 100, 100, 100, 100, 12, 63, 2, -18, '', 0, 26, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 2), 39, 39, 2612, 0, 1404, 1112, 168, 168, 168, 168, 191, 191, 168, 112, 112, 112, 112, 112, 112, 13, 66, 2, -18, '', 0, 28, 0, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 3), 39, 39, 2807, 0, 1463, 1131, 172, 172, 172, 172, 193, 193, 172, 124, 124, 124, 124, 124, 124, 13, 68, 2, -18, '', 0, 30, 0, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 4), 39, 39, 3002, 0, 1521, 1151, 176, 176, 176, 176, 195, 195, 176, 136, 136, 136, 136, 136, 136, 14, 71, 2, -18, '', 0, 32, 0, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 5), 39, 39, 3197, 0, 1580, 1170, 180, 180, 180, 180, 197, 197, 180, 148, 148, 148, 148, 148, 148, 14, 74, 2, -18, '', 0, 34, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 1), 39, 39, 3782, 0, 1658, 1189, 188, 188, 188, 188, 209, 209, 188, 142, 142, 142, 142, 142, 142, 14, 70, 2, -18, '', 0, 36, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 2), 39, 39, 3977, 0, 1716, 1209, 192, 192, 192, 192, 211, 211, 192, 154, 154, 154, 154, 154, 154, 14, 73, 2, -18, '', 0, 38, 0, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 3), 39, 39, 4172, 0, 1775, 1228, 196, 196, 196, 196, 213, 213, 196, 166, 166, 166, 166, 166, 166, 15, 75, 2, -18, '', 0, 40, 0, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 4), 39, 39, 4367, 0, 1833, 1248, 200, 200, 200, 200, 215, 215, 200, 178, 178, 178, 178, 178, 178, 15, 78, 2, -18, '', 0, 42, 0, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 5), 39, 39, 4562, 0, 1892, 1267, 204, 204, 204, 204, 217, 217, 204, 190, 190, 190, 190, 190, 190, 16, 81, 2, -18, '', 0, 44, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 1), 39, 39, 1994, 2309, 1053, 657, 147, 147, 147, 147, 239, 239, 147, 100, 100, 100, 100, 100, 100, 11, 62, 1, -18, '', 0, 17, 12, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 2), 39, 39, 2111, 2426, 1092, 670, 151, 151, 151, 151, 242, 242, 151, 112, 112, 112, 112, 112, 112, 11, 63, 1, -18, '', 0, 18, 13, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 3), 39, 39, 2228, 2543, 1131, 683, 155, 155, 155, 155, 245, 245, 155, 124, 124, 124, 124, 124, 124, 11, 64, 1, -18, '', 0, 19, 14, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 4), 39, 39, 2345, 2660, 1170, 696, 159, 159, 159, 159, 248, 248, 159, 136, 136, 136, 136, 136, 136, 11, 66, 1, -18, '', 0, 20, 15, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 5), 39, 39, 2462, 2777, 1209, 709, 163, 163, 163, 163, 251, 251, 163, 148, 148, 148, 148, 148, 148, 12, 67, 1, -18, '', 0, 21, 16, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 1), 39, 39, 3164, 3284, 1287, 715, 171, 171, 171, 171, 264, 264, 171, 142, 142, 142, 142, 142, 142, 11, 66, 1, -18, '', 0, 23, 15, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 2), 39, 39, 3281, 3401, 1326, 728, 175, 175, 175, 175, 267, 267, 175, 154, 154, 154, 154, 154, 154, 12, 67, 1, -18, '', 0, 24, 16, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 3), 39, 39, 3398, 3518, 1365, 741, 179, 179, 179, 179, 270, 270, 179, 166, 166, 166, 166, 166, 166, 12, 69, 1, -18, '', 0, 25, 17, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 4), 39, 39, 3515, 3635, 1404, 754, 183, 183, 183, 183, 273, 273, 183, 178, 178, 178, 178, 178, 178, 12, 70, 1, -18, '', 0, 26, 18, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 5), 39, 39, 3632, 3752, 1443, 767, 187, 187, 187, 187, 276, 276, 187, 190, 190, 190, 190, 190, 190, 12, 71, 1, -18, '', 0, 27, 19, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 1), 39, 39, 2077, 0, 799, 1111, 164, 164, 164, 164, 189, 189, 164, 100, 100, 100, 100, 100, 100, 12, 58, 2, -18, '', 0, 24, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 2), 39, 39, 2233, 0, 819, 1131, 168, 168, 168, 168, 191, 191, 168, 112, 112, 112, 112, 112, 112, 13, 61, 2, -18, '', 0, 26, 0, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 3), 39, 39, 2389, 0, 838, 1150, 172, 172, 172, 172, 193, 193, 172, 124, 124, 124, 124, 124, 124, 13, 63, 2, -18, '', 0, 28, 0, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 4), 39, 39, 2545, 0, 858, 1170, 176, 176, 176, 176, 195, 195, 176, 136, 136, 136, 136, 136, 136, 14, 66, 2, -18, '', 0, 30, 0, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 5), 39, 39, 2701, 0, 877, 1189, 180, 180, 180, 180, 197, 197, 180, 148, 148, 148, 148, 148, 148, 14, 69, 2, -18, '', 0, 32, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 1), 39, 39, 3247, 0, 994, 1228, 188, 188, 188, 188, 209, 209, 188, 142, 142, 142, 142, 142, 142, 14, 65, 2, -18, '', 0, 32, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 2), 39, 39, 3403, 0, 1014, 1248, 192, 192, 192, 192, 211, 211, 192, 154, 154, 154, 154, 154, 154, 14, 67, 2, -18, '', 0, 34, 0, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 3), 39, 39, 3559, 0, 1033, 1267, 196, 196, 196, 196, 213, 213, 196, 166, 166, 166, 166, 166, 166, 15, 70, 2, -18, '', 0, 36, 0, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 4), 39, 39, 3715, 0, 1053, 1287, 200, 200, 200, 200, 215, 215, 200, 178, 178, 178, 178, 178, 178, 15, 72, 2, -18, '', 0, 38, 0, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 5), 39, 39, 3871, 0, 1072, 1306, 204, 204, 204, 204, 217, 217, 204, 190, 190, 190, 190, 190, 190, 16, 75, 2, -18, '', 0, 40, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 1), 39, 39, 1722, 2309, 520, 321, 144, 144, 144, 144, 239, 239, 144, 100, 100, 100, 100, 100, 100, 11, 62, 1, -18, '', 0, 16, 12, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 2), 39, 39, 1800, 2426, 533, 331, 148, 148, 148, 148, 242, 242, 148, 112, 112, 112, 112, 112, 112, 11, 63, 1, -18, '', 0, 17, 13, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 3), 39, 39, 1878, 2543, 546, 341, 152, 152, 152, 152, 245, 245, 152, 124, 124, 124, 124, 124, 124, 11, 64, 1, -18, '', 0, 18, 14, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 4), 39, 39, 1956, 2660, 559, 351, 156, 156, 156, 156, 248, 248, 156, 136, 136, 136, 136, 136, 136, 11, 66, 1, -18, '', 0, 19, 15, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 5), 39, 39, 2034, 2777, 572, 360, 160, 160, 160, 160, 251, 251, 160, 148, 148, 148, 148, 148, 148, 12, 67, 1, -18, '', 0, 20, 16, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 1), 39, 39, 2697, 3284, 637, 360, 168, 168, 168, 168, 264, 264, 168, 142, 142, 142, 142, 142, 142, 11, 66, 1, -18, '', 0, 21, 15, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 2), 39, 39, 2775, 3401, 650, 370, 172, 172, 172, 172, 267, 267, 172, 154, 154, 154, 154, 154, 154, 12, 67, 1, -18, '', 0, 22, 16, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 3), 39, 39, 2853, 3518, 663, 380, 176, 176, 176, 176, 270, 270, 176, 166, 166, 166, 166, 166, 166, 12, 69, 1, -18, '', 0, 23, 17, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 4), 39, 39, 2931, 3635, 676, 390, 180, 180, 180, 180, 273, 273, 180, 178, 178, 178, 178, 178, 178, 12, 70, 1, -18, '', 0, 24, 18, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 5), 39, 39, 3009, 3752, 689, 399, 184, 184, 184, 184, 276, 276, 184, 190, 190, 190, 190, 190, 190, 12, 71, 1, -18, '', 0, 25, 19, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 1), 40, 40, 2524, 0, 1380, 1120, 170, 170, 170, 170, 192, 192, 170, 103, 103, 103, 103, 103, 103, 13, 64, 2, -18, '', 0, 26, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 2), 40, 40, 2724, 0, 1440, 1140, 175, 175, 175, 175, 194, 194, 175, 116, 116, 116, 116, 116, 116, 13, 67, 2, -18, '', 0, 28, 0, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 3), 40, 40, 2924, 0, 1500, 1160, 180, 180, 180, 180, 196, 196, 180, 129, 129, 129, 129, 129, 129, 14, 70, 2, -18, '', 0, 30, 0, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 4), 40, 40, 3124, 0, 1560, 1180, 185, 185, 185, 185, 198, 198, 185, 142, 142, 142, 142, 142, 142, 14, 73, 2, -18, '', 0, 32, 0, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 5), 40, 40, 3324, 0, 1620, 1200, 190, 190, 190, 190, 200, 200, 190, 155, 155, 155, 155, 155, 155, 15, 75, 2, -18, '', 0, 34, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 1), 40, 40, 3924, 0, 1700, 1220, 195, 195, 195, 195, 212, 212, 195, 145, 145, 145, 145, 145, 145, 14, 71, 2, -18, '', 0, 36, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 2), 40, 40, 4124, 0, 1760, 1240, 200, 200, 200, 200, 214, 214, 200, 158, 158, 158, 158, 158, 158, 14, 74, 2, -18, '', 0, 38, 0, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 3), 40, 40, 4324, 0, 1820, 1260, 205, 205, 205, 205, 216, 216, 205, 171, 171, 171, 171, 171, 171, 15, 77, 2, -18, '', 0, 40, 0, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 4), 40, 40, 4524, 0, 1880, 1280, 210, 210, 210, 210, 218, 218, 210, 184, 184, 184, 184, 184, 184, 15, 80, 2, -18, '', 0, 42, 0, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 5), 40, 40, 4724, 0, 1940, 1300, 215, 215, 215, 215, 220, 220, 215, 197, 197, 197, 197, 197, 197, 16, 82, 2, -18, '', 0, 44, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 1), 40, 40, 2082, 2400, 1080, 673, 152, 152, 152, 152, 243, 243, 152, 103, 103, 103, 103, 103, 103, 11, 63, 1, -18, '', 0, 18, 13, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 2), 40, 40, 2202, 2520, 1120, 686, 157, 157, 157, 157, 246, 246, 157, 116, 116, 116, 116, 116, 116, 11, 64, 1, -18, '', 0, 19, 14, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 3), 40, 40, 2322, 2640, 1160, 700, 162, 162, 162, 162, 249, 249, 162, 129, 129, 129, 129, 129, 129, 11, 66, 1, -18, '', 0, 20, 15, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 4), 40, 40, 2442, 2760, 1200, 713, 167, 167, 167, 167, 252, 252, 167, 142, 142, 142, 142, 142, 142, 12, 67, 1, -18, '', 0, 21, 16, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 5), 40, 40, 2562, 2880, 1240, 726, 172, 172, 172, 172, 255, 255, 172, 155, 155, 155, 155, 155, 155, 12, 69, 1, -18, '', 0, 22, 17, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 1), 40, 40, 3282, 3400, 1320, 733, 177, 177, 177, 177, 268, 268, 177, 145, 145, 145, 145, 145, 145, 12, 67, 1, -18, '', 0, 24, 16, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 2), 40, 40, 3402, 3520, 1360, 746, 182, 182, 182, 182, 271, 271, 182, 158, 158, 158, 158, 158, 158, 12, 69, 1, -18, '', 0, 25, 17, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 3), 40, 40, 3522, 3640, 1400, 760, 187, 187, 187, 187, 274, 274, 187, 171, 171, 171, 171, 171, 171, 12, 70, 1, -18, '', 0, 26, 18, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 4), 40, 40, 3642, 3760, 1440, 773, 192, 192, 192, 192, 277, 277, 192, 184, 184, 184, 184, 184, 184, 12, 71, 1, -18, '', 0, 27, 19, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 5), 40, 40, 3762, 3880, 1480, 786, 197, 197, 197, 197, 280, 280, 197, 197, 197, 197, 197, 197, 197, 13, 73, 1, -18, '', 0, 28, 20, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 1), 40, 40, 2170, 0, 820, 1140, 170, 170, 170, 170, 192, 192, 170, 103, 103, 103, 103, 103, 103, 13, 59, 2, -18, '', 0, 24, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 2), 40, 40, 2330, 0, 840, 1160, 175, 175, 175, 175, 194, 194, 175, 116, 116, 116, 116, 116, 116, 13, 62, 2, -18, '', 0, 26, 0, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 3), 40, 40, 2490, 0, 860, 1180, 180, 180, 180, 180, 196, 196, 180, 129, 129, 129, 129, 129, 129, 14, 65, 2, -18, '', 0, 28, 0, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 4), 40, 40, 2650, 0, 880, 1200, 185, 185, 185, 185, 198, 198, 185, 142, 142, 142, 142, 142, 142, 14, 67, 2, -18, '', 0, 30, 0, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 5), 40, 40, 2810, 0, 900, 1220, 190, 190, 190, 190, 200, 200, 190, 155, 155, 155, 155, 155, 155, 15, 70, 2, -18, '', 0, 32, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 1), 40, 40, 3370, 0, 1020, 1260, 195, 195, 195, 195, 212, 212, 195, 145, 145, 145, 145, 145, 145, 14, 66, 2, -18, '', 0, 32, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 2), 40, 40, 3530, 0, 1040, 1280, 200, 200, 200, 200, 214, 214, 200, 158, 158, 158, 158, 158, 158, 14, 69, 2, -18, '', 0, 34, 0, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 3), 40, 40, 3690, 0, 1060, 1300, 205, 205, 205, 205, 216, 216, 205, 171, 171, 171, 171, 171, 171, 15, 71, 2, -18, '', 0, 36, 0, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 4), 40, 40, 3850, 0, 1080, 1320, 210, 210, 210, 210, 218, 218, 210, 184, 184, 184, 184, 184, 184, 15, 74, 2, -18, '', 0, 38, 0, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 5), 40, 40, 4010, 0, 1100, 1340, 215, 215, 215, 215, 220, 220, 215, 197, 197, 197, 197, 197, 197, 16, 76, 2, -18, '', 0, 40, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 1), 40, 40, 1801, 2400, 533, 330, 149, 149, 149, 149, 243, 243, 149, 103, 103, 103, 103, 103, 103, 11, 63, 1, -18, '', 0, 17, 13, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 2), 40, 40, 1881, 2520, 546, 340, 154, 154, 154, 154, 246, 246, 154, 116, 116, 116, 116, 116, 116, 11, 64, 1, -18, '', 0, 18, 14, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 3), 40, 40, 1961, 2640, 560, 350, 159, 159, 159, 159, 249, 249, 159, 129, 129, 129, 129, 129, 129, 11, 66, 1, -18, '', 0, 19, 15, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 4), 40, 40, 2041, 2760, 573, 360, 164, 164, 164, 164, 252, 252, 164, 142, 142, 142, 142, 142, 142, 12, 67, 1, -18, '', 0, 20, 16, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 5), 40, 40, 2121, 2880, 586, 370, 169, 169, 169, 169, 255, 255, 169, 155, 155, 155, 155, 155, 155, 12, 69, 1, -18, '', 0, 21, 17, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 1), 40, 40, 2801, 3400, 653, 370, 174, 174, 174, 174, 268, 268, 174, 145, 145, 145, 145, 145, 145, 12, 67, 1, -18, '', 0, 22, 16, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 2), 40, 40, 2881, 3520, 666, 380, 179, 179, 179, 179, 271, 271, 179, 158, 158, 158, 158, 158, 158, 12, 69, 1, -18, '', 0, 23, 17, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 3), 40, 40, 2961, 3640, 680, 390, 184, 184, 184, 184, 274, 274, 184, 171, 171, 171, 171, 171, 171, 12, 70, 1, -18, '', 0, 24, 18, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 4), 40, 40, 3041, 3760, 693, 400, 189, 189, 189, 189, 277, 277, 189, 184, 184, 184, 184, 184, 184, 12, 71, 1, -18, '', 0, 25, 19, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 5), 40, 40, 3121, 3880, 706, 410, 194, 194, 194, 194, 280, 280, 194, 197, 197, 197, 197, 197, 197, 13, 73, 1, -18, '', 0, 26, 20, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 1), 41, 41, 2634, 0, 1415, 1148, 174, 174, 174, 174, 195, 195, 174, 105, 105, 105, 105, 105, 105, 13, 66, 2, -18, '', 0, 26, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 2), 41, 41, 2839, 0, 1476, 1169, 179, 179, 179, 179, 197, 197, 179, 118, 118, 118, 118, 118, 118, 13, 68, 2, -18, '', 0, 28, 0, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 3), 41, 41, 3044, 0, 1538, 1189, 184, 184, 184, 184, 199, 199, 184, 131, 131, 131, 131, 131, 131, 14, 71, 2, -18, '', 0, 30, 0, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 4), 41, 41, 3249, 0, 1599, 1210, 189, 189, 189, 189, 201, 201, 189, 144, 144, 144, 144, 144, 144, 14, 74, 2, -18, '', 0, 32, 0, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 5), 41, 41, 3454, 0, 1661, 1230, 194, 194, 194, 194, 203, 203, 194, 157, 157, 157, 157, 157, 157, 15, 77, 2, -18, '', 0, 34, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 1), 41, 41, 4069, 0, 1743, 1250, 199, 199, 199, 199, 215, 215, 199, 149, 149, 149, 149, 149, 149, 14, 73, 2, -18, '', 0, 36, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 2), 41, 41, 4274, 0, 1804, 1271, 204, 204, 204, 204, 217, 217, 204, 162, 162, 162, 162, 162, 162, 15, 75, 2, -18, '', 0, 38, 0, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 3), 41, 41, 4479, 0, 1866, 1291, 209, 209, 209, 209, 219, 219, 209, 175, 175, 175, 175, 175, 175, 15, 78, 2, -18, '', 0, 40, 0, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 4), 41, 41, 4684, 0, 1927, 1312, 214, 214, 214, 214, 221, 221, 214, 188, 188, 188, 188, 188, 188, 16, 81, 2, -18, '', 0, 42, 0, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 5), 41, 41, 4889, 0, 1989, 1332, 219, 219, 219, 219, 223, 223, 219, 201, 201, 201, 201, 201, 201, 16, 84, 2, -18, '', 0, 44, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 1), 41, 41, 2173, 2493, 1107, 690, 156, 156, 156, 156, 246, 246, 156, 105, 105, 105, 105, 105, 105, 11, 64, 1, -18, '', 0, 18, 13, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 2), 41, 41, 2296, 2616, 1148, 704, 161, 161, 161, 161, 249, 249, 161, 118, 118, 118, 118, 118, 118, 11, 66, 1, -18, '', 0, 19, 14, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 3), 41, 41, 2419, 2739, 1189, 718, 166, 166, 166, 166, 252, 252, 166, 131, 131, 131, 131, 131, 131, 12, 67, 1, -18, '', 0, 20, 15, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 4), 41, 41, 2542, 2862, 1230, 731, 171, 171, 171, 171, 255, 255, 171, 144, 144, 144, 144, 144, 144, 12, 69, 1, -18, '', 0, 21, 16, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 5), 41, 41, 2665, 2985, 1271, 745, 176, 176, 176, 176, 258, 258, 176, 157, 157, 157, 157, 157, 157, 12, 70, 1, -18, '', 0, 22, 17, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 1), 41, 41, 3403, 3518, 1353, 751, 181, 181, 181, 181, 271, 271, 181, 149, 149, 149, 149, 149, 149, 12, 69, 1, -18, '', 0, 24, 16, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 2), 41, 41, 3526, 3641, 1394, 765, 186, 186, 186, 186, 274, 274, 186, 162, 162, 162, 162, 162, 162, 12, 70, 1, -18, '', 0, 25, 17, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 3), 41, 41, 3649, 3764, 1435, 779, 191, 191, 191, 191, 277, 277, 191, 175, 175, 175, 175, 175, 175, 12, 71, 1, -18, '', 0, 26, 18, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 4), 41, 41, 3772, 3887, 1476, 792, 196, 196, 196, 196, 280, 280, 196, 188, 188, 188, 188, 188, 188, 13, 73, 1, -18, '', 0, 27, 19, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 5), 41, 41, 3895, 4010, 1517, 806, 201, 201, 201, 201, 283, 283, 201, 201, 201, 201, 201, 201, 201, 13, 74, 1, -18, '', 0, 28, 20, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 1), 41, 41, 2265, 0, 840, 1168, 174, 174, 174, 174, 195, 195, 174, 105, 105, 105, 105, 105, 105, 13, 61, 2, -18, '', 0, 24, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 2), 41, 41, 2429, 0, 861, 1189, 179, 179, 179, 179, 197, 197, 179, 118, 118, 118, 118, 118, 118, 13, 63, 2, -18, '', 0, 26, 0, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 3), 41, 41, 2593, 0, 881, 1209, 184, 184, 184, 184, 199, 199, 184, 131, 131, 131, 131, 131, 131, 14, 66, 2, -18, '', 0, 28, 0, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 4), 41, 41, 2757, 0, 902, 1230, 189, 189, 189, 189, 201, 201, 189, 144, 144, 144, 144, 144, 144, 14, 69, 2, -18, '', 0, 30, 0, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 5), 41, 41, 2921, 0, 922, 1250, 194, 194, 194, 194, 203, 203, 194, 157, 157, 157, 157, 157, 157, 15, 71, 2, -18, '', 0, 32, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 1), 41, 41, 3495, 0, 1045, 1291, 199, 199, 199, 199, 215, 215, 199, 149, 149, 149, 149, 149, 149, 14, 67, 2, -18, '', 0, 32, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 2), 41, 41, 3659, 0, 1066, 1312, 204, 204, 204, 204, 217, 217, 204, 162, 162, 162, 162, 162, 162, 15, 70, 2, -18, '', 0, 34, 0, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 3), 41, 41, 3823, 0, 1086, 1332, 209, 209, 209, 209, 219, 219, 209, 175, 175, 175, 175, 175, 175, 15, 72, 2, -18, '', 0, 36, 0, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 4), 41, 41, 3987, 0, 1107, 1353, 214, 214, 214, 214, 221, 221, 214, 188, 188, 188, 188, 188, 188, 16, 75, 2, -18, '', 0, 38, 0, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 5), 41, 41, 4151, 0, 1127, 1373, 219, 219, 219, 219, 223, 223, 219, 201, 201, 201, 201, 201, 201, 16, 78, 2, -18, '', 0, 40, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 1), 41, 41, 1882, 2493, 546, 338, 153, 153, 153, 153, 246, 246, 153, 105, 105, 105, 105, 105, 105, 11, 64, 1, -18, '', 0, 17, 13, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 2), 41, 41, 1964, 2616, 560, 348, 158, 158, 158, 158, 249, 249, 158, 118, 118, 118, 118, 118, 118, 11, 66, 1, -18, '', 0, 18, 14, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 3), 41, 41, 2046, 2739, 574, 358, 163, 163, 163, 163, 252, 252, 163, 131, 131, 131, 131, 131, 131, 12, 67, 1, -18, '', 0, 19, 15, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 4), 41, 41, 2128, 2862, 587, 369, 168, 168, 168, 168, 255, 255, 168, 144, 144, 144, 144, 144, 144, 12, 69, 1, -18, '', 0, 20, 16, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 5), 41, 41, 2210, 2985, 601, 379, 173, 173, 173, 173, 258, 258, 173, 157, 157, 157, 157, 157, 157, 12, 70, 1, -18, '', 0, 21, 17, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 1), 41, 41, 2907, 3518, 669, 379, 178, 178, 178, 178, 271, 271, 178, 149, 149, 149, 149, 149, 149, 12, 69, 1, -18, '', 0, 22, 16, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 2), 41, 41, 2989, 3641, 683, 389, 183, 183, 183, 183, 274, 274, 183, 162, 162, 162, 162, 162, 162, 12, 70, 1, -18, '', 0, 23, 17, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 3), 41, 41, 3071, 3764, 697, 399, 188, 188, 188, 188, 277, 277, 188, 175, 175, 175, 175, 175, 175, 12, 71, 1, -18, '', 0, 24, 18, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 4), 41, 41, 3153, 3887, 710, 410, 193, 193, 193, 193, 280, 280, 193, 188, 188, 188, 188, 188, 188, 13, 73, 1, -18, '', 0, 25, 19, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 5), 41, 41, 3235, 4010, 724, 420, 198, 198, 198, 198, 283, 283, 198, 201, 201, 201, 201, 201, 201, 13, 74, 1, -18, '', 0, 26, 20, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 1), 42, 42, 2748, 0, 1449, 1176, 179, 179, 179, 179, 198, 198, 179, 107, 107, 107, 107, 107, 107, 13, 67, 2, -18, '', 0, 27, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 2), 42, 42, 2958, 0, 1512, 1197, 184, 184, 184, 184, 200, 200, 184, 120, 120, 120, 120, 120, 120, 14, 70, 2, -18, '', 0, 29, 0, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 3), 42, 42, 3168, 0, 1575, 1218, 189, 189, 189, 189, 202, 202, 189, 133, 133, 133, 133, 133, 133, 14, 73, 2, -18, '', 0, 31, 0, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 4), 42, 42, 3378, 0, 1638, 1239, 194, 194, 194, 194, 204, 204, 194, 146, 146, 146, 146, 146, 146, 15, 75, 2, -18, '', 0, 33, 0, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 5), 42, 42, 3588, 0, 1701, 1260, 199, 199, 199, 199, 206, 206, 199, 159, 159, 159, 159, 159, 159, 15, 78, 2, -18, '', 0, 35, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 1), 42, 42, 4218, 0, 1785, 1281, 205, 205, 205, 205, 218, 218, 205, 151, 151, 151, 151, 151, 151, 14, 74, 2, -18, '', 0, 37, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 2), 42, 42, 4428, 0, 1848, 1302, 210, 210, 210, 210, 220, 220, 210, 164, 164, 164, 164, 164, 164, 15, 77, 2, -18, '', 0, 39, 0, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 3), 42, 42, 4638, 0, 1911, 1323, 215, 215, 215, 215, 222, 222, 215, 177, 177, 177, 177, 177, 177, 15, 80, 2, -18, '', 0, 41, 0, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 4), 42, 42, 4848, 0, 1974, 1344, 220, 220, 220, 220, 224, 224, 220, 190, 190, 190, 190, 190, 190, 16, 82, 2, -18, '', 0, 43, 0, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 5), 42, 42, 5058, 0, 2037, 1365, 225, 225, 225, 225, 226, 226, 225, 203, 203, 203, 203, 203, 203, 16, 85, 2, -18, '', 0, 45, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 1), 42, 42, 2267, 2587, 1134, 707, 161, 161, 161, 161, 250, 250, 161, 107, 107, 107, 107, 107, 107, 11, 66, 1, -18, '', 0, 18, 13, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 2), 42, 42, 2393, 2713, 1176, 721, 166, 166, 166, 166, 253, 253, 166, 120, 120, 120, 120, 120, 120, 12, 67, 1, -18, '', 0, 19, 14, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 3), 42, 42, 2519, 2839, 1218, 735, 171, 171, 171, 171, 256, 256, 171, 133, 133, 133, 133, 133, 133, 12, 69, 1, -18, '', 0, 20, 15, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 4), 42, 42, 2645, 2965, 1260, 749, 176, 176, 176, 176, 259, 259, 176, 146, 146, 146, 146, 146, 146, 12, 70, 1, -18, '', 0, 21, 16, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 5), 42, 42, 2771, 3091, 1302, 763, 181, 181, 181, 181, 262, 262, 181, 159, 159, 159, 159, 159, 159, 12, 71, 1, -18, '', 0, 22, 17, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 1), 42, 42, 3527, 3637, 1386, 770, 187, 187, 187, 187, 275, 275, 187, 151, 151, 151, 151, 151, 151, 12, 70, 1, -18, '', 0, 24, 16, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 2), 42, 42, 3653, 3763, 1428, 784, 192, 192, 192, 192, 278, 278, 192, 164, 164, 164, 164, 164, 164, 12, 71, 1, -18, '', 0, 25, 17, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 3), 42, 42, 3779, 3889, 1470, 798, 197, 197, 197, 197, 281, 281, 197, 177, 177, 177, 177, 177, 177, 13, 73, 1, -18, '', 0, 26, 18, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 4), 42, 42, 3905, 4015, 1512, 812, 202, 202, 202, 202, 284, 284, 202, 190, 190, 190, 190, 190, 190, 13, 74, 1, -18, '', 0, 27, 19, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 5), 42, 42, 4031, 4141, 1554, 826, 207, 207, 207, 207, 287, 287, 207, 203, 203, 203, 203, 203, 203, 13, 76, 1, -18, '', 0, 28, 20, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 1), 42, 42, 2364, 0, 861, 1197, 179, 179, 179, 179, 198, 198, 179, 107, 107, 107, 107, 107, 107, 13, 62, 2, -18, '', 0, 25, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 2), 42, 42, 2532, 0, 882, 1218, 184, 184, 184, 184, 200, 200, 184, 120, 120, 120, 120, 120, 120, 14, 65, 2, -18, '', 0, 27, 0, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 3), 42, 42, 2700, 0, 903, 1239, 189, 189, 189, 189, 202, 202, 189, 133, 133, 133, 133, 133, 133, 14, 67, 2, -18, '', 0, 29, 0, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 4), 42, 42, 2868, 0, 924, 1260, 194, 194, 194, 194, 204, 204, 194, 146, 146, 146, 146, 146, 146, 15, 70, 2, -18, '', 0, 31, 0, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 5), 42, 42, 3036, 0, 945, 1281, 199, 199, 199, 199, 206, 206, 199, 159, 159, 159, 159, 159, 159, 15, 72, 2, -18, '', 0, 33, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 1), 42, 42, 3624, 0, 1071, 1323, 205, 205, 205, 205, 218, 218, 205, 151, 151, 151, 151, 151, 151, 14, 69, 2, -18, '', 0, 33, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 2), 42, 42, 3792, 0, 1092, 1344, 210, 210, 210, 210, 220, 220, 210, 164, 164, 164, 164, 164, 164, 15, 71, 2, -18, '', 0, 35, 0, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 3), 42, 42, 3960, 0, 1113, 1365, 215, 215, 215, 215, 222, 222, 215, 177, 177, 177, 177, 177, 177, 15, 74, 2, -18, '', 0, 37, 0, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 4), 42, 42, 4128, 0, 1134, 1386, 220, 220, 220, 220, 224, 224, 220, 190, 190, 190, 190, 190, 190, 16, 76, 2, -18, '', 0, 39, 0, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 5), 42, 42, 4296, 0, 1155, 1407, 225, 225, 225, 225, 226, 226, 225, 203, 203, 203, 203, 203, 203, 16, 79, 2, -18, '', 0, 41, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 1), 42, 42, 1967, 2587, 560, 346, 157, 157, 157, 157, 250, 250, 157, 107, 107, 107, 107, 107, 107, 11, 66, 1, -18, '', 0, 17, 13, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 2), 42, 42, 2051, 2713, 574, 357, 162, 162, 162, 162, 253, 253, 162, 120, 120, 120, 120, 120, 120, 12, 67, 1, -18, '', 0, 18, 14, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 3), 42, 42, 2135, 2839, 588, 367, 167, 167, 167, 167, 256, 256, 167, 133, 133, 133, 133, 133, 133, 12, 69, 1, -18, '', 0, 19, 15, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 4), 42, 42, 2219, 2965, 602, 378, 172, 172, 172, 172, 259, 259, 172, 146, 146, 146, 146, 146, 146, 12, 70, 1, -18, '', 0, 20, 16, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 5), 42, 42, 2303, 3091, 616, 388, 177, 177, 177, 177, 262, 262, 177, 159, 159, 159, 159, 159, 159, 12, 71, 1, -18, '', 0, 21, 17, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 1), 42, 42, 3017, 3637, 686, 388, 183, 183, 183, 183, 275, 275, 183, 151, 151, 151, 151, 151, 151, 12, 70, 1, -18, '', 0, 22, 16, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 2), 42, 42, 3101, 3763, 700, 399, 188, 188, 188, 188, 278, 278, 188, 164, 164, 164, 164, 164, 164, 12, 71, 1, -18, '', 0, 23, 17, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 3), 42, 42, 3185, 3889, 714, 409, 193, 193, 193, 193, 281, 281, 193, 177, 177, 177, 177, 177, 177, 13, 73, 1, -18, '', 0, 24, 18, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 4), 42, 42, 3269, 4015, 728, 420, 198, 198, 198, 198, 284, 284, 198, 190, 190, 190, 190, 190, 190, 13, 74, 1, -18, '', 0, 25, 19, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 5), 42, 42, 3353, 4141, 742, 430, 203, 203, 203, 203, 287, 287, 203, 203, 203, 203, 203, 203, 203, 13, 76, 1, -18, '', 0, 26, 20, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 1), 43, 43, 2865, 0, 1484, 1204, 183, 183, 183, 183, 201, 201, 183, 109, 109, 109, 109, 109, 109, 13, 68, 2, -18, '', 0, 27, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 2), 43, 43, 3080, 0, 1548, 1226, 188, 188, 188, 188, 203, 203, 188, 122, 122, 122, 122, 122, 122, 14, 71, 2, -18, '', 0, 29, 0, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 3), 43, 43, 3295, 0, 1613, 1247, 193, 193, 193, 193, 205, 205, 193, 135, 135, 135, 135, 135, 135, 14, 74, 2, -18, '', 0, 31, 0, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 4), 43, 43, 3510, 0, 1677, 1269, 198, 198, 198, 198, 207, 207, 198, 148, 148, 148, 148, 148, 148, 15, 77, 2, -18, '', 0, 33, 0, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 5), 43, 43, 3725, 0, 1742, 1290, 203, 203, 203, 203, 209, 209, 203, 161, 161, 161, 161, 161, 161, 15, 80, 2, -18, '', 0, 35, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 1), 43, 43, 4370, 0, 1828, 1311, 209, 209, 209, 209, 221, 221, 209, 153, 153, 153, 153, 153, 153, 15, 75, 2, -18, '', 0, 37, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 2), 43, 43, 4585, 0, 1892, 1333, 214, 214, 214, 214, 223, 223, 214, 166, 166, 166, 166, 166, 166, 15, 78, 2, -18, '', 0, 39, 0, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 3), 43, 43, 4800, 0, 1957, 1354, 219, 219, 219, 219, 225, 225, 219, 179, 179, 179, 179, 179, 179, 16, 81, 2, -18, '', 0, 41, 0, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 4), 43, 43, 5015, 0, 2021, 1376, 224, 224, 224, 224, 227, 227, 224, 192, 192, 192, 192, 192, 192, 16, 84, 2, -18, '', 0, 43, 0, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 5), 43, 43, 5230, 0, 2086, 1397, 229, 229, 229, 229, 229, 229, 229, 205, 205, 205, 205, 205, 205, 17, 87, 2, -18, '', 0, 45, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 1), 43, 43, 2364, 2683, 1161, 724, 165, 165, 165, 165, 253, 253, 165, 109, 109, 109, 109, 109, 109, 12, 67, 1, -18, '', 0, 18, 13, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 2), 43, 43, 2493, 2812, 1204, 738, 170, 170, 170, 170, 256, 256, 170, 122, 122, 122, 122, 122, 122, 12, 69, 1, -18, '', 0, 19, 14, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 3), 43, 43, 2622, 2941, 1247, 753, 175, 175, 175, 175, 259, 259, 175, 135, 135, 135, 135, 135, 135, 12, 70, 1, -18, '', 0, 20, 15, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 4), 43, 43, 2751, 3070, 1290, 767, 180, 180, 180, 180, 262, 262, 180, 148, 148, 148, 148, 148, 148, 12, 71, 1, -18, '', 0, 21, 16, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 5), 43, 43, 2880, 3199, 1333, 781, 185, 185, 185, 185, 265, 265, 185, 161, 161, 161, 161, 161, 161, 13, 73, 1, -18, '', 0, 22, 17, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 1), 43, 43, 3654, 3758, 1419, 788, 191, 191, 191, 191, 278, 278, 191, 153, 153, 153, 153, 153, 153, 12, 71, 1, -18, '', 0, 24, 16, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 2), 43, 43, 3783, 3887, 1462, 802, 196, 196, 196, 196, 281, 281, 196, 166, 166, 166, 166, 166, 166, 13, 73, 1, -18, '', 0, 25, 17, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 3), 43, 43, 3912, 4016, 1505, 817, 201, 201, 201, 201, 284, 284, 201, 179, 179, 179, 179, 179, 179, 13, 74, 1, -18, '', 0, 26, 18, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 4), 43, 43, 4041, 4145, 1548, 831, 206, 206, 206, 206, 287, 287, 206, 192, 192, 192, 192, 192, 192, 13, 76, 1, -18, '', 0, 27, 19, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 5), 43, 43, 4170, 4274, 1591, 845, 211, 211, 211, 211, 290, 290, 211, 205, 205, 205, 205, 205, 205, 13, 77, 1, -18, '', 0, 28, 20, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 1), 43, 43, 2465, 0, 881, 1225, 183, 183, 183, 183, 201, 201, 183, 109, 109, 109, 109, 109, 109, 13, 63, 2, -18, '', 0, 25, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 2), 43, 43, 2637, 0, 903, 1247, 188, 188, 188, 188, 203, 203, 188, 122, 122, 122, 122, 122, 122, 14, 66, 2, -18, '', 0, 27, 0, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 3), 43, 43, 2809, 0, 924, 1268, 193, 193, 193, 193, 205, 205, 193, 135, 135, 135, 135, 135, 135, 14, 69, 2, -18, '', 0, 29, 0, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 4), 43, 43, 2981, 0, 946, 1290, 198, 198, 198, 198, 207, 207, 198, 148, 148, 148, 148, 148, 148, 15, 71, 2, -18, '', 0, 31, 0, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 5), 43, 43, 3153, 0, 967, 1311, 203, 203, 203, 203, 209, 209, 203, 161, 161, 161, 161, 161, 161, 15, 74, 2, -18, '', 0, 33, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 1), 43, 43, 3755, 0, 1096, 1354, 209, 209, 209, 209, 221, 221, 209, 153, 153, 153, 153, 153, 153, 15, 70, 2, -18, '', 0, 33, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 2), 43, 43, 3927, 0, 1118, 1376, 214, 214, 214, 214, 223, 223, 214, 166, 166, 166, 166, 166, 166, 15, 72, 2, -18, '', 0, 35, 0, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 3), 43, 43, 4099, 0, 1139, 1397, 219, 219, 219, 219, 225, 225, 219, 179, 179, 179, 179, 179, 179, 16, 75, 2, -18, '', 0, 37, 0, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 4), 43, 43, 4271, 0, 1161, 1419, 224, 224, 224, 224, 227, 227, 224, 192, 192, 192, 192, 192, 192, 16, 78, 2, -18, '', 0, 39, 0, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 5), 43, 43, 4443, 0, 1182, 1440, 229, 229, 229, 229, 229, 229, 229, 205, 205, 205, 205, 205, 205, 17, 80, 2, -18, '', 0, 41, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 1), 43, 43, 2054, 2683, 573, 354, 161, 161, 161, 161, 253, 253, 161, 109, 109, 109, 109, 109, 109, 12, 67, 1, -18, '', 0, 17, 13, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 2), 43, 43, 2140, 2812, 587, 365, 166, 166, 166, 166, 256, 256, 166, 122, 122, 122, 122, 122, 122, 12, 69, 1, -18, '', 0, 18, 14, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 3), 43, 43, 2226, 2941, 602, 376, 171, 171, 171, 171, 259, 259, 171, 135, 135, 135, 135, 135, 135, 12, 70, 1, -18, '', 0, 19, 15, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 4), 43, 43, 2312, 3070, 616, 387, 176, 176, 176, 176, 262, 262, 176, 148, 148, 148, 148, 148, 148, 12, 71, 1, -18, '', 0, 20, 16, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 5), 43, 43, 2398, 3199, 630, 397, 181, 181, 181, 181, 265, 265, 181, 161, 161, 161, 161, 161, 161, 13, 73, 1, -18, '', 0, 21, 17, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 1), 43, 43, 3129, 3758, 702, 397, 187, 187, 187, 187, 278, 278, 187, 153, 153, 153, 153, 153, 153, 12, 71, 1, -18, '', 0, 22, 16, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 2), 43, 43, 3215, 3887, 716, 408, 192, 192, 192, 192, 281, 281, 192, 166, 166, 166, 166, 166, 166, 13, 73, 1, -18, '', 0, 23, 17, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 3), 43, 43, 3301, 4016, 731, 419, 197, 197, 197, 197, 284, 284, 197, 179, 179, 179, 179, 179, 179, 13, 74, 1, -18, '', 0, 24, 18, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 4), 43, 43, 3387, 4145, 745, 430, 202, 202, 202, 202, 287, 287, 202, 192, 192, 192, 192, 192, 192, 13, 76, 1, -18, '', 0, 25, 19, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 5), 43, 43, 3473, 4274, 759, 440, 207, 207, 207, 207, 290, 290, 207, 205, 205, 205, 205, 205, 205, 13, 77, 1, -18, '', 0, 26, 20, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 1), 44, 44, 2986, 0, 1518, 1232, 188, 188, 188, 188, 204, 204, 188, 112, 112, 112, 112, 112, 112, 14, 70, 2, -18, '', 0, 27, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 2), 44, 44, 3206, 0, 1584, 1254, 193, 193, 193, 193, 206, 206, 193, 126, 126, 126, 126, 126, 126, 14, 73, 2, -18, '', 0, 29, 0, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 3), 44, 44, 3426, 0, 1650, 1276, 198, 198, 198, 198, 208, 208, 198, 140, 140, 140, 140, 140, 140, 15, 75, 2, -18, '', 0, 31, 0, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 4), 44, 44, 3646, 0, 1716, 1298, 203, 203, 203, 203, 210, 210, 203, 154, 154, 154, 154, 154, 154, 15, 78, 2, -18, '', 0, 33, 0, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 5), 44, 44, 3866, 0, 1782, 1320, 208, 208, 208, 208, 212, 212, 208, 168, 168, 168, 168, 168, 168, 16, 81, 2, -18, '', 0, 35, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 1), 44, 44, 4526, 0, 1870, 1342, 215, 215, 215, 215, 224, 224, 215, 158, 158, 158, 158, 158, 158, 15, 77, 2, -18, '', 0, 37, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 2), 44, 44, 4746, 0, 1936, 1364, 220, 220, 220, 220, 226, 226, 220, 172, 172, 172, 172, 172, 172, 15, 80, 2, -18, '', 0, 39, 0, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 3), 44, 44, 4966, 0, 2002, 1386, 225, 225, 225, 225, 228, 228, 225, 186, 186, 186, 186, 186, 186, 16, 82, 2, -18, '', 0, 41, 0, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 4), 44, 44, 5186, 0, 2068, 1408, 230, 230, 230, 230, 230, 230, 230, 200, 200, 200, 200, 200, 200, 16, 85, 2, -18, '', 0, 43, 0, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 5), 44, 44, 5406, 0, 2134, 1430, 235, 235, 235, 235, 232, 232, 235, 214, 214, 214, 214, 214, 214, 17, 88, 2, -18, '', 0, 45, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 1), 44, 44, 2464, 2781, 1188, 740, 170, 170, 170, 170, 257, 257, 170, 112, 112, 112, 112, 112, 112, 12, 69, 1, -18, '', 0, 19, 13, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 2), 44, 44, 2596, 2913, 1232, 755, 175, 175, 175, 175, 260, 260, 175, 126, 126, 126, 126, 126, 126, 12, 70, 1, -18, '', 0, 20, 14, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 3), 44, 44, 2728, 3045, 1276, 770, 180, 180, 180, 180, 263, 263, 180, 140, 140, 140, 140, 140, 140, 12, 71, 1, -18, '', 0, 21, 15, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 4), 44, 44, 2860, 3177, 1320, 784, 185, 185, 185, 185, 266, 266, 185, 154, 154, 154, 154, 154, 154, 13, 73, 1, -18, '', 0, 22, 16, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 5), 44, 44, 2992, 3309, 1364, 799, 190, 190, 190, 190, 269, 269, 190, 168, 168, 168, 168, 168, 168, 13, 74, 1, -18, '', 0, 23, 17, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 1), 44, 44, 3784, 3881, 1452, 806, 197, 197, 197, 197, 282, 282, 197, 158, 158, 158, 158, 158, 158, 13, 73, 1, -18, '', 0, 25, 16, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 2), 44, 44, 3916, 4013, 1496, 821, 202, 202, 202, 202, 285, 285, 202, 172, 172, 172, 172, 172, 172, 13, 74, 1, -18, '', 0, 26, 17, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 3), 44, 44, 4048, 4145, 1540, 836, 207, 207, 207, 207, 288, 288, 207, 186, 186, 186, 186, 186, 186, 13, 76, 1, -18, '', 0, 27, 18, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 4), 44, 44, 4180, 4277, 1584, 850, 212, 212, 212, 212, 291, 291, 212, 200, 200, 200, 200, 200, 200, 13, 77, 1, -18, '', 0, 28, 19, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 5), 44, 44, 4312, 4409, 1628, 865, 217, 217, 217, 217, 294, 294, 217, 214, 214, 214, 214, 214, 214, 14, 78, 1, -18, '', 0, 29, 20, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 1), 44, 44, 2570, 0, 902, 1254, 188, 188, 188, 188, 204, 204, 188, 112, 112, 112, 112, 112, 112, 14, 65, 2, -18, '', 0, 25, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 2), 44, 44, 2746, 0, 924, 1276, 193, 193, 193, 193, 206, 206, 193, 126, 126, 126, 126, 126, 126, 14, 67, 2, -18, '', 0, 27, 0, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 3), 44, 44, 2922, 0, 946, 1298, 198, 198, 198, 198, 208, 208, 198, 140, 140, 140, 140, 140, 140, 15, 70, 2, -18, '', 0, 29, 0, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 4), 44, 44, 3098, 0, 968, 1320, 203, 203, 203, 203, 210, 210, 203, 154, 154, 154, 154, 154, 154, 15, 72, 2, -18, '', 0, 31, 0, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 5), 44, 44, 3274, 0, 990, 1342, 208, 208, 208, 208, 212, 212, 208, 168, 168, 168, 168, 168, 168, 16, 75, 2, -18, '', 0, 33, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 1), 44, 44, 3890, 0, 1122, 1386, 215, 215, 215, 215, 224, 224, 215, 158, 158, 158, 158, 158, 158, 15, 71, 2, -18, '', 0, 33, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 2), 44, 44, 4066, 0, 1144, 1408, 220, 220, 220, 220, 226, 226, 220, 172, 172, 172, 172, 172, 172, 15, 74, 2, -18, '', 0, 35, 0, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 3), 44, 44, 4242, 0, 1166, 1430, 225, 225, 225, 225, 228, 228, 225, 186, 186, 186, 186, 186, 186, 16, 76, 2, -18, '', 0, 37, 0, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 4), 44, 44, 4418, 0, 1188, 1452, 230, 230, 230, 230, 230, 230, 230, 200, 200, 200, 200, 200, 200, 16, 79, 2, -18, '', 0, 39, 0, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 5), 44, 44, 4594, 0, 1210, 1474, 235, 235, 235, 235, 232, 232, 235, 214, 214, 214, 214, 214, 214, 17, 82, 2, -18, '', 0, 41, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 1), 44, 44, 2144, 2781, 586, 363, 166, 166, 166, 166, 257, 257, 166, 112, 112, 112, 112, 112, 112, 12, 69, 1, -18, '', 0, 18, 13, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 2), 44, 44, 2232, 2913, 601, 374, 171, 171, 171, 171, 260, 260, 171, 126, 126, 126, 126, 126, 126, 12, 70, 1, -18, '', 0, 19, 14, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 3), 44, 44, 2320, 3045, 616, 385, 176, 176, 176, 176, 263, 263, 176, 140, 140, 140, 140, 140, 140, 12, 71, 1, -18, '', 0, 20, 15, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 4), 44, 44, 2408, 3177, 630, 396, 181, 181, 181, 181, 266, 266, 181, 154, 154, 154, 154, 154, 154, 13, 73, 1, -18, '', 0, 21, 16, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 5), 44, 44, 2496, 3309, 645, 407, 186, 186, 186, 186, 269, 269, 186, 168, 168, 168, 168, 168, 168, 13, 74, 1, -18, '', 0, 22, 17, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 1), 44, 44, 3244, 3881, 718, 407, 193, 193, 193, 193, 282, 282, 193, 158, 158, 158, 158, 158, 158, 13, 73, 1, -18, '', 0, 23, 16, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 2), 44, 44, 3332, 4013, 733, 418, 198, 198, 198, 198, 285, 285, 198, 172, 172, 172, 172, 172, 172, 13, 74, 1, -18, '', 0, 24, 17, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 3), 44, 44, 3420, 4145, 748, 429, 203, 203, 203, 203, 288, 288, 203, 186, 186, 186, 186, 186, 186, 13, 76, 1, -18, '', 0, 25, 18, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 4), 44, 44, 3508, 4277, 762, 440, 208, 208, 208, 208, 291, 291, 208, 200, 200, 200, 200, 200, 200, 13, 77, 1, -18, '', 0, 26, 19, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 5), 44, 44, 3596, 4409, 777, 451, 213, 213, 213, 213, 294, 294, 213, 214, 214, 214, 214, 214, 214, 14, 78, 1, -18, '', 0, 27, 20, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 1), 45, 45, 3111, 0, 1553, 1260, 193, 193, 193, 193, 207, 207, 193, 114, 114, 114, 114, 114, 114, 14, 71, 2, -18, '', 0, 28, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 2), 45, 45, 3336, 0, 1620, 1283, 198, 198, 198, 198, 209, 209, 198, 128, 128, 128, 128, 128, 128, 14, 74, 2, -18, '', 0, 30, 0, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 3), 45, 45, 3561, 0, 1688, 1305, 203, 203, 203, 203, 211, 211, 203, 142, 142, 142, 142, 142, 142, 15, 77, 2, -18, '', 0, 32, 0, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 4), 45, 45, 3786, 0, 1755, 1328, 208, 208, 208, 208, 213, 213, 208, 156, 156, 156, 156, 156, 156, 15, 80, 2, -18, '', 0, 34, 0, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 5), 45, 45, 4011, 0, 1823, 1350, 213, 213, 213, 213, 215, 215, 213, 170, 170, 170, 170, 170, 170, 16, 82, 2, -18, '', 0, 36, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 1), 45, 45, 4686, 0, 1913, 1372, 220, 220, 220, 220, 227, 227, 220, 160, 160, 160, 160, 160, 160, 15, 78, 2, -18, '', 0, 38, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 2), 45, 45, 4911, 0, 1980, 1395, 225, 225, 225, 225, 229, 229, 225, 174, 174, 174, 174, 174, 174, 16, 81, 2, -18, '', 0, 40, 0, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 3), 45, 45, 5136, 0, 2048, 1417, 230, 230, 230, 230, 231, 231, 230, 188, 188, 188, 188, 188, 188, 16, 84, 2, -18, '', 0, 42, 0, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 4), 45, 45, 5361, 0, 2115, 1440, 235, 235, 235, 235, 233, 233, 235, 202, 202, 202, 202, 202, 202, 17, 87, 2, -18, '', 0, 44, 0, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 5), 45, 45, 5586, 0, 2183, 1462, 240, 240, 240, 240, 235, 235, 240, 216, 216, 216, 216, 216, 216, 17, 89, 2, -18, '', 0, 46, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 1), 45, 45, 2567, 2880, 1215, 758, 174, 174, 174, 174, 260, 260, 174, 114, 114, 114, 114, 114, 114, 12, 70, 1, -18, '', 0, 19, 14, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 2), 45, 45, 2702, 3015, 1260, 773, 179, 179, 179, 179, 263, 263, 179, 128, 128, 128, 128, 128, 128, 12, 71, 1, -18, '', 0, 20, 15, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 3), 45, 45, 2837, 3150, 1305, 788, 184, 184, 184, 184, 266, 266, 184, 142, 142, 142, 142, 142, 142, 13, 73, 1, -18, '', 0, 21, 16, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 4), 45, 45, 2972, 3285, 1350, 803, 189, 189, 189, 189, 269, 269, 189, 156, 156, 156, 156, 156, 156, 13, 74, 1, -18, '', 0, 22, 17, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 5), 45, 45, 3107, 3420, 1395, 818, 194, 194, 194, 194, 272, 272, 194, 170, 170, 170, 170, 170, 170, 13, 76, 1, -18, '', 0, 23, 18, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 1), 45, 45, 3917, 4005, 1485, 825, 201, 201, 201, 201, 285, 285, 201, 160, 160, 160, 160, 160, 160, 13, 74, 1, -18, '', 0, 25, 17, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 2), 45, 45, 4052, 4140, 1530, 840, 206, 206, 206, 206, 288, 288, 206, 174, 174, 174, 174, 174, 174, 13, 76, 1, -18, '', 0, 26, 18, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 3), 45, 45, 4187, 4275, 1575, 855, 211, 211, 211, 211, 291, 291, 211, 188, 188, 188, 188, 188, 188, 13, 77, 1, -18, '', 0, 27, 19, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 4), 45, 45, 4322, 4410, 1620, 870, 216, 216, 216, 216, 294, 294, 216, 202, 202, 202, 202, 202, 202, 14, 78, 1, -18, '', 0, 28, 20, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 5), 45, 45, 4457, 4545, 1665, 885, 221, 221, 221, 221, 297, 297, 221, 216, 216, 216, 216, 216, 216, 14, 80, 1, -18, '', 0, 29, 21, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 1), 45, 45, 2679, 0, 922, 1282, 193, 193, 193, 193, 207, 207, 193, 114, 114, 114, 114, 114, 114, 14, 66, 2, -18, '', 0, 26, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 2), 45, 45, 2859, 0, 945, 1305, 198, 198, 198, 198, 209, 209, 198, 128, 128, 128, 128, 128, 128, 14, 69, 2, -18, '', 0, 28, 0, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 3), 45, 45, 3039, 0, 967, 1327, 203, 203, 203, 203, 211, 211, 203, 142, 142, 142, 142, 142, 142, 15, 71, 2, -18, '', 0, 30, 0, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 4), 45, 45, 3219, 0, 990, 1350, 208, 208, 208, 208, 213, 213, 208, 156, 156, 156, 156, 156, 156, 15, 74, 2, -18, '', 0, 32, 0, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 5), 45, 45, 3399, 0, 1012, 1372, 213, 213, 213, 213, 215, 215, 213, 170, 170, 170, 170, 170, 170, 16, 76, 2, -18, '', 0, 34, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 1), 45, 45, 4029, 0, 1147, 1417, 220, 220, 220, 220, 227, 227, 220, 160, 160, 160, 160, 160, 160, 15, 72, 2, -18, '', 0, 34, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 2), 45, 45, 4209, 0, 1170, 1440, 225, 225, 225, 225, 229, 229, 225, 174, 174, 174, 174, 174, 174, 16, 75, 2, -18, '', 0, 36, 0, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 3), 45, 45, 4389, 0, 1192, 1462, 230, 230, 230, 230, 231, 231, 230, 188, 188, 188, 188, 188, 188, 16, 78, 2, -18, '', 0, 38, 0, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 4), 45, 45, 4569, 0, 1215, 1485, 235, 235, 235, 235, 233, 233, 235, 202, 202, 202, 202, 202, 202, 17, 80, 2, -18, '', 0, 40, 0, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 5), 45, 45, 4749, 0, 1237, 1507, 240, 240, 240, 240, 235, 235, 240, 216, 216, 216, 216, 216, 216, 17, 83, 2, -18, '', 0, 42, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 1), 45, 45, 2237, 2880, 600, 371, 170, 170, 170, 170, 260, 260, 170, 114, 114, 114, 114, 114, 114, 12, 70, 1, -18, '', 0, 18, 14, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 2), 45, 45, 2327, 3015, 615, 382, 175, 175, 175, 175, 263, 263, 175, 128, 128, 128, 128, 128, 128, 12, 71, 1, -18, '', 0, 19, 15, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 3), 45, 45, 2417, 3150, 630, 393, 180, 180, 180, 180, 266, 266, 180, 142, 142, 142, 142, 142, 142, 13, 73, 1, -18, '', 0, 20, 16, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 4), 45, 45, 2507, 3285, 645, 405, 185, 185, 185, 185, 269, 269, 185, 156, 156, 156, 156, 156, 156, 13, 74, 1, -18, '', 0, 21, 17, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 5), 45, 45, 2597, 3420, 660, 416, 190, 190, 190, 190, 272, 272, 190, 170, 170, 170, 170, 170, 170, 13, 76, 1, -18, '', 0, 22, 18, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 1), 45, 45, 3362, 4005, 735, 416, 197, 197, 197, 197, 285, 285, 197, 160, 160, 160, 160, 160, 160, 13, 74, 1, -18, '', 0, 23, 17, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 2), 45, 45, 3452, 4140, 750, 427, 202, 202, 202, 202, 288, 288, 202, 174, 174, 174, 174, 174, 174, 13, 76, 1, -18, '', 0, 24, 18, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 3), 45, 45, 3542, 4275, 765, 438, 207, 207, 207, 207, 291, 291, 207, 188, 188, 188, 188, 188, 188, 13, 77, 1, -18, '', 0, 25, 19, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 4), 45, 45, 3632, 4410, 780, 450, 212, 212, 212, 212, 294, 294, 212, 202, 202, 202, 202, 202, 202, 14, 78, 1, -18, '', 0, 26, 20, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 5), 45, 45, 3722, 4545, 795, 461, 217, 217, 217, 217, 297, 297, 217, 216, 216, 216, 216, 216, 216, 14, 80, 1, -18, '', 0, 27, 21, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 1), 46, 46, 3240, 0, 1587, 1288, 198, 198, 198, 198, 210, 210, 198, 116, 116, 116, 116, 116, 116, 14, 73, 2, -18, '', 0, 28, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 2), 46, 46, 3470, 0, 1656, 1311, 203, 203, 203, 203, 212, 212, 203, 130, 130, 130, 130, 130, 130, 15, 75, 2, -18, '', 0, 30, 0, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 3), 46, 46, 3700, 0, 1725, 1334, 208, 208, 208, 208, 214, 214, 208, 144, 144, 144, 144, 144, 144, 15, 78, 2, -18, '', 0, 32, 0, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 4), 46, 46, 3930, 0, 1794, 1357, 213, 213, 213, 213, 216, 216, 213, 158, 158, 158, 158, 158, 158, 16, 81, 2, -18, '', 0, 34, 0, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 5), 46, 46, 4160, 0, 1863, 1380, 218, 218, 218, 218, 218, 218, 218, 172, 172, 172, 172, 172, 172, 16, 84, 2, -18, '', 0, 36, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 1), 46, 46, 4850, 0, 1955, 1403, 226, 226, 226, 226, 230, 230, 226, 162, 162, 162, 162, 162, 162, 15, 80, 2, -18, '', 0, 38, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 2), 46, 46, 5080, 0, 2024, 1426, 231, 231, 231, 231, 232, 232, 231, 176, 176, 176, 176, 176, 176, 16, 82, 2, -18, '', 0, 40, 0, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 3), 46, 46, 5310, 0, 2093, 1449, 236, 236, 236, 236, 234, 234, 236, 190, 190, 190, 190, 190, 190, 16, 85, 2, -18, '', 0, 42, 0, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 4), 46, 46, 5540, 0, 2162, 1472, 241, 241, 241, 241, 236, 236, 241, 204, 204, 204, 204, 204, 204, 17, 88, 2, -18, '', 0, 44, 0, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 5), 46, 46, 5770, 0, 2231, 1495, 246, 246, 246, 246, 238, 238, 246, 218, 218, 218, 218, 218, 218, 17, 91, 2, -18, '', 0, 46, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 1), 46, 46, 2673, 2981, 1242, 774, 179, 179, 179, 179, 264, 264, 179, 116, 116, 116, 116, 116, 116, 12, 71, 1, -18, '', 0, 19, 14, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 2), 46, 46, 2811, 3119, 1288, 789, 184, 184, 184, 184, 267, 267, 184, 130, 130, 130, 130, 130, 130, 13, 73, 1, -18, '', 0, 20, 15, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 3), 46, 46, 2949, 3257, 1334, 805, 189, 189, 189, 189, 270, 270, 189, 144, 144, 144, 144, 144, 144, 13, 74, 1, -18, '', 0, 21, 16, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 4), 46, 46, 3087, 3395, 1380, 820, 194, 194, 194, 194, 273, 273, 194, 158, 158, 158, 158, 158, 158, 13, 76, 1, -18, '', 0, 22, 17, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 5), 46, 46, 3225, 3533, 1426, 835, 199, 199, 199, 199, 276, 276, 199, 172, 172, 172, 172, 172, 172, 13, 77, 1, -18, '', 0, 23, 18, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 1), 46, 46, 4053, 4131, 1518, 843, 207, 207, 207, 207, 289, 289, 207, 162, 162, 162, 162, 162, 162, 13, 76, 1, -18, '', 0, 25, 17, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 2), 46, 46, 4191, 4269, 1564, 858, 212, 212, 212, 212, 292, 292, 212, 176, 176, 176, 176, 176, 176, 13, 77, 1, -18, '', 0, 26, 18, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 3), 46, 46, 4329, 4407, 1610, 874, 217, 217, 217, 217, 295, 295, 217, 190, 190, 190, 190, 190, 190, 14, 78, 1, -18, '', 0, 27, 19, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 4), 46, 46, 4467, 4545, 1656, 889, 222, 222, 222, 222, 298, 298, 222, 204, 204, 204, 204, 204, 204, 14, 80, 1, -18, '', 0, 28, 20, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 5), 46, 46, 4605, 4683, 1702, 904, 227, 227, 227, 227, 301, 301, 227, 218, 218, 218, 218, 218, 218, 14, 81, 1, -18, '', 0, 29, 21, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 1), 46, 46, 2790, 0, 943, 1311, 198, 198, 198, 198, 210, 210, 198, 116, 116, 116, 116, 116, 116, 14, 67, 2, -18, '', 0, 26, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 2), 46, 46, 2974, 0, 966, 1334, 203, 203, 203, 203, 212, 212, 203, 130, 130, 130, 130, 130, 130, 15, 70, 2, -18, '', 0, 28, 0, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 3), 46, 46, 3158, 0, 989, 1357, 208, 208, 208, 208, 214, 214, 208, 144, 144, 144, 144, 144, 144, 15, 72, 2, -18, '', 0, 30, 0, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 4), 46, 46, 3342, 0, 1012, 1380, 213, 213, 213, 213, 216, 216, 213, 158, 158, 158, 158, 158, 158, 16, 75, 2, -18, '', 0, 32, 0, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 5), 46, 46, 3526, 0, 1035, 1403, 218, 218, 218, 218, 218, 218, 218, 172, 172, 172, 172, 172, 172, 16, 78, 2, -18, '', 0, 34, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 1), 46, 46, 4170, 0, 1173, 1449, 226, 226, 226, 226, 230, 230, 226, 162, 162, 162, 162, 162, 162, 15, 74, 2, -18, '', 0, 34, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 2), 46, 46, 4354, 0, 1196, 1472, 231, 231, 231, 231, 232, 232, 231, 176, 176, 176, 176, 176, 176, 16, 76, 2, -18, '', 0, 36, 0, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 3), 46, 46, 4538, 0, 1219, 1495, 236, 236, 236, 236, 234, 234, 236, 190, 190, 190, 190, 190, 190, 16, 79, 2, -18, '', 0, 38, 0, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 4), 46, 46, 4722, 0, 1242, 1518, 241, 241, 241, 241, 236, 236, 241, 204, 204, 204, 204, 204, 204, 17, 82, 2, -18, '', 0, 40, 0, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 5), 46, 46, 4906, 0, 1265, 1541, 246, 246, 246, 246, 238, 238, 246, 218, 218, 218, 218, 218, 218, 17, 84, 2, -18, '', 0, 42, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 1), 46, 46, 2333, 2981, 613, 379, 175, 175, 175, 175, 264, 264, 175, 116, 116, 116, 116, 116, 116, 12, 71, 1, -18, '', 0, 18, 14, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 2), 46, 46, 2425, 3119, 628, 391, 180, 180, 180, 180, 267, 267, 180, 130, 130, 130, 130, 130, 130, 13, 73, 1, -18, '', 0, 19, 15, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 3), 46, 46, 2517, 3257, 644, 402, 185, 185, 185, 185, 270, 270, 185, 144, 144, 144, 144, 144, 144, 13, 74, 1, -18, '', 0, 20, 16, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 4), 46, 46, 2609, 3395, 659, 414, 190, 190, 190, 190, 273, 273, 190, 158, 158, 158, 158, 158, 158, 13, 76, 1, -18, '', 0, 21, 17, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 5), 46, 46, 2701, 3533, 674, 425, 195, 195, 195, 195, 276, 276, 195, 172, 172, 172, 172, 172, 172, 13, 77, 1, -18, '', 0, 22, 18, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 1), 46, 46, 3483, 4131, 751, 425, 203, 203, 203, 203, 289, 289, 203, 162, 162, 162, 162, 162, 162, 13, 76, 1, -18, '', 0, 23, 17, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 2), 46, 46, 3575, 4269, 766, 437, 208, 208, 208, 208, 292, 292, 208, 176, 176, 176, 176, 176, 176, 13, 77, 1, -18, '', 0, 24, 18, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 3), 46, 46, 3667, 4407, 782, 448, 213, 213, 213, 213, 295, 295, 213, 190, 190, 190, 190, 190, 190, 14, 78, 1, -18, '', 0, 25, 19, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 4), 46, 46, 3759, 4545, 797, 460, 218, 218, 218, 218, 298, 298, 218, 204, 204, 204, 204, 204, 204, 14, 80, 1, -18, '', 0, 26, 20, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 5), 46, 46, 3851, 4683, 812, 471, 223, 223, 223, 223, 301, 301, 223, 218, 218, 218, 218, 218, 218, 14, 81, 1, -18, '', 0, 27, 21, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 1), 47, 47, 3373, 0, 1622, 1316, 203, 203, 203, 203, 213, 213, 203, 118, 118, 118, 118, 118, 118, 14, 74, 3, -18, '', 0, 28, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 2), 47, 47, 3608, 0, 1692, 1340, 208, 208, 208, 208, 215, 215, 208, 132, 132, 132, 132, 132, 132, 15, 77, 3, -18, '', 0, 30, 0, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 3), 47, 47, 3843, 0, 1763, 1363, 213, 213, 213, 213, 217, 217, 213, 146, 146, 146, 146, 146, 146, 15, 80, 3, -18, '', 0, 32, 0, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 4), 47, 47, 4078, 0, 1833, 1387, 218, 218, 218, 218, 219, 219, 218, 160, 160, 160, 160, 160, 160, 16, 82, 3, -18, '', 0, 34, 0, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 5), 47, 47, 4313, 0, 1904, 1410, 223, 223, 223, 223, 221, 221, 223, 174, 174, 174, 174, 174, 174, 16, 85, 3, -18, '', 0, 36, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 1), 47, 47, 5018, 0, 1998, 1433, 231, 231, 231, 231, 233, 233, 231, 166, 166, 166, 166, 166, 166, 16, 81, 3, -18, '', 0, 38, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 2), 47, 47, 5253, 0, 2068, 1457, 236, 236, 236, 236, 235, 235, 236, 180, 180, 180, 180, 180, 180, 16, 84, 3, -18, '', 0, 40, 0, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 3), 47, 47, 5488, 0, 2139, 1480, 241, 241, 241, 241, 237, 237, 241, 194, 194, 194, 194, 194, 194, 17, 87, 3, -18, '', 0, 42, 0, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 4), 47, 47, 5723, 0, 2209, 1504, 246, 246, 246, 246, 239, 239, 246, 208, 208, 208, 208, 208, 208, 17, 89, 3, -18, '', 0, 44, 0, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 5), 47, 47, 5958, 0, 2280, 1527, 251, 251, 251, 251, 241, 241, 251, 222, 222, 222, 222, 222, 222, 18, 92, 3, -18, '', 0, 46, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 1), 47, 47, 2782, 3083, 1269, 791, 183, 183, 183, 183, 267, 267, 183, 118, 118, 118, 118, 118, 118, 13, 73, 1, -18, '', 0, 19, 14, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 2), 47, 47, 2923, 3224, 1316, 807, 188, 188, 188, 188, 270, 270, 188, 132, 132, 132, 132, 132, 132, 13, 74, 1, -18, '', 0, 20, 15, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 3), 47, 47, 3064, 3365, 1363, 823, 193, 193, 193, 193, 273, 273, 193, 146, 146, 146, 146, 146, 146, 13, 76, 1, -18, '', 0, 21, 16, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 4), 47, 47, 3205, 3506, 1410, 838, 198, 198, 198, 198, 276, 276, 198, 160, 160, 160, 160, 160, 160, 13, 77, 1, -18, '', 0, 22, 17, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 5), 47, 47, 3346, 3647, 1457, 854, 203, 203, 203, 203, 279, 279, 203, 174, 174, 174, 174, 174, 174, 14, 78, 1, -18, '', 0, 23, 18, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 1), 47, 47, 4192, 4258, 1551, 861, 211, 211, 211, 211, 292, 292, 211, 166, 166, 166, 166, 166, 166, 13, 77, 1, -18, '', 0, 25, 17, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 2), 47, 47, 4333, 4399, 1598, 877, 216, 216, 216, 216, 295, 295, 216, 180, 180, 180, 180, 180, 180, 14, 78, 1, -18, '', 0, 26, 18, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 3), 47, 47, 4474, 4540, 1645, 893, 221, 221, 221, 221, 298, 298, 221, 194, 194, 194, 194, 194, 194, 14, 80, 1, -18, '', 0, 27, 19, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 4), 47, 47, 4615, 4681, 1692, 908, 226, 226, 226, 226, 301, 301, 226, 208, 208, 208, 208, 208, 208, 14, 81, 1, -18, '', 0, 28, 20, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 5), 47, 47, 4756, 4822, 1739, 924, 231, 231, 231, 231, 304, 304, 231, 222, 222, 222, 222, 222, 222, 14, 83, 1, -18, '', 0, 29, 21, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 1), 47, 47, 2905, 0, 963, 1339, 203, 203, 203, 203, 213, 213, 203, 118, 118, 118, 118, 118, 118, 14, 69, 3, -18, '', 0, 26, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 2), 47, 47, 3093, 0, 987, 1363, 208, 208, 208, 208, 215, 215, 208, 132, 132, 132, 132, 132, 132, 15, 71, 3, -18, '', 0, 28, 0, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 3), 47, 47, 3281, 0, 1010, 1386, 213, 213, 213, 213, 217, 217, 213, 146, 146, 146, 146, 146, 146, 15, 74, 3, -18, '', 0, 30, 0, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 4), 47, 47, 3469, 0, 1034, 1410, 218, 218, 218, 218, 219, 219, 218, 160, 160, 160, 160, 160, 160, 16, 76, 3, -18, '', 0, 32, 0, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 5), 47, 47, 3657, 0, 1057, 1433, 223, 223, 223, 223, 221, 221, 223, 174, 174, 174, 174, 174, 174, 16, 79, 3, -18, '', 0, 34, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 1), 47, 47, 4315, 0, 1198, 1480, 231, 231, 231, 231, 233, 233, 231, 166, 166, 166, 166, 166, 166, 16, 75, 3, -18, '', 0, 34, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 2), 47, 47, 4503, 0, 1222, 1504, 236, 236, 236, 236, 235, 235, 236, 180, 180, 180, 180, 180, 180, 16, 78, 3, -18, '', 0, 36, 0, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 3), 47, 47, 4691, 0, 1245, 1527, 241, 241, 241, 241, 237, 237, 241, 194, 194, 194, 194, 194, 194, 17, 80, 3, -18, '', 0, 38, 0, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 4), 47, 47, 4879, 0, 1269, 1551, 246, 246, 246, 246, 239, 239, 246, 208, 208, 208, 208, 208, 208, 17, 83, 3, -18, '', 0, 40, 0, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 5), 47, 47, 5067, 0, 1292, 1574, 251, 251, 251, 251, 241, 241, 251, 222, 222, 222, 222, 222, 222, 18, 85, 3, -18, '', 0, 42, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 1), 47, 47, 2432, 3083, 626, 387, 179, 179, 179, 179, 267, 267, 179, 118, 118, 118, 118, 118, 118, 13, 73, 1, -18, '', 0, 18, 14, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 2), 47, 47, 2526, 3224, 642, 399, 184, 184, 184, 184, 270, 270, 184, 132, 132, 132, 132, 132, 132, 13, 74, 1, -18, '', 0, 19, 15, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 3), 47, 47, 2620, 3365, 658, 411, 189, 189, 189, 189, 273, 273, 189, 146, 146, 146, 146, 146, 146, 13, 76, 1, -18, '', 0, 20, 16, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 4), 47, 47, 2714, 3506, 673, 423, 194, 194, 194, 194, 276, 276, 194, 160, 160, 160, 160, 160, 160, 13, 77, 1, -18, '', 0, 21, 17, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 5), 47, 47, 2808, 3647, 689, 434, 199, 199, 199, 199, 279, 279, 199, 174, 174, 174, 174, 174, 174, 14, 78, 1, -18, '', 0, 22, 18, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 1), 47, 47, 3607, 4258, 767, 434, 207, 207, 207, 207, 292, 292, 207, 166, 166, 166, 166, 166, 166, 13, 77, 1, -18, '', 0, 23, 17, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 2), 47, 47, 3701, 4399, 783, 446, 212, 212, 212, 212, 295, 295, 212, 180, 180, 180, 180, 180, 180, 14, 78, 1, -18, '', 0, 24, 18, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 3), 47, 47, 3795, 4540, 799, 458, 217, 217, 217, 217, 298, 298, 217, 194, 194, 194, 194, 194, 194, 14, 80, 1, -18, '', 0, 25, 19, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 4), 47, 47, 3889, 4681, 814, 470, 222, 222, 222, 222, 301, 301, 222, 208, 208, 208, 208, 208, 208, 14, 81, 1, -18, '', 0, 26, 20, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 5), 47, 47, 3983, 4822, 830, 481, 227, 227, 227, 227, 304, 304, 227, 222, 222, 222, 222, 222, 222, 14, 83, 1, -18, '', 0, 27, 21, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 1), 48, 48, 3509, 0, 1656, 1344, 209, 209, 209, 209, 216, 216, 209, 121, 121, 121, 121, 121, 121, 15, 75, 3, -18, '', 0, 29, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 2), 48, 48, 3749, 0, 1728, 1368, 214, 214, 214, 214, 218, 218, 214, 136, 136, 136, 136, 136, 136, 15, 78, 3, -18, '', 0, 31, 0, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 3), 48, 48, 3989, 0, 1800, 1392, 219, 219, 219, 219, 220, 220, 219, 151, 151, 151, 151, 151, 151, 16, 81, 3, -18, '', 0, 33, 0, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 4), 48, 48, 4229, 0, 1872, 1416, 224, 224, 224, 224, 222, 222, 224, 166, 166, 166, 166, 166, 166, 16, 84, 3, -18, '', 0, 35, 0, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 5), 48, 48, 4469, 0, 1944, 1440, 229, 229, 229, 229, 224, 224, 229, 181, 181, 181, 181, 181, 181, 17, 87, 3, -18, '', 0, 37, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 1), 48, 48, 5189, 0, 2040, 1464, 238, 238, 238, 238, 236, 236, 238, 169, 169, 169, 169, 169, 169, 16, 82, 3, -18, '', 0, 39, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 2), 48, 48, 5429, 0, 2112, 1488, 243, 243, 243, 243, 238, 238, 243, 184, 184, 184, 184, 184, 184, 16, 85, 3, -18, '', 0, 41, 0, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 3), 48, 48, 5669, 0, 2184, 1512, 248, 248, 248, 248, 240, 240, 248, 199, 199, 199, 199, 199, 199, 17, 88, 3, -18, '', 0, 43, 0, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 4), 48, 48, 5909, 0, 2256, 1536, 253, 253, 253, 253, 242, 242, 253, 214, 214, 214, 214, 214, 214, 17, 91, 3, -18, '', 0, 45, 0, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 5), 48, 48, 6149, 0, 2328, 1560, 258, 258, 258, 258, 244, 244, 258, 229, 229, 229, 229, 229, 229, 18, 94, 3, -18, '', 0, 47, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 1), 48, 48, 2895, 3187, 1296, 808, 188, 188, 188, 188, 271, 271, 188, 121, 121, 121, 121, 121, 121, 13, 74, 1, -18, '', 0, 20, 14, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 2), 48, 48, 3039, 3331, 1344, 824, 193, 193, 193, 193, 274, 274, 193, 136, 136, 136, 136, 136, 136, 13, 76, 1, -18, '', 0, 21, 15, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 3), 48, 48, 3183, 3475, 1392, 840, 198, 198, 198, 198, 277, 277, 198, 151, 151, 151, 151, 151, 151, 13, 77, 1, -18, '', 0, 22, 16, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 4), 48, 48, 3327, 3619, 1440, 856, 203, 203, 203, 203, 280, 280, 203, 166, 166, 166, 166, 166, 166, 14, 78, 1, -18, '', 0, 23, 17, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 5), 48, 48, 3471, 3763, 1488, 872, 208, 208, 208, 208, 283, 283, 208, 181, 181, 181, 181, 181, 181, 14, 80, 1, -18, '', 0, 24, 18, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 1), 48, 48, 4335, 4387, 1584, 880, 217, 217, 217, 217, 296, 296, 217, 169, 169, 169, 169, 169, 169, 14, 78, 1, -18, '', 0, 26, 17, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 2), 48, 48, 4479, 4531, 1632, 896, 222, 222, 222, 222, 299, 299, 222, 184, 184, 184, 184, 184, 184, 14, 80, 1, -18, '', 0, 27, 18, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 3), 48, 48, 4623, 4675, 1680, 912, 227, 227, 227, 227, 302, 302, 227, 199, 199, 199, 199, 199, 199, 14, 81, 1, -18, '', 0, 28, 19, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 4), 48, 48, 4767, 4819, 1728, 928, 232, 232, 232, 232, 305, 305, 232, 214, 214, 214, 214, 214, 214, 14, 83, 1, -18, '', 0, 29, 20, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 5), 48, 48, 4911, 4963, 1776, 944, 237, 237, 237, 237, 308, 308, 237, 229, 229, 229, 229, 229, 229, 15, 84, 1, -18, '', 0, 30, 21, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 1), 48, 48, 3024, 0, 984, 1368, 209, 209, 209, 209, 216, 216, 209, 121, 121, 121, 121, 121, 121, 15, 70, 3, -18, '', 0, 27, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 2), 48, 48, 3216, 0, 1008, 1392, 214, 214, 214, 214, 218, 218, 214, 136, 136, 136, 136, 136, 136, 15, 72, 3, -18, '', 0, 29, 0, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 3), 48, 48, 3408, 0, 1032, 1416, 219, 219, 219, 219, 220, 220, 219, 151, 151, 151, 151, 151, 151, 16, 75, 3, -18, '', 0, 31, 0, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 4), 48, 48, 3600, 0, 1056, 1440, 224, 224, 224, 224, 222, 222, 224, 166, 166, 166, 166, 166, 166, 16, 78, 3, -18, '', 0, 33, 0, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 5), 48, 48, 3792, 0, 1080, 1464, 229, 229, 229, 229, 224, 224, 229, 181, 181, 181, 181, 181, 181, 17, 80, 3, -18, '', 0, 35, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 1), 48, 48, 4464, 0, 1224, 1512, 238, 238, 238, 238, 236, 236, 238, 169, 169, 169, 169, 169, 169, 16, 76, 3, -18, '', 0, 35, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 2), 48, 48, 4656, 0, 1248, 1536, 243, 243, 243, 243, 238, 238, 243, 184, 184, 184, 184, 184, 184, 16, 79, 3, -18, '', 0, 37, 0, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 3), 48, 48, 4848, 0, 1272, 1560, 248, 248, 248, 248, 240, 240, 248, 199, 199, 199, 199, 199, 199, 17, 82, 3, -18, '', 0, 39, 0, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 4), 48, 48, 5040, 0, 1296, 1584, 253, 253, 253, 253, 242, 242, 253, 214, 214, 214, 214, 214, 214, 17, 84, 3, -18, '', 0, 41, 0, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 5), 48, 48, 5232, 0, 1320, 1608, 258, 258, 258, 258, 244, 244, 258, 229, 229, 229, 229, 229, 229, 18, 87, 3, -18, '', 0, 43, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 1), 48, 48, 2534, 3187, 640, 396, 184, 184, 184, 184, 271, 271, 184, 121, 121, 121, 121, 121, 121, 13, 74, 1, -18, '', 0, 19, 14, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 2), 48, 48, 2630, 3331, 656, 408, 189, 189, 189, 189, 274, 274, 189, 136, 136, 136, 136, 136, 136, 13, 76, 1, -18, '', 0, 20, 15, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 3), 48, 48, 2726, 3475, 672, 420, 194, 194, 194, 194, 277, 277, 194, 151, 151, 151, 151, 151, 151, 13, 77, 1, -18, '', 0, 21, 16, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 4), 48, 48, 2822, 3619, 688, 432, 199, 199, 199, 199, 280, 280, 199, 166, 166, 166, 166, 166, 166, 14, 78, 1, -18, '', 0, 22, 17, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 5), 48, 48, 2918, 3763, 704, 444, 204, 204, 204, 204, 283, 283, 204, 181, 181, 181, 181, 181, 181, 14, 80, 1, -18, '', 0, 23, 18, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 1), 48, 48, 3734, 4387, 784, 444, 213, 213, 213, 213, 296, 296, 213, 169, 169, 169, 169, 169, 169, 14, 78, 1, -18, '', 0, 24, 17, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 2), 48, 48, 3830, 4531, 800, 456, 218, 218, 218, 218, 299, 299, 218, 184, 184, 184, 184, 184, 184, 14, 80, 1, -18, '', 0, 25, 18, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 3), 48, 48, 3926, 4675, 816, 468, 223, 223, 223, 223, 302, 302, 223, 199, 199, 199, 199, 199, 199, 14, 81, 1, -18, '', 0, 26, 19, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 4), 48, 48, 4022, 4819, 832, 480, 228, 228, 228, 228, 305, 305, 228, 214, 214, 214, 214, 214, 214, 14, 83, 1, -18, '', 0, 27, 20, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 5), 48, 48, 4118, 4963, 848, 492, 233, 233, 233, 233, 308, 308, 233, 229, 229, 229, 229, 229, 229, 15, 84, 1, -18, '', 0, 28, 21, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 1), 49, 49, 3650, 0, 1691, 1372, 214, 214, 214, 214, 219, 219, 214, 123, 123, 123, 123, 123, 123, 15, 77, 3, -18, '', 0, 29, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 2), 49, 49, 3895, 0, 1764, 1397, 219, 219, 219, 219, 221, 221, 219, 138, 138, 138, 138, 138, 138, 15, 80, 3, -18, '', 0, 31, 0, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 3), 49, 49, 4140, 0, 1838, 1421, 224, 224, 224, 224, 223, 223, 224, 153, 153, 153, 153, 153, 153, 16, 82, 3, -18, '', 0, 33, 0, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 4), 49, 49, 4385, 0, 1911, 1446, 229, 229, 229, 229, 225, 225, 229, 168, 168, 168, 168, 168, 168, 16, 85, 3, -18, '', 0, 35, 0, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 5), 49, 49, 4630, 0, 1985, 1470, 234, 234, 234, 234, 227, 227, 234, 183, 183, 183, 183, 183, 183, 17, 88, 3, -18, '', 0, 37, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 1), 49, 49, 5365, 0, 2083, 1494, 243, 243, 243, 243, 239, 239, 243, 171, 171, 171, 171, 171, 171, 16, 84, 3, -18, '', 0, 39, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 2), 49, 49, 5610, 0, 2156, 1519, 248, 248, 248, 248, 241, 241, 248, 186, 186, 186, 186, 186, 186, 17, 87, 3, -18, '', 0, 41, 0, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 3), 49, 49, 5855, 0, 2230, 1543, 253, 253, 253, 253, 243, 243, 253, 201, 201, 201, 201, 201, 201, 17, 89, 3, -18, '', 0, 43, 0, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 4), 49, 49, 6100, 0, 2303, 1568, 258, 258, 258, 258, 245, 245, 258, 216, 216, 216, 216, 216, 216, 18, 92, 3, -18, '', 0, 45, 0, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 5), 49, 49, 6345, 0, 2377, 1592, 263, 263, 263, 263, 247, 247, 263, 231, 231, 231, 231, 231, 231, 18, 95, 3, -18, '', 0, 47, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 1), 49, 49, 3011, 3293, 1323, 825, 193, 193, 193, 193, 274, 274, 193, 123, 123, 123, 123, 123, 123, 13, 76, 1, -18, '', 0, 20, 14, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 2), 49, 49, 3158, 3440, 1372, 841, 198, 198, 198, 198, 277, 277, 198, 138, 138, 138, 138, 138, 138, 13, 77, 1, -18, '', 0, 21, 15, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 3), 49, 49, 3305, 3587, 1421, 858, 203, 203, 203, 203, 280, 280, 203, 153, 153, 153, 153, 153, 153, 14, 78, 1, -18, '', 0, 22, 16, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 4), 49, 49, 3452, 3734, 1470, 874, 208, 208, 208, 208, 283, 283, 208, 168, 168, 168, 168, 168, 168, 14, 80, 1, -18, '', 0, 23, 17, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 5), 49, 49, 3599, 3881, 1519, 890, 213, 213, 213, 213, 286, 286, 213, 183, 183, 183, 183, 183, 183, 14, 81, 1, -18, '', 0, 24, 18, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 1), 49, 49, 4481, 4518, 1617, 898, 222, 222, 222, 222, 299, 299, 222, 171, 171, 171, 171, 171, 171, 14, 80, 1, -18, '', 0, 26, 17, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 2), 49, 49, 4628, 4665, 1666, 914, 227, 227, 227, 227, 302, 302, 227, 186, 186, 186, 186, 186, 186, 14, 81, 1, -18, '', 0, 27, 18, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 3), 49, 49, 4775, 4812, 1715, 931, 232, 232, 232, 232, 305, 305, 232, 201, 201, 201, 201, 201, 201, 14, 83, 1, -18, '', 0, 28, 19, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 4), 49, 49, 4922, 4959, 1764, 947, 237, 237, 237, 237, 308, 308, 237, 216, 216, 216, 216, 216, 216, 15, 84, 1, -18, '', 0, 29, 20, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 5), 49, 49, 5069, 5106, 1813, 963, 242, 242, 242, 242, 311, 311, 242, 231, 231, 231, 231, 231, 231, 15, 85, 1, -18, '', 0, 30, 21, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 1), 49, 49, 3146, 0, 1004, 1396, 214, 214, 214, 214, 219, 219, 214, 123, 123, 123, 123, 123, 123, 15, 71, 3, -18, '', 0, 27, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 2), 49, 49, 3342, 0, 1029, 1421, 219, 219, 219, 219, 221, 221, 219, 138, 138, 138, 138, 138, 138, 15, 74, 3, -18, '', 0, 29, 0, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 3), 49, 49, 3538, 0, 1053, 1445, 224, 224, 224, 224, 223, 223, 224, 153, 153, 153, 153, 153, 153, 16, 76, 3, -18, '', 0, 31, 0, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 4), 49, 49, 3734, 0, 1078, 1470, 229, 229, 229, 229, 225, 225, 229, 168, 168, 168, 168, 168, 168, 16, 79, 3, -18, '', 0, 33, 0, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 5), 49, 49, 3930, 0, 1102, 1494, 234, 234, 234, 234, 227, 227, 234, 183, 183, 183, 183, 183, 183, 17, 82, 3, -18, '', 0, 35, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 1), 49, 49, 4616, 0, 1249, 1543, 243, 243, 243, 243, 239, 239, 243, 171, 171, 171, 171, 171, 171, 16, 78, 3, -18, '', 0, 35, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 2), 49, 49, 4812, 0, 1274, 1568, 248, 248, 248, 248, 241, 241, 248, 186, 186, 186, 186, 186, 186, 17, 80, 3, -18, '', 0, 37, 0, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 3), 49, 49, 5008, 0, 1298, 1592, 253, 253, 253, 253, 243, 243, 253, 201, 201, 201, 201, 201, 201, 17, 83, 3, -18, '', 0, 39, 0, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 4), 49, 49, 5204, 0, 1323, 1617, 258, 258, 258, 258, 245, 245, 258, 216, 216, 216, 216, 216, 216, 18, 85, 3, -18, '', 0, 41, 0, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 5), 49, 49, 5400, 0, 1347, 1641, 263, 263, 263, 263, 247, 247, 263, 231, 231, 231, 231, 231, 231, 18, 88, 3, -18, '', 0, 43, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 1), 49, 49, 2640, 3293, 653, 404, 188, 188, 188, 188, 274, 274, 188, 123, 123, 123, 123, 123, 123, 13, 76, 1, -18, '', 0, 19, 14, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 2), 49, 49, 2738, 3440, 669, 416, 193, 193, 193, 193, 277, 277, 193, 138, 138, 138, 138, 138, 138, 13, 77, 1, -18, '', 0, 20, 15, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 3), 49, 49, 2836, 3587, 686, 428, 198, 198, 198, 198, 280, 280, 198, 153, 153, 153, 153, 153, 153, 14, 78, 1, -18, '', 0, 21, 16, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 4), 49, 49, 2934, 3734, 702, 441, 203, 203, 203, 203, 283, 283, 203, 168, 168, 168, 168, 168, 168, 14, 80, 1, -18, '', 0, 22, 17, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 5), 49, 49, 3032, 3881, 718, 453, 208, 208, 208, 208, 286, 286, 208, 183, 183, 183, 183, 183, 183, 14, 81, 1, -18, '', 0, 23, 18, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 1), 49, 49, 3865, 4518, 800, 453, 217, 217, 217, 217, 299, 299, 217, 171, 171, 171, 171, 171, 171, 14, 80, 1, -18, '', 0, 24, 17, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 2), 49, 49, 3963, 4665, 816, 465, 222, 222, 222, 222, 302, 302, 222, 186, 186, 186, 186, 186, 186, 14, 81, 1, -18, '', 0, 25, 18, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 3), 49, 49, 4061, 4812, 833, 477, 227, 227, 227, 227, 305, 305, 227, 201, 201, 201, 201, 201, 201, 14, 83, 1, -18, '', 0, 26, 19, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 4), 49, 49, 4159, 4959, 849, 490, 232, 232, 232, 232, 308, 308, 232, 216, 216, 216, 216, 216, 216, 15, 84, 1, -18, '', 0, 27, 20, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 5), 49, 49, 4257, 5106, 865, 502, 237, 237, 237, 237, 311, 311, 237, 231, 231, 231, 231, 231, 231, 15, 85, 1, -18, '', 0, 28, 21, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 1), 50, 50, 3795, 0, 1725, 1400, 221, 221, 221, 221, 222, 222, 221, 125, 125, 125, 125, 125, 125, 15, 78, 3, -18, '', 0, 29, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 2), 50, 50, 4045, 0, 1800, 1425, 227, 227, 227, 227, 224, 224, 227, 140, 140, 140, 140, 140, 140, 16, 81, 3, -18, '', 0, 31, 0, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 3), 50, 50, 4295, 0, 1875, 1450, 233, 233, 233, 233, 226, 226, 233, 155, 155, 155, 155, 155, 155, 16, 84, 3, -18, '', 0, 33, 0, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 4), 50, 50, 4545, 0, 1950, 1475, 239, 239, 239, 239, 228, 228, 239, 170, 170, 170, 170, 170, 170, 17, 87, 3, -18, '', 0, 35, 0, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 5), 50, 50, 4795, 0, 2025, 1500, 245, 245, 245, 245, 230, 230, 245, 185, 185, 185, 185, 185, 185, 17, 89, 3, -18, '', 0, 37, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 1), 50, 50, 5545, 0, 2125, 1525, 251, 251, 251, 251, 242, 242, 251, 175, 175, 175, 175, 175, 175, 16, 85, 3, -18, '', 0, 39, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 2), 50, 50, 5795, 0, 2200, 1550, 257, 257, 257, 257, 244, 244, 257, 190, 190, 190, 190, 190, 190, 17, 88, 3, -18, '', 0, 41, 0, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 3), 50, 50, 6045, 0, 2275, 1575, 263, 263, 263, 263, 246, 246, 263, 205, 205, 205, 205, 205, 205, 17, 91, 3, -18, '', 0, 43, 0, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 4), 50, 50, 6295, 0, 2350, 1600, 269, 269, 269, 269, 248, 248, 269, 220, 220, 220, 220, 220, 220, 18, 94, 3, -18, '', 0, 45, 0, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 5), 50, 50, 6545, 0, 2425, 1625, 275, 275, 275, 275, 250, 250, 275, 235, 235, 235, 235, 235, 235, 18, 96, 3, -18, '', 0, 47, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 1), 50, 50, 3130, 3400, 1350, 841, 199, 199, 199, 199, 278, 278, 199, 125, 125, 125, 125, 125, 125, 13, 77, 1, -18, '', 0, 20, 15, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 2), 50, 50, 3280, 3550, 1400, 858, 205, 205, 205, 205, 281, 281, 205, 140, 140, 140, 140, 140, 140, 14, 78, 1, -18, '', 0, 21, 16, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 3), 50, 50, 3430, 3700, 1450, 875, 211, 211, 211, 211, 284, 284, 211, 155, 155, 155, 155, 155, 155, 14, 80, 1, -18, '', 0, 22, 17, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 4), 50, 50, 3580, 3850, 1500, 891, 217, 217, 217, 217, 287, 287, 217, 170, 170, 170, 170, 170, 170, 14, 81, 1, -18, '', 0, 23, 18, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 5), 50, 50, 3730, 4000, 1550, 908, 223, 223, 223, 223, 290, 290, 223, 185, 185, 185, 185, 185, 185, 14, 83, 1, -18, '', 0, 24, 19, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 1), 50, 50, 4630, 4650, 1650, 916, 229, 229, 229, 229, 303, 303, 229, 175, 175, 175, 175, 175, 175, 14, 81, 1, -18, '', 0, 26, 18, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 2), 50, 50, 4780, 4800, 1700, 933, 235, 235, 235, 235, 306, 306, 235, 190, 190, 190, 190, 190, 190, 14, 83, 1, -18, '', 0, 27, 19, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 3), 50, 50, 4930, 4950, 1750, 950, 241, 241, 241, 241, 309, 309, 241, 205, 205, 205, 205, 205, 205, 15, 84, 1, -18, '', 0, 28, 20, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 4), 50, 50, 5080, 5100, 1800, 966, 247, 247, 247, 247, 312, 312, 247, 220, 220, 220, 220, 220, 220, 15, 85, 1, -18, '', 0, 29, 21, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 5), 50, 50, 5230, 5250, 1850, 983, 253, 253, 253, 253, 315, 315, 253, 235, 235, 235, 235, 235, 235, 15, 87, 1, -18, '', 0, 30, 22, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 1), 50, 50, 3272, 0, 1025, 1425, 221, 221, 221, 221, 222, 222, 221, 125, 125, 125, 125, 125, 125, 15, 72, 3, -18, '', 0, 27, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 2), 50, 50, 3472, 0, 1050, 1450, 227, 227, 227, 227, 224, 224, 227, 140, 140, 140, 140, 140, 140, 16, 75, 3, -18, '', 0, 29, 0, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 3), 50, 50, 3672, 0, 1075, 1475, 233, 233, 233, 233, 226, 226, 233, 155, 155, 155, 155, 155, 155, 16, 78, 3, -18, '', 0, 31, 0, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 4), 50, 50, 3872, 0, 1100, 1500, 239, 239, 239, 239, 228, 228, 239, 170, 170, 170, 170, 170, 170, 17, 80, 3, -18, '', 0, 33, 0, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 5), 50, 50, 4072, 0, 1125, 1525, 245, 245, 245, 245, 230, 230, 245, 185, 185, 185, 185, 185, 185, 17, 83, 3, -18, '', 0, 35, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 1), 50, 50, 4772, 0, 1275, 1575, 251, 251, 251, 251, 242, 242, 251, 175, 175, 175, 175, 175, 175, 16, 79, 3, -18, '', 0, 35, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 2), 50, 50, 4972, 0, 1300, 1600, 257, 257, 257, 257, 244, 244, 257, 190, 190, 190, 190, 190, 190, 17, 82, 3, -18, '', 0, 37, 0, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 3), 50, 50, 5172, 0, 1325, 1625, 263, 263, 263, 263, 246, 246, 263, 205, 205, 205, 205, 205, 205, 17, 84, 3, -18, '', 0, 39, 0, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 4), 50, 50, 5372, 0, 1350, 1650, 269, 269, 269, 269, 248, 248, 269, 220, 220, 220, 220, 220, 220, 18, 87, 3, -18, '', 0, 41, 0, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 5), 50, 50, 5572, 0, 1375, 1675, 275, 275, 275, 275, 250, 250, 275, 235, 235, 235, 235, 235, 235, 18, 89, 3, -18, '', 0, 43, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 1), 50, 50, 2748, 3400, 666, 412, 194, 194, 194, 194, 278, 278, 194, 125, 125, 125, 125, 125, 125, 13, 77, 1, -18, '', 0, 19, 15, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 2), 50, 50, 2848, 3550, 683, 425, 200, 200, 200, 200, 281, 281, 200, 140, 140, 140, 140, 140, 140, 14, 78, 1, -18, '', 0, 20, 16, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 3), 50, 50, 2948, 3700, 700, 437, 206, 206, 206, 206, 284, 284, 206, 155, 155, 155, 155, 155, 155, 14, 80, 1, -18, '', 0, 21, 17, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 4), 50, 50, 3048, 3850, 716, 450, 212, 212, 212, 212, 287, 287, 212, 170, 170, 170, 170, 170, 170, 14, 81, 1, -18, '', 0, 22, 18, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 5), 50, 50, 3148, 4000, 733, 462, 218, 218, 218, 218, 290, 290, 218, 185, 185, 185, 185, 185, 185, 14, 83, 1, -18, '', 0, 23, 19, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 1), 50, 50, 3998, 4650, 816, 462, 224, 224, 224, 224, 303, 303, 224, 175, 175, 175, 175, 175, 175, 14, 81, 1, -18, '', 0, 24, 18, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 2), 50, 50, 4098, 4800, 833, 475, 230, 230, 230, 230, 306, 306, 230, 190, 190, 190, 190, 190, 190, 14, 83, 1, -18, '', 0, 25, 19, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 3), 50, 50, 4198, 4950, 850, 487, 236, 236, 236, 236, 309, 309, 236, 205, 205, 205, 205, 205, 205, 15, 84, 1, -18, '', 0, 26, 20, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 4), 50, 50, 4298, 5100, 866, 500, 242, 242, 242, 242, 312, 312, 242, 220, 220, 220, 220, 220, 220, 15, 85, 1, -18, '', 0, 27, 21, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 5), 50, 50, 4398, 5250, 883, 512, 248, 248, 248, 248, 315, 315, 248, 235, 235, 235, 235, 235, 235, 15, 87, 1, -18, '', 0, 28, 22, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 1), 51, 51, 3945, 0, 1760, 1428, 226, 226, 226, 226, 225, 225, 226, 127, 127, 127, 127, 127, 127, 15, 80, 3, -18, '', 0, 30, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 2), 51, 51, 4200, 0, 1836, 1454, 232, 232, 232, 232, 227, 227, 232, 142, 142, 142, 142, 142, 142, 16, 82, 3, -18, '', 0, 32, 0, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 3), 51, 51, 4455, 0, 1913, 1479, 238, 238, 238, 238, 229, 229, 238, 157, 157, 157, 157, 157, 157, 16, 85, 3, -18, '', 0, 34, 0, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 4), 51, 51, 4710, 0, 1989, 1505, 244, 244, 244, 244, 231, 231, 244, 172, 172, 172, 172, 172, 172, 17, 88, 3, -18, '', 0, 36, 0, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 5), 51, 51, 4965, 0, 2066, 1530, 250, 250, 250, 250, 233, 233, 250, 187, 187, 187, 187, 187, 187, 17, 91, 3, -18, '', 0, 38, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 1), 51, 51, 5730, 0, 2168, 1555, 256, 256, 256, 256, 245, 245, 256, 177, 177, 177, 177, 177, 177, 17, 87, 3, -18, '', 0, 40, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 2), 51, 51, 5985, 0, 2244, 1581, 262, 262, 262, 262, 247, 247, 262, 192, 192, 192, 192, 192, 192, 17, 89, 3, -18, '', 0, 42, 0, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 3), 51, 51, 6240, 0, 2321, 1606, 268, 268, 268, 268, 249, 249, 268, 207, 207, 207, 207, 207, 207, 18, 92, 3, -18, '', 0, 44, 0, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 4), 51, 51, 6495, 0, 2397, 1632, 274, 274, 274, 274, 251, 251, 274, 222, 222, 222, 222, 222, 222, 18, 95, 3, -18, '', 0, 46, 0, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 5), 51, 51, 6750, 0, 2474, 1657, 280, 280, 280, 280, 253, 253, 280, 237, 237, 237, 237, 237, 237, 19, 98, 3, -18, '', 0, 48, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 1), 51, 51, 3253, 3509, 1377, 859, 204, 204, 204, 204, 281, 281, 204, 127, 127, 127, 127, 127, 127, 14, 78, 1, -18, '', 0, 20, 15, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 2), 51, 51, 3406, 3662, 1428, 876, 210, 210, 210, 210, 284, 284, 210, 142, 142, 142, 142, 142, 142, 14, 80, 1, -18, '', 0, 21, 16, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 3), 51, 51, 3559, 3815, 1479, 893, 216, 216, 216, 216, 287, 287, 216, 157, 157, 157, 157, 157, 157, 14, 81, 1, -18, '', 0, 22, 17, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 4), 51, 51, 3712, 3968, 1530, 910, 222, 222, 222, 222, 290, 290, 222, 172, 172, 172, 172, 172, 172, 14, 83, 1, -18, '', 0, 23, 18, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 5), 51, 51, 3865, 4121, 1581, 927, 228, 228, 228, 228, 293, 293, 228, 187, 187, 187, 187, 187, 187, 15, 84, 1, -18, '', 0, 24, 19, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 1), 51, 51, 4783, 4784, 1683, 935, 234, 234, 234, 234, 306, 306, 234, 177, 177, 177, 177, 177, 177, 14, 83, 1, -18, '', 0, 26, 18, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 2), 51, 51, 4936, 4937, 1734, 952, 240, 240, 240, 240, 309, 309, 240, 192, 192, 192, 192, 192, 192, 15, 84, 1, -18, '', 0, 27, 19, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 3), 51, 51, 5089, 5090, 1785, 969, 246, 246, 246, 246, 312, 312, 246, 207, 207, 207, 207, 207, 207, 15, 85, 1, -18, '', 0, 28, 20, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 4), 51, 51, 5242, 5243, 1836, 986, 252, 252, 252, 252, 315, 315, 252, 222, 222, 222, 222, 222, 222, 15, 87, 1, -18, '', 0, 29, 21, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 5), 51, 51, 5395, 5396, 1887, 1003, 258, 258, 258, 258, 318, 318, 258, 237, 237, 237, 237, 237, 237, 15, 88, 1, -18, '', 0, 30, 22, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 1), 51, 51, 3402, 0, 1045, 1453, 226, 226, 226, 226, 225, 225, 226, 127, 127, 127, 127, 127, 127, 15, 74, 3, -18, '', 0, 28, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 2), 51, 51, 3606, 0, 1071, 1479, 232, 232, 232, 232, 227, 227, 232, 142, 142, 142, 142, 142, 142, 16, 76, 3, -18, '', 0, 30, 0, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 3), 51, 51, 3810, 0, 1096, 1504, 238, 238, 238, 238, 229, 229, 238, 157, 157, 157, 157, 157, 157, 16, 79, 3, -18, '', 0, 32, 0, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 4), 51, 51, 4014, 0, 1122, 1530, 244, 244, 244, 244, 231, 231, 244, 172, 172, 172, 172, 172, 172, 17, 82, 3, -18, '', 0, 34, 0, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 5), 51, 51, 4218, 0, 1147, 1555, 250, 250, 250, 250, 233, 233, 250, 187, 187, 187, 187, 187, 187, 17, 84, 3, -18, '', 0, 36, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 1), 51, 51, 4932, 0, 1300, 1606, 256, 256, 256, 256, 245, 245, 256, 177, 177, 177, 177, 177, 177, 17, 80, 3, -18, '', 0, 36, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 2), 51, 51, 5136, 0, 1326, 1632, 262, 262, 262, 262, 247, 247, 262, 192, 192, 192, 192, 192, 192, 17, 83, 3, -18, '', 0, 38, 0, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 3), 51, 51, 5340, 0, 1351, 1657, 268, 268, 268, 268, 249, 249, 268, 207, 207, 207, 207, 207, 207, 18, 85, 3, -18, '', 0, 40, 0, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 4), 51, 51, 5544, 0, 1377, 1683, 274, 274, 274, 274, 251, 251, 274, 222, 222, 222, 222, 222, 222, 18, 88, 3, -18, '', 0, 42, 0, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 5), 51, 51, 5748, 0, 1402, 1708, 280, 280, 280, 280, 253, 253, 280, 237, 237, 237, 237, 237, 237, 19, 91, 3, -18, '', 0, 44, 0, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 1), 51, 51, 2860, 3509, 680, 420, 199, 199, 199, 199, 281, 281, 199, 127, 127, 127, 127, 127, 127, 14, 78, 1, -18, '', 0, 19, 15, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 2), 51, 51, 2962, 3662, 697, 433, 205, 205, 205, 205, 284, 284, 205, 142, 142, 142, 142, 142, 142, 14, 80, 1, -18, '', 0, 20, 16, 1.25, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 3), 51, 51, 3064, 3815, 714, 446, 211, 211, 211, 211, 287, 287, 211, 157, 157, 157, 157, 157, 157, 14, 81, 1, -18, '', 0, 21, 17, 1.25, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 4), 51, 51, 3166, 3968, 731, 459, 217, 217, 217, 217, 290, 290, 217, 172, 172, 172, 172, 172, 172, 14, 83, 1, -18, '', 0, 22, 18, 1.25, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 5), 51, 51, 3268, 4121, 748, 471, 223, 223, 223, 223, 293, 293, 223, 187, 187, 187, 187, 187, 187, 15, 84, 1, -18, '', 0, 23, 19, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 1), 51, 51, 4135, 4784, 833, 471, 229, 229, 229, 229, 306, 306, 229, 177, 177, 177, 177, 177, 177, 14, 83, 1, -18, '', 0, 24, 18, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 2), 51, 51, 4237, 4937, 850, 484, 235, 235, 235, 235, 309, 309, 235, 192, 192, 192, 192, 192, 192, 15, 84, 1, -18, '', 0, 25, 19, 1.25, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 3), 51, 51, 4339, 5090, 867, 497, 241, 241, 241, 241, 312, 312, 241, 207, 207, 207, 207, 207, 207, 15, 85, 1, -18, '', 0, 26, 20, 1.25, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 4), 51, 51, 4441, 5243, 884, 510, 247, 247, 247, 247, 315, 315, 247, 222, 222, 222, 222, 222, 222, 15, 87, 1, -18, '', 0, 27, 21, 1.25, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 5), 51, 51, 4543, 5396, 901, 522, 253, 253, 253, 253, 318, 318, 253, 237, 237, 237, 237, 237, 237, 15, 88, 1, -18, '', 0, 28, 22, 1.25, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 1), 52, 52, 4098, 0, 1794, 1456, 232, 232, 232, 232, 228, 228, 232, 130, 130, 130, 130, 130, 130, 16, 81, 3, -18, '', 0, 30, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 2), 52, 52, 4358, 0, 1872, 1482, 238, 238, 238, 238, 230, 230, 238, 146, 146, 146, 146, 146, 146, 16, 84, 3, -18, '', 0, 32, 0, 1.31, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 3), 52, 52, 4618, 0, 1950, 1508, 244, 244, 244, 244, 232, 232, 244, 162, 162, 162, 162, 162, 162, 17, 87, 3, -18, '', 0, 34, 0, 1.37, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 4), 52, 52, 4878, 0, 2028, 1534, 250, 250, 250, 250, 234, 234, 250, 178, 178, 178, 178, 178, 178, 17, 89, 3, -18, '', 0, 36, 0, 1.43, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 5), 52, 52, 5138, 0, 2106, 1560, 256, 256, 256, 256, 236, 236, 256, 194, 194, 194, 194, 194, 194, 18, 92, 3, -18, '', 0, 38, 0, 1.49, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 1), 52, 52, 5918, 0, 2210, 1586, 263, 263, 263, 263, 248, 248, 263, 180, 180, 180, 180, 180, 180, 17, 88, 3, -18, '', 0, 40, 0, 1.55, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 2), 52, 52, 6178, 0, 2288, 1612, 269, 269, 269, 269, 250, 250, 269, 196, 196, 196, 196, 196, 196, 17, 91, 3, -18, '', 0, 42, 0, 1.61, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 3), 52, 52, 6438, 0, 2366, 1638, 275, 275, 275, 275, 252, 252, 275, 212, 212, 212, 212, 212, 212, 18, 94, 3, -18, '', 0, 44, 0, 1.67, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 4), 52, 52, 6698, 0, 2444, 1664, 281, 281, 281, 281, 254, 254, 281, 228, 228, 228, 228, 228, 228, 18, 96, 3, -18, '', 0, 46, 0, 1.73, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 5), 52, 52, 6958, 0, 2522, 1690, 287, 287, 287, 287, 256, 256, 287, 244, 244, 244, 244, 244, 244, 19, 99, 3, -18, '', 0, 48, 0, 1.79, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 1), 52, 52, 3380, 3619, 1404, 875, 209, 209, 209, 209, 285, 285, 209, 130, 130, 130, 130, 130, 130, 14, 80, 1, -18, '', 0, 21, 15, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 2), 52, 52, 3536, 3775, 1456, 892, 215, 215, 215, 215, 288, 288, 215, 146, 146, 146, 146, 146, 146, 14, 81, 1, -18, '', 0, 22, 16, 1.31, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 3), 52, 52, 3692, 3931, 1508, 910, 221, 221, 221, 221, 291, 291, 221, 162, 162, 162, 162, 162, 162, 14, 83, 1, -18, '', 0, 23, 17, 1.37, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 4), 52, 52, 3848, 4087, 1560, 927, 227, 227, 227, 227, 294, 294, 227, 178, 178, 178, 178, 178, 178, 15, 84, 1, -18, '', 0, 24, 18, 1.43, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 5), 52, 52, 4004, 4243, 1612, 944, 233, 233, 233, 233, 297, 297, 233, 194, 194, 194, 194, 194, 194, 15, 85, 1, -18, '', 0, 25, 19, 1.49, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 1), 52, 52, 4940, 4919, 1716, 953, 240, 240, 240, 240, 310, 310, 240, 180, 180, 180, 180, 180, 180, 15, 84, 1, -18, '', 0, 27, 18, 1.55, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 2), 52, 52, 5096, 5075, 1768, 970, 246, 246, 246, 246, 313, 313, 246, 196, 196, 196, 196, 196, 196, 15, 85, 1, -18, '', 0, 28, 19, 1.61, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 3), 52, 52, 5252, 5231, 1820, 988, 252, 252, 252, 252, 316, 316, 252, 212, 212, 212, 212, 212, 212, 15, 87, 1, -18, '', 0, 29, 20, 1.67, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 4), 52, 52, 5408, 5387, 1872, 1005, 258, 258, 258, 258, 319, 319, 258, 228, 228, 228, 228, 228, 228, 15, 88, 1, -18, '', 0, 30, 21, 1.73, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 5), 52, 52, 5564, 5543, 1924, 1022, 264, 264, 264, 264, 322, 322, 264, 244, 244, 244, 244, 244, 244, 16, 90, 1, -18, '', 0, 31, 22, 1.79, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 1), 52, 52, 3535, 0, 1066, 1482, 232, 232, 232, 232, 228, 228, 232, 130, 130, 130, 130, 130, 130, 16, 75, 3, -18, '', 0, 28, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 2), 52, 52, 3743, 0, 1092, 1508, 238, 238, 238, 238, 230, 230, 238, 146, 146, 146, 146, 146, 146, 16, 78, 3, -18, '', 0, 30, 0, 1.31, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 3), 52, 52, 3951, 0, 1118, 1534, 244, 244, 244, 244, 232, 232, 244, 162, 162, 162, 162, 162, 162, 17, 80, 3, -18, '', 0, 32, 0, 1.37, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 4), 52, 52, 4159, 0, 1144, 1560, 250, 250, 250, 250, 234, 234, 250, 178, 178, 178, 178, 178, 178, 17, 83, 3, -18, '', 0, 34, 0, 1.43, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 5), 52, 52, 4367, 0, 1170, 1586, 256, 256, 256, 256, 236, 236, 256, 194, 194, 194, 194, 194, 194, 18, 85, 3, -18, '', 0, 36, 0, 1.49, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 1), 52, 52, 5095, 0, 1326, 1638, 263, 263, 263, 263, 248, 248, 263, 180, 180, 180, 180, 180, 180, 17, 82, 3, -18, '', 0, 36, 0, 1.55, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 2), 52, 52, 5303, 0, 1352, 1664, 269, 269, 269, 269, 250, 250, 269, 196, 196, 196, 196, 196, 196, 17, 84, 3, -18, '', 0, 38, 0, 1.61, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 3), 52, 52, 5511, 0, 1378, 1690, 275, 275, 275, 275, 252, 252, 275, 212, 212, 212, 212, 212, 212, 18, 87, 3, -18, '', 0, 40, 0, 1.67, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 4), 52, 52, 5719, 0, 1404, 1716, 281, 281, 281, 281, 254, 254, 281, 228, 228, 228, 228, 228, 228, 18, 89, 3, -18, '', 0, 42, 0, 1.73, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 5), 52, 52, 5927, 0, 1430, 1742, 287, 287, 287, 287, 256, 256, 287, 244, 244, 244, 244, 244, 244, 19, 92, 3, -18, '', 0, 44, 0, 1.79, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 1), 52, 52, 2976, 3619, 693, 429, 204, 204, 204, 204, 285, 285, 204, 130, 130, 130, 130, 130, 130, 14, 80, 1, -18, '', 0, 20, 15, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 2), 52, 52, 3080, 3775, 710, 442, 210, 210, 210, 210, 288, 288, 210, 146, 146, 146, 146, 146, 146, 14, 81, 1, -18, '', 0, 21, 16, 1.31, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 3), 52, 52, 3184, 3931, 728, 455, 216, 216, 216, 216, 291, 291, 216, 162, 162, 162, 162, 162, 162, 14, 83, 1, -18, '', 0, 22, 17, 1.37, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 4), 52, 52, 3288, 4087, 745, 468, 222, 222, 222, 222, 294, 294, 222, 178, 178, 178, 178, 178, 178, 15, 84, 1, -18, '', 0, 23, 18, 1.43, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 5), 52, 52, 3392, 4243, 762, 481, 228, 228, 228, 228, 297, 297, 228, 194, 194, 194, 194, 194, 194, 15, 85, 1, -18, '', 0, 24, 19, 1.49, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 1), 52, 52, 4276, 4919, 849, 481, 235, 235, 235, 235, 310, 310, 235, 180, 180, 180, 180, 180, 180, 15, 84, 1, -18, '', 0, 25, 18, 1.55, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 2), 52, 52, 4380, 5075, 866, 494, 241, 241, 241, 241, 313, 313, 241, 196, 196, 196, 196, 196, 196, 15, 85, 1, -18, '', 0, 26, 19, 1.61, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 3), 52, 52, 4484, 5231, 884, 507, 247, 247, 247, 247, 316, 316, 247, 212, 212, 212, 212, 212, 212, 15, 87, 1, -18, '', 0, 27, 20, 1.67, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 4), 52, 52, 4588, 5387, 901, 520, 253, 253, 253, 253, 319, 319, 253, 228, 228, 228, 228, 228, 228, 15, 88, 1, -18, '', 0, 28, 21, 1.73, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 5), 52, 52, 4692, 5543, 918, 533, 259, 259, 259, 259, 322, 322, 259, 244, 244, 244, 244, 244, 244, 16, 90, 1, -18, '', 0, 29, 22, 1.79, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 1), 53, 53, 4256, 0, 1829, 1484, 237, 237, 237, 237, 231, 231, 237, 132, 132, 132, 132, 132, 132, 16, 82, 3, -18, '', 0, 30, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 2), 53, 53, 4521, 0, 1908, 1511, 243, 243, 243, 243, 233, 233, 243, 148, 148, 148, 148, 148, 148, 16, 85, 3, -18, '', 0, 32, 0, 1.31, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 3), 53, 53, 4786, 0, 1988, 1537, 249, 249, 249, 249, 235, 235, 249, 164, 164, 164, 164, 164, 164, 17, 88, 3, -18, '', 0, 34, 0, 1.37, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 4), 53, 53, 5051, 0, 2067, 1564, 255, 255, 255, 255, 237, 237, 255, 180, 180, 180, 180, 180, 180, 17, 91, 3, -18, '', 0, 36, 0, 1.43, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 5), 53, 53, 5316, 0, 2147, 1590, 261, 261, 261, 261, 239, 239, 261, 196, 196, 196, 196, 196, 196, 18, 94, 3, -18, '', 0, 38, 0, 1.49, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 1), 53, 53, 6111, 0, 2253, 1616, 268, 268, 268, 268, 251, 251, 268, 184, 184, 184, 184, 184, 184, 17, 89, 3, -18, '', 0, 40, 0, 1.55, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 2), 53, 53, 6376, 0, 2332, 1643, 274, 274, 274, 274, 253, 253, 274, 200, 200, 200, 200, 200, 200, 18, 92, 3, -18, '', 0, 42, 0, 1.61, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 3), 53, 53, 6641, 0, 2412, 1669, 280, 280, 280, 280, 255, 255, 280, 216, 216, 216, 216, 216, 216, 18, 95, 3, -18, '', 0, 44, 0, 1.67, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 4), 53, 53, 6906, 0, 2491, 1696, 286, 286, 286, 286, 257, 257, 286, 232, 232, 232, 232, 232, 232, 19, 98, 3, -18, '', 0, 46, 0, 1.73, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 5), 53, 53, 7171, 0, 2571, 1722, 292, 292, 292, 292, 259, 259, 292, 248, 248, 248, 248, 248, 248, 19, 101, 3, -18, '', 0, 48, 0, 1.79, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 1), 53, 53, 3510, 3731, 1431, 892, 214, 214, 214, 214, 288, 288, 214, 132, 132, 132, 132, 132, 132, 14, 81, 1, -18, '', 0, 21, 15, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 2), 53, 53, 3669, 3890, 1484, 910, 220, 220, 220, 220, 291, 291, 220, 148, 148, 148, 148, 148, 148, 14, 83, 1, -18, '', 0, 22, 16, 1.31, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 3), 53, 53, 3828, 4049, 1537, 928, 226, 226, 226, 226, 294, 294, 226, 164, 164, 164, 164, 164, 164, 15, 84, 1, -18, '', 0, 23, 17, 1.37, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 4), 53, 53, 3987, 4208, 1590, 945, 232, 232, 232, 232, 297, 297, 232, 180, 180, 180, 180, 180, 180, 15, 85, 1, -18, '', 0, 24, 18, 1.43, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 5), 53, 53, 4146, 4367, 1643, 963, 238, 238, 238, 238, 300, 300, 238, 196, 196, 196, 196, 196, 196, 15, 87, 1, -18, '', 0, 25, 19, 1.49, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 1), 53, 53, 5100, 5056, 1749, 971, 245, 245, 245, 245, 313, 313, 245, 184, 184, 184, 184, 184, 184, 15, 85, 1, -18, '', 0, 27, 18, 1.55, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 2), 53, 53, 5259, 5215, 1802, 989, 251, 251, 251, 251, 316, 316, 251, 200, 200, 200, 200, 200, 200, 15, 87, 1, -18, '', 0, 28, 19, 1.61, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 3), 53, 53, 5418, 5374, 1855, 1007, 257, 257, 257, 257, 319, 319, 257, 216, 216, 216, 216, 216, 216, 15, 88, 1, -18, '', 0, 29, 20, 1.67, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 4), 53, 53, 5577, 5533, 1908, 1024, 263, 263, 263, 263, 322, 322, 263, 232, 232, 232, 232, 232, 232, 16, 90, 1, -18, '', 0, 30, 21, 1.73, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 5), 53, 53, 5736, 5692, 1961, 1042, 269, 269, 269, 269, 325, 325, 269, 248, 248, 248, 248, 248, 248, 16, 91, 1, -18, '', 0, 31, 22, 1.79, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 1), 53, 53, 3672, 0, 1086, 1510, 237, 237, 237, 237, 231, 231, 237, 132, 132, 132, 132, 132, 132, 16, 76, 3, -18, '', 0, 28, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 2), 53, 53, 3884, 0, 1113, 1537, 243, 243, 243, 243, 233, 233, 243, 148, 148, 148, 148, 148, 148, 16, 79, 3, -18, '', 0, 30, 0, 1.31, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 3), 53, 53, 4096, 0, 1139, 1563, 249, 249, 249, 249, 235, 235, 249, 164, 164, 164, 164, 164, 164, 17, 82, 3, -18, '', 0, 32, 0, 1.37, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 4), 53, 53, 4308, 0, 1166, 1590, 255, 255, 255, 255, 237, 237, 255, 180, 180, 180, 180, 180, 180, 17, 84, 3, -18, '', 0, 34, 0, 1.43, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 5), 53, 53, 4520, 0, 1192, 1616, 261, 261, 261, 261, 239, 239, 261, 196, 196, 196, 196, 196, 196, 18, 87, 3, -18, '', 0, 36, 0, 1.49, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 1), 53, 53, 5262, 0, 1351, 1669, 268, 268, 268, 268, 251, 251, 268, 184, 184, 184, 184, 184, 184, 17, 83, 3, -18, '', 0, 36, 0, 1.55, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 2), 53, 53, 5474, 0, 1378, 1696, 274, 274, 274, 274, 253, 253, 274, 200, 200, 200, 200, 200, 200, 18, 85, 3, -18, '', 0, 38, 0, 1.61, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 3), 53, 53, 5686, 0, 1404, 1722, 280, 280, 280, 280, 255, 255, 280, 216, 216, 216, 216, 216, 216, 18, 88, 3, -18, '', 0, 40, 0, 1.67, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 4), 53, 53, 5898, 0, 1431, 1749, 286, 286, 286, 286, 257, 257, 286, 232, 232, 232, 232, 232, 232, 19, 91, 3, -18, '', 0, 42, 0, 1.73, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 5), 53, 53, 6110, 0, 1457, 1775, 292, 292, 292, 292, 259, 259, 292, 248, 248, 248, 248, 248, 248, 19, 93, 3, -18, '', 0, 44, 0, 1.79, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 1), 53, 53, 3095, 3731, 706, 437, 209, 209, 209, 209, 288, 288, 209, 132, 132, 132, 132, 132, 132, 14, 81, 1, -18, '', 0, 20, 15, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 2), 53, 53, 3201, 3890, 724, 450, 215, 215, 215, 215, 291, 291, 215, 148, 148, 148, 148, 148, 148, 14, 83, 1, -18, '', 0, 21, 16, 1.31, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 3), 53, 53, 3307, 4049, 742, 463, 221, 221, 221, 221, 294, 294, 221, 164, 164, 164, 164, 164, 164, 15, 84, 1, -18, '', 0, 22, 17, 1.37, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 4), 53, 53, 3413, 4208, 759, 477, 227, 227, 227, 227, 297, 297, 227, 180, 180, 180, 180, 180, 180, 15, 85, 1, -18, '', 0, 23, 18, 1.43, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 5), 53, 53, 3519, 4367, 777, 490, 233, 233, 233, 233, 300, 300, 233, 196, 196, 196, 196, 196, 196, 15, 87, 1, -18, '', 0, 24, 19, 1.49, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 1), 53, 53, 4420, 5056, 865, 490, 240, 240, 240, 240, 313, 313, 240, 184, 184, 184, 184, 184, 184, 15, 85, 1, -18, '', 0, 25, 18, 1.55, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 2), 53, 53, 4526, 5215, 883, 503, 246, 246, 246, 246, 316, 316, 246, 200, 200, 200, 200, 200, 200, 15, 87, 1, -18, '', 0, 26, 19, 1.61, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 3), 53, 53, 4632, 5374, 901, 516, 252, 252, 252, 252, 319, 319, 252, 216, 216, 216, 216, 216, 216, 15, 88, 1, -18, '', 0, 27, 20, 1.67, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 4), 53, 53, 4738, 5533, 918, 530, 258, 258, 258, 258, 322, 322, 258, 232, 232, 232, 232, 232, 232, 16, 90, 1, -18, '', 0, 28, 21, 1.73, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 5), 53, 53, 4844, 5692, 936, 543, 264, 264, 264, 264, 325, 325, 264, 248, 248, 248, 248, 248, 248, 16, 91, 1, -18, '', 0, 29, 22, 1.79, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 1), 54, 54, 4419, 0, 1863, 1512, 243, 243, 243, 243, 234, 234, 243, 134, 134, 134, 134, 134, 134, 16, 84, 3, -18, '', 0, 31, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 2), 54, 54, 4689, 0, 1944, 1539, 249, 249, 249, 249, 236, 236, 249, 150, 150, 150, 150, 150, 150, 17, 87, 3, -18, '', 0, 33, 0, 1.31, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 3), 54, 54, 4959, 0, 2025, 1566, 255, 255, 255, 255, 238, 238, 255, 166, 166, 166, 166, 166, 166, 17, 89, 3, -18, '', 0, 35, 0, 1.37, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 4), 54, 54, 5229, 0, 2106, 1593, 261, 261, 261, 261, 240, 240, 261, 182, 182, 182, 182, 182, 182, 18, 92, 3, -18, '', 0, 37, 0, 1.43, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 5), 54, 54, 5499, 0, 2187, 1620, 267, 267, 267, 267, 242, 242, 267, 198, 198, 198, 198, 198, 198, 18, 95, 3, -18, '', 0, 39, 0, 1.49, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 1), 54, 54, 6309, 0, 2295, 1647, 275, 275, 275, 275, 254, 254, 275, 186, 186, 186, 186, 186, 186, 17, 91, 3, -18, '', 0, 41, 0, 1.55, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 2), 54, 54, 6579, 0, 2376, 1674, 281, 281, 281, 281, 256, 256, 281, 202, 202, 202, 202, 202, 202, 18, 94, 3, -18, '', 0, 43, 0, 1.61, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 3), 54, 54, 6849, 0, 2457, 1701, 287, 287, 287, 287, 258, 258, 287, 218, 218, 218, 218, 218, 218, 18, 96, 3, -18, '', 0, 45, 0, 1.67, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 4), 54, 54, 7119, 0, 2538, 1728, 293, 293, 293, 293, 260, 260, 293, 234, 234, 234, 234, 234, 234, 19, 99, 3, -18, '', 0, 47, 0, 1.73, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 5), 54, 54, 7389, 0, 2619, 1755, 299, 299, 299, 299, 262, 262, 299, 250, 250, 250, 250, 250, 250, 19, 102, 3, -18, '', 0, 49, 0, 1.79, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 1), 54, 54, 3644, 3845, 1458, 909, 220, 220, 220, 220, 292, 292, 220, 134, 134, 134, 134, 134, 134, 14, 83, 1, -18, '', 0, 21, 15, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 2), 54, 54, 3806, 4007, 1512, 927, 226, 226, 226, 226, 295, 295, 226, 150, 150, 150, 150, 150, 150, 15, 84, 1, -18, '', 0, 22, 16, 1.31, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 3), 54, 54, 3968, 4169, 1566, 945, 232, 232, 232, 232, 298, 298, 232, 166, 166, 166, 166, 166, 166, 15, 85, 1, -18, '', 0, 23, 17, 1.37, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 4), 54, 54, 4130, 4331, 1620, 963, 238, 238, 238, 238, 301, 301, 238, 182, 182, 182, 182, 182, 182, 15, 87, 1, -18, '', 0, 24, 18, 1.43, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 5), 54, 54, 4292, 4493, 1674, 981, 244, 244, 244, 244, 304, 304, 244, 198, 198, 198, 198, 198, 198, 15, 88, 1, -18, '', 0, 25, 19, 1.49, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 1), 54, 54, 5264, 5195, 1782, 990, 252, 252, 252, 252, 317, 317, 252, 186, 186, 186, 186, 186, 186, 15, 87, 1, -18, '', 0, 27, 18, 1.55, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 2), 54, 54, 5426, 5357, 1836, 1008, 258, 258, 258, 258, 320, 320, 258, 202, 202, 202, 202, 202, 202, 15, 88, 1, -18, '', 0, 28, 19, 1.61, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 3), 54, 54, 5588, 5519, 1890, 1026, 264, 264, 264, 264, 323, 323, 264, 218, 218, 218, 218, 218, 218, 16, 90, 1, -18, '', 0, 29, 20, 1.67, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 4), 54, 54, 5750, 5681, 1944, 1044, 270, 270, 270, 270, 326, 326, 270, 234, 234, 234, 234, 234, 234, 16, 91, 1, -18, '', 0, 30, 21, 1.73, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 5), 54, 54, 5912, 5843, 1998, 1062, 276, 276, 276, 276, 329, 329, 276, 250, 250, 250, 250, 250, 250, 16, 92, 1, -18, '', 0, 31, 22, 1.79, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 1), 54, 54, 3814, 0, 1107, 1539, 243, 243, 243, 243, 234, 234, 243, 134, 134, 134, 134, 134, 134, 16, 78, 3, -18, '', 0, 29, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 2), 54, 54, 4030, 0, 1134, 1566, 249, 249, 249, 249, 236, 236, 249, 150, 150, 150, 150, 150, 150, 17, 80, 3, -18, '', 0, 31, 0, 1.31, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 3), 54, 54, 4246, 0, 1161, 1593, 255, 255, 255, 255, 238, 238, 255, 166, 166, 166, 166, 166, 166, 17, 83, 3, -18, '', 0, 33, 0, 1.37, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 4), 54, 54, 4462, 0, 1188, 1620, 261, 261, 261, 261, 240, 240, 261, 182, 182, 182, 182, 182, 182, 18, 85, 3, -18, '', 0, 35, 0, 1.43, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 5), 54, 54, 4678, 0, 1215, 1647, 267, 267, 267, 267, 242, 242, 267, 198, 198, 198, 198, 198, 198, 18, 88, 3, -18, '', 0, 37, 0, 1.49, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 1), 54, 54, 5434, 0, 1377, 1701, 275, 275, 275, 275, 254, 254, 275, 186, 186, 186, 186, 186, 186, 17, 84, 3, -18, '', 0, 37, 0, 1.55, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 2), 54, 54, 5650, 0, 1404, 1728, 281, 281, 281, 281, 256, 256, 281, 202, 202, 202, 202, 202, 202, 18, 87, 3, -18, '', 0, 39, 0, 1.61, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 3), 54, 54, 5866, 0, 1431, 1755, 287, 287, 287, 287, 258, 258, 287, 218, 218, 218, 218, 218, 218, 18, 89, 3, -18, '', 0, 41, 0, 1.67, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 4), 54, 54, 6082, 0, 1458, 1782, 293, 293, 293, 293, 260, 260, 293, 234, 234, 234, 234, 234, 234, 19, 92, 3, -18, '', 0, 43, 0, 1.73, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 5), 54, 54, 6298, 0, 1485, 1809, 299, 299, 299, 299, 262, 262, 299, 250, 250, 250, 250, 250, 250, 19, 95, 3, -18, '', 0, 45, 0, 1.79, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 1), 54, 54, 3217, 3845, 720, 445, 214, 214, 214, 214, 292, 292, 214, 134, 134, 134, 134, 134, 134, 14, 83, 1, -18, '', 0, 20, 15, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 2), 54, 54, 3325, 4007, 738, 459, 220, 220, 220, 220, 295, 295, 220, 150, 150, 150, 150, 150, 150, 15, 84, 1, -18, '', 0, 21, 16, 1.31, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 3), 54, 54, 3433, 4169, 756, 472, 226, 226, 226, 226, 298, 298, 226, 166, 166, 166, 166, 166, 166, 15, 85, 1, -18, '', 0, 22, 17, 1.37, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 4), 54, 54, 3541, 4331, 774, 486, 232, 232, 232, 232, 301, 301, 232, 182, 182, 182, 182, 182, 182, 15, 87, 1, -18, '', 0, 23, 18, 1.43, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 5), 54, 54, 3649, 4493, 792, 499, 238, 238, 238, 238, 304, 304, 238, 198, 198, 198, 198, 198, 198, 15, 88, 1, -18, '', 0, 24, 19, 1.49, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 1), 54, 54, 4567, 5195, 882, 499, 246, 246, 246, 246, 317, 317, 246, 186, 186, 186, 186, 186, 186, 15, 87, 1, -18, '', 0, 25, 18, 1.55, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 2), 54, 54, 4675, 5357, 900, 513, 252, 252, 252, 252, 320, 320, 252, 202, 202, 202, 202, 202, 202, 15, 88, 1, -18, '', 0, 26, 19, 1.61, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 3), 54, 54, 4783, 5519, 918, 526, 258, 258, 258, 258, 323, 323, 258, 218, 218, 218, 218, 218, 218, 16, 90, 1, -18, '', 0, 27, 20, 1.67, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 4), 54, 54, 4891, 5681, 936, 540, 264, 264, 264, 264, 326, 326, 264, 234, 234, 234, 234, 234, 234, 16, 91, 1, -18, '', 0, 28, 21, 1.73, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 5), 54, 54, 4999, 5843, 954, 553, 270, 270, 270, 270, 329, 329, 270, 250, 250, 250, 250, 250, 250, 16, 92, 1, -18, '', 0, 29, 22, 1.79, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 1), 55, 55, 4586, 0, 1898, 1540, 249, 249, 249, 249, 237, 237, 249, 136, 136, 136, 136, 136, 136, 16, 85, 3, -18, '', 0, 31, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 2), 55, 55, 4861, 0, 1980, 1568, 255, 255, 255, 255, 239, 239, 255, 152, 152, 152, 152, 152, 152, 17, 88, 3, -18, '', 0, 33, 0, 1.31, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 3), 55, 55, 5136, 0, 2063, 1595, 261, 261, 261, 261, 241, 241, 261, 168, 168, 168, 168, 168, 168, 17, 91, 3, -18, '', 0, 35, 0, 1.37, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 4), 55, 55, 5411, 0, 2145, 1623, 267, 267, 267, 267, 243, 243, 267, 184, 184, 184, 184, 184, 184, 18, 94, 3, -18, '', 0, 37, 0, 1.43, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 5), 55, 55, 5686, 0, 2228, 1650, 273, 273, 273, 273, 245, 245, 273, 200, 200, 200, 200, 200, 200, 18, 96, 3, -18, '', 0, 39, 0, 1.49, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 1), 55, 55, 6511, 0, 2338, 1677, 281, 281, 281, 281, 257, 257, 281, 188, 188, 188, 188, 188, 188, 18, 92, 3, -18, '', 0, 41, 0, 1.55, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 2), 55, 55, 6786, 0, 2420, 1705, 287, 287, 287, 287, 259, 259, 287, 204, 204, 204, 204, 204, 204, 18, 95, 3, -18, '', 0, 43, 0, 1.61, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 3), 55, 55, 7061, 0, 2503, 1732, 293, 293, 293, 293, 261, 261, 293, 220, 220, 220, 220, 220, 220, 19, 98, 3, -18, '', 0, 45, 0, 1.67, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 4), 55, 55, 7336, 0, 2585, 1760, 299, 299, 299, 299, 263, 263, 299, 236, 236, 236, 236, 236, 236, 19, 101, 3, -18, '', 0, 47, 0, 1.73, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 5), 55, 55, 7611, 0, 2668, 1787, 305, 305, 305, 305, 265, 265, 305, 252, 252, 252, 252, 252, 252, 20, 103, 3, -18, '', 0, 49, 0, 1.79, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 1), 55, 55, 3782, 3960, 1485, 926, 225, 225, 225, 225, 295, 295, 225, 136, 136, 136, 136, 136, 136, 15, 84, 1, -18, '', 0, 21, 16, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 2), 55, 55, 3947, 4125, 1540, 944, 231, 231, 231, 231, 298, 298, 231, 152, 152, 152, 152, 152, 152, 15, 85, 1, -18, '', 0, 22, 17, 1.31, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 3), 55, 55, 4112, 4290, 1595, 963, 237, 237, 237, 237, 301, 301, 237, 168, 168, 168, 168, 168, 168, 15, 87, 1, -18, '', 0, 23, 18, 1.37, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 4), 55, 55, 4277, 4455, 1650, 981, 243, 243, 243, 243, 304, 304, 243, 184, 184, 184, 184, 184, 184, 15, 88, 1, -18, '', 0, 24, 19, 1.43, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 5), 55, 55, 4442, 4620, 1705, 999, 249, 249, 249, 249, 307, 307, 249, 200, 200, 200, 200, 200, 200, 16, 90, 1, -18, '', 0, 25, 20, 1.49, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 1), 55, 55, 5432, 5335, 1815, 1008, 257, 257, 257, 257, 320, 320, 257, 188, 188, 188, 188, 188, 188, 15, 88, 1, -18, '', 0, 27, 19, 1.55, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 2), 55, 55, 5597, 5500, 1870, 1026, 263, 263, 263, 263, 323, 323, 263, 204, 204, 204, 204, 204, 204, 16, 90, 1, -18, '', 0, 28, 20, 1.61, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 3), 55, 55, 5762, 5665, 1925, 1045, 269, 269, 269, 269, 326, 326, 269, 220, 220, 220, 220, 220, 220, 16, 91, 1, -18, '', 0, 29, 21, 1.67, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 4), 55, 55, 5927, 5830, 1980, 1063, 275, 275, 275, 275, 329, 329, 275, 236, 236, 236, 236, 236, 236, 16, 92, 1, -18, '', 0, 30, 22, 1.73, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 5), 55, 55, 6092, 5995, 2035, 1081, 281, 281, 281, 281, 332, 332, 281, 252, 252, 252, 252, 252, 252, 16, 94, 1, -18, '', 0, 31, 23, 1.79, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 1), 55, 55, 3959, 0, 1127, 1567, 249, 249, 249, 249, 237, 237, 249, 136, 136, 136, 136, 136, 136, 16, 79, 3, -18, '', 0, 29, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 2), 55, 55, 4179, 0, 1155, 1595, 255, 255, 255, 255, 239, 239, 255, 152, 152, 152, 152, 152, 152, 17, 82, 3, -18, '', 0, 31, 0, 1.31, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 3), 55, 55, 4399, 0, 1182, 1622, 261, 261, 261, 261, 241, 241, 261, 168, 168, 168, 168, 168, 168, 17, 84, 3, -18, '', 0, 33, 0, 1.37, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 4), 55, 55, 4619, 0, 1210, 1650, 267, 267, 267, 267, 243, 243, 267, 184, 184, 184, 184, 184, 184, 18, 87, 3, -18, '', 0, 35, 0, 1.43, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 5), 55, 55, 4839, 0, 1237, 1677, 273, 273, 273, 273, 245, 245, 273, 200, 200, 200, 200, 200, 200, 18, 89, 3, -18, '', 0, 37, 0, 1.49, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 1), 55, 55, 5609, 0, 1402, 1732, 281, 281, 281, 281, 257, 257, 281, 188, 188, 188, 188, 188, 188, 18, 85, 3, -18, '', 0, 37, 0, 1.55, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 2), 55, 55, 5829, 0, 1430, 1760, 287, 287, 287, 287, 259, 259, 287, 204, 204, 204, 204, 204, 204, 18, 88, 3, -18, '', 0, 39, 0, 1.61, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 3), 55, 55, 6049, 0, 1457, 1787, 293, 293, 293, 293, 261, 261, 293, 220, 220, 220, 220, 220, 220, 19, 91, 3, -18, '', 0, 41, 0, 1.67, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 4), 55, 55, 6269, 0, 1485, 1815, 299, 299, 299, 299, 263, 263, 299, 236, 236, 236, 236, 236, 236, 19, 93, 3, -18, '', 0, 43, 0, 1.73, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 5), 55, 55, 6489, 0, 1512, 1842, 305, 305, 305, 305, 265, 265, 305, 252, 252, 252, 252, 252, 252, 20, 96, 3, -18, '', 0, 45, 0, 1.79, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 1), 55, 55, 3343, 3960, 733, 453, 219, 219, 219, 219, 295, 295, 219, 136, 136, 136, 136, 136, 136, 15, 84, 1, -18, '', 0, 20, 16, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 2), 55, 55, 3453, 4125, 751, 467, 225, 225, 225, 225, 298, 298, 225, 152, 152, 152, 152, 152, 152, 15, 85, 1, -18, '', 0, 21, 17, 1.31, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 3), 55, 55, 3563, 4290, 770, 481, 231, 231, 231, 231, 301, 301, 231, 168, 168, 168, 168, 168, 168, 15, 87, 1, -18, '', 0, 22, 18, 1.37, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 4), 55, 55, 3673, 4455, 788, 495, 237, 237, 237, 237, 304, 304, 237, 184, 184, 184, 184, 184, 184, 15, 88, 1, -18, '', 0, 23, 19, 1.43, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 5), 55, 55, 3783, 4620, 806, 508, 243, 243, 243, 243, 307, 307, 243, 200, 200, 200, 200, 200, 200, 16, 90, 1, -18, '', 0, 24, 20, 1.49, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 1), 55, 55, 4718, 5335, 898, 508, 251, 251, 251, 251, 320, 320, 251, 188, 188, 188, 188, 188, 188, 15, 88, 1, -18, '', 0, 25, 19, 1.55, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 2), 55, 55, 4828, 5500, 916, 522, 257, 257, 257, 257, 323, 323, 257, 204, 204, 204, 204, 204, 204, 16, 90, 1, -18, '', 0, 26, 20, 1.61, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 3), 55, 55, 4938, 5665, 935, 536, 263, 263, 263, 263, 326, 326, 263, 220, 220, 220, 220, 220, 220, 16, 91, 1, -18, '', 0, 27, 21, 1.67, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 4), 55, 55, 5048, 5830, 953, 550, 269, 269, 269, 269, 329, 329, 269, 236, 236, 236, 236, 236, 236, 16, 92, 1, -18, '', 0, 28, 22, 1.73, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 5), 55, 55, 5158, 5995, 971, 563, 275, 275, 275, 275, 332, 332, 275, 252, 252, 252, 252, 252, 252, 16, 94, 1, -18, '', 0, 29, 23, 1.79, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 1), 56, 56, 4758, 0, 1932, 1568, 255, 255, 255, 255, 240, 240, 255, 139, 139, 139, 139, 139, 139, 17, 87, 3, -18, '', 0, 31, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 2), 56, 56, 5038, 0, 2016, 1596, 261, 261, 261, 261, 242, 242, 261, 156, 156, 156, 156, 156, 156, 17, 89, 3, -18, '', 0, 33, 0, 1.31, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 3), 56, 56, 5318, 0, 2100, 1624, 267, 267, 267, 267, 244, 244, 267, 173, 173, 173, 173, 173, 173, 18, 92, 3, -18, '', 0, 35, 0, 1.37, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 4), 56, 56, 5598, 0, 2184, 1652, 273, 273, 273, 273, 246, 246, 273, 190, 190, 190, 190, 190, 190, 18, 95, 3, -18, '', 0, 37, 0, 1.43, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 5), 56, 56, 5878, 0, 2268, 1680, 279, 279, 279, 279, 248, 248, 279, 207, 207, 207, 207, 207, 207, 19, 98, 3, -18, '', 0, 39, 0, 1.49, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 1), 56, 56, 6718, 0, 2380, 1708, 288, 288, 288, 288, 260, 260, 288, 193, 193, 193, 193, 193, 193, 18, 94, 3, -18, '', 0, 41, 0, 1.55, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 2), 56, 56, 6998, 0, 2464, 1736, 294, 294, 294, 294, 262, 262, 294, 210, 210, 210, 210, 210, 210, 18, 96, 3, -18, '', 0, 43, 0, 1.61, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 3), 56, 56, 7278, 0, 2548, 1764, 300, 300, 300, 300, 264, 264, 300, 227, 227, 227, 227, 227, 227, 19, 99, 3, -18, '', 0, 45, 0, 1.67, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 4), 56, 56, 7558, 0, 2632, 1792, 306, 306, 306, 306, 266, 266, 306, 244, 244, 244, 244, 244, 244, 19, 102, 3, -18, '', 0, 47, 0, 1.73, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 5), 56, 56, 7838, 0, 2716, 1820, 312, 312, 312, 312, 268, 268, 312, 261, 261, 261, 261, 261, 261, 20, 105, 3, -18, '', 0, 49, 0, 1.79, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 1), 56, 56, 3924, 4077, 1512, 942, 231, 231, 231, 231, 299, 299, 231, 139, 139, 139, 139, 139, 139, 15, 85, 1, -18, '', 0, 22, 16, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 2), 56, 56, 4092, 4245, 1568, 961, 237, 237, 237, 237, 302, 302, 237, 156, 156, 156, 156, 156, 156, 15, 87, 1, -18, '', 0, 23, 17, 1.31, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 3), 56, 56, 4260, 4413, 1624, 980, 243, 243, 243, 243, 305, 305, 243, 173, 173, 173, 173, 173, 173, 15, 88, 1, -18, '', 0, 24, 18, 1.37, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 4), 56, 56, 4428, 4581, 1680, 998, 249, 249, 249, 249, 308, 308, 249, 190, 190, 190, 190, 190, 190, 16, 90, 1, -18, '', 0, 25, 19, 1.43, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 5), 56, 56, 4596, 4749, 1736, 1017, 255, 255, 255, 255, 311, 311, 255, 207, 207, 207, 207, 207, 207, 16, 91, 1, -18, '', 0, 26, 20, 1.49, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 1), 56, 56, 5604, 5477, 1848, 1026, 264, 264, 264, 264, 324, 324, 264, 193, 193, 193, 193, 193, 193, 16, 90, 1, -18, '', 0, 28, 19, 1.55, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 2), 56, 56, 5772, 5645, 1904, 1045, 270, 270, 270, 270, 327, 327, 270, 210, 210, 210, 210, 210, 210, 16, 91, 1, -18, '', 0, 29, 20, 1.61, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 3), 56, 56, 5940, 5813, 1960, 1064, 276, 276, 276, 276, 330, 330, 276, 227, 227, 227, 227, 227, 227, 16, 92, 1, -18, '', 0, 30, 21, 1.67, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 4), 56, 56, 6108, 5981, 2016, 1082, 282, 282, 282, 282, 333, 333, 282, 244, 244, 244, 244, 244, 244, 16, 94, 1, -18, '', 0, 31, 22, 1.73, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 5), 56, 56, 6276, 6149, 2072, 1101, 288, 288, 288, 288, 336, 336, 288, 261, 261, 261, 261, 261, 261, 17, 95, 1, -18, '', 0, 32, 23, 1.79, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 1), 56, 56, 4109, 0, 1148, 1596, 255, 255, 255, 255, 240, 240, 255, 139, 139, 139, 139, 139, 139, 17, 80, 3, -18, '', 0, 29, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 2), 56, 56, 4333, 0, 1176, 1624, 261, 261, 261, 261, 242, 242, 261, 156, 156, 156, 156, 156, 156, 17, 83, 3, -18, '', 0, 31, 0, 1.31, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 3), 56, 56, 4557, 0, 1204, 1652, 267, 267, 267, 267, 244, 244, 267, 173, 173, 173, 173, 173, 173, 18, 85, 3, -18, '', 0, 33, 0, 1.37, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 4), 56, 56, 4781, 0, 1232, 1680, 273, 273, 273, 273, 246, 246, 273, 190, 190, 190, 190, 190, 190, 18, 88, 3, -18, '', 0, 35, 0, 1.43, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 5), 56, 56, 5005, 0, 1260, 1708, 279, 279, 279, 279, 248, 248, 279, 207, 207, 207, 207, 207, 207, 19, 91, 3, -18, '', 0, 37, 0, 1.49, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 1), 56, 56, 5789, 0, 1428, 1764, 288, 288, 288, 288, 260, 260, 288, 193, 193, 193, 193, 193, 193, 18, 87, 3, -18, '', 0, 37, 0, 1.55, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 2), 56, 56, 6013, 0, 1456, 1792, 294, 294, 294, 294, 262, 262, 294, 210, 210, 210, 210, 210, 210, 18, 89, 3, -18, '', 0, 39, 0, 1.61, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 3), 56, 56, 6237, 0, 1484, 1820, 300, 300, 300, 300, 264, 264, 300, 227, 227, 227, 227, 227, 227, 19, 92, 3, -18, '', 0, 41, 0, 1.67, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 4), 56, 56, 6461, 0, 1512, 1848, 306, 306, 306, 306, 266, 266, 306, 244, 244, 244, 244, 244, 244, 19, 95, 3, -18, '', 0, 43, 0, 1.73, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 5), 56, 56, 6685, 0, 1540, 1876, 312, 312, 312, 312, 268, 268, 312, 261, 261, 261, 261, 261, 261, 20, 97, 3, -18, '', 0, 45, 0, 1.79, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 1), 56, 56, 3473, 4077, 746, 462, 225, 225, 225, 225, 299, 299, 225, 139, 139, 139, 139, 139, 139, 15, 85, 1, -18, '', 0, 21, 16, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 2), 56, 56, 3585, 4245, 765, 476, 231, 231, 231, 231, 302, 302, 231, 156, 156, 156, 156, 156, 156, 15, 87, 1, -18, '', 0, 22, 17, 1.31, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 3), 56, 56, 3697, 4413, 784, 490, 237, 237, 237, 237, 305, 305, 237, 173, 173, 173, 173, 173, 173, 15, 88, 1, -18, '', 0, 23, 18, 1.37, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 4), 56, 56, 3809, 4581, 802, 504, 243, 243, 243, 243, 308, 308, 243, 190, 190, 190, 190, 190, 190, 16, 90, 1, -18, '', 0, 24, 19, 1.43, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 5), 56, 56, 3921, 4749, 821, 518, 249, 249, 249, 249, 311, 311, 249, 207, 207, 207, 207, 207, 207, 16, 91, 1, -18, '', 0, 25, 20, 1.49, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 1), 56, 56, 4873, 5477, 914, 518, 258, 258, 258, 258, 324, 324, 258, 193, 193, 193, 193, 193, 193, 16, 90, 1, -18, '', 0, 26, 19, 1.55, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 2), 56, 56, 4985, 5645, 933, 532, 264, 264, 264, 264, 327, 327, 264, 210, 210, 210, 210, 210, 210, 16, 91, 1, -18, '', 0, 27, 20, 1.61, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 3), 56, 56, 5097, 5813, 952, 546, 270, 270, 270, 270, 330, 330, 270, 227, 227, 227, 227, 227, 227, 16, 92, 1, -18, '', 0, 28, 21, 1.67, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 4), 56, 56, 5209, 5981, 970, 560, 276, 276, 276, 276, 333, 333, 276, 244, 244, 244, 244, 244, 244, 16, 94, 1, -18, '', 0, 29, 22, 1.73, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 5), 56, 56, 5321, 6149, 989, 574, 282, 282, 282, 282, 336, 336, 282, 261, 261, 261, 261, 261, 261, 17, 95, 1, -18, '', 0, 30, 23, 1.79, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 1), 57, 57, 4935, 0, 1967, 1596, 261, 261, 261, 261, 243, 243, 261, 141, 141, 141, 141, 141, 141, 17, 88, 3, -18, '', 0, 32, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 2), 57, 57, 5220, 0, 2052, 1625, 267, 267, 267, 267, 245, 245, 267, 158, 158, 158, 158, 158, 158, 17, 91, 3, -18, '', 0, 34, 0, 1.31, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 3), 57, 57, 5505, 0, 2138, 1653, 273, 273, 273, 273, 247, 247, 273, 175, 175, 175, 175, 175, 175, 18, 94, 3, -18, '', 0, 36, 0, 1.37, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 4), 57, 57, 5790, 0, 2223, 1682, 279, 279, 279, 279, 249, 249, 279, 192, 192, 192, 192, 192, 192, 18, 96, 3, -18, '', 0, 38, 0, 1.43, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 5), 57, 57, 6075, 0, 2309, 1710, 285, 285, 285, 285, 251, 251, 285, 209, 209, 209, 209, 209, 209, 19, 99, 3, -18, '', 0, 40, 0, 1.49, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 1), 57, 57, 6930, 0, 2423, 1738, 294, 294, 294, 294, 263, 263, 294, 195, 195, 195, 195, 195, 195, 18, 95, 3, -18, '', 0, 42, 0, 1.55, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 2), 57, 57, 7215, 0, 2508, 1767, 300, 300, 300, 300, 265, 265, 300, 212, 212, 212, 212, 212, 212, 19, 98, 3, -18, '', 0, 44, 0, 1.61, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 3), 57, 57, 7500, 0, 2594, 1795, 306, 306, 306, 306, 267, 267, 306, 229, 229, 229, 229, 229, 229, 19, 101, 3, -18, '', 0, 46, 0, 1.67, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 4), 57, 57, 7785, 0, 2679, 1824, 312, 312, 312, 312, 269, 269, 312, 246, 246, 246, 246, 246, 246, 20, 103, 3, -18, '', 0, 48, 0, 1.73, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 5), 57, 57, 8070, 0, 2765, 1852, 318, 318, 318, 318, 271, 271, 318, 263, 263, 263, 263, 263, 263, 20, 106, 3, -18, '', 0, 50, 0, 1.79, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 1), 57, 57, 4069, 4195, 1539, 960, 236, 236, 236, 236, 302, 302, 236, 141, 141, 141, 141, 141, 141, 15, 87, 1, -18, '', 0, 22, 16, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 2), 57, 57, 4240, 4366, 1596, 979, 242, 242, 242, 242, 305, 305, 242, 158, 158, 158, 158, 158, 158, 15, 88, 1, -18, '', 0, 23, 17, 1.31, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 3), 57, 57, 4411, 4537, 1653, 998, 248, 248, 248, 248, 308, 308, 248, 175, 175, 175, 175, 175, 175, 16, 90, 1, -18, '', 0, 24, 18, 1.37, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 4), 57, 57, 4582, 4708, 1710, 1017, 254, 254, 254, 254, 311, 311, 254, 192, 192, 192, 192, 192, 192, 16, 91, 1, -18, '', 0, 25, 19, 1.43, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 5), 57, 57, 4753, 4879, 1767, 1036, 260, 260, 260, 260, 314, 314, 260, 209, 209, 209, 209, 209, 209, 16, 92, 1, -18, '', 0, 26, 20, 1.49, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 1), 57, 57, 5779, 5620, 1881, 1045, 269, 269, 269, 269, 327, 327, 269, 195, 195, 195, 195, 195, 195, 16, 91, 1, -18, '', 0, 28, 19, 1.55, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 2), 57, 57, 5950, 5791, 1938, 1064, 275, 275, 275, 275, 330, 330, 275, 212, 212, 212, 212, 212, 212, 16, 92, 1, -18, '', 0, 29, 20, 1.61, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 3), 57, 57, 6121, 5962, 1995, 1083, 281, 281, 281, 281, 333, 333, 281, 229, 229, 229, 229, 229, 229, 16, 94, 1, -18, '', 0, 30, 21, 1.67, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 4), 57, 57, 6292, 6133, 2052, 1102, 287, 287, 287, 287, 336, 336, 287, 246, 246, 246, 246, 246, 246, 17, 95, 1, -18, '', 0, 31, 22, 1.73, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 5), 57, 57, 6463, 6304, 2109, 1121, 293, 293, 293, 293, 339, 339, 293, 263, 263, 263, 263, 263, 263, 17, 97, 1, -18, '', 0, 32, 23, 1.79, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 1), 57, 57, 4262, 0, 1168, 1624, 261, 261, 261, 261, 243, 243, 261, 141, 141, 141, 141, 141, 141, 17, 82, 3, -18, '', 0, 30, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 2), 57, 57, 4490, 0, 1197, 1653, 267, 267, 267, 267, 245, 245, 267, 158, 158, 158, 158, 158, 158, 17, 84, 3, -18, '', 0, 32, 0, 1.31, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 3), 57, 57, 4718, 0, 1225, 1681, 273, 273, 273, 273, 247, 247, 273, 175, 175, 175, 175, 175, 175, 18, 87, 3, -18, '', 0, 34, 0, 1.37, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 4), 57, 57, 4946, 0, 1254, 1710, 279, 279, 279, 279, 249, 249, 279, 192, 192, 192, 192, 192, 192, 18, 89, 3, -18, '', 0, 36, 0, 1.43, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 5), 57, 57, 5174, 0, 1282, 1738, 285, 285, 285, 285, 251, 251, 285, 209, 209, 209, 209, 209, 209, 19, 92, 3, -18, '', 0, 38, 0, 1.49, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 1), 57, 57, 5972, 0, 1453, 1795, 294, 294, 294, 294, 263, 263, 294, 195, 195, 195, 195, 195, 195, 18, 88, 3, -18, '', 0, 38, 0, 1.55, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 2), 57, 57, 6200, 0, 1482, 1824, 300, 300, 300, 300, 265, 265, 300, 212, 212, 212, 212, 212, 212, 19, 91, 3, -18, '', 0, 40, 0, 1.61, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 3), 57, 57, 6428, 0, 1510, 1852, 306, 306, 306, 306, 267, 267, 306, 229, 229, 229, 229, 229, 229, 19, 93, 3, -18, '', 0, 42, 0, 1.67, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 4), 57, 57, 6656, 0, 1539, 1881, 312, 312, 312, 312, 269, 269, 312, 246, 246, 246, 246, 246, 246, 20, 96, 3, -18, '', 0, 44, 0, 1.73, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 5), 57, 57, 6884, 0, 1567, 1909, 318, 318, 318, 318, 271, 271, 318, 263, 263, 263, 263, 263, 263, 20, 98, 3, -18, '', 0, 46, 0, 1.79, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 1), 57, 57, 3606, 4195, 760, 470, 230, 230, 230, 230, 302, 302, 230, 141, 141, 141, 141, 141, 141, 15, 87, 1, -18, '', 0, 21, 16, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 2), 57, 57, 3720, 4366, 779, 484, 236, 236, 236, 236, 305, 305, 236, 158, 158, 158, 158, 158, 158, 15, 88, 1, -18, '', 0, 22, 17, 1.31, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 3), 57, 57, 3834, 4537, 798, 498, 242, 242, 242, 242, 308, 308, 242, 175, 175, 175, 175, 175, 175, 16, 90, 1, -18, '', 0, 23, 18, 1.37, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 4), 57, 57, 3948, 4708, 817, 513, 248, 248, 248, 248, 311, 311, 248, 192, 192, 192, 192, 192, 192, 16, 91, 1, -18, '', 0, 24, 19, 1.43, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 5), 57, 57, 4062, 4879, 836, 527, 254, 254, 254, 254, 314, 314, 254, 209, 209, 209, 209, 209, 209, 16, 92, 1, -18, '', 0, 25, 20, 1.49, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 1), 57, 57, 5031, 5620, 931, 527, 263, 263, 263, 263, 327, 327, 263, 195, 195, 195, 195, 195, 195, 16, 91, 1, -18, '', 0, 26, 19, 1.55, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 2), 57, 57, 5145, 5791, 950, 541, 269, 269, 269, 269, 330, 330, 269, 212, 212, 212, 212, 212, 212, 16, 92, 1, -18, '', 0, 27, 20, 1.61, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 3), 57, 57, 5259, 5962, 969, 555, 275, 275, 275, 275, 333, 333, 275, 229, 229, 229, 229, 229, 229, 16, 94, 1, -18, '', 0, 28, 21, 1.67, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 4), 57, 57, 5373, 6133, 988, 570, 281, 281, 281, 281, 336, 336, 281, 246, 246, 246, 246, 246, 246, 17, 95, 1, -18, '', 0, 29, 22, 1.73, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 5), 57, 57, 5487, 6304, 1007, 584, 287, 287, 287, 287, 339, 339, 287, 263, 263, 263, 263, 263, 263, 17, 97, 1, -18, '', 0, 30, 23, 1.79, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 1), 58, 58, 5117, 0, 2001, 1624, 268, 268, 268, 268, 246, 246, 268, 143, 143, 143, 143, 143, 143, 17, 89, 3, -18, '', 0, 32, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 2), 58, 58, 5407, 0, 2088, 1653, 274, 274, 274, 274, 248, 248, 274, 160, 160, 160, 160, 160, 160, 18, 92, 3, -18, '', 0, 34, 0, 1.31, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 3), 58, 58, 5697, 0, 2175, 1682, 280, 280, 280, 280, 250, 250, 280, 177, 177, 177, 177, 177, 177, 18, 95, 3, -18, '', 0, 36, 0, 1.37, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 4), 58, 58, 5987, 0, 2262, 1711, 286, 286, 286, 286, 252, 252, 286, 194, 194, 194, 194, 194, 194, 19, 98, 3, -18, '', 0, 38, 0, 1.43, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 5), 58, 58, 6277, 0, 2349, 1740, 292, 292, 292, 292, 254, 254, 292, 211, 211, 211, 211, 211, 211, 19, 101, 3, -18, '', 0, 40, 0, 1.49, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 1), 58, 58, 7147, 0, 2465, 1769, 302, 302, 302, 302, 266, 266, 302, 197, 197, 197, 197, 197, 197, 18, 96, 3, -18, '', 0, 42, 0, 1.55, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 2), 58, 58, 7437, 0, 2552, 1798, 308, 308, 308, 308, 268, 268, 308, 214, 214, 214, 214, 214, 214, 19, 99, 3, -18, '', 0, 44, 0, 1.61, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 3), 58, 58, 7727, 0, 2639, 1827, 314, 314, 314, 314, 270, 270, 314, 231, 231, 231, 231, 231, 231, 19, 102, 3, -18, '', 0, 46, 0, 1.67, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 4), 58, 58, 8017, 0, 2726, 1856, 320, 320, 320, 320, 272, 272, 320, 248, 248, 248, 248, 248, 248, 20, 105, 3, -18, '', 0, 48, 0, 1.73, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 5), 58, 58, 8307, 0, 2813, 1885, 326, 326, 326, 326, 274, 274, 326, 265, 265, 265, 265, 265, 265, 20, 108, 3, -18, '', 0, 50, 0, 1.79, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 1), 58, 58, 4219, 4315, 1566, 976, 242, 242, 242, 242, 306, 306, 242, 143, 143, 143, 143, 143, 143, 15, 88, 1, -18, '', 0, 22, 16, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 2), 58, 58, 4393, 4489, 1624, 995, 248, 248, 248, 248, 309, 309, 248, 160, 160, 160, 160, 160, 160, 16, 90, 1, -18, '', 0, 23, 17, 1.31, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 3), 58, 58, 4567, 4663, 1682, 1015, 254, 254, 254, 254, 312, 312, 254, 177, 177, 177, 177, 177, 177, 16, 91, 1, -18, '', 0, 24, 18, 1.37, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 4), 58, 58, 4741, 4837, 1740, 1034, 260, 260, 260, 260, 315, 315, 260, 194, 194, 194, 194, 194, 194, 16, 92, 1, -18, '', 0, 25, 19, 1.43, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 5), 58, 58, 4915, 5011, 1798, 1053, 266, 266, 266, 266, 318, 318, 266, 211, 211, 211, 211, 211, 211, 16, 94, 1, -18, '', 0, 26, 20, 1.49, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 1), 58, 58, 5959, 5765, 1914, 1063, 276, 276, 276, 276, 331, 331, 276, 197, 197, 197, 197, 197, 197, 16, 92, 1, -18, '', 0, 28, 19, 1.55, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 2), 58, 58, 6133, 5939, 1972, 1082, 282, 282, 282, 282, 334, 334, 282, 214, 214, 214, 214, 214, 214, 16, 94, 1, -18, '', 0, 29, 20, 1.61, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 3), 58, 58, 6307, 6113, 2030, 1102, 288, 288, 288, 288, 337, 337, 288, 231, 231, 231, 231, 231, 231, 17, 95, 1, -18, '', 0, 30, 21, 1.67, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 4), 58, 58, 6481, 6287, 2088, 1121, 294, 294, 294, 294, 340, 340, 294, 248, 248, 248, 248, 248, 248, 17, 97, 1, -18, '', 0, 31, 22, 1.73, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 5), 58, 58, 6655, 6461, 2146, 1140, 300, 300, 300, 300, 343, 343, 300, 265, 265, 265, 265, 265, 265, 17, 98, 1, -18, '', 0, 32, 23, 1.79, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 1), 58, 58, 4420, 0, 1189, 1653, 268, 268, 268, 268, 246, 246, 268, 143, 143, 143, 143, 143, 143, 17, 83, 3, -18, '', 0, 30, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 2), 58, 58, 4652, 0, 1218, 1682, 274, 274, 274, 274, 248, 248, 274, 160, 160, 160, 160, 160, 160, 18, 85, 3, -18, '', 0, 32, 0, 1.31, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 3), 58, 58, 4884, 0, 1247, 1711, 280, 280, 280, 280, 250, 250, 280, 177, 177, 177, 177, 177, 177, 18, 88, 3, -18, '', 0, 34, 0, 1.37, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 4), 58, 58, 5116, 0, 1276, 1740, 286, 286, 286, 286, 252, 252, 286, 194, 194, 194, 194, 194, 194, 19, 91, 3, -18, '', 0, 36, 0, 1.43, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 5), 58, 58, 5348, 0, 1305, 1769, 292, 292, 292, 292, 254, 254, 292, 211, 211, 211, 211, 211, 211, 19, 93, 3, -18, '', 0, 38, 0, 1.49, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 1), 58, 58, 6160, 0, 1479, 1827, 302, 302, 302, 302, 266, 266, 302, 197, 197, 197, 197, 197, 197, 18, 89, 3, -18, '', 0, 38, 0, 1.55, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 2), 58, 58, 6392, 0, 1508, 1856, 308, 308, 308, 308, 268, 268, 308, 214, 214, 214, 214, 214, 214, 19, 92, 3, -18, '', 0, 40, 0, 1.61, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 3), 58, 58, 6624, 0, 1537, 1885, 314, 314, 314, 314, 270, 270, 314, 231, 231, 231, 231, 231, 231, 19, 95, 3, -18, '', 0, 42, 0, 1.67, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 4), 58, 58, 6856, 0, 1566, 1914, 320, 320, 320, 320, 272, 272, 320, 248, 248, 248, 248, 248, 248, 20, 97, 3, -18, '', 0, 44, 0, 1.73, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 5), 58, 58, 7088, 0, 1595, 1943, 326, 326, 326, 326, 274, 274, 326, 265, 265, 265, 265, 265, 265, 20, 100, 3, -18, '', 0, 46, 0, 1.79, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 1), 58, 58, 3743, 4315, 773, 478, 236, 236, 236, 236, 306, 306, 236, 143, 143, 143, 143, 143, 143, 15, 88, 1, -18, '', 0, 21, 16, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 2), 58, 58, 3859, 4489, 792, 493, 242, 242, 242, 242, 309, 309, 242, 160, 160, 160, 160, 160, 160, 16, 90, 1, -18, '', 0, 22, 17, 1.31, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 3), 58, 58, 3975, 4663, 812, 507, 248, 248, 248, 248, 312, 312, 248, 177, 177, 177, 177, 177, 177, 16, 91, 1, -18, '', 0, 23, 18, 1.37, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 4), 58, 58, 4091, 4837, 831, 522, 254, 254, 254, 254, 315, 315, 254, 194, 194, 194, 194, 194, 194, 16, 92, 1, -18, '', 0, 24, 19, 1.43, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 5), 58, 58, 4207, 5011, 850, 536, 260, 260, 260, 260, 318, 318, 260, 211, 211, 211, 211, 211, 211, 16, 94, 1, -18, '', 0, 25, 20, 1.49, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 1), 58, 58, 5193, 5765, 947, 536, 270, 270, 270, 270, 331, 331, 270, 197, 197, 197, 197, 197, 197, 16, 92, 1, -18, '', 0, 26, 19, 1.55, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 2), 58, 58, 5309, 5939, 966, 551, 276, 276, 276, 276, 334, 334, 276, 214, 214, 214, 214, 214, 214, 16, 94, 1, -18, '', 0, 27, 20, 1.61, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 3), 58, 58, 5425, 6113, 986, 565, 282, 282, 282, 282, 337, 337, 282, 231, 231, 231, 231, 231, 231, 17, 95, 1, -18, '', 0, 28, 21, 1.67, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 4), 58, 58, 5541, 6287, 1005, 580, 288, 288, 288, 288, 340, 340, 288, 248, 248, 248, 248, 248, 248, 17, 97, 1, -18, '', 0, 29, 22, 1.73, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 5), 58, 58, 5657, 6461, 1024, 594, 294, 294, 294, 294, 343, 343, 294, 265, 265, 265, 265, 265, 265, 17, 98, 1, -18, '', 0, 30, 23, 1.79, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 1), 59, 59, 5303, 0, 2036, 1652, 274, 274, 274, 274, 249, 249, 274, 145, 145, 145, 145, 145, 145, 17, 91, 3, -18, '', 0, 32, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 2), 59, 59, 5598, 0, 2124, 1682, 280, 280, 280, 280, 251, 251, 280, 162, 162, 162, 162, 162, 162, 18, 94, 3, -18, '', 0, 34, 0, 1.31, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 3), 59, 59, 5893, 0, 2213, 1711, 286, 286, 286, 286, 253, 253, 286, 179, 179, 179, 179, 179, 179, 18, 96, 3, -18, '', 0, 36, 0, 1.37, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 4), 59, 59, 6188, 0, 2301, 1741, 292, 292, 292, 292, 255, 255, 292, 196, 196, 196, 196, 196, 196, 19, 99, 3, -18, '', 0, 38, 0, 1.43, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 5), 59, 59, 6483, 0, 2390, 1770, 298, 298, 298, 298, 257, 257, 298, 213, 213, 213, 213, 213, 213, 19, 102, 3, -18, '', 0, 40, 0, 1.49, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 1), 59, 59, 7368, 0, 2508, 1799, 308, 308, 308, 308, 269, 269, 308, 201, 201, 201, 201, 201, 201, 19, 98, 3, -18, '', 0, 42, 0, 1.55, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 2), 59, 59, 7663, 0, 2596, 1829, 314, 314, 314, 314, 271, 271, 314, 218, 218, 218, 218, 218, 218, 19, 101, 3, -18, '', 0, 44, 0, 1.61, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 3), 59, 59, 7958, 0, 2685, 1858, 320, 320, 320, 320, 273, 273, 320, 235, 235, 235, 235, 235, 235, 20, 103, 3, -18, '', 0, 46, 0, 1.67, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 4), 59, 59, 8253, 0, 2773, 1888, 326, 326, 326, 326, 275, 275, 326, 252, 252, 252, 252, 252, 252, 20, 106, 3, -18, '', 0, 48, 0, 1.73, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 5), 59, 59, 8548, 0, 2862, 1917, 332, 332, 332, 332, 277, 277, 332, 269, 269, 269, 269, 269, 269, 21, 109, 3, -18, '', 0, 50, 0, 1.79, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 1), 59, 59, 4373, 4437, 1593, 993, 248, 248, 248, 248, 309, 309, 248, 145, 145, 145, 145, 145, 145, 16, 90, 1, -18, '', 0, 22, 16, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 2), 59, 59, 4550, 4614, 1652, 1013, 254, 254, 254, 254, 312, 312, 254, 162, 162, 162, 162, 162, 162, 16, 91, 1, -18, '', 0, 23, 17, 1.31, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 3), 59, 59, 4727, 4791, 1711, 1033, 260, 260, 260, 260, 315, 315, 260, 179, 179, 179, 179, 179, 179, 16, 92, 1, -18, '', 0, 24, 18, 1.37, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 4), 59, 59, 4904, 4968, 1770, 1052, 266, 266, 266, 266, 318, 318, 266, 196, 196, 196, 196, 196, 196, 16, 94, 1, -18, '', 0, 25, 19, 1.43, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 5), 59, 59, 5081, 5145, 1829, 1072, 272, 272, 272, 272, 321, 321, 272, 213, 213, 213, 213, 213, 213, 17, 95, 1, -18, '', 0, 26, 20, 1.49, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 1), 59, 59, 6143, 5912, 1947, 1081, 282, 282, 282, 282, 334, 334, 282, 201, 201, 201, 201, 201, 201, 16, 94, 1, -18, '', 0, 28, 19, 1.55, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 2), 59, 59, 6320, 6089, 2006, 1101, 288, 288, 288, 288, 337, 337, 288, 218, 218, 218, 218, 218, 218, 17, 95, 1, -18, '', 0, 29, 20, 1.61, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 3), 59, 59, 6497, 6266, 2065, 1121, 294, 294, 294, 294, 340, 340, 294, 235, 235, 235, 235, 235, 235, 17, 97, 1, -18, '', 0, 30, 21, 1.67, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 4), 59, 59, 6674, 6443, 2124, 1140, 300, 300, 300, 300, 343, 343, 300, 252, 252, 252, 252, 252, 252, 17, 98, 1, -18, '', 0, 31, 22, 1.73, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 5), 59, 59, 6851, 6620, 2183, 1160, 306, 306, 306, 306, 346, 346, 306, 269, 269, 269, 269, 269, 269, 17, 99, 1, -18, '', 0, 32, 23, 1.79, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 1), 59, 59, 4583, 0, 1209, 1681, 274, 274, 274, 274, 249, 249, 274, 145, 145, 145, 145, 145, 145, 17, 84, 3, -18, '', 0, 30, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 2), 59, 59, 4819, 0, 1239, 1711, 280, 280, 280, 280, 251, 251, 280, 162, 162, 162, 162, 162, 162, 18, 87, 3, -18, '', 0, 32, 0, 1.31, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 3), 59, 59, 5055, 0, 1268, 1740, 286, 286, 286, 286, 253, 253, 286, 179, 179, 179, 179, 179, 179, 18, 89, 3, -18, '', 0, 34, 0, 1.37, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 4), 59, 59, 5291, 0, 1298, 1770, 292, 292, 292, 292, 255, 255, 292, 196, 196, 196, 196, 196, 196, 19, 92, 3, -18, '', 0, 36, 0, 1.43, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 5), 59, 59, 5527, 0, 1327, 1799, 298, 298, 298, 298, 257, 257, 298, 213, 213, 213, 213, 213, 213, 19, 95, 3, -18, '', 0, 38, 0, 1.49, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 1), 59, 59, 6353, 0, 1504, 1858, 308, 308, 308, 308, 269, 269, 308, 201, 201, 201, 201, 201, 201, 19, 91, 3, -18, '', 0, 38, 0, 1.55, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 2), 59, 59, 6589, 0, 1534, 1888, 314, 314, 314, 314, 271, 271, 314, 218, 218, 218, 218, 218, 218, 19, 93, 3, -18, '', 0, 40, 0, 1.61, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 3), 59, 59, 6825, 0, 1563, 1917, 320, 320, 320, 320, 273, 273, 320, 235, 235, 235, 235, 235, 235, 20, 96, 3, -18, '', 0, 42, 0, 1.67, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 4), 59, 59, 7061, 0, 1593, 1947, 326, 326, 326, 326, 275, 275, 326, 252, 252, 252, 252, 252, 252, 20, 98, 3, -18, '', 0, 44, 0, 1.73, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 5), 59, 59, 7297, 0, 1622, 1976, 332, 332, 332, 332, 277, 277, 332, 269, 269, 269, 269, 269, 269, 21, 101, 3, -18, '', 0, 46, 0, 1.79, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 1), 59, 59, 3884, 4437, 786, 486, 241, 241, 241, 241, 309, 309, 241, 145, 145, 145, 145, 145, 145, 16, 90, 1, -18, '', 0, 21, 16, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 2), 59, 59, 4002, 4614, 806, 501, 247, 247, 247, 247, 312, 312, 247, 162, 162, 162, 162, 162, 162, 16, 91, 1, -18, '', 0, 22, 17, 1.31, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 3), 59, 59, 4120, 4791, 826, 516, 253, 253, 253, 253, 315, 315, 253, 179, 179, 179, 179, 179, 179, 16, 92, 1, -18, '', 0, 23, 18, 1.37, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 4), 59, 59, 4238, 4968, 845, 531, 259, 259, 259, 259, 318, 318, 259, 196, 196, 196, 196, 196, 196, 16, 94, 1, -18, '', 0, 24, 19, 1.43, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 5), 59, 59, 4356, 5145, 865, 545, 265, 265, 265, 265, 321, 321, 265, 213, 213, 213, 213, 213, 213, 17, 95, 1, -18, '', 0, 25, 20, 1.49, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 1), 59, 59, 5359, 5912, 963, 545, 275, 275, 275, 275, 334, 334, 275, 201, 201, 201, 201, 201, 201, 16, 94, 1, -18, '', 0, 26, 19, 1.55, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 2), 59, 59, 5477, 6089, 983, 560, 281, 281, 281, 281, 337, 337, 281, 218, 218, 218, 218, 218, 218, 17, 95, 1, -18, '', 0, 27, 20, 1.61, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 3), 59, 59, 5595, 6266, 1003, 575, 287, 287, 287, 287, 340, 340, 287, 235, 235, 235, 235, 235, 235, 17, 97, 1, -18, '', 0, 28, 21, 1.67, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 4), 59, 59, 5713, 6443, 1022, 590, 293, 293, 293, 293, 343, 343, 293, 252, 252, 252, 252, 252, 252, 17, 98, 1, -18, '', 0, 29, 22, 1.73, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 5), 59, 59, 5831, 6620, 1042, 604, 299, 299, 299, 299, 346, 346, 299, 269, 269, 269, 269, 269, 269, 17, 99, 1, -18, '', 0, 30, 23, 1.79, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 1), 60, 60, 5495, 0, 2070, 1680, 282, 282, 282, 282, 252, 252, 282, 148, 148, 148, 148, 148, 148, 18, 92, 3, -18, '', 0, 33, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 2), 60, 60, 5795, 0, 2160, 1710, 289, 289, 289, 289, 254, 254, 289, 166, 166, 166, 166, 166, 166, 18, 95, 3, -18, '', 0, 35, 0, 1.31, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 3), 60, 60, 6095, 0, 2250, 1740, 296, 296, 296, 296, 256, 256, 296, 184, 184, 184, 184, 184, 184, 19, 98, 3, -18, '', 0, 37, 0, 1.37, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 4), 60, 60, 6395, 0, 2340, 1770, 303, 303, 303, 303, 258, 258, 303, 202, 202, 202, 202, 202, 202, 19, 101, 3, -18, '', 0, 39, 0, 1.43, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 5), 60, 60, 6695, 0, 2430, 1800, 310, 310, 310, 310, 260, 260, 310, 220, 220, 220, 220, 220, 220, 20, 103, 3, -18, '', 0, 41, 0, 1.49, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 1), 60, 60, 7595, 0, 2550, 1830, 317, 317, 317, 317, 272, 272, 317, 204, 204, 204, 204, 204, 204, 19, 99, 3, -18, '', 0, 43, 0, 1.55, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 2), 60, 60, 7895, 0, 2640, 1860, 324, 324, 324, 324, 274, 274, 324, 222, 222, 222, 222, 222, 222, 19, 102, 3, -18, '', 0, 45, 0, 1.61, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 3), 60, 60, 8195, 0, 2730, 1890, 331, 331, 331, 331, 276, 276, 331, 240, 240, 240, 240, 240, 240, 20, 105, 3, -18, '', 0, 47, 0, 1.67, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 4), 60, 60, 8495, 0, 2820, 1920, 338, 338, 338, 338, 278, 278, 338, 258, 258, 258, 258, 258, 258, 20, 108, 3, -18, '', 0, 49, 0, 1.73, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 5), 60, 60, 8795, 0, 2910, 1950, 345, 345, 345, 345, 280, 280, 345, 276, 276, 276, 276, 276, 276, 21, 110, 3, -18, '', 0, 51, 0, 1.79, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 1), 60, 60, 4531, 4560, 1620, 1010, 255, 255, 255, 255, 313, 313, 255, 148, 148, 148, 148, 148, 148, 16, 91, 1, -18, '', 0, 23, 17, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 2), 60, 60, 4711, 4740, 1680, 1030, 262, 262, 262, 262, 316, 316, 262, 166, 166, 166, 166, 166, 166, 16, 92, 1, -18, '', 0, 24, 18, 1.31, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 3), 60, 60, 4891, 4920, 1740, 1050, 269, 269, 269, 269, 319, 319, 269, 184, 184, 184, 184, 184, 184, 16, 94, 1, -18, '', 0, 25, 19, 1.37, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 4), 60, 60, 5071, 5100, 1800, 1070, 276, 276, 276, 276, 322, 322, 276, 202, 202, 202, 202, 202, 202, 17, 95, 1, -18, '', 0, 26, 20, 1.43, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 5), 60, 60, 5251, 5280, 1860, 1090, 283, 283, 283, 283, 325, 325, 283, 220, 220, 220, 220, 220, 220, 17, 97, 1, -18, '', 0, 27, 21, 1.49, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 1), 60, 60, 6331, 6060, 1980, 1100, 290, 290, 290, 290, 338, 338, 290, 204, 204, 204, 204, 204, 204, 17, 95, 1, -18, '', 0, 29, 20, 1.55, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 2), 60, 60, 6511, 6240, 2040, 1120, 297, 297, 297, 297, 341, 341, 297, 222, 222, 222, 222, 222, 222, 17, 97, 1, -18, '', 0, 30, 21, 1.61, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 3), 60, 60, 6691, 6420, 2100, 1140, 304, 304, 304, 304, 344, 344, 304, 240, 240, 240, 240, 240, 240, 17, 98, 1, -18, '', 0, 31, 22, 1.67, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 4), 60, 60, 6871, 6600, 2160, 1160, 311, 311, 311, 311, 347, 347, 311, 258, 258, 258, 258, 258, 258, 17, 99, 1, -18, '', 0, 32, 23, 1.73, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 5), 60, 60, 7051, 6780, 2220, 1180, 318, 318, 318, 318, 350, 350, 318, 276, 276, 276, 276, 276, 276, 18, 101, 1, -18, '', 0, 33, 24, 1.79, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 1), 60, 60, 4750, 0, 1230, 1710, 282, 282, 282, 282, 252, 252, 282, 148, 148, 148, 148, 148, 148, 18, 85, 3, -18, '', 0, 31, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 2), 60, 60, 4990, 0, 1260, 1740, 289, 289, 289, 289, 254, 254, 289, 166, 166, 166, 166, 166, 166, 18, 88, 3, -18, '', 0, 33, 0, 1.31, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 3), 60, 60, 5230, 0, 1290, 1770, 296, 296, 296, 296, 256, 256, 296, 184, 184, 184, 184, 184, 184, 19, 91, 3, -18, '', 0, 35, 0, 1.37, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 4), 60, 60, 5470, 0, 1320, 1800, 303, 303, 303, 303, 258, 258, 303, 202, 202, 202, 202, 202, 202, 19, 93, 3, -18, '', 0, 37, 0, 1.43, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 5), 60, 60, 5710, 0, 1350, 1830, 310, 310, 310, 310, 260, 260, 310, 220, 220, 220, 220, 220, 220, 20, 96, 3, -18, '', 0, 39, 0, 1.49, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 1), 60, 60, 6550, 0, 1530, 1890, 317, 317, 317, 317, 272, 272, 317, 204, 204, 204, 204, 204, 204, 19, 92, 3, -18, '', 0, 39, 0, 1.55, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 2), 60, 60, 6790, 0, 1560, 1920, 324, 324, 324, 324, 274, 274, 324, 222, 222, 222, 222, 222, 222, 19, 95, 3, -18, '', 0, 41, 0, 1.61, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 3), 60, 60, 7030, 0, 1590, 1950, 331, 331, 331, 331, 276, 276, 331, 240, 240, 240, 240, 240, 240, 20, 97, 3, -18, '', 0, 43, 0, 1.67, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 4), 60, 60, 7270, 0, 1620, 1980, 338, 338, 338, 338, 278, 278, 338, 258, 258, 258, 258, 258, 258, 20, 100, 3, -18, '', 0, 45, 0, 1.73, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 5), 60, 60, 7510, 0, 1650, 2010, 345, 345, 345, 345, 280, 280, 345, 276, 276, 276, 276, 276, 276, 21, 102, 3, -18, '', 0, 47, 0, 1.79, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 1), 60, 60, 4030, 4560, 800, 495, 248, 248, 248, 248, 313, 313, 248, 148, 148, 148, 148, 148, 148, 16, 91, 1, -18, '', 0, 22, 17, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 2), 60, 60, 4150, 4740, 820, 510, 255, 255, 255, 255, 316, 316, 255, 166, 166, 166, 166, 166, 166, 16, 92, 1, -18, '', 0, 23, 18, 1.31, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 3), 60, 60, 4270, 4920, 840, 525, 262, 262, 262, 262, 319, 319, 262, 184, 184, 184, 184, 184, 184, 16, 94, 1, -18, '', 0, 24, 19, 1.37, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 4), 60, 60, 4390, 5100, 860, 540, 269, 269, 269, 269, 322, 322, 269, 202, 202, 202, 202, 202, 202, 17, 95, 1, -18, '', 0, 25, 20, 1.43, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 5), 60, 60, 4510, 5280, 880, 555, 276, 276, 276, 276, 325, 325, 276, 220, 220, 220, 220, 220, 220, 17, 97, 1, -18, '', 0, 26, 21, 1.49, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 1), 60, 60, 5530, 6060, 980, 555, 283, 283, 283, 283, 338, 338, 283, 204, 204, 204, 204, 204, 204, 17, 95, 1, -18, '', 0, 27, 20, 1.55, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 2), 60, 60, 5650, 6240, 1000, 570, 290, 290, 290, 290, 341, 341, 290, 222, 222, 222, 222, 222, 222, 17, 97, 1, -18, '', 0, 28, 21, 1.61, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 3), 60, 60, 5770, 6420, 1020, 585, 297, 297, 297, 297, 344, 344, 297, 240, 240, 240, 240, 240, 240, 17, 98, 1, -18, '', 0, 29, 22, 1.67, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 4), 60, 60, 5890, 6600, 1040, 600, 304, 304, 304, 304, 347, 347, 304, 258, 258, 258, 258, 258, 258, 17, 99, 1, -18, '', 0, 30, 23, 1.73, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 5), 60, 60, 6010, 6780, 1060, 615, 311, 311, 311, 311, 350, 350, 311, 276, 276, 276, 276, 276, 276, 18, 101, 1, -18, '', 0, 31, 24, 1.79, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 1), 61, 61, 5692, 0, 2105, 1708, 288, 288, 288, 288, 255, 255, 288, 150, 150, 150, 150, 150, 150, 21, 109, 4, -20, '', 0, 33, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 2), 61, 61, 5997, 0, 2196, 1739, 295, 295, 295, 295, 257, 257, 295, 168, 168, 168, 168, 168, 168, 21, 111, 4, -21, '', 0, 35, 0, 1.31, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 3), 61, 61, 6302, 0, 2288, 1769, 302, 302, 302, 302, 259, 259, 302, 186, 186, 186, 186, 186, 186, 22, 114, 4, -22, '', 0, 37, 0, 1.37, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 4), 61, 61, 6607, 0, 2379, 1800, 309, 309, 309, 309, 261, 261, 309, 204, 204, 204, 204, 204, 204, 22, 117, 4, -23, '', 0, 39, 0, 1.43, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 5), 61, 61, 6912, 0, 2471, 1830, 316, 316, 316, 316, 263, 263, 316, 222, 222, 222, 222, 222, 222, 23, 120, 4, -24, '', 0, 41, 0, 1.49, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 1), 61, 61, 7827, 0, 2593, 1860, 323, 323, 323, 323, 275, 275, 323, 206, 206, 206, 206, 206, 206, 22, 116, 4, -25, '', 0, 43, 0, 1.55, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 2), 61, 61, 8132, 0, 2684, 1891, 330, 330, 330, 330, 277, 277, 330, 224, 224, 224, 224, 224, 224, 23, 118, 4, -26, '', 0, 45, 0, 1.61, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 3), 61, 61, 8437, 0, 2776, 1921, 337, 337, 337, 337, 279, 279, 337, 242, 242, 242, 242, 242, 242, 23, 121, 4, -27, '', 0, 47, 0, 1.67, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 4), 61, 61, 8742, 0, 2867, 1952, 344, 344, 344, 344, 281, 281, 344, 260, 260, 260, 260, 260, 260, 24, 124, 4, -28, '', 0, 49, 0, 1.73, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 5), 61, 61, 9047, 0, 2959, 1982, 351, 351, 351, 351, 283, 283, 351, 278, 278, 278, 278, 278, 278, 24, 127, 4, -29, '', 0, 51, 0, 1.79, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 1), 61, 61, 4693, 4685, 1647, 1027, 261, 261, 261, 261, 316, 316, 261, 150, 150, 150, 150, 150, 150, 16, 92, 1, -18, '', 0, 23, 17, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 2), 61, 61, 4876, 4868, 1708, 1047, 268, 268, 268, 268, 319, 319, 268, 168, 168, 168, 168, 168, 168, 16, 94, 1, -18, '', 0, 24, 18, 1.31, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 3), 61, 61, 5059, 5051, 1769, 1068, 275, 275, 275, 275, 322, 322, 275, 186, 186, 186, 186, 186, 186, 17, 95, 1, -18, '', 0, 25, 19, 1.37, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 4), 61, 61, 5242, 5234, 1830, 1088, 282, 282, 282, 282, 325, 325, 282, 204, 204, 204, 204, 204, 204, 17, 97, 1, -18, '', 0, 26, 20, 1.43, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 5), 61, 61, 5425, 5417, 1891, 1108, 289, 289, 289, 289, 328, 328, 289, 222, 222, 222, 222, 222, 222, 17, 98, 1, -18, '', 0, 27, 21, 1.49, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 1), 61, 61, 6523, 6210, 2013, 1118, 296, 296, 296, 296, 341, 341, 296, 206, 206, 206, 206, 206, 206, 17, 97, 1, -18, '', 0, 29, 20, 1.55, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 2), 61, 61, 6706, 6393, 2074, 1138, 303, 303, 303, 303, 344, 344, 303, 224, 224, 224, 224, 224, 224, 17, 98, 1, -18, '', 0, 30, 21, 1.61, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 3), 61, 61, 6889, 6576, 2135, 1159, 310, 310, 310, 310, 347, 347, 310, 242, 242, 242, 242, 242, 242, 17, 99, 1, -18, '', 0, 31, 22, 1.67, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 4), 61, 61, 7072, 6759, 2196, 1179, 317, 317, 317, 317, 350, 350, 317, 260, 260, 260, 260, 260, 260, 18, 101, 1, -18, '', 0, 32, 23, 1.73, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 5), 61, 61, 7255, 6942, 2257, 1199, 324, 324, 324, 324, 353, 353, 324, 278, 278, 278, 278, 278, 278, 18, 102, 1, -18, '', 0, 33, 24, 1.79, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 1), 61, 61, 4921, 0, 1250, 1738, 288, 288, 288, 288, 255, 255, 288, 150, 150, 150, 150, 150, 150, 21, 102, 4, -20, '', 0, 31, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 2), 61, 61, 5165, 0, 1281, 1769, 295, 295, 295, 295, 257, 257, 295, 168, 168, 168, 168, 168, 168, 21, 104, 4, -21, '', 0, 33, 0, 1.31, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 3), 61, 61, 5409, 0, 1311, 1799, 302, 302, 302, 302, 259, 259, 302, 186, 186, 186, 186, 186, 186, 22, 107, 4, -22, '', 0, 35, 0, 1.37, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 4), 61, 61, 5653, 0, 1342, 1830, 309, 309, 309, 309, 261, 261, 309, 204, 204, 204, 204, 204, 204, 22, 110, 4, -23, '', 0, 37, 0, 1.43, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 5), 61, 61, 5897, 0, 1372, 1860, 316, 316, 316, 316, 263, 263, 316, 222, 222, 222, 222, 222, 222, 23, 112, 4, -24, '', 0, 39, 0, 1.49, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 1), 61, 61, 6751, 0, 1555, 1921, 323, 323, 323, 323, 275, 275, 323, 206, 206, 206, 206, 206, 206, 22, 108, 4, -25, '', 0, 39, 0, 1.55, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 2), 61, 61, 6995, 0, 1586, 1952, 330, 330, 330, 330, 277, 277, 330, 224, 224, 224, 224, 224, 224, 23, 111, 4, -26, '', 0, 41, 0, 1.61, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 3), 61, 61, 7239, 0, 1616, 1982, 337, 337, 337, 337, 279, 279, 337, 242, 242, 242, 242, 242, 242, 23, 113, 4, -27, '', 0, 43, 0, 1.67, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 4), 61, 61, 7483, 0, 1647, 2013, 344, 344, 344, 344, 281, 281, 344, 260, 260, 260, 260, 260, 260, 24, 116, 4, -28, '', 0, 45, 0, 1.73, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 5), 61, 61, 7727, 0, 1677, 2043, 351, 351, 351, 351, 283, 283, 351, 278, 278, 278, 278, 278, 278, 24, 119, 4, -29, '', 0, 47, 0, 1.79, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 1), 61, 61, 4179, 4685, 813, 503, 253, 253, 253, 253, 316, 316, 253, 150, 150, 150, 150, 150, 150, 16, 92, 1, -18, '', 0, 22, 17, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 2), 61, 61, 4301, 4868, 833, 518, 260, 260, 260, 260, 319, 319, 260, 168, 168, 168, 168, 168, 168, 16, 94, 1, -18, '', 0, 23, 18, 1.31, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 3), 61, 61, 4423, 5051, 854, 533, 267, 267, 267, 267, 322, 322, 267, 186, 186, 186, 186, 186, 186, 17, 95, 1, -18, '', 0, 24, 19, 1.37, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 4), 61, 61, 4545, 5234, 874, 549, 274, 274, 274, 274, 325, 325, 274, 204, 204, 204, 204, 204, 204, 17, 97, 1, -18, '', 0, 25, 20, 1.43, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 5), 61, 61, 4667, 5417, 894, 564, 281, 281, 281, 281, 328, 328, 281, 222, 222, 222, 222, 222, 222, 17, 98, 1, -18, '', 0, 26, 21, 1.49, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 1), 61, 61, 5704, 6210, 996, 564, 288, 288, 288, 288, 341, 341, 288, 206, 206, 206, 206, 206, 206, 17, 97, 1, -18, '', 0, 27, 20, 1.55, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 2), 61, 61, 5826, 6393, 1016, 579, 295, 295, 295, 295, 344, 344, 295, 224, 224, 224, 224, 224, 224, 17, 98, 1, -18, '', 0, 28, 21, 1.61, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 3), 61, 61, 5948, 6576, 1037, 594, 302, 302, 302, 302, 347, 347, 302, 242, 242, 242, 242, 242, 242, 17, 99, 1, -18, '', 0, 29, 22, 1.67, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 4), 61, 61, 6070, 6759, 1057, 610, 309, 309, 309, 309, 350, 350, 309, 260, 260, 260, 260, 260, 260, 18, 101, 1, -18, '', 0, 30, 23, 1.73, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 5), 61, 61, 6192, 6942, 1077, 625, 316, 316, 316, 316, 353, 353, 316, 278, 278, 278, 278, 278, 278, 18, 102, 1, -18, '', 0, 31, 24, 1.79, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 1), 62, 62, 5894, 0, 2139, 1736, 295, 295, 295, 295, 258, 258, 295, 152, 152, 152, 152, 152, 152, 24, 125, 4, -21, '', 0, 33, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 2), 62, 62, 6204, 0, 2232, 1767, 302, 302, 302, 302, 260, 260, 302, 170, 170, 170, 170, 170, 170, 25, 128, 4, -22, '', 0, 35, 0, 1.31, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 3), 62, 62, 6514, 0, 2325, 1798, 309, 309, 309, 309, 262, 262, 309, 188, 188, 188, 188, 188, 188, 25, 131, 4, -23, '', 0, 37, 0, 1.37, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 4), 62, 62, 6824, 0, 2418, 1829, 316, 316, 316, 316, 264, 264, 316, 206, 206, 206, 206, 206, 206, 26, 133, 4, -24, '', 0, 39, 0, 1.43, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 5), 62, 62, 7134, 0, 2511, 1860, 323, 323, 323, 323, 266, 266, 323, 224, 224, 224, 224, 224, 224, 26, 136, 4, -25, '', 0, 41, 0, 1.49, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 1), 62, 62, 8064, 0, 2635, 1891, 331, 331, 331, 331, 278, 278, 331, 210, 210, 210, 210, 210, 210, 25, 132, 4, -26, '', 0, 43, 0, 1.55, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 2), 62, 62, 8374, 0, 2728, 1922, 338, 338, 338, 338, 280, 280, 338, 228, 228, 228, 228, 228, 228, 26, 135, 4, -27, '', 0, 45, 0, 1.61, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 3), 62, 62, 8684, 0, 2821, 1953, 345, 345, 345, 345, 282, 282, 345, 246, 246, 246, 246, 246, 246, 26, 138, 4, -28, '', 0, 47, 0, 1.67, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 4), 62, 62, 8994, 0, 2914, 1984, 352, 352, 352, 352, 284, 284, 352, 264, 264, 264, 264, 264, 264, 27, 140, 4, -29, '', 0, 49, 0, 1.73, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 5), 62, 62, 9304, 0, 3007, 2015, 359, 359, 359, 359, 286, 286, 359, 282, 282, 282, 282, 282, 282, 27, 143, 4, -30, '', 0, 51, 0, 1.79, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 1), 62, 62, 4859, 4811, 1674, 1043, 267, 267, 267, 267, 320, 320, 267, 152, 152, 152, 152, 152, 152, 16, 94, 1, -18, '', 0, 23, 17, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 2), 62, 62, 5045, 4997, 1736, 1064, 274, 274, 274, 274, 323, 323, 274, 170, 170, 170, 170, 170, 170, 17, 95, 1, -18, '', 0, 24, 18, 1.31, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 3), 62, 62, 5231, 5183, 1798, 1085, 281, 281, 281, 281, 326, 326, 281, 188, 188, 188, 188, 188, 188, 17, 97, 1, -18, '', 0, 25, 19, 1.37, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 4), 62, 62, 5417, 5369, 1860, 1105, 288, 288, 288, 288, 329, 329, 288, 206, 206, 206, 206, 206, 206, 17, 98, 1, -18, '', 0, 26, 20, 1.43, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 5), 62, 62, 5603, 5555, 1922, 1126, 295, 295, 295, 295, 332, 332, 295, 224, 224, 224, 224, 224, 224, 17, 99, 1, -18, '', 0, 27, 21, 1.49, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 1), 62, 62, 6719, 6361, 2046, 1136, 303, 303, 303, 303, 345, 345, 303, 210, 210, 210, 210, 210, 210, 17, 98, 1, -18, '', 0, 29, 20, 1.55, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 2), 62, 62, 6905, 6547, 2108, 1157, 310, 310, 310, 310, 348, 348, 310, 228, 228, 228, 228, 228, 228, 17, 99, 1, -18, '', 0, 30, 21, 1.61, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 3), 62, 62, 7091, 6733, 2170, 1178, 317, 317, 317, 317, 351, 351, 317, 246, 246, 246, 246, 246, 246, 18, 101, 1, -18, '', 0, 31, 22, 1.67, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 4), 62, 62, 7277, 6919, 2232, 1198, 324, 324, 324, 324, 354, 354, 324, 264, 264, 264, 264, 264, 264, 18, 102, 1, -18, '', 0, 32, 23, 1.73, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 5), 62, 62, 7463, 7105, 2294, 1219, 331, 331, 331, 331, 357, 357, 331, 282, 282, 282, 282, 282, 282, 18, 104, 1, -18, '', 0, 33, 24, 1.79, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 1), 62, 62, 5097, 0, 1271, 1767, 295, 295, 295, 295, 258, 258, 295, 152, 152, 152, 152, 152, 152, 24, 118, 4, -21, '', 0, 31, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 2), 62, 62, 5345, 0, 1302, 1798, 302, 302, 302, 302, 260, 260, 302, 170, 170, 170, 170, 170, 170, 25, 121, 4, -22, '', 0, 33, 0, 1.31, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 3), 62, 62, 5593, 0, 1333, 1829, 309, 309, 309, 309, 262, 262, 309, 188, 188, 188, 188, 188, 188, 25, 123, 4, -23, '', 0, 35, 0, 1.37, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 4), 62, 62, 5841, 0, 1364, 1860, 316, 316, 316, 316, 264, 264, 316, 206, 206, 206, 206, 206, 206, 26, 126, 4, -24, '', 0, 37, 0, 1.43, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 5), 62, 62, 6089, 0, 1395, 1891, 323, 323, 323, 323, 266, 266, 323, 224, 224, 224, 224, 224, 224, 26, 128, 4, -25, '', 0, 39, 0, 1.49, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 1), 62, 62, 6957, 0, 1581, 1953, 331, 331, 331, 331, 278, 278, 331, 210, 210, 210, 210, 210, 210, 25, 125, 4, -26, '', 0, 39, 0, 1.55, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 2), 62, 62, 7205, 0, 1612, 1984, 338, 338, 338, 338, 280, 280, 338, 228, 228, 228, 228, 228, 228, 26, 127, 4, -27, '', 0, 41, 0, 1.61, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 3), 62, 62, 7453, 0, 1643, 2015, 345, 345, 345, 345, 282, 282, 345, 246, 246, 246, 246, 246, 246, 26, 130, 4, -28, '', 0, 43, 0, 1.67, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 4), 62, 62, 7701, 0, 1674, 2046, 352, 352, 352, 352, 284, 284, 352, 264, 264, 264, 264, 264, 264, 27, 132, 4, -29, '', 0, 45, 0, 1.73, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 5), 62, 62, 7949, 0, 1705, 2077, 359, 359, 359, 359, 286, 286, 359, 282, 282, 282, 282, 282, 282, 27, 135, 4, -30, '', 0, 47, 0, 1.79, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 1), 62, 62, 4332, 4811, 826, 511, 260, 260, 260, 260, 320, 320, 260, 152, 152, 152, 152, 152, 152, 16, 94, 1, -18, '', 0, 22, 17, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 2), 62, 62, 4456, 4997, 847, 527, 267, 267, 267, 267, 323, 323, 267, 170, 170, 170, 170, 170, 170, 17, 95, 1, -18, '', 0, 23, 18, 1.31, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 3), 62, 62, 4580, 5183, 868, 542, 274, 274, 274, 274, 326, 326, 274, 188, 188, 188, 188, 188, 188, 17, 97, 1, -18, '', 0, 24, 19, 1.37, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 4), 62, 62, 4704, 5369, 888, 558, 281, 281, 281, 281, 329, 329, 281, 206, 206, 206, 206, 206, 206, 17, 98, 1, -18, '', 0, 25, 20, 1.43, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 5), 62, 62, 4828, 5555, 909, 573, 288, 288, 288, 288, 332, 332, 288, 224, 224, 224, 224, 224, 224, 17, 99, 1, -18, '', 0, 26, 21, 1.49, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 1), 62, 62, 5882, 6361, 1012, 573, 296, 296, 296, 296, 345, 345, 296, 210, 210, 210, 210, 210, 210, 17, 98, 1, -18, '', 0, 27, 20, 1.55, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 2), 62, 62, 6006, 6547, 1033, 589, 303, 303, 303, 303, 348, 348, 303, 228, 228, 228, 228, 228, 228, 17, 99, 1, -18, '', 0, 28, 21, 1.61, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 3), 62, 62, 6130, 6733, 1054, 604, 310, 310, 310, 310, 351, 351, 310, 246, 246, 246, 246, 246, 246, 18, 101, 1, -18, '', 0, 29, 22, 1.67, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 4), 62, 62, 6254, 6919, 1074, 620, 317, 317, 317, 317, 354, 354, 317, 264, 264, 264, 264, 264, 264, 18, 102, 1, -18, '', 0, 30, 23, 1.73, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 5), 62, 62, 6378, 7105, 1095, 635, 324, 324, 324, 324, 357, 357, 324, 282, 282, 282, 282, 282, 282, 18, 104, 1, -18, '', 0, 31, 24, 1.79, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 1), 63, 63, 6102, 0, 2174, 1764, 301, 301, 301, 301, 261, 261, 301, 154, 154, 154, 154, 154, 154, 27, 141, 4, -21, '', 0, 34, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 2), 63, 63, 6417, 0, 2268, 1796, 308, 308, 308, 308, 263, 263, 308, 172, 172, 172, 172, 172, 172, 28, 144, 4, -22, '', 0, 36, 0, 1.31, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 3), 63, 63, 6732, 0, 2363, 1827, 315, 315, 315, 315, 265, 265, 315, 190, 190, 190, 190, 190, 190, 28, 147, 4, -23, '', 0, 38, 0, 1.37, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 4), 63, 63, 7047, 0, 2457, 1859, 322, 322, 322, 322, 267, 267, 322, 208, 208, 208, 208, 208, 208, 29, 150, 4, -24, '', 0, 40, 0, 1.43, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 5), 63, 63, 7362, 0, 2552, 1890, 329, 329, 329, 329, 269, 269, 329, 226, 226, 226, 226, 226, 226, 29, 153, 4, -25, '', 0, 42, 0, 1.49, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 1), 63, 63, 8307, 0, 2678, 1921, 337, 337, 337, 337, 281, 281, 337, 212, 212, 212, 212, 212, 212, 29, 148, 4, -26, '', 0, 44, 0, 1.55, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 2), 63, 63, 8622, 0, 2772, 1953, 344, 344, 344, 344, 283, 283, 344, 230, 230, 230, 230, 230, 230, 29, 151, 4, -27, '', 0, 46, 0, 1.61, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 3), 63, 63, 8937, 0, 2867, 1984, 351, 351, 351, 351, 285, 285, 351, 248, 248, 248, 248, 248, 248, 30, 154, 4, -28, '', 0, 48, 0, 1.67, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 4), 63, 63, 9252, 0, 2961, 2016, 358, 358, 358, 358, 287, 287, 358, 266, 266, 266, 266, 266, 266, 30, 157, 4, -29, '', 0, 50, 0, 1.73, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 5), 63, 63, 9567, 0, 3056, 2047, 365, 365, 365, 365, 289, 289, 365, 284, 284, 284, 284, 284, 284, 31, 160, 4, -30, '', 0, 52, 0, 1.79, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 1), 63, 63, 5030, 4939, 1701, 1061, 273, 273, 273, 273, 323, 323, 273, 154, 154, 154, 154, 154, 154, 17, 95, 1, -18, '', 0, 23, 17, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 2), 63, 63, 5219, 5128, 1764, 1082, 280, 280, 280, 280, 326, 326, 280, 172, 172, 172, 172, 172, 172, 17, 97, 1, -18, '', 0, 24, 18, 1.31, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 3), 63, 63, 5408, 5317, 1827, 1103, 287, 287, 287, 287, 329, 329, 287, 190, 190, 190, 190, 190, 190, 17, 98, 1, -18, '', 0, 25, 19, 1.37, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 4), 63, 63, 5597, 5506, 1890, 1124, 294, 294, 294, 294, 332, 332, 294, 208, 208, 208, 208, 208, 208, 17, 99, 1, -18, '', 0, 26, 20, 1.43, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 5), 63, 63, 5786, 5695, 1953, 1145, 301, 301, 301, 301, 335, 335, 301, 226, 226, 226, 226, 226, 226, 18, 101, 1, -18, '', 0, 27, 21, 1.49, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 1), 63, 63, 6920, 6514, 2079, 1155, 309, 309, 309, 309, 348, 348, 309, 212, 212, 212, 212, 212, 212, 17, 99, 1, -18, '', 0, 29, 20, 1.55, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 2), 63, 63, 7109, 6703, 2142, 1176, 316, 316, 316, 316, 351, 351, 316, 230, 230, 230, 230, 230, 230, 18, 101, 1, -18, '', 0, 30, 21, 1.61, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 3), 63, 63, 7298, 6892, 2205, 1197, 323, 323, 323, 323, 354, 354, 323, 248, 248, 248, 248, 248, 248, 18, 102, 1, -18, '', 0, 31, 22, 1.67, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 4), 63, 63, 7487, 7081, 2268, 1218, 330, 330, 330, 330, 357, 357, 330, 266, 266, 266, 266, 266, 266, 18, 104, 1, -18, '', 0, 32, 23, 1.73, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 5), 63, 63, 7676, 7270, 2331, 1239, 337, 337, 337, 337, 360, 360, 337, 284, 284, 284, 284, 284, 284, 18, 105, 1, -18, '', 0, 33, 24, 1.79, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 1), 63, 63, 5277, 0, 1291, 1795, 301, 301, 301, 301, 261, 261, 301, 154, 154, 154, 154, 154, 154, 27, 134, 4, -21, '', 0, 32, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 2), 63, 63, 5529, 0, 1323, 1827, 308, 308, 308, 308, 263, 263, 308, 172, 172, 172, 172, 172, 172, 28, 137, 4, -22, '', 0, 34, 0, 1.31, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 3), 63, 63, 5781, 0, 1354, 1858, 315, 315, 315, 315, 265, 265, 315, 190, 190, 190, 190, 190, 190, 28, 140, 4, -23, '', 0, 36, 0, 1.37, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 4), 63, 63, 6033, 0, 1386, 1890, 322, 322, 322, 322, 267, 267, 322, 208, 208, 208, 208, 208, 208, 29, 142, 4, -24, '', 0, 38, 0, 1.43, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 5), 63, 63, 6285, 0, 1417, 1921, 329, 329, 329, 329, 269, 269, 329, 226, 226, 226, 226, 226, 226, 29, 145, 4, -25, '', 0, 40, 0, 1.49, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 1), 63, 63, 7167, 0, 1606, 1984, 337, 337, 337, 337, 281, 281, 337, 212, 212, 212, 212, 212, 212, 29, 141, 4, -26, '', 0, 40, 0, 1.55, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 2), 63, 63, 7419, 0, 1638, 2016, 344, 344, 344, 344, 283, 283, 344, 230, 230, 230, 230, 230, 230, 29, 143, 4, -27, '', 0, 42, 0, 1.61, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 3), 63, 63, 7671, 0, 1669, 2047, 351, 351, 351, 351, 285, 285, 351, 248, 248, 248, 248, 248, 248, 30, 146, 4, -28, '', 0, 44, 0, 1.67, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 4), 63, 63, 7923, 0, 1701, 2079, 358, 358, 358, 358, 287, 287, 358, 266, 266, 266, 266, 266, 266, 30, 149, 4, -29, '', 0, 46, 0, 1.73, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 5), 63, 63, 8175, 0, 1732, 2110, 365, 365, 365, 365, 289, 289, 365, 284, 284, 284, 284, 284, 284, 31, 151, 4, -30, '', 0, 48, 0, 1.79, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 1), 63, 63, 4489, 4939, 840, 519, 265, 265, 265, 265, 323, 323, 265, 154, 154, 154, 154, 154, 154, 17, 95, 1, -18, '', 0, 22, 17, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 2), 63, 63, 4615, 5128, 861, 535, 272, 272, 272, 272, 326, 326, 272, 172, 172, 172, 172, 172, 172, 17, 97, 1, -18, '', 0, 23, 18, 1.31, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 3), 63, 63, 4741, 5317, 882, 551, 279, 279, 279, 279, 329, 329, 279, 190, 190, 190, 190, 190, 190, 17, 98, 1, -18, '', 0, 24, 19, 1.37, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 4), 63, 63, 4867, 5506, 903, 567, 286, 286, 286, 286, 332, 332, 286, 208, 208, 208, 208, 208, 208, 17, 99, 1, -18, '', 0, 25, 20, 1.43, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 5), 63, 63, 4993, 5695, 924, 582, 293, 293, 293, 293, 335, 335, 293, 226, 226, 226, 226, 226, 226, 18, 101, 1, -18, '', 0, 26, 21, 1.49, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 1), 63, 63, 6064, 6514, 1029, 582, 301, 301, 301, 301, 348, 348, 301, 212, 212, 212, 212, 212, 212, 17, 99, 1, -18, '', 0, 27, 20, 1.55, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 2), 63, 63, 6190, 6703, 1050, 598, 308, 308, 308, 308, 351, 351, 308, 230, 230, 230, 230, 230, 230, 18, 101, 1, -18, '', 0, 28, 21, 1.61, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 3), 63, 63, 6316, 6892, 1071, 614, 315, 315, 315, 315, 354, 354, 315, 248, 248, 248, 248, 248, 248, 18, 102, 1, -18, '', 0, 29, 22, 1.67, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 4), 63, 63, 6442, 7081, 1092, 630, 322, 322, 322, 322, 357, 357, 322, 266, 266, 266, 266, 266, 266, 18, 104, 1, -18, '', 0, 30, 23, 1.73, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 5), 63, 63, 6568, 7270, 1113, 645, 329, 329, 329, 329, 360, 360, 329, 284, 284, 284, 284, 284, 284, 18, 105, 1, -18, '', 0, 31, 24, 1.79, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 1), 64, 64, 6314, 0, 2208, 1792, 308, 308, 308, 308, 264, 264, 308, 157, 157, 157, 157, 157, 157, 31, 158, 4, -22, '', 0, 34, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 2), 64, 64, 6634, 0, 2304, 1824, 315, 315, 315, 315, 266, 266, 315, 176, 176, 176, 176, 176, 176, 31, 161, 4, -23, '', 0, 36, 0, 1.31, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 3), 64, 64, 6954, 0, 2400, 1856, 322, 322, 322, 322, 268, 268, 322, 195, 195, 195, 195, 195, 195, 32, 163, 4, -24, '', 0, 38, 0, 1.37, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 4), 64, 64, 7274, 0, 2496, 1888, 329, 329, 329, 329, 270, 270, 329, 214, 214, 214, 214, 214, 214, 32, 166, 4, -25, '', 0, 40, 0, 1.43, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 5), 64, 64, 7594, 0, 2592, 1920, 336, 336, 336, 336, 272, 272, 336, 233, 233, 233, 233, 233, 233, 33, 169, 4, -26, '', 0, 42, 0, 1.49, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 1), 64, 64, 8554, 0, 2720, 1952, 345, 345, 345, 345, 284, 284, 345, 215, 215, 215, 215, 215, 215, 32, 165, 4, -27, '', 0, 44, 0, 1.55, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 2), 64, 64, 8874, 0, 2816, 1984, 352, 352, 352, 352, 286, 286, 352, 234, 234, 234, 234, 234, 234, 32, 168, 4, -28, '', 0, 46, 0, 1.61, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 3), 64, 64, 9194, 0, 2912, 2016, 359, 359, 359, 359, 288, 288, 359, 253, 253, 253, 253, 253, 253, 33, 170, 4, -29, '', 0, 48, 0, 1.67, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 4), 64, 64, 9514, 0, 3008, 2048, 366, 366, 366, 366, 290, 290, 366, 272, 272, 272, 272, 272, 272, 33, 173, 4, -30, '', 0, 50, 0, 1.73, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 5), 64, 64, 9834, 0, 3104, 2080, 373, 373, 373, 373, 292, 292, 373, 291, 291, 291, 291, 291, 291, 34, 176, 4, -31, '', 0, 52, 0, 1.79, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 1), 64, 64, 5206, 5069, 1728, 1077, 280, 280, 280, 280, 327, 327, 280, 157, 157, 157, 157, 157, 157, 17, 97, 1, -18, '', 0, 24, 17, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 2), 64, 64, 5398, 5261, 1792, 1098, 287, 287, 287, 287, 330, 330, 287, 176, 176, 176, 176, 176, 176, 17, 98, 1, -18, '', 0, 25, 18, 1.31, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 3), 64, 64, 5590, 5453, 1856, 1120, 294, 294, 294, 294, 333, 333, 294, 195, 195, 195, 195, 195, 195, 17, 99, 1, -18, '', 0, 26, 19, 1.37, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 4), 64, 64, 5782, 5645, 1920, 1141, 301, 301, 301, 301, 336, 336, 301, 214, 214, 214, 214, 214, 214, 18, 101, 1, -18, '', 0, 27, 20, 1.43, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 5), 64, 64, 5974, 5837, 1984, 1162, 308, 308, 308, 308, 339, 339, 308, 233, 233, 233, 233, 233, 233, 18, 102, 1, -18, '', 0, 28, 21, 1.49, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 1), 64, 64, 7126, 6669, 2112, 1173, 317, 317, 317, 317, 352, 352, 317, 215, 215, 215, 215, 215, 215, 18, 101, 1, -18, '', 0, 30, 20, 1.55, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 2), 64, 64, 7318, 6861, 2176, 1194, 324, 324, 324, 324, 355, 355, 324, 234, 234, 234, 234, 234, 234, 18, 102, 1, -18, '', 0, 31, 21, 1.61, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 3), 64, 64, 7510, 7053, 2240, 1216, 331, 331, 331, 331, 358, 358, 331, 253, 253, 253, 253, 253, 253, 18, 104, 1, -18, '', 0, 32, 22, 1.67, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 4), 64, 64, 7702, 7245, 2304, 1237, 338, 338, 338, 338, 361, 361, 338, 272, 272, 272, 272, 272, 272, 18, 105, 1, -18, '', 0, 33, 23, 1.73, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 5), 64, 64, 7894, 7437, 2368, 1258, 345, 345, 345, 345, 364, 364, 345, 291, 291, 291, 291, 291, 291, 19, 106, 1, -18, '', 0, 34, 24, 1.79, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 1), 64, 64, 5462, 0, 1312, 1824, 308, 308, 308, 308, 264, 264, 308, 157, 157, 157, 157, 157, 157, 31, 151, 4, -22, '', 0, 32, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 2), 64, 64, 5718, 0, 1344, 1856, 315, 315, 315, 315, 266, 266, 315, 176, 176, 176, 176, 176, 176, 31, 153, 4, -23, '', 0, 34, 0, 1.31, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 3), 64, 64, 5974, 0, 1376, 1888, 322, 322, 322, 322, 268, 268, 322, 195, 195, 195, 195, 195, 195, 32, 156, 4, -24, '', 0, 36, 0, 1.37, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 4), 64, 64, 6230, 0, 1408, 1920, 329, 329, 329, 329, 270, 270, 329, 214, 214, 214, 214, 214, 214, 32, 158, 4, -25, '', 0, 38, 0, 1.43, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 5), 64, 64, 6486, 0, 1440, 1952, 336, 336, 336, 336, 272, 272, 336, 233, 233, 233, 233, 233, 233, 33, 161, 4, -26, '', 0, 40, 0, 1.49, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 1), 64, 64, 7382, 0, 1632, 2016, 345, 345, 345, 345, 284, 284, 345, 215, 215, 215, 215, 215, 215, 32, 157, 4, -27, '', 0, 40, 0, 1.55, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 2), 64, 64, 7638, 0, 1664, 2048, 352, 352, 352, 352, 286, 286, 352, 234, 234, 234, 234, 234, 234, 32, 160, 4, -28, '', 0, 42, 0, 1.61, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 3), 64, 64, 7894, 0, 1696, 2080, 359, 359, 359, 359, 288, 288, 359, 253, 253, 253, 253, 253, 253, 33, 162, 4, -29, '', 0, 44, 0, 1.67, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 4), 64, 64, 8150, 0, 1728, 2112, 366, 366, 366, 366, 290, 290, 366, 272, 272, 272, 272, 272, 272, 33, 165, 4, -30, '', 0, 46, 0, 1.73, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 5), 64, 64, 8406, 0, 1760, 2144, 373, 373, 373, 373, 292, 292, 373, 291, 291, 291, 291, 291, 291, 34, 168, 4, -31, '', 0, 48, 0, 1.79, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 1), 64, 64, 4650, 5069, 853, 528, 272, 272, 272, 272, 327, 327, 272, 157, 157, 157, 157, 157, 157, 17, 97, 1, -18, '', 0, 23, 17, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 2), 64, 64, 4778, 5261, 874, 544, 279, 279, 279, 279, 330, 330, 279, 176, 176, 176, 176, 176, 176, 17, 98, 1, -18, '', 0, 24, 18, 1.31, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 3), 64, 64, 4906, 5453, 896, 560, 286, 286, 286, 286, 333, 333, 286, 195, 195, 195, 195, 195, 195, 17, 99, 1, -18, '', 0, 25, 19, 1.37, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 4), 64, 64, 5034, 5645, 917, 576, 293, 293, 293, 293, 336, 336, 293, 214, 214, 214, 214, 214, 214, 18, 101, 1, -18, '', 0, 26, 20, 1.43, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 5), 64, 64, 5162, 5837, 938, 592, 300, 300, 300, 300, 339, 339, 300, 233, 233, 233, 233, 233, 233, 18, 102, 1, -18, '', 0, 27, 21, 1.49, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 1), 64, 64, 6250, 6669, 1045, 592, 309, 309, 309, 309, 352, 352, 309, 215, 215, 215, 215, 215, 215, 18, 101, 1, -18, '', 0, 28, 20, 1.55, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 2), 64, 64, 6378, 6861, 1066, 608, 316, 316, 316, 316, 355, 355, 316, 234, 234, 234, 234, 234, 234, 18, 102, 1, -18, '', 0, 29, 21, 1.61, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 3), 64, 64, 6506, 7053, 1088, 624, 323, 323, 323, 323, 358, 358, 323, 253, 253, 253, 253, 253, 253, 18, 104, 1, -18, '', 0, 30, 22, 1.67, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 4), 64, 64, 6634, 7245, 1109, 640, 330, 330, 330, 330, 361, 361, 330, 272, 272, 272, 272, 272, 272, 18, 105, 1, -18, '', 0, 31, 23, 1.73, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 5), 64, 64, 6762, 7437, 1130, 656, 337, 337, 337, 337, 364, 364, 337, 291, 291, 291, 291, 291, 291, 19, 106, 1, -18, '', 0, 32, 24, 1.79, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 1), 65, 65, 6533, 0, 2243, 1820, 315, 315, 315, 315, 267, 267, 315, 159, 159, 159, 159, 159, 159, 34, 174, 4, -22, '', 0, 34, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 2), 65, 65, 6858, 0, 2340, 1853, 322, 322, 322, 322, 269, 269, 322, 178, 178, 178, 178, 178, 178, 34, 177, 4, -23, '', 0, 36, 0, 1.31, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 3), 65, 65, 7183, 0, 2438, 1885, 329, 329, 329, 329, 271, 271, 329, 197, 197, 197, 197, 197, 197, 35, 180, 4, -24, '', 0, 38, 0, 1.37, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 4), 65, 65, 7508, 0, 2535, 1918, 336, 336, 336, 336, 273, 273, 336, 216, 216, 216, 216, 216, 216, 35, 183, 4, -25, '', 0, 40, 0, 1.43, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 5), 65, 65, 7833, 0, 2633, 1950, 343, 343, 343, 343, 275, 275, 343, 235, 235, 235, 235, 235, 235, 36, 185, 4, -26, '', 0, 42, 0, 1.49, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 1), 65, 65, 8808, 0, 2763, 1982, 352, 352, 352, 352, 287, 287, 352, 219, 219, 219, 219, 219, 219, 35, 181, 4, -27, '', 0, 44, 0, 1.55, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 2), 65, 65, 9133, 0, 2860, 2015, 359, 359, 359, 359, 289, 289, 359, 238, 238, 238, 238, 238, 238, 36, 184, 4, -28, '', 0, 46, 0, 1.61, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 3), 65, 65, 9458, 0, 2958, 2047, 366, 366, 366, 366, 291, 291, 366, 257, 257, 257, 257, 257, 257, 36, 187, 4, -29, '', 0, 48, 0, 1.67, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 4), 65, 65, 9783, 0, 3055, 2080, 373, 373, 373, 373, 293, 293, 373, 276, 276, 276, 276, 276, 276, 37, 190, 4, -30, '', 0, 50, 0, 1.73, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 5), 65, 65, 10108, 0, 3153, 2112, 380, 380, 380, 380, 295, 295, 380, 295, 295, 295, 295, 295, 295, 37, 192, 4, -31, '', 0, 52, 0, 1.79, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 1), 65, 65, 5385, 5200, 1755, 1094, 286, 286, 286, 286, 330, 330, 286, 159, 159, 159, 159, 159, 159, 17, 98, 1, -18, '', 0, 24, 18, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 2), 65, 65, 5580, 5395, 1820, 1116, 293, 293, 293, 293, 333, 333, 293, 178, 178, 178, 178, 178, 178, 17, 99, 1, -18, '', 0, 25, 19, 1.31, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 3), 65, 65, 5775, 5590, 1885, 1138, 300, 300, 300, 300, 336, 336, 300, 197, 197, 197, 197, 197, 197, 18, 101, 1, -18, '', 0, 26, 20, 1.37, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 4), 65, 65, 5970, 5785, 1950, 1159, 307, 307, 307, 307, 339, 339, 307, 216, 216, 216, 216, 216, 216, 18, 102, 1, -18, '', 0, 27, 21, 1.43, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 5), 65, 65, 6165, 5980, 2015, 1181, 314, 314, 314, 314, 342, 342, 314, 235, 235, 235, 235, 235, 235, 18, 104, 1, -18, '', 0, 28, 22, 1.49, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 1), 65, 65, 7335, 6825, 2145, 1191, 323, 323, 323, 323, 355, 355, 323, 219, 219, 219, 219, 219, 219, 18, 102, 1, -18, '', 0, 30, 21, 1.55, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 2), 65, 65, 7530, 7020, 2210, 1213, 330, 330, 330, 330, 358, 358, 330, 238, 238, 238, 238, 238, 238, 18, 104, 1, -18, '', 0, 31, 22, 1.61, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 3), 65, 65, 7725, 7215, 2275, 1235, 337, 337, 337, 337, 361, 361, 337, 257, 257, 257, 257, 257, 257, 18, 105, 1, -18, '', 0, 32, 23, 1.67, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 4), 65, 65, 7920, 7410, 2340, 1256, 344, 344, 344, 344, 364, 364, 344, 276, 276, 276, 276, 276, 276, 19, 106, 1, -18, '', 0, 33, 24, 1.73, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 5), 65, 65, 8115, 7605, 2405, 1278, 351, 351, 351, 351, 367, 367, 351, 295, 295, 295, 295, 295, 295, 19, 108, 1, -18, '', 0, 34, 25, 1.79, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 1), 65, 65, 5652, 0, 1332, 1852, 315, 315, 315, 315, 267, 267, 315, 159, 159, 159, 159, 159, 159, 34, 167, 4, -22, '', 0, 32, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 2), 65, 65, 5912, 0, 1365, 1885, 322, 322, 322, 322, 269, 269, 322, 178, 178, 178, 178, 178, 178, 34, 170, 4, -23, '', 0, 34, 0, 1.31, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 3), 65, 65, 6172, 0, 1397, 1917, 329, 329, 329, 329, 271, 271, 329, 197, 197, 197, 197, 197, 197, 35, 172, 4, -24, '', 0, 36, 0, 1.37, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 4), 65, 65, 6432, 0, 1430, 1950, 336, 336, 336, 336, 273, 273, 336, 216, 216, 216, 216, 216, 216, 35, 175, 4, -25, '', 0, 38, 0, 1.43, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 5), 65, 65, 6692, 0, 1462, 1982, 343, 343, 343, 343, 275, 275, 343, 235, 235, 235, 235, 235, 235, 36, 177, 4, -26, '', 0, 40, 0, 1.49, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 1), 65, 65, 7602, 0, 1657, 2047, 352, 352, 352, 352, 287, 287, 352, 219, 219, 219, 219, 219, 219, 35, 173, 4, -27, '', 0, 40, 0, 1.55, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 2), 65, 65, 7862, 0, 1690, 2080, 359, 359, 359, 359, 289, 289, 359, 238, 238, 238, 238, 238, 238, 36, 176, 4, -28, '', 0, 42, 0, 1.61, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 3), 65, 65, 8122, 0, 1722, 2112, 366, 366, 366, 366, 291, 291, 366, 257, 257, 257, 257, 257, 257, 36, 179, 4, -29, '', 0, 44, 0, 1.67, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 4), 65, 65, 8382, 0, 1755, 2145, 373, 373, 373, 373, 293, 293, 373, 276, 276, 276, 276, 276, 276, 37, 181, 4, -30, '', 0, 46, 0, 1.73, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 5), 65, 65, 8642, 0, 1787, 2177, 380, 380, 380, 380, 295, 295, 380, 295, 295, 295, 295, 295, 295, 37, 184, 4, -31, '', 0, 48, 0, 1.79, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 1), 65, 65, 4816, 5200, 866, 536, 277, 277, 277, 277, 330, 330, 277, 159, 159, 159, 159, 159, 159, 17, 98, 1, -18, '', 0, 23, 18, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 2), 65, 65, 4946, 5395, 888, 552, 284, 284, 284, 284, 333, 333, 284, 178, 178, 178, 178, 178, 178, 17, 99, 1, -18, '', 0, 24, 19, 1.31, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 3), 65, 65, 5076, 5590, 910, 568, 291, 291, 291, 291, 336, 336, 291, 197, 197, 197, 197, 197, 197, 18, 101, 1, -18, '', 0, 25, 20, 1.37, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 4), 65, 65, 5206, 5785, 931, 585, 298, 298, 298, 298, 339, 339, 298, 216, 216, 216, 216, 216, 216, 18, 102, 1, -18, '', 0, 26, 21, 1.43, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 5), 65, 65, 5336, 5980, 953, 601, 305, 305, 305, 305, 342, 342, 305, 235, 235, 235, 235, 235, 235, 18, 104, 1, -18, '', 0, 27, 22, 1.49, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 1), 65, 65, 6441, 6825, 1061, 601, 314, 314, 314, 314, 355, 355, 314, 219, 219, 219, 219, 219, 219, 18, 102, 1, -18, '', 0, 28, 21, 1.55, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 2), 65, 65, 6571, 7020, 1083, 617, 321, 321, 321, 321, 358, 358, 321, 238, 238, 238, 238, 238, 238, 18, 104, 1, -18, '', 0, 29, 22, 1.61, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 3), 65, 65, 6701, 7215, 1105, 633, 328, 328, 328, 328, 361, 361, 328, 257, 257, 257, 257, 257, 257, 18, 105, 1, -18, '', 0, 30, 23, 1.67, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 4), 65, 65, 6831, 7410, 1126, 650, 335, 335, 335, 335, 364, 364, 335, 276, 276, 276, 276, 276, 276, 19, 106, 1, -18, '', 0, 31, 24, 1.73, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 5), 65, 65, 6961, 7605, 1148, 666, 342, 342, 342, 342, 367, 367, 342, 295, 295, 295, 295, 295, 295, 19, 108, 1, -18, '', 0, 32, 25, 1.79, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 1), 66, 66, 6757, 0, 2277, 1848, 352, 352, 352, 352, 300, 300, 352, 161, 161, 161, 161, 161, 161, 37, 191, 4, -23, '', 0, 35, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 2), 66, 66, 7087, 0, 2376, 1881, 359, 359, 359, 359, 302, 302, 359, 180, 180, 180, 180, 180, 180, 38, 193, 4, -24, '', 0, 37, 0, 1.31, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 3), 66, 66, 7417, 0, 2475, 1914, 366, 366, 366, 366, 304, 304, 366, 199, 199, 199, 199, 199, 199, 38, 196, 4, -25, '', 0, 39, 0, 1.37, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 4), 66, 66, 7747, 0, 2574, 1947, 373, 373, 373, 373, 306, 306, 373, 218, 218, 218, 218, 218, 218, 39, 199, 4, -26, '', 0, 41, 0, 1.43, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 5), 66, 66, 8077, 0, 2673, 1980, 380, 380, 380, 380, 308, 308, 380, 237, 237, 237, 237, 237, 237, 39, 202, 4, -27, '', 0, 43, 0, 1.49, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 1), 66, 66, 9067, 0, 2805, 2013, 390, 390, 390, 390, 320, 320, 390, 221, 221, 221, 221, 221, 221, 38, 198, 4, -28, '', 0, 45, 0, 1.55, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 2), 66, 66, 9397, 0, 2904, 2046, 397, 397, 397, 397, 322, 322, 397, 240, 240, 240, 240, 240, 240, 39, 200, 4, -29, '', 0, 47, 0, 1.61, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 3), 66, 66, 9727, 0, 3003, 2079, 404, 404, 404, 404, 324, 324, 404, 259, 259, 259, 259, 259, 259, 39, 203, 4, -30, '', 0, 49, 0, 1.67, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 4), 66, 66, 10057, 0, 3102, 2112, 411, 411, 411, 411, 326, 326, 411, 278, 278, 278, 278, 278, 278, 40, 206, 4, -31, '', 0, 51, 0, 1.73, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 5), 66, 66, 10387, 0, 3201, 2145, 418, 418, 418, 418, 328, 328, 418, 297, 297, 297, 297, 297, 297, 40, 209, 4, -32, '', 0, 53, 0, 1.79, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 1), 66, 66, 5570, 5333, 1782, 1111, 323, 323, 323, 323, 364, 364, 323, 161, 161, 161, 161, 161, 161, 17, 99, 1, -18, '', 0, 24, 18, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 2), 66, 66, 5768, 5531, 1848, 1133, 330, 330, 330, 330, 367, 367, 330, 180, 180, 180, 180, 180, 180, 18, 101, 1, -18, '', 0, 25, 19, 1.31, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 3), 66, 66, 5966, 5729, 1914, 1155, 337, 337, 337, 337, 370, 370, 337, 199, 199, 199, 199, 199, 199, 18, 102, 1, -18, '', 0, 26, 20, 1.37, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 4), 66, 66, 6164, 5927, 1980, 1177, 344, 344, 344, 344, 373, 373, 344, 218, 218, 218, 218, 218, 218, 18, 104, 1, -18, '', 0, 27, 21, 1.43, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 5), 66, 66, 6362, 6125, 2046, 1199, 351, 351, 351, 351, 376, 376, 351, 237, 237, 237, 237, 237, 237, 18, 105, 1, -18, '', 0, 28, 22, 1.49, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 1), 66, 66, 7550, 6983, 2178, 1210, 361, 361, 361, 361, 389, 389, 361, 221, 221, 221, 221, 221, 221, 18, 104, 1, -18, '', 0, 30, 21, 1.55, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 2), 66, 66, 7748, 7181, 2244, 1232, 368, 368, 368, 368, 392, 392, 368, 240, 240, 240, 240, 240, 240, 18, 105, 1, -18, '', 0, 31, 22, 1.61, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 3), 66, 66, 7946, 7379, 2310, 1254, 375, 375, 375, 375, 395, 395, 375, 259, 259, 259, 259, 259, 259, 19, 106, 1, -18, '', 0, 32, 23, 1.67, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 4), 66, 66, 8144, 7577, 2376, 1276, 382, 382, 382, 382, 398, 398, 382, 278, 278, 278, 278, 278, 278, 19, 108, 1, -18, '', 0, 33, 24, 1.73, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 5), 66, 66, 8342, 7775, 2442, 1298, 389, 389, 389, 389, 401, 401, 389, 297, 297, 297, 297, 297, 297, 19, 109, 1, -18, '', 0, 34, 25, 1.79, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 1), 66, 66, 5847, 0, 1353, 1881, 352, 352, 352, 352, 300, 300, 352, 161, 161, 161, 161, 161, 161, 37, 183, 4, -23, '', 0, 33, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 2), 66, 66, 6111, 0, 1386, 1914, 359, 359, 359, 359, 302, 302, 359, 180, 180, 180, 180, 180, 180, 38, 186, 4, -24, '', 0, 35, 0, 1.31, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 3), 66, 66, 6375, 0, 1419, 1947, 366, 366, 366, 366, 304, 304, 366, 199, 199, 199, 199, 199, 199, 38, 188, 4, -25, '', 0, 37, 0, 1.37, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 4), 66, 66, 6639, 0, 1452, 1980, 373, 373, 373, 373, 306, 306, 373, 218, 218, 218, 218, 218, 218, 39, 191, 4, -26, '', 0, 39, 0, 1.43, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 5), 66, 66, 6903, 0, 1485, 2013, 380, 380, 380, 380, 308, 308, 380, 237, 237, 237, 237, 237, 237, 39, 194, 4, -27, '', 0, 41, 0, 1.49, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 1), 66, 66, 7827, 0, 1683, 2079, 390, 390, 390, 390, 320, 320, 390, 221, 221, 221, 221, 221, 221, 38, 190, 4, -28, '', 0, 41, 0, 1.55, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 2), 66, 66, 8091, 0, 1716, 2112, 397, 397, 397, 397, 322, 322, 397, 240, 240, 240, 240, 240, 240, 39, 192, 4, -29, '', 0, 43, 0, 1.61, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 3), 66, 66, 8355, 0, 1749, 2145, 404, 404, 404, 404, 324, 324, 404, 259, 259, 259, 259, 259, 259, 39, 195, 4, -30, '', 0, 45, 0, 1.67, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 4), 66, 66, 8619, 0, 1782, 2178, 411, 411, 411, 411, 326, 326, 411, 278, 278, 278, 278, 278, 278, 40, 198, 4, -31, '', 0, 47, 0, 1.73, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 5), 66, 66, 8883, 0, 1815, 2211, 418, 418, 418, 418, 328, 328, 418, 297, 297, 297, 297, 297, 297, 40, 200, 4, -32, '', 0, 49, 0, 1.79, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 1), 66, 66, 4986, 5333, 880, 544, 314, 314, 314, 314, 364, 364, 314, 161, 161, 161, 161, 161, 161, 17, 99, 1, -18, '', 0, 23, 18, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 2), 66, 66, 5118, 5531, 902, 561, 321, 321, 321, 321, 367, 367, 321, 180, 180, 180, 180, 180, 180, 18, 101, 1, -18, '', 0, 24, 19, 1.31, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 3), 66, 66, 5250, 5729, 924, 577, 328, 328, 328, 328, 370, 370, 328, 199, 199, 199, 199, 199, 199, 18, 102, 1, -18, '', 0, 25, 20, 1.37, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 4), 66, 66, 5382, 5927, 946, 594, 335, 335, 335, 335, 373, 373, 335, 218, 218, 218, 218, 218, 218, 18, 104, 1, -18, '', 0, 26, 21, 1.43, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 5), 66, 66, 5514, 6125, 968, 610, 342, 342, 342, 342, 376, 376, 342, 237, 237, 237, 237, 237, 237, 18, 105, 1, -18, '', 0, 27, 22, 1.49, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 1), 66, 66, 6636, 6983, 1078, 610, 352, 352, 352, 352, 389, 389, 352, 221, 221, 221, 221, 221, 221, 18, 104, 1, -18, '', 0, 28, 21, 1.55, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 2), 66, 66, 6768, 7181, 1100, 627, 359, 359, 359, 359, 392, 392, 359, 240, 240, 240, 240, 240, 240, 18, 105, 1, -18, '', 0, 29, 22, 1.61, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 3), 66, 66, 6900, 7379, 1122, 643, 366, 366, 366, 366, 395, 395, 366, 259, 259, 259, 259, 259, 259, 19, 106, 1, -18, '', 0, 30, 23, 1.67, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 4), 66, 66, 7032, 7577, 1144, 660, 373, 373, 373, 373, 398, 398, 373, 278, 278, 278, 278, 278, 278, 19, 108, 1, -18, '', 0, 31, 24, 1.73, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 5), 66, 66, 7164, 7775, 1166, 676, 380, 380, 380, 380, 401, 401, 380, 297, 297, 297, 297, 297, 297, 19, 109, 1, -18, '', 0, 32, 25, 1.79, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 1), 67, 67, 6986, 0, 2312, 1876, 364, 364, 364, 364, 308, 308, 364, 163, 163, 163, 163, 163, 163, 40, 207, 4, -23, '', 0, 35, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 2), 67, 67, 7321, 0, 2412, 1910, 371, 371, 371, 371, 310, 310, 371, 182, 182, 182, 182, 182, 182, 41, 210, 4, -24, '', 0, 37, 0, 1.31, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 3), 67, 67, 7656, 0, 2513, 1943, 378, 378, 378, 378, 312, 312, 378, 201, 201, 201, 201, 201, 201, 41, 213, 4, -25, '', 0, 39, 0, 1.37, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 4), 67, 67, 7991, 0, 2613, 1977, 385, 385, 385, 385, 314, 314, 385, 220, 220, 220, 220, 220, 220, 42, 215, 4, -26, '', 0, 41, 0, 1.43, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 5), 67, 67, 8326, 0, 2714, 2010, 392, 392, 392, 392, 316, 316, 392, 239, 239, 239, 239, 239, 239, 42, 218, 4, -27, '', 0, 43, 0, 1.49, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 1), 67, 67, 9331, 0, 2848, 2043, 402, 402, 402, 402, 328, 328, 402, 223, 223, 223, 223, 223, 223, 42, 214, 4, -28, '', 0, 45, 0, 1.55, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 2), 67, 67, 9666, 0, 2948, 2077, 409, 409, 409, 409, 330, 330, 409, 242, 242, 242, 242, 242, 242, 42, 217, 4, -29, '', 0, 47, 0, 1.61, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 3), 67, 67, 10001, 0, 3049, 2110, 416, 416, 416, 416, 332, 332, 416, 261, 261, 261, 261, 261, 261, 43, 220, 4, -30, '', 0, 49, 0, 1.67, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 4), 67, 67, 10336, 0, 3149, 2144, 423, 423, 423, 423, 334, 334, 423, 280, 280, 280, 280, 280, 280, 43, 222, 4, -31, '', 0, 51, 0, 1.73, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 5), 67, 67, 10671, 0, 3250, 2177, 430, 430, 430, 430, 336, 336, 430, 299, 299, 299, 299, 299, 299, 44, 225, 4, -32, '', 0, 53, 0, 1.79, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 1), 67, 67, 5759, 5467, 1809, 1128, 334, 334, 334, 334, 372, 372, 334, 163, 163, 163, 163, 163, 163, 18, 101, 1, -18, '', 0, 24, 18, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 2), 67, 67, 5960, 5668, 1876, 1150, 341, 341, 341, 341, 375, 375, 341, 182, 182, 182, 182, 182, 182, 18, 102, 1, -18, '', 0, 25, 19, 1.31, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 3), 67, 67, 6161, 5869, 1943, 1173, 348, 348, 348, 348, 378, 378, 348, 201, 201, 201, 201, 201, 201, 18, 104, 1, -18, '', 0, 26, 20, 1.37, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 4), 67, 67, 6362, 6070, 2010, 1195, 355, 355, 355, 355, 381, 381, 355, 220, 220, 220, 220, 220, 220, 18, 105, 1, -18, '', 0, 27, 21, 1.43, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 5), 67, 67, 6563, 6271, 2077, 1217, 362, 362, 362, 362, 384, 384, 362, 239, 239, 239, 239, 239, 239, 19, 106, 1, -18, '', 0, 28, 22, 1.49, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 1), 67, 67, 7769, 7142, 2211, 1228, 372, 372, 372, 372, 397, 397, 372, 223, 223, 223, 223, 223, 223, 18, 105, 1, -18, '', 0, 30, 21, 1.55, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 2), 67, 67, 7970, 7343, 2278, 1250, 379, 379, 379, 379, 400, 400, 379, 242, 242, 242, 242, 242, 242, 19, 106, 1, -18, '', 0, 31, 22, 1.61, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 3), 67, 67, 8171, 7544, 2345, 1273, 386, 386, 386, 386, 403, 403, 386, 261, 261, 261, 261, 261, 261, 19, 108, 1, -18, '', 0, 32, 23, 1.67, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 4), 67, 67, 8372, 7745, 2412, 1295, 393, 393, 393, 393, 406, 406, 393, 280, 280, 280, 280, 280, 280, 19, 109, 1, -18, '', 0, 33, 24, 1.73, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 5), 67, 67, 8573, 7946, 2479, 1317, 400, 400, 400, 400, 409, 409, 400, 299, 299, 299, 299, 299, 299, 19, 111, 1, -18, '', 0, 34, 25, 1.79, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 1), 67, 67, 6047, 0, 1373, 1909, 364, 364, 364, 364, 308, 308, 364, 163, 163, 163, 163, 163, 163, 40, 200, 4, -23, '', 0, 33, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 2), 67, 67, 6315, 0, 1407, 1943, 371, 371, 371, 371, 310, 310, 371, 182, 182, 182, 182, 182, 182, 41, 202, 4, -24, '', 0, 35, 0, 1.31, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 3), 67, 67, 6583, 0, 1440, 1976, 378, 378, 378, 378, 312, 312, 378, 201, 201, 201, 201, 201, 201, 41, 205, 4, -25, '', 0, 37, 0, 1.37, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 4), 67, 67, 6851, 0, 1474, 2010, 385, 385, 385, 385, 314, 314, 385, 220, 220, 220, 220, 220, 220, 42, 207, 4, -26, '', 0, 39, 0, 1.43, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 5), 67, 67, 7119, 0, 1507, 2043, 392, 392, 392, 392, 316, 316, 392, 239, 239, 239, 239, 239, 239, 42, 210, 4, -27, '', 0, 41, 0, 1.49, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 1), 67, 67, 8057, 0, 1708, 2110, 402, 402, 402, 402, 328, 328, 402, 223, 223, 223, 223, 223, 223, 42, 206, 4, -28, '', 0, 41, 0, 1.55, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 2), 67, 67, 8325, 0, 1742, 2144, 409, 409, 409, 409, 330, 330, 409, 242, 242, 242, 242, 242, 242, 42, 209, 4, -29, '', 0, 43, 0, 1.61, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 3), 67, 67, 8593, 0, 1775, 2177, 416, 416, 416, 416, 332, 332, 416, 261, 261, 261, 261, 261, 261, 43, 211, 4, -30, '', 0, 45, 0, 1.67, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 4), 67, 67, 8861, 0, 1809, 2211, 423, 423, 423, 423, 334, 334, 423, 280, 280, 280, 280, 280, 280, 43, 214, 4, -31, '', 0, 47, 0, 1.73, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 5), 67, 67, 9129, 0, 1842, 2244, 430, 430, 430, 430, 336, 336, 430, 299, 299, 299, 299, 299, 299, 44, 216, 4, -32, '', 0, 49, 0, 1.79, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 1), 67, 67, 5160, 5467, 893, 552, 325, 325, 325, 325, 372, 372, 325, 163, 163, 163, 163, 163, 163, 18, 101, 1, -18, '', 0, 23, 18, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 2), 67, 67, 5294, 5668, 915, 569, 332, 332, 332, 332, 375, 375, 332, 182, 182, 182, 182, 182, 182, 18, 102, 1, -18, '', 0, 24, 19, 1.31, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 3), 67, 67, 5428, 5869, 938, 586, 339, 339, 339, 339, 378, 378, 339, 201, 201, 201, 201, 201, 201, 18, 104, 1, -18, '', 0, 25, 20, 1.37, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 4), 67, 67, 5562, 6070, 960, 603, 346, 346, 346, 346, 381, 381, 346, 220, 220, 220, 220, 220, 220, 18, 105, 1, -18, '', 0, 26, 21, 1.43, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 5), 67, 67, 5696, 6271, 982, 619, 353, 353, 353, 353, 384, 384, 353, 239, 239, 239, 239, 239, 239, 19, 106, 1, -18, '', 0, 27, 22, 1.49, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 1), 67, 67, 6835, 7142, 1094, 619, 363, 363, 363, 363, 397, 397, 363, 223, 223, 223, 223, 223, 223, 18, 105, 1, -18, '', 0, 28, 21, 1.55, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 2), 67, 67, 6969, 7343, 1116, 636, 370, 370, 370, 370, 400, 400, 370, 242, 242, 242, 242, 242, 242, 19, 106, 1, -18, '', 0, 29, 22, 1.61, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 3), 67, 67, 7103, 7544, 1139, 653, 377, 377, 377, 377, 403, 403, 377, 261, 261, 261, 261, 261, 261, 19, 108, 1, -18, '', 0, 30, 23, 1.67, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 4), 67, 67, 7237, 7745, 1161, 670, 384, 384, 384, 384, 406, 406, 384, 280, 280, 280, 280, 280, 280, 19, 109, 1, -18, '', 0, 31, 24, 1.73, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 5), 67, 67, 7371, 7946, 1183, 686, 391, 391, 391, 391, 409, 409, 391, 299, 299, 299, 299, 299, 299, 19, 111, 1, -18, '', 0, 32, 25, 1.79, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 1), 68, 68, 7221, 0, 2346, 1904, 377, 377, 377, 377, 316, 316, 377, 166, 166, 166, 166, 166, 166, 44, 223, 4, -24, '', 0, 35, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 2), 68, 68, 7561, 0, 2448, 1938, 384, 384, 384, 384, 318, 318, 384, 186, 186, 186, 186, 186, 186, 44, 226, 4, -25, '', 0, 37, 0, 1.31, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 3), 68, 68, 7901, 0, 2550, 1972, 391, 391, 391, 391, 320, 320, 391, 206, 206, 206, 206, 206, 206, 45, 229, 4, -26, '', 0, 39, 0, 1.37, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 4), 68, 68, 8241, 0, 2652, 2006, 398, 398, 398, 398, 322, 322, 398, 226, 226, 226, 226, 226, 226, 45, 232, 4, -27, '', 0, 41, 0, 1.43, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 5), 68, 68, 8581, 0, 2754, 2040, 405, 405, 405, 405, 324, 324, 405, 246, 246, 246, 246, 246, 246, 46, 235, 4, -28, '', 0, 43, 0, 1.49, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 1), 68, 68, 9601, 0, 2890, 2074, 416, 416, 416, 416, 336, 336, 416, 228, 228, 228, 228, 228, 228, 45, 230, 4, -29, '', 0, 45, 0, 1.55, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 2), 68, 68, 9941, 0, 2992, 2108, 423, 423, 423, 423, 338, 338, 423, 248, 248, 248, 248, 248, 248, 45, 233, 4, -30, '', 0, 47, 0, 1.61, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 3), 68, 68, 10281, 0, 3094, 2142, 430, 430, 430, 430, 340, 340, 430, 268, 268, 268, 268, 268, 268, 46, 236, 4, -31, '', 0, 49, 0, 1.67, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 4), 68, 68, 10621, 0, 3196, 2176, 437, 437, 437, 437, 342, 342, 437, 288, 288, 288, 288, 288, 288, 46, 239, 4, -32, '', 0, 51, 0, 1.73, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 5), 68, 68, 10961, 0, 3298, 2210, 444, 444, 444, 444, 344, 344, 444, 308, 308, 308, 308, 308, 308, 47, 242, 4, -33, '', 0, 53, 0, 1.79, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 1), 68, 68, 5953, 5603, 1836, 1144, 346, 346, 346, 346, 381, 381, 346, 166, 166, 166, 166, 166, 166, 18, 102, 1, -18, '', 0, 25, 18, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 2), 68, 68, 6157, 5807, 1904, 1167, 353, 353, 353, 353, 384, 384, 353, 186, 186, 186, 186, 186, 186, 18, 104, 1, -18, '', 0, 26, 19, 1.31, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 3), 68, 68, 6361, 6011, 1972, 1190, 360, 360, 360, 360, 387, 387, 360, 206, 206, 206, 206, 206, 206, 18, 105, 1, -18, '', 0, 27, 20, 1.37, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 4), 68, 68, 6565, 6215, 2040, 1212, 367, 367, 367, 367, 390, 390, 367, 226, 226, 226, 226, 226, 226, 19, 106, 1, -18, '', 0, 28, 21, 1.43, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 5), 68, 68, 6769, 6419, 2108, 1235, 374, 374, 374, 374, 393, 393, 374, 246, 246, 246, 246, 246, 246, 19, 108, 1, -18, '', 0, 29, 22, 1.49, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 1), 68, 68, 7993, 7303, 2244, 1246, 385, 385, 385, 385, 406, 406, 385, 228, 228, 228, 228, 228, 228, 19, 106, 1, -18, '', 0, 31, 21, 1.55, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 2), 68, 68, 8197, 7507, 2312, 1269, 392, 392, 392, 392, 409, 409, 392, 248, 248, 248, 248, 248, 248, 19, 108, 1, -18, '', 0, 32, 22, 1.61, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 3), 68, 68, 8401, 7711, 2380, 1292, 399, 399, 399, 399, 412, 412, 399, 268, 268, 268, 268, 268, 268, 19, 109, 1, -18, '', 0, 33, 23, 1.67, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 4), 68, 68, 8605, 7915, 2448, 1314, 406, 406, 406, 406, 415, 415, 406, 288, 288, 288, 288, 288, 288, 19, 111, 1, -18, '', 0, 34, 24, 1.73, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 5), 68, 68, 8809, 8119, 2516, 1337, 413, 413, 413, 413, 418, 418, 413, 308, 308, 308, 308, 308, 308, 20, 112, 1, -18, '', 0, 35, 25, 1.79, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 1), 68, 68, 6252, 0, 1394, 1938, 377, 377, 377, 377, 316, 316, 377, 166, 166, 166, 166, 166, 166, 44, 216, 4, -24, '', 0, 33, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 2), 68, 68, 6524, 0, 1428, 1972, 384, 384, 384, 384, 318, 318, 384, 186, 186, 186, 186, 186, 186, 44, 218, 4, -25, '', 0, 35, 0, 1.31, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 3), 68, 68, 6796, 0, 1462, 2006, 391, 391, 391, 391, 320, 320, 391, 206, 206, 206, 206, 206, 206, 45, 221, 4, -26, '', 0, 37, 0, 1.37, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 4), 68, 68, 7068, 0, 1496, 2040, 398, 398, 398, 398, 322, 322, 398, 226, 226, 226, 226, 226, 226, 45, 224, 4, -27, '', 0, 39, 0, 1.43, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 5), 68, 68, 7340, 0, 1530, 2074, 405, 405, 405, 405, 324, 324, 405, 246, 246, 246, 246, 246, 246, 46, 226, 4, -28, '', 0, 41, 0, 1.49, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 1), 68, 68, 8292, 0, 1734, 2142, 416, 416, 416, 416, 336, 336, 416, 228, 228, 228, 228, 228, 228, 45, 222, 4, -29, '', 0, 41, 0, 1.55, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 2), 68, 68, 8564, 0, 1768, 2176, 423, 423, 423, 423, 338, 338, 423, 248, 248, 248, 248, 248, 248, 45, 225, 4, -30, '', 0, 43, 0, 1.61, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 3), 68, 68, 8836, 0, 1802, 2210, 430, 430, 430, 430, 340, 340, 430, 268, 268, 268, 268, 268, 268, 46, 228, 4, -31, '', 0, 45, 0, 1.67, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 4), 68, 68, 9108, 0, 1836, 2244, 437, 437, 437, 437, 342, 342, 437, 288, 288, 288, 288, 288, 288, 46, 230, 4, -32, '', 0, 47, 0, 1.73, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 5), 68, 68, 9380, 0, 1870, 2278, 444, 444, 444, 444, 344, 344, 444, 308, 308, 308, 308, 308, 308, 47, 233, 4, -33, '', 0, 49, 0, 1.79, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 1), 68, 68, 5339, 5603, 906, 561, 337, 337, 337, 337, 381, 381, 337, 166, 166, 166, 166, 166, 166, 18, 102, 1, -18, '', 0, 24, 18, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 2), 68, 68, 5475, 5807, 929, 578, 344, 344, 344, 344, 384, 384, 344, 186, 186, 186, 186, 186, 186, 18, 104, 1, -18, '', 0, 25, 19, 1.31, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 3), 68, 68, 5611, 6011, 952, 595, 351, 351, 351, 351, 387, 387, 351, 206, 206, 206, 206, 206, 206, 18, 105, 1, -18, '', 0, 26, 20, 1.37, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 4), 68, 68, 5747, 6215, 974, 612, 358, 358, 358, 358, 390, 390, 358, 226, 226, 226, 226, 226, 226, 19, 106, 1, -18, '', 0, 27, 21, 1.43, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 5), 68, 68, 5883, 6419, 997, 629, 365, 365, 365, 365, 393, 393, 365, 246, 246, 246, 246, 246, 246, 19, 108, 1, -18, '', 0, 28, 22, 1.49, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 1), 68, 68, 7039, 7303, 1110, 629, 376, 376, 376, 376, 406, 406, 376, 228, 228, 228, 228, 228, 228, 19, 106, 1, -18, '', 0, 29, 21, 1.55, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 2), 68, 68, 7175, 7507, 1133, 646, 383, 383, 383, 383, 409, 409, 383, 248, 248, 248, 248, 248, 248, 19, 108, 1, -18, '', 0, 30, 22, 1.61, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 3), 68, 68, 7311, 7711, 1156, 663, 390, 390, 390, 390, 412, 412, 390, 268, 268, 268, 268, 268, 268, 19, 109, 1, -18, '', 0, 31, 23, 1.67, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 4), 68, 68, 7447, 7915, 1178, 680, 397, 397, 397, 397, 415, 415, 397, 288, 288, 288, 288, 288, 288, 19, 111, 1, -18, '', 0, 32, 24, 1.73, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 5), 68, 68, 7583, 8119, 1201, 697, 404, 404, 404, 404, 418, 418, 404, 308, 308, 308, 308, 308, 308, 20, 112, 1, -18, '', 0, 33, 25, 1.79, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 1), 69, 69, 7462, 0, 2381, 1932, 389, 389, 389, 389, 324, 324, 389, 168, 168, 168, 168, 168, 168, 47, 240, 4, -24, '', 0, 36, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 2), 69, 69, 7807, 0, 2484, 1967, 396, 396, 396, 396, 326, 326, 396, 188, 188, 188, 188, 188, 188, 47, 243, 4, -25, '', 0, 38, 0, 1.31, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 3), 69, 69, 8152, 0, 2588, 2001, 403, 403, 403, 403, 328, 328, 403, 208, 208, 208, 208, 208, 208, 48, 245, 4, -26, '', 0, 40, 0, 1.37, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 4), 69, 69, 8497, 0, 2691, 2036, 410, 410, 410, 410, 330, 330, 410, 228, 228, 228, 228, 228, 228, 48, 248, 4, -27, '', 0, 42, 0, 1.43, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 5), 69, 69, 8842, 0, 2795, 2070, 417, 417, 417, 417, 332, 332, 417, 248, 248, 248, 248, 248, 248, 49, 251, 4, -28, '', 0, 44, 0, 1.49, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 1), 69, 69, 9877, 0, 2933, 2104, 428, 428, 428, 428, 344, 344, 428, 230, 230, 230, 230, 230, 230, 48, 247, 4, -29, '', 0, 46, 0, 1.55, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 2), 69, 69, 10222, 0, 3036, 2139, 435, 435, 435, 435, 346, 346, 435, 250, 250, 250, 250, 250, 250, 49, 250, 4, -30, '', 0, 48, 0, 1.61, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 3), 69, 69, 10567, 0, 3140, 2173, 442, 442, 442, 442, 348, 348, 442, 270, 270, 270, 270, 270, 270, 49, 252, 4, -31, '', 0, 50, 0, 1.67, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 4), 69, 69, 10912, 0, 3243, 2208, 449, 449, 449, 449, 350, 350, 449, 290, 290, 290, 290, 290, 290, 50, 255, 4, -32, '', 0, 52, 0, 1.73, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 5), 69, 69, 11257, 0, 3347, 2242, 456, 456, 456, 456, 352, 352, 456, 310, 310, 310, 310, 310, 310, 50, 258, 4, -33, '', 0, 54, 0, 1.79, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 1), 69, 69, 6151, 5741, 1863, 1162, 357, 357, 357, 357, 389, 389, 357, 168, 168, 168, 168, 168, 168, 18, 104, 1, -18, '', 0, 25, 18, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 2), 69, 69, 6358, 5948, 1932, 1185, 364, 364, 364, 364, 392, 392, 364, 188, 188, 188, 188, 188, 188, 18, 105, 1, -18, '', 0, 26, 19, 1.31, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 3), 69, 69, 6565, 6155, 2001, 1208, 371, 371, 371, 371, 395, 395, 371, 208, 208, 208, 208, 208, 208, 19, 106, 1, -18, '', 0, 27, 20, 1.37, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 4), 69, 69, 6772, 6362, 2070, 1231, 378, 378, 378, 378, 398, 398, 378, 228, 228, 228, 228, 228, 228, 19, 108, 1, -18, '', 0, 28, 21, 1.43, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 5), 69, 69, 6979, 6569, 2139, 1254, 385, 385, 385, 385, 401, 401, 385, 248, 248, 248, 248, 248, 248, 19, 109, 1, -18, '', 0, 29, 22, 1.49, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 1), 69, 69, 8221, 7466, 2277, 1265, 396, 396, 396, 396, 414, 414, 396, 230, 230, 230, 230, 230, 230, 19, 108, 1, -18, '', 0, 31, 21, 1.55, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 2), 69, 69, 8428, 7673, 2346, 1288, 403, 403, 403, 403, 417, 417, 403, 250, 250, 250, 250, 250, 250, 19, 109, 1, -18, '', 0, 32, 22, 1.61, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 3), 69, 69, 8635, 7880, 2415, 1311, 410, 410, 410, 410, 420, 420, 410, 270, 270, 270, 270, 270, 270, 19, 111, 1, -18, '', 0, 33, 23, 1.67, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 4), 69, 69, 8842, 8087, 2484, 1334, 417, 417, 417, 417, 423, 423, 417, 290, 290, 290, 290, 290, 290, 20, 112, 1, -18, '', 0, 34, 24, 1.73, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 5), 69, 69, 9049, 8294, 2553, 1357, 424, 424, 424, 424, 426, 426, 424, 310, 310, 310, 310, 310, 310, 20, 113, 1, -18, '', 0, 35, 25, 1.79, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 1), 69, 69, 6462, 0, 1414, 1966, 389, 389, 389, 389, 324, 324, 389, 168, 168, 168, 168, 168, 168, 47, 232, 4, -24, '', 0, 34, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 2), 69, 69, 6738, 0, 1449, 2001, 396, 396, 396, 396, 326, 326, 396, 188, 188, 188, 188, 188, 188, 47, 235, 4, -25, '', 0, 36, 0, 1.31, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 3), 69, 69, 7014, 0, 1483, 2035, 403, 403, 403, 403, 328, 328, 403, 208, 208, 208, 208, 208, 208, 48, 237, 4, -26, '', 0, 38, 0, 1.37, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 4), 69, 69, 7290, 0, 1518, 2070, 410, 410, 410, 410, 330, 330, 410, 228, 228, 228, 228, 228, 228, 48, 240, 4, -27, '', 0, 40, 0, 1.43, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 5), 69, 69, 7566, 0, 1552, 2104, 417, 417, 417, 417, 332, 332, 417, 248, 248, 248, 248, 248, 248, 49, 243, 4, -28, '', 0, 42, 0, 1.49, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 1), 69, 69, 8532, 0, 1759, 2173, 428, 428, 428, 428, 344, 344, 428, 230, 230, 230, 230, 230, 230, 48, 239, 4, -29, '', 0, 42, 0, 1.55, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 2), 69, 69, 8808, 0, 1794, 2208, 435, 435, 435, 435, 346, 346, 435, 250, 250, 250, 250, 250, 250, 49, 241, 4, -30, '', 0, 44, 0, 1.61, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 3), 69, 69, 9084, 0, 1828, 2242, 442, 442, 442, 442, 348, 348, 442, 270, 270, 270, 270, 270, 270, 49, 244, 4, -31, '', 0, 46, 0, 1.67, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 4), 69, 69, 9360, 0, 1863, 2277, 449, 449, 449, 449, 350, 350, 449, 290, 290, 290, 290, 290, 290, 50, 246, 4, -32, '', 0, 48, 0, 1.73, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 5), 69, 69, 9636, 0, 1897, 2311, 456, 456, 456, 456, 352, 352, 456, 310, 310, 310, 310, 310, 310, 50, 249, 4, -33, '', 0, 50, 0, 1.79, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 1), 69, 69, 5523, 5741, 920, 569, 348, 348, 348, 348, 389, 389, 348, 168, 168, 168, 168, 168, 168, 18, 104, 1, -18, '', 0, 24, 18, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 2), 69, 69, 5661, 5948, 943, 586, 355, 355, 355, 355, 392, 392, 355, 188, 188, 188, 188, 188, 188, 18, 105, 1, -18, '', 0, 25, 19, 1.31, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 3), 69, 69, 5799, 6155, 966, 603, 362, 362, 362, 362, 395, 395, 362, 208, 208, 208, 208, 208, 208, 19, 106, 1, -18, '', 0, 26, 20, 1.37, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 4), 69, 69, 5937, 6362, 989, 621, 369, 369, 369, 369, 398, 398, 369, 228, 228, 228, 228, 228, 228, 19, 108, 1, -18, '', 0, 27, 21, 1.43, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 5), 69, 69, 6075, 6569, 1012, 638, 376, 376, 376, 376, 401, 401, 376, 248, 248, 248, 248, 248, 248, 19, 109, 1, -18, '', 0, 28, 22, 1.49, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 1), 69, 69, 7248, 7466, 1127, 638, 387, 387, 387, 387, 414, 414, 387, 230, 230, 230, 230, 230, 230, 19, 108, 1, -18, '', 0, 29, 21, 1.55, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 2), 69, 69, 7386, 7673, 1150, 655, 394, 394, 394, 394, 417, 417, 394, 250, 250, 250, 250, 250, 250, 19, 109, 1, -18, '', 0, 30, 22, 1.61, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 3), 69, 69, 7524, 7880, 1173, 672, 401, 401, 401, 401, 420, 420, 401, 270, 270, 270, 270, 270, 270, 19, 111, 1, -18, '', 0, 31, 23, 1.67, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 4), 69, 69, 7662, 8087, 1196, 690, 408, 408, 408, 408, 423, 423, 408, 290, 290, 290, 290, 290, 290, 20, 112, 1, -18, '', 0, 32, 24, 1.73, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 5), 69, 69, 7800, 8294, 1219, 707, 415, 415, 415, 415, 426, 426, 415, 310, 310, 310, 310, 310, 310, 20, 113, 1, -18, '', 0, 33, 25, 1.79, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 1), 70, 70, 7710, 0, 2415, 1960, 403, 403, 403, 403, 332, 332, 403, 170, 170, 170, 170, 170, 170, 50, 256, 4, -25, '', 0, 36, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 2), 70, 70, 8060, 0, 2520, 1995, 411, 411, 411, 411, 334, 334, 411, 190, 190, 190, 190, 190, 190, 51, 259, 4, -26, '', 0, 38, 0, 1.31, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 3), 70, 70, 8410, 0, 2625, 2030, 419, 419, 419, 419, 336, 336, 419, 210, 210, 210, 210, 210, 210, 51, 262, 4, -27, '', 0, 40, 0, 1.37, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 4), 70, 70, 8760, 0, 2730, 2065, 427, 427, 427, 427, 338, 338, 427, 230, 230, 230, 230, 230, 230, 52, 265, 4, -28, '', 0, 42, 0, 1.43, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 5), 70, 70, 9110, 0, 2835, 2100, 435, 435, 435, 435, 340, 340, 435, 250, 250, 250, 250, 250, 250, 52, 267, 4, -29, '', 0, 44, 0, 1.49, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 1), 70, 70, 10160, 0, 2975, 2135, 443, 443, 443, 443, 352, 352, 443, 232, 232, 232, 232, 232, 232, 51, 263, 4, -30, '', 0, 46, 0, 1.55, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 2), 70, 70, 10510, 0, 3080, 2170, 451, 451, 451, 451, 354, 354, 451, 252, 252, 252, 252, 252, 252, 52, 266, 4, -31, '', 0, 48, 0, 1.61, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 3), 70, 70, 10860, 0, 3185, 2205, 459, 459, 459, 459, 356, 356, 459, 272, 272, 272, 272, 272, 272, 52, 269, 4, -32, '', 0, 50, 0, 1.67, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 4), 70, 70, 11210, 0, 3290, 2240, 467, 467, 467, 467, 358, 358, 467, 292, 292, 292, 292, 292, 292, 53, 272, 4, -33, '', 0, 52, 0, 1.73, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 5), 70, 70, 11560, 0, 3395, 2275, 475, 475, 475, 475, 360, 360, 475, 312, 312, 312, 312, 312, 312, 53, 274, 4, -34, '', 0, 54, 0, 1.79, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 1), 70, 70, 6355, 5880, 1890, 1178, 370, 370, 370, 370, 398, 398, 370, 170, 170, 170, 170, 170, 170, 18, 105, 1, -18, '', 0, 25, 19, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 2), 70, 70, 6565, 6090, 1960, 1201, 378, 378, 378, 378, 401, 401, 378, 190, 190, 190, 190, 190, 190, 19, 106, 1, -18, '', 0, 26, 20, 1.31, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 3), 70, 70, 6775, 6300, 2030, 1225, 386, 386, 386, 386, 404, 404, 386, 210, 210, 210, 210, 210, 210, 19, 108, 1, -18, '', 0, 27, 21, 1.37, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 4), 70, 70, 6985, 6510, 2100, 1248, 394, 394, 394, 394, 407, 407, 394, 230, 230, 230, 230, 230, 230, 19, 109, 1, -18, '', 0, 28, 22, 1.43, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 5), 70, 70, 7195, 6720, 2170, 1271, 402, 402, 402, 402, 410, 410, 402, 250, 250, 250, 250, 250, 250, 19, 111, 1, -18, '', 0, 29, 23, 1.49, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 1), 70, 70, 8455, 7630, 2310, 1283, 410, 410, 410, 410, 423, 423, 410, 232, 232, 232, 232, 232, 232, 19, 109, 1, -18, '', 0, 31, 22, 1.55, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 2), 70, 70, 8665, 7840, 2380, 1306, 418, 418, 418, 418, 426, 426, 418, 252, 252, 252, 252, 252, 252, 19, 111, 1, -18, '', 0, 32, 23, 1.61, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 3), 70, 70, 8875, 8050, 2450, 1330, 426, 426, 426, 426, 429, 429, 426, 272, 272, 272, 272, 272, 272, 20, 112, 1, -18, '', 0, 33, 24, 1.67, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 4), 70, 70, 9085, 8260, 2520, 1353, 434, 434, 434, 434, 432, 432, 434, 292, 292, 292, 292, 292, 292, 20, 113, 1, -18, '', 0, 34, 25, 1.73, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 5), 70, 70, 9295, 8470, 2590, 1376, 442, 442, 442, 442, 435, 435, 442, 312, 312, 312, 312, 312, 312, 20, 115, 1, -18, '', 0, 35, 26, 1.79, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 1), 70, 70, 6677, 0, 1435, 1995, 403, 403, 403, 403, 332, 332, 403, 170, 170, 170, 170, 170, 170, 50, 248, 4, -25, '', 0, 34, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 2), 70, 70, 6957, 0, 1470, 2030, 411, 411, 411, 411, 334, 334, 411, 190, 190, 190, 190, 190, 190, 51, 251, 4, -26, '', 0, 36, 0, 1.31, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 3), 70, 70, 7237, 0, 1505, 2065, 419, 419, 419, 419, 336, 336, 419, 210, 210, 210, 210, 210, 210, 51, 254, 4, -27, '', 0, 38, 0, 1.37, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 4), 70, 70, 7517, 0, 1540, 2100, 427, 427, 427, 427, 338, 338, 427, 230, 230, 230, 230, 230, 230, 52, 256, 4, -28, '', 0, 40, 0, 1.43, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 5), 70, 70, 7797, 0, 1575, 2135, 435, 435, 435, 435, 340, 340, 435, 250, 250, 250, 250, 250, 250, 52, 259, 4, -29, '', 0, 42, 0, 1.49, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 1), 70, 70, 8777, 0, 1785, 2205, 443, 443, 443, 443, 352, 352, 443, 232, 232, 232, 232, 232, 232, 51, 255, 4, -30, '', 0, 42, 0, 1.55, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 2), 70, 70, 9057, 0, 1820, 2240, 451, 451, 451, 451, 354, 354, 451, 252, 252, 252, 252, 252, 252, 52, 258, 4, -31, '', 0, 44, 0, 1.61, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 3), 70, 70, 9337, 0, 1855, 2275, 459, 459, 459, 459, 356, 356, 459, 272, 272, 272, 272, 272, 272, 52, 260, 4, -32, '', 0, 46, 0, 1.67, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 4), 70, 70, 9617, 0, 1890, 2310, 467, 467, 467, 467, 358, 358, 467, 292, 292, 292, 292, 292, 292, 53, 263, 4, -33, '', 0, 48, 0, 1.73, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 5), 70, 70, 9897, 0, 1925, 2345, 475, 475, 475, 475, 360, 360, 475, 312, 312, 312, 312, 312, 312, 53, 265, 4, -34, '', 0, 50, 0, 1.79, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 1), 70, 70, 5711, 5880, 933, 577, 361, 361, 361, 361, 398, 398, 361, 170, 170, 170, 170, 170, 170, 18, 105, 1, -18, '', 0, 24, 19, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 2), 70, 70, 5851, 6090, 956, 595, 369, 369, 369, 369, 401, 401, 369, 190, 190, 190, 190, 190, 190, 19, 106, 1, -18, '', 0, 25, 20, 1.31, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 3), 70, 70, 5991, 6300, 980, 612, 377, 377, 377, 377, 404, 404, 377, 210, 210, 210, 210, 210, 210, 19, 108, 1, -18, '', 0, 26, 21, 1.37, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 4), 70, 70, 6131, 6510, 1003, 630, 385, 385, 385, 385, 407, 407, 385, 230, 230, 230, 230, 230, 230, 19, 109, 1, -18, '', 0, 27, 22, 1.43, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 5), 70, 70, 6271, 6720, 1026, 647, 393, 393, 393, 393, 410, 410, 393, 250, 250, 250, 250, 250, 250, 19, 111, 1, -18, '', 0, 28, 23, 1.49, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 1), 70, 70, 7461, 7630, 1143, 647, 401, 401, 401, 401, 423, 423, 401, 232, 232, 232, 232, 232, 232, 19, 109, 1, -18, '', 0, 29, 22, 1.55, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 2), 70, 70, 7601, 7840, 1166, 665, 409, 409, 409, 409, 426, 426, 409, 252, 252, 252, 252, 252, 252, 19, 111, 1, -18, '', 0, 30, 23, 1.61, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 3), 70, 70, 7741, 8050, 1190, 682, 417, 417, 417, 417, 429, 429, 417, 272, 272, 272, 272, 272, 272, 20, 112, 1, -18, '', 0, 31, 24, 1.67, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 4), 70, 70, 7881, 8260, 1213, 700, 425, 425, 425, 425, 432, 432, 425, 292, 292, 292, 292, 292, 292, 20, 113, 1, -18, '', 0, 32, 25, 1.73, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 5), 70, 70, 8021, 8470, 1236, 717, 433, 433, 433, 433, 435, 435, 433, 312, 312, 312, 312, 312, 312, 20, 115, 1, -18, '', 0, 33, 26, 1.79, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 1), 71, 71, 7963, 0, 2450, 1988, 415, 415, 415, 415, 340, 340, 415, 172, 172, 172, 172, 172, 172, 53, 273, 4, -25, '', 0, 36, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 2), 71, 71, 8318, 0, 2556, 2024, 423, 423, 423, 423, 342, 342, 423, 192, 192, 192, 192, 192, 192, 54, 275, 4, -26, '', 0, 38, 0, 1.31, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 3), 71, 71, 8673, 0, 2663, 2059, 431, 431, 431, 431, 344, 344, 431, 212, 212, 212, 212, 212, 212, 54, 278, 4, -27, '', 0, 40, 0, 1.37, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 4), 71, 71, 9028, 0, 2769, 2095, 439, 439, 439, 439, 346, 346, 439, 232, 232, 232, 232, 232, 232, 55, 281, 4, -28, '', 0, 42, 0, 1.43, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 5), 71, 71, 9383, 0, 2876, 2130, 447, 447, 447, 447, 348, 348, 447, 252, 252, 252, 252, 252, 252, 55, 284, 4, -29, '', 0, 44, 0, 1.49, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 1), 71, 71, 10448, 0, 3018, 2165, 455, 455, 455, 455, 360, 360, 455, 236, 236, 236, 236, 236, 236, 55, 280, 4, -30, '', 0, 46, 0, 1.55, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 2), 71, 71, 10803, 0, 3124, 2201, 463, 463, 463, 463, 362, 362, 463, 256, 256, 256, 256, 256, 256, 55, 282, 4, -31, '', 0, 48, 0, 1.61, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 3), 71, 71, 11158, 0, 3231, 2236, 471, 471, 471, 471, 364, 364, 471, 276, 276, 276, 276, 276, 276, 56, 285, 4, -32, '', 0, 50, 0, 1.67, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 4), 71, 71, 11513, 0, 3337, 2272, 479, 479, 479, 479, 366, 366, 479, 296, 296, 296, 296, 296, 296, 56, 288, 4, -33, '', 0, 52, 0, 1.73, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 5), 71, 71, 11868, 0, 3444, 2307, 487, 487, 487, 487, 368, 368, 487, 316, 316, 316, 316, 316, 316, 57, 291, 4, -34, '', 0, 54, 0, 1.79, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 1), 71, 71, 6563, 6021, 1917, 1195, 382, 382, 382, 382, 406, 406, 382, 172, 172, 172, 172, 172, 172, 19, 106, 1, -18, '', 0, 25, 19, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 2), 71, 71, 6776, 6234, 1988, 1219, 390, 390, 390, 390, 409, 409, 390, 192, 192, 192, 192, 192, 192, 19, 108, 1, -18, '', 0, 26, 20, 1.31, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 3), 71, 71, 6989, 6447, 2059, 1243, 398, 398, 398, 398, 412, 412, 398, 212, 212, 212, 212, 212, 212, 19, 109, 1, -18, '', 0, 27, 21, 1.37, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 4), 71, 71, 7202, 6660, 2130, 1266, 406, 406, 406, 406, 415, 415, 406, 232, 232, 232, 232, 232, 232, 19, 111, 1, -18, '', 0, 28, 22, 1.43, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 5), 71, 71, 7415, 6873, 2201, 1290, 414, 414, 414, 414, 418, 418, 414, 252, 252, 252, 252, 252, 252, 20, 112, 1, -18, '', 0, 29, 23, 1.49, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 1), 71, 71, 8693, 7796, 2343, 1301, 422, 422, 422, 422, 431, 431, 422, 236, 236, 236, 236, 236, 236, 19, 111, 1, -18, '', 0, 31, 22, 1.55, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 2), 71, 71, 8906, 8009, 2414, 1325, 430, 430, 430, 430, 434, 434, 430, 256, 256, 256, 256, 256, 256, 20, 112, 1, -18, '', 0, 32, 23, 1.61, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 3), 71, 71, 9119, 8222, 2485, 1349, 438, 438, 438, 438, 437, 437, 438, 276, 276, 276, 276, 276, 276, 20, 113, 1, -18, '', 0, 33, 24, 1.67, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 4), 71, 71, 9332, 8435, 2556, 1372, 446, 446, 446, 446, 440, 440, 446, 296, 296, 296, 296, 296, 296, 20, 115, 1, -18, '', 0, 34, 25, 1.73, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 5), 71, 71, 9545, 8648, 2627, 1396, 454, 454, 454, 454, 443, 443, 454, 316, 316, 316, 316, 316, 316, 20, 116, 1, -18, '', 0, 35, 26, 1.79, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 1), 71, 71, 6897, 0, 1455, 2023, 415, 415, 415, 415, 340, 340, 415, 172, 172, 172, 172, 172, 172, 53, 265, 4, -25, '', 0, 34, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 2), 71, 71, 7181, 0, 1491, 2059, 423, 423, 423, 423, 342, 342, 423, 192, 192, 192, 192, 192, 192, 54, 267, 4, -26, '', 0, 36, 0, 1.31, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 3), 71, 71, 7465, 0, 1526, 2094, 431, 431, 431, 431, 344, 344, 431, 212, 212, 212, 212, 212, 212, 54, 270, 4, -27, '', 0, 38, 0, 1.37, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 4), 71, 71, 7749, 0, 1562, 2130, 439, 439, 439, 439, 346, 346, 439, 232, 232, 232, 232, 232, 232, 55, 273, 4, -28, '', 0, 40, 0, 1.43, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 5), 71, 71, 8033, 0, 1597, 2165, 447, 447, 447, 447, 348, 348, 447, 252, 252, 252, 252, 252, 252, 55, 275, 4, -29, '', 0, 42, 0, 1.49, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 1), 71, 71, 9027, 0, 1810, 2236, 455, 455, 455, 455, 360, 360, 455, 236, 236, 236, 236, 236, 236, 55, 271, 4, -30, '', 0, 42, 0, 1.55, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 2), 71, 71, 9311, 0, 1846, 2272, 463, 463, 463, 463, 362, 362, 463, 256, 256, 256, 256, 256, 256, 55, 274, 4, -31, '', 0, 44, 0, 1.61, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 3), 71, 71, 9595, 0, 1881, 2307, 471, 471, 471, 471, 364, 364, 471, 276, 276, 276, 276, 276, 276, 56, 276, 4, -32, '', 0, 46, 0, 1.67, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 4), 71, 71, 9879, 0, 1917, 2343, 479, 479, 479, 479, 366, 366, 479, 296, 296, 296, 296, 296, 296, 56, 279, 4, -33, '', 0, 48, 0, 1.73, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 5), 71, 71, 10163, 0, 1952, 2378, 487, 487, 487, 487, 368, 368, 487, 316, 316, 316, 316, 316, 316, 57, 282, 4, -34, '', 0, 50, 0, 1.79, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 1), 71, 71, 5903, 6021, 946, 585, 372, 372, 372, 372, 406, 406, 372, 172, 172, 172, 172, 172, 172, 19, 106, 1, -18, '', 0, 24, 19, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 2), 71, 71, 6045, 6234, 970, 603, 380, 380, 380, 380, 409, 409, 380, 192, 192, 192, 192, 192, 192, 19, 108, 1, -18, '', 0, 25, 20, 1.31, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 3), 71, 71, 6187, 6447, 994, 621, 388, 388, 388, 388, 412, 412, 388, 212, 212, 212, 212, 212, 212, 19, 109, 1, -18, '', 0, 26, 21, 1.37, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 4), 71, 71, 6329, 6660, 1017, 639, 396, 396, 396, 396, 415, 415, 396, 232, 232, 232, 232, 232, 232, 19, 111, 1, -18, '', 0, 27, 22, 1.43, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 5), 71, 71, 6471, 6873, 1041, 656, 404, 404, 404, 404, 418, 418, 404, 252, 252, 252, 252, 252, 252, 20, 112, 1, -18, '', 0, 28, 23, 1.49, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 1), 71, 71, 7678, 7796, 1159, 656, 412, 412, 412, 412, 431, 431, 412, 236, 236, 236, 236, 236, 236, 19, 111, 1, -18, '', 0, 29, 22, 1.55, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 2), 71, 71, 7820, 8009, 1183, 674, 420, 420, 420, 420, 434, 434, 420, 256, 256, 256, 256, 256, 256, 20, 112, 1, -18, '', 0, 30, 23, 1.61, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 3), 71, 71, 7962, 8222, 1207, 692, 428, 428, 428, 428, 437, 437, 428, 276, 276, 276, 276, 276, 276, 20, 113, 1, -18, '', 0, 31, 24, 1.67, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 4), 71, 71, 8104, 8435, 1230, 710, 436, 436, 436, 436, 440, 440, 436, 296, 296, 296, 296, 296, 296, 20, 115, 1, -18, '', 0, 32, 25, 1.73, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 5), 71, 71, 8246, 8648, 1254, 727, 444, 444, 444, 444, 443, 443, 444, 316, 316, 316, 316, 316, 316, 20, 116, 1, -18, '', 0, 33, 26, 1.79, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 1), 72, 72, 8222, 0, 2484, 2016, 428, 428, 428, 428, 348, 348, 428, 175, 175, 175, 175, 175, 175, 57, 289, 4, -26, '', 0, 37, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 2), 72, 72, 8582, 0, 2592, 2052, 436, 436, 436, 436, 350, 350, 436, 196, 196, 196, 196, 196, 196, 57, 292, 4, -27, '', 0, 39, 0, 1.31, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 3), 72, 72, 8942, 0, 2700, 2088, 444, 444, 444, 444, 352, 352, 444, 217, 217, 217, 217, 217, 217, 58, 295, 4, -28, '', 0, 41, 0, 1.37, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 4), 72, 72, 9302, 0, 2808, 2124, 452, 452, 452, 452, 354, 354, 452, 238, 238, 238, 238, 238, 238, 58, 297, 4, -29, '', 0, 43, 0, 1.43, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 5), 72, 72, 9662, 0, 2916, 2160, 460, 460, 460, 460, 356, 356, 460, 259, 259, 259, 259, 259, 259, 59, 300, 4, -30, '', 0, 45, 0, 1.49, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 1), 72, 72, 10742, 0, 3060, 2196, 469, 469, 469, 469, 368, 368, 469, 239, 239, 239, 239, 239, 239, 58, 296, 4, -31, '', 0, 47, 0, 1.55, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 2), 72, 72, 11102, 0, 3168, 2232, 477, 477, 477, 477, 370, 370, 477, 260, 260, 260, 260, 260, 260, 58, 299, 4, -32, '', 0, 49, 0, 1.61, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 3), 72, 72, 11462, 0, 3276, 2268, 485, 485, 485, 485, 372, 372, 485, 281, 281, 281, 281, 281, 281, 59, 302, 4, -33, '', 0, 51, 0, 1.67, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 4), 72, 72, 11822, 0, 3384, 2304, 493, 493, 493, 493, 374, 374, 493, 302, 302, 302, 302, 302, 302, 59, 304, 4, -34, '', 0, 53, 0, 1.73, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 5), 72, 72, 12182, 0, 3492, 2340, 501, 501, 501, 501, 376, 376, 501, 323, 323, 323, 323, 323, 323, 60, 307, 4, -35, '', 0, 55, 0, 1.79, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 1), 72, 72, 6777, 6163, 1944, 1212, 394, 394, 394, 394, 415, 415, 394, 175, 175, 175, 175, 175, 175, 19, 108, 1, -18, '', 0, 26, 19, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 2), 72, 72, 6993, 6379, 2016, 1236, 402, 402, 402, 402, 418, 418, 402, 196, 196, 196, 196, 196, 196, 19, 109, 1, -18, '', 0, 27, 20, 1.31, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 3), 72, 72, 7209, 6595, 2088, 1260, 410, 410, 410, 410, 421, 421, 410, 217, 217, 217, 217, 217, 217, 19, 111, 1, -18, '', 0, 28, 21, 1.37, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 4), 72, 72, 7425, 6811, 2160, 1284, 418, 418, 418, 418, 424, 424, 418, 238, 238, 238, 238, 238, 238, 20, 112, 1, -18, '', 0, 29, 22, 1.43, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 5), 72, 72, 7641, 7027, 2232, 1308, 426, 426, 426, 426, 427, 427, 426, 259, 259, 259, 259, 259, 259, 20, 113, 1, -18, '', 0, 30, 23, 1.49, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 1), 72, 72, 8937, 7963, 2376, 1320, 435, 435, 435, 435, 440, 440, 435, 239, 239, 239, 239, 239, 239, 20, 112, 1, -18, '', 0, 32, 22, 1.55, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 2), 72, 72, 9153, 8179, 2448, 1344, 443, 443, 443, 443, 443, 443, 443, 260, 260, 260, 260, 260, 260, 20, 113, 1, -18, '', 0, 33, 23, 1.61, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 3), 72, 72, 9369, 8395, 2520, 1368, 451, 451, 451, 451, 446, 446, 451, 281, 281, 281, 281, 281, 281, 20, 115, 1, -18, '', 0, 34, 24, 1.67, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 4), 72, 72, 9585, 8611, 2592, 1392, 459, 459, 459, 459, 449, 449, 459, 302, 302, 302, 302, 302, 302, 20, 116, 1, -18, '', 0, 35, 25, 1.73, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 5), 72, 72, 9801, 8827, 2664, 1416, 467, 467, 467, 467, 452, 452, 467, 323, 323, 323, 323, 323, 323, 21, 118, 1, -18, '', 0, 36, 26, 1.79, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 1), 72, 72, 7123, 0, 1476, 2052, 428, 428, 428, 428, 348, 348, 428, 175, 175, 175, 175, 175, 175, 57, 281, 4, -26, '', 0, 35, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 2), 72, 72, 7411, 0, 1512, 2088, 436, 436, 436, 436, 350, 350, 436, 196, 196, 196, 196, 196, 196, 57, 284, 4, -27, '', 0, 37, 0, 1.31, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 3), 72, 72, 7699, 0, 1548, 2124, 444, 444, 444, 444, 352, 352, 444, 217, 217, 217, 217, 217, 217, 58, 286, 4, -28, '', 0, 39, 0, 1.37, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 4), 72, 72, 7987, 0, 1584, 2160, 452, 452, 452, 452, 354, 354, 452, 238, 238, 238, 238, 238, 238, 58, 289, 4, -29, '', 0, 41, 0, 1.43, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 5), 72, 72, 8275, 0, 1620, 2196, 460, 460, 460, 460, 356, 356, 460, 259, 259, 259, 259, 259, 259, 59, 291, 4, -30, '', 0, 43, 0, 1.49, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 1), 72, 72, 9283, 0, 1836, 2268, 469, 469, 469, 469, 368, 368, 469, 239, 239, 239, 239, 239, 239, 58, 288, 4, -31, '', 0, 43, 0, 1.55, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 2), 72, 72, 9571, 0, 1872, 2304, 477, 477, 477, 477, 370, 370, 477, 260, 260, 260, 260, 260, 260, 58, 290, 4, -32, '', 0, 45, 0, 1.61, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 3), 72, 72, 9859, 0, 1908, 2340, 485, 485, 485, 485, 372, 372, 485, 281, 281, 281, 281, 281, 281, 59, 293, 4, -33, '', 0, 47, 0, 1.67, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 4), 72, 72, 10147, 0, 1944, 2376, 493, 493, 493, 493, 374, 374, 493, 302, 302, 302, 302, 302, 302, 59, 295, 4, -34, '', 0, 49, 0, 1.73, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 5), 72, 72, 10435, 0, 1980, 2412, 501, 501, 501, 501, 376, 376, 501, 323, 323, 323, 323, 323, 323, 60, 298, 4, -35, '', 0, 51, 0, 1.79, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 1), 72, 72, 6101, 6163, 960, 594, 384, 384, 384, 384, 415, 415, 384, 175, 175, 175, 175, 175, 175, 19, 108, 1, -18, '', 0, 25, 19, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 2), 72, 72, 6245, 6379, 984, 612, 392, 392, 392, 392, 418, 418, 392, 196, 196, 196, 196, 196, 196, 19, 109, 1, -18, '', 0, 26, 20, 1.31, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 3), 72, 72, 6389, 6595, 1008, 630, 400, 400, 400, 400, 421, 421, 400, 217, 217, 217, 217, 217, 217, 19, 111, 1, -18, '', 0, 27, 21, 1.37, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 4), 72, 72, 6533, 6811, 1032, 648, 408, 408, 408, 408, 424, 424, 408, 238, 238, 238, 238, 238, 238, 20, 112, 1, -18, '', 0, 28, 22, 1.43, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 5), 72, 72, 6677, 7027, 1056, 666, 416, 416, 416, 416, 427, 427, 416, 259, 259, 259, 259, 259, 259, 20, 113, 1, -18, '', 0, 29, 23, 1.49, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 1), 72, 72, 7901, 7963, 1176, 666, 425, 425, 425, 425, 440, 440, 425, 239, 239, 239, 239, 239, 239, 20, 112, 1, -18, '', 0, 30, 22, 1.55, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 2), 72, 72, 8045, 8179, 1200, 684, 433, 433, 433, 433, 443, 443, 433, 260, 260, 260, 260, 260, 260, 20, 113, 1, -18, '', 0, 31, 23, 1.61, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 3), 72, 72, 8189, 8395, 1224, 702, 441, 441, 441, 441, 446, 446, 441, 281, 281, 281, 281, 281, 281, 20, 115, 1, -18, '', 0, 32, 24, 1.67, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 4), 72, 72, 8333, 8611, 1248, 720, 449, 449, 449, 449, 449, 449, 449, 302, 302, 302, 302, 302, 302, 20, 116, 1, -18, '', 0, 33, 25, 1.73, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 5), 72, 72, 8477, 8827, 1272, 738, 457, 457, 457, 457, 452, 452, 457, 323, 323, 323, 323, 323, 323, 21, 118, 1, -18, '', 0, 34, 26, 1.79, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 1), 73, 73, 8487, 0, 2519, 2044, 440, 440, 440, 440, 356, 356, 440, 177, 177, 177, 177, 177, 177, 60, 305, 4, -26, '', 0, 37, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 2), 73, 73, 8852, 0, 2628, 2081, 448, 448, 448, 448, 358, 358, 448, 198, 198, 198, 198, 198, 198, 60, 308, 4, -27, '', 0, 39, 0, 1.31, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 3), 73, 73, 9217, 0, 2738, 2117, 456, 456, 456, 456, 360, 360, 456, 219, 219, 219, 219, 219, 219, 61, 311, 4, -28, '', 0, 41, 0, 1.37, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 4), 73, 73, 9582, 0, 2847, 2154, 464, 464, 464, 464, 362, 362, 464, 240, 240, 240, 240, 240, 240, 61, 314, 4, -29, '', 0, 43, 0, 1.43, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 5), 73, 73, 9947, 0, 2957, 2190, 472, 472, 472, 472, 364, 364, 472, 261, 261, 261, 261, 261, 261, 62, 317, 4, -30, '', 0, 45, 0, 1.49, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 1), 73, 73, 11042, 0, 3103, 2226, 481, 481, 481, 481, 376, 376, 481, 241, 241, 241, 241, 241, 241, 61, 312, 4, -31, '', 0, 47, 0, 1.55, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 2), 73, 73, 11407, 0, 3212, 2263, 489, 489, 489, 489, 378, 378, 489, 262, 262, 262, 262, 262, 262, 62, 315, 4, -32, '', 0, 49, 0, 1.61, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 3), 73, 73, 11772, 0, 3322, 2299, 497, 497, 497, 497, 380, 380, 497, 283, 283, 283, 283, 283, 283, 62, 318, 4, -33, '', 0, 51, 0, 1.67, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 4), 73, 73, 12137, 0, 3431, 2336, 505, 505, 505, 505, 382, 382, 505, 304, 304, 304, 304, 304, 304, 63, 321, 4, -34, '', 0, 53, 0, 1.73, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 5), 73, 73, 12502, 0, 3541, 2372, 513, 513, 513, 513, 384, 384, 513, 325, 325, 325, 325, 325, 325, 63, 324, 4, -35, '', 0, 55, 0, 1.79, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 1), 73, 73, 6995, 6307, 1971, 1229, 406, 406, 406, 406, 423, 423, 406, 177, 177, 177, 177, 177, 177, 19, 109, 1, -18, '', 0, 26, 19, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 2), 73, 73, 7214, 6526, 2044, 1253, 414, 414, 414, 414, 426, 426, 414, 198, 198, 198, 198, 198, 198, 19, 111, 1, -18, '', 0, 27, 20, 1.31, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 3), 73, 73, 7433, 6745, 2117, 1278, 422, 422, 422, 422, 429, 429, 422, 219, 219, 219, 219, 219, 219, 20, 112, 1, -18, '', 0, 28, 21, 1.37, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 4), 73, 73, 7652, 6964, 2190, 1302, 430, 430, 430, 430, 432, 432, 430, 240, 240, 240, 240, 240, 240, 20, 113, 1, -18, '', 0, 29, 22, 1.43, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 5), 73, 73, 7871, 7183, 2263, 1326, 438, 438, 438, 438, 435, 435, 438, 261, 261, 261, 261, 261, 261, 20, 115, 1, -18, '', 0, 30, 23, 1.49, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 1), 73, 73, 9185, 8132, 2409, 1338, 447, 447, 447, 447, 448, 448, 447, 241, 241, 241, 241, 241, 241, 20, 113, 1, -18, '', 0, 32, 22, 1.55, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 2), 73, 73, 9404, 8351, 2482, 1362, 455, 455, 455, 455, 451, 451, 455, 262, 262, 262, 262, 262, 262, 20, 115, 1, -18, '', 0, 33, 23, 1.61, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 3), 73, 73, 9623, 8570, 2555, 1387, 463, 463, 463, 463, 454, 454, 463, 283, 283, 283, 283, 283, 283, 20, 116, 1, -18, '', 0, 34, 24, 1.67, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 4), 73, 73, 9842, 8789, 2628, 1411, 471, 471, 471, 471, 457, 457, 471, 304, 304, 304, 304, 304, 304, 21, 118, 1, -18, '', 0, 35, 25, 1.73, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 5), 73, 73, 10061, 9008, 2701, 1435, 479, 479, 479, 479, 460, 460, 479, 325, 325, 325, 325, 325, 325, 21, 119, 1, -18, '', 0, 36, 26, 1.79, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 1), 73, 73, 7354, 0, 1496, 2080, 440, 440, 440, 440, 356, 356, 440, 177, 177, 177, 177, 177, 177, 60, 297, 4, -26, '', 0, 35, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 2), 73, 73, 7646, 0, 1533, 2117, 448, 448, 448, 448, 358, 358, 448, 198, 198, 198, 198, 198, 198, 60, 300, 4, -27, '', 0, 37, 0, 1.31, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 3), 73, 73, 7938, 0, 1569, 2153, 456, 456, 456, 456, 360, 360, 456, 219, 219, 219, 219, 219, 219, 61, 303, 4, -28, '', 0, 39, 0, 1.37, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 4), 73, 73, 8230, 0, 1606, 2190, 464, 464, 464, 464, 362, 362, 464, 240, 240, 240, 240, 240, 240, 61, 305, 4, -29, '', 0, 41, 0, 1.43, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 5), 73, 73, 8522, 0, 1642, 2226, 472, 472, 472, 472, 364, 364, 472, 261, 261, 261, 261, 261, 261, 62, 308, 4, -30, '', 0, 43, 0, 1.49, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 1), 73, 73, 9544, 0, 1861, 2299, 481, 481, 481, 481, 376, 376, 481, 241, 241, 241, 241, 241, 241, 61, 304, 4, -31, '', 0, 43, 0, 1.55, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 2), 73, 73, 9836, 0, 1898, 2336, 489, 489, 489, 489, 378, 378, 489, 262, 262, 262, 262, 262, 262, 62, 306, 4, -32, '', 0, 45, 0, 1.61, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 3), 73, 73, 10128, 0, 1934, 2372, 497, 497, 497, 497, 380, 380, 497, 283, 283, 283, 283, 283, 283, 62, 309, 4, -33, '', 0, 47, 0, 1.67, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 4), 73, 73, 10420, 0, 1971, 2409, 505, 505, 505, 505, 382, 382, 505, 304, 304, 304, 304, 304, 304, 63, 312, 4, -34, '', 0, 49, 0, 1.73, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 5), 73, 73, 10712, 0, 2007, 2445, 513, 513, 513, 513, 384, 384, 513, 325, 325, 325, 325, 325, 325, 63, 314, 4, -35, '', 0, 51, 0, 1.79, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 1), 73, 73, 6303, 6307, 973, 602, 395, 395, 395, 395, 423, 423, 395, 177, 177, 177, 177, 177, 177, 19, 109, 1, -18, '', 0, 25, 19, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 2), 73, 73, 6449, 6526, 997, 620, 403, 403, 403, 403, 426, 426, 403, 198, 198, 198, 198, 198, 198, 19, 111, 1, -18, '', 0, 26, 20, 1.31, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 3), 73, 73, 6595, 6745, 1022, 638, 411, 411, 411, 411, 429, 429, 411, 219, 219, 219, 219, 219, 219, 20, 112, 1, -18, '', 0, 27, 21, 1.37, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 4), 73, 73, 6741, 6964, 1046, 657, 419, 419, 419, 419, 432, 432, 419, 240, 240, 240, 240, 240, 240, 20, 113, 1, -18, '', 0, 28, 22, 1.43, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 5), 73, 73, 6887, 7183, 1070, 675, 427, 427, 427, 427, 435, 435, 427, 261, 261, 261, 261, 261, 261, 20, 115, 1, -18, '', 0, 29, 23, 1.49, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 1), 73, 73, 8128, 8132, 1192, 675, 436, 436, 436, 436, 448, 448, 436, 241, 241, 241, 241, 241, 241, 20, 113, 1, -18, '', 0, 30, 22, 1.55, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 2), 73, 73, 8274, 8351, 1216, 693, 444, 444, 444, 444, 451, 451, 444, 262, 262, 262, 262, 262, 262, 20, 115, 1, -18, '', 0, 31, 23, 1.61, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 3), 73, 73, 8420, 8570, 1241, 711, 452, 452, 452, 452, 454, 454, 452, 283, 283, 283, 283, 283, 283, 20, 116, 1, -18, '', 0, 32, 24, 1.67, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 4), 73, 73, 8566, 8789, 1265, 730, 460, 460, 460, 460, 457, 457, 460, 304, 304, 304, 304, 304, 304, 21, 118, 1, -18, '', 0, 33, 25, 1.73, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 5), 73, 73, 8712, 9008, 1289, 748, 468, 468, 468, 468, 460, 460, 468, 325, 325, 325, 325, 325, 325, 21, 119, 1, -18, '', 0, 34, 26, 1.79, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 1), 74, 74, 8758, 0, 2553, 2072, 453, 453, 453, 453, 364, 364, 453, 179, 179, 179, 179, 179, 179, 63, 322, 4, -27, '', 0, 37, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 2), 74, 74, 9128, 0, 2664, 2109, 461, 461, 461, 461, 366, 366, 461, 200, 200, 200, 200, 200, 200, 64, 325, 4, -28, '', 0, 39, 0, 1.31, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 3), 74, 74, 9498, 0, 2775, 2146, 469, 469, 469, 469, 368, 368, 469, 221, 221, 221, 221, 221, 221, 64, 327, 4, -29, '', 0, 41, 0, 1.37, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 4), 74, 74, 9868, 0, 2886, 2183, 477, 477, 477, 477, 370, 370, 477, 242, 242, 242, 242, 242, 242, 65, 330, 4, -30, '', 0, 43, 0, 1.43, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 5), 74, 74, 10238, 0, 2997, 2220, 485, 485, 485, 485, 372, 372, 485, 263, 263, 263, 263, 263, 263, 65, 333, 4, -31, '', 0, 45, 0, 1.49, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 1), 74, 74, 11348, 0, 3145, 2257, 495, 495, 495, 495, 384, 384, 495, 245, 245, 245, 245, 245, 245, 64, 329, 4, -32, '', 0, 47, 0, 1.55, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 2), 74, 74, 11718, 0, 3256, 2294, 503, 503, 503, 503, 386, 386, 503, 266, 266, 266, 266, 266, 266, 65, 332, 4, -33, '', 0, 49, 0, 1.61, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 3), 74, 74, 12088, 0, 3367, 2331, 511, 511, 511, 511, 388, 388, 511, 287, 287, 287, 287, 287, 287, 65, 334, 4, -34, '', 0, 51, 0, 1.67, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 4), 74, 74, 12458, 0, 3478, 2368, 519, 519, 519, 519, 390, 390, 519, 308, 308, 308, 308, 308, 308, 66, 337, 4, -35, '', 0, 53, 0, 1.73, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 5), 74, 74, 12828, 0, 3589, 2405, 527, 527, 527, 527, 392, 392, 527, 329, 329, 329, 329, 329, 329, 66, 340, 4, -36, '', 0, 55, 0, 1.79, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 1), 74, 74, 7219, 6453, 1998, 1245, 418, 418, 418, 418, 432, 432, 418, 179, 179, 179, 179, 179, 179, 19, 111, 1, -18, '', 0, 26, 19, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 2), 74, 74, 7441, 6675, 2072, 1270, 426, 426, 426, 426, 435, 435, 426, 200, 200, 200, 200, 200, 200, 20, 112, 1, -18, '', 0, 27, 20, 1.31, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 3), 74, 74, 7663, 6897, 2146, 1295, 434, 434, 434, 434, 438, 438, 434, 221, 221, 221, 221, 221, 221, 20, 113, 1, -18, '', 0, 28, 21, 1.37, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 4), 74, 74, 7885, 7119, 2220, 1319, 442, 442, 442, 442, 441, 441, 442, 242, 242, 242, 242, 242, 242, 20, 115, 1, -18, '', 0, 29, 22, 1.43, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 5), 74, 74, 8107, 7341, 2294, 1344, 450, 450, 450, 450, 444, 444, 450, 263, 263, 263, 263, 263, 263, 20, 116, 1, -18, '', 0, 30, 23, 1.49, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 1), 74, 74, 9439, 8303, 2442, 1356, 460, 460, 460, 460, 457, 457, 460, 245, 245, 245, 245, 245, 245, 20, 115, 1, -18, '', 0, 32, 22, 1.55, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 2), 74, 74, 9661, 8525, 2516, 1381, 468, 468, 468, 468, 460, 460, 468, 266, 266, 266, 266, 266, 266, 20, 116, 1, -18, '', 0, 33, 23, 1.61, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 3), 74, 74, 9883, 8747, 2590, 1406, 476, 476, 476, 476, 463, 463, 476, 287, 287, 287, 287, 287, 287, 21, 118, 1, -18, '', 0, 34, 24, 1.67, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 4), 74, 74, 10105, 8969, 2664, 1430, 484, 484, 484, 484, 466, 466, 484, 308, 308, 308, 308, 308, 308, 21, 119, 1, -18, '', 0, 35, 25, 1.73, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 5), 74, 74, 10327, 9191, 2738, 1455, 492, 492, 492, 492, 469, 469, 492, 329, 329, 329, 329, 329, 329, 21, 120, 1, -18, '', 0, 36, 26, 1.79, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 1), 74, 74, 7591, 0, 1517, 2109, 453, 453, 453, 453, 364, 364, 453, 179, 179, 179, 179, 179, 179, 63, 314, 4, -27, '', 0, 35, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 2), 74, 74, 7887, 0, 1554, 2146, 461, 461, 461, 461, 366, 366, 461, 200, 200, 200, 200, 200, 200, 64, 316, 4, -28, '', 0, 37, 0, 1.31, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 3), 74, 74, 8183, 0, 1591, 2183, 469, 469, 469, 469, 368, 368, 469, 221, 221, 221, 221, 221, 221, 64, 319, 4, -29, '', 0, 39, 0, 1.37, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 4), 74, 74, 8479, 0, 1628, 2220, 477, 477, 477, 477, 370, 370, 477, 242, 242, 242, 242, 242, 242, 65, 321, 4, -30, '', 0, 41, 0, 1.43, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 5), 74, 74, 8775, 0, 1665, 2257, 485, 485, 485, 485, 372, 372, 485, 263, 263, 263, 263, 263, 263, 65, 324, 4, -31, '', 0, 43, 0, 1.49, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 1), 74, 74, 9811, 0, 1887, 2331, 495, 495, 495, 495, 384, 384, 495, 245, 245, 245, 245, 245, 245, 64, 320, 4, -32, '', 0, 43, 0, 1.55, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 2), 74, 74, 10107, 0, 1924, 2368, 503, 503, 503, 503, 386, 386, 503, 266, 266, 266, 266, 266, 266, 65, 323, 4, -33, '', 0, 45, 0, 1.61, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 3), 74, 74, 10403, 0, 1961, 2405, 511, 511, 511, 511, 388, 388, 511, 287, 287, 287, 287, 287, 287, 65, 325, 4, -34, '', 0, 47, 0, 1.67, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 4), 74, 74, 10699, 0, 1998, 2442, 519, 519, 519, 519, 390, 390, 519, 308, 308, 308, 308, 308, 308, 66, 328, 4, -35, '', 0, 49, 0, 1.73, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 5), 74, 74, 10995, 0, 2035, 2479, 527, 527, 527, 527, 392, 392, 527, 329, 329, 329, 329, 329, 329, 66, 331, 4, -36, '', 0, 51, 0, 1.79, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 1), 74, 74, 6510, 6453, 986, 610, 408, 408, 408, 408, 432, 432, 408, 179, 179, 179, 179, 179, 179, 19, 111, 1, -18, '', 0, 25, 19, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 2), 74, 74, 6658, 6675, 1011, 629, 416, 416, 416, 416, 435, 435, 416, 200, 200, 200, 200, 200, 200, 20, 112, 1, -18, '', 0, 26, 20, 1.31, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 3), 74, 74, 6806, 6897, 1036, 647, 424, 424, 424, 424, 438, 438, 424, 221, 221, 221, 221, 221, 221, 20, 113, 1, -18, '', 0, 27, 21, 1.37, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 4), 74, 74, 6954, 7119, 1060, 666, 432, 432, 432, 432, 441, 441, 432, 242, 242, 242, 242, 242, 242, 20, 115, 1, -18, '', 0, 28, 22, 1.43, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 5), 74, 74, 7102, 7341, 1085, 684, 440, 440, 440, 440, 444, 444, 440, 263, 263, 263, 263, 263, 263, 20, 116, 1, -18, '', 0, 29, 23, 1.49, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 1), 74, 74, 8360, 8303, 1208, 684, 450, 450, 450, 450, 457, 457, 450, 245, 245, 245, 245, 245, 245, 20, 115, 1, -18, '', 0, 30, 22, 1.55, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 2), 74, 74, 8508, 8525, 1233, 703, 458, 458, 458, 458, 460, 460, 458, 266, 266, 266, 266, 266, 266, 20, 116, 1, -18, '', 0, 31, 23, 1.61, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 3), 74, 74, 8656, 8747, 1258, 721, 466, 466, 466, 466, 463, 463, 466, 287, 287, 287, 287, 287, 287, 21, 118, 1, -18, '', 0, 32, 24, 1.67, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 4), 74, 74, 8804, 8969, 1282, 740, 474, 474, 474, 474, 466, 466, 474, 308, 308, 308, 308, 308, 308, 21, 119, 1, -18, '', 0, 33, 25, 1.73, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 5), 74, 74, 8952, 9191, 1307, 758, 482, 482, 482, 482, 469, 469, 482, 329, 329, 329, 329, 329, 329, 21, 120, 1, -18, '', 0, 34, 26, 1.79, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 1), 75, 75, 9036, 0, 2588, 2100, 466, 466, 466, 466, 372, 372, 466, 181, 181, 181, 181, 181, 181, 66, 338, 4, -27, '', 0, 38, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 2), 75, 75, 9411, 0, 2700, 2138, 474, 474, 474, 474, 374, 374, 474, 202, 202, 202, 202, 202, 202, 67, 341, 4, -28, '', 0, 40, 0, 1.31, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 3), 75, 75, 9786, 0, 2813, 2175, 482, 482, 482, 482, 376, 376, 482, 223, 223, 223, 223, 223, 223, 67, 344, 4, -29, '', 0, 42, 0, 1.37, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 4), 75, 75, 10161, 0, 2925, 2213, 490, 490, 490, 490, 378, 378, 490, 244, 244, 244, 244, 244, 244, 68, 347, 4, -30, '', 0, 44, 0, 1.43, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 5), 75, 75, 10536, 0, 3038, 2250, 498, 498, 498, 498, 380, 380, 498, 265, 265, 265, 265, 265, 265, 68, 349, 4, -31, '', 0, 46, 0, 1.49, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 1), 75, 75, 11661, 0, 3188, 2287, 508, 508, 508, 508, 392, 392, 508, 247, 247, 247, 247, 247, 247, 68, 345, 4, -32, '', 0, 48, 0, 1.55, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 2), 75, 75, 12036, 0, 3300, 2325, 516, 516, 516, 516, 394, 394, 516, 268, 268, 268, 268, 268, 268, 68, 348, 4, -33, '', 0, 50, 0, 1.61, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 3), 75, 75, 12411, 0, 3413, 2362, 524, 524, 524, 524, 396, 396, 524, 289, 289, 289, 289, 289, 289, 69, 351, 4, -34, '', 0, 52, 0, 1.67, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 4), 75, 75, 12786, 0, 3525, 2400, 532, 532, 532, 532, 398, 398, 532, 310, 310, 310, 310, 310, 310, 69, 354, 4, -35, '', 0, 54, 0, 1.73, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 5), 75, 75, 13161, 0, 3638, 2437, 540, 540, 540, 540, 400, 400, 540, 331, 331, 331, 331, 331, 331, 70, 356, 4, -36, '', 0, 56, 0, 1.79, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 1), 75, 75, 7448, 6600, 2025, 1263, 430, 430, 430, 430, 440, 440, 430, 181, 181, 181, 181, 181, 181, 20, 112, 1, -18, '', 0, 26, 20, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 2), 75, 75, 7673, 6825, 2100, 1288, 438, 438, 438, 438, 443, 443, 438, 202, 202, 202, 202, 202, 202, 20, 113, 1, -18, '', 0, 27, 21, 1.31, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 3), 75, 75, 7898, 7050, 2175, 1313, 446, 446, 446, 446, 446, 446, 446, 223, 223, 223, 223, 223, 223, 20, 115, 1, -18, '', 0, 28, 22, 1.37, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 4), 75, 75, 8123, 7275, 2250, 1338, 454, 454, 454, 454, 449, 449, 454, 244, 244, 244, 244, 244, 244, 20, 116, 1, -18, '', 0, 29, 23, 1.43, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 5), 75, 75, 8348, 7500, 2325, 1363, 462, 462, 462, 462, 452, 452, 462, 265, 265, 265, 265, 265, 265, 21, 118, 1, -18, '', 0, 30, 24, 1.49, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 1), 75, 75, 9698, 8475, 2475, 1375, 472, 472, 472, 472, 465, 465, 472, 247, 247, 247, 247, 247, 247, 20, 116, 1, -18, '', 0, 32, 23, 1.55, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 2), 75, 75, 9923, 8700, 2550, 1400, 480, 480, 480, 480, 468, 468, 480, 268, 268, 268, 268, 268, 268, 21, 118, 1, -18, '', 0, 33, 24, 1.61, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 3), 75, 75, 10148, 8925, 2625, 1425, 488, 488, 488, 488, 471, 471, 488, 289, 289, 289, 289, 289, 289, 21, 119, 1, -18, '', 0, 34, 25, 1.67, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 4), 75, 75, 10373, 9150, 2700, 1450, 496, 496, 496, 496, 474, 474, 496, 310, 310, 310, 310, 310, 310, 21, 120, 1, -18, '', 0, 35, 26, 1.73, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 5), 75, 75, 10598, 9375, 2775, 1475, 504, 504, 504, 504, 477, 477, 504, 331, 331, 331, 331, 331, 331, 21, 122, 1, -18, '', 0, 36, 27, 1.79, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 1), 75, 75, 7833, 0, 1537, 2137, 466, 466, 466, 466, 372, 372, 466, 181, 181, 181, 181, 181, 181, 66, 330, 4, -27, '', 0, 36, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 2), 75, 75, 8133, 0, 1575, 2175, 474, 474, 474, 474, 374, 374, 474, 202, 202, 202, 202, 202, 202, 67, 333, 4, -28, '', 0, 38, 0, 1.31, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 3), 75, 75, 8433, 0, 1612, 2212, 482, 482, 482, 482, 376, 376, 482, 223, 223, 223, 223, 223, 223, 67, 335, 4, -29, '', 0, 40, 0, 1.37, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 4), 75, 75, 8733, 0, 1650, 2250, 490, 490, 490, 490, 378, 378, 490, 244, 244, 244, 244, 244, 244, 68, 338, 4, -30, '', 0, 42, 0, 1.43, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 5), 75, 75, 9033, 0, 1687, 2287, 498, 498, 498, 498, 380, 380, 498, 265, 265, 265, 265, 265, 265, 68, 340, 4, -31, '', 0, 44, 0, 1.49, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 1), 75, 75, 10083, 0, 1912, 2362, 508, 508, 508, 508, 392, 392, 508, 247, 247, 247, 247, 247, 247, 68, 336, 4, -32, '', 0, 44, 0, 1.55, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 2), 75, 75, 10383, 0, 1950, 2400, 516, 516, 516, 516, 394, 394, 516, 268, 268, 268, 268, 268, 268, 68, 339, 4, -33, '', 0, 46, 0, 1.61, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 3), 75, 75, 10683, 0, 1987, 2437, 524, 524, 524, 524, 396, 396, 524, 289, 289, 289, 289, 289, 289, 69, 342, 4, -34, '', 0, 48, 0, 1.67, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 4), 75, 75, 10983, 0, 2025, 2475, 532, 532, 532, 532, 398, 398, 532, 310, 310, 310, 310, 310, 310, 69, 344, 4, -35, '', 0, 50, 0, 1.73, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 5), 75, 75, 11283, 0, 2062, 2512, 540, 540, 540, 540, 400, 400, 540, 331, 331, 331, 331, 331, 331, 70, 347, 4, -36, '', 0, 52, 0, 1.79, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 1), 75, 75, 6722, 6600, 1000, 618, 419, 419, 419, 419, 440, 440, 419, 181, 181, 181, 181, 181, 181, 20, 112, 1, -18, '', 0, 25, 20, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 2), 75, 75, 6872, 6825, 1025, 637, 427, 427, 427, 427, 443, 443, 427, 202, 202, 202, 202, 202, 202, 20, 113, 1, -18, '', 0, 26, 21, 1.31, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 3), 75, 75, 7022, 7050, 1050, 656, 435, 435, 435, 435, 446, 446, 435, 223, 223, 223, 223, 223, 223, 20, 115, 1, -18, '', 0, 27, 22, 1.37, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 4), 75, 75, 7172, 7275, 1075, 675, 443, 443, 443, 443, 449, 449, 443, 244, 244, 244, 244, 244, 244, 20, 116, 1, -18, '', 0, 28, 23, 1.43, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 5), 75, 75, 7322, 7500, 1100, 693, 451, 451, 451, 451, 452, 452, 451, 265, 265, 265, 265, 265, 265, 21, 118, 1, -18, '', 0, 29, 24, 1.49, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 1), 75, 75, 8597, 8475, 1225, 693, 461, 461, 461, 461, 465, 465, 461, 247, 247, 247, 247, 247, 247, 20, 116, 1, -18, '', 0, 30, 23, 1.55, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 2), 75, 75, 8747, 8700, 1250, 712, 469, 469, 469, 469, 468, 468, 469, 268, 268, 268, 268, 268, 268, 21, 118, 1, -18, '', 0, 31, 24, 1.61, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 3), 75, 75, 8897, 8925, 1275, 731, 477, 477, 477, 477, 471, 471, 477, 289, 289, 289, 289, 289, 289, 21, 119, 1, -18, '', 0, 32, 25, 1.67, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 4), 75, 75, 9047, 9150, 1300, 750, 485, 485, 485, 485, 474, 474, 485, 310, 310, 310, 310, 310, 310, 21, 120, 1, -18, '', 0, 33, 26, 1.73, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 5), 75, 75, 9197, 9375, 1325, 768, 493, 493, 493, 493, 477, 477, 493, 331, 331, 331, 331, 331, 331, 21, 122, 1, -18, '', 0, 34, 27, 1.79, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 1), 76, 76, 9321, 0, 2622, 2128, 479, 479, 479, 479, 380, 380, 479, 184, 184, 184, 184, 184, 184, 70, 355, 4, -28, '', 0, 38, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 2), 76, 76, 9701, 0, 2736, 2166, 487, 487, 487, 487, 382, 382, 487, 206, 206, 206, 206, 206, 206, 70, 357, 4, -29, '', 0, 40, 0, 1.31, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 3), 76, 76, 10081, 0, 2850, 2204, 495, 495, 495, 495, 384, 384, 495, 228, 228, 228, 228, 228, 228, 71, 360, 4, -30, '', 0, 42, 0, 1.37, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 4), 76, 76, 10461, 0, 2964, 2242, 503, 503, 503, 503, 386, 386, 503, 250, 250, 250, 250, 250, 250, 71, 363, 4, -31, '', 0, 44, 0, 1.43, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 5), 76, 76, 10841, 0, 3078, 2280, 511, 511, 511, 511, 388, 388, 511, 272, 272, 272, 272, 272, 272, 72, 366, 4, -32, '', 0, 46, 0, 1.49, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 1), 76, 76, 11981, 0, 3230, 2318, 522, 522, 522, 522, 400, 400, 522, 250, 250, 250, 250, 250, 250, 71, 362, 4, -33, '', 0, 48, 0, 1.55, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 2), 76, 76, 12361, 0, 3344, 2356, 530, 530, 530, 530, 402, 402, 530, 272, 272, 272, 272, 272, 272, 71, 364, 4, -34, '', 0, 50, 0, 1.61, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 3), 76, 76, 12741, 0, 3458, 2394, 538, 538, 538, 538, 404, 404, 538, 294, 294, 294, 294, 294, 294, 72, 367, 4, -35, '', 0, 52, 0, 1.67, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 4), 76, 76, 13121, 0, 3572, 2432, 546, 546, 546, 546, 406, 406, 546, 316, 316, 316, 316, 316, 316, 72, 370, 4, -36, '', 0, 54, 0, 1.73, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 5), 76, 76, 13501, 0, 3686, 2470, 554, 554, 554, 554, 408, 408, 554, 338, 338, 338, 338, 338, 338, 73, 373, 4, -37, '', 0, 56, 0, 1.79, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 1), 76, 76, 7682, 6749, 2052, 1279, 443, 443, 443, 443, 449, 449, 443, 184, 184, 184, 184, 184, 184, 20, 113, 1, -18, '', 0, 27, 20, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 2), 76, 76, 7910, 6977, 2128, 1304, 451, 451, 451, 451, 452, 452, 451, 206, 206, 206, 206, 206, 206, 20, 115, 1, -18, '', 0, 28, 21, 1.31, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 3), 76, 76, 8138, 7205, 2204, 1330, 459, 459, 459, 459, 455, 455, 459, 228, 228, 228, 228, 228, 228, 20, 116, 1, -18, '', 0, 29, 22, 1.37, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 4), 76, 76, 8366, 7433, 2280, 1355, 467, 467, 467, 467, 458, 458, 467, 250, 250, 250, 250, 250, 250, 21, 118, 1, -18, '', 0, 30, 23, 1.43, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 5), 76, 76, 8594, 7661, 2356, 1380, 475, 475, 475, 475, 461, 461, 475, 272, 272, 272, 272, 272, 272, 21, 119, 1, -18, '', 0, 31, 24, 1.49, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 1), 76, 76, 9962, 8649, 2508, 1393, 486, 486, 486, 486, 474, 474, 486, 250, 250, 250, 250, 250, 250, 21, 118, 1, -18, '', 0, 33, 23, 1.55, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 2), 76, 76, 10190, 8877, 2584, 1418, 494, 494, 494, 494, 477, 477, 494, 272, 272, 272, 272, 272, 272, 21, 119, 1, -18, '', 0, 34, 24, 1.61, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 3), 76, 76, 10418, 9105, 2660, 1444, 502, 502, 502, 502, 480, 480, 502, 294, 294, 294, 294, 294, 294, 21, 120, 1, -18, '', 0, 35, 25, 1.67, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 4), 76, 76, 10646, 9333, 2736, 1469, 510, 510, 510, 510, 483, 483, 510, 316, 316, 316, 316, 316, 316, 21, 122, 1, -18, '', 0, 36, 26, 1.73, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 5), 76, 76, 10874, 9561, 2812, 1494, 518, 518, 518, 518, 486, 486, 518, 338, 338, 338, 338, 338, 338, 22, 123, 1, -18, '', 0, 37, 27, 1.79, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 1), 76, 76, 8081, 0, 1558, 2166, 479, 479, 479, 479, 380, 380, 479, 184, 184, 184, 184, 184, 184, 70, 346, 4, -28, '', 0, 36, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 2), 76, 76, 8385, 0, 1596, 2204, 487, 487, 487, 487, 382, 382, 487, 206, 206, 206, 206, 206, 206, 70, 349, 4, -29, '', 0, 38, 0, 1.31, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 3), 76, 76, 8689, 0, 1634, 2242, 495, 495, 495, 495, 384, 384, 495, 228, 228, 228, 228, 228, 228, 71, 351, 4, -30, '', 0, 40, 0, 1.37, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 4), 76, 76, 8993, 0, 1672, 2280, 503, 503, 503, 503, 386, 386, 503, 250, 250, 250, 250, 250, 250, 71, 354, 4, -31, '', 0, 42, 0, 1.43, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 5), 76, 76, 9297, 0, 1710, 2318, 511, 511, 511, 511, 388, 388, 511, 272, 272, 272, 272, 272, 272, 72, 357, 4, -32, '', 0, 44, 0, 1.49, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 1), 76, 76, 10361, 0, 1938, 2394, 522, 522, 522, 522, 400, 400, 522, 250, 250, 250, 250, 250, 250, 71, 353, 4, -33, '', 0, 44, 0, 1.55, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 2), 76, 76, 10665, 0, 1976, 2432, 530, 530, 530, 530, 402, 402, 530, 272, 272, 272, 272, 272, 272, 71, 355, 4, -34, '', 0, 46, 0, 1.61, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 3), 76, 76, 10969, 0, 2014, 2470, 538, 538, 538, 538, 404, 404, 538, 294, 294, 294, 294, 294, 294, 72, 358, 4, -35, '', 0, 48, 0, 1.67, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 4), 76, 76, 11273, 0, 2052, 2508, 546, 546, 546, 546, 406, 406, 546, 316, 316, 316, 316, 316, 316, 72, 361, 4, -36, '', 0, 50, 0, 1.73, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 5), 76, 76, 11577, 0, 2090, 2546, 554, 554, 554, 554, 408, 408, 554, 338, 338, 338, 338, 338, 338, 73, 363, 4, -37, '', 0, 52, 0, 1.79, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 1), 76, 76, 6939, 6749, 1013, 627, 432, 432, 432, 432, 449, 449, 432, 184, 184, 184, 184, 184, 184, 20, 113, 1, -18, '', 0, 26, 20, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 2), 76, 76, 7091, 6977, 1038, 646, 440, 440, 440, 440, 452, 452, 440, 206, 206, 206, 206, 206, 206, 20, 115, 1, -18, '', 0, 27, 21, 1.31, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 3), 76, 76, 7243, 7205, 1064, 665, 448, 448, 448, 448, 455, 455, 448, 228, 228, 228, 228, 228, 228, 20, 116, 1, -18, '', 0, 28, 22, 1.37, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 4), 76, 76, 7395, 7433, 1089, 684, 456, 456, 456, 456, 458, 458, 456, 250, 250, 250, 250, 250, 250, 21, 118, 1, -18, '', 0, 29, 23, 1.43, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 5), 76, 76, 7547, 7661, 1114, 703, 464, 464, 464, 464, 461, 461, 464, 272, 272, 272, 272, 272, 272, 21, 119, 1, -18, '', 0, 30, 24, 1.49, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 1), 76, 76, 8839, 8649, 1241, 703, 475, 475, 475, 475, 474, 474, 475, 250, 250, 250, 250, 250, 250, 21, 118, 1, -18, '', 0, 31, 23, 1.55, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 2), 76, 76, 8991, 8877, 1266, 722, 483, 483, 483, 483, 477, 477, 483, 272, 272, 272, 272, 272, 272, 21, 119, 1, -18, '', 0, 32, 24, 1.61, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 3), 76, 76, 9143, 9105, 1292, 741, 491, 491, 491, 491, 480, 480, 491, 294, 294, 294, 294, 294, 294, 21, 120, 1, -18, '', 0, 33, 25, 1.67, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 4), 76, 76, 9295, 9333, 1317, 760, 499, 499, 499, 499, 483, 483, 499, 316, 316, 316, 316, 316, 316, 21, 122, 1, -18, '', 0, 34, 26, 1.73, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 5), 76, 76, 9447, 9561, 1342, 779, 507, 507, 507, 507, 486, 486, 507, 338, 338, 338, 338, 338, 338, 22, 123, 1, -18, '', 0, 35, 27, 1.79, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 1), 77, 77, 9611, 0, 2657, 2156, 492, 492, 492, 492, 388, 388, 492, 186, 186, 186, 186, 186, 186, 73, 371, 4, -28, '', 0, 38, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 2), 77, 77, 9996, 0, 2772, 2195, 500, 500, 500, 500, 390, 390, 500, 208, 208, 208, 208, 208, 208, 73, 374, 4, -29, '', 0, 40, 0, 1.31, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 3), 77, 77, 10381, 0, 2888, 2233, 508, 508, 508, 508, 392, 392, 508, 230, 230, 230, 230, 230, 230, 74, 377, 4, -30, '', 0, 42, 0, 1.37, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 4), 77, 77, 10766, 0, 3003, 2272, 516, 516, 516, 516, 394, 394, 516, 252, 252, 252, 252, 252, 252, 74, 379, 4, -31, '', 0, 44, 0, 1.43, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 5), 77, 77, 11151, 0, 3119, 2310, 524, 524, 524, 524, 396, 396, 524, 274, 274, 274, 274, 274, 274, 75, 382, 4, -32, '', 0, 46, 0, 1.49, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 1), 77, 77, 12306, 0, 3273, 2348, 535, 535, 535, 535, 408, 408, 535, 254, 254, 254, 254, 254, 254, 74, 378, 4, -33, '', 0, 48, 0, 1.55, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 2), 77, 77, 12691, 0, 3388, 2387, 543, 543, 543, 543, 410, 410, 543, 276, 276, 276, 276, 276, 276, 75, 381, 4, -34, '', 0, 50, 0, 1.61, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 3), 77, 77, 13076, 0, 3504, 2425, 551, 551, 551, 551, 412, 412, 551, 298, 298, 298, 298, 298, 298, 75, 384, 4, -35, '', 0, 52, 0, 1.67, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 4), 77, 77, 13461, 0, 3619, 2464, 559, 559, 559, 559, 414, 414, 559, 320, 320, 320, 320, 320, 320, 76, 386, 4, -36, '', 0, 54, 0, 1.73, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 5), 77, 77, 13846, 0, 3735, 2502, 567, 567, 567, 567, 416, 416, 567, 342, 342, 342, 342, 342, 342, 76, 389, 4, -37, '', 0, 56, 0, 1.79, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 1), 77, 77, 7921, 6899, 2079, 1296, 455, 455, 455, 455, 457, 457, 455, 186, 186, 186, 186, 186, 186, 20, 115, 1, -18, '', 0, 27, 20, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 2), 77, 77, 8152, 7130, 2156, 1322, 463, 463, 463, 463, 460, 460, 463, 208, 208, 208, 208, 208, 208, 20, 116, 1, -18, '', 0, 28, 21, 1.31, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 3), 77, 77, 8383, 7361, 2233, 1348, 471, 471, 471, 471, 463, 463, 471, 230, 230, 230, 230, 230, 230, 21, 118, 1, -18, '', 0, 29, 22, 1.37, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 4), 77, 77, 8614, 7592, 2310, 1373, 479, 479, 479, 479, 466, 466, 479, 252, 252, 252, 252, 252, 252, 21, 119, 1, -18, '', 0, 30, 23, 1.43, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 5), 77, 77, 8845, 7823, 2387, 1399, 487, 487, 487, 487, 469, 469, 487, 274, 274, 274, 274, 274, 274, 21, 120, 1, -18, '', 0, 31, 24, 1.49, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 1), 77, 77, 10231, 8824, 2541, 1411, 498, 498, 498, 498, 482, 482, 498, 254, 254, 254, 254, 254, 254, 21, 119, 1, -18, '', 0, 33, 23, 1.55, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 2), 77, 77, 10462, 9055, 2618, 1437, 506, 506, 506, 506, 485, 485, 506, 276, 276, 276, 276, 276, 276, 21, 120, 1, -18, '', 0, 34, 24, 1.61, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 3), 77, 77, 10693, 9286, 2695, 1463, 514, 514, 514, 514, 488, 488, 514, 298, 298, 298, 298, 298, 298, 21, 122, 1, -18, '', 0, 35, 25, 1.67, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 4), 77, 77, 10924, 9517, 2772, 1488, 522, 522, 522, 522, 491, 491, 522, 320, 320, 320, 320, 320, 320, 22, 123, 1, -18, '', 0, 36, 26, 1.73, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 5), 77, 77, 11155, 9748, 2849, 1514, 530, 530, 530, 530, 494, 494, 530, 342, 342, 342, 342, 342, 342, 22, 125, 1, -18, '', 0, 37, 27, 1.79, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 1), 77, 77, 8334, 0, 1578, 2194, 492, 492, 492, 492, 388, 388, 492, 186, 186, 186, 186, 186, 186, 73, 363, 4, -28, '', 0, 36, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 2), 77, 77, 8642, 0, 1617, 2233, 500, 500, 500, 500, 390, 390, 500, 208, 208, 208, 208, 208, 208, 73, 365, 4, -29, '', 0, 38, 0, 1.31, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 3), 77, 77, 8950, 0, 1655, 2271, 508, 508, 508, 508, 392, 392, 508, 230, 230, 230, 230, 230, 230, 74, 368, 4, -30, '', 0, 40, 0, 1.37, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 4), 77, 77, 9258, 0, 1694, 2310, 516, 516, 516, 516, 394, 394, 516, 252, 252, 252, 252, 252, 252, 74, 370, 4, -31, '', 0, 42, 0, 1.43, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 5), 77, 77, 9566, 0, 1732, 2348, 524, 524, 524, 524, 396, 396, 524, 274, 274, 274, 274, 274, 274, 75, 373, 4, -32, '', 0, 44, 0, 1.49, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 1), 77, 77, 10644, 0, 1963, 2425, 535, 535, 535, 535, 408, 408, 535, 254, 254, 254, 254, 254, 254, 74, 369, 4, -33, '', 0, 44, 0, 1.55, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 2), 77, 77, 10952, 0, 2002, 2464, 543, 543, 543, 543, 410, 410, 543, 276, 276, 276, 276, 276, 276, 75, 372, 4, -34, '', 0, 46, 0, 1.61, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 3), 77, 77, 11260, 0, 2040, 2502, 551, 551, 551, 551, 412, 412, 551, 298, 298, 298, 298, 298, 298, 75, 374, 4, -35, '', 0, 48, 0, 1.67, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 4), 77, 77, 11568, 0, 2079, 2541, 559, 559, 559, 559, 414, 414, 559, 320, 320, 320, 320, 320, 320, 76, 377, 4, -36, '', 0, 50, 0, 1.73, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 5), 77, 77, 11876, 0, 2117, 2579, 567, 567, 567, 567, 416, 416, 567, 342, 342, 342, 342, 342, 342, 76, 379, 4, -37, '', 0, 52, 0, 1.79, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 1), 77, 77, 7161, 6899, 1026, 635, 443, 443, 443, 443, 457, 457, 443, 186, 186, 186, 186, 186, 186, 20, 115, 1, -18, '', 0, 26, 20, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 2), 77, 77, 7315, 7130, 1052, 654, 451, 451, 451, 451, 460, 460, 451, 208, 208, 208, 208, 208, 208, 20, 116, 1, -18, '', 0, 27, 21, 1.31, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 3), 77, 77, 7469, 7361, 1078, 673, 459, 459, 459, 459, 463, 463, 459, 230, 230, 230, 230, 230, 230, 21, 118, 1, -18, '', 0, 28, 22, 1.37, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 4), 77, 77, 7623, 7592, 1103, 693, 467, 467, 467, 467, 466, 466, 467, 252, 252, 252, 252, 252, 252, 21, 119, 1, -18, '', 0, 29, 23, 1.43, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 5), 77, 77, 7777, 7823, 1129, 712, 475, 475, 475, 475, 469, 469, 475, 274, 274, 274, 274, 274, 274, 21, 120, 1, -18, '', 0, 30, 24, 1.49, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 1), 77, 77, 9086, 8824, 1257, 712, 486, 486, 486, 486, 482, 482, 486, 254, 254, 254, 254, 254, 254, 21, 119, 1, -18, '', 0, 31, 23, 1.55, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 2), 77, 77, 9240, 9055, 1283, 731, 494, 494, 494, 494, 485, 485, 494, 276, 276, 276, 276, 276, 276, 21, 120, 1, -18, '', 0, 32, 24, 1.61, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 3), 77, 77, 9394, 9286, 1309, 750, 502, 502, 502, 502, 488, 488, 502, 298, 298, 298, 298, 298, 298, 21, 122, 1, -18, '', 0, 33, 25, 1.67, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 4), 77, 77, 9548, 9517, 1334, 770, 510, 510, 510, 510, 491, 491, 510, 320, 320, 320, 320, 320, 320, 22, 123, 1, -18, '', 0, 34, 26, 1.73, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 5), 77, 77, 9702, 9748, 1360, 789, 518, 518, 518, 518, 494, 494, 518, 342, 342, 342, 342, 342, 342, 22, 125, 1, -18, '', 0, 35, 27, 1.79, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 1), 78, 78, 9909, 0, 2691, 2184, 506, 506, 506, 506, 396, 396, 506, 188, 188, 188, 188, 188, 188, 76, 387, 4, -29, '', 0, 39, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 2), 78, 78, 10299, 0, 2808, 2223, 514, 514, 514, 514, 398, 398, 514, 210, 210, 210, 210, 210, 210, 77, 390, 4, -30, '', 0, 41, 0, 1.31, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 3), 78, 78, 10689, 0, 2925, 2262, 522, 522, 522, 522, 400, 400, 522, 232, 232, 232, 232, 232, 232, 77, 393, 4, -31, '', 0, 43, 0, 1.37, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 4), 78, 78, 11079, 0, 3042, 2301, 530, 530, 530, 530, 402, 402, 530, 254, 254, 254, 254, 254, 254, 78, 396, 4, -32, '', 0, 45, 0, 1.43, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 5), 78, 78, 11469, 0, 3159, 2340, 538, 538, 538, 538, 404, 404, 538, 276, 276, 276, 276, 276, 276, 78, 399, 4, -33, '', 0, 47, 0, 1.49, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 1), 78, 78, 12639, 0, 3315, 2379, 550, 550, 550, 550, 416, 416, 550, 256, 256, 256, 256, 256, 256, 77, 394, 4, -34, '', 0, 49, 0, 1.55, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 2), 78, 78, 13029, 0, 3432, 2418, 558, 558, 558, 558, 418, 418, 558, 278, 278, 278, 278, 278, 278, 78, 397, 4, -35, '', 0, 51, 0, 1.61, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 3), 78, 78, 13419, 0, 3549, 2457, 566, 566, 566, 566, 420, 420, 566, 300, 300, 300, 300, 300, 300, 78, 400, 4, -36, '', 0, 53, 0, 1.67, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 4), 78, 78, 13809, 0, 3666, 2496, 574, 574, 574, 574, 422, 422, 574, 322, 322, 322, 322, 322, 322, 79, 403, 4, -37, '', 0, 55, 0, 1.73, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 5), 78, 78, 14199, 0, 3783, 2535, 582, 582, 582, 582, 424, 424, 582, 344, 344, 344, 344, 344, 344, 79, 406, 4, -38, '', 0, 57, 0, 1.79, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 1), 78, 78, 8166, 7051, 2106, 1313, 468, 468, 468, 468, 466, 466, 468, 188, 188, 188, 188, 188, 188, 20, 116, 1, -18, '', 0, 27, 20, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 2), 78, 78, 8400, 7285, 2184, 1339, 476, 476, 476, 476, 469, 469, 476, 210, 210, 210, 210, 210, 210, 21, 118, 1, -18, '', 0, 28, 21, 1.31, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 3), 78, 78, 8634, 7519, 2262, 1365, 484, 484, 484, 484, 472, 472, 484, 232, 232, 232, 232, 232, 232, 21, 119, 1, -18, '', 0, 29, 22, 1.37, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 4), 78, 78, 8868, 7753, 2340, 1391, 492, 492, 492, 492, 475, 475, 492, 254, 254, 254, 254, 254, 254, 21, 120, 1, -18, '', 0, 30, 23, 1.43, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 5), 78, 78, 9102, 7987, 2418, 1417, 500, 500, 500, 500, 478, 478, 500, 276, 276, 276, 276, 276, 276, 21, 122, 1, -18, '', 0, 31, 24, 1.49, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 1), 78, 78, 10506, 9001, 2574, 1430, 512, 512, 512, 512, 491, 491, 512, 256, 256, 256, 256, 256, 256, 21, 120, 1, -18, '', 0, 33, 23, 1.55, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 2), 78, 78, 10740, 9235, 2652, 1456, 520, 520, 520, 520, 494, 494, 520, 278, 278, 278, 278, 278, 278, 21, 122, 1, -18, '', 0, 34, 24, 1.61, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 3), 78, 78, 10974, 9469, 2730, 1482, 528, 528, 528, 528, 497, 497, 528, 300, 300, 300, 300, 300, 300, 22, 123, 1, -18, '', 0, 35, 25, 1.67, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 4), 78, 78, 11208, 9703, 2808, 1508, 536, 536, 536, 536, 500, 500, 536, 322, 322, 322, 322, 322, 322, 22, 125, 1, -18, '', 0, 36, 26, 1.73, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 5), 78, 78, 11442, 9937, 2886, 1534, 544, 544, 544, 544, 503, 503, 544, 344, 344, 344, 344, 344, 344, 22, 126, 1, -18, '', 0, 37, 27, 1.79, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 1), 78, 78, 8593, 0, 1599, 2223, 506, 506, 506, 506, 396, 396, 506, 188, 188, 188, 188, 188, 188, 76, 379, 4, -29, '', 0, 37, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 2), 78, 78, 8905, 0, 1638, 2262, 514, 514, 514, 514, 398, 398, 514, 210, 210, 210, 210, 210, 210, 77, 381, 4, -30, '', 0, 39, 0, 1.31, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 3), 78, 78, 9217, 0, 1677, 2301, 522, 522, 522, 522, 400, 400, 522, 232, 232, 232, 232, 232, 232, 77, 384, 4, -31, '', 0, 41, 0, 1.37, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 4), 78, 78, 9529, 0, 1716, 2340, 530, 530, 530, 530, 402, 402, 530, 254, 254, 254, 254, 254, 254, 78, 387, 4, -32, '', 0, 43, 0, 1.43, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 5), 78, 78, 9841, 0, 1755, 2379, 538, 538, 538, 538, 404, 404, 538, 276, 276, 276, 276, 276, 276, 78, 389, 4, -33, '', 0, 45, 0, 1.49, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 1), 78, 78, 10933, 0, 1989, 2457, 550, 550, 550, 550, 416, 416, 550, 256, 256, 256, 256, 256, 256, 77, 385, 4, -34, '', 0, 45, 0, 1.55, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 2), 78, 78, 11245, 0, 2028, 2496, 558, 558, 558, 558, 418, 418, 558, 278, 278, 278, 278, 278, 278, 78, 388, 4, -35, '', 0, 47, 0, 1.61, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 3), 78, 78, 11557, 0, 2067, 2535, 566, 566, 566, 566, 420, 420, 566, 300, 300, 300, 300, 300, 300, 78, 391, 4, -36, '', 0, 49, 0, 1.67, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 4), 78, 78, 11869, 0, 2106, 2574, 574, 574, 574, 574, 422, 422, 574, 322, 322, 322, 322, 322, 322, 79, 393, 4, -37, '', 0, 51, 0, 1.73, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 5), 78, 78, 12181, 0, 2145, 2613, 582, 582, 582, 582, 424, 424, 582, 344, 344, 344, 344, 344, 344, 79, 396, 4, -38, '', 0, 53, 0, 1.79, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 1), 78, 78, 7388, 7051, 1040, 643, 456, 456, 456, 456, 466, 466, 456, 188, 188, 188, 188, 188, 188, 20, 116, 1, -18, '', 0, 26, 20, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 2), 78, 78, 7544, 7285, 1066, 663, 464, 464, 464, 464, 469, 469, 464, 210, 210, 210, 210, 210, 210, 21, 118, 1, -18, '', 0, 27, 21, 1.31, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 3), 78, 78, 7700, 7519, 1092, 682, 472, 472, 472, 472, 472, 472, 472, 232, 232, 232, 232, 232, 232, 21, 119, 1, -18, '', 0, 28, 22, 1.37, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 4), 78, 78, 7856, 7753, 1118, 702, 480, 480, 480, 480, 475, 475, 480, 254, 254, 254, 254, 254, 254, 21, 120, 1, -18, '', 0, 29, 23, 1.43, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 5), 78, 78, 8012, 7987, 1144, 721, 488, 488, 488, 488, 478, 478, 488, 276, 276, 276, 276, 276, 276, 21, 122, 1, -18, '', 0, 30, 24, 1.49, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 1), 78, 78, 9338, 9001, 1274, 721, 500, 500, 500, 500, 491, 491, 500, 256, 256, 256, 256, 256, 256, 21, 120, 1, -18, '', 0, 31, 23, 1.55, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 2), 78, 78, 9494, 9235, 1300, 741, 508, 508, 508, 508, 494, 494, 508, 278, 278, 278, 278, 278, 278, 21, 122, 1, -18, '', 0, 32, 24, 1.61, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 3), 78, 78, 9650, 9469, 1326, 760, 516, 516, 516, 516, 497, 497, 516, 300, 300, 300, 300, 300, 300, 22, 123, 1, -18, '', 0, 33, 25, 1.67, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 4), 78, 78, 9806, 9703, 1352, 780, 524, 524, 524, 524, 500, 500, 524, 322, 322, 322, 322, 322, 322, 22, 125, 1, -18, '', 0, 34, 26, 1.73, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 5), 78, 78, 9962, 9937, 1378, 799, 532, 532, 532, 532, 503, 503, 532, 344, 344, 344, 344, 344, 344, 22, 126, 1, -18, '', 0, 35, 27, 1.79, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 1), 79, 79, 10213, 0, 2726, 2212, 519, 519, 519, 519, 404, 404, 519, 190, 190, 190, 190, 190, 190, 79, 404, 4, -29, '', 0, 39, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 2), 79, 79, 10608, 0, 2844, 2252, 527, 527, 527, 527, 406, 406, 527, 212, 212, 212, 212, 212, 212, 80, 407, 4, -30, '', 0, 41, 0, 1.31, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 3), 79, 79, 11003, 0, 2963, 2291, 535, 535, 535, 535, 408, 408, 535, 234, 234, 234, 234, 234, 234, 80, 409, 4, -31, '', 0, 43, 0, 1.37, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 4), 79, 79, 11398, 0, 3081, 2331, 543, 543, 543, 543, 410, 410, 543, 256, 256, 256, 256, 256, 256, 81, 412, 4, -32, '', 0, 45, 0, 1.43, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 5), 79, 79, 11793, 0, 3200, 2370, 551, 551, 551, 551, 412, 412, 551, 278, 278, 278, 278, 278, 278, 81, 415, 4, -33, '', 0, 47, 0, 1.49, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 1), 79, 79, 12978, 0, 3358, 2409, 563, 563, 563, 563, 424, 424, 563, 258, 258, 258, 258, 258, 258, 81, 411, 4, -34, '', 0, 49, 0, 1.55, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 2), 79, 79, 13373, 0, 3476, 2449, 571, 571, 571, 571, 426, 426, 571, 280, 280, 280, 280, 280, 280, 81, 414, 4, -35, '', 0, 51, 0, 1.61, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 3), 79, 79, 13768, 0, 3595, 2488, 579, 579, 579, 579, 428, 428, 579, 302, 302, 302, 302, 302, 302, 82, 416, 4, -36, '', 0, 53, 0, 1.67, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 4), 79, 79, 14163, 0, 3713, 2528, 587, 587, 587, 587, 430, 430, 587, 324, 324, 324, 324, 324, 324, 82, 419, 4, -37, '', 0, 55, 0, 1.73, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 5), 79, 79, 14558, 0, 3832, 2567, 595, 595, 595, 595, 432, 432, 595, 346, 346, 346, 346, 346, 346, 83, 422, 4, -38, '', 0, 57, 0, 1.79, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 1), 79, 79, 8417, 7205, 2133, 1330, 480, 480, 480, 480, 474, 474, 480, 190, 190, 190, 190, 190, 190, 21, 118, 1, -18, '', 0, 27, 20, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 2), 79, 79, 8654, 7442, 2212, 1356, 488, 488, 488, 488, 477, 477, 488, 212, 212, 212, 212, 212, 212, 21, 119, 1, -18, '', 0, 28, 21, 1.31, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 3), 79, 79, 8891, 7679, 2291, 1383, 496, 496, 496, 496, 480, 480, 496, 234, 234, 234, 234, 234, 234, 21, 120, 1, -18, '', 0, 29, 22, 1.37, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 4), 79, 79, 9128, 7916, 2370, 1409, 504, 504, 504, 504, 483, 483, 504, 256, 256, 256, 256, 256, 256, 21, 122, 1, -18, '', 0, 30, 23, 1.43, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 5), 79, 79, 9365, 8153, 2449, 1435, 512, 512, 512, 512, 486, 486, 512, 278, 278, 278, 278, 278, 278, 22, 123, 1, -18, '', 0, 31, 24, 1.49, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 1), 79, 79, 10787, 9180, 2607, 1448, 524, 524, 524, 524, 499, 499, 524, 258, 258, 258, 258, 258, 258, 21, 122, 1, -18, '', 0, 33, 23, 1.55, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 2), 79, 79, 11024, 9417, 2686, 1474, 532, 532, 532, 532, 502, 502, 532, 280, 280, 280, 280, 280, 280, 22, 123, 1, -18, '', 0, 34, 24, 1.61, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 3), 79, 79, 11261, 9654, 2765, 1501, 540, 540, 540, 540, 505, 505, 540, 302, 302, 302, 302, 302, 302, 22, 125, 1, -18, '', 0, 35, 25, 1.67, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 4), 79, 79, 11498, 9891, 2844, 1527, 548, 548, 548, 548, 508, 508, 548, 324, 324, 324, 324, 324, 324, 22, 126, 1, -18, '', 0, 36, 26, 1.73, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 5), 79, 79, 11735, 10128, 2923, 1553, 556, 556, 556, 556, 511, 511, 556, 346, 346, 346, 346, 346, 346, 22, 127, 1, -18, '', 0, 37, 27, 1.79, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 1), 79, 79, 8858, 0, 1619, 2251, 519, 519, 519, 519, 404, 404, 519, 190, 190, 190, 190, 190, 190, 79, 395, 4, -29, '', 0, 37, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 2), 79, 79, 9174, 0, 1659, 2291, 527, 527, 527, 527, 406, 406, 527, 212, 212, 212, 212, 212, 212, 80, 398, 4, -30, '', 0, 39, 0, 1.31, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 3), 79, 79, 9490, 0, 1698, 2330, 535, 535, 535, 535, 408, 408, 535, 234, 234, 234, 234, 234, 234, 80, 400, 4, -31, '', 0, 41, 0, 1.37, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 4), 79, 79, 9806, 0, 1738, 2370, 543, 543, 543, 543, 410, 410, 543, 256, 256, 256, 256, 256, 256, 81, 403, 4, -32, '', 0, 43, 0, 1.43, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 5), 79, 79, 10122, 0, 1777, 2409, 551, 551, 551, 551, 412, 412, 551, 278, 278, 278, 278, 278, 278, 81, 406, 4, -33, '', 0, 45, 0, 1.49, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 1), 79, 79, 11228, 0, 2014, 2488, 563, 563, 563, 563, 424, 424, 563, 258, 258, 258, 258, 258, 258, 81, 402, 4, -34, '', 0, 45, 0, 1.55, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 2), 79, 79, 11544, 0, 2054, 2528, 571, 571, 571, 571, 426, 426, 571, 280, 280, 280, 280, 280, 280, 81, 404, 4, -35, '', 0, 47, 0, 1.61, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 3), 79, 79, 11860, 0, 2093, 2567, 579, 579, 579, 579, 428, 428, 579, 302, 302, 302, 302, 302, 302, 82, 407, 4, -36, '', 0, 49, 0, 1.67, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 4), 79, 79, 12176, 0, 2133, 2607, 587, 587, 587, 587, 430, 430, 587, 324, 324, 324, 324, 324, 324, 82, 409, 4, -37, '', 0, 51, 0, 1.73, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 5), 79, 79, 12492, 0, 2172, 2646, 595, 595, 595, 595, 432, 432, 595, 346, 346, 346, 346, 346, 346, 83, 412, 4, -38, '', 0, 53, 0, 1.79, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 1), 79, 79, 7621, 7205, 1053, 651, 468, 468, 468, 468, 474, 474, 468, 190, 190, 190, 190, 190, 190, 21, 118, 1, -18, '', 0, 26, 20, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 2), 79, 79, 7779, 7442, 1079, 671, 476, 476, 476, 476, 477, 477, 476, 212, 212, 212, 212, 212, 212, 21, 119, 1, -18, '', 0, 27, 21, 1.31, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 3), 79, 79, 7937, 7679, 1106, 691, 484, 484, 484, 484, 480, 480, 484, 234, 234, 234, 234, 234, 234, 21, 120, 1, -18, '', 0, 28, 22, 1.37, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 4), 79, 79, 8095, 7916, 1132, 711, 492, 492, 492, 492, 483, 483, 492, 256, 256, 256, 256, 256, 256, 21, 122, 1, -18, '', 0, 29, 23, 1.43, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 5), 79, 79, 8253, 8153, 1158, 730, 500, 500, 500, 500, 486, 486, 500, 278, 278, 278, 278, 278, 278, 22, 123, 1, -18, '', 0, 30, 24, 1.49, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 1), 79, 79, 9596, 9180, 1290, 730, 512, 512, 512, 512, 499, 499, 512, 258, 258, 258, 258, 258, 258, 21, 122, 1, -18, '', 0, 31, 23, 1.55, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 2), 79, 79, 9754, 9417, 1316, 750, 520, 520, 520, 520, 502, 502, 520, 280, 280, 280, 280, 280, 280, 22, 123, 1, -18, '', 0, 32, 24, 1.61, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 3), 79, 79, 9912, 9654, 1343, 770, 528, 528, 528, 528, 505, 505, 528, 302, 302, 302, 302, 302, 302, 22, 125, 1, -18, '', 0, 33, 25, 1.67, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 4), 79, 79, 10070, 9891, 1369, 790, 536, 536, 536, 536, 508, 508, 536, 324, 324, 324, 324, 324, 324, 22, 126, 1, -18, '', 0, 34, 26, 1.73, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 5), 79, 79, 10228, 10128, 1395, 809, 544, 544, 544, 544, 511, 511, 544, 346, 346, 346, 346, 346, 346, 22, 127, 1, -18, '', 0, 35, 27, 1.79, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 1), 80, 80, 10524, 0, 2760, 2240, 534, 534, 534, 534, 412, 412, 534, 193, 193, 193, 193, 193, 193, 83, 420, 4, -30, '', 0, 39, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 2), 80, 80, 10924, 0, 2880, 2280, 543, 543, 543, 543, 414, 414, 543, 216, 216, 216, 216, 216, 216, 83, 423, 4, -31, '', 0, 41, 0, 1.31, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 3), 80, 80, 11324, 0, 3000, 2320, 552, 552, 552, 552, 416, 416, 552, 239, 239, 239, 239, 239, 239, 84, 426, 4, -32, '', 0, 43, 0, 1.37, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 4), 80, 80, 11724, 0, 3120, 2360, 561, 561, 561, 561, 418, 418, 561, 262, 262, 262, 262, 262, 262, 84, 429, 4, -33, '', 0, 45, 0, 1.43, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 5), 80, 80, 12124, 0, 3240, 2400, 570, 570, 570, 570, 420, 420, 570, 285, 285, 285, 285, 285, 285, 85, 431, 4, -34, '', 0, 47, 0, 1.49, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 1), 80, 80, 13324, 0, 3400, 2440, 579, 579, 579, 579, 432, 432, 579, 263, 263, 263, 263, 263, 263, 84, 427, 4, -35, '', 0, 49, 0, 1.55, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 2), 80, 80, 13724, 0, 3520, 2480, 588, 588, 588, 588, 434, 434, 588, 286, 286, 286, 286, 286, 286, 84, 430, 4, -36, '', 0, 51, 0, 1.61, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 3), 80, 80, 14124, 0, 3640, 2520, 597, 597, 597, 597, 436, 436, 597, 309, 309, 309, 309, 309, 309, 85, 433, 4, -37, '', 0, 53, 0, 1.67, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 4), 80, 80, 14524, 0, 3760, 2560, 606, 606, 606, 606, 438, 438, 606, 332, 332, 332, 332, 332, 332, 85, 436, 4, -38, '', 0, 55, 0, 1.73, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 5), 80, 80, 14924, 0, 3880, 2600, 615, 615, 615, 615, 440, 440, 615, 355, 355, 355, 355, 355, 355, 86, 438, 4, -39, '', 0, 57, 0, 1.79, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 1), 80, 80, 8673, 7360, 2160, 1346, 494, 494, 494, 494, 483, 483, 494, 193, 193, 193, 193, 193, 193, 21, 119, 1, -18, '', 0, 28, 21, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 2), 80, 80, 8913, 7600, 2240, 1373, 503, 503, 503, 503, 486, 486, 503, 216, 216, 216, 216, 216, 216, 21, 120, 1, -18, '', 0, 29, 22, 1.31, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 3), 80, 80, 9153, 7840, 2320, 1400, 512, 512, 512, 512, 489, 489, 512, 239, 239, 239, 239, 239, 239, 21, 122, 1, -18, '', 0, 30, 23, 1.37, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 4), 80, 80, 9393, 8080, 2400, 1426, 521, 521, 521, 521, 492, 492, 521, 262, 262, 262, 262, 262, 262, 22, 123, 1, -18, '', 0, 31, 24, 1.43, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 5), 80, 80, 9633, 8320, 2480, 1453, 530, 530, 530, 530, 495, 495, 530, 285, 285, 285, 285, 285, 285, 22, 125, 1, -18, '', 0, 32, 25, 1.49, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 1), 80, 80, 11073, 9360, 2640, 1466, 539, 539, 539, 539, 508, 508, 539, 263, 263, 263, 263, 263, 263, 22, 123, 1, -18, '', 0, 34, 24, 1.55, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 2), 80, 80, 11313, 9600, 2720, 1493, 548, 548, 548, 548, 511, 511, 548, 286, 286, 286, 286, 286, 286, 22, 125, 1, -18, '', 0, 35, 25, 1.61, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 3), 80, 80, 11553, 9840, 2800, 1520, 557, 557, 557, 557, 514, 514, 557, 309, 309, 309, 309, 309, 309, 22, 126, 1, -18, '', 0, 36, 26, 1.67, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 4), 80, 80, 11793, 10080, 2880, 1546, 566, 566, 566, 566, 517, 517, 566, 332, 332, 332, 332, 332, 332, 22, 127, 1, -18, '', 0, 37, 27, 1.73, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 5), 80, 80, 12033, 10320, 2960, 1573, 575, 575, 575, 575, 520, 520, 575, 355, 355, 355, 355, 355, 355, 23, 129, 1, -18, '', 0, 38, 28, 1.79, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 1), 80, 80, 9130, 0, 1640, 2280, 534, 534, 534, 534, 412, 412, 534, 193, 193, 193, 193, 193, 193, 83, 411, 4, -34, '', 0, 37, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 2), 80, 80, 9450, 0, 1680, 2320, 543, 543, 543, 543, 414, 414, 543, 216, 216, 216, 216, 216, 216, 83, 414, 4, -35, '', 0, 39, 0, 1.31, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 3), 80, 80, 9770, 0, 1720, 2360, 552, 552, 552, 552, 416, 416, 552, 239, 239, 239, 239, 239, 239, 84, 417, 4, -36, '', 0, 41, 0, 1.37, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 4), 80, 80, 10090, 0, 1760, 2400, 561, 561, 561, 561, 418, 418, 561, 262, 262, 262, 262, 262, 262, 84, 419, 4, -37, '', 0, 43, 0, 1.43, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 5), 80, 80, 10410, 0, 1800, 2440, 570, 570, 570, 570, 420, 420, 570, 285, 285, 285, 285, 285, 285, 85, 422, 4, -38, '', 0, 45, 0, 1.49, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 1), 80, 80, 11530, 0, 2040, 2520, 579, 579, 579, 579, 432, 432, 579, 263, 263, 263, 263, 263, 263, 84, 418, 4, -39, '', 0, 45, 0, 1.55, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 2), 80, 80, 11850, 0, 2080, 2560, 588, 588, 588, 588, 434, 434, 588, 286, 286, 286, 286, 286, 286, 84, 421, 4, -40, '', 0, 47, 0, 1.61, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 3), 80, 80, 12170, 0, 2120, 2600, 597, 597, 597, 597, 436, 436, 597, 309, 309, 309, 309, 309, 309, 85, 423, 4, -41, '', 0, 49, 0, 1.67, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 4), 80, 80, 12490, 0, 2160, 2640, 606, 606, 606, 606, 438, 438, 606, 332, 332, 332, 332, 332, 332, 85, 426, 4, -42, '', 0, 51, 0, 1.73, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 5), 80, 80, 12810, 0, 2200, 2680, 615, 615, 615, 615, 440, 440, 615, 355, 355, 355, 355, 355, 355, 86, 428, 4, -43, '', 0, 53, 0, 1.79, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 1), 80, 80, 7858, 7360, 1066, 660, 482, 482, 482, 482, 483, 483, 482, 193, 193, 193, 193, 193, 193, 21, 119, 1, -18, '', 0, 27, 21, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 2), 80, 80, 8018, 7600, 1093, 680, 491, 491, 491, 491, 486, 486, 491, 216, 216, 216, 216, 216, 216, 21, 120, 1, -18, '', 0, 28, 22, 1.31, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 3), 80, 80, 8178, 7840, 1120, 700, 500, 500, 500, 500, 489, 489, 500, 239, 239, 239, 239, 239, 239, 21, 122, 1, -18, '', 0, 29, 23, 1.37, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 4), 80, 80, 8338, 8080, 1146, 720, 509, 509, 509, 509, 492, 492, 509, 262, 262, 262, 262, 262, 262, 22, 123, 1, -18, '', 0, 30, 24, 1.43, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 5), 80, 80, 8498, 8320, 1173, 740, 518, 518, 518, 518, 495, 495, 518, 285, 285, 285, 285, 285, 285, 22, 125, 1, -18, '', 0, 31, 25, 1.49, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 1), 80, 80, 9858, 9360, 1306, 740, 527, 527, 527, 527, 508, 508, 527, 263, 263, 263, 263, 263, 263, 22, 123, 1, -18, '', 0, 32, 24, 1.55, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 2), 80, 80, 10018, 9600, 1333, 760, 536, 536, 536, 536, 511, 511, 536, 286, 286, 286, 286, 286, 286, 22, 125, 1, -18, '', 0, 33, 25, 1.61, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 3), 80, 80, 10178, 9840, 1360, 780, 545, 545, 545, 545, 514, 514, 545, 309, 309, 309, 309, 309, 309, 22, 126, 1, -18, '', 0, 34, 26, 1.67, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 4), 80, 80, 10338, 10080, 1386, 800, 554, 554, 554, 554, 517, 517, 554, 332, 332, 332, 332, 332, 332, 22, 127, 1, -18, '', 0, 35, 27, 1.73, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 5), 80, 80, 10498, 10320, 1413, 820, 563, 563, 563, 563, 520, 520, 563, 355, 355, 355, 355, 355, 355, 23, 129, 1, -18, '', 0, 36, 28, 1.79, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 1), 81, 81, 10842, 0, 2795, 2268, 547, 547, 547, 547, 420, 420, 547, 195, 195, 195, 195, 195, 195, 86, 437, 4, -30, '', 0, 40, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 2), 81, 81, 11247, 0, 2916, 2309, 556, 556, 556, 556, 422, 422, 556, 218, 218, 218, 218, 218, 218, 86, 439, 4, -31, '', 0, 42, 0, 1.31, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 3), 81, 81, 11652, 0, 3038, 2349, 565, 565, 565, 565, 424, 424, 565, 241, 241, 241, 241, 241, 241, 87, 442, 4, -32, '', 0, 44, 0, 1.37, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 4), 81, 81, 12057, 0, 3159, 2390, 574, 574, 574, 574, 426, 426, 574, 264, 264, 264, 264, 264, 264, 87, 445, 4, -33, '', 0, 46, 0, 1.43, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 5), 81, 81, 12462, 0, 3281, 2430, 583, 583, 583, 583, 428, 428, 583, 287, 287, 287, 287, 287, 287, 88, 448, 4, -34, '', 0, 48, 0, 1.49, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 1), 81, 81, 13677, 0, 3443, 2470, 592, 592, 592, 592, 440, 440, 592, 265, 265, 265, 265, 265, 265, 87, 444, 4, -35, '', 0, 50, 0, 1.55, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 2), 81, 81, 14082, 0, 3564, 2511, 601, 601, 601, 601, 442, 442, 601, 288, 288, 288, 288, 288, 288, 88, 446, 4, -36, '', 0, 52, 0, 1.61, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 3), 81, 81, 14487, 0, 3686, 2551, 610, 610, 610, 610, 444, 444, 610, 311, 311, 311, 311, 311, 311, 88, 449, 4, -37, '', 0, 54, 0, 1.67, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 4), 81, 81, 14892, 0, 3807, 2592, 619, 619, 619, 619, 446, 446, 619, 334, 334, 334, 334, 334, 334, 89, 452, 4, -38, '', 0, 56, 0, 1.73, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 5), 81, 81, 15297, 0, 3929, 2632, 628, 628, 628, 628, 448, 448, 628, 357, 357, 357, 357, 357, 357, 89, 455, 4, -39, '', 0, 58, 0, 1.79, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 1), 81, 81, 8935, 7517, 2187, 1364, 507, 507, 507, 507, 491, 491, 507, 195, 195, 195, 195, 195, 195, 21, 120, 1, -18, '', 0, 28, 21, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 2), 81, 81, 9178, 7760, 2268, 1391, 516, 516, 516, 516, 494, 494, 516, 218, 218, 218, 218, 218, 218, 21, 122, 1, -18, '', 0, 29, 22, 1.31, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 3), 81, 81, 9421, 8003, 2349, 1418, 525, 525, 525, 525, 497, 497, 525, 241, 241, 241, 241, 241, 241, 22, 123, 1, -18, '', 0, 30, 23, 1.37, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 4), 81, 81, 9664, 8246, 2430, 1445, 534, 534, 534, 534, 500, 500, 534, 264, 264, 264, 264, 264, 264, 22, 125, 1, -18, '', 0, 31, 24, 1.43, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 5), 81, 81, 9907, 8489, 2511, 1472, 543, 543, 543, 543, 503, 503, 543, 287, 287, 287, 287, 287, 287, 22, 126, 1, -18, '', 0, 32, 25, 1.49, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 1), 81, 81, 11365, 9542, 2673, 1485, 552, 552, 552, 552, 516, 516, 552, 265, 265, 265, 265, 265, 265, 22, 125, 1, -18, '', 0, 34, 24, 1.55, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 2), 81, 81, 11608, 9785, 2754, 1512, 561, 561, 561, 561, 519, 519, 561, 288, 288, 288, 288, 288, 288, 22, 126, 1, -18, '', 0, 35, 25, 1.61, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 3), 81, 81, 11851, 10028, 2835, 1539, 570, 570, 570, 570, 522, 522, 570, 311, 311, 311, 311, 311, 311, 22, 127, 1, -18, '', 0, 36, 26, 1.67, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 4), 81, 81, 12094, 10271, 2916, 1566, 579, 579, 579, 579, 525, 525, 579, 334, 334, 334, 334, 334, 334, 23, 129, 1, -18, '', 0, 37, 27, 1.73, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 5), 81, 81, 12337, 10514, 2997, 1593, 588, 588, 588, 588, 528, 528, 588, 357, 357, 357, 357, 357, 357, 23, 130, 1, -18, '', 0, 38, 28, 1.79, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 1), 81, 81, 9407, 0, 1660, 2308, 547, 547, 547, 547, 420, 420, 547, 195, 195, 195, 195, 195, 195, 86, 428, 4, -34, '', 0, 38, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 2), 81, 81, 9731, 0, 1701, 2349, 556, 556, 556, 556, 422, 422, 556, 218, 218, 218, 218, 218, 218, 86, 430, 4, -35, '', 0, 40, 0, 1.31, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 3), 81, 81, 10055, 0, 1741, 2389, 565, 565, 565, 565, 424, 424, 565, 241, 241, 241, 241, 241, 241, 87, 433, 4, -36, '', 0, 42, 0, 1.37, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 4), 81, 81, 10379, 0, 1782, 2430, 574, 574, 574, 574, 426, 426, 574, 264, 264, 264, 264, 264, 264, 87, 436, 4, -37, '', 0, 44, 0, 1.43, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 5), 81, 81, 10703, 0, 1822, 2470, 583, 583, 583, 583, 428, 428, 583, 287, 287, 287, 287, 287, 287, 88, 438, 4, -38, '', 0, 46, 0, 1.49, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 1), 81, 81, 11837, 0, 2065, 2551, 592, 592, 592, 592, 440, 440, 592, 265, 265, 265, 265, 265, 265, 87, 434, 4, -39, '', 0, 46, 0, 1.55, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 2), 81, 81, 12161, 0, 2106, 2592, 601, 601, 601, 601, 442, 442, 601, 288, 288, 288, 288, 288, 288, 88, 437, 4, -40, '', 0, 48, 0, 1.61, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 3), 81, 81, 12485, 0, 2146, 2632, 610, 610, 610, 610, 444, 444, 610, 311, 311, 311, 311, 311, 311, 88, 439, 4, -41, '', 0, 50, 0, 1.67, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 4), 81, 81, 12809, 0, 2187, 2673, 619, 619, 619, 619, 446, 446, 619, 334, 334, 334, 334, 334, 334, 89, 442, 4, -42, '', 0, 52, 0, 1.73, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 5), 81, 81, 13133, 0, 2227, 2713, 628, 628, 628, 628, 448, 448, 628, 357, 357, 357, 357, 357, 357, 89, 445, 4, -43, '', 0, 54, 0, 1.79, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 1), 81, 81, 8101, 7517, 1080, 668, 494, 494, 494, 494, 491, 491, 494, 195, 195, 195, 195, 195, 195, 21, 120, 1, -18, '', 0, 27, 21, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 2), 81, 81, 8263, 7760, 1107, 688, 503, 503, 503, 503, 494, 494, 503, 218, 218, 218, 218, 218, 218, 21, 122, 1, -18, '', 0, 28, 22, 1.31, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 3), 81, 81, 8425, 8003, 1134, 708, 512, 512, 512, 512, 497, 497, 512, 241, 241, 241, 241, 241, 241, 22, 123, 1, -18, '', 0, 29, 23, 1.37, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 4), 81, 81, 8587, 8246, 1161, 729, 521, 521, 521, 521, 500, 500, 521, 264, 264, 264, 264, 264, 264, 22, 125, 1, -18, '', 0, 30, 24, 1.43, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 5), 81, 81, 8749, 8489, 1188, 749, 530, 530, 530, 530, 503, 503, 530, 287, 287, 287, 287, 287, 287, 22, 126, 1, -18, '', 0, 31, 25, 1.49, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 1), 81, 81, 10126, 9542, 1323, 749, 539, 539, 539, 539, 516, 516, 539, 265, 265, 265, 265, 265, 265, 22, 125, 1, -18, '', 0, 32, 24, 1.55, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 2), 81, 81, 10288, 9785, 1350, 769, 548, 548, 548, 548, 519, 519, 548, 288, 288, 288, 288, 288, 288, 22, 126, 1, -18, '', 0, 33, 25, 1.61, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 3), 81, 81, 10450, 10028, 1377, 789, 557, 557, 557, 557, 522, 522, 557, 311, 311, 311, 311, 311, 311, 22, 127, 1, -18, '', 0, 34, 26, 1.67, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 4), 81, 81, 10612, 10271, 1404, 810, 566, 566, 566, 566, 525, 525, 566, 334, 334, 334, 334, 334, 334, 23, 129, 1, -18, '', 0, 35, 27, 1.73, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 5), 81, 81, 10774, 10514, 1431, 830, 575, 575, 575, 575, 528, 528, 575, 357, 357, 357, 357, 357, 357, 23, 130, 1, -18, '', 0, 36, 28, 1.79, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 1), 82, 82, 11166, 0, 2829, 2296, 561, 561, 561, 561, 428, 428, 561, 197, 197, 197, 197, 197, 197, 89, 453, 4, -31, '', 0, 40, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 2), 82, 82, 11576, 0, 2952, 2337, 570, 570, 570, 570, 430, 430, 570, 220, 220, 220, 220, 220, 220, 90, 456, 4, -32, '', 0, 42, 0, 1.31, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 3), 82, 82, 11986, 0, 3075, 2378, 579, 579, 579, 579, 432, 432, 579, 243, 243, 243, 243, 243, 243, 90, 459, 4, -33, '', 0, 44, 0, 1.37, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 4), 82, 82, 12396, 0, 3198, 2419, 588, 588, 588, 588, 434, 434, 588, 266, 266, 266, 266, 266, 266, 91, 461, 4, -34, '', 0, 46, 0, 1.43, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 5), 82, 82, 12806, 0, 3321, 2460, 597, 597, 597, 597, 436, 436, 597, 289, 289, 289, 289, 289, 289, 91, 464, 4, -35, '', 0, 48, 0, 1.49, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 1), 82, 82, 14036, 0, 3485, 2501, 607, 607, 607, 607, 448, 448, 607, 267, 267, 267, 267, 267, 267, 90, 460, 4, -36, '', 0, 50, 0, 1.55, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 2), 82, 82, 14446, 0, 3608, 2542, 616, 616, 616, 616, 450, 450, 616, 290, 290, 290, 290, 290, 290, 91, 463, 4, -37, '', 0, 52, 0, 1.61, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 3), 82, 82, 14856, 0, 3731, 2583, 625, 625, 625, 625, 452, 452, 625, 313, 313, 313, 313, 313, 313, 91, 466, 4, -38, '', 0, 54, 0, 1.67, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 4), 82, 82, 15266, 0, 3854, 2624, 634, 634, 634, 634, 454, 454, 634, 336, 336, 336, 336, 336, 336, 92, 468, 4, -39, '', 0, 56, 0, 1.73, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 5), 82, 82, 15676, 0, 3977, 2665, 643, 643, 643, 643, 456, 456, 643, 359, 359, 359, 359, 359, 359, 92, 471, 4, -40, '', 0, 58, 0, 1.79, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 1), 82, 82, 9202, 7675, 2214, 1380, 520, 520, 520, 520, 500, 500, 520, 197, 197, 197, 197, 197, 197, 21, 122, 1, -18, '', 0, 28, 21, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 2), 82, 82, 9448, 7921, 2296, 1407, 529, 529, 529, 529, 503, 503, 529, 220, 220, 220, 220, 220, 220, 22, 123, 1, -18, '', 0, 29, 22, 1.31, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 3), 82, 82, 9694, 8167, 2378, 1435, 538, 538, 538, 538, 506, 506, 538, 243, 243, 243, 243, 243, 243, 22, 125, 1, -18, '', 0, 30, 23, 1.37, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 4), 82, 82, 9940, 8413, 2460, 1462, 547, 547, 547, 547, 509, 509, 547, 266, 266, 266, 266, 266, 266, 22, 126, 1, -18, '', 0, 31, 24, 1.43, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 5), 82, 82, 10186, 8659, 2542, 1489, 556, 556, 556, 556, 512, 512, 556, 289, 289, 289, 289, 289, 289, 22, 127, 1, -18, '', 0, 32, 25, 1.49, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 1), 82, 82, 11662, 9725, 2706, 1503, 566, 566, 566, 566, 525, 525, 566, 267, 267, 267, 267, 267, 267, 22, 126, 1, -18, '', 0, 34, 24, 1.55, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 2), 82, 82, 11908, 9971, 2788, 1530, 575, 575, 575, 575, 528, 528, 575, 290, 290, 290, 290, 290, 290, 22, 127, 1, -18, '', 0, 35, 25, 1.61, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 3), 82, 82, 12154, 10217, 2870, 1558, 584, 584, 584, 584, 531, 531, 584, 313, 313, 313, 313, 313, 313, 23, 129, 1, -18, '', 0, 36, 26, 1.67, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 4), 82, 82, 12400, 10463, 2952, 1585, 593, 593, 593, 593, 534, 534, 593, 336, 336, 336, 336, 336, 336, 23, 130, 1, -18, '', 0, 37, 27, 1.73, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 5), 82, 82, 12646, 10709, 3034, 1612, 602, 602, 602, 602, 537, 537, 602, 359, 359, 359, 359, 359, 359, 23, 132, 1, -18, '', 0, 38, 28, 1.79, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 1), 82, 82, 9690, 0, 1681, 2337, 561, 561, 561, 561, 428, 428, 561, 197, 197, 197, 197, 197, 197, 89, 444, 4, -34, '', 0, 38, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 2), 82, 82, 10018, 0, 1722, 2378, 570, 570, 570, 570, 430, 430, 570, 220, 220, 220, 220, 220, 220, 90, 447, 4, -35, '', 0, 40, 0, 1.31, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 3), 82, 82, 10346, 0, 1763, 2419, 579, 579, 579, 579, 432, 432, 579, 243, 243, 243, 243, 243, 243, 90, 449, 4, -36, '', 0, 42, 0, 1.37, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 4), 82, 82, 10674, 0, 1804, 2460, 588, 588, 588, 588, 434, 434, 588, 266, 266, 266, 266, 266, 266, 91, 452, 4, -37, '', 0, 44, 0, 1.43, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 5), 82, 82, 11002, 0, 1845, 2501, 597, 597, 597, 597, 436, 436, 597, 289, 289, 289, 289, 289, 289, 91, 454, 4, -38, '', 0, 46, 0, 1.49, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 1), 82, 82, 12150, 0, 2091, 2583, 607, 607, 607, 607, 448, 448, 607, 267, 267, 267, 267, 267, 267, 90, 451, 4, -39, '', 0, 46, 0, 1.55, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 2), 82, 82, 12478, 0, 2132, 2624, 616, 616, 616, 616, 450, 450, 616, 290, 290, 290, 290, 290, 290, 91, 453, 4, -40, '', 0, 48, 0, 1.61, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 3), 82, 82, 12806, 0, 2173, 2665, 625, 625, 625, 625, 452, 452, 625, 313, 313, 313, 313, 313, 313, 91, 456, 4, -41, '', 0, 50, 0, 1.67, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 4), 82, 82, 13134, 0, 2214, 2706, 634, 634, 634, 634, 454, 454, 634, 336, 336, 336, 336, 336, 336, 92, 458, 4, -42, '', 0, 52, 0, 1.73, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 5), 82, 82, 13462, 0, 2255, 2747, 643, 643, 643, 643, 456, 456, 643, 359, 359, 359, 359, 359, 359, 92, 461, 4, -43, '', 0, 54, 0, 1.79, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 1), 82, 82, 8350, 7675, 1093, 676, 507, 507, 507, 507, 500, 500, 507, 197, 197, 197, 197, 197, 197, 21, 122, 1, -18, '', 0, 27, 21, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 2), 82, 82, 8514, 7921, 1120, 697, 516, 516, 516, 516, 503, 503, 516, 220, 220, 220, 220, 220, 220, 22, 123, 1, -18, '', 0, 28, 22, 1.31, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 3), 82, 82, 8678, 8167, 1148, 717, 525, 525, 525, 525, 506, 506, 525, 243, 243, 243, 243, 243, 243, 22, 125, 1, -18, '', 0, 29, 23, 1.37, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 4), 82, 82, 8842, 8413, 1175, 738, 534, 534, 534, 534, 509, 509, 534, 266, 266, 266, 266, 266, 266, 22, 126, 1, -18, '', 0, 30, 24, 1.43, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 5), 82, 82, 9006, 8659, 1202, 758, 543, 543, 543, 543, 512, 512, 543, 289, 289, 289, 289, 289, 289, 22, 127, 1, -18, '', 0, 31, 25, 1.49, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 1), 82, 82, 10400, 9725, 1339, 758, 553, 553, 553, 553, 525, 525, 553, 267, 267, 267, 267, 267, 267, 22, 126, 1, -18, '', 0, 32, 24, 1.55, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 2), 82, 82, 10564, 9971, 1366, 779, 562, 562, 562, 562, 528, 528, 562, 290, 290, 290, 290, 290, 290, 22, 127, 1, -18, '', 0, 33, 25, 1.61, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 3), 82, 82, 10728, 10217, 1394, 799, 571, 571, 571, 571, 531, 531, 571, 313, 313, 313, 313, 313, 313, 23, 129, 1, -18, '', 0, 34, 26, 1.67, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 4), 82, 82, 10892, 10463, 1421, 820, 580, 580, 580, 580, 534, 534, 580, 336, 336, 336, 336, 336, 336, 23, 130, 1, -18, '', 0, 35, 27, 1.73, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 5), 82, 82, 11056, 10709, 1448, 840, 589, 589, 589, 589, 537, 537, 589, 359, 359, 359, 359, 359, 359, 23, 132, 1, -18, '', 0, 36, 28, 1.79, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 1), 83, 83, 11498, 0, 2864, 2324, 574, 574, 574, 574, 436, 436, 574, 199, 199, 199, 199, 199, 199, 92, 469, 4, -31, '', 0, 40, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 2), 83, 83, 11913, 0, 2988, 2366, 583, 583, 583, 583, 438, 438, 583, 222, 222, 222, 222, 222, 222, 93, 472, 4, -32, '', 0, 42, 0, 1.31, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 3), 83, 83, 12328, 0, 3113, 2407, 592, 592, 592, 592, 440, 440, 592, 245, 245, 245, 245, 245, 245, 93, 475, 4, -33, '', 0, 44, 0, 1.37, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 4), 83, 83, 12743, 0, 3237, 2449, 601, 601, 601, 601, 442, 442, 601, 268, 268, 268, 268, 268, 268, 94, 478, 4, -34, '', 0, 46, 0, 1.43, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 5), 83, 83, 13158, 0, 3362, 2490, 610, 610, 610, 610, 444, 444, 610, 291, 291, 291, 291, 291, 291, 94, 481, 4, -35, '', 0, 48, 0, 1.49, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 1), 83, 83, 14403, 0, 3528, 2531, 620, 620, 620, 620, 456, 456, 620, 271, 271, 271, 271, 271, 271, 94, 476, 4, -36, '', 0, 50, 0, 1.55, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 2), 83, 83, 14818, 0, 3652, 2573, 629, 629, 629, 629, 458, 458, 629, 294, 294, 294, 294, 294, 294, 94, 479, 4, -37, '', 0, 52, 0, 1.61, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 3), 83, 83, 15233, 0, 3777, 2614, 638, 638, 638, 638, 460, 460, 638, 317, 317, 317, 317, 317, 317, 95, 482, 4, -38, '', 0, 54, 0, 1.67, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 4), 83, 83, 15648, 0, 3901, 2656, 647, 647, 647, 647, 462, 462, 647, 340, 340, 340, 340, 340, 340, 95, 485, 4, -39, '', 0, 56, 0, 1.73, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 5), 83, 83, 16063, 0, 4026, 2697, 656, 656, 656, 656, 464, 464, 656, 363, 363, 363, 363, 363, 363, 96, 488, 4, -40, '', 0, 58, 0, 1.79, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 1), 83, 83, 9475, 7835, 2241, 1397, 533, 533, 533, 533, 508, 508, 533, 199, 199, 199, 199, 199, 199, 22, 123, 1, -18, '', 0, 28, 21, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 2), 83, 83, 9724, 8084, 2324, 1425, 542, 542, 542, 542, 511, 511, 542, 222, 222, 222, 222, 222, 222, 22, 125, 1, -18, '', 0, 29, 22, 1.31, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 3), 83, 83, 9973, 8333, 2407, 1453, 551, 551, 551, 551, 514, 514, 551, 245, 245, 245, 245, 245, 245, 22, 126, 1, -18, '', 0, 30, 23, 1.37, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 4), 83, 83, 10222, 8582, 2490, 1480, 560, 560, 560, 560, 517, 517, 560, 268, 268, 268, 268, 268, 268, 22, 127, 1, -18, '', 0, 31, 24, 1.43, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 5), 83, 83, 10471, 8831, 2573, 1508, 569, 569, 569, 569, 520, 520, 569, 291, 291, 291, 291, 291, 291, 23, 129, 1, -18, '', 0, 32, 25, 1.49, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 1), 83, 83, 11965, 9910, 2739, 1521, 579, 579, 579, 579, 533, 533, 579, 271, 271, 271, 271, 271, 271, 22, 127, 1, -18, '', 0, 34, 24, 1.55, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 2), 83, 83, 12214, 10159, 2822, 1549, 588, 588, 588, 588, 536, 536, 588, 294, 294, 294, 294, 294, 294, 23, 129, 1, -18, '', 0, 35, 25, 1.61, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 3), 83, 83, 12463, 10408, 2905, 1577, 597, 597, 597, 597, 539, 539, 597, 317, 317, 317, 317, 317, 317, 23, 130, 1, -18, '', 0, 36, 26, 1.67, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 4), 83, 83, 12712, 10657, 2988, 1604, 606, 606, 606, 606, 542, 542, 606, 340, 340, 340, 340, 340, 340, 23, 132, 1, -18, '', 0, 37, 27, 1.73, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 5), 83, 83, 12961, 10906, 3071, 1632, 615, 615, 615, 615, 545, 545, 615, 363, 363, 363, 363, 363, 363, 23, 133, 1, -18, '', 0, 38, 28, 1.79, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 1), 83, 83, 9979, 0, 1701, 2365, 574, 574, 574, 574, 436, 436, 574, 199, 199, 199, 199, 199, 199, 92, 460, 4, -34, '', 0, 38, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 2), 83, 83, 10311, 0, 1743, 2407, 583, 583, 583, 583, 438, 438, 583, 222, 222, 222, 222, 222, 222, 93, 463, 4, -35, '', 0, 40, 0, 1.31, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 3), 83, 83, 10643, 0, 1784, 2448, 592, 592, 592, 592, 440, 440, 592, 245, 245, 245, 245, 245, 245, 93, 466, 4, -36, '', 0, 42, 0, 1.37, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 4), 83, 83, 10975, 0, 1826, 2490, 601, 601, 601, 601, 442, 442, 601, 268, 268, 268, 268, 268, 268, 94, 468, 4, -37, '', 0, 44, 0, 1.43, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 5), 83, 83, 11307, 0, 1867, 2531, 610, 610, 610, 610, 444, 444, 610, 291, 291, 291, 291, 291, 291, 94, 471, 4, -38, '', 0, 46, 0, 1.49, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 1), 83, 83, 12469, 0, 2116, 2614, 620, 620, 620, 620, 456, 456, 620, 271, 271, 271, 271, 271, 271, 94, 467, 4, -39, '', 0, 46, 0, 1.55, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 2), 83, 83, 12801, 0, 2158, 2656, 629, 629, 629, 629, 458, 458, 629, 294, 294, 294, 294, 294, 294, 94, 469, 4, -40, '', 0, 48, 0, 1.61, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 3), 83, 83, 13133, 0, 2199, 2697, 638, 638, 638, 638, 460, 460, 638, 317, 317, 317, 317, 317, 317, 95, 472, 4, -41, '', 0, 50, 0, 1.67, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 4), 83, 83, 13465, 0, 2241, 2739, 647, 647, 647, 647, 462, 462, 647, 340, 340, 340, 340, 340, 340, 95, 475, 4, -42, '', 0, 52, 0, 1.73, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 5), 83, 83, 13797, 0, 2282, 2780, 656, 656, 656, 656, 464, 464, 656, 363, 363, 363, 363, 363, 363, 96, 477, 4, -43, '', 0, 54, 0, 1.79, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 1), 83, 83, 8604, 7835, 1106, 684, 519, 519, 519, 519, 508, 508, 519, 199, 199, 199, 199, 199, 199, 22, 123, 1, -18, '', 0, 27, 21, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 2), 83, 83, 8770, 8084, 1134, 705, 528, 528, 528, 528, 511, 511, 528, 222, 222, 222, 222, 222, 222, 22, 125, 1, -18, '', 0, 28, 22, 1.31, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 3), 83, 83, 8936, 8333, 1162, 726, 537, 537, 537, 537, 514, 514, 537, 245, 245, 245, 245, 245, 245, 22, 126, 1, -18, '', 0, 29, 23, 1.37, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 4), 83, 83, 9102, 8582, 1189, 747, 546, 546, 546, 546, 517, 517, 546, 268, 268, 268, 268, 268, 268, 22, 127, 1, -18, '', 0, 30, 24, 1.43, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 5), 83, 83, 9268, 8831, 1217, 767, 555, 555, 555, 555, 520, 520, 555, 291, 291, 291, 291, 291, 291, 23, 129, 1, -18, '', 0, 31, 25, 1.49, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 1), 83, 83, 10679, 9910, 1355, 767, 565, 565, 565, 565, 533, 533, 565, 271, 271, 271, 271, 271, 271, 22, 127, 1, -18, '', 0, 32, 24, 1.55, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 2), 83, 83, 10845, 10159, 1383, 788, 574, 574, 574, 574, 536, 536, 574, 294, 294, 294, 294, 294, 294, 23, 129, 1, -18, '', 0, 33, 25, 1.61, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 3), 83, 83, 11011, 10408, 1411, 809, 583, 583, 583, 583, 539, 539, 583, 317, 317, 317, 317, 317, 317, 23, 130, 1, -18, '', 0, 34, 26, 1.67, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 4), 83, 83, 11177, 10657, 1438, 830, 592, 592, 592, 592, 542, 542, 592, 340, 340, 340, 340, 340, 340, 23, 132, 1, -18, '', 0, 35, 27, 1.73, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 5), 83, 83, 11343, 10906, 1466, 850, 601, 601, 601, 601, 545, 545, 601, 363, 363, 363, 363, 363, 363, 23, 133, 1, -18, '', 0, 36, 28, 1.79, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 1), 84, 84, 11837, 0, 2898, 2352, 588, 588, 588, 588, 444, 444, 588, 202, 202, 202, 202, 202, 202, 96, 486, 4, -32, '', 0, 41, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 2), 84, 84, 12257, 0, 3024, 2394, 597, 597, 597, 597, 446, 446, 597, 226, 226, 226, 226, 226, 226, 96, 489, 4, -33, '', 0, 43, 0, 1.31, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 3), 84, 84, 12677, 0, 3150, 2436, 606, 606, 606, 606, 448, 448, 606, 250, 250, 250, 250, 250, 250, 97, 491, 4, -34, '', 0, 45, 0, 1.37, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 4), 84, 84, 13097, 0, 3276, 2478, 615, 615, 615, 615, 450, 450, 615, 274, 274, 274, 274, 274, 274, 97, 494, 4, -35, '', 0, 47, 0, 1.43, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 5), 84, 84, 13517, 0, 3402, 2520, 624, 624, 624, 624, 452, 452, 624, 298, 298, 298, 298, 298, 298, 98, 497, 4, -36, '', 0, 49, 0, 1.49, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 1), 84, 84, 14777, 0, 3570, 2562, 635, 635, 635, 635, 464, 464, 635, 274, 274, 274, 274, 274, 274, 97, 493, 4, -37, '', 0, 51, 0, 1.55, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 2), 84, 84, 15197, 0, 3696, 2604, 644, 644, 644, 644, 466, 466, 644, 298, 298, 298, 298, 298, 298, 97, 496, 4, -38, '', 0, 53, 0, 1.61, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 3), 84, 84, 15617, 0, 3822, 2646, 653, 653, 653, 653, 468, 468, 653, 322, 322, 322, 322, 322, 322, 98, 498, 4, -39, '', 0, 55, 0, 1.67, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 4), 84, 84, 16037, 0, 3948, 2688, 662, 662, 662, 662, 470, 470, 662, 346, 346, 346, 346, 346, 346, 98, 501, 4, -40, '', 0, 57, 0, 1.73, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 5), 84, 84, 16457, 0, 4074, 2730, 671, 671, 671, 671, 472, 472, 671, 370, 370, 370, 370, 370, 370, 99, 504, 4, -41, '', 0, 59, 0, 1.79, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 1), 84, 84, 9754, 7997, 2268, 1414, 546, 546, 546, 546, 517, 517, 546, 202, 202, 202, 202, 202, 202, 22, 125, 1, -18, '', 0, 29, 21, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 2), 84, 84, 10006, 8249, 2352, 1442, 555, 555, 555, 555, 520, 520, 555, 226, 226, 226, 226, 226, 226, 22, 126, 1, -18, '', 0, 30, 22, 1.31, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 3), 84, 84, 10258, 8501, 2436, 1470, 564, 564, 564, 564, 523, 523, 564, 250, 250, 250, 250, 250, 250, 22, 127, 1, -18, '', 0, 31, 23, 1.37, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 4), 84, 84, 10510, 8753, 2520, 1498, 573, 573, 573, 573, 526, 526, 573, 274, 274, 274, 274, 274, 274, 23, 129, 1, -18, '', 0, 32, 24, 1.43, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 5), 84, 84, 10762, 9005, 2604, 1526, 582, 582, 582, 582, 529, 529, 582, 298, 298, 298, 298, 298, 298, 23, 130, 1, -18, '', 0, 33, 25, 1.49, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 1), 84, 84, 12274, 10097, 2772, 1540, 593, 593, 593, 593, 542, 542, 593, 274, 274, 274, 274, 274, 274, 23, 129, 1, -18, '', 0, 35, 24, 1.55, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 2), 84, 84, 12526, 10349, 2856, 1568, 602, 602, 602, 602, 545, 545, 602, 298, 298, 298, 298, 298, 298, 23, 130, 1, -18, '', 0, 36, 25, 1.61, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 3), 84, 84, 12778, 10601, 2940, 1596, 611, 611, 611, 611, 548, 548, 611, 322, 322, 322, 322, 322, 322, 23, 132, 1, -18, '', 0, 37, 26, 1.67, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 4), 84, 84, 13030, 10853, 3024, 1624, 620, 620, 620, 620, 551, 551, 620, 346, 346, 346, 346, 346, 346, 23, 133, 1, -18, '', 0, 38, 27, 1.73, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 5), 84, 84, 13282, 11105, 3108, 1652, 629, 629, 629, 629, 554, 554, 629, 370, 370, 370, 370, 370, 370, 24, 134, 1, -18, '', 0, 39, 28, 1.79, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 1), 84, 84, 10274, 0, 1722, 2394, 588, 588, 588, 588, 444, 444, 588, 202, 202, 202, 202, 202, 202, 96, 477, 4, -34, '', 0, 39, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 2), 84, 84, 10610, 0, 1764, 2436, 597, 597, 597, 597, 446, 446, 597, 226, 226, 226, 226, 226, 226, 96, 479, 4, -35, '', 0, 41, 0, 1.31, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 3), 84, 84, 10946, 0, 1806, 2478, 606, 606, 606, 606, 448, 448, 606, 250, 250, 250, 250, 250, 250, 97, 482, 4, -36, '', 0, 43, 0, 1.37, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 4), 84, 84, 11282, 0, 1848, 2520, 615, 615, 615, 615, 450, 450, 615, 274, 274, 274, 274, 274, 274, 97, 484, 4, -37, '', 0, 45, 0, 1.43, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 5), 84, 84, 11618, 0, 1890, 2562, 624, 624, 624, 624, 452, 452, 624, 298, 298, 298, 298, 298, 298, 98, 487, 4, -38, '', 0, 47, 0, 1.49, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 1), 84, 84, 12794, 0, 2142, 2646, 635, 635, 635, 635, 464, 464, 635, 274, 274, 274, 274, 274, 274, 97, 483, 4, -39, '', 0, 47, 0, 1.55, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 2), 84, 84, 13130, 0, 2184, 2688, 644, 644, 644, 644, 466, 466, 644, 298, 298, 298, 298, 298, 298, 97, 486, 4, -40, '', 0, 49, 0, 1.61, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 3), 84, 84, 13466, 0, 2226, 2730, 653, 653, 653, 653, 468, 468, 653, 322, 322, 322, 322, 322, 322, 98, 488, 4, -41, '', 0, 51, 0, 1.67, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 4), 84, 84, 13802, 0, 2268, 2772, 662, 662, 662, 662, 470, 470, 662, 346, 346, 346, 346, 346, 346, 98, 491, 4, -42, '', 0, 53, 0, 1.73, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 5), 84, 84, 14138, 0, 2310, 2814, 671, 671, 671, 671, 472, 472, 671, 370, 370, 370, 370, 370, 370, 99, 494, 4, -43, '', 0, 55, 0, 1.79, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 1), 84, 84, 8863, 7997, 1120, 693, 532, 532, 532, 532, 517, 517, 532, 202, 202, 202, 202, 202, 202, 22, 125, 1, -18, '', 0, 28, 21, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 2), 84, 84, 9031, 8249, 1148, 714, 541, 541, 541, 541, 520, 520, 541, 226, 226, 226, 226, 226, 226, 22, 126, 1, -18, '', 0, 29, 22, 1.31, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 3), 84, 84, 9199, 8501, 1176, 735, 550, 550, 550, 550, 523, 523, 550, 250, 250, 250, 250, 250, 250, 22, 127, 1, -18, '', 0, 30, 23, 1.37, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 4), 84, 84, 9367, 8753, 1204, 756, 559, 559, 559, 559, 526, 526, 559, 274, 274, 274, 274, 274, 274, 23, 129, 1, -18, '', 0, 31, 24, 1.43, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 5), 84, 84, 9535, 9005, 1232, 777, 568, 568, 568, 568, 529, 529, 568, 298, 298, 298, 298, 298, 298, 23, 130, 1, -18, '', 0, 32, 25, 1.49, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 1), 84, 84, 10963, 10097, 1372, 777, 579, 579, 579, 579, 542, 542, 579, 274, 274, 274, 274, 274, 274, 23, 129, 1, -18, '', 0, 33, 24, 1.55, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 2), 84, 84, 11131, 10349, 1400, 798, 588, 588, 588, 588, 545, 545, 588, 298, 298, 298, 298, 298, 298, 23, 130, 1, -18, '', 0, 34, 25, 1.61, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 3), 84, 84, 11299, 10601, 1428, 819, 597, 597, 597, 597, 548, 548, 597, 322, 322, 322, 322, 322, 322, 23, 132, 1, -18, '', 0, 35, 26, 1.67, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 4), 84, 84, 11467, 10853, 1456, 840, 606, 606, 606, 606, 551, 551, 606, 346, 346, 346, 346, 346, 346, 23, 133, 1, -18, '', 0, 36, 27, 1.73, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 5), 84, 84, 11635, 11105, 1484, 861, 615, 615, 615, 615, 554, 554, 615, 370, 370, 370, 370, 370, 370, 24, 134, 1, -18, '', 0, 37, 28, 1.79, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 1), 85, 85, 12183, 0, 2933, 2380, 602, 602, 602, 602, 452, 452, 602, 204, 204, 204, 204, 204, 204, 99, 502, 4, -34, '', 0, 41, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 2), 85, 85, 12608, 0, 3060, 2423, 611, 611, 611, 611, 454, 454, 611, 228, 228, 228, 228, 228, 228, 99, 505, 4, -35, '', 0, 43, 0, 1.31, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 3), 85, 85, 13033, 0, 3188, 2465, 620, 620, 620, 620, 456, 456, 620, 252, 252, 252, 252, 252, 252, 100, 508, 4, -36, '', 0, 45, 0, 1.37, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 4), 85, 85, 13458, 0, 3315, 2508, 629, 629, 629, 629, 458, 458, 629, 276, 276, 276, 276, 276, 276, 100, 511, 4, -37, '', 0, 47, 0, 1.43, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 5), 85, 85, 13883, 0, 3443, 2550, 638, 638, 638, 638, 460, 460, 638, 300, 300, 300, 300, 300, 300, 101, 513, 4, -38, '', 0, 49, 0, 1.49, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 1), 85, 85, 15158, 0, 3613, 2592, 649, 649, 649, 649, 472, 472, 649, 276, 276, 276, 276, 276, 276, 100, 509, 4, -39, '', 0, 51, 0, 1.55, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 2), 85, 85, 15583, 0, 3740, 2635, 658, 658, 658, 658, 474, 474, 658, 300, 300, 300, 300, 300, 300, 101, 512, 4, -40, '', 0, 53, 0, 1.61, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 3), 85, 85, 16008, 0, 3868, 2677, 667, 667, 667, 667, 476, 476, 667, 324, 324, 324, 324, 324, 324, 101, 515, 4, -41, '', 0, 55, 0, 1.67, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 4), 85, 85, 16433, 0, 3995, 2720, 676, 676, 676, 676, 478, 478, 676, 348, 348, 348, 348, 348, 348, 102, 518, 4, -42, '', 0, 57, 0, 1.73, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 5), 85, 85, 16858, 0, 4123, 2762, 685, 685, 685, 685, 480, 480, 685, 372, 372, 372, 372, 372, 372, 102, 520, 4, -43, '', 0, 59, 0, 1.79, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 1), 85, 85, 10040, 8160, 2295, 1431, 559, 559, 559, 559, 525, 525, 559, 204, 204, 204, 204, 204, 204, 22, 126, 1, -18, '', 0, 29, 22, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 2), 85, 85, 10295, 8415, 2380, 1459, 568, 568, 568, 568, 528, 528, 568, 228, 228, 228, 228, 228, 228, 22, 127, 1, -18, '', 0, 30, 23, 1.31, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 3), 85, 85, 10550, 8670, 2465, 1488, 577, 577, 577, 577, 531, 531, 577, 252, 252, 252, 252, 252, 252, 23, 129, 1, -18, '', 0, 31, 24, 1.37, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 4), 85, 85, 10805, 8925, 2550, 1516, 586, 586, 586, 586, 534, 534, 586, 276, 276, 276, 276, 276, 276, 23, 130, 1, -18, '', 0, 32, 25, 1.43, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 5), 85, 85, 11060, 9180, 2635, 1544, 595, 595, 595, 595, 537, 537, 595, 300, 300, 300, 300, 300, 300, 23, 132, 1, -18, '', 0, 33, 26, 1.49, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 1), 85, 85, 12590, 10285, 2805, 1558, 606, 606, 606, 606, 550, 550, 606, 276, 276, 276, 276, 276, 276, 23, 130, 1, -18, '', 0, 35, 25, 1.55, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 2), 85, 85, 12845, 10540, 2890, 1586, 615, 615, 615, 615, 553, 553, 615, 300, 300, 300, 300, 300, 300, 23, 132, 1, -18, '', 0, 36, 26, 1.61, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 3), 85, 85, 13100, 10795, 2975, 1615, 624, 624, 624, 624, 556, 556, 624, 324, 324, 324, 324, 324, 324, 23, 133, 1, -18, '', 0, 37, 27, 1.67, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 4), 85, 85, 13355, 11050, 3060, 1643, 633, 633, 633, 633, 559, 559, 633, 348, 348, 348, 348, 348, 348, 24, 134, 1, -18, '', 0, 38, 28, 1.73, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 5), 85, 85, 13610, 11305, 3145, 1671, 642, 642, 642, 642, 562, 562, 642, 372, 372, 372, 372, 372, 372, 24, 136, 1, -18, '', 0, 39, 29, 1.79, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 1), 85, 85, 10576, 0, 1742, 2422, 602, 602, 602, 602, 452, 452, 602, 204, 204, 204, 204, 204, 204, 99, 493, 4, -34, '', 0, 39, 0, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 2), 85, 85, 10916, 0, 1785, 2465, 611, 611, 611, 611, 454, 454, 611, 228, 228, 228, 228, 228, 228, 99, 496, 4, -35, '', 0, 41, 0, 1.31, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 3), 85, 85, 11256, 0, 1827, 2507, 620, 620, 620, 620, 456, 456, 620, 252, 252, 252, 252, 252, 252, 100, 498, 4, -36, '', 0, 43, 0, 1.37, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 4), 85, 85, 11596, 0, 1870, 2550, 629, 629, 629, 629, 458, 458, 629, 276, 276, 276, 276, 276, 276, 100, 501, 4, -37, '', 0, 45, 0, 1.43, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 5), 85, 85, 11936, 0, 1912, 2592, 638, 638, 638, 638, 460, 460, 638, 300, 300, 300, 300, 300, 300, 101, 503, 4, -38, '', 0, 47, 0, 1.49, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 1), 85, 85, 13126, 0, 2167, 2677, 649, 649, 649, 649, 472, 472, 649, 276, 276, 276, 276, 276, 276, 100, 499, 4, -39, '', 0, 47, 0, 1.55, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 2), 85, 85, 13466, 0, 2210, 2720, 658, 658, 658, 658, 474, 474, 658, 300, 300, 300, 300, 300, 300, 101, 502, 4, -40, '', 0, 49, 0, 1.61, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 3), 85, 85, 13806, 0, 2252, 2762, 667, 667, 667, 667, 476, 476, 667, 324, 324, 324, 324, 324, 324, 101, 505, 4, -41, '', 0, 51, 0, 1.67, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 4), 85, 85, 14146, 0, 2295, 2805, 676, 676, 676, 676, 478, 478, 676, 348, 348, 348, 348, 348, 348, 102, 507, 4, -42, '', 0, 53, 0, 1.73, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 5), 85, 85, 14486, 0, 2337, 2847, 685, 685, 685, 685, 480, 480, 685, 372, 372, 372, 372, 372, 372, 102, 510, 4, -43, '', 0, 55, 0, 1.79, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 1), 85, 85, 9128, 8160, 1133, 701, 545, 545, 545, 545, 525, 525, 545, 204, 204, 204, 204, 204, 204, 22, 126, 1, -18, '', 0, 28, 22, 1.25, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 2), 85, 85, 9298, 8415, 1161, 722, 554, 554, 554, 554, 528, 528, 554, 228, 228, 228, 228, 228, 228, 22, 127, 1, -18, '', 0, 29, 23, 1.31, 126, 136);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 3), 85, 85, 9468, 8670, 1190, 743, 563, 563, 563, 563, 531, 531, 563, 252, 252, 252, 252, 252, 252, 23, 129, 1, -18, '', 0, 30, 24, 1.37, 134, 152);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 4), 85, 85, 9638, 8925, 1218, 765, 572, 572, 572, 572, 534, 534, 572, 276, 276, 276, 276, 276, 276, 23, 130, 1, -18, '', 0, 31, 25, 1.43, 142, 168);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 5), 85, 85, 9808, 9180, 1246, 786, 581, 581, 581, 581, 537, 537, 581, 300, 300, 300, 300, 300, 300, 23, 132, 1, -18, '', 0, 32, 26, 1.49, 150, 184);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 1), 85, 85, 11253, 10285, 1388, 786, 592, 592, 592, 592, 550, 550, 592, 276, 276, 276, 276, 276, 276, 23, 130, 1, -18, '', 0, 33, 25, 1.55, 118, 120);
|
|
REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 2), 85, 85, 11423, 10540, 1416, 807, 601, 601, 601, 601, 553, 553, 601, 300, 300, 300, 300, 300, 300, 23, 132, 1, -18, '', 0, 34, 26, 1.61, 126, 136);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 3), 85, 85, 11593, 10795, 1445, 828, 610, 610, 610, 610, 556, 556, 610, 324, 324, 324, 324, 324, 324, 23, 133, 1, -18, '', 0, 35, 27, 1.67, 134, 152);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 4), 85, 85, 11763, 11050, 1473, 850, 619, 619, 619, 619, 559, 559, 619, 348, 348, 348, 348, 348, 348, 24, 134, 1, -18, '', 0, 36, 28, 1.73, 142, 168);
|
|
-- REPLACE INTO merc_stats ( merc_npc_type_id, clientlevel, level, hp, mana, AC, ATK, STR, STA, DEX, AGI, _INT, WIS, CHA, MR, CR, DR, FR, PR, Corrup, mindmg, maxdmg, attack_count, attack_speed, specialattks, Accuracy, hp_regen_rate, mana_regen_rate, runspeed, spellscale, healscale ) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 5), 85, 85, 11933, 11305, 1501, 871, 628, 628, 628, 628, 562, 562, 628, 372, 372, 372, 372, 372, 372, 24, 136, 1, -18, '', 0, 37, 29, 1.79, 150, 184);
|
|
|
|
|
|
REPLACE INTO merc_weaponinfo (merc_npc_type_id, minlevel, maxlevel, d_meele_texture1, d_meele_texture2, prim_melee_type, sec_melee_type) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 1), 1, 12, 10649, 208, 1, 28);
|
|
REPLACE INTO merc_weaponinfo (merc_npc_type_id, minlevel, maxlevel, d_meele_texture1, d_meele_texture2, prim_melee_type, sec_melee_type) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 1), 13, 255, 10649, 10649, 1, 1);
|
|
REPLACE INTO merc_weaponinfo (merc_npc_type_id, minlevel, maxlevel, d_meele_texture1, d_meele_texture2, prim_melee_type, sec_melee_type) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 2), 1, 12, 10649, 208, 1, 28);
|
|
REPLACE INTO merc_weaponinfo (merc_npc_type_id, minlevel, maxlevel, d_meele_texture1, d_meele_texture2, prim_melee_type, sec_melee_type) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 2), 13, 255, 10649, 10649, 1, 1);
|
|
REPLACE INTO merc_weaponinfo (merc_npc_type_id, minlevel, maxlevel, d_meele_texture1, d_meele_texture2, prim_melee_type, sec_melee_type) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 3), 1, 12, 10649, 208, 1, 28);
|
|
REPLACE INTO merc_weaponinfo (merc_npc_type_id, minlevel, maxlevel, d_meele_texture1, d_meele_texture2, prim_melee_type, sec_melee_type) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 3), 13, 255, 10649, 10649, 1, 1);
|
|
REPLACE INTO merc_weaponinfo (merc_npc_type_id, minlevel, maxlevel, d_meele_texture1, d_meele_texture2, prim_melee_type, sec_melee_type) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 4), 1, 12, 10649, 208, 1, 28);
|
|
REPLACE INTO merc_weaponinfo (merc_npc_type_id, minlevel, maxlevel, d_meele_texture1, d_meele_texture2, prim_melee_type, sec_melee_type) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 4), 13, 255, 10649, 10649, 1, 1);
|
|
REPLACE INTO merc_weaponinfo (merc_npc_type_id, minlevel, maxlevel, d_meele_texture1, d_meele_texture2, prim_melee_type, sec_melee_type) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 5), 1, 12, 10649, 208, 1, 28);
|
|
REPLACE INTO merc_weaponinfo (merc_npc_type_id, minlevel, maxlevel, d_meele_texture1, d_meele_texture2, prim_melee_type, sec_melee_type) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 5), 13, 255, 10649, 10649, 1, 1);
|
|
REPLACE INTO merc_weaponinfo (merc_npc_type_id, minlevel, maxlevel, d_meele_texture1, d_meele_texture2, prim_melee_type, sec_melee_type) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 1), 1, 12, 10649, 208, 1, 28);
|
|
REPLACE INTO merc_weaponinfo (merc_npc_type_id, minlevel, maxlevel, d_meele_texture1, d_meele_texture2, prim_melee_type, sec_melee_type) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 1), 13, 255, 10649, 10649, 1, 1);
|
|
REPLACE INTO merc_weaponinfo (merc_npc_type_id, minlevel, maxlevel, d_meele_texture1, d_meele_texture2, prim_melee_type, sec_melee_type) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 2), 1, 12, 10649, 208, 1, 28);
|
|
REPLACE INTO merc_weaponinfo (merc_npc_type_id, minlevel, maxlevel, d_meele_texture1, d_meele_texture2, prim_melee_type, sec_melee_type) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 2), 13, 255, 10649, 10649, 1, 1);
|
|
REPLACE INTO merc_weaponinfo (merc_npc_type_id, minlevel, maxlevel, d_meele_texture1, d_meele_texture2, prim_melee_type, sec_melee_type) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 3), 1, 12, 10649, 208, 1, 28);
|
|
REPLACE INTO merc_weaponinfo (merc_npc_type_id, minlevel, maxlevel, d_meele_texture1, d_meele_texture2, prim_melee_type, sec_melee_type) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 3), 13, 255, 10649, 10649, 1, 1);
|
|
REPLACE INTO merc_weaponinfo (merc_npc_type_id, minlevel, maxlevel, d_meele_texture1, d_meele_texture2, prim_melee_type, sec_melee_type) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 4), 1, 12, 10649, 208, 1, 28);
|
|
REPLACE INTO merc_weaponinfo (merc_npc_type_id, minlevel, maxlevel, d_meele_texture1, d_meele_texture2, prim_melee_type, sec_melee_type) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 4), 13, 255, 10649, 10649, 1, 1);
|
|
REPLACE INTO merc_weaponinfo (merc_npc_type_id, minlevel, maxlevel, d_meele_texture1, d_meele_texture2, prim_melee_type, sec_melee_type) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 5), 1, 12, 10649, 208, 1, 28);
|
|
REPLACE INTO merc_weaponinfo (merc_npc_type_id, minlevel, maxlevel, d_meele_texture1, d_meele_texture2, prim_melee_type, sec_melee_type) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 5), 13, 255, 10649, 10649, 1, 1);
|
|
REPLACE INTO merc_weaponinfo (merc_npc_type_id, minlevel, maxlevel, d_meele_texture1, d_meele_texture2, prim_melee_type, sec_melee_type) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 1), 1, 255, 10608, 209, 0, 28);
|
|
REPLACE INTO merc_weaponinfo (merc_npc_type_id, minlevel, maxlevel, d_meele_texture1, d_meele_texture2, prim_melee_type, sec_melee_type) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 2), 1, 255, 10608, 209, 0, 28);
|
|
REPLACE INTO merc_weaponinfo (merc_npc_type_id, minlevel, maxlevel, d_meele_texture1, d_meele_texture2, prim_melee_type, sec_melee_type) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 3), 1, 255, 10608, 209, 0, 28);
|
|
REPLACE INTO merc_weaponinfo (merc_npc_type_id, minlevel, maxlevel, d_meele_texture1, d_meele_texture2, prim_melee_type, sec_melee_type) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 4), 1, 255, 10608, 209, 0, 28);
|
|
REPLACE INTO merc_weaponinfo (merc_npc_type_id, minlevel, maxlevel, d_meele_texture1, d_meele_texture2, prim_melee_type, sec_melee_type) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 5), 1, 255, 10608, 209, 0, 28);
|
|
REPLACE INTO merc_weaponinfo (merc_npc_type_id, minlevel, maxlevel, d_meele_texture1, d_meele_texture2, prim_melee_type, sec_melee_type) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 1), 1, 255, 10608, 209, 0, 28);
|
|
REPLACE INTO merc_weaponinfo (merc_npc_type_id, minlevel, maxlevel, d_meele_texture1, d_meele_texture2, prim_melee_type, sec_melee_type) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 2), 1, 255, 10608, 209, 0, 28);
|
|
REPLACE INTO merc_weaponinfo (merc_npc_type_id, minlevel, maxlevel, d_meele_texture1, d_meele_texture2, prim_melee_type, sec_melee_type) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 3), 1, 255, 10608, 209, 0, 28);
|
|
REPLACE INTO merc_weaponinfo (merc_npc_type_id, minlevel, maxlevel, d_meele_texture1, d_meele_texture2, prim_melee_type, sec_melee_type) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 4), 1, 255, 10608, 209, 0, 28);
|
|
REPLACE INTO merc_weaponinfo (merc_npc_type_id, minlevel, maxlevel, d_meele_texture1, d_meele_texture2, prim_melee_type, sec_melee_type) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 5), 1, 255, 10608, 209, 0, 28);
|
|
REPLACE INTO merc_weaponinfo (merc_npc_type_id, minlevel, maxlevel, d_meele_texture1, d_meele_texture2, prim_melee_type, sec_melee_type) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 1), 1, 12, 10650, 208, 36, 28);
|
|
REPLACE INTO merc_weaponinfo (merc_npc_type_id, minlevel, maxlevel, d_meele_texture1, d_meele_texture2, prim_melee_type, sec_melee_type) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 1), 13, 255, 10650, 10650, 36, 36);
|
|
REPLACE INTO merc_weaponinfo (merc_npc_type_id, minlevel, maxlevel, d_meele_texture1, d_meele_texture2, prim_melee_type, sec_melee_type) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 2), 1, 12, 10650, 208, 36, 28);
|
|
REPLACE INTO merc_weaponinfo (merc_npc_type_id, minlevel, maxlevel, d_meele_texture1, d_meele_texture2, prim_melee_type, sec_melee_type) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 2), 13, 255, 10650, 10650, 36, 36);
|
|
REPLACE INTO merc_weaponinfo (merc_npc_type_id, minlevel, maxlevel, d_meele_texture1, d_meele_texture2, prim_melee_type, sec_melee_type) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 3), 1, 12, 10650, 208, 36, 28);
|
|
REPLACE INTO merc_weaponinfo (merc_npc_type_id, minlevel, maxlevel, d_meele_texture1, d_meele_texture2, prim_melee_type, sec_melee_type) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 3), 13, 255, 10650, 10650, 36, 36);
|
|
REPLACE INTO merc_weaponinfo (merc_npc_type_id, minlevel, maxlevel, d_meele_texture1, d_meele_texture2, prim_melee_type, sec_melee_type) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 4), 1, 12, 10650, 208, 36, 28);
|
|
REPLACE INTO merc_weaponinfo (merc_npc_type_id, minlevel, maxlevel, d_meele_texture1, d_meele_texture2, prim_melee_type, sec_melee_type) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 4), 13, 255, 10650, 10650, 36, 36);
|
|
REPLACE INTO merc_weaponinfo (merc_npc_type_id, minlevel, maxlevel, d_meele_texture1, d_meele_texture2, prim_melee_type, sec_melee_type) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 5), 1, 12, 10650, 208, 36, 28);
|
|
REPLACE INTO merc_weaponinfo (merc_npc_type_id, minlevel, maxlevel, d_meele_texture1, d_meele_texture2, prim_melee_type, sec_melee_type) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 5), 13, 255, 10650, 10650, 36, 36);
|
|
REPLACE INTO merc_weaponinfo (merc_npc_type_id, minlevel, maxlevel, d_meele_texture1, d_meele_texture2, prim_melee_type, sec_melee_type) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 1), 1, 12, 10650, 208, 36, 28);
|
|
REPLACE INTO merc_weaponinfo (merc_npc_type_id, minlevel, maxlevel, d_meele_texture1, d_meele_texture2, prim_melee_type, sec_melee_type) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 1), 13, 255, 10650, 10650, 36, 36);
|
|
REPLACE INTO merc_weaponinfo (merc_npc_type_id, minlevel, maxlevel, d_meele_texture1, d_meele_texture2, prim_melee_type, sec_melee_type) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 2), 1, 12, 10650, 208, 36, 28);
|
|
REPLACE INTO merc_weaponinfo (merc_npc_type_id, minlevel, maxlevel, d_meele_texture1, d_meele_texture2, prim_melee_type, sec_melee_type) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 2), 13, 255, 10650, 10650, 36, 36);
|
|
REPLACE INTO merc_weaponinfo (merc_npc_type_id, minlevel, maxlevel, d_meele_texture1, d_meele_texture2, prim_melee_type, sec_melee_type) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 3), 1, 12, 10650, 208, 36, 28);
|
|
REPLACE INTO merc_weaponinfo (merc_npc_type_id, minlevel, maxlevel, d_meele_texture1, d_meele_texture2, prim_melee_type, sec_melee_type) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 3), 13, 255, 10650, 10650, 36, 36);
|
|
REPLACE INTO merc_weaponinfo (merc_npc_type_id, minlevel, maxlevel, d_meele_texture1, d_meele_texture2, prim_melee_type, sec_melee_type) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 4), 1, 12, 10650, 208, 36, 28);
|
|
REPLACE INTO merc_weaponinfo (merc_npc_type_id, minlevel, maxlevel, d_meele_texture1, d_meele_texture2, prim_melee_type, sec_melee_type) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 4), 13, 255, 10650, 10650, 36, 36);
|
|
REPLACE INTO merc_weaponinfo (merc_npc_type_id, minlevel, maxlevel, d_meele_texture1, d_meele_texture2, prim_melee_type, sec_melee_type) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 5), 1, 12, 10650, 208, 36, 28);
|
|
REPLACE INTO merc_weaponinfo (merc_npc_type_id, minlevel, maxlevel, d_meele_texture1, d_meele_texture2, prim_melee_type, sec_melee_type) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 5), 13, 255, 10650, 10650, 36, 36);
|
|
REPLACE INTO merc_weaponinfo (merc_npc_type_id, minlevel, maxlevel, d_meele_texture1, d_meele_texture2, prim_melee_type, sec_melee_type) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 1), 1, 255, 10681, 209, 0, 28);
|
|
REPLACE INTO merc_weaponinfo (merc_npc_type_id, minlevel, maxlevel, d_meele_texture1, d_meele_texture2, prim_melee_type, sec_melee_type) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 2), 1, 255, 10681, 209, 0, 28);
|
|
REPLACE INTO merc_weaponinfo (merc_npc_type_id, minlevel, maxlevel, d_meele_texture1, d_meele_texture2, prim_melee_type, sec_melee_type) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 3), 1, 255, 10681, 209, 0, 28);
|
|
REPLACE INTO merc_weaponinfo (merc_npc_type_id, minlevel, maxlevel, d_meele_texture1, d_meele_texture2, prim_melee_type, sec_melee_type) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 4), 1, 255, 10681, 209, 0, 28);
|
|
REPLACE INTO merc_weaponinfo (merc_npc_type_id, minlevel, maxlevel, d_meele_texture1, d_meele_texture2, prim_melee_type, sec_melee_type) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 5), 1, 255, 10681, 209, 0, 28);
|
|
REPLACE INTO merc_weaponinfo (merc_npc_type_id, minlevel, maxlevel, d_meele_texture1, d_meele_texture2, prim_melee_type, sec_melee_type) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 1), 1, 255, 10681, 209, 0, 28);
|
|
REPLACE INTO merc_weaponinfo (merc_npc_type_id, minlevel, maxlevel, d_meele_texture1, d_meele_texture2, prim_melee_type, sec_melee_type) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 2), 1, 255, 10681, 209, 0, 28);
|
|
REPLACE INTO merc_weaponinfo (merc_npc_type_id, minlevel, maxlevel, d_meele_texture1, d_meele_texture2, prim_melee_type, sec_melee_type) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 3), 1, 255, 10681, 209, 0, 28);
|
|
REPLACE INTO merc_weaponinfo (merc_npc_type_id, minlevel, maxlevel, d_meele_texture1, d_meele_texture2, prim_melee_type, sec_melee_type) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 4), 1, 255, 10681, 209, 0, 28);
|
|
REPLACE INTO merc_weaponinfo (merc_npc_type_id, minlevel, maxlevel, d_meele_texture1, d_meele_texture2, prim_melee_type, sec_melee_type) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 5), 1, 255, 10681, 209, 0, 28);
|
|
|
|
|
|
REPLACE INTO merc_armorinfo (merc_npc_type_id, minlevel, maxlevel, texture, helmtexture, armortint_id, armortint_red, armortint_green, armortint_blue) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 1), 1, 255, 3, 0, 0, 0, 0, 0);
|
|
REPLACE INTO merc_armorinfo (merc_npc_type_id, minlevel, maxlevel, texture, helmtexture, armortint_id, armortint_red, armortint_green, armortint_blue) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 2), 1, 255, 3, 0, 0, 0, 0, 0);
|
|
REPLACE INTO merc_armorinfo (merc_npc_type_id, minlevel, maxlevel, texture, helmtexture, armortint_id, armortint_red, armortint_green, armortint_blue) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 3), 1, 255, 3, 0, 0, 0, 0, 0);
|
|
REPLACE INTO merc_armorinfo (merc_npc_type_id, minlevel, maxlevel, texture, helmtexture, armortint_id, armortint_red, armortint_green, armortint_blue) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 4), 1, 255, 3, 0, 0, 0, 0, 0);
|
|
REPLACE INTO merc_armorinfo (merc_npc_type_id, minlevel, maxlevel, texture, helmtexture, armortint_id, armortint_red, armortint_green, armortint_blue) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 1 AND tier_id = 5), 1, 255, 3, 0, 0, 0, 0, 0);
|
|
REPLACE INTO merc_armorinfo (merc_npc_type_id, minlevel, maxlevel, texture, helmtexture, armortint_id, armortint_red, armortint_green, armortint_blue) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 1), 1, 255, 3, 0, 0, 0, 0, 0);
|
|
REPLACE INTO merc_armorinfo (merc_npc_type_id, minlevel, maxlevel, texture, helmtexture, armortint_id, armortint_red, armortint_green, armortint_blue) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 2), 1, 255, 3, 0, 0, 0, 0, 0);
|
|
REPLACE INTO merc_armorinfo (merc_npc_type_id, minlevel, maxlevel, texture, helmtexture, armortint_id, armortint_red, armortint_green, armortint_blue) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 3), 1, 255, 3, 0, 0, 0, 0, 0);
|
|
REPLACE INTO merc_armorinfo (merc_npc_type_id, minlevel, maxlevel, texture, helmtexture, armortint_id, armortint_red, armortint_green, armortint_blue) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 4), 1, 255, 3, 0, 0, 0, 0, 0);
|
|
REPLACE INTO merc_armorinfo (merc_npc_type_id, minlevel, maxlevel, texture, helmtexture, armortint_id, armortint_red, armortint_green, armortint_blue) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 1 AND proficiency_id = 2 AND tier_id = 5), 1, 255, 3, 0, 0, 0, 0, 0);
|
|
REPLACE INTO merc_armorinfo (merc_npc_type_id, minlevel, maxlevel, texture, helmtexture, armortint_id, armortint_red, armortint_green, armortint_blue) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 1), 1, 255, 3, 0, 0, 0, 0, 0);
|
|
REPLACE INTO merc_armorinfo (merc_npc_type_id, minlevel, maxlevel, texture, helmtexture, armortint_id, armortint_red, armortint_green, armortint_blue) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 2), 1, 255, 3, 0, 0, 0, 0, 0);
|
|
REPLACE INTO merc_armorinfo (merc_npc_type_id, minlevel, maxlevel, texture, helmtexture, armortint_id, armortint_red, armortint_green, armortint_blue) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 3), 1, 255, 3, 0, 0, 0, 0, 0);
|
|
REPLACE INTO merc_armorinfo (merc_npc_type_id, minlevel, maxlevel, texture, helmtexture, armortint_id, armortint_red, armortint_green, armortint_blue) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 4), 1, 255, 3, 0, 0, 0, 0, 0);
|
|
REPLACE INTO merc_armorinfo (merc_npc_type_id, minlevel, maxlevel, texture, helmtexture, armortint_id, armortint_red, armortint_green, armortint_blue) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 1 AND tier_id = 5), 1, 255, 3, 0, 0, 0, 0, 0);
|
|
REPLACE INTO merc_armorinfo (merc_npc_type_id, minlevel, maxlevel, texture, helmtexture, armortint_id, armortint_red, armortint_green, armortint_blue) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 1), 1, 255, 3, 0, 0, 0, 0, 0);
|
|
REPLACE INTO merc_armorinfo (merc_npc_type_id, minlevel, maxlevel, texture, helmtexture, armortint_id, armortint_red, armortint_green, armortint_blue) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 2), 1, 255, 3, 0, 0, 0, 0, 0);
|
|
REPLACE INTO merc_armorinfo (merc_npc_type_id, minlevel, maxlevel, texture, helmtexture, armortint_id, armortint_red, armortint_green, armortint_blue) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 3), 1, 255, 3, 0, 0, 0, 0, 0);
|
|
REPLACE INTO merc_armorinfo (merc_npc_type_id, minlevel, maxlevel, texture, helmtexture, armortint_id, armortint_red, armortint_green, armortint_blue) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 4), 1, 255, 3, 0, 0, 0, 0, 0);
|
|
REPLACE INTO merc_armorinfo (merc_npc_type_id, minlevel, maxlevel, texture, helmtexture, armortint_id, armortint_red, armortint_green, armortint_blue) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 2 AND proficiency_id = 2 AND tier_id = 5), 1, 255, 3, 0, 0, 0, 0, 0);
|
|
REPLACE INTO merc_armorinfo (merc_npc_type_id, minlevel, maxlevel, texture, helmtexture, armortint_id, armortint_red, armortint_green, armortint_blue) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 1), 1, 255, 2, 0, 0, 0, 0, 0);
|
|
REPLACE INTO merc_armorinfo (merc_npc_type_id, minlevel, maxlevel, texture, helmtexture, armortint_id, armortint_red, armortint_green, armortint_blue) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 2), 1, 255, 2, 0, 0, 0, 0, 0);
|
|
REPLACE INTO merc_armorinfo (merc_npc_type_id, minlevel, maxlevel, texture, helmtexture, armortint_id, armortint_red, armortint_green, armortint_blue) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 3), 1, 255, 2, 0, 0, 0, 0, 0);
|
|
REPLACE INTO merc_armorinfo (merc_npc_type_id, minlevel, maxlevel, texture, helmtexture, armortint_id, armortint_red, armortint_green, armortint_blue) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 4), 1, 255, 2, 0, 0, 0, 0, 0);
|
|
REPLACE INTO merc_armorinfo (merc_npc_type_id, minlevel, maxlevel, texture, helmtexture, armortint_id, armortint_red, armortint_green, armortint_blue) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 1 AND tier_id = 5), 1, 255, 2, 0, 0, 0, 0, 0);
|
|
REPLACE INTO merc_armorinfo (merc_npc_type_id, minlevel, maxlevel, texture, helmtexture, armortint_id, armortint_red, armortint_green, armortint_blue) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 1), 1, 255, 2, 0, 0, 0, 0, 0);
|
|
REPLACE INTO merc_armorinfo (merc_npc_type_id, minlevel, maxlevel, texture, helmtexture, armortint_id, armortint_red, armortint_green, armortint_blue) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 2), 1, 255, 2, 0, 0, 0, 0, 0);
|
|
REPLACE INTO merc_armorinfo (merc_npc_type_id, minlevel, maxlevel, texture, helmtexture, armortint_id, armortint_red, armortint_green, armortint_blue) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 3), 1, 255, 2, 0, 0, 0, 0, 0);
|
|
REPLACE INTO merc_armorinfo (merc_npc_type_id, minlevel, maxlevel, texture, helmtexture, armortint_id, armortint_red, armortint_green, armortint_blue) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 4), 1, 255, 2, 0, 0, 0, 0, 0);
|
|
REPLACE INTO merc_armorinfo (merc_npc_type_id, minlevel, maxlevel, texture, helmtexture, armortint_id, armortint_red, armortint_green, armortint_blue) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 9 AND proficiency_id = 2 AND tier_id = 5), 1, 255, 2, 0, 0, 0, 0, 0);
|
|
REPLACE INTO merc_armorinfo (merc_npc_type_id, minlevel, maxlevel, texture, helmtexture, armortint_id, armortint_red, armortint_green, armortint_blue) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 1), 1, 255, 10, 0, 0, 0, 0, 0);
|
|
REPLACE INTO merc_armorinfo (merc_npc_type_id, minlevel, maxlevel, texture, helmtexture, armortint_id, armortint_red, armortint_green, armortint_blue) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 2), 1, 255, 10, 0, 0, 0, 0, 0);
|
|
REPLACE INTO merc_armorinfo (merc_npc_type_id, minlevel, maxlevel, texture, helmtexture, armortint_id, armortint_red, armortint_green, armortint_blue) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 3), 1, 255, 10, 0, 0, 0, 0, 0);
|
|
REPLACE INTO merc_armorinfo (merc_npc_type_id, minlevel, maxlevel, texture, helmtexture, armortint_id, armortint_red, armortint_green, armortint_blue) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 4), 1, 255, 10, 0, 0, 0, 0, 0);
|
|
REPLACE INTO merc_armorinfo (merc_npc_type_id, minlevel, maxlevel, texture, helmtexture, armortint_id, armortint_red, armortint_green, armortint_blue) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 1 AND tier_id = 5), 1, 255, 10, 0, 0, 0, 0, 0);
|
|
REPLACE INTO merc_armorinfo (merc_npc_type_id, minlevel, maxlevel, texture, helmtexture, armortint_id, armortint_red, armortint_green, armortint_blue) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 1), 1, 255, 10, 0, 0, 0, 0, 0);
|
|
REPLACE INTO merc_armorinfo (merc_npc_type_id, minlevel, maxlevel, texture, helmtexture, armortint_id, armortint_red, armortint_green, armortint_blue) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 2), 1, 255, 10, 0, 0, 0, 0, 0);
|
|
REPLACE INTO merc_armorinfo (merc_npc_type_id, minlevel, maxlevel, texture, helmtexture, armortint_id, armortint_red, armortint_green, armortint_blue) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 3), 1, 255, 10, 0, 0, 0, 0, 0);
|
|
REPLACE INTO merc_armorinfo (merc_npc_type_id, minlevel, maxlevel, texture, helmtexture, armortint_id, armortint_red, armortint_green, armortint_blue) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 4), 1, 255, 10, 0, 0, 0, 0, 0);
|
|
REPLACE INTO merc_armorinfo (merc_npc_type_id, minlevel, maxlevel, texture, helmtexture, armortint_id, armortint_red, armortint_green, armortint_blue) VALUES ( (SELECT merc_npc_type_id FROM merc_npc_types WHERE class_id = 12 AND proficiency_id = 2 AND tier_id = 5), 1, 255, 10, 0, 0, 0, 0, 0);
|
|
|
|
REPLACE INTO merc_spell_lists (class_id, proficiency_id, name) VALUES (1, 1, 'Apprentice Tank Disciplines');
|
|
REPLACE INTO merc_spell_lists (class_id, proficiency_id, name) VALUES (1, 2, 'Journeyman Tank Disciplines');
|
|
-- REPLACE INTO merc_spell_lists (class_id, proficiency_id, name) VALUES (1, 3, 'Master Tank Disciplines');
|
|
REPLACE INTO merc_spell_lists (class_id, proficiency_id, name) VALUES (2, 1, 'Apprentice Healer Spells');
|
|
REPLACE INTO merc_spell_lists (class_id, proficiency_id, name) VALUES (2, 2, 'Journeyman Healer Spells');
|
|
-- REPLACE INTO merc_spell_lists (class_id, proficiency_id, name) VALUES (2, 3, 'Master Healer Spells');
|
|
REPLACE INTO merc_spell_lists (class_id, proficiency_id, name) VALUES (9, 1, 'Apprentice Melee DPS Disciplines');
|
|
REPLACE INTO merc_spell_lists (class_id, proficiency_id, name) VALUES (9, 2, 'Journeyman Melee DPS Disciplines');
|
|
-- REPLACE INTO merc_spell_lists (class_id, proficiency_id, name) VALUES (9, 3, 'Master Melee DPS Disciplines');
|
|
REPLACE INTO merc_spell_lists (class_id, proficiency_id, name) VALUES (12, 1, 'Apprentice Caster DPS Spells');
|
|
REPLACE INTO merc_spell_lists (class_id, proficiency_id, name) VALUES (12, 2, 'Journeyman Caster DPS Spells');
|
|
-- REPLACE INTO merc_spell_lists (class_id, proficiency_id, name) VALUES (11, 3, 'Master Caster DPS Spells');
|
|
|
|
REPLACE INTO merc_spell_list_entries (merc_spell_list_id, spell_id, spell_type, stance_id, minlevel, maxlevel, slot, procChance) VALUES
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 1 AND proficiency_id = 1), (SELECT id FROM spells_new WHERE name = 'Mercenary Taunt' ORDER BY id DESC LIMIT 1), 1, 0, 1, 255, 1, 0 ),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 1 AND proficiency_id = 1), (SELECT id FROM spells_new WHERE name = 'Provoke' ORDER BY id DESC LIMIT 1), 1, 0, 20, 51, 2, 0 ),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 1 AND proficiency_id = 1), (SELECT id FROM spells_new WHERE name = 'Bellow' ORDER BY id DESC LIMIT 1), 1, 0, 52, 55, 2, 0 ),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 1 AND proficiency_id = 1), (SELECT id FROM spells_new WHERE name = 'Berate' ORDER BY id DESC LIMIT 1), 1, 0, 56, 62, 2, 0 ),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 1 AND proficiency_id = 1), (SELECT id FROM spells_new WHERE name = 'Mercenary Area Taunt' ORDER BY id DESC LIMIT 1), 1, 0, 59, 255, 1, 0 ),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 1 AND proficiency_id = 1), (SELECT id FROM spells_new WHERE name = 'Incite' ORDER BY id DESC LIMIT 1), 1, 0, 63, 64, 2, 0 ),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 1 AND proficiency_id = 1), (SELECT id FROM spells_new WHERE name = 'Bellow of the Mastruq' ORDER BY id DESC LIMIT 1), 1, 0, 65, 69, 2, 0 ),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 1 AND proficiency_id = 1), (SELECT id FROM spells_new WHERE name = 'Bazu Bellow' ORDER BY id DESC LIMIT 1), 1, 0, 69, 80, 3, 0 ),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 1 AND proficiency_id = 1), (SELECT id FROM spells_new WHERE name = 'Mock' ORDER BY id DESC LIMIT 1), 1, 0, 70, 74, 2, 0 ),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 1 AND proficiency_id = 1), (SELECT id FROM spells_new WHERE name = 'Scowl' ORDER BY id DESC LIMIT 1), 1, 0, 75, 79, 2, 0 ),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 1 AND proficiency_id = 1), (SELECT id FROM spells_new WHERE name = 'Sneer' ORDER BY id DESC LIMIT 1), 1, 0, 80, 84, 2, 0 ),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 1 AND proficiency_id = 1), (SELECT id FROM spells_new WHERE name = 'Bazu Bluster' ORDER BY id DESC LIMIT 1), 1, 0, 81, 85, 3, 0 ),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 1 AND proficiency_id = 1), (SELECT id FROM spells_new WHERE name = 'Jeer' ORDER BY id DESC LIMIT 1), 1, 0, 85, 89, 2, 0 );
|
|
|
|
REPLACE INTO merc_spell_list_entries (merc_spell_list_id, spell_id, spell_type, stance_id, minlevel, maxlevel, slot, procChance) VALUES
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 1 AND proficiency_id = 2), (SELECT id FROM spells_new WHERE name = 'Mercenary Taunt' ORDER BY id DESC LIMIT 1), 1, 0, 1, 255, 1, 0 ),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 1 AND proficiency_id = 2), (SELECT id FROM spells_new WHERE name = 'Provoke' ORDER BY id DESC LIMIT 1), 1, 0, 20, 51, 2, 0 ),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 1 AND proficiency_id = 2), (SELECT id FROM spells_new WHERE name = 'Bellow' ORDER BY id DESC LIMIT 1), 1, 0, 52, 55, 2, 0 ),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 1 AND proficiency_id = 2), (SELECT id FROM spells_new WHERE name = 'Berate' ORDER BY id DESC LIMIT 1), 1, 0, 56, 62, 2, 0 ),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 1 AND proficiency_id = 2), (SELECT id FROM spells_new WHERE name = 'Mercenary Area Taunt' ORDER BY id DESC LIMIT 1), 1, 0, 59, 255, 1, 0 ),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 1 AND proficiency_id = 2), (SELECT id FROM spells_new WHERE name = 'Incite' ORDER BY id DESC LIMIT 1), 1, 0, 63, 64, 2, 0 ),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 1 AND proficiency_id = 2), (SELECT id FROM spells_new WHERE name = 'Ancient: Chaos Cry' ORDER BY id DESC LIMIT 1), 1, 0, 65, 69, 2, 0 ),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 1 AND proficiency_id = 2), (SELECT id FROM spells_new WHERE name = 'Bazu Bellow' ORDER BY id DESC LIMIT 1), 1, 0, 69, 80, 3, 0 ),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 1 AND proficiency_id = 2), (SELECT id FROM spells_new WHERE name = 'Mock' ORDER BY id DESC LIMIT 1), 1, 0, 70, 74, 2, 0 ),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 1 AND proficiency_id = 2), (SELECT id FROM spells_new WHERE name = 'Scowl Rk. II' ORDER BY id DESC LIMIT 1), 1, 0, 75, 79, 2, 0 ),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 1 AND proficiency_id = 2), (SELECT id FROM spells_new WHERE name = 'Sneer Rk. II' ORDER BY id DESC LIMIT 1), 1, 0, 80, 84, 2, 0 ),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 1 AND proficiency_id = 2), (SELECT id FROM spells_new WHERE name = 'Bazu Bluster Rk. II' ORDER BY id DESC LIMIT 1), 1, 0, 81, 85, 3, 0 ),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 1 AND proficiency_id = 2), (SELECT id FROM spells_new WHERE name = 'Jeer Rk. II' ORDER BY id DESC LIMIT 1), 1, 0, 85, 89, 2, 0 );
|
|
|
|
|
|
REPLACE INTO merc_spell_list_entries (merc_spell_list_id, spell_id, spell_type, stance_id, minlevel, maxlevel, slot, procChance) VALUES
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 1), (SELECT id FROM spells_new WHERE name = 'Minor Healing' ORDER BY id DESC LIMIT 1), 2, 0, 1, 3, 1, 0 ),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 1), (SELECT id FROM spells_new WHERE name = 'Courage' ORDER BY id DESC LIMIT 1), 8, 0, 1, 6, 1, 0 ),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 1), (SELECT id FROM spells_new WHERE name = 'Cure Poison' ORDER BY id DESC LIMIT 1), 32768, 0, 1, 21, 2, 0),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 1), (SELECT id FROM spells_new WHERE name = 'Light Healing' ORDER BY id DESC LIMIT 1), 2, 0, 4, 9, 1, 0 ),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 1), (SELECT id FROM spells_new WHERE name = 'Cure Disease' ORDER BY id DESC LIMIT 1), 32768, 0, 4, 27, 2, 0),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 1), (SELECT id FROM spells_new WHERE name = 'Center' ORDER BY id DESC LIMIT 1), 8, 0, 7, 21, 1, 0 ),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 1), (SELECT id FROM spells_new WHERE name = 'Remove Minor Curse' ORDER BY id DESC LIMIT 1), 32768, 0, 8, 22, 2, 0),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 1), (SELECT id FROM spells_new WHERE name = 'Healing' ORDER BY id DESC LIMIT 1), 2, 0, 10, 19, 2, 0 ),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 1), (SELECT id FROM spells_new WHERE name = 'Symbol of Transal' ORDER BY id DESC LIMIT 1), 8, 0, 11, 20, 2, 0 ),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 1), (SELECT id FROM spells_new WHERE name = 'Reanimation' ORDER BY id DESC LIMIT 1), 65536, 0, 12, 17, 1, 0),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 1), (SELECT id FROM spells_new WHERE name = 'Blessing of Piety' ORDER BY id DESC LIMIT 1), 8, 0, 15, 34, 3, 0 ),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 1), (SELECT id FROM spells_new WHERE name = 'Daring' ORDER BY id DESC LIMIT 1), 8, 0, 17, 20, 1, 0 ),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 1), (SELECT id FROM spells_new WHERE name = 'Reconstitution' ORDER BY id DESC LIMIT 1), 65536, 0, 18, 21, 1, 0),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 1), (SELECT id FROM spells_new WHERE name = 'Celestial Remedy' ORDER BY id DESC LIMIT 1), 2, 0, 19, 28, 1, 0 ),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 1), (SELECT id FROM spells_new WHERE name = 'Greater Healing' ORDER BY id DESC LIMIT 1), 2, 0, 20, 29, 2, 0 ),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 1), (SELECT id FROM spells_new WHERE name = 'Ward of Vie' ORDER BY id DESC LIMIT 1), 8, 0, 20, 39, 4, 0 ),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 1), (SELECT id FROM spells_new WHERE name = 'Symbol of Ryltan' ORDER BY id DESC LIMIT 1), 8, 0, 21, 30, 2, 0 ),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 1), (SELECT id FROM spells_new WHERE name = 'Bravery' ORDER BY id DESC LIMIT 1), 8, 0, 22, 31, 1, 0 ),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 1), (SELECT id FROM spells_new WHERE name = 'Counteract Poison' ORDER BY id DESC LIMIT 1), 32768, 0, 22, 47, 2, 0),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 1), (SELECT id FROM spells_new WHERE name = 'Reparation' ORDER BY id DESC LIMIT 1), 65536, 0, 22, 26, 1, 0),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 1), (SELECT id FROM spells_new WHERE name = 'Remove Lesser Curse' ORDER BY id DESC LIMIT 1), 32768, 0, 23, 37, 2, 0),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 1), (SELECT id FROM spells_new WHERE name = 'Revive' ORDER BY id DESC LIMIT 1), 65536, 0, 27, 31, 1, 0),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 1), (SELECT id FROM spells_new WHERE name = 'Counteract Disease' ORDER BY id DESC LIMIT 1), 32768, 0, 28, 50, 2, 0),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 1), (SELECT id FROM spells_new WHERE name = 'Celestial Health' ORDER BY id DESC LIMIT 1), 2, 0, 29, 43, 1, 0 ),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 1), (SELECT id FROM spells_new WHERE name = 'Word of Health' ORDER BY id DESC LIMIT 1), 2, 0, 30, 44, 2, 0 ),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 1), (SELECT id FROM spells_new WHERE name = 'Superior Healing' ORDER BY id DESC LIMIT 1), 2, 0, 30, 52, 2, 0 ),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 1), (SELECT id FROM spells_new WHERE name = 'Symbol of Pinzarn' ORDER BY id DESC LIMIT 1), 8, 0, 31, 40, 2, 0 ),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 1), (SELECT id FROM spells_new WHERE name = 'Valor' ORDER BY id DESC LIMIT 1), 8, 0, 32, 39, 1, 0 ),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 1), (SELECT id FROM spells_new WHERE name = 'Renewal' ORDER BY id DESC LIMIT 1), 65536, 0, 32, 36, 1, 0),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 1), (SELECT id FROM spells_new WHERE name = 'Blessing of Faith' ORDER BY id DESC LIMIT 1), 8, 0, 35, 61, 3, 0 ),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 1), (SELECT id FROM spells_new WHERE name = 'Resuscitate' ORDER BY id DESC LIMIT 1), 65536, 0, 37, 41, 1, 0),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 1), (SELECT id FROM spells_new WHERE name = 'Remove Curse' ORDER BY id DESC LIMIT 1), 32768, 0, 38, 53, 2, 0),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 1), (SELECT id FROM spells_new WHERE name = 'Complete Healing' ORDER BY id DESC LIMIT 1), 2, 0, 39, 75, 2, 0 ),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 1), (SELECT id FROM spells_new WHERE name = 'Temperance' ORDER BY id DESC LIMIT 1), 8, 0, 40, 59, 1, 0 ),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 1), (SELECT id FROM spells_new WHERE name = 'Guard of Vie' ORDER BY id DESC LIMIT 1), 8, 0, 40, 53, 4, 0 ),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 1), (SELECT id FROM spells_new WHERE name = 'Symbol of Naltron' ORDER BY id DESC LIMIT 1), 8, 0, 41, 53, 2, 0 ),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 1), (SELECT id FROM spells_new WHERE name = 'Restoration' ORDER BY id DESC LIMIT 1), 65536, 0, 42, 46, 1, 0),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 1), (SELECT id FROM spells_new WHERE name = 'Celestial Healing' ORDER BY id DESC LIMIT 1), 2, 0, 44, 58, 1, 0 ),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 1), (SELECT id FROM spells_new WHERE name = 'Word of Healing' ORDER BY id DESC LIMIT 1), 2, 0, 45, 51, 2, 0 ),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 1), (SELECT id FROM spells_new WHERE name = 'Blessing of Temperance' ORDER BY id DESC LIMIT 1), 8, 0, 45, 59, 1, 0 ),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 1), (SELECT id FROM spells_new WHERE name = 'Resurrection' ORDER BY id DESC LIMIT 1), 65536, 0, 47, 255, 1, 0),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 1), (SELECT id FROM spells_new WHERE name = 'Abolish Poison' ORDER BY id DESC LIMIT 1), 32768, 0, 48, 57, 2, 0),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 1), (SELECT id FROM spells_new WHERE name = 'Remedy' ORDER BY id DESC LIMIT 1), 2, 0, 51, 58, 2, 0 ),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 1), (SELECT id FROM spells_new WHERE name = 'Pure Blood' ORDER BY id DESC LIMIT 1), 32768, 0, 51, 83, 3, 0),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 1), (SELECT id FROM spells_new WHERE name = 'Word of Vigor' ORDER BY id DESC LIMIT 1), 2, 0, 52, 56, 2, 0 ),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 1), (SELECT id FROM spells_new WHERE name = 'Divine Light' ORDER BY id DESC LIMIT 1), 2, 0, 53, 57, 2, 0 ),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 1), (SELECT id FROM spells_new WHERE name = 'Symbol of Marzin' ORDER BY id DESC LIMIT 1), 8, 0, 54, 60, 2, 0 ),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 1), (SELECT id FROM spells_new WHERE name = 'Protection of Vie' ORDER BY id DESC LIMIT 1), 8, 0, 54, 61, 4, 0 ),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 1), (SELECT id FROM spells_new WHERE name = 'Remove Greater Curse' ORDER BY id DESC LIMIT 1), 32768, 0, 54, 93, 2, 0),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 1), (SELECT id FROM spells_new WHERE name = 'Word of Restoration' ORDER BY id DESC LIMIT 1), 2, 0, 57, 63, 2, 0 ),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 1), (SELECT id FROM spells_new WHERE name = 'Naltron\'s Mark' ORDER BY id DESC LIMIT 1), 8, 0, 58, 59, 6, 0 ),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 1), (SELECT id FROM spells_new WHERE name = 'Ethereal Light' ORDER BY id DESC LIMIT 1), 2, 0, 58, 62, 2, 0 ),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 1), (SELECT id FROM spells_new WHERE name = 'Antidote' ORDER BY id DESC LIMIT 1), 32768, 0, 58, 83, 2, 0),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 1), (SELECT id FROM spells_new WHERE name = 'Celestial Elixir' ORDER BY id DESC LIMIT 1), 2, 0, 59, 61, 1, 0 ),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 1), (SELECT id FROM spells_new WHERE name = 'Ethereal Remedy' ORDER BY id DESC LIMIT 1), 8, 0, 59, 60, 6, 0 ),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 1), (SELECT id FROM spells_new WHERE name = 'Marzin\'s Mark' ORDER BY id DESC LIMIT 1), 8, 0, 60, 62, 6, 0 ),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 1), (SELECT id FROM spells_new WHERE name = 'Aegolism' ORDER BY id DESC LIMIT 1), 8, 0, 60, 61, 1, 0 ),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 1), (SELECT id FROM spells_new WHERE name = 'Blessing of Aegolism' ORDER BY id DESC LIMIT 1), 8, 0, 60, 61, 1, 0 ),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 1), (SELECT id FROM spells_new WHERE name = 'Ancient: Gift of Aegolism' ORDER BY id DESC LIMIT 1), 8, 0, 60, 61, 1, 0 ),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 1), (SELECT id FROM spells_new WHERE name = 'Ethereal Elixir' ORDER BY id DESC LIMIT 1), 2, 0, 60, 64, 1, 0 ),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 1), (SELECT id FROM spells_new WHERE name = 'Word of Redemption' ORDER BY id DESC LIMIT 1), 2, 0, 60, 75, 2, 0 ),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 1), (SELECT id FROM spells_new WHERE name = 'Supernal Remedy' ORDER BY id DESC LIMIT 1), 2, 0, 61, 65, 2, 0 ),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 1), (SELECT id FROM spells_new WHERE name = 'Symbol of Kazad' ORDER BY id DESC LIMIT 1), 2, 0, 61, 65, 2, 0 ),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 1), (SELECT id FROM spells_new WHERE name = 'Supernal Elixir' ORDER BY id DESC LIMIT 1), 2, 0, 62, 64, 1, 0 ),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 1), (SELECT id FROM spells_new WHERE name = 'Virtue' ORDER BY id DESC LIMIT 1), 8, 0, 62, 66, 1, 0 ),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 1), (SELECT id FROM spells_new WHERE name = 'Blessing of Reverence' ORDER BY id DESC LIMIT 1), 8, 0, 62, 66, 3, 0 ),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 1), (SELECT id FROM spells_new WHERE name = 'Bulwark of Vie' ORDER BY id DESC LIMIT 1), 8, 0, 62, 66, 4, 0 ),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 1), (SELECT id FROM spells_new WHERE name = 'Kazad`s Mark' ORDER BY id DESC LIMIT 1), 2, 0, 63, 69, 1, 0 ),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 1), (SELECT id FROM spells_new WHERE name = 'Supernal Light' ORDER BY id DESC LIMIT 1), 2, 0, 63, 64, 2, 0 ),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 1), (SELECT id FROM spells_new WHERE name = 'Word of Replenishment' ORDER BY id DESC LIMIT 1), 2, 0, 64, 68, 2, 0 ),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 1), (SELECT id FROM spells_new WHERE name = 'Aura of Reverence' ORDER BY id DESC LIMIT 1), 8, 0, 64, 66, 3, 0 ),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 1), (SELECT id FROM spells_new WHERE name = 'Hand of Virtue' ORDER BY id DESC LIMIT 1), 8, 0, 65, 66, 1, 0 ),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 1), (SELECT id FROM spells_new WHERE name = 'Holy Elixir' ORDER BY id DESC LIMIT 1), 2, 0, 65, 66, 1, 0 ),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 1), (SELECT id FROM spells_new WHERE name = 'Holy Light' ORDER BY id DESC LIMIT 1), 2, 0, 65, 67, 2, 0 ),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 1), (SELECT id FROM spells_new WHERE name = 'Symbol of Balikor' ORDER BY id DESC LIMIT 1), 2, 0, 66, 71, 2, 0 ),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 1), (SELECT id FROM spells_new WHERE name = 'Pious Remedy' ORDER BY id DESC LIMIT 1), 2, 0, 66, 255, 2, 0 ),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 1), (SELECT id FROM spells_new WHERE name = 'Conviction' ORDER BY id DESC LIMIT 1), 8, 0, 67, 71, 1, 0 ),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 1), (SELECT id FROM spells_new WHERE name = 'Pious Elixir' ORDER BY id DESC LIMIT 1), 2, 0, 67, 255, 1, 0 ),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 1), (SELECT id FROM spells_new WHERE name = 'Blessing of Devotion' ORDER BY id DESC LIMIT 1), 8, 0, 67, 70, 3, 0 ),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 1), (SELECT id FROM spells_new WHERE name = 'Panoply of Vie' ORDER BY id DESC LIMIT 1), 8, 0, 67, 72, 4, 0 ),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 1), (SELECT id FROM spells_new WHERE name = 'Pious Light' ORDER BY id DESC LIMIT 1), 2, 0, 68, 72, 2, 0 ),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 1), (SELECT id FROM spells_new WHERE name = 'Aura of Devotion' ORDER BY id DESC LIMIT 1), 8, 0, 69, 255, 7, 0 ),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 1), (SELECT id FROM spells_new WHERE name = 'Word of Vivification' ORDER BY id DESC LIMIT 1), 2, 0, 69, 79, 2, 0 ),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 1), (SELECT id FROM spells_new WHERE name = 'Hand of Conviction' ORDER BY id DESC LIMIT 1), 8, 0, 70, 71, 1, 0 ),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 1), (SELECT id FROM spells_new WHERE name = 'Balikor\'s Mark' ORDER BY id DESC LIMIT 1), 8, 0, 70, 74, 1, 0 ),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 1), (SELECT id FROM spells_new WHERE name = 'Elixir of Divinity' ORDER BY id DESC LIMIT 1), 2, 0, 70, 74, 1, 0 ),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 1), (SELECT id FROM spells_new WHERE name = 'Symbol of Elushar' ORDER BY id DESC LIMIT 1), 8, 0, 71, 75, 2, 0),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 1), (SELECT id FROM spells_new WHERE name = 'Sacred Remedy' ORDER BY id DESC LIMIT 1), 2, 0, 71, 75, 2, 0),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 1), (SELECT id FROM spells_new WHERE name = 'Blessing of Purpose' ORDER BY id DESC LIMIT 1), 8, 0, 71, 0, 3, 0),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 1), (SELECT id FROM spells_new WHERE name = 'Tenacity' ORDER BY id DESC LIMIT 1), 8, 0, 72, 76, 1, 0),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 1), (SELECT id FROM spells_new WHERE name = 'Sacred Elixir' ORDER BY id DESC LIMIT 1), 2, 0, 72, 76, 1, 0),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 1), (SELECT id FROM spells_new WHERE name = 'Aura of Purpose' ORDER BY id DESC LIMIT 1), 8, 0, 72, 75, 3, 0),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 1), (SELECT id FROM spells_new WHERE name = 'Sacred Light' ORDER BY id DESC LIMIT 1), 2, 0, 73, 77, 2, 0),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 1), (SELECT id FROM spells_new WHERE name = 'Promised Renewal' ORDER BY id DESC LIMIT 1), 2, 0, 73, 77, 2, 0),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 1), (SELECT id FROM spells_new WHERE name = 'Aegis of Vie' ORDER BY id DESC LIMIT 1), 8, 0, 73, 77, 4, 0),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 1), (SELECT id FROM spells_new WHERE name = 'Expunge Corruption' ORDER BY id DESC LIMIT 1), 32768, 0, 74, 78, 2, 0),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 1), (SELECT id FROM spells_new WHERE name = 'Hand of Tenacity' ORDER BY id DESC LIMIT 1), 8, 0, 75, 76, 1, 0),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 1), (SELECT id FROM spells_new WHERE name = 'Elushar\'s Mark' ORDER BY id DESC LIMIT 1), 8, 0, 75, 79, 2, 0),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 1), (SELECT id FROM spells_new WHERE name = 'Elixir of Redemption' ORDER BY id DESC LIMIT 1), 2, 0, 75, 79, 1, 0),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 1), (SELECT id FROM spells_new WHERE name = 'Rallied Aegis of Vie' ORDER BY id DESC LIMIT 1), 8, 0, 75, 77, 4, 0),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 1), (SELECT id FROM spells_new WHERE name = 'Solemn Remedy' ORDER BY id DESC LIMIT 1), 2, 0, 76, 80, 2, 0),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 1), (SELECT id FROM spells_new WHERE name = 'Symbol of Kaerra' ORDER BY id DESC LIMIT 1), 8, 0, 76, 80, 2, 0),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 1), (SELECT id FROM spells_new WHERE name = 'Blessing of Resolve' ORDER BY id DESC LIMIT 1), 8, 0, 76, 80, 3, 0),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 1), (SELECT id FROM spells_new WHERE name = 'Temerity' ORDER BY id DESC LIMIT 1), 8, 0, 77, 81, 1, 0),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 1), (SELECT id FROM spells_new WHERE name = 'Solemn Elixir' ORDER BY id DESC LIMIT 1), 2, 0, 77, 81, 1, 0),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 1), (SELECT id FROM spells_new WHERE name = 'Eleventh-Hour' ORDER BY id DESC LIMIT 1), 2, 0, 77, 81, 2, 0),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 1), (SELECT id FROM spells_new WHERE name = 'Aura of Resolve' ORDER BY id DESC LIMIT 1), 8, 0, 77, 80, 3, 0),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 1), (SELECT id FROM spells_new WHERE name = 'Solemn Light' ORDER BY id DESC LIMIT 1), 2, 0, 78, 82, 2, 0),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 1), (SELECT id FROM spells_new WHERE name = 'Promised Restoration' ORDER BY id DESC LIMIT 1), 2, 0, 78, 82, 2, 0),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 1), (SELECT id FROM spells_new WHERE name = 'Shield of Vie' ORDER BY id DESC LIMIT 1), 8, 0, 78, 82, 4, 0),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 1), (SELECT id FROM spells_new WHERE name = 'Vitiate Corruption' ORDER BY id DESC LIMIT 1), 32768, 0, 79, 83, 2, 0),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 1), (SELECT id FROM spells_new WHERE name = 'Hand of Temerity' ORDER BY id DESC LIMIT 1), 8, 0, 80, 81, 1, 0),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 1), (SELECT id FROM spells_new WHERE name = 'Kaerra\'s Mark' ORDER BY id DESC LIMIT 1), 8, 0, 80, 84, 2, 0),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 1), (SELECT id FROM spells_new WHERE name = 'Elixir of Atonement' ORDER BY id DESC LIMIT 1), 2, 0, 80, 84, 1, 0),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 1), (SELECT id FROM spells_new WHERE name = 'Frantic Renewal' ORDER BY id DESC LIMIT 1), 2, 0, 80, 84, 2, 0),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 1), (SELECT id FROM spells_new WHERE name = 'Rallied Shield of Vie' ORDER BY id DESC LIMIT 1), 8, 0, 80, 82, 4, 0),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 1), (SELECT id FROM spells_new WHERE name = 'Symbol of Darianna' ORDER BY id DESC LIMIT 1), 8, 0, 81, 85, 2, 0),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 1), (SELECT id FROM spells_new WHERE name = 'Devout Remedy' ORDER BY id DESC LIMIT 1), 2, 0, 81, 85, 2, 0),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 1), (SELECT id FROM spells_new WHERE name = 'Blessing of Loyalty' ORDER BY id DESC LIMIT 1), 8, 0, 81, 85, 3, 0),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 1), (SELECT id FROM spells_new WHERE name = 'Gallantry' ORDER BY id DESC LIMIT 1), 8, 0, 82, 86, 1, 0),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 1), (SELECT id FROM spells_new WHERE name = 'Devout Elixir' ORDER BY id DESC LIMIT 1), 2, 0, 82, 86, 1, 0),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 1), (SELECT id FROM spells_new WHERE name = 'Twelfth Night' ORDER BY id DESC LIMIT 1), 2, 0, 82, 86, 2, 0),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 1), (SELECT id FROM spells_new WHERE name = 'Aura of Loyalty' ORDER BY id DESC LIMIT 1), 8, 0, 82, 85, 3, 0),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 1), (SELECT id FROM spells_new WHERE name = 'Devout Light' ORDER BY id DESC LIMIT 1), 2, 0, 83, 87, 2, 0),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 1), (SELECT id FROM spells_new WHERE name = 'Promised Recuperation' ORDER BY id DESC LIMIT 1), 2, 0, 83, 87, 2, 0),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 1), (SELECT id FROM spells_new WHERE name = 'Palladium of Vie' ORDER BY id DESC LIMIT 1), 8, 0, 83, 87, 4, 0),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 1), (SELECT id FROM spells_new WHERE name = 'Abolish Corruption' ORDER BY id DESC LIMIT 1), 32768, 0, 84, 86, 2, 0),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 1), (SELECT id FROM spells_new WHERE name = 'Purified Blood' ORDER BY id DESC LIMIT 1), 32768, 0, 84, 88, 2, 0),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 1), (SELECT id FROM spells_new WHERE name = 'Hand of Gallantry' ORDER BY id DESC LIMIT 1), 8, 0, 85, 86, 1, 0),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 1), (SELECT id FROM spells_new WHERE name = 'Darianna\'s Mark' ORDER BY id DESC LIMIT 1), 8, 0, 85, 89, 2, 0),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 1), (SELECT id FROM spells_new WHERE name = 'Frenetic Renewal' ORDER BY id DESC LIMIT 1), 2, 0, 85, 89, 2, 0),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 1), (SELECT id FROM spells_new WHERE name = 'Rallied Palladium of Vie' ORDER BY id DESC LIMIT 1), 8, 0, 85, 87, 4, 0);
|
|
|
|
|
|
REPLACE INTO merc_spell_list_entries (merc_spell_list_id, spell_id, spell_type, stance_id, minlevel, maxlevel, slot, procChance) VALUES
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 2), (SELECT id FROM spells_new WHERE name = 'Minor Healing' ORDER BY id DESC LIMIT 1), 2, 0, 1, 3, 1, 0 ),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 2), (SELECT id FROM spells_new WHERE name = 'Courage' ORDER BY id DESC LIMIT 1), 8, 0, 1, 6, 1, 0 ),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 2), (SELECT id FROM spells_new WHERE name = 'Cure Poison' ORDER BY id DESC LIMIT 1), 32768, 0, 1, 21, 2, 0),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 2), (SELECT id FROM spells_new WHERE name = 'Light Healing' ORDER BY id DESC LIMIT 1), 2, 0, 4, 9, 1, 0 ),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 2), (SELECT id FROM spells_new WHERE name = 'Cure Disease' ORDER BY id DESC LIMIT 1), 32768, 0, 4, 27, 2, 0),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 2), (SELECT id FROM spells_new WHERE name = 'Center' ORDER BY id DESC LIMIT 1), 8, 0, 7, 21, 1, 0 ),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 2), (SELECT id FROM spells_new WHERE name = 'Remove Minor Curse' ORDER BY id DESC LIMIT 1), 32768, 0, 8, 22, 2, 0),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 2), (SELECT id FROM spells_new WHERE name = 'Healing' ORDER BY id DESC LIMIT 1), 2, 0, 10, 19, 2, 0 ),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 2), (SELECT id FROM spells_new WHERE name = 'Symbol of Transal' ORDER BY id DESC LIMIT 1), 8, 0, 11, 20, 2, 0 ),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 2), (SELECT id FROM spells_new WHERE name = 'Reanimation' ORDER BY id DESC LIMIT 1), 65536, 0, 12, 17, 1, 0),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 2), (SELECT id FROM spells_new WHERE name = 'Blessing of Piety' ORDER BY id DESC LIMIT 1), 8, 0, 15, 34, 3, 0 ),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 2), (SELECT id FROM spells_new WHERE name = 'Daring' ORDER BY id DESC LIMIT 1), 8, 0, 17, 20, 1, 0 ),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 2), (SELECT id FROM spells_new WHERE name = 'Reconstitution' ORDER BY id DESC LIMIT 1), 65536, 0, 18, 21, 1, 0),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 2), (SELECT id FROM spells_new WHERE name = 'Celestial Remedy' ORDER BY id DESC LIMIT 1), 2, 0, 19, 28, 1, 0 ),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 2), (SELECT id FROM spells_new WHERE name = 'Greater Healing' ORDER BY id DESC LIMIT 1), 2, 0, 20, 29, 2, 0 ),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 2), (SELECT id FROM spells_new WHERE name = 'Ward of Vie' ORDER BY id DESC LIMIT 1), 8, 0, 20, 39, 4, 0 ),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 2), (SELECT id FROM spells_new WHERE name = 'Symbol of Ryltan' ORDER BY id DESC LIMIT 1), 8, 0, 21, 30, 2, 0 ),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 2), (SELECT id FROM spells_new WHERE name = 'Bravery' ORDER BY id DESC LIMIT 1), 8, 0, 22, 31, 1, 0 ),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 2), (SELECT id FROM spells_new WHERE name = 'Counteract Poison' ORDER BY id DESC LIMIT 1), 32768, 0, 22, 47, 2, 0),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 2), (SELECT id FROM spells_new WHERE name = 'Reparation' ORDER BY id DESC LIMIT 1), 65536, 0, 22, 26, 1, 0),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 2), (SELECT id FROM spells_new WHERE name = 'Remove Lesser Curse' ORDER BY id DESC LIMIT 1), 32768, 0, 23, 37, 2, 0),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 2), (SELECT id FROM spells_new WHERE name = 'Revive' ORDER BY id DESC LIMIT 1), 65536, 0, 27, 31, 1, 0),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 2), (SELECT id FROM spells_new WHERE name = 'Counteract Disease' ORDER BY id DESC LIMIT 1), 32768, 0, 28, 50, 2, 0),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 2), (SELECT id FROM spells_new WHERE name = 'Celestial Health' ORDER BY id DESC LIMIT 1), 2, 0, 29, 43, 1, 0 ),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 2), (SELECT id FROM spells_new WHERE name = 'Word of Health' ORDER BY id DESC LIMIT 1), 2, 0, 30, 44, 2, 0 ),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 2), (SELECT id FROM spells_new WHERE name = 'Superior Healing' ORDER BY id DESC LIMIT 1), 2, 0, 30, 52, 2, 0 ),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 2), (SELECT id FROM spells_new WHERE name = 'Symbol of Pinzarn' ORDER BY id DESC LIMIT 1), 8, 0, 31, 40, 2, 0 ),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 2), (SELECT id FROM spells_new WHERE name = 'Valor' ORDER BY id DESC LIMIT 1), 8, 0, 32, 39, 1, 0 ),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 2), (SELECT id FROM spells_new WHERE name = 'Renewal' ORDER BY id DESC LIMIT 1), 65536, 0, 32, 36, 1, 0),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 2), (SELECT id FROM spells_new WHERE name = 'Blessing of Faith' ORDER BY id DESC LIMIT 1), 8, 0, 35, 61, 3, 0 ),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 2), (SELECT id FROM spells_new WHERE name = 'Resuscitate' ORDER BY id DESC LIMIT 1), 65536, 0, 37, 41, 1, 0),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 2), (SELECT id FROM spells_new WHERE name = 'Remove Curse' ORDER BY id DESC LIMIT 1), 32768, 0, 38, 53, 2, 0),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 2), (SELECT id FROM spells_new WHERE name = 'Complete Healing' ORDER BY id DESC LIMIT 1), 2, 0, 39, 75, 2, 0 ),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 2), (SELECT id FROM spells_new WHERE name = 'Temperance' ORDER BY id DESC LIMIT 1), 8, 0, 40, 59, 1, 0 ),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 2), (SELECT id FROM spells_new WHERE name = 'Guard of Vie' ORDER BY id DESC LIMIT 1), 8, 0, 40, 53, 4, 0 ),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 2), (SELECT id FROM spells_new WHERE name = 'Symbol of Naltron' ORDER BY id DESC LIMIT 1), 8, 0, 41, 53, 2, 0 ),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 2), (SELECT id FROM spells_new WHERE name = 'Restoration' ORDER BY id DESC LIMIT 1), 65536, 0, 42, 46, 1, 0),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 2), (SELECT id FROM spells_new WHERE name = 'Celestial Healing' ORDER BY id DESC LIMIT 1), 2, 0, 44, 58, 1, 0 ),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 2), (SELECT id FROM spells_new WHERE name = 'Word of Healing' ORDER BY id DESC LIMIT 1), 2, 0, 45, 51, 2, 0 ),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 2), (SELECT id FROM spells_new WHERE name = 'Blessing of Temperance' ORDER BY id DESC LIMIT 1), 8, 0, 45, 59, 1, 0 ),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 2), (SELECT id FROM spells_new WHERE name = 'Resurrection' ORDER BY id DESC LIMIT 1), 65536, 0, 47, 55, 1, 0),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 2), (SELECT id FROM spells_new WHERE name = 'Abolish Poison' ORDER BY id DESC LIMIT 1), 32768, 0, 48, 57, 2, 0),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 2), (SELECT id FROM spells_new WHERE name = 'Remedy' ORDER BY id DESC LIMIT 1), 2, 0, 51, 58, 2, 0 ),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 2), (SELECT id FROM spells_new WHERE name = 'Pure Blood' ORDER BY id DESC LIMIT 1), 32768, 0, 51, 83, 3, 0),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 2), (SELECT id FROM spells_new WHERE name = 'Word of Vigor' ORDER BY id DESC LIMIT 1), 2, 0, 52, 56, 2, 0 ),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 2), (SELECT id FROM spells_new WHERE name = 'Divine Light' ORDER BY id DESC LIMIT 1), 2, 0, 53, 57, 2, 0 ),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 2), (SELECT id FROM spells_new WHERE name = 'Symbol of Marzin' ORDER BY id DESC LIMIT 1), 8, 0, 54, 60, 2, 0 ),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 2), (SELECT id FROM spells_new WHERE name = 'Protection of Vie' ORDER BY id DESC LIMIT 1), 8, 0, 54, 61, 4, 0 ),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 2), (SELECT id FROM spells_new WHERE name = 'Remove Greater Curse' ORDER BY id DESC LIMIT 1), 32768, 0, 54, 93, 2, 0),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 2), (SELECT id FROM spells_new WHERE name = 'Reviviscence' ORDER BY id DESC LIMIT 1), 65536, 0, 56, 255, 1, 0),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 2), (SELECT id FROM spells_new WHERE name = 'Word of Restoration' ORDER BY id DESC LIMIT 1), 2, 0, 57, 63, 2, 0 ),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 2), (SELECT id FROM spells_new WHERE name = 'Naltron\'s Mark' ORDER BY id DESC LIMIT 1), 8, 0, 58, 59, 6, 0 ),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 2), (SELECT id FROM spells_new WHERE name = 'Ethereal Light' ORDER BY id DESC LIMIT 1), 2, 0, 58, 62, 2, 0 ),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 2), (SELECT id FROM spells_new WHERE name = 'Antidote' ORDER BY id DESC LIMIT 1), 32768, 0, 58, 83, 2, 0),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 2), (SELECT id FROM spells_new WHERE name = 'Celestial Elixir' ORDER BY id DESC LIMIT 1), 2, 0, 59, 61, 1, 0 ),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 2), (SELECT id FROM spells_new WHERE name = 'Ethereal Remedy' ORDER BY id DESC LIMIT 1), 8, 0, 59, 60, 6, 0 ),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 2), (SELECT id FROM spells_new WHERE name = 'Marzin\'s Mark' ORDER BY id DESC LIMIT 1), 8, 0, 60, 62, 6, 0 ),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 2), (SELECT id FROM spells_new WHERE name = 'Aegolism' ORDER BY id DESC LIMIT 1), 8, 0, 60, 61, 1, 0 ),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 2), (SELECT id FROM spells_new WHERE name = 'Blessing of Aegolism' ORDER BY id DESC LIMIT 1), 8, 0, 60, 61, 1, 0 ),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 2), (SELECT id FROM spells_new WHERE name = 'Ancient: Gift of Aegolism' ORDER BY id DESC LIMIT 1), 8, 0, 60, 61, 1, 0 ),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 2), (SELECT id FROM spells_new WHERE name = 'Ethereal Elixir' ORDER BY id DESC LIMIT 1), 2, 0, 60, 64, 1, 0 ),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 2), (SELECT id FROM spells_new WHERE name = 'Word of Redemption' ORDER BY id DESC LIMIT 1), 2, 0, 60, 75, 2, 0 ),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 2), (SELECT id FROM spells_new WHERE name = 'Supernal Remedy' ORDER BY id DESC LIMIT 1), 2, 0, 61, 65, 2, 0 ),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 2), (SELECT id FROM spells_new WHERE name = 'Symbol of Kazad' ORDER BY id DESC LIMIT 1), 2, 0, 61, 65, 2, 0 ),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 2), (SELECT id FROM spells_new WHERE name = 'Supernal Elixir' ORDER BY id DESC LIMIT 1), 2, 0, 62, 64, 1, 0 ),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 2), (SELECT id FROM spells_new WHERE name = 'Virtue' ORDER BY id DESC LIMIT 1), 8, 0, 62, 66, 1, 0 ),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 2), (SELECT id FROM spells_new WHERE name = 'Blessing of Reverence' ORDER BY id DESC LIMIT 1), 8, 0, 62, 66, 3, 0 ),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 2), (SELECT id FROM spells_new WHERE name = 'Bulwark of Vie' ORDER BY id DESC LIMIT 1), 8, 0, 62, 66, 4, 0 ),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 2), (SELECT id FROM spells_new WHERE name = 'Kazad`s Mark' ORDER BY id DESC LIMIT 1), 2, 0, 63, 69, 1, 0 ),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 2), (SELECT id FROM spells_new WHERE name = 'Supernal Light' ORDER BY id DESC LIMIT 1), 2, 0, 63, 64, 2, 0 ),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 2), (SELECT id FROM spells_new WHERE name = 'Word of Replenishment' ORDER BY id DESC LIMIT 1), 2, 0, 64, 68, 2, 0 ),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 2), (SELECT id FROM spells_new WHERE name = 'Aura of Reverence' ORDER BY id DESC LIMIT 1), 8, 0, 64, 66, 3, 0 ),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 2), (SELECT id FROM spells_new WHERE name = 'Hand of Virtue' ORDER BY id DESC LIMIT 1), 8, 0, 65, 66, 1, 0 ),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 2), (SELECT id FROM spells_new WHERE name = 'Holy Elixir' ORDER BY id DESC LIMIT 1), 2, 0, 65, 66, 1, 0 ),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 2), (SELECT id FROM spells_new WHERE name = 'Holy Light' ORDER BY id DESC LIMIT 1), 2, 0, 65, 67, 2, 0 ),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 2), (SELECT id FROM spells_new WHERE name = 'Symbol of Balikor' ORDER BY id DESC LIMIT 1), 2, 0, 66, 71, 2, 0 ),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 2), (SELECT id FROM spells_new WHERE name = 'Pious Remedy' ORDER BY id DESC LIMIT 1), 2, 0, 66, 255, 2, 0 ),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 2), (SELECT id FROM spells_new WHERE name = 'Conviction' ORDER BY id DESC LIMIT 1), 8, 0, 67, 71, 1, 0 ),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 2), (SELECT id FROM spells_new WHERE name = 'Pious Elixir' ORDER BY id DESC LIMIT 1), 2, 0, 67, 255, 1, 0 ),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 2), (SELECT id FROM spells_new WHERE name = 'Blessing of Devotion' ORDER BY id DESC LIMIT 1), 8, 0, 67, 70, 3, 0 ),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 2), (SELECT id FROM spells_new WHERE name = 'Panoply of Vie' ORDER BY id DESC LIMIT 1), 8, 0, 67, 72, 4, 0 ),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 2), (SELECT id FROM spells_new WHERE name = 'Pious Light' ORDER BY id DESC LIMIT 1), 2, 0, 68, 69, 2, 0 ),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 2), (SELECT id FROM spells_new WHERE name = 'Aura of Devotion' ORDER BY id DESC LIMIT 1), 8, 0, 69, 255, 7, 0 ),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 2), (SELECT id FROM spells_new WHERE name = 'Word of Vivification' ORDER BY id DESC LIMIT 1), 2, 0, 69, 79, 2, 0 ),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 2), (SELECT id FROM spells_new WHERE name = 'Hand of Conviction' ORDER BY id DESC LIMIT 1), 8, 0, 70, 71, 1, 0 ),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 2), (SELECT id FROM spells_new WHERE name = 'Balikor\'s Mark' ORDER BY id DESC LIMIT 1), 8, 0, 70, 74, 1, 0 ),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 2), (SELECT id FROM spells_new WHERE name = 'Elixir of Divinity' ORDER BY id DESC LIMIT 1), 2, 0, 70, 74, 1, 0 ),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 2), (SELECT id FROM spells_new WHERE name = 'Ancient: Hallowed Light' ORDER BY id DESC LIMIT 1), 2, 0, 70, 72, 2, 0),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 2), (SELECT id FROM spells_new WHERE name = 'Symbol of Elushar Rk. II' ORDER BY id DESC LIMIT 1), 8, 0, 71, 75, 2, 0),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 2), (SELECT id FROM spells_new WHERE name = 'Sacred Remedy Rk. II' ORDER BY id DESC LIMIT 1), 2, 0, 71, 75, 2, 0),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 2), (SELECT id FROM spells_new WHERE name = 'Blessing of Purpose Rk. II' ORDER BY id DESC LIMIT 1), 8, 0, 71, 0, 3, 0),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 2), (SELECT id FROM spells_new WHERE name = 'Tenacity Rk. II' ORDER BY id DESC LIMIT 1), 8, 0, 72, 76, 1, 0),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 2), (SELECT id FROM spells_new WHERE name = 'Sacred Elixir Rk. II' ORDER BY id DESC LIMIT 1), 2, 0, 72, 76, 1, 0),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 2), (SELECT id FROM spells_new WHERE name = 'Aura of Purpose Rk. II' ORDER BY id DESC LIMIT 1), 8, 0, 72, 75, 3, 0),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 2), (SELECT id FROM spells_new WHERE name = 'Sacred Light Rk. II' ORDER BY id DESC LIMIT 1), 2, 0, 73, 77, 2, 0),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 2), (SELECT id FROM spells_new WHERE name = 'Promised Renewal Rk. II' ORDER BY id DESC LIMIT 1), 2, 0, 73, 77, 2, 0),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 2), (SELECT id FROM spells_new WHERE name = 'Aegis of Vie Rk. II' ORDER BY id DESC LIMIT 1), 8, 0, 73, 77, 4, 0),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 2), (SELECT id FROM spells_new WHERE name = 'Expunge Corruption Rk. II' ORDER BY id DESC LIMIT 1), 32768, 0, 74, 78, 2, 0),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 2), (SELECT id FROM spells_new WHERE name = 'Hand of Tenacity Rk. II' ORDER BY id DESC LIMIT 1), 8, 0, 75, 76, 1, 0),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 2), (SELECT id FROM spells_new WHERE name = 'Elushar\'s Mark Rk. II' ORDER BY id DESC LIMIT 1), 8, 0, 75, 79, 2, 0),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 2), (SELECT id FROM spells_new WHERE name = 'Elixir of Redemption Rk. II' ORDER BY id DESC LIMIT 1), 2, 0, 75, 79, 1, 0),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 2), (SELECT id FROM spells_new WHERE name = 'Rallied Aegis of Vie Rk. II' ORDER BY id DESC LIMIT 1), 8, 0, 75, 77, 4, 0),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 2), (SELECT id FROM spells_new WHERE name = 'Solemn Remedy Rk. II' ORDER BY id DESC LIMIT 1), 2, 0, 76, 80, 2, 0),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 2), (SELECT id FROM spells_new WHERE name = 'Symbol of Kaerra Rk. II' ORDER BY id DESC LIMIT 1), 8, 0, 76, 80, 2, 0),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 2), (SELECT id FROM spells_new WHERE name = 'Blessing of Resolve Rk. II' ORDER BY id DESC LIMIT 1), 8, 0, 76, 80, 3, 0),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 2), (SELECT id FROM spells_new WHERE name = 'Temerity Rk. II' ORDER BY id DESC LIMIT 1), 8, 0, 77, 81, 1, 0),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 2), (SELECT id FROM spells_new WHERE name = 'Solemn Elixir Rk. II' ORDER BY id DESC LIMIT 1), 2, 0, 77, 81, 1, 0),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 2), (SELECT id FROM spells_new WHERE name = 'Eleventh-Hour Rk. II' ORDER BY id DESC LIMIT 1), 2, 0, 77, 81, 2, 0),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 2), (SELECT id FROM spells_new WHERE name = 'Aura of Resolve Rk. II' ORDER BY id DESC LIMIT 1), 8, 0, 77, 80, 3, 0),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 2), (SELECT id FROM spells_new WHERE name = 'Solemn Light Rk. II' ORDER BY id DESC LIMIT 1), 2, 0, 78, 82, 2, 0),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 2), (SELECT id FROM spells_new WHERE name = 'Promised Restoration Rk. II' ORDER BY id DESC LIMIT 1), 2, 0, 78, 82, 2, 0),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 2), (SELECT id FROM spells_new WHERE name = 'Shield of Vie Rk. II' ORDER BY id DESC LIMIT 1), 8, 0, 78, 82, 4, 0),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 2), (SELECT id FROM spells_new WHERE name = 'Vitiate Corruption Rk. II' ORDER BY id DESC LIMIT 1), 32768, 0, 79, 83, 2, 0),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 2), (SELECT id FROM spells_new WHERE name = 'Hand of Temerity Rk. II' ORDER BY id DESC LIMIT 1), 8, 0, 80, 81, 1, 0),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 2), (SELECT id FROM spells_new WHERE name = 'Kaerra\'s Mark Rk. II' ORDER BY id DESC LIMIT 1), 8, 0, 80, 84, 2, 0),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 2), (SELECT id FROM spells_new WHERE name = 'Elixir of Atonement Rk. II' ORDER BY id DESC LIMIT 1), 2, 0, 80, 84, 1, 0),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 2), (SELECT id FROM spells_new WHERE name = 'Frantic Renewal Rk. II' ORDER BY id DESC LIMIT 1), 2, 0, 80, 84, 2, 0),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 2), (SELECT id FROM spells_new WHERE name = 'Rallied Shield of Vie Rk. II' ORDER BY id DESC LIMIT 1), 8, 0, 80, 82, 4, 0),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 2), (SELECT id FROM spells_new WHERE name = 'Symbol of Darianna Rk. II' ORDER BY id DESC LIMIT 1), 8, 0, 81, 85, 2, 0),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 2), (SELECT id FROM spells_new WHERE name = 'Devout Remedy Rk. II' ORDER BY id DESC LIMIT 1), 2, 0, 81, 85, 2, 0),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 2), (SELECT id FROM spells_new WHERE name = 'Blessing of Loyalty Rk. II' ORDER BY id DESC LIMIT 1), 8, 0, 81, 85, 3, 0),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 2), (SELECT id FROM spells_new WHERE name = 'Gallantry Rk. II' ORDER BY id DESC LIMIT 1), 8, 0, 82, 86, 1, 0),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 2), (SELECT id FROM spells_new WHERE name = 'Devout Elixir Rk. II' ORDER BY id DESC LIMIT 1), 2, 0, 82, 86, 1, 0),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 2), (SELECT id FROM spells_new WHERE name = 'Twelfth Night Rk. II' ORDER BY id DESC LIMIT 1), 2, 0, 82, 86, 2, 0),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 2), (SELECT id FROM spells_new WHERE name = 'Aura of Loyalty Rk. II' ORDER BY id DESC LIMIT 1), 8, 0, 82, 85, 3, 0),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 2), (SELECT id FROM spells_new WHERE name = 'Devout Light Rk. II' ORDER BY id DESC LIMIT 1), 2, 0, 83, 87, 2, 0),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 2), (SELECT id FROM spells_new WHERE name = 'Promised Recuperation Rk. II' ORDER BY id DESC LIMIT 1), 2, 0, 83, 87, 2, 0),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 2), (SELECT id FROM spells_new WHERE name = 'Palladium of Vie Rk. II' ORDER BY id DESC LIMIT 1), 8, 0, 83, 87, 4, 0),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 2), (SELECT id FROM spells_new WHERE name = 'Abolish Corruption Rk. II' ORDER BY id DESC LIMIT 1), 32768, 0, 84, 86, 2, 0),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 2), (SELECT id FROM spells_new WHERE name = 'Purified Blood Rk. II' ORDER BY id DESC LIMIT 1), 32768, 0, 84, 88, 2, 0),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 2), (SELECT id FROM spells_new WHERE name = 'Hand of Gallantry Rk. II' ORDER BY id DESC LIMIT 1), 8, 0, 85, 86, 1, 0),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 2), (SELECT id FROM spells_new WHERE name = 'Darianna\'s Mark Rk. II' ORDER BY id DESC LIMIT 1), 8, 0, 85, 89, 2, 0),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 2), (SELECT id FROM spells_new WHERE name = 'Frenetic Renewal Rk. II' ORDER BY id DESC LIMIT 1), 2, 0, 85, 89, 2, 0),
|
|
((SELECT merc_spell_list_id FROM merc_spell_lists WHERE class_id = 2 AND proficiency_id = 2), (SELECT id FROM spells_new WHERE name = 'Rallied Palladium of Vie Rk. II' ORDER BY id DESC LIMIT 1), 8, 0, 85, 87, 4, 0);
|