mirror of
https://github.com/ZhengPeiRu21/mod-individual-progression
synced 2025-11-29 23:44:51 +08:00
Finish initial implementation
This commit is contained in:
43
sql/world/base/boss_lord_kazzak.sql
Normal file
43
sql/world/base/boss_lord_kazzak.sql
Normal file
@@ -0,0 +1,43 @@
|
||||
UPDATE `creature_template` SET `minlevel` = 63, `maxlevel` = 63,`ScriptName` = 'boss_lord_kazzak' WHERE `entry` = 12397;
|
||||
|
||||
DELETE FROM `spell_script_names` WHERE `spell_id` = 21056;
|
||||
INSERT INTO `spell_script_names` (`spell_id`, `ScriptName`) VALUES
|
||||
(21056, 'spell_mark_of_kazzak_60');
|
||||
|
||||
DELETE FROM `creature_text` WHERE `CreatureID` = 12397;
|
||||
INSERT INTO `creature_text` (`CreatureID`, `GroupID`, `ID`, `Text`, `Type`, `Language`, `Probability`, `Emote`, `Duration`, `Sound`, `BroadcastTextId`, `TextRange`, `comment`) VALUES
|
||||
(12397, 0, 0, 'I remember well the sting of defeat at the conclusion of the Third War. I have waited far too long for my revenge. Now the shadow of the Legion falls over this world. It is only a matter of time until all of your failed creation... is undone. ', 14, 0, 0, 0, 0, 11332, 20076, 0, 'kazzak SAY_INTRO'),
|
||||
(12397, 1, 0, 'The legion will conquer all!', 14, 0, 0, 0, 0, 11333, 20077, 3, 'kazzak SAY_AGGRO1'),
|
||||
(12397, 1, 1, 'All mortals will perish!', 14, 0, 0, 0, 0, 11334, 20078, 0, 'kazzak SAY_AGGRO2'),
|
||||
(12397, 2, 0, 'All life must be eradicated!', 14, 0, 0, 0, 0, 11335, 20079, 0, 'kazzak SAY_SURPREME1'),
|
||||
(12397, 2, 1, 'I\'ll rip the flesh from your bones!', 14, 0, 0, 0, 0, 11336, 20080, 0, 'kazzak SAY_SURPREME2'),
|
||||
(12397, 3, 0, 'Kirel narak!', 14, 0, 0, 0, 0, 11337, 20081, 0, 'kazzak SAY_KILL1'),
|
||||
(12397, 3, 1, 'Contemptible wretch!', 14, 0, 0, 0, 0, 11338, 20082, 0, 'kazzak SAY_KILL2'),
|
||||
(12397, 4, 0, 'The Legion... will never... fall.', 14, 0, 0, 0, 0, 11340, 20084, 0, 'kazzak SAY_DEATH'),
|
||||
(12397, 5, 0, '%s goes into a frenzy!', 16, 0, 0, 0, 0, 0, 38630, 0, 'kazzak EMOTE_FRENZY'),
|
||||
(12397, 6, 0, 'Invaders, you dangle upon the precipice of oblivion! The Burning Legion comes and with it comes your end.\n', 14, 0, 0, 0, 0, 0, 15895, 0, 'kazzak SAY_RAND1'),
|
||||
(12397, 6, 1, 'Impudent whelps, you only delay the inevitable. Where one has fallen, ten shall rise. Such is the will of Kazzak...', 14, 0, 0, 0, 0, 0, 16432, 0, 'kazzak SAY_RAND2'),
|
||||
(12397, 7, 0, 'The universe will be remade.', 14, 0, 0, 0, 0, 11339, 20083, 0, 'kazzak SAY_WIPE'),
|
||||
(12397, 8, 0, 'Kazzak is supreme!', 16, 0, 0, 0, 0, 0, 0, 0, 'kazzak SAY_SUPREME_VANILA');
|
||||
|
||||
DELETE FROM `creature` WHERE `guid` = 156950 AND `id1` = 12397;
|
||||
INSERT INTO `creature` (`guid`, `id1`, `id2`, `id3`, `map`, `position_x`, `position_y`, `position_z`, `orientation`, `wander_distance`, `spawntimesecs`) VALUES
|
||||
(156950, 12397, 0, 0, 0, -12275.6, -2524.26, 3.79202, 1.69492, 259200, 604800);
|
||||
|
||||
DELETE FROM `reference_loot_template` WHERE `Entry` = 60000;
|
||||
INSERT INTO `reference_loot_template` (`Entry`, `Item`, `Reference`, `Chance`, `QuestRequired`, `LootMode`, `GroupId`, `MinCount`, `MaxCount`, `Comment`) VALUES
|
||||
(60000, 17111, 0, 0, 0, 1, 1, 1, 1, NULL),
|
||||
(60000, 17113, 0, 0, 0, 1, 1, 1, 1, NULL),
|
||||
(60000, 18204, 0, 0, 0, 1, 1, 1, 1, NULL),
|
||||
(60000, 18543, 0, 0, 0, 1, 1, 1, 1, NULL),
|
||||
(60000, 18544, 0, 0, 0, 1, 1, 1, 1, NULL),
|
||||
(60000, 18546, 0, 0, 0, 1, 1, 1, 1, NULL),
|
||||
(60000, 19133, 0, 0, 0, 1, 1, 1, 1, NULL),
|
||||
(60000, 19134, 0, 0, 0, 1, 1, 1, 1, NULL),
|
||||
(60000, 19135, 0, 0, 0, 1, 1, 1, 1, NULL);
|
||||
|
||||
DELETE FROM `creature_loot_template` WHERE `Entry` = 12397 AND `Reference` = 60000;
|
||||
INSERT INTO `creature_loot_template` (`Entry`, `Item`, `Reference`, `Chance`, `QuestRequired`, `LootMode`, `GroupId`, `MinCount`, `MaxCount`, `Comment`) VALUES
|
||||
(12397, 1, 60000, 100, 0, 1, 1, 2, 2, NULL);
|
||||
|
||||
DELETE FROM `creature_loot_template` WHERE `Entry` = 12397 AND `Item` IN (19133, 19134, 19135, 18546, 18544, 18543, 18204, 17113, 17112, 17111);
|
||||
2
sql/world/base/cleanup.sql
Normal file
2
sql/world/base/cleanup.sql
Normal file
@@ -0,0 +1,2 @@
|
||||
DELETE FROM `game_event_creature` WHERE `guid` IN (208146, 208159, 208185, 208207, 208240, 208251, 208355, 208368, 208394, 208407);
|
||||
DELETE FROM `creature_addon` WHERE `guid` IN (29803, 133925, 133926);
|
||||
10
sql/world/base/dungeon_attunements.sql
Normal file
10
sql/world/base/dungeon_attunements.sql
Normal file
@@ -0,0 +1,10 @@
|
||||
INSERT INTO `dungeon_access_requirements` (`dungeon_access_id`, `requirement_type`, `requirement_id`, `requirement_note`, `faction`, `priority`, `leader_only`, `comment`) VALUES (15, 2, 16309, NULL, 0, NULL, 0, NULL);
|
||||
INSERT INTO `dungeon_access_requirements` (`dungeon_access_id`, `requirement_type`, `requirement_id`, `requirement_note`, `faction`, `priority`, `leader_only`, `comment`) VALUES (16, 2, 16309, NULL, 0, NULL, 0, NULL);
|
||||
INSERT INTO `dungeon_access_requirements` (`dungeon_access_id`, `requirement_type`, `requirement_id`, `requirement_note`, `faction`, `priority`, `leader_only`, `comment`) VALUES (20, 1, 8182, NULL, 2, NULL, 1, NULL);
|
||||
INSERT INTO `dungeon_access_requirements` (`dungeon_access_id`, `requirement_type`, `requirement_id`, `requirement_note`, `faction`, `priority`, `leader_only`, `comment`) VALUES (32, 1, 10445, NULL, 2, NULL, 1, NULL);
|
||||
INSERT INTO `dungeon_access_requirements` (`dungeon_access_id`, `requirement_type`, `requirement_id`, `requirement_note`, `faction`, `priority`, `leader_only`, `comment`) VALUES (46, 1, 10901, NULL, 2, NULL, 1, NULL);
|
||||
INSERT INTO `dungeon_access_requirements` (`dungeon_access_id`, `requirement_type`, `requirement_id`, `requirement_note`, `faction`, `priority`, `leader_only`, `comment`) VALUES (47, 2, 31704, NULL, 0, NULL, 0, NULL);
|
||||
INSERT INTO `dungeon_access_requirements` (`dungeon_access_id`, `requirement_type`, `requirement_id`, `requirement_note`, `faction`, `priority`, `leader_only`, `comment`) VALUES (47, 1, 10888, NULL, 2, NULL, 1, NULL);
|
||||
INSERT INTO `dungeon_access_requirements` (`dungeon_access_id`, `requirement_type`, `requirement_id`, `requirement_note`, `faction`, `priority`, `leader_only`, `comment`) VALUES (62, 1, 10277, NULL, 2, NULL, 1, NULL);
|
||||
INSERT INTO `dungeon_access_requirements` (`dungeon_access_id`, `requirement_type`, `requirement_id`, `requirement_note`, `faction`, `priority`, `leader_only`, `comment`) VALUES (63, 1, 10277, NULL, 2, NULL, 1, NULL);
|
||||
INSERT INTO `dungeon_access_requirements` (`dungeon_access_id`, `requirement_type`, `requirement_id`, `requirement_note`, `faction`, `priority`, `leader_only`, `comment`) VALUES (64, 1, 10984, NULL, 2, NULL, 1, NULL);
|
||||
20
sql/world/base/dungeon_blackrock_spire.sql
Normal file
20
sql/world/base/dungeon_blackrock_spire.sql
Normal file
@@ -0,0 +1,20 @@
|
||||
-- Dragonspine Door
|
||||
UPDATE `gameobject` SET `animprogress`=100, `state`=1 WHERE `id`=164725;
|
||||
|
||||
-- Doodad_DarkIronBrazier01
|
||||
UPDATE `gameobject` SET `animprogress`=100, `state`=1 WHERE `id`=175528;
|
||||
|
||||
-- Doodad_DarkIronBrazier02
|
||||
UPDATE `gameobject` SET `animprogress`=100, `state`=1 WHERE `id`=175529;
|
||||
|
||||
-- Doodad_DarkIronBrazier03
|
||||
UPDATE `gameobject` SET `animprogress`=100, `state`=1 WHERE `id`=175530;
|
||||
|
||||
-- Doodad_DarkIronBrazier04
|
||||
UPDATE `gameobject` SET `animprogress`=100, `state`=1 WHERE `id`=175531;
|
||||
|
||||
-- Doodad_DarkIronBrazier05
|
||||
UPDATE `gameobject` SET `animprogress`=100, `state`=1 WHERE `id`=175532;
|
||||
|
||||
-- Doodad_DarkIronBrazier06
|
||||
UPDATE `gameobject` SET `animprogress`=100, `state`=1 WHERE `id`=175533;
|
||||
68
sql/world/base/dungeon_molten_core.sql
Normal file
68
sql/world/base/dungeon_molten_core.sql
Normal file
@@ -0,0 +1,68 @@
|
||||
DELETE FROM `creature_queststarter` WHERE `quest` IN (6804, 6821, 6822, 6823, 6824, 7486) AND `id` = 13278;
|
||||
INSERT INTO `creature_queststarter` (`id`, `quest`) VALUES
|
||||
(13278, 6804), -- Poisoned Water
|
||||
(13278, 6821), -- Eye of the Emberseer
|
||||
(13278, 6822), -- The Molten Core
|
||||
(13278, 6823), -- Agent of Hydraxis
|
||||
(13278, 6824), -- Hands of the Enemy
|
||||
(13278, 7486); -- A Hero's Reward
|
||||
|
||||
DELETE FROM `creature_questender` WHERE `quest` IN (6804, 6821, 6822, 6823, 6824) AND `id` = 13278;
|
||||
INSERT INTO `creature_questender` (`id`, `quest`) VALUES
|
||||
(13278, 6804), -- Poisoned Water
|
||||
(13278, 6821), -- Eye of the Emberseer
|
||||
(13278, 6822), -- The Molten Core
|
||||
(13278, 6823), -- Agent of Hydraxis
|
||||
(13278, 6824); -- Hands of the Enemy
|
||||
|
||||
DELETE FROM `quest_template_addon` WHERE `ID` IN (6821, 6822, 6823, 6824, 7486);
|
||||
INSERT INTO `quest_template_addon` (`ID`, `PrevQuestID`, `NextQuestID`) VALUES
|
||||
(6821, 6805, 6822),
|
||||
(6822, 6021, 6823),
|
||||
(6823, 6022, 6824),
|
||||
(6824, 6823, 7486),
|
||||
(7486, 6824, 0);
|
||||
|
||||
DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId` = 19 AND `SourceEntry` = 6821;
|
||||
INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `ErrorType`, `ErrorTextId`, `ScriptName`, `Comment`) VALUES
|
||||
(19, 0, 6821, 0, 0, 47, 0, 6804, 64, 0, 0, 0, 0, '', 'Quest Eyes of the Emberseer available if quest Poisoned Water has been rewarded.'),
|
||||
(19, 0, 6821, 0, 0, 47, 0, 6805, 64, 0, 0, 0, 0, '', 'Quest Eyes of the Emberseer available if quest Stormers and Rumblers has been rewarded.');
|
||||
|
||||
DELETE FROM `conditions` WHERE (`SourceTypeOrReferenceId` = 15) AND (`SourceGroup` = 5065) AND (`SourceId` IN (0, 1));
|
||||
INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `ErrorType`, `ErrorTextId`, `ScriptName`, `Comment`) VALUES
|
||||
(15, 5065, 0, 0, 0, 5, 0, 749, 224, 0, 0, 0, 0, '', 'Duke Hydraxis - Create Aqual Quintessence Gossip - Requires Honored Rep'),
|
||||
(15, 5065, 0, 0, 0, 47, 0, 6824, 64, 0, 0, 0, 0, '', 'Duke Hydraxis - Aqual Quintessence Gossip available if quest Hand of the Enemy rewarded.'),
|
||||
(15, 5065, 1, 0, 0, 5, 0, 749, 192, 0, 0, 0, 0, '', 'Duke Hydraxis - Create Eternal Quintessence Gossip - Requires Revered Rep'),
|
||||
(15, 5065, 1, 0, 0, 47, 0, 6824, 64, 0, 0, 0, 0, '', 'Duke Hydraxis - Create Eternal Quintessence Gossip - Requires Hand of the Enemy rewarded');
|
||||
|
||||
DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId` = 19 AND `SourceEntry` IN (6822, 6823, 6824, 7486);
|
||||
INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `ErrorType`, `ErrorTextId`, `ScriptName`, `Comment`) VALUES
|
||||
(19, 0, 6822, 0, 0, 47, 0, 6821, 64, 0, 0, 0, 0, '', 'Quest Molten Core available if quest Eye of the Emberseer has been rewarded.'),
|
||||
(19, 0, 6823, 0, 0, 47, 0, 6822, 64, 0, 0, 0, 0, '', 'Quest Agent of Hydraxis available if quest Molten Core has been rewarded.'),
|
||||
(19, 0, 6824, 0, 0, 47, 0, 6823, 64, 0, 0, 0, 0, '', 'Quest Hands of the Enemy available if quest Agents of Hydraxis has been rewarded.'),
|
||||
(19, 0, 7486, 0, 0, 47, 0, 6824, 64, 0, 0, 0, 0, '', 'Quest A Hero\'s Reward available if quest Hands of the Enemy has been rewarded.');
|
||||
|
||||
DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId` = 19 AND `SourceEntry` IN (6822, 6823, 6824, 7486);
|
||||
INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `ErrorType`, `ErrorTextId`, `ScriptName`, `Comment`) VALUES
|
||||
(19, 0, 6822, 0, 0, 47, 0, 6821, 64, 0, 0, 0, 0, '', 'Quest Molten Core available if quest Eye of the Emberseer has been rewarded.'),
|
||||
(19, 0, 6823, 0, 0, 47, 0, 6822, 64, 0, 0, 0, 0, '', 'Quest Agent of Hydraxis available if quest Molten Core has been rewarded.'),
|
||||
(19, 0, 6824, 0, 0, 47, 0, 6823, 64, 0, 0, 0, 0, '', 'Quest Hands of the Enemy available if quest Agents of Hydraxis has been rewarded.'),
|
||||
(19, 0, 7486, 0, 0, 47, 0, 6824, 64, 0, 0, 0, 0, '', 'Quest A Hero\'s Reward available if quest Hands of the Enemy has been rewarded.');
|
||||
|
||||
UPDATE `creature_template` SET `AIName` = 'SmartAI' WHERE `entry` = 13278;
|
||||
DELETE FROM `smart_scripts` WHERE (`entryorguid` = 13278) AND (`source_type` = 0) AND (`id` IN (0, 1, 2, 3));
|
||||
INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `event_param5`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_param4`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES
|
||||
(13278, 0, 0, 1, 62, 0, 100, 0, 5065, 0, 0, 0, 0, 72, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 'Duke Hydraxis - On Gossip Option 0 Selected - Close Gossip'),
|
||||
(13278, 0, 1, 0, 61, 0, 100, 0, 0, 0, 0, 0, 0, 56, 17333, 1, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 'Duke Hydraxis - On Link - Add item \'Aqual Quintessence\''),
|
||||
(13278, 0, 2, 3, 62, 0, 100, 0, 5065, 1, 0, 0, 0, 72, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 'Duke Hydraxis - On Gossip Option 1 Selected - Close Gossip'),
|
||||
(13278, 0, 3, 0, 61, 0, 100, 0, 0, 1, 0, 0, 0, 56, 22754, 1, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 'Duke Hydraxis - On Link - Add item \' Eternal Quintessence\'');
|
||||
|
||||
DELETE FROM `gossip_menu_option` WHERE `MenuID` = 5065 AND `OptionID` IN (0, 1);
|
||||
INSERT INTO `gossip_menu_option` (`MenuID`, `OptionID`, `OptionIcon`, `OptionText`, `OptionBroadcastTextID`, `OptionType`, `OptionNpcFlag`, `ActionMenuID`, `ActionPoiID`, `BoxCoded`, `BoxMoney`, `BoxText`, `BoxBroadcastTextID`, `VerifiedBuild`) VALUES
|
||||
(5065,0,0,'I require a vial of aqual quintessence, Hydraxis, for I go to the Molten Core to extinguish a rune of the Firelords.',8666,1,2,0,0,0,0,'',0,0),
|
||||
(5065,1,0,'I desire this eternal quintessence, Duke Hydraxis.',12363,1,2,0,0,0,0,'',0,0);
|
||||
|
||||
-- MC - Require dusing the runes
|
||||
UPDATE `gameobject_template` SET `ScriptName` = 'go_firelord_rune' WHERE `entry` IN (176956, 176957, 176955, 176953, 176952, 176954, 176951);
|
||||
|
||||
|
||||
596
sql/world/base/dungeon_onyxia.sql
Normal file
596
sql/world/base/dungeon_onyxia.sql
Normal file
@@ -0,0 +1,596 @@
|
||||
-- Entering the raid requires the Drakefire Amulet
|
||||
DELETE
|
||||
FROM `dungeon_access_requirements`
|
||||
WHERE `dungeon_access_id` = 15;
|
||||
INSERT INTO `dungeon_access_requirements` (`dungeon_access_id`, `requirement_type`, `requirement_id`,
|
||||
`requirement_note`, `faction`, `comment`)
|
||||
VALUES (15, 2, 16309, 'You must be part of a Raid group, at least level 50 and have the Drakefire Amulet in your inventory to enter.', 2, 'Onyxia\'s Lair');
|
||||
|
||||
-- Set the min level to enter the raid to 50
|
||||
DELETE FROM `dungeon_access_template` WHERE `map_id`=249;
|
||||
INSERT INTO `dungeon_access_template` (`id`, `map_id`, `min_level`, `max_level`, `min_avg_item_level`, `comment`) VALUES (15, 249, 50, 60, 0, 'Onyxia\'s Lair');
|
||||
|
||||
-- Onyxia
|
||||
UPDATE `creature_template` SET `minlevel` = 63, `maxlevel` = 63, `lootid` = 54003, `DamageModifier` = 13 WHERE `entry` = 10184;
|
||||
|
||||
-- Trash mobs
|
||||
UPDATE `creature_template` SET `minlevel` = 60, `maxlevel` = 60, `lootid` = 0, `skinloot` = 0 WHERE `entry` IN (11262, 12129);
|
||||
|
||||
DELETE FROM `reference_loot_template` WHERE `Entry` IN (54000, 54001);
|
||||
INSERT INTO `reference_loot_template` (`Entry`, `Item`, `Reference`, `Chance`, `QuestRequired`, `LootMode`, `GroupId`, `MinCount`, `MaxCount`, `Comment`) VALUES
|
||||
(54000, 17064, 0, 0, 0, 1, 1, 1, 1, 'Onyxia Ref - Shard of the Scale'),
|
||||
(54000, 17067, 0, 0, 0, 1, 1, 1, 1, 'Onyxia Ref - Ancient Cornerstone Grimoire'),
|
||||
(54000, 17068, 0, 0, 0, 1, 1, 1, 1, 'Onyxia Ref - Deathbringer'),
|
||||
(54000, 17075, 0, 0, 0, 1, 1, 1, 1, 'Onyxia Ref - Viskag the Bloodletter'),
|
||||
(54000, 17078, 0, 0, 0, 1, 1, 1, 1, 'Onyxia Ref - Sapphiron Drape'),
|
||||
(54000, 18205, 0, 0, 0, 1, 1, 1, 1, 'Onyxia Ref - Eskhandar Collar'),
|
||||
(54000, 18813, 0, 0, 0, 1, 1, 1, 1, 'Onyxia Ref - Ring of Binding');
|
||||
|
||||
INSERT INTO `reference_loot_template` (`Entry`, `Item`, `Reference`, `Chance`, `QuestRequired`, `LootMode`, `GroupId`, `MinCount`, `MaxCount`, `Comment`) VALUES
|
||||
(54001, 16900, 0, 0, 0, 1, 1, 1, 1, 'Onyxia Ref - Stormrage Covert'),
|
||||
(54001, 16908, 0, 0, 0, 1, 1, 1, 1, 'Onyxia Ref - Bloodfang Hood'),
|
||||
(54001, 16914, 0, 0, 0, 1, 1, 1, 1, 'Onyxia Ref - Netherwind Crown'),
|
||||
(54001, 16921, 0, 0, 0, 1, 1, 1, 1, 'Onyxia Ref - Halo of Transcendence'),
|
||||
(54001, 16929, 0, 0, 0, 1, 1, 1, 1, 'Onyxia Ref - Nemesis Skullcap'),
|
||||
(54001, 16939, 0, 0, 0, 1, 1, 1, 1, 'Onyxia Ref - Dragonstalker Helmet'),
|
||||
(54001, 16947, 0, 0, 0, 1, 1, 1, 1, 'Onyxia Ref - Helmet of Ten Storms'),
|
||||
(54001, 16955, 0, 0, 0, 1, 1, 1, 1, 'Onyxia Ref - Judgment Crown'),
|
||||
(54001, 16963, 0, 0, 0, 1, 1, 1, 1, 'Onyxia Ref - Helm of Wrath');
|
||||
|
||||
DELETE FROM `creature_loot_template` WHERE `Entry` = 54003;
|
||||
INSERT INTO `creature_loot_template` (`Entry`, `Item`, `Reference`, `Chance`, `QuestRequired`, `LootMode`, `GroupId`, `MinCount`, `MaxCount`, `Comment`) VALUES
|
||||
(54003, 1, 54000, 100, 0, 1, 0, 1, 2, 'Onyxia - Reference Loot - Trinkets & Misc'),
|
||||
(54003, 2, 54001, 100, 0, 1, 0, 1, 2, 'Onyxia - Reference Loot - Tier Pieces'),
|
||||
(54003, 17966, 0, 100, 0, 1, 0, 1, 1, 'Onyxia - Onyxia Hide Backpack'),
|
||||
(54003, 18422, 0, 100, 0, 1, 0, 1, 1, 'Onyxia - Head of Onyxia'),
|
||||
(54003, 18423, 0, 100, 0, 1, 0, 1, 1, 'Onyxia - Head of Onyxia'),
|
||||
(54003, 18705, 0, 100, 1, 1, 0, 1, 1, 'Onyxia - Mature Black Dragon Sinew'),
|
||||
(54003, 21108, 0, 100, 0, 1, 0, 1, 1, 'Onyxia - Draconic for Dummies');
|
||||
|
||||
DELETE FROM `disables` WHERE `entry` IN (12565, 12566, 12564, 12558) AND `sourceType` = 4;
|
||||
INSERT INTO `disables` (`sourceType`, `entry`, `flags`, `params_0`, `params_1`, `comment`) VALUES
|
||||
(4, 12565, 0, 0, 0, 'Disable Many Whelps, Handle it! (10) achievement'),
|
||||
(4, 12566, 0, 0, 0, 'Disable She deeps breah more (10) achievement'),
|
||||
(4, 12564, 0, 0, 0, 'Disable More dots! (10) achievement'),
|
||||
(4, 12558, 0, 0, 0, 'Disable Onyxia Lair (10) achievement');
|
||||
|
||||
UPDATE `achievement_criteria_data` SET `value1` = 0 WHERE `criteria_id` IN (12567, 12568, 12569);
|
||||
|
||||
-- Victory for the Alliance - Varian
|
||||
DELETE FROM `creature_questender` WHERE `quest` = 7495;
|
||||
INSERT INTO `creature_questender` (`id`, `quest`) VALUES
|
||||
(29611, 7495);
|
||||
|
||||
-- Thrall
|
||||
DELETE FROM `creature_questender` WHERE `quest` = 7490;
|
||||
INSERT INTO `creature_questender` (`id`, `quest`) VALUES
|
||||
(4949, 7490); -- Victory for the Horde
|
||||
|
||||
DELETE FROM `creature_queststarter` WHERE `quest` = 7491;
|
||||
INSERT INTO `creature_queststarter` (`id`, `quest`) VALUES
|
||||
(4949, 7491);
|
||||
|
||||
DELETE FROM `creature_queststarter` WHERE `quest` = 7493;
|
||||
INSERT INTO `creature_queststarter` (`id`, `quest`) VALUES
|
||||
(14392, 7493);
|
||||
|
||||
DELETE FROM `creature_queststarter` WHERE `quest` = 7496;
|
||||
INSERT INTO `creature_queststarter` (`id`, `quest`) VALUES
|
||||
(1748, 7496);
|
||||
|
||||
DELETE FROM `creature_questender` WHERE `quest` = 7491;
|
||||
INSERT INTO `creature_questender` (`id`, `quest`) VALUES
|
||||
(14392, 7491);
|
||||
|
||||
DELETE FROM `creature_questender` WHERE `quest` = 7496;
|
||||
INSERT INTO `creature_questender` (`id`, `quest`) VALUES
|
||||
(14394, 7496);
|
||||
|
||||
-- Cloak quest - A
|
||||
DELETE FROM `creature_queststarter` WHERE `quest` = 7497;
|
||||
INSERT INTO `creature_queststarter` (`id`, `quest`) VALUES
|
||||
(14394, 7497);
|
||||
|
||||
DELETE FROM `creature_questender` WHERE `quest` = 7497;
|
||||
INSERT INTO `creature_questender` (`id`, `quest`) VALUES
|
||||
(14394, 7497);
|
||||
|
||||
UPDATE `quest_template_addon` SET `PrevQuestID` = 7496 WHERE `ID` = 7497; -- Previously 24428
|
||||
UPDATE `quest_template_addon` SET `PrevQuestID` = 7490 WHERE `ID` = 7493; -- Previously 24429
|
||||
|
||||
-- Compendium
|
||||
UPDATE `item_template` SET `startquest` = 7507 WHERE `entry` = 18401; -- Foror's Compendium of Dragonslaying
|
||||
UPDATE `item_template` SET `startquest` = 7508 WHERE `entry` = 18513; -- Dull Elven Blade
|
||||
|
||||
DELETE FROM `creature_queststarter` WHERE `quest` = 7509;
|
||||
INSERT INTO `creature_queststarter` (`id`, `quest`) VALUES
|
||||
(14368, 7509);
|
||||
|
||||
DELETE FROM `creature_questender` WHERE `quest` IN (7507, 7508, 7509); -- Lorekeeper Lydros, Foror's Compendium
|
||||
INSERT INTO `creature_questender` (`id`, `quest`) VALUES
|
||||
(14368, 7507),
|
||||
(14368, 7508),
|
||||
(14368, 7509);
|
||||
|
||||
DELETE FROM `gossip_menu` WHERE `TextId` = 60040 AND `MenuId` = 5747;
|
||||
INSERT INTO `gossip_menu` (`MenuId`, `TextId`) VALUES
|
||||
(5747, 60040);
|
||||
|
||||
DELETE FROM `gossip_menu` WHERE `TextId` IN (60041, 60042, 60043, 60044, 60045, 60046);
|
||||
INSERT INTO `gossip_menu` (`MenuId`, `TextId`) VALUES
|
||||
(60041, 60041),
|
||||
(60042, 60042),
|
||||
(60043, 60043),
|
||||
(60044, 60044),
|
||||
(60045, 60045),
|
||||
(60046, 60046);
|
||||
|
||||
DELETE FROM `npc_text` WHERE `ID` IN (60040, 60041, 60042, 60043, 60044, 60045, 60046);
|
||||
INSERT INTO `npc_text` (`ID`, `text0_0`, `BroadcastTextID0`) VALUES
|
||||
(60040, '<Lydros reaches into his robe and presents you with a dull, flat elven blade.>$b$BIn ages past, well before even the War of the Ancients, there existed this blade.', 0),
|
||||
(60041, 'The blade itself had to be crafted IN ceremony with the children of the Aspects. A rare occurrence indeed... for not only would a dragon have TO willingly heat and mold the enchanted metal with their breath, they would also need to contain the fury of their own enchantment by using their blood as temper.', 0),
|
||||
(60042, 'Over the course of 8,000 years, only a handful of these blades were created - each blade unique in both power and appearance. The blades of Quel\'Serrar would take ON the characteristics of their creator.', 0),
|
||||
(60043, 'Rumors exist of a single legendary blade of Quel\'Serrar crafted for an unknown entity by the combined might of the five Aspects. Before the abominations of Nefarian and Deathwing were thrust into our world, such meetings of the Aspect were represented by the term \'Prismatic.\' I could only assume that the Prismatic Blade of Quel\'Serrar was a most glorious creation.', 0),
|
||||
(60044, 'What I offer to you now is one such blade, unfired, unheated, untreated - the most raw and basic form.$b$bNow you merely need TO find a dragon that will willingly enchant the blade.$b$bIf you had an eternity to live,this might be a possibility; but since you are mortal and could very likely cease to exist at any moment, might I recommend trying to persuade one of the lesser dragons to do your bidding.', 0),
|
||||
(60045, 'Have you heard of the brood mother of the Black Flight? I believe she is called Onyxia...', 0),
|
||||
(60046, 'I have sensed your coming for quite some time, $n. It was written in the pattern of stars.', 0);
|
||||
|
||||
DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId` IN (14, 15) AND `SourceGroup` = 5747;
|
||||
INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `ErrorType`, `ErrorTextId`, `ScriptName`, `Comment`) VALUES
|
||||
(14,5747,60040,0,0,8,0,7507,0,0,0,0,0,'','Lydros Pre Quel\'Serrar Gossip - Requires to have Foror\'s Compendium rewarded'),
|
||||
(14,5747,60040,0,0,8,0,7508,0,0,1,0,0,'','Lydros Pre Quel\'Serrar Gossip - Requires to not have The Forging of Quel\'Serrar rewarded'),
|
||||
(15,5747,0,0,0,8,0,7507,0,0,0,0,0,'','Lydros Pre Quel\'Serrar Gossip Option - Requires to have Foror\'s Compendium rewarded'),
|
||||
(15,5747,0,0,0,8,0,7508,0,0,1,0,0,'','Lydros Pre Quel\'Serrar Gossip Option - Requires to not have The Forging of Quel\'Serrar rewarded');
|
||||
|
||||
|
||||
DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId` = 15 AND `SourceGroup` = 5747 AND `SourceEntry` = 60040;
|
||||
INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `ErrorType`, `ErrorTextId`, `ScriptName`, `Comment`) VALUES
|
||||
(15,5747,60040,0,0,8,0,7507,0,0,0,0,0,'','Lydros Pre Quel\'Serrar Gossip - Requires to have Foror\'s Compendium rewarded'),
|
||||
(15,5747,60040,0,0,8,0,7508,0,0,1,0,0,'','Lydros Pre Quel\'Serrar Gossip - Requires to not have The Forging of Quel\'Serrar rewarded');
|
||||
|
||||
DELETE FROM `gossip_menu_option` WHERE `MenuID` IN (5747, 60040, 60041, 60042, 60043, 60044, 60045, 60046);
|
||||
INSERT INTO `gossip_menu_option` (`menuID`, `optionid`, `OptionIcon`, `OptionText`, `OptionBroadcastTextID`, `OptionType`, `OptionNpcFlag`, `ActionMenuID`, `ActionPoiID`, `BoxCoded`, `BoxMoney`, `BoxText`, `BoxBroadcastTextID`, `VerifiedBuild`) VALUES
|
||||
(5747,0,0,'(Continue.)', 9519,1,3,60041,0,0,0,NULL,0,0),
|
||||
(60041,0,0,'(Continue.)', 9519,1,3,60042,0,0,0,NULL,0,0),
|
||||
(60042,0,0,'(Continue.)', 9519,1,3,60043,0,0,0,NULL,0,0),
|
||||
(60043,0,0,'(Continue.)', 9519,1,3,60044,0,0,0,NULL,0,0),
|
||||
(60044,0,0,'Eh?',0,1,3,60045,0,0,0,NULL,0,0),
|
||||
(60045,0,0,'Maybe... What do I do now?',0,1,3,0,0,0,0,NULL,0,0);
|
||||
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid` = 14368 AND `source_type` = 0 AND `id` IN (1, 2);
|
||||
insert into `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) values('14368','0','1','0','62','0','100','0','60045','0','0','0','56','18513','1','0','0','0','0','7','0','0','0','0','0','0','0','Lorekeeper Lydros - Giving A Dull and Flat Elven Blade after cliking on last gossip');
|
||||
insert into `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) values('14368','0','2','0','62','0','100','0','60045','0','0','0','72','0','0','0','0','0','0','7','0','0','0','0','0','0','0','Lorekeeper Lydros - On Gossip Option 0 Selected - Close Gossip');
|
||||
|
||||
UPDATE `item_template` SET `spellid_1` = 22905 WHERE `entry` = 18489;
|
||||
|
||||
delete from `conditions` WHERE `SourceTypeOrReferenceId` = 17 AND `SourceEntry` = 22905;
|
||||
insert into `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `ErrorType`, `ErrorTextId`, `ScriptName`, `Comment`) values('17','0','22905','0','0','29','0','10184','10','1','0','0','0','','Place Unfired Blade - near dead onyxia');
|
||||
|
||||
DELETE FROM spell_linked_spell where spell_trigger = 22905;
|
||||
INSERT INTO spell_linked_spell (spell_trigger, spell_effect, TYPE, COMMENT) VALUES
|
||||
(22905, 22906, 0, 'quelserrar');
|
||||
|
||||
UPDATE `quest_template_addon` SET `SpecialFlags` = 0 WHERE `id` = 7509;
|
||||
|
||||
DELETE FROM `creature_queststarter` WHERE `quest` IN (4182, 4183) AND `id` = 9562;
|
||||
DELETE FROM `creature_queststarter` WHERE `quest` IN (4184, 4223) AND `id` = 344;
|
||||
DELETE FROM `creature_queststarter` WHERE `quest` = 4185 AND `id` = 29611;
|
||||
DELETE FROM `creature_queststarter` WHERE `quest` = 4186 AND `id` = 1748;
|
||||
DELETE FROM `creature_queststarter` WHERE `quest` IN (4224, 4241, 4264) AND `id` = 9560;
|
||||
DELETE FROM `creature_queststarter` WHERE `quest` IN (4242, 4282, 4322) AND `id` = 9023;
|
||||
INSERT INTO `creature_queststarter` (`id`, `quest`) VALUES
|
||||
(9562, 4182), -- Dragon Menace, Helendis Riverhorn
|
||||
(9562, 4183), -- True Masters [1], Helendis Riverhorn
|
||||
(344, 4184), -- True Masters [2], Magistrate Solomon
|
||||
(29611, 4185), -- True Masters [3], Varian Wrynn
|
||||
(1748, 4186), -- True Masters [4], Highlord Bolvar Fordragon
|
||||
(344, 4223), -- True Masters [5], Magistrate Solomon
|
||||
(9560, 4224), -- True Masters [6], Marshal Maxwell
|
||||
(9560, 4241), -- 'Marshal Windsor', Marshal Maxwell
|
||||
(9023, 4242), -- Abandon Hope, Marshal Windsor
|
||||
(9023, 4282), -- A Shred of Hope, Marshal Windsor
|
||||
(9023, 4322); -- Jail Break!, Marshal Windsor
|
||||
|
||||
DELETE FROM `creature_questender` WHERE `quest` = 4182 AND `id` = 9562;
|
||||
DELETE FROM `creature_questender` WHERE `quest` IN (4183, 4186) AND `id` = 344;
|
||||
DELETE FROM `creature_questender` WHERE `quest` = 4184 AND `id` = 29611;
|
||||
DELETE FROM `creature_questender` WHERE `quest` = 4185 AND `id` = 1748;
|
||||
DELETE FROM `creature_questender` WHERE `quest` IN (4223, 4224, 4242) AND `id` = 9560;
|
||||
DELETE FROM `creature_questender` WHERE `quest`IN (4241, 4264, 4282) AND `id` = 9023;
|
||||
INSERT INTO `creature_questender` (`id`, `quest`) VALUES
|
||||
(9562, 4182), -- Dragon Menace, Helendis Riverhorn
|
||||
(344, 4183), -- True Masters [1], Magistrate Solomon
|
||||
(29611, 4184), -- True Masters [2], Varian Wrynn
|
||||
(1748, 4185), -- True Masters [3], Highlord Bolvar Fordragon
|
||||
(344, 4186), -- True Masters [4], Magister Solomon
|
||||
(9560, 4223), -- True Masters [5], Marshal Maxwell
|
||||
(9560, 4224), -- True Masters [6], Marshal Maxwell
|
||||
(9023, 4241), -- 'Marshal Windsor', Marshal Windsor
|
||||
(9560, 4242), -- Abandon Hope, Marshal Maxwell
|
||||
(9023, 4264), -- A Crumpled Up Note, Marshal Windsor
|
||||
(9023, 4282); -- A Shred of Hope, Marshal Windsor
|
||||
|
||||
-- True Masters quests
|
||||
DELETE FROM `disables` WHERE `entry` IN (4183, 4184, 4185, 4186, 4223, 4224) AND `sourceType` = 1;
|
||||
|
||||
DELETE FROM `creature_questender` WHERE `quest` = 4322 AND `id` = 9560;
|
||||
DELETE FROM `creature_questender` WHERE `quest` = 6402 AND `id` = 17804;
|
||||
INSERT INTO `creature_questender` (`id`, `quest`) VALUES
|
||||
(17804, 6402),
|
||||
(9560, 4322);
|
||||
|
||||
DELETE FROM `creature_queststarter` WHERE `quest` = 6402 AND `id` = 9560;
|
||||
DELETE FROM `creature_queststarter` WHERE `quest` = 6403 AND `id` = 12580;
|
||||
INSERT INTO `creature_queststarter` (`id`, `quest`) VALUES
|
||||
(9560, 6402),
|
||||
(12580, 6403);
|
||||
|
||||
DELETE FROM `creature_text` WHERE `CreatureID` = 466 AND `GroupID` > 0;
|
||||
INSERT INTO `creature_text` (`CreatureID`, `GroupID`, `ID`, `Text`, `Type`, `Language`, `Probability`, `Emote`, `Duration`, `Sound`, `BroadcastTextId`, `TextRange`, `comment`) VALUES
|
||||
(466, 1, 0, 'Reginald, you know that I cannot let you pass.', 12, 0, 100, 0, 0, 0, 8121, 0, 'Marcus Jonathan - SAY_JONATHAN_TO_MARCUS_1'),
|
||||
(466, 2, 0, '%s appears lost in contemplation.', 16, 0, 100, 0, 0, 0, 8124, 0, 'Marcus Jonathan - EMOTE_CONTEMPLATE'),
|
||||
(466, 3, 0, 'I am ashamed, old friend. I know not what I do anymore. It is not you that would dare bring shame to the heroes of legend - it is I. It is I and the rest of these corrupt politicians. They fill our lives with empty promises, unending lies.', 12, 0, 100, 0, 0, 0, 8125, 0, 'Marcus Jonathan - SAY_JONATHAN_TO_MARCUS_2'),
|
||||
(466, 4, 0, 'We shame our ancestors. We shame those lost to us... forgive me, Reginald.', 12, 0, 100, 0, 0, 0, 8132, 0, 'Marcus Jonathan - SAY_JONATHAN_TO_MARCUS_3'),
|
||||
(466, 5, 0, 'Stand down! Can you not see that heroes walk among us?', 12, 0, 100, 0, 0, 0, 8127, 0, 'Marcus Jonathan - SAY_JONATHAN_TO_GUARDS_1'),
|
||||
(466, 6, 0, 'Move aside! Let them pass!', 12, 0, 100, 0, 0, 0, 8128, 0, 'Marcus Jonathan - SAY_JONATHAN_TO_GUARDS_2'),
|
||||
(466, 7, 0, 'Reginald Windsor is not to be harmed! He shall pass through untouched!', 14, 0, 100, 0, 0, 0, 8129, 3, 'Marcus Jonathan - SAY_JONATHAN_TO_GUARDS_3'),
|
||||
(466, 8, 0, 'Go, Reginald. May the light guide your hand.', 12, 0, 100, 66, 0, 0, 8130, 0, 'Marcus Jonathan - SAY_JONATHAN_TO_MARCUS_4');
|
||||
|
||||
UPDATE `creature_template` SET `ScriptName` = 'npc_squire_rowe' WHERE `entry` = 17804;
|
||||
UPDATE `creature_template` SET `ScriptName` = 'npc_reginald_windsor' WHERE `entry` = 12580;
|
||||
UPDATE `creature_template` SET `ScriptName` = 'npc_royal_stormwind_guard' WHERE `entry` = 1756;
|
||||
UPDATE `creature_template` SET `ScriptName` = 'npc_marshal_windsor' WHERE `entry` = 9023;
|
||||
UPDATE `creature_template` SET `ScriptName` = 'npc_jail_break_dughal_or_seecher' WHERE `entry` IN (9022, 9679);
|
||||
|
||||
DELETE FROM `gossip_menu` WHERE `MenuID` = 12580 AND `TextID` = 5633;
|
||||
INSERT INTO `gossip_menu` (`MenuID`, `TextID`) VALUES
|
||||
(12580, 5633);
|
||||
|
||||
UPDATE `creature_template` SET `gossip_menu_id` = 12580 WHERE `entry` = 12580;
|
||||
|
||||
DELETE FROM `gossip_menu_option` WHERE `MenuID` = 12580;
|
||||
INSERT INTO `gossip_menu_option` (`MenuID`, `OptionID`, `OptionIcon`, `OptionText`, `OptionBroadcastTextId`, `OptionType`, `OptionNpcFlag`, `ActionMenuID`, `ActionPoiID`, `BoxCoded`, `BoxMoney`, `BoxText`, `BoxBroadcastTextId`) VALUES
|
||||
(12580, 0, 0, 'I am ready, as are my forces. Let us end this masquerade!', 8256, 1, 1, 0, 0, 0, 0, '', 0);
|
||||
|
||||
SET @ENTRY := 12580;
|
||||
DELETE FROM `creature_text` WHERE `CreatureID` = @ENTRY;
|
||||
INSERT INTO `creature_text` (`CreatureID`, `GroupID`, `ID`, `Text`, `Type`, `Language`, `Probability`, `Emote`, `Duration`, `Sound`, `BroadcastTextId`, `TextRange`, `comment`) VALUES
|
||||
(@ENTRY, 0, 0, 'Yawww!', 12, 0, 100, 0, 0, 0, 8091, 0, 'Reginald Windsor - SAY_REGINALD_SHOO_HORSE'),
|
||||
(@ENTRY, 1, 0, 'I knew you would come, $n. It is good to see you again, friend.', 12, 0, 100, 0, 0, 0, 8090, 0, 'Reginald Windsor - SAY_REGINALD_END_INTRO'),
|
||||
(@ENTRY, 2, 0, 'On guard, friend. The lady dragon will not give in without a fight.', 12, 0, 100, 0, 0, 0, 8107, 0, 'Reginald Windsor - SAY_REGINALD_MASQUERADE_1'),
|
||||
(@ENTRY, 3, 0, 'As was fated a lifetime ago in Karazhan, monster - I come - and with me I bring justice.', 14, 0, 100, 0, 0, 0, 8109, 3, 'Reginald Windsor - SAY_REGINALD_MASQUERADE_2'),
|
||||
(@ENTRY, 4, 0, 'You must do what you think is right, Marcus. We served together under Turalyon. He made us both the men that we are today. Did he err with me? Do you truly believe my intent is to cause harm to our alliance? Would I shame our heroes?', 12, 0, 100, 0, 0, 0, 8123, 0, 'Reginald Windsor - SAY_REGINALD_TO_MARCUS_1'),
|
||||
(@ENTRY, 5, 0, 'Holding me here is not the right decision, Marcus.', 12, 0, 100, 0, 0, 0, 8133, 0, 'Reginald Windsor - SAY_REGINALD_TO_MARCUS_2'),
|
||||
(@ENTRY, 6, 0, 'Dear friend, you honor them with your vigilant watch. You are steadfast in your allegiance. I do not doubt for a moment that you would not give as great a sacrifice for your people as any of the heroes you stand under.', 12, 0, 100, 0, 0, 0, 8126, 0, 'Reginald Windsor - SAY_REGINALD_TO_MARCUS_3'),
|
||||
(@ENTRY, 7, 0, 'Now, it is time to bring her reign to an end, Marcus. Stand down, friend.', 12, 0, 100, 0, 0, 0, 8134, 0, 'Reginald Windsor - SAY_REGINALD_TO_MARCUS_4'),
|
||||
(@ENTRY, 8, 0, 'Thank you, old friend. You have done the right thing.', 12, 0, 100, 0, 0, 0, 8205, 0, 'Reginald Windsor - SAY_REGINALD_TO_MARCUS_5'),
|
||||
(@ENTRY, 9, 0, 'Follow me, friends. To Stormwind Keep!', 12, 0, 100, 0, 0, 0, 8206, 0, 'Reginald Windsor - SAY_MASQUERADE_3'),
|
||||
(@ENTRY, 10, 0, 'Be brave, friends. The reptile will thrash wildly. It is an act of desperation. When you are ready, give me the word.', 12, 0, 100, 0, 0, 0, 8207, 0, 'Reginald Windsor - SAY_STORMWIND_BEFORE_KEEP'),
|
||||
(@ENTRY, 11, 0, 'Onward!', 12, 0, 100, 0, 0, 0, 8208, 0, 'Reginald Windsor - SAY_MOVE_IN_KEEP'),
|
||||
(@ENTRY, 12, 0, 'Majesty, run while you still can. She is not what you think her to be...', 12, 0, 100, 0, 0, 0, 8210, 0, 'Reginald Windsor - SAY_REGINALD_TO_ANDUINN'),
|
||||
(@ENTRY, 13, 0, 'The masquerade is over, Lady Prestor. Or should I call you by your true name... Onyxia...', 12, 0, 100, 0, 0, 0, 8211, 0, 'Reginald Windsor - SAY_REGINALD_TO_KATRANA'),
|
||||
(@ENTRY, 14, 0, 'You will not escape your fate, Onyxia. It has been prophesied - a vision resonating from the great halls of Karazhan. It ends now...', 12, 0, 100, 0, 0, 0, 8218, 0, 'Reginald Windsor - SAY_REGINALD_TO_KATRANA_2'),
|
||||
(@ENTRY, 15, 0, 'The Dark Irons thought these tablets to be encoded. This is not any form of coding, it is the tongue of ancient dragon.', 12, 0, 100, 0, 0, 0, 8227, 0, 'Reginald Windsor - SAY_REGINALD_TO_KATRANA_3'),
|
||||
(@ENTRY, 16, 0, 'Listen, dragon. Let the truth resonate throughout these halls.', 12, 0, 100, 0, 0, 0, 8219, 0, 'Reginald Windsor - SAY_REGINALD_TO_KATRANA'),
|
||||
(@ENTRY, 17, 0, '%s reads from the tablets. Unknown, unheard sounds flow through your consciousness.', 16, 0, 100, 0, 0, 0, 8228, 0, 'Reginald Windsor - EMOTE_READ_TABLET'),
|
||||
(@ENTRY, 18, 0, 'DO NOT LET HER ESCAPE!', 12, 0, 100, 0, 0, 0, 8247, 0, 'Reginald Windsor - SAY_REGINALD_TO_GUARDS'),
|
||||
(@ENTRY, 19, 0, 'Bol... Bolvar... the medallion... use...', 12, 0, 100, 0, 0, 0, 8250, 0, 'Reginald Windsor - SAY_REGINALD_TO_BOLVAR'),
|
||||
(@ENTRY, 20, 0, '%s dies.', 16, 0, 100, 0, 0, 0, 8251, 0, 'Reginald Windsor - EMOTE_WINDSOR_DIES'),
|
||||
(@ENTRY, 21, 0, '%s reaches into his pack and pulls out the encoded tablets.', 16, 0, 100, 0, 0, 0, 8226, 0, 'Reginald Windsor - EMOTE_WINDSOR_TABLETS');
|
||||
|
||||
SET @ENTRY := 1749;
|
||||
DELETE FROM `creature_text` WHERE `CreatureID` = @ENTRY;
|
||||
INSERT INTO `creature_text` (`CreatureID`, `GroupID`, `ID`, `Text`, `Type`, `Language`, `Probability`, `Emote`, `Duration`, `Sound`, `BroadcastTextId`, `TextRange`, `comment`) VALUES
|
||||
(@ENTRY, 0, 0, 'Seize him! Seize the worthless criminal and his allies!', 14, 0, 100, 0, 0, 0, 8119, 3, 'Lady Katrana Prestor - SAY_KATRANA_1'),
|
||||
(@ENTRY, 1, 0, '%s laughs.', 16, 0, 100, 0, 0, 0, 8214, 0, 'Lady Katrana Prestor - EMOTE_KATRANA_LAUGH'),
|
||||
(@ENTRY, 2, 0, 'You will be incarcerated and tried for treason, Windsor. I shall watch with glee as they hand down a guilty verdict and sentence you to death by hanging...', 12, 0, 100, 0, 0, 0, 8215, 0, 'Lady Katrana Prestor - SAY_KATRANA_2'),
|
||||
(@ENTRY, 3, 0, 'And as your limp body dangles from the rafters, I shall take pleasure in knowing that a mad man has been put to death. After all, what proof do you have? Did you expect to come in here and point your fingers at royalty and leave unscathed?', 12, 0, 100, 0, 0, 0, 8216, 0, 'Lady Katrana Prestor - SAY_KATRANA_3');
|
||||
|
||||
SET @ENTRY := 1748;
|
||||
DELETE FROM `creature_text` WHERE `CreatureID` = @ENTRY;
|
||||
INSERT INTO `creature_text` (`CreatureID`, `GroupID`, `ID`, `Text`, `Type`, `Language`, `Probability`, `Emote`, `Duration`, `Sound`, `BroadcastTextId`, `TextRange`, `comment`) VALUES
|
||||
(@ENTRY, 0, 0, 'To the safe hall, your majesty.', 12, 0, 100, 0, 0, 0, 8212, 0, 'Highlord Bolvar Fordragon - SAY_BOLVAR_TO_ANDUINN'),
|
||||
(@ENTRY, 1, 0, '%s gasps.', 16, 0, 100, 0, 0, 0, 8236, 0, 'Highlord Bolvar Fordragon - EMOTE_BOLVAR_GASP'),
|
||||
(@ENTRY, 2, 0, 'Dragon filth! Guards! Guards! Seize this monster!', 14, 0, 100, 0, 0, 0, 8237, 3, 'Highlord Bolvar Fordragon - SAY_BOLVAR_TO_GUARDS'),
|
||||
(@ENTRY, 3, 0, 'Reginald... I... I am sorry.', 12, 0, 100, 0, 0, 0, 8249, 0, 'Highlord Bolvar Fordragon - SAY_BOLVAR_REGINALD_DIES');
|
||||
|
||||
SET @ENTRY := 12756;
|
||||
DELETE FROM `creature_text` WHERE `CreatureID` = @ENTRY;
|
||||
INSERT INTO `creature_text` (`CreatureID`, `GroupID`, `ID`, `Text`, `Type`, `Language`, `Probability`, `Emote`, `Duration`, `Sound`, `BroadcastTextId`, `TextRange`, `comment`) VALUES
|
||||
(@ENTRY, 0, 0, 'Curious... Windsor, in this vision, did you survive? I only ask because one thing that I can and will assure is your death. Here and now.', 12, 0, 100, 0, 0, 0, 8235, 0, 'Lady Onyxia - SAY_ONYXIA_TO_WINDSOR'),
|
||||
(@ENTRY, 1, 0, 'Yesss... Guards, come to your lord\'s aid!', 12, 0, 100, 0, 0, 0, 8239, 0, 'Lady Onyxia - SAY_ONYXIA_TO_WINDSOR_2'),
|
||||
(@ENTRY, 2, 0, 'Was this fated, Windsor? If it was death that you came for, then the prophecy has been fulfilled. May your consciousness rot in the Twisting Nether. Finish the rest of these meddlesome insects, children. Bolvar, you have been a pleasurable puppet.', 12, 0, 100, 0, 0, 0, 8246, 0, 'Lady Onyxia - SAY_ONYXIA_TO_WINDSOR_3'),
|
||||
(@ENTRY, 3, 0, 'You have failed him, mortalsss... Farewell!', 12, 0, 100, 0, 0, 0, 8248, 0, 'Lady Onyxia - SAY_ONYXIA_TO_WINDSOR_4');
|
||||
|
||||
DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=13 AND `SourceEntry`=20465;
|
||||
INSERT INTO `conditions`(`SourceTypeOrReferenceId`,`SourceGroup`,`SourceEntry`,`ConditionTypeOrReference`,`ConditionValue1`,`ConditionValue2`,`Comment`) VALUES
|
||||
(13,1,20465,31,3,12580,'Windsor Death hit only Reginald Windsor');
|
||||
|
||||
DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=13 AND `SourceEntry`=20358;
|
||||
INSERT INTO `conditions`(`SourceTypeOrReferenceId`,`SourceGroup`,`SourceEntry`,`ConditionTypeOrReference`,`ConditionValue1`,`ConditionValue2`,`Comment`) VALUES
|
||||
(13,1,20358,31,3,1749,'Windsor Read Table hit only Katrana Prestor');
|
||||
|
||||
SET @ENTRY := 68;
|
||||
SET @ENTRY2 := 1756;
|
||||
SET @ENTRY3 := 1976;
|
||||
DELETE FROM `creature_text` WHERE `CreatureID` IN (68, 1756, 1976) AND `GroupID` = 10;
|
||||
INSERT INTO `creature_text` (`CreatureID`, `GroupID`, `ID`, `Text`, `Type`, `Language`, `Probability`, `Emote`, `Duration`, `Sound`, `BroadcastTextId`, `TextRange`, `comment`) VALUES
|
||||
(@ENTRY, 10, 0, 'Light be with you, sir.', 12, 0, 100, 0, 0, 0, 8167, 0, ''),
|
||||
(@ENTRY, 10, 1, 'We are but dirt beneath your feet, sir.', 12, 0, 100, 0, 0, 0, 8177, 0, ''),
|
||||
(@ENTRY, 10, 2, '...nerves of thorium.', 12, 0, 100, 0, 0, 0, 8183, 0, ''),
|
||||
(@ENTRY, 10, 3, 'Make way!', 12, 0, 100, 0, 0, 0, 8175, 0, ''),
|
||||
(@ENTRY, 10, 4, 'A living legend...', 12, 0, 100, 0, 0, 0, 8184, 0, ''),
|
||||
(@ENTRY, 10, 5, 'A moment I shall remember for always.', 12, 0, 100, 0, 0, 0, 8180, 0, ''),
|
||||
(@ENTRY, 10, 6, 'You are an inspiration to us all, sir.', 12, 0, 100, 0, 0, 0, 8170, 0, ''),
|
||||
(@ENTRY2, 10, 0, 'Light be with you, sir.', 12, 0, 100, 0, 0, 0, 8167, 0, ''),
|
||||
(@ENTRY2, 10, 1, 'We are but dirt beneath your feet, sir.', 12, 0, 100, 0, 0, 0, 8177, 0, ''),
|
||||
(@ENTRY2, 10, 2, '...nerves of thorium.', 12, 0, 100, 0, 0, 0, 8183, 0, ''),
|
||||
(@ENTRY2, 10, 3, 'Make way!', 12, 0, 100, 0, 0, 0, 8175, 0, ''),
|
||||
(@ENTRY2, 10, 4, 'A living legend...', 12, 0, 100, 0, 0, 0, 8184, 0, ''),
|
||||
(@ENTRY2, 10, 5, 'A moment I shall remember for always.', 12, 0, 100, 0, 0, 0, 8180, 0, ''),
|
||||
(@ENTRY2, 10, 6, 'You are an inspiration to us all, sir.', 12, 0, 100, 0, 0, 0, 8170, 0, ''),
|
||||
(@ENTRY3, 10, 0, 'Light be with you, sir.', 12, 0, 100, 0, 0, 0, 8167, 0, ''),
|
||||
(@ENTRY3, 10, 1, 'We are but dirt beneath your feet, sir.', 12, 0, 100, 0, 0, 0, 8177, 0, ''),
|
||||
(@ENTRY3, 10, 2, '...nerves of thorium.', 12, 0, 100, 0, 0, 0, 8183, 0, ''),
|
||||
(@ENTRY3, 10, 3, 'Make way!', 12, 0, 100, 0, 0, 0, 8175, 0, ''),
|
||||
(@ENTRY3, 10, 4, 'A living legend...', 12, 0, 100, 0, 0, 0, 8184, 0, ''),
|
||||
(@ENTRY3, 10, 5, 'A moment I shall remember for always.', 12, 0, 100, 0, 0, 0, 8180, 0, ''),
|
||||
(@ENTRY3, 10, 6, 'You are an inspiration to us all, sir.', 12, 0, 100, 0, 0, 0, 8170, 0, '');
|
||||
|
||||
DELETE FROM `creature_questender` WHERE `quest` = 6402 AND `id` = 12580;
|
||||
INSERT INTO `creature_questender` VALUES
|
||||
(12580, 6402);
|
||||
|
||||
DELETE FROM `gossip_menu_option` WHERE `MenuID` = 7480;
|
||||
INSERT INTO `gossip_menu_option` (`MenuID`, `OptionID`, `OptionIcon`, `OptionText`, `OptionBroadcastTextId`, `OptionType`, `OptionNpcFlag`, `ActionMenuID`, `ActionPoiID`, `BoxCoded`, `BoxMoney`, `BoxText`, `BoxBroadcastTextId`) VALUES
|
||||
(7480, 0, 0, 'Let Marshal Windsor know that I am ready.', 14388, 1, 1, 0, 0, 0, 0, '', 0);
|
||||
|
||||
DELETE FROM `creature_text` WHERE `CreatureID` = 17804;
|
||||
INSERT INTO `creature_text` (`CreatureID`, `GroupID`, `ID`, `Text`, `Type`, `Language`, `Probability`, `Emote`, `Duration`, `Sound`, `BroadcastTextId`, `TextRange`, `comment`) VALUES
|
||||
(17804, 0, 0, 'The signal has been sent. He should be arriving shortly.', 12, 7, 100, 0, 0, 0, 14389, 0, '');
|
||||
|
||||
DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId` = 15 AND `SourceGroup` = 7480;
|
||||
INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `ErrorType`, `ErrorTextId`, `ScriptName`, `Comment`) VALUES
|
||||
(15, 7480, 0, 0, 0, 8, 0, 6403, 0, 0, 1, 0, 0, '', 'Squire Rowe - Require Stormwind Rendezvous'),
|
||||
(15, 7480, 0, 0, 0, 8, 0, 6402, 0, 0, 0, 0, 0, '', 'Squire Rowe - Require Stormwind Rendezvous'),
|
||||
(15, 7480, 0, 0, 1, 8, 0, 6403, 0, 0, 1, 0, 0, '', 'Squire Rowe - Require Stormwind Rendezvous'),
|
||||
(15, 7480, 0, 0, 1, 28, 0, 6402, 0, 0, 0,0, 0, '', 'Squire Rowe - Require Stormwind Rendezvous');
|
||||
|
||||
DELETE FROM `gossip_menu` WHERE `MenuID` = 51749 AND `TextID` = 2693;
|
||||
DELETE FROM `gossip_menu` WHERE `MenuID` = 51750 AND `TextID` = 2694;
|
||||
DELETE FROM `gossip_menu` WHERE `MenuID` = 51751 AND `TextID` = 2695;
|
||||
DELETE FROM `gossip_menu` WHERE `MenuID` = 51752 AND `TextID` = 2696;
|
||||
INSERT INTO `gossip_menu` (`MenuID`, `TextID`) VALUES
|
||||
(51749, 2693),
|
||||
(51750, 2694),
|
||||
(51751, 2695),
|
||||
(51752, 2696);
|
||||
|
||||
UPDATE `creature_template` SET `gossip_menu_id` = 51749 WHERE `entry` = 1749;
|
||||
|
||||
DELETE FROM `gossip_menu_option` WHERE `MenuID` IN (51749, 51750, 51751, 51752);
|
||||
INSERT INTO `gossip_menu_option` (`MenuID`, `OptionID`, `OptionIcon`, `OptionText`, `OptionBroadcastTextID`, `OptionType`, `OptionNpcFlag`, `ActionMenuID`, `ActionPoiID`, `BoxCoded`, `BoxMoney`, `BoxText`, `BoxBroadcasttextId`) VALUES
|
||||
(51749, 0, 0, 'Pardon the intrustion, Lady Prestor, but Highlord Bolvar suggested that I seek your advice.', 4991, 1, 1, 51750, 0, 0, 0, '', 0),
|
||||
(51750, 0, 0, 'My apologies, Lady Prestor.', 4993, 1, 1, 51751, 0, 0, 0, '', 0),
|
||||
(51751, 0, 0, 'Begging your pardon, Lady Prestor. That was not my intent.', 4995, 1, 1, 51752, 0, 0, 0, '', 0),
|
||||
(51752, 0, 0, 'Thank you for your time, Lady Prestor.', 4997, 1, 1, 0, 0, 0, 0, '', 0);
|
||||
|
||||
DELETE FROM `conditions` WHERE `sourcetypeorreferenceId` = 14 AND `sourcegroup` = 51749;
|
||||
DELETE FROM `conditions` WHERE `sourcetypeorreferenceId` = 15 AND `sourcegroup` = 51749;
|
||||
INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `ErrorType`, `ErrorTextId`, `ScriptName`, `Comment`) VALUES
|
||||
('14','51749','2693','0','0','9','0','4185','0','0','0','0','0','','Lady Prestor, require True Masters (3)'),
|
||||
('15','51749','0','0','0','9','0','4185','0','0','0','0','0','','Lady Prestor, Require True Masters (3)');
|
||||
|
||||
DELETE FROM `gossip_menu` WHERE `MenuID` BETWEEN 59563 AND 59575 AND `TextID` BETWEEN 2713 AND 2725;
|
||||
INSERT INTO `gossip_menu` (`MenuID`, `TextID`) VALUES
|
||||
(59563, 2713),
|
||||
(59564, 2714),
|
||||
(59565, 2715),
|
||||
(59566, 2716),
|
||||
(59567, 2717),
|
||||
(59568, 2718),
|
||||
(59569, 2719),
|
||||
(59570, 2720),
|
||||
(59571, 2721),
|
||||
(59572, 2722),
|
||||
(59573, 2723),
|
||||
(59574, 2725);
|
||||
|
||||
UPDATE `creature_template` SET `gossip_menu_id` = 59563 WHERE `entry` = 9563;
|
||||
|
||||
DELETE FROM `gossip_menu_option` WHERE `MenuID` BETWEEN 59563 AND 59575;
|
||||
INSERT INTO `gossip_menu_option` (`MenuID`, `OptionID`, `OptionIcon`, `OptionText`, `OptionBroadcastTextID`, `OptionType`, `OptionNpcFlag`, `ActionMenuID`, `ActionPoiID`, `BoxCoded`, `BoxMoney`, `BoxText`, `BoxBroadcasttextId`) VALUES
|
||||
(59563, 0, 0, 'Official business, John. I need some information about Marshal Windsor. Tell me about the last time you saw him.', 5007, 1, 1, 59564, 0, 0, 0, '', 0),
|
||||
(59564, 0, 0, 'So what did you do?', 5010, 1, 1, 59565, 0, 0, 0, '', 0),
|
||||
(59565, 0, 0, 'Start making sense, dwarf. I don\'t want to have anything to do with your cracker, your pappy, or any sort of \'discreditin.\'', 5013, 1, 1, 59566, 0, 0, 0, '', 0),
|
||||
(59566, 0, 0, 'Ironfoe?', 5015, 1, 1, 59567, 0, 0, 0, '', 0),
|
||||
(59567, 0, 0, 'Interesting... continue, John.', 5017, 1, 1, 59568, 0, 0, 0, '', 0),
|
||||
(59568, 0, 0, 'So that\'s how Windsor died...', 5019, 1, 1, 59569, 0, 0, 0, '', 0),
|
||||
(59569, 0, 0, 'So how did he die?', 5021, 1, 1, 59570, 0, 0, 0, '', 0),
|
||||
(59570, 0, 0, 'Ok, so where the hell is he? Wait a minute! Are you drunk?', 5024, 1, 1, 59571, 0, 0, 0, '', 0),
|
||||
(59571, 0, 0, 'WHY is he in Blackrock Depths?', 5027, 1, 1, 59572, 0, 0, 0, '', 0),
|
||||
(59572, 0, 0, '300? So the Dark Irons killed him and dragged him into the Depths?', 5030, 1, 1, 59573, 0, 0, 0, '', 0),
|
||||
(59573, 0, 0, 'Ahhh... Ironfoe.', 5034, 1, 1, 59574, 0, 0, 0, '', 0),
|
||||
(59574, 0, 0, 'Thanks, Ragged John. Your story was very uplifting and informative.', 5038, 1, 1, 0, 0, 0, 0, '', 0);
|
||||
|
||||
UPDATE `smart_scripts` SET `event_param1` = 59574 WHERE `entryorguid` = 9563 AND `id` = 3 AND `event_type` = 62; -- Ragged John quest credit
|
||||
|
||||
DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId` = 15 AND `SourceGroup` = 59563;
|
||||
INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `ErrorType`, `ErrorTextId`, `ScriptName`, `Comment`) VALUES
|
||||
(15,59563,0,0,0,9,0,4224,0,0,0,0,0,'','Ragged John - Require True Masters (6)');
|
||||
|
||||
UPDATE `creature_template` SET `AIName` = 'SmartAI' WHERE `entry` = 1749;
|
||||
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid` = 1749 AND `Source_type` = 0;
|
||||
INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `event_param5`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) values
|
||||
(1749, 0, 0, 1, 62, 0, 100, 0, 51752, 0, 0, 0, 0, 72, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 'Lady Katrana Prestor - On Gossip Option Select - Close Gossip'),
|
||||
(1749, 0, 1, 0, 61, 0, 100, 0, 0, 0, 0, 0, 0, 15, 4185, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 'Lady Katrana Prestor - On Gossip Option Select - Complete Quest - The True Masters');
|
||||
|
||||
-- Spawn Lady Katrana Prestor
|
||||
-- Positions are hand-made. There's a huge throne where she used to be spawned in classic...
|
||||
DELETE FROM `creature` WHERE `guid` = 500800 AND `id1` = 1749;
|
||||
INSERT INTO `creature` (`guid`, `id1`, `map`, `zoneId`, `areaId`, `spawnMask`, `phaseMask`, `equipment_id`, `position_x`, `position_y`, `position_z`, `orientation`, `spawntimesecs`, `currentwaypoint`, `curhealth`, `curmana`, `MovementType`, `npcflag`, `unit_flags`, `dynamicflags`, `ScriptName`, `VerifiedBuild`) VALUES
|
||||
(500800, 1749, 0, 0, 0, 1, 1, 1, -8435, 335.559, 122.163, 2.56468, 300, 0, 3497, 2568, 0, 0, 0, 0, '', 0);
|
||||
|
||||
DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId` = 30 AND `SourceEntry` = 1749;
|
||||
INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `ErrorType`, `ErrorTextId`, `ScriptName`, `Comment`) VALUES
|
||||
(30, 0, 1749, 0, 0, 47, 0, 4182, 64, 0, 0, 0, 0, '', 'Lady Katrana Prestor - Visibility - Require quest Dragonkin Menace rewarded.'),
|
||||
(30, 0, 1749, 0, 0, 47, 0, 6403, 64, 0, 1, 0, 0, '', 'Lady Katrana Prestor - Visibility - Require quest The Great Masquerade NOT rewarded.');
|
||||
|
||||
UPDATE `item_template` SET `startquest` = 4264 WHERE `entry` = 11446; -- A crumpled up note
|
||||
|
||||
DELETE FROM `creature` WHERE `guid` = 500801 AND `id1` = 1748;
|
||||
INSERT INTO `creature` (`guid`, `id1`, `map`, `zoneId`, `areaId`, `spawnMask`, `phaseMask`, `equipment_id`, `position_x`, `position_y`, `position_z`, `orientation`, `spawntimesecs`, `currentwaypoint`, `curhealth`, `curmana`, `MovementType`, `npcflag`, `unit_flags`, `dynamicflags`, `ScriptName`, `VerifiedBuild`) VALUES
|
||||
(500801, 1748, 0, 0, 0, 1, 1, 1, -8445.01, 329.85, 122.163, 2.12562, 300, 0, 1055700, 67740, 0, 0, 0, 0, '', 0);
|
||||
|
||||
DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId` = 30 AND `SourceEntry` = 1748;
|
||||
INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `ErrorType`, `ErrorTextId`, `ScriptName`, `Comment`) VALUES
|
||||
(30, 0, 1748, 0, 0, 47, 0, 4182, 64, 0, 0, 0, 0, '', 'Highlord Bolvar Fordring - Visibility - Require quest Dragonkin Menace rewarded.');
|
||||
|
||||
DELETE FROM `script_waypoint` WHERE `entry` = 9023;
|
||||
INSERT INTO `script_waypoint` (`entry`, `pointid`, `location_x`, `location_y`, `location_z`, `waittime`, `point_comment`) VALUES
|
||||
(9023, 1, 316.336, -225.528, -77.7258, 2000, 'SAY_WINDSOR_START'),
|
||||
(9023, 2, 322.96, -207.13, -77.87, 0, ''),
|
||||
(9023, 3, 281.05, -172.16, -75.12, 0, ''),
|
||||
(9023, 4, 272.19, -139.14, -70.61, 0, ''),
|
||||
(9023, 5, 283.62, -116.09, -70.21, 0, ''),
|
||||
(9023, 6, 296.18, -94.3, -74.08, 0, ''),
|
||||
(9023, 7, 294.57, -93.11, -74.08, 0, 'escort paused - SAY_WINDSOR_CELL_DUGHAL_1'),
|
||||
(9023, 8, 294.57, -93.11, -74.08, 10000, ''),
|
||||
(9023, 9, 294.57, -93.11, -74.08, 3000, 'SAY_WINDSOR_CELL_DUGHAL_3'),
|
||||
(9023, 10, 314.31, -74.31, -76.09, 0, ''),
|
||||
(9023, 11, 360.22, -62.93, -66.77, 0, ''),
|
||||
(9023, 12, 383.38, -69.4, -63.25, 0, ''),
|
||||
(9023, 13, 389.99, -67.86, -62.57, 0, ''),
|
||||
(9023, 14, 400.98, -72.01, -62.31, 0, 'SAY_WINDSOR_EQUIPMENT_1'),
|
||||
(9023, 15, 404.22, -62.3, -63.5, 2000, ''),
|
||||
(9023, 16, 404.22, -62.3, -63.5, 1500, 'open supply door'),
|
||||
(9023, 17, 407.65, -51.86, -63.96, 0, ''),
|
||||
(9023, 18, 403.61, -51.71, -63.92, 1000, 'SAY_WINDSOR_EQUIPMENT_2'),
|
||||
(9023, 19, 403.61, -51.71, -63.92, 2000, ''),
|
||||
(9023, 20, 403.61, -51.71, -63.92, 1000, 'open supply crate'),
|
||||
(9023, 21, 403.61, -51.71, -63.92, 1000, 'update entry to Reginald Windsor'),
|
||||
(9023, 22, 403.61, -52.71, -63.92, 4000, 'SAY_WINDSOR_EQUIPMENT_3'),
|
||||
(9023, 23, 403.61, -52.71, -63.92, 4000, 'SAY_WINDSOR_EQUIPMENT_4'),
|
||||
(9023, 24, 406.33, -54.87, -63.95, 0, ''),
|
||||
(9023, 25, 403.86, -73.88, -62.02, 0, ''),
|
||||
(9023, 26, 428.8, -81.34, -64.91, 0, ''),
|
||||
(9023, 27, 557.03, -119.71, -61.83, 0, ''),
|
||||
(9023, 28, 573.4, -124.39, -65.07, 0, ''),
|
||||
(9023, 29, 593.91, -130.29, -69.25, 0, ''),
|
||||
(9023, 30, 593.21, -132.16, -69.25, 0, 'escort paused - SAY_WINDSOR_CELL_JAZ_1'),
|
||||
(9023, 31, 593.21, -132.16, -69.25, 1000, ''),
|
||||
(9023, 32, 593.21, -132.16, -69.25, 3000, 'SAY_WINDSOR_CELL_JAZ_2'),
|
||||
(9023, 33, 622.81, -135.55, -71.92, 0, ''),
|
||||
(9023, 34, 634.68, -151.29, -70.32, 0, ''),
|
||||
(9023, 35, 635.06, -153.25, -70.32, 0, 'escort paused - SAY_WINDSOR_CELL_SHILL_1'),
|
||||
(9023, 36, 635.06, -153.25, -70.32, 3000, ''),
|
||||
(9023, 37, 635.06, -153.25, -70.32, 5000, 'SAY_WINDSOR_CELL_SHILL_2'),
|
||||
(9023, 38, 635.06, -153.25, -70.32, 2000, 'SAY_WINDSOR_CELL_SHILL_3'),
|
||||
(9023, 39, 655.25, -172.39, -73.72, 0, ''),
|
||||
(9023, 40, 654.79, -226.3, -83.06, 0, ''),
|
||||
(9023, 41, 622.85, -268.85, -83.96, 0, ''),
|
||||
(9023, 42, 579.45, -275.56, -80.44, 0, ''),
|
||||
(9023, 43, 561.19, -266.85, -75.59, 0, ''),
|
||||
(9023, 44, 547.91, -253.92, -70.34, 0, ''),
|
||||
(9023, 45, 549.2, -252.4, -70.34, 0, 'escort paused - SAY_WINDSOR_CELL_CREST_1'),
|
||||
(9023, 46, 549.2, -252.4, -70.34, 1000, ''),
|
||||
(9023, 47, 549.2, -252.4, -70.34, 4000, 'SAY_WINDSOR_CELL_CREST_2'),
|
||||
(9023, 48, 555.33, -269.16, -74.4, 0, ''),
|
||||
(9023, 49, 554.31, -270.88, -74.4, 0, 'escort paused - SAY_WINDSOR_CELL_TOBIAS_1'),
|
||||
(9023, 50, 554.31, -270.88, -74.4, 10000, ''),
|
||||
(9023, 51, 554.31, -270.88, -74.4, 4000, 'SAY_WINDSOR_CELL_TOBIAS_2'),
|
||||
(9023, 52, 536.1, -249.6, -67.47, 0, ''),
|
||||
(9023, 53, 520.94, -216.65, -59.28, 0, ''),
|
||||
(9023, 54, 505.99, -148.74, -62.17, 0, ''),
|
||||
(9023, 55, 484.21, -56.24, -62.43, 0, ''),
|
||||
(9023, 56, 470.39, -6.01, -70.1, 0, ''),
|
||||
(9023, 57, 452.45, 29.85, -70.37, 1500, 'SAY_WINDSOR_FREE_1'),
|
||||
(9023, 58, 452.45, 29.85, -70.37, 15000, 'SAY_WINDSOR_FREE_2');
|
||||
|
||||
DELETE FROM `creature_text` WHERE `CreatureID` = 9023;
|
||||
INSERT INTO `creature_text` (`CreatureID`, `GroupID`, `ID`, `Text`, `Type`, `Language`, `Probability`, `Emote`, `Duration`, `Sound`, `BroadcastTextId`, `TextRange`, `comment`) VALUES
|
||||
(9023, 0, 0, 'You locked up the wrong Marshal, $n. Prepare to be destroyed!', 12, 0, 100, 0, 0, 0, 5253, 0, 'Marshal Windsor - SAY_AGGRO'),
|
||||
(9023, 0, 1, 'I bet you\'re sorry now, aren\'nt you!?!', 12, 0, 100, 0, 0, 0, 5252, 0, 'Marshal Windsor - SAY_AGGRO'),
|
||||
(9023, 0, 2, 'You better hold me back or $n is going to feel some prison house beatings.', 12, 0, 100, 0, 0, 0, 5250, 0, 'Marshal Windsor - SAY_AGGRO'),
|
||||
(9023, 0, 3, 'Administering fists of fury on $n!', 12, 0, 100, 0, 0, 0, 5249, 0, 'Marshal Windsor - SAY_AGGRO'),
|
||||
(9023, 1, 0, 'Let\'s get a move on. My gear should be in the storage area up this way...', 12, 0, 100, 0, 0, 0, 5205, 0, 'Marshal Windsor - SAY_START_ESCORT'),
|
||||
(9023, 2, 0, 'Check that cell, $n. If someone is alive in there, we need to get them out.', 12, 0, 100, 0, 0, 0, 5207, 0, 'Marshal Windsor - SAY_DUGHAL_CELL_1'),
|
||||
(9023, 3, 0, 'Good work! We\'re almost there! This way.', 12, 0, 100, 0, 0, 0, 5213, 0, 'Marshal Windsor - SAY_DUGHAL_CELL_2'),
|
||||
(9023, 4, 0, 'This is it, $n. My stuff should be in that room. Cover me, I\'m going in!', 12, 0, 100, 0, 0, 0, 5214, 0, 'Marshal Windsor - SAY_EQUIPMENT_1'),
|
||||
(9023, 5, 0, 'Ah, there it is!', 12, 0, 100, 0, 0, 0, 5215, 0, 'Marshal Windsor - SAY_EQUIPMENT_2');
|
||||
|
||||
-- Windsor, armored up.
|
||||
DELETE FROM `creature_text` WHERE `CreatureID` = 9682;
|
||||
INSERT INTO `creature_text` (`CreatureID`, `GroupID`, `ID`, `Text`, `Type`, `Language`, `Probability`, `Emote`, `Duration`, `Sound`, `BroadcastTextId`, `TextRange`, `comment`) VALUES
|
||||
(9682, 0, 0, 'You locked up the wrong Marshal, $n. Prepare to be destroyed!', 12, 0, 100, 0, 0, 0, 5253, 0, 'Marshal Windsor - SAY_AGGRO'),
|
||||
(9682, 0, 1, 'I bet you\'re sorry now, aren\'nt you!?!', 12, 0, 100, 0, 0, 0, 5252, 0, 'Marshal Windsor - SAY_AGGRO'),
|
||||
(9682, 0, 2, 'You better hold me back or $n is going to feel some prison house beatings.', 12, 0, 100, 0, 0, 0, 5250, 0, 'Marshal Windsor - SAY_AGGRO'),
|
||||
(9682, 0, 3, 'Administering fists of fury on $n!', 12, 0, 100, 0, 0, 0, 5249, 0, 'Marshal Windsor - SAY_AGGRO'),
|
||||
(9682, 6, 0, 'Can you feel the power, $n??? It\'s time to ROCK!', 12, 0, 100, 0, 0, 0, 5216, 0, 'Reginald Windsor - SAY_EQUIPMENT_3'),
|
||||
(9682, 7, 0, 'Now we just have to free Tobias and we can get out of here. This way!', 12, 0, 100, 0, 0, 0, 5217, 0, 'Reginald Windsor - SAY_EQUIPMENT_4'),
|
||||
(9682, 8, 0, 'Open it.', 12, 0, 100, 0, 0, 0, 5222, 0, 'Reginald Windsor - SAY_JAZ_CELL_1'),
|
||||
(9682, 9, 0, 'I never did like those two. Let\'s get moving.', 12, 0, 100, 0, 0, 0, 5223, 0, 'Reginald Windsor - SAY_JAZ_CELL2'),
|
||||
(9682, 10, 0, 'Open it and be careful this time!', 12, 0, 100, 0, 0, 0, 5224, 0, 'Reginald Windsor - SAY_SHILL_CELL_1'),
|
||||
(9682, 11, 0, 'That intolerant dirtbag finally got what was coming to him. Good riddance!', 12, 0, 100, 0, 0, 0, 5225, 0, 'Reginald Windsor - SAY_SHILL_CELL_2'),
|
||||
(9682, 12, 0, 'Alright, let\'s go.', 12, 0, 100, 0, 0, 0, 5227, 0, 'Reginald Windsor - SAY_SHILL_CELL_3'),
|
||||
(9682, 13, 0, 'Open it. We need to hurry up. I can smell those Dark Irons coming a mile away and I can tell you one thing, they\'re COMING!', 12, 0, 100, 0, 0, 0, 5228, 0, 'Reginald Windsor - SAY_CREST_CELL_1'),
|
||||
(9682, 14, 0, 'He has to be in the last cell. Unless... they killed him.', 12, 0, 100, 0, 0, 0, 5229, 0, 'Reginald Windsor - SAY_CREST_CELL_2'),
|
||||
(9682, 15, 0, 'Get him out of there!', 12, 0, 100, 0, 0, 0, 5230, 0, 'Reginald Windsor - SAY_TOBIAS_CELL_1'),
|
||||
(9682, 16, 0, 'Excellent work, $n. Let\'s find the exit. I think I know the way. Follow me!', 12, 0, 100, 0, 0, 0, 5221, 0, 'Reginald Windsor - SAY_TOBIAS_CELL_2'),
|
||||
(9682, 17, 0, 'We made it!', 12, 0, 100, 0, 0, 0, 5231, 0, 'Reginald Windsor - SAY_FREE_1'),
|
||||
(9682, 18, 0, 'Meet me at Maxwell\'s encampment. We\'ll go over the next stages of the plan there and figure out a way to decode my tablets without the decryption ring.', 12, 0, 100, 0, 0, 0, 5232, 0, 'Reginald Windsor - SAY_FREE_2');
|
||||
|
||||
DELETE FROM `creature_text` WHERE `CreatureID` = 9022;
|
||||
INSERT INTO `creature_text` (`CreatureID`, `GroupID`, `ID`, `Text`, `Type`, `Language`, `Probability`, `Emote`, `Duration`, `Sound`, `BroadcastTextId`, `TextRange`, `comment`) VALUES
|
||||
(9022, 0, 0, 'Thank you, $n! I\'m free!!!', 12, 0, 100, 0, 0, 0, 5210, 0,'Dughal Stormwing - On Gossip Select');
|
||||
|
||||
DELETE FROM `creature_text` WHERE `CreatureID` = 9679;
|
||||
INSERT INTO `creature_text` (`CreatureID`, `GroupID`, `ID`, `Text`, `Type`, `Language`, `Probability`, `Emote`, `Duration`, `Sound`, `BroadcastTextId`, `TextRange`, `comment`) VALUES
|
||||
(9679, 0, 0, 'Finally!! I can leave this dump.', 12, 0, 100, 0, 0, 0, 5218, 0,'Tobias Seecher - SAY_FREED');
|
||||
|
||||
-- The Great Masquerade
|
||||
DELETE FROM `creature_questender` WHERE `id` = 1748 AND `quest` = 6403;
|
||||
INSERT INTO `creature_questender` (`id`, `quest`) VALUES
|
||||
(1748, 6403);
|
||||
|
||||
-- Disable mmaps for Reginald in stormwind
|
||||
UPDATE `creature_template` SET `flags_extra` = `flags_extra` |536870912 WHERE `entry` = 12580;
|
||||
|
||||
DELETE FROM `creature_queststarter` WHERE `quest` = 6501;
|
||||
INSERT INTO `creature_queststarter` (`id`, `quest`) VALUES
|
||||
(1748, 6501);
|
||||
|
||||
DELETE FROM `creature_queststarter` WHERE `quest` = 6501;
|
||||
INSERT INTO `creature_queststarter` (`id`, `quest`) VALUES
|
||||
(1748, 6501);
|
||||
|
||||
DELETE FROM `creature_queststarter` WHERE `quest` = 6502;
|
||||
INSERT INTO `creature_queststarter` (`id`, `quest`) VALUES
|
||||
(10929, 6502);
|
||||
|
||||
DELETE FROM `creature_questender` WHERE `quest` = 6501;
|
||||
INSERT INTO `creature_questender` (`id`, `quest`) VALUES
|
||||
(10929, 6501);
|
||||
|
||||
DELETE FROM `creature_questender` WHERE `quest` = 6502;
|
||||
INSERT INTO `creature_questender` (`id`, `quest`) VALUES
|
||||
(10929, 6502);
|
||||
|
||||
UPDATE creature_text SET TextRange = 2 WHERE CreatureID = 1748 AND GroupID = 2;
|
||||
UPDATE creature_text SET TextRange = 2 WHERE CreatureID = 1749 AND GroupID = 0;
|
||||
UPDATE creature_text SET TextRange = 2 WHERE CreatureID = 12580 AND GroupID = 3;
|
||||
UPDATE creature_text SET TextRange = 2 WHERE CreatureID = 466 AND GroupID = 7;
|
||||
|
||||
UPDATE `creature_template` SET `npcflag` = `npcflag` |1|2 WHERE `entry` = 1749;
|
||||
|
||||
UPDATE `quest_template` SET `flags` = `flags`|2|8 WHERE `id` = 6403; -- The Great Masquerade, shareable & escort flag
|
||||
|
||||
-- Adjust quest Mother's Milk gossip option to work with changed Ragged John gossip menu
|
||||
DELETE FROM `gossip_menu_option` WHERE `MenuID`=59563 AND `OptionID`=1;
|
||||
INSERT INTO `gossip_menu_option` (`MenuID`, `OptionID`, `OptionIcon`, `OptionText`, `OptionBroadcastTextID`, `OptionType`, `OptionNpcFlag`, `ActionMenuID`, `ActionPoiID`, `BoxCoded`, `BoxMoney`, `BoxText`, `BoxBroadcastTextID`, `VerifiedBuild`) VALUES (59563, 1, 0, 'Milk me, John.', 5833, 1, 1, 2062, 0, 0, 0, '', 0, 0);
|
||||
|
||||
DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=15 AND `SourceGroup`=59563 AND `SourceEntry`=1;
|
||||
INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `ErrorType`, `ErrorTextId`, `ScriptName`, `Comment`) VALUES
|
||||
(15, 59563, 1, 0, 1, 1, 0, 16468, 0, 0, 0, 0, 0, '', 'Show Gossip 59563 option 1 only if player has aura 16468'),
|
||||
(15, 59563, 1, 0, 1, 9, 0, 4866, 0, 0, 0, 0, 0, '', 'Show gossip 59563 option 1 if player does have quest 4866 taken');
|
||||
2
sql/world/base/dungeon_ragefire_chasm.sql
Normal file
2
sql/world/base/dungeon_ragefire_chasm.sql
Normal file
@@ -0,0 +1,2 @@
|
||||
-- Molten Elemental
|
||||
UPDATE `creature_template` SET `minlevel`=13, `maxlevel`=15 WHERE `entry`=11321;
|
||||
80
sql/world/base/dungeon_scarlet_monastery.sql
Normal file
80
sql/world/base/dungeon_scarlet_monastery.sql
Normal file
@@ -0,0 +1,80 @@
|
||||
-- Herod <The Scarlet Champion>
|
||||
UPDATE `creature_template` SET `minlevel`=40, `maxlevel`=40 WHERE `entry`=3975;
|
||||
|
||||
-- Scarlet Commander Mograine
|
||||
UPDATE `creature_template` SET `minlevel`=42, `maxlevel`=42 WHERE `entry`=3976;
|
||||
|
||||
-- High Inquisitor Whitemane
|
||||
UPDATE `creature_template` SET `minlevel`=42, `maxlevel`=42 WHERE `entry`=3977;
|
||||
|
||||
-- Scarlet Sentry
|
||||
UPDATE `creature_template` SET `rank`=1 WHERE `entry`=4283;
|
||||
|
||||
-- Scarlet Soldier
|
||||
UPDATE `creature_template` SET `maxlevel`=36 WHERE `entry`=4286;
|
||||
|
||||
-- Scarlet Beastmaster
|
||||
UPDATE `creature_template` SET `minlevel`=34, `maxlevel`=35 WHERE `entry`=4288;
|
||||
|
||||
-- Scarlet Evoker
|
||||
UPDATE `creature_template` SET `minlevel`=36, `maxlevel`=37 WHERE `entry`=4289;
|
||||
|
||||
-- Scarlet Guardsman
|
||||
UPDATE `creature_template` SET `minlevel`=36, `maxlevel`=37 WHERE `entry`=4290;
|
||||
|
||||
-- Scarlet Diviner
|
||||
UPDATE `creature_template` SET `maxlevel`=35 WHERE `entry`=4291;
|
||||
|
||||
-- Scarlet Protector
|
||||
UPDATE `creature_template` SET `minlevel`=36, `maxlevel`=37 WHERE `entry`=4292;
|
||||
|
||||
-- Scarlet Myrmidon
|
||||
UPDATE `creature_template` SET `minlevel`=37, `maxlevel`=38 WHERE `entry`=4295;
|
||||
|
||||
-- Scarlet Conjuror
|
||||
UPDATE `creature_template` SET `maxlevel`=36 WHERE `entry`=4297;
|
||||
|
||||
-- Scarlet Defender
|
||||
UPDATE `creature_template` SET `minlevel`=37, `maxlevel`=38 WHERE `entry`=4298;
|
||||
|
||||
-- Scarlet Chaplain
|
||||
UPDATE `creature_template` SET `maxlevel`=36 WHERE `entry`=4299;
|
||||
|
||||
-- Scarlet Champion
|
||||
UPDATE `creature_template` SET `maxlevel`=40 WHERE `entry`=4302;
|
||||
|
||||
-- Scarlet Abbot
|
||||
UPDATE `creature_template` SET `maxlevel`=40 WHERE `entry`=4303;
|
||||
|
||||
-- Scarlet Tracking Hound
|
||||
UPDATE `creature_template` SET `maxlevel`=34 WHERE `entry`=4304;
|
||||
|
||||
-- Unfettered Spirit
|
||||
UPDATE `creature_template` SET `minlevel`=31, `maxlevel`=32 WHERE `entry`=4308;
|
||||
|
||||
-- Scarlet Monk
|
||||
UPDATE `creature_template` SET `minlevel`=35, `maxlevel`=36 WHERE `entry`=4540;
|
||||
|
||||
-- Bloodmage Thalnos
|
||||
UPDATE `creature_template` SET `minlevel`=34, `maxlevel`=34 WHERE `entry`=4543;
|
||||
|
||||
-- Anguished Dead
|
||||
UPDATE `creature_template` SET `maxlevel`=33 WHERE `entry`=6426;
|
||||
|
||||
-- Haunting Phantasm
|
||||
UPDATE `creature_template` SET `minlevel`=32, `maxlevel`=33 WHERE `entry`=6427;
|
||||
|
||||
-- Arcanist Doan
|
||||
UPDATE `creature_template` SET `minlevel`=37, `maxlevel`=37 WHERE `entry`=6487;
|
||||
|
||||
-- Fallen Champion
|
||||
UPDATE `creature_template` SET `minlevel`=33, `maxlevel`=33 WHERE `entry`=6488;
|
||||
|
||||
-- Ironspine
|
||||
UPDATE `creature_template` SET `minlevel`=33, `maxlevel`=33 WHERE `entry`=6489;
|
||||
|
||||
-- Azshir the Sleepless
|
||||
UPDATE `creature_template` SET `minlevel`=33, `maxlevel`=33 WHERE `entry`=6490;
|
||||
|
||||
-- Chapel Door
|
||||
UPDATE `gameobject_template_addon` SET `flags`=34 WHERE `entry`=104591;
|
||||
104
sql/world/base/dungeon_scholomance.sql
Normal file
104
sql/world/base/dungeon_scholomance.sql
Normal file
@@ -0,0 +1,104 @@
|
||||
-- Vectus
|
||||
UPDATE `creature_onkill_reputation` SET `MaxStanding1`=7, `RewOnKillRepValue1`=25 WHERE `creature_id`=10432;
|
||||
|
||||
-- Marduk Blackpool
|
||||
UPDATE `creature_onkill_reputation` SET `MaxStanding1`=7, `RewOnKillRepValue1`=25 WHERE `creature_id`=10433;
|
||||
|
||||
-- Scholomance Adept
|
||||
UPDATE `creature_onkill_reputation` SET `MaxStanding1`=5, `RewOnKillRepValue1`=5 WHERE `creature_id`=10469;
|
||||
|
||||
-- Scholomance Neophyte
|
||||
UPDATE `creature_onkill_reputation` SET `MaxStanding1`=5, `RewOnKillRepValue1`=5 WHERE `creature_id`=10470;
|
||||
|
||||
-- Scholomance Acolyte
|
||||
UPDATE `creature_onkill_reputation` SET `MaxStanding1`=5, `RewOnKillRepValue1`=5 WHERE `creature_id`=10471;
|
||||
|
||||
-- Scholomance Necrolyte
|
||||
UPDATE `creature_onkill_reputation` SET `MaxStanding1`=5, `RewOnKillRepValue1`=5 WHERE `creature_id`=10476;
|
||||
|
||||
-- Scholomance Necromancer
|
||||
UPDATE `creature_onkill_reputation` SET `MaxStanding1`=5, `RewOnKillRepValue1`=5 WHERE `creature_id`=10477;
|
||||
|
||||
-- Splintered Skeleton
|
||||
UPDATE `creature_onkill_reputation` SET `MaxStanding1`=5, `RewOnKillRepValue1`=5 WHERE `creature_id`=10478;
|
||||
|
||||
-- Unstable Corpse
|
||||
UPDATE `creature_onkill_reputation` SET `MaxStanding1`=5, `RewOnKillRepValue1`=5 WHERE `creature_id`=10480;
|
||||
|
||||
-- Reanimated Corpse
|
||||
UPDATE `creature_onkill_reputation` SET `MaxStanding1`=5, `RewOnKillRepValue1`=5 WHERE `creature_id`=10481;
|
||||
|
||||
-- Risen Aberration
|
||||
UPDATE `creature_onkill_reputation` SET `MaxStanding1`=5, `RewOnKillRepValue1`=5 WHERE `creature_id`=10485;
|
||||
|
||||
-- Risen Warrior
|
||||
UPDATE `creature_onkill_reputation` SET `MaxStanding1`=5, `RewOnKillRepValue1`=5 WHERE `creature_id`=10486;
|
||||
|
||||
-- Risen Protector
|
||||
UPDATE `creature_onkill_reputation` SET `MaxStanding1`=5, `RewOnKillRepValue1`=5 WHERE `creature_id`=10487;
|
||||
|
||||
-- Risen Construct
|
||||
UPDATE `creature_onkill_reputation` SET `MaxStanding1`=5, `RewOnKillRepValue1`=5 WHERE `creature_id`=10488;
|
||||
|
||||
-- Risen Guard
|
||||
UPDATE `creature_onkill_reputation` SET `MaxStanding1`=5, `RewOnKillRepValue1`=5 WHERE `creature_id`=10489;
|
||||
|
||||
-- Risen Bonewarder
|
||||
UPDATE `creature_onkill_reputation` SET `MaxStanding1`=5, `RewOnKillRepValue1`=5 WHERE `creature_id`=10491;
|
||||
|
||||
-- Diseased Ghoul
|
||||
UPDATE `creature_onkill_reputation` SET `MaxStanding1`=5, `RewOnKillRepValue1`=5 WHERE `creature_id`=10495;
|
||||
|
||||
-- Spectral Tutor
|
||||
UPDATE `creature_onkill_reputation` SET `MaxStanding1`=5, `RewOnKillRepValue1`=5 WHERE `creature_id`=10498;
|
||||
|
||||
-- Spectral Researcher
|
||||
UPDATE `creature_onkill_reputation` SET `MaxStanding1`=5, `RewOnKillRepValue1`=5 WHERE `creature_id`=10499;
|
||||
|
||||
-- Spectral Teacher
|
||||
UPDATE `creature_onkill_reputation` SET `MaxStanding1`=5, `RewOnKillRepValue1`=5 WHERE `creature_id`=10500;
|
||||
|
||||
-- Lady Illucia Barov
|
||||
UPDATE `creature_onkill_reputation` SET `MaxStanding1`=7, `RewOnKillRepValue1`=25 WHERE `creature_id`=10502;
|
||||
|
||||
-- Jandice Barov
|
||||
UPDATE `creature_onkill_reputation` SET `MaxStanding1`=7, `RewOnKillRepValue1`=25 WHERE `creature_id`=10503;
|
||||
|
||||
-- Lord Alexei Barov
|
||||
UPDATE `creature_onkill_reputation` SET `MaxStanding1`=7, `RewOnKillRepValue1`=25 WHERE `creature_id`=10504;
|
||||
|
||||
-- Instructor Malicia
|
||||
UPDATE `creature_onkill_reputation` SET `MaxStanding1`=7, `RewOnKillRepValue1`=25 WHERE `creature_id`=10505;
|
||||
|
||||
-- The Ravenian
|
||||
UPDATE `creature_onkill_reputation` SET `MaxStanding1`=7, `RewOnKillRepValue1`=25 WHERE `creature_id`=10507;
|
||||
|
||||
-- Ras Frostwhisper
|
||||
UPDATE `creature_onkill_reputation` SET `MaxStanding1`=7, `RewOnKillRepValue1`=50 WHERE `creature_id`=10508;
|
||||
|
||||
-- Lorekeeper Polkelt
|
||||
UPDATE `creature_onkill_reputation` SET `MaxStanding1`=7, `RewOnKillRepValue1`=25 WHERE `creature_id`=10901;
|
||||
|
||||
-- Scholomance Handler
|
||||
UPDATE `creature_onkill_reputation` SET `MaxStanding1`=5, `RewOnKillRepValue1`=5 WHERE `creature_id`=11257;
|
||||
|
||||
-- Doctor Theolen Krastinov
|
||||
UPDATE `creature_onkill_reputation` SET `MaxStanding1`=7, `RewOnKillRepValue1`=25 WHERE `creature_id`=11261;
|
||||
|
||||
-- Necrofiend
|
||||
UPDATE `creature_onkill_reputation` SET `MaxStanding1`=5, `RewOnKillRepValue1`=5 WHERE `creature_id`=11551;
|
||||
|
||||
-- Scholomance Dark Summoner
|
||||
UPDATE `creature_onkill_reputation` SET `MaxStanding1`=5, `RewOnKillRepValue1`=5 WHERE `creature_id`=11582;
|
||||
|
||||
-- Rattlegore
|
||||
UPDATE `creature_onkill_reputation` SET `MaxStanding1`=7, `RewOnKillRepValue1`=25 WHERE `creature_id`=11622;
|
||||
|
||||
-- Blood Steward of Kirtonos
|
||||
UPDATE `creature_onkill_reputation` SET `MaxStanding1`=5, `RewOnKillRepValue1`=5 WHERE `creature_id`=14861;
|
||||
|
||||
-- Kirtonos the Herald
|
||||
UPDATE `creature_template` SET `minlevel`=60, `maxlevel`=60 WHERE `entry`=10506;
|
||||
|
||||
-- Frail Skeleton
|
||||
UPDATE `creature_template` SET `minlevel`=1, `maxlevel`=1, `faction`=233 WHERE `entry`=11258;
|
||||
74
sql/world/base/dungeon_shadowfang_keep.sql
Normal file
74
sql/world/base/dungeon_shadowfang_keep.sql
Normal file
@@ -0,0 +1,74 @@
|
||||
-- Son of Arugal
|
||||
UPDATE `creature_template` SET `minlevel`=24, `maxlevel`=25 WHERE `entry`=2529;
|
||||
|
||||
-- Deathsworn Captain
|
||||
UPDATE `creature_template` SET `minlevel`=25, `maxlevel`=25 WHERE `entry`=3872;
|
||||
|
||||
-- Shadowfang Moonwalker
|
||||
UPDATE `creature_template` SET `maxlevel`=20 WHERE `entry`=3853;
|
||||
|
||||
-- Shadowfang Wolfguard
|
||||
UPDATE `creature_template` SET `maxlevel`=21 WHERE `entry`=3854;
|
||||
|
||||
-- Shadowfang Darksoul
|
||||
UPDATE `creature_template` SET `minlevel`=20, `maxlevel`=21 WHERE `entry`=3855;
|
||||
|
||||
-- Shadowfang Glutton
|
||||
UPDATE `creature_template` SET `minlevel`=21, `maxlevel`=22 WHERE `entry`=3857;
|
||||
|
||||
-- Shadowfang Ragetooth
|
||||
UPDATE `creature_template` SET `minlevel`=23, `maxlevel`=24 WHERE `entry`=3859;
|
||||
|
||||
-- Bleak Worg
|
||||
UPDATE `creature_template` SET `maxlevel`=19 WHERE `entry`=3861;
|
||||
|
||||
-- Slavering Worg
|
||||
UPDATE `creature_template` SET `maxlevel`=19 WHERE `entry`=3862;
|
||||
|
||||
-- Lupine Horror
|
||||
UPDATE `creature_template` SET `minlevel`=24, `maxlevel`=25 WHERE `entry`=3863;
|
||||
|
||||
-- Fel Steed
|
||||
UPDATE `creature_template` SET `maxlevel`=20 WHERE `entry`=3864;
|
||||
|
||||
-- Vile Bat
|
||||
UPDATE `creature_template` SET `minlevel`=22, `maxlevel`=23 WHERE `entry`=3866;
|
||||
|
||||
-- Blood Seeker
|
||||
UPDATE `creature_template` SET `minlevel`=23, `maxlevel`=24 WHERE `entry`=3868;
|
||||
|
||||
-- Tormented Officer
|
||||
UPDATE `creature_template` SET `minlevel`=23, `maxlevel`=24 WHERE `entry`=3873;
|
||||
|
||||
-- Haunted Servitor
|
||||
UPDATE `creature_template` SET `minlevel`=20, `maxlevel`=21 WHERE `entry`=3875;
|
||||
|
||||
-- Wailing Guardsman
|
||||
UPDATE `creature_template` SET `minlevel`=21, `maxlevel`=22 WHERE `entry`=3877;
|
||||
|
||||
-- Razorclaw the Butcher
|
||||
UPDATE `creature_template` SET `minlevel`=22, `maxlevel`=22 WHERE `entry`=3886;
|
||||
|
||||
-- Baron Silverlaine
|
||||
UPDATE `creature_template` SET `minlevel`=24, `maxlevel`=24 WHERE `entry`=3887;
|
||||
|
||||
-- Wolf Master Nandos
|
||||
UPDATE `creature_template` SET `minlevel`=25, `maxlevel`=25 WHERE `entry`=3927;
|
||||
|
||||
-- Fenrus the Devourer
|
||||
UPDATE `creature_template` SET `minlevel`=25, `maxlevel`=25 WHERE `entry`=4274;
|
||||
|
||||
-- Archmage Arugal
|
||||
UPDATE `creature_template` SET `minlevel`=26, `maxlevel`=26 WHERE `entry`=4275;
|
||||
|
||||
-- Commander Springvale
|
||||
UPDATE `creature_template` SET `minlevel`=24, `maxlevel`=24 WHERE `entry`=4278;
|
||||
|
||||
-- Odo the Blindwatcher
|
||||
UPDATE `creature_template` SET `minlevel`=24, `maxlevel`=24 WHERE `entry`=4279;
|
||||
|
||||
-- Arugal's Voidwalker
|
||||
UPDATE `creature_template` SET `minlevel`=24, `maxlevel`=25 WHERE `entry`=4627;
|
||||
|
||||
-- Wolfguard Worg
|
||||
UPDATE `creature_template` SET `maxlevel`=21 WHERE `entry`=4627;
|
||||
14
sql/world/base/dungeon_the_deadmines.sql
Normal file
14
sql/world/base/dungeon_the_deadmines.sql
Normal file
@@ -0,0 +1,14 @@
|
||||
-- Defias Blackguard
|
||||
UPDATE `creature_template` SET `maxlevel`=20 WHERE `entry`=636;
|
||||
|
||||
-- Edwin VanCleef <Defias Kingpin>
|
||||
UPDATE `creature_template` SET `minlevel`=21, `maxlevel`=21 WHERE `entry`=639;
|
||||
|
||||
-- Defias Watchman
|
||||
UPDATE `creature_template` SET `minlevel`=16, `rank`=1 WHERE `entry`=1725;
|
||||
|
||||
-- Defias Squallshaper
|
||||
UPDATE `creature_template` SET `maxlevel`=20 WHERE `entry`=1732;
|
||||
|
||||
-- Miner Johnson
|
||||
UPDATE `creature_template` SET `faction`=14 WHERE `entry`=3586;
|
||||
29
sql/world/base/dungeon_the_stockades.sql
Normal file
29
sql/world/base/dungeon_the_stockades.sql
Normal file
@@ -0,0 +1,29 @@
|
||||
-- Dextren Ward
|
||||
UPDATE `creature_template` SET `minlevel`=26, `maxlevel`=26 WHERE `entry`=1663;
|
||||
|
||||
-- Kam Deepfury
|
||||
UPDATE `creature_template` SET `minlevel`=27, `maxlevel`=27 WHERE `entry`=1666;
|
||||
|
||||
-- Defias Prisoner
|
||||
UPDATE `creature_template` SET `maxlevel`=24, `faction`=17 WHERE `entry`=1706;
|
||||
|
||||
-- Defias Captive
|
||||
UPDATE `creature_template` SET `maxlevel`=24 WHERE `entry`=1707;
|
||||
|
||||
-- Defias Inmate
|
||||
UPDATE `creature_template` SET `minlevel`=24, `maxlevel`=25 WHERE `entry`=1708;
|
||||
|
||||
-- Defias Convict
|
||||
UPDATE `creature_template` SET `minlevel`=24, `maxlevel`=25 WHERE `entry`=1711;
|
||||
|
||||
-- Defias Insurgent
|
||||
UPDATE `creature_template` SET `minlevel`=25, `maxlevel`=26 WHERE `entry`=1715;
|
||||
|
||||
-- Bazil Thredd
|
||||
UPDATE `creature_template` SET `minlevel`=29, `maxlevel`=29 WHERE `entry`=1716;
|
||||
|
||||
-- Hamhock
|
||||
UPDATE `creature_template` SET `minlevel`=28, `maxlevel`=28 WHERE `entry`=1717;
|
||||
|
||||
-- Bruegal Ironknuckle
|
||||
UPDATE `creature_template` SET `minlevel`=26, `maxlevel`=26 WHERE `entry`=1720;
|
||||
35
sql/world/base/dungeon_wailing_caverns.sql
Normal file
35
sql/world/base/dungeon_wailing_caverns.sql
Normal file
@@ -0,0 +1,35 @@
|
||||
-- Mutanus the Devourer
|
||||
UPDATE `creature_template` SET `minlevel`=22, `maxlevel`=22 WHERE `entry`=3654;
|
||||
|
||||
-- Lord Pythas
|
||||
UPDATE `creature_template` SET `minlevel`=21, `maxlevel`=21 WHERE `entry`=3670;
|
||||
|
||||
-- Lord Serpentis
|
||||
UPDATE `creature_template` SET `minlevel`=21, `maxlevel`=21 WHERE `entry`=3673;
|
||||
|
||||
-- Skum
|
||||
UPDATE `creature_template` SET `minlevel`=21, `maxlevel`=21 WHERE `entry`=3674;
|
||||
|
||||
-- Druid of the Fang
|
||||
UPDATE `creature_template` SET `maxlevel`=20 WHERE `entry`=3840;
|
||||
|
||||
-- Deviate Lasher
|
||||
UPDATE `creature_template` SET `maxlevel`=20 WHERE `entry`=5055;
|
||||
|
||||
-- Deviate Dreadfang
|
||||
UPDATE `creature_template` SET `minlevel`=20, `maxlevel`=21 WHERE `entry`=5056;
|
||||
|
||||
-- Deviate Viper
|
||||
UPDATE `creature_template` SET `maxlevel`=20 WHERE `entry`=5755;
|
||||
|
||||
-- Deviate Venomwing
|
||||
UPDATE `creature_template` SET `minlevel`=20, `maxlevel`=21 WHERE `entry`=5756;
|
||||
|
||||
-- Deviate Shambler
|
||||
UPDATE `creature_template` SET `maxlevel`=20 WHERE `entry`=5761;
|
||||
|
||||
-- Verdan the Everliving
|
||||
UPDATE `creature_template` SET `minlevel`=21, `maxlevel`=21 WHERE `entry`=5775;
|
||||
|
||||
-- Deviate Faerie Dragon
|
||||
UPDATE `creature_template` SET `minlevel`=20, `maxlevel`=20, `faction`=32 WHERE `entry`=5912;
|
||||
5
sql/world/base/ipp_aware_npcs.sql
Normal file
5
sql/world/base/ipp_aware_npcs.sql
Normal file
@@ -0,0 +1,5 @@
|
||||
UPDATE `creature_template` SET `ScriptName` = 'npc_ipp_tbc' WHERE `entry` IN (16841, 19254, 16840);
|
||||
|
||||
UPDATE `creature_template` SET `ScriptName` = 'npc_ipp_aq' WHERE `entry` IN (15293,15270,15306,15191,15181,15182,15306,15599,15282,15183,15194,15176,15270,16091,15701,15612,15613,15609,15540,15704,15693,15431,15903,15610,15180, 15499);
|
||||
|
||||
UPDATE `gameobject_template` SET `ScriptName` = 'gobject_ipp_tbc' WHERE `entry` IN (195141);
|
||||
3
sql/world/base/item_changes.sql
Normal file
3
sql/world/base/item_changes.sql
Normal file
@@ -0,0 +1,3 @@
|
||||
-- Restore rep requirement to Mantle of the Dawn
|
||||
UPDATE item_template SET RequiredReputationFaction=529, RequiredReputationRank=6 WHERE entry IN (18169, 18170, 18171, 18172, 18173);
|
||||
UPDATE item_template SET RequiredReputationFaction=529, RequiredReputationRank=7 WHERE entry=18182;
|
||||
228
sql/world/base/mounts_and_riding.sql
Normal file
228
sql/world/base/mounts_and_riding.sql
Normal file
@@ -0,0 +1,228 @@
|
||||
-- Re-enable Summon Felsteed (Warlock)
|
||||
DELETE FROM `disables`WHERE `sourceType`=1 AND `entry` IN (3631, 4487, 4488, 4489, 4490);
|
||||
|
||||
-- Remove incorrect mail about riding which doesn't match Vanilla levels
|
||||
DELETE FROM `mail_level_reward` WHERE `level` <= 60;
|
||||
|
||||
|
||||
-- Riding Skills
|
||||
UPDATE npc_trainer SET ReqLevel=40 WHERE SpellID=33388;
|
||||
UPDATE npc_trainer SET MoneyCost=800000 WHERE SpellID=33388;
|
||||
UPDATE npc_trainer SET ReqLevel=60 WHERE SpellID=33391;
|
||||
UPDATE npc_trainer SET MoneyCost=10000000 WHERE SpellID=33391;
|
||||
UPDATE npc_trainer SET ReqLevel=70 WHERE SpellID=34090;
|
||||
UPDATE npc_trainer SET MoneyCost=6000000 WHERE SpellID=34090;
|
||||
DELETE FROM npc_trainer WHERE SpellID=23214;
|
||||
DELETE FROM npc_trainer WHERE SpellID=34767;
|
||||
DELETE FROM npc_trainer WHERE SpellID=23161;
|
||||
UPDATE npc_trainer SET ReqLevel=40 WHERE SpellID=13820;
|
||||
UPDATE npc_trainer SET ReqLevel=40 WHERE SpellID=34768;
|
||||
UPDATE npc_trainer SET ReqLevel=40 WHERE SpellID=1710;
|
||||
UPDATE npc_trainer SET ReqLevel=68 WHERE SpellID=33950;
|
||||
|
||||
/* -------------------------------------------------------------- */
|
||||
/* Riding Items */
|
||||
/* -------------------------------------------------------------- */
|
||||
|
||||
-- Apprentice Riding
|
||||
-- Horn of the Timber Wolf
|
||||
UPDATE `item_template` SET `BuyPrice`=100000, `SellPrice`=0, `ItemLevel`=40, `RequiredLevel`=40, `spellid_1`=580, `spellcharges_1`=0, `spellcategory_1`=330, `spellcategorycooldown_1`=3000, `spellid_2`=0, `spelltrigger_2`=0, `description`='' WHERE `entry`=1132;
|
||||
-- Black Stallion Bridle
|
||||
UPDATE `item_template` SET `BuyPrice`=100000, `SellPrice`=0, `ItemLevel`=40, `RequiredLevel`=40, `spellid_1`=470, `spellcharges_1`=0, `spellcategory_1`=330, `spellcategorycooldown_1`=3000, `spellid_2`=0, `spelltrigger_2`=0, `description`='' WHERE `entry`=2411;
|
||||
-- Pinto Bridle
|
||||
UPDATE `item_template` SET `BuyPrice`=100000, `SellPrice`=0, `ItemLevel`=40, `RequiredLevel`=40, `spellid_1`=472, `spellcharges_1`=0, `spellcategory_1`=330, `spellcategorycooldown_1`=3000, `spellid_2`=0, `spelltrigger_2`=0, `description`='' WHERE `entry`=2414;
|
||||
-- Chestnut Mare Bridle
|
||||
UPDATE `item_template` SET `BuyPrice`=100000, `SellPrice`=0, `ItemLevel`=40, `RequiredLevel`=40, `spellid_1`=6648, `spellcharges_1`=0, `spellcategory_1`=330, `spellcategorycooldown_1`=3000, `spellid_2`=0, `spelltrigger_2`=0, `description`='' WHERE `entry`=5655;
|
||||
-- Brown Horse Bridle
|
||||
UPDATE `item_template` SET `BuyPrice`=100000, `SellPrice`=0, `ItemLevel`=40, `RequiredLevel`=40, `spellid_1`=458, `spellcharges_1`=0, `spellcategory_1`=330, `spellcategorycooldown_1`=3000, `spellid_2`=0, `spelltrigger_2`=0, `description`='' WHERE `entry`=5656;
|
||||
-- Horn of the Dire Wolf
|
||||
UPDATE `item_template` SET `BuyPrice`=100000, `SellPrice`=0, `ItemLevel`=40, `RequiredLevel`=40, `spellid_1`=6653, `spellcharges_1`=0, `spellcategory_1`=330, `spellcategorycooldown_1`=3000, `spellid_2`=0, `spelltrigger_2`=0, `description`='' WHERE `entry`=5665;
|
||||
-- Horn of the Brown Wolf
|
||||
UPDATE `item_template` SET `BuyPrice`=100000, `SellPrice`=0, `ItemLevel`=40, `RequiredLevel`=40, `spellid_1`=6654, `spellcharges_1`=0, `spellcategory_1`=330, `spellcategorycooldown_1`=3000, `spellid_2`=0, `spelltrigger_2`=0, `description`='' WHERE `entry`=5668;
|
||||
-- Gray Ram
|
||||
UPDATE `item_template` SET `BuyPrice`=100000, `SellPrice`=0, `ItemLevel`=40, `RequiredLevel`=40, `spellid_1`=6777, `spellcharges_1`=0, `spellcategory_1`=330, `spellcategorycooldown_1`=3000, `spellid_2`=0, `spelltrigger_2`=0, `description`='' WHERE `entry`=5864;
|
||||
-- Brown Ram
|
||||
UPDATE `item_template` SET `BuyPrice`=100000, `SellPrice`=0, `ItemLevel`=40, `RequiredLevel`=40, `spellid_1`=6899, `spellcharges_1`=0, `spellcategory_1`=330, `spellcategorycooldown_1`=3000, `spellid_2`=0, `spelltrigger_2`=0, `description`='' WHERE `entry`=5872;
|
||||
-- White Ram
|
||||
UPDATE `item_template` SET `BuyPrice`=100000, `SellPrice`=0, `ItemLevel`=40, `RequiredLevel`=40, `spellid_1`=6898, `spellcharges_1`=0, `spellcategory_1`=330, `spellcategorycooldown_1`=3000, `spellid_2`=0, `spelltrigger_2`=0, `description`='' WHERE `entry`=5873;
|
||||
-- Red Mechanostrider
|
||||
UPDATE `item_template` SET `BuyPrice`=100000, `SellPrice`=0, `ItemLevel`=40, `RequiredLevel`=40, `spellid_1`=10873, `spellcharges_1`=0, `spellcategory_1`=330, `spellcategorycooldown_1`=3000, `spellid_2`=0, `spelltrigger_2`=0, `description`='' WHERE `entry`=8563;
|
||||
-- Whistle of the Emerald Raptor
|
||||
UPDATE `item_template` SET `BuyPrice`=100000, `SellPrice`=0, `ItemLevel`=40, `RequiredLevel`=40, `spellid_1`=8395, `spellcharges_1`=0, `spellcategory_1`=330, `spellcategorycooldown_1`=3000, `spellid_2`=0, `spelltrigger_2`=0, `description`='' WHERE `entry`=8588;
|
||||
-- Whistle of the Turquoise Raptor
|
||||
UPDATE `item_template` SET `BuyPrice`=100000, `SellPrice`=0, `ItemLevel`=40, `RequiredLevel`=40, `spellid_1`=10796, `spellcharges_1`=0, `spellcategory_1`=330, `spellcategorycooldown_1`=3000, `spellid_2`=0, `spelltrigger_2`=0, `description`='' WHERE `entry`=8591;
|
||||
-- Whistle of the Violet Raptor
|
||||
UPDATE `item_template` SET `BuyPrice`=100000, `SellPrice`=0, `ItemLevel`=40, `RequiredLevel`=40, `spellid_1`=10799, `spellcharges_1`=0, `spellcategory_1`=330, `spellcategorycooldown_1`=3000, `spellid_2`=0, `spelltrigger_2`=0, `description`='' WHERE `entry`=8592;
|
||||
-- Blue Mechanostrider
|
||||
UPDATE `item_template` SET `BuyPrice`=100000, `SellPrice`=0, `ItemLevel`=40, `RequiredLevel`=40, `spellid_1`=10969, `spellcharges_1`=0, `spellcategory_1`=330, `spellcategorycooldown_1`=3000, `spellid_2`=0, `spelltrigger_2`=0, `description`='' WHERE `entry`=8595;
|
||||
-- Reins of the Striped Nightsaber
|
||||
UPDATE `item_template` SET `BuyPrice`=100000, `SellPrice`=0, `ItemLevel`=40, `RequiredLevel`=40, `spellid_1`=10793, `spellcharges_1`=0, `spellcategory_1`=330, `spellcategorycooldown_1`=3000, `spellid_2`=0, `spelltrigger_2`=0, `description`='' WHERE `entry`=8629;
|
||||
-- Reins of the Striped Frostsaber
|
||||
UPDATE `item_template` SET `BuyPrice`=100000, `SellPrice`=0, `ItemLevel`=40, `RequiredLevel`=40, `spellid_1`=8394, `spellcharges_1`=0, `spellcategory_1`=330, `spellcategorycooldown_1`=3000, `spellid_2`=0, `spelltrigger_2`=0, `description`='' WHERE `entry`=8631;
|
||||
-- Reins of the Spotted Frostsaber
|
||||
UPDATE `item_template` SET `BuyPrice`=100000, `SellPrice`=0, `ItemLevel`=40, `RequiredLevel`=40, `spellid_1`=10789, `spellcharges_1`=0, `spellcategory_1`=330, `spellcategorycooldown_1`=3000, `spellid_2`=0, `spelltrigger_2`=0, `description`='' WHERE `entry`=8632;
|
||||
-- Reins of the Winterspring Frostsaber
|
||||
UPDATE `item_template` SET `BuyPrice`=10000000, `SellPrice`=0, `ItemLevel`=40, `RequiredLevel`=40, `spellid_1`=17229, `spellcharges_1`=0, `spellcategory_1`=330, `spellcategorycooldown_1`=3000, `spellid_2`=0, `spelltrigger_2`=0, `description`='' WHERE `entry`=13086;
|
||||
-- Green Mechanostrider
|
||||
UPDATE `item_template` SET `BuyPrice`=100000, `SellPrice`=0, `ItemLevel`=40, `RequiredLevel`=40, `spellid_1`=17453, `spellcharges_1`=0, `spellcategory_1`=330, `spellcategorycooldown_1`=3000, `spellid_2`=0, `spelltrigger_2`=0, `description`='' WHERE `entry`=13321;
|
||||
-- Unpainted Mechanostrider
|
||||
UPDATE `item_template` SET `BuyPrice`=100000, `SellPrice`=0, `ItemLevel`=40, `RequiredLevel`=40, `spellid_1`=17454, `spellcharges_1`=0, `spellcategory_1`=330, `spellcategorycooldown_1`=3000, `spellid_2`=0, `spelltrigger_2`=0, `description`='' WHERE `entry`=13322;
|
||||
-- Fluorescent Green Mechanostrider
|
||||
UPDATE `item_template` SET `BuyPrice`=0, `SellPrice`=0, `ItemLevel`=40, `RequiredLevel`=40, `spellid_1`=17458, `spellcharges_1`=0, `spellcategory_1`=330, `spellcategorycooldown_1`=3000, `spellid_2`=0, `spelltrigger_2`=0, `description`='' WHERE `entry`=13325;
|
||||
-- Red Skeletal Horse
|
||||
UPDATE `item_template` SET `BuyPrice`=100000, `SellPrice`=0, `ItemLevel`=40, `RequiredLevel`=40, `spellid_1`=17462, `spellcharges_1`=0, `spellcategory_1`=330, `spellcategorycooldown_1`=3000, `spellid_2`=0, `spelltrigger_2`=0, `description`='' WHERE `entry`=13331;
|
||||
-- Blue Skeletal Horse
|
||||
UPDATE `item_template` SET `BuyPrice`=100000, `SellPrice`=0, `ItemLevel`=40, `RequiredLevel`=40, `spellid_1`=17463, `spellcharges_1`=0, `spellcategory_1`=330, `spellcategorycooldown_1`=3000, `spellid_2`=0, `spelltrigger_2`=0, `description`='' WHERE `entry`=13332;
|
||||
-- Brown Skeletal Horse
|
||||
UPDATE `item_template` SET `BuyPrice`=100000, `SellPrice`=0, `ItemLevel`=40, `RequiredLevel`=40, `spellid_1`=17464, `spellcharges_1`=0, `spellcategory_1`=330, `spellcategorycooldown_1`=3000, `spellid_2`=0, `spelltrigger_2`=0, `description`='' WHERE `entry`=13333;
|
||||
-- Gray Kodo
|
||||
UPDATE `item_template` SET `BuyPrice`=100000, `SellPrice`=0, `ItemLevel`=40, `RequiredLevel`=40, `spellid_1`=18989, `spellcharges_1`=0, `spellcategory_1`=330, `spellcategorycooldown_1`=3000, `spellid_2`=0, `spelltrigger_2`=0, `description`='' WHERE `entry`=15277;
|
||||
-- Brown Kodo
|
||||
UPDATE `item_template` SET `BuyPrice`=100000, `SellPrice`=0, `ItemLevel`=40, `RequiredLevel`=40, `spellid_1`=18990, `spellcharges_1`=0, `spellcategory_1`=330, `spellcategorycooldown_1`=3000, `spellid_2`=0, `spelltrigger_2`=0, `description`='' WHERE `entry`=15290;
|
||||
-- Black War Steed Bridle
|
||||
UPDATE `item_template` SET `BuyPrice`=0, `SellPrice`=0, `ItemLevel`=40, `RequiredLevel`=40, `spellid_1`=22717, `spellcharges_1`=0, `spellcategory_1`=330, `spellcategorycooldown_1`=3000, `spellid_2`=0, `spelltrigger_2`=0, `description`='' WHERE `entry`=18241;
|
||||
-- Reins of the Black War Tiger
|
||||
UPDATE `item_template` SET `BuyPrice`=0, `SellPrice`=0, `ItemLevel`=40, `RequiredLevel`=40, `spellid_1`=22723, `spellcharges_1`=0, `spellcategory_1`=330, `spellcategorycooldown_1`=3000, `spellid_2`=0, `spelltrigger_2`=0, `description`='' WHERE `entry`=18242;
|
||||
-- Black Battlestrider
|
||||
UPDATE `item_template` SET `BuyPrice`=0, `SellPrice`=0, `ItemLevel`=40, `RequiredLevel`=40, `spellid_1`=22719, `spellcharges_1`=0, `spellcategory_1`=330, `spellcategorycooldown_1`=3000, `spellid_2`=0, `spelltrigger_2`=0, `description`='' WHERE `entry`=18243;
|
||||
-- Black War Ram
|
||||
UPDATE `item_template` SET `BuyPrice`=0, `SellPrice`=0, `ItemLevel`=40, `RequiredLevel`=40, `spellid_1`=22720, `spellcharges_1`=0, `spellcategory_1`=330, `spellcategorycooldown_1`=3000, `spellid_2`=0, `spelltrigger_2`=0, `description`='' WHERE `entry`=18244;
|
||||
-- Horn of the Black War Wolf
|
||||
UPDATE `item_template` SET `BuyPrice`=0, `SellPrice`=0, `ItemLevel`=40, `RequiredLevel`=40, `spellid_1`=22724, `spellcharges_1`=0, `spellcategory_1`=330, `spellcategorycooldown_1`=3000, `spellid_2`=0, `spelltrigger_2`=0, `description`='' WHERE `entry`=18245;
|
||||
-- Whistle of the Black War Raptor
|
||||
UPDATE `item_template` SET `BuyPrice`=0, `SellPrice`=0, `ItemLevel`=40, `RequiredLevel`=40, `spellid_1`=22721, `spellcharges_1`=0, `spellcategory_1`=330, `spellcategorycooldown_1`=3000, `spellid_2`=0, `spelltrigger_2`=0, `description`='' WHERE `entry`=18246;
|
||||
-- Black War Kodo
|
||||
UPDATE `item_template` SET `BuyPrice`=0, `SellPrice`=0, `ItemLevel`=40, `RequiredLevel`=40, `spellid_1`=22718, `spellcharges_1`=0, `spellcategory_1`=330, `spellcategorycooldown_1`=3000, `spellid_2`=0, `spelltrigger_2`=0, `description`='' WHERE `entry`=18247;
|
||||
-- Red Skeletal Warhorse
|
||||
UPDATE `item_template` SET `ItemLevel`=40, `RequiredLevel`=40, `spellid_1`=22722, `spellcharges_1`=0, `spellcategory_1`=330, `spellcategorycooldown_1`=3000, `spellid_2`=0, `spelltrigger_2`=0, `description`='' WHERE `entry`=18248;
|
||||
-- Blue Qiraji Resonating Crystal
|
||||
UPDATE `item_template` SET `BuyPrice`=10000000, `SellPrice`=0, `ItemLevel`=40, `RequiredLevel`=40, `spellid_1`=25953, `spellcharges_1`=0, `spellcategory_1`=330, `spellcategorycooldown_1`=3000, `spellid_2`=0, `spelltrigger_2`=0, `description`='' WHERE `entry`=21218;
|
||||
-- Red Qiraji Resonating Crystal
|
||||
UPDATE `item_template` SET `BuyPrice`=10000000, `SellPrice`=0, `ItemLevel`=40, `RequiredLevel`=40, `spellid_1`=26054, `spellcharges_1`=0, `spellcategory_1`=330, `spellcategorycooldown_1`=3000, `spellid_2`=0, `spelltrigger_2`=0, `description`='' WHERE `entry`=21321;
|
||||
-- Green Qiraji Resonating Crystal
|
||||
UPDATE `item_template` SET `BuyPrice`=10000000, `SellPrice`=0, `ItemLevel`=40, `RequiredLevel`=40, `spellid_1`=26056, `spellcharges_1`=0, `spellcategory_1`=330, `spellcategorycooldown_1`=3000, `spellid_2`=0, `spelltrigger_2`=0, `description`='' WHERE `entry`=21323;
|
||||
-- Yellow Qiraji Resonating Crystal
|
||||
UPDATE `item_template` SET `BuyPrice`=10000000, `SellPrice`=0, `ItemLevel`=40, `RequiredLevel`=40, `spellid_1`=26055, `spellcharges_1`=0, `spellcategory_1`=330, `spellcategorycooldown_1`=3000, `spellid_2`=0, `spelltrigger_2`=0, `description`='' WHERE `entry`=21324;
|
||||
-- Brewfest Ram
|
||||
UPDATE `item_template` SET `BuyPrice`=1000000, `SellPrice`=0, `ItemLevel`=40, `RequiredLevel`=40, `spellid_1`=43899, `spellcharges_1`=0, `spellcategory_1`=330, `spellcategorycooldown_1`=3000, `spellid_2`=0, `spelltrigger_2`=0, `description`='' WHERE `entry`=33976;
|
||||
-- Horn of the Black Wolf
|
||||
UPDATE `item_template` SET `BuyPrice`=100000, `SellPrice`=0, `ItemLevel`=40, `RequiredLevel`=40, `spellid_1`=64658, `spellcharges_1`=0, `spellcategory_1`=330, `spellcategorycooldown_1`=3000, `spellid_2`=0, `spelltrigger_2`=0, `description`='' WHERE `entry`=46099;
|
||||
-- White Kodo
|
||||
UPDATE `item_template` SET `BuyPrice`=100000, `SellPrice`=0, `ItemLevel`=40, `RequiredLevel`=40, `spellid_1`=64657, `spellcharges_1`=0, `spellcategory_1`=330, `spellcategorycooldown_1`=3000, `spellid_2`=0, `spelltrigger_2`=0, `description`='' WHERE `entry`=46100;
|
||||
-- Black Skeletal Horse
|
||||
UPDATE `item_template` SET `BuyPrice`=100000, `SellPrice`=0, `ItemLevel`=40, `RequiredLevel`=40, `spellid_1`=64977, `spellcharges_1`=0, `spellcategory_1`=330, `spellcategorycooldown_1`=3000, `spellid_2`=0, `spelltrigger_2`=0, `description`='' WHERE `entry`=46308;
|
||||
-- Reins of the Striped Dawnsaber
|
||||
UPDATE `item_template` SET `BuyPrice`=100000, `SellPrice`=0, `ItemLevel`=40, `RequiredLevel`=40, `spellid_1`=66847, `spellcharges_1`=0, `spellcategory_1`=330, `spellcategorycooldown_1`=3000, `spellid_2`=0, `spelltrigger_2`=0, `description`='' WHERE `entry`=47100;
|
||||
|
||||
-- Journeyman Riding
|
||||
-- Whistle of the Mottled Red Raptor
|
||||
UPDATE `item_template` SET `BuyPrice`=10000000, `SellPrice`=0, `ItemLevel`=60, `RequiredLevel`=60, `spellid_1`=16084, `spellcharges_1`=0, `spellcategory_1`=330, `spellcategorycooldown_1`=3000, `spellid_2`=0, `spelltrigger_2`=0, `description`='' WHERE `entry`=8586;
|
||||
-- Reins of the Ancient Frostsaber
|
||||
UPDATE `item_template` SET `BuyPrice`=10000000, `SellPrice`=0, `ItemLevel`=60, `RequiredLevel`=60, `spellid_1`=16056, `spellcharges_1`=0, `spellcategory_1`=330, `spellcategorycooldown_1`=3000, `spellid_2`=0, `spelltrigger_2`=0, `description`='' WHERE `entry`=12302;
|
||||
-- Reins of the Nightsaber
|
||||
UPDATE `item_template` SET `BuyPrice`=10000000, `SellPrice`=0, `ItemLevel`=60, `RequiredLevel`=60, `spellid_1`=16055, `spellcharges_1`=0, `spellcategory_1`=330, `spellcategorycooldown_1`=3000, `spellid_2`=0, `spelltrigger_2`=0, `description`='' WHERE `entry`=12303;
|
||||
-- Horn of the Red Wolf
|
||||
UPDATE `item_template` SET `BuyPrice`=10000000, `SellPrice`=0, `ItemLevel`=60, `RequiredLevel`=60, `spellid_1`=16080, `spellcharges_1`=0, `spellcategory_1`=330, `spellcategorycooldown_1`=3000, `spellid_2`=0, `spelltrigger_2`=0, `description`='' WHERE `entry`=12330;
|
||||
-- Horn of the Arctic Wolf
|
||||
UPDATE `item_template` SET `BuyPrice`=10000000, `SellPrice`=0, `ItemLevel`=60, `RequiredLevel`=60, `spellid_1`=16081, `spellcharges_1`=0, `spellcategory_1`=330, `spellcategorycooldown_1`=3000, `spellid_2`=0, `spelltrigger_2`=0, `description`='' WHERE `entry`=12351;
|
||||
-- White Stallion Bridle
|
||||
UPDATE `item_template` SET `BuyPrice`=10000000, `SellPrice`=0, `ItemLevel`=60, `RequiredLevel`=60, `spellid_1`=16083, `spellcharges_1`=0, `spellcategory_1`=330, `spellcategorycooldown_1`=3000, `spellid_2`=0, `spelltrigger_2`=0, `description`='' WHERE `entry`=12353;
|
||||
-- Palomino Bridle
|
||||
UPDATE `item_template` SET `BuyPrice`=10000000, `ItemLevel`=60, `RequiredLevel`=60, `spellid_1`=16082, `spellcharges_1`=0, `spellcategory_1`=330, `spellcategorycooldown_1`=3000, `spellid_2`=0, `spelltrigger_2`=0, `description`='' WHERE `entry`=12354;
|
||||
-- Whistle of the Ivory Raptor
|
||||
UPDATE `item_template` SET `BuyPrice`=10000000, `ItemLevel`=60, `RequiredLevel`=60, `spellid_1`=17450, `spellcharges_1`=0, `spellcategory_1`=330, `spellcategorycooldown_1`=3000, `spellid_2`=0, `spelltrigger_2`=0, `description`='' WHERE `entry`=13317;
|
||||
-- White Mechanostrider Mod B
|
||||
UPDATE `item_template` SET `BuyPrice`=10000000, `ItemLevel`=60, `RequiredLevel`=60, `spellid_1`=15779, `spellcharges_1`=0, `spellcategory_1`=330, `spellcategorycooldown_1`=3000, `spellid_2`=0, `spelltrigger_2`=0, `description`='' WHERE `entry`=13326;
|
||||
-- Icy Blue Mechanostrider Mod A
|
||||
UPDATE `item_template` SET `BuyPrice`=10000000, `ItemLevel`=60, `RequiredLevel`=60, `spellid_1`=17459, `spellcharges_1`=0, `spellcategory_1`=330, `spellcategorycooldown_1`=3000, `spellid_2`=0, `spelltrigger_2`=0, `description`='' WHERE `entry`=13327;
|
||||
-- Black Ram
|
||||
UPDATE `item_template` SET `BuyPrice`=10000000, `ItemLevel`=60, `RequiredLevel`=60, `spellid_1`=17461, `spellcharges_1`=0, `spellcategory_1`=330, `spellcategorycooldown_1`=3000, `spellid_2`=0, `spelltrigger_2`=0, `description`='' WHERE `entry`=13328;
|
||||
-- Frost Ram
|
||||
UPDATE `item_template` SET `BuyPrice`=10000000, `ItemLevel`=60, `RequiredLevel`=60, `spellid_1`=17460, `spellcharges_1`=0, `spellcategory_1`=330, `spellcategorycooldown_1`=3000, `spellid_2`=0, `spelltrigger_2`=0, `description`='' WHERE `entry`=13329;
|
||||
-- Green Skeletal Warhorse
|
||||
UPDATE `item_template` SET `BuyPrice`=1000000, `SellPrice`=0, `ItemLevel`=60, `RequiredLevel`=60, `spellid_1`=17465, `spellcharges_1`=0, `spellcategory_1`=330, `spellcategorycooldown_1`=3000, `spellid_2`=0, `spelltrigger_2`=0, `description`='' WHERE `entry`=13334;
|
||||
-- Deathcharger's Reins
|
||||
UPDATE `item_template` SET `BuyPrice`=10000000, `SellPrice`=0, `ItemLevel`=60, `RequiredLevel`=60, `spellid_1`=17481, `spellcharges_1`=0, `spellcategory_1`=330, `spellcategorycooldown_1`=3000, `spellid_2`=0, `spelltrigger_2`=0, `description`='' WHERE `entry`=13335;
|
||||
-- Green Kodo
|
||||
UPDATE `item_template` SET `BuyPrice`=10000000, `SellPrice`=0, `ItemLevel`=60, `RequiredLevel`=60, `spellid_1`=18991, `spellcharges_1`=0, `spellcategory_1`=330, `spellcategorycooldown_1`=3000, `spellid_2`=0, `spelltrigger_2`=0, `description`='' WHERE `entry`=15292;
|
||||
-- Teal Kodo
|
||||
UPDATE `item_template` SET `BuyPrice`=10000000, `SellPrice`=0, `ItemLevel`=60, `RequiredLevel`=60, `spellid_1`=18992, `spellcharges_1`=0, `spellcategory_1`=330, `spellcategorycooldown_1`=3000, `spellid_2`=0, `spelltrigger_2`=0, `description`='' WHERE `entry`=15293;
|
||||
-- Reins of the Swift Frostsaber
|
||||
UPDATE `item_template` SET `BuyPrice`=1000000, `SellPrice`=0, `ItemLevel`=60, `RequiredLevel`=60, `spellid_1`=23221, `spellcharges_1`=0, `spellcategory_1`=330, `spellcategorycooldown_1`=3000, `spellid_2`=0, `spelltrigger_2`=0, `description`='' WHERE `entry`=18766;
|
||||
-- Reins of the Swift Mistsaber
|
||||
UPDATE `item_template` SET `BuyPrice`=1000000, `SellPrice`=0, `ItemLevel`=60, `RequiredLevel`=60, `spellid_1`=23219, `spellcharges_1`=0, `spellcategory_1`=330, `spellcategorycooldown_1`=3000, `spellid_2`=0, `spelltrigger_2`=0, `description`='' WHERE `entry`=18767;
|
||||
-- Swift Green Mechanostrider
|
||||
UPDATE `item_template` SET `BuyPrice`=1000000, `SellPrice`=0, `ItemLevel`=60, `RequiredLevel`=60, `spellid_1`=23225, `spellcharges_1`=0, `spellcategory_1`=330, `spellcategorycooldown_1`=3000, `spellid_2`=0, `spelltrigger_2`=0, `description`='' WHERE `entry`=18772;
|
||||
-- Swift White Mechanostrider
|
||||
UPDATE `item_template` SET `BuyPrice`=1000000, `SellPrice`=0, `ItemLevel`=60, `RequiredLevel`=60, `spellid_1`=23223, `spellcharges_1`=0, `spellcategory_1`=330, `spellcategorycooldown_1`=3000, `spellid_2`=0, `spelltrigger_2`=0, `description`='' WHERE `entry`=18773;
|
||||
-- Swift Yellow Mechanostrider
|
||||
UPDATE `item_template` SET `BuyPrice`=1000000, `SellPrice`=0, `ItemLevel`=60, `RequiredLevel`=60, `spellid_1`=23222, `spellcharges_1`=0, `spellcategory_1`=330, `spellcategorycooldown_1`=3000, `spellid_2`=0, `spelltrigger_2`=0, `description`='' WHERE `entry`=18774;
|
||||
-- Swift Palomino
|
||||
UPDATE `item_template` SET `BuyPrice`=1000000, `SellPrice`=0, `ItemLevel`=60, `RequiredLevel`=60, `spellid_1`=23227, `spellcharges_1`=0, `spellcategory_1`=330, `spellcategorycooldown_1`=3000, `spellid_2`=0, `spelltrigger_2`=0, `description`='' WHERE `entry`=18776;
|
||||
-- Swift Brown Steed
|
||||
UPDATE `item_template` SET `BuyPrice`=1000000, `SellPrice`=0, `ItemLevel`=60, `RequiredLevel`=60, `spellid_1`=23229, `spellcharges_1`=0, `spellcategory_1`=330, `spellcategorycooldown_1`=3000, `spellid_2`=0, `spelltrigger_2`=0, `description`='' WHERE `entry`=18777;
|
||||
-- Swift White Steed
|
||||
UPDATE `item_template` SET `BuyPrice`=1000000, `SellPrice`=0, `ItemLevel`=60, `RequiredLevel`=60, `spellid_1`=23228, `spellcharges_1`=0, `spellcategory_1`=330, `spellcategorycooldown_1`=3000, `spellid_2`=0, `spelltrigger_2`=0, `description`='' WHERE `entry`=18778;
|
||||
-- Swift White Ram
|
||||
UPDATE `item_template` SET `BuyPrice`=1000000, `SellPrice`=0, `ItemLevel`=60, `RequiredLevel`=60, `spellid_1`=23240, `spellcharges_1`=0, `spellcategory_1`=330, `spellcategorycooldown_1`=3000, `spellid_2`=0, `spelltrigger_2`=0, `description`='' WHERE `entry`=18785;
|
||||
-- Swift Brown Ram
|
||||
UPDATE `item_template` SET `BuyPrice`=1000000, `SellPrice`=0, `ItemLevel`=60, `RequiredLevel`=60, `spellid_1`=23238, `spellcharges_1`=0, `spellcategory_1`=330, `spellcategorycooldown_1`=3000, `spellid_2`=0, `spelltrigger_2`=0, `description`='' WHERE `entry`=18786;
|
||||
-- Swift Gray Ram
|
||||
UPDATE `item_template` SET `BuyPrice`=1000000, `SellPrice`=0, `ItemLevel`=60, `RequiredLevel`=60, `spellid_1`=23239, `spellcharges_1`=0, `spellcategory_1`=330, `spellcategorycooldown_1`=3000, `spellid_2`=0, `spelltrigger_2`=0, `description`='' WHERE `entry`=18787;
|
||||
-- Swift Blue Raptor
|
||||
UPDATE `item_template` SET `BuyPrice`=1000000, `SellPrice`=0, `ItemLevel`=60, `RequiredLevel`=60, `spellid_1`=23241, `spellcharges_1`=0, `spellcategory_1`=330, `spellcategorycooldown_1`=3000, `spellid_2`=0, `spelltrigger_2`=0, `description`='' WHERE `entry`=18788;
|
||||
-- Swift Olive Raptor
|
||||
UPDATE `item_template` SET `BuyPrice`=1000000, `SellPrice`=0, `ItemLevel`=60, `RequiredLevel`=60, `spellid_1`=23242, `spellcharges_1`=0, `spellcategory_1`=330, `spellcategorycooldown_1`=3000, `spellid_2`=0, `spelltrigger_2`=0, `description`='' WHERE `entry`=18789;
|
||||
-- Swift Orange Raptor
|
||||
UPDATE `item_template` SET`BuyPrice`=1000000, `SellPrice`=0, `ItemLevel`=60, `RequiredLevel`=60, `spellid_1`=23243, `spellcharges_1`=0, `spellcategory_1`=330, `spellcategorycooldown_1`=3000, `spellid_2`=0, `spelltrigger_2`=0, `description`='' WHERE `entry`=18790;
|
||||
-- Purple Skeletal Warhorse
|
||||
UPDATE `item_template` SET `BuyPrice`=1000000, `SellPrice`=0, `ItemLevel`=60, `RequiredLevel`=60, `spellid_1`=23246, `spellcharges_1`=0, `spellcategory_1`=330, `spellcategorycooldown_1`=3000, `spellid_2`=0, `spelltrigger_2`=0, `description`='' WHERE `entry`=18791;
|
||||
-- Great White Kodo
|
||||
UPDATE `item_template` SET `BuyPrice`=1000000, `SellPrice`=0, `ItemLevel`=60, `RequiredLevel`=60, `spellid_1`=23247, `spellcharges_1`=0, `spellcategory_1`=330, `spellcategorycooldown_1`=3000, `spellid_2`=0, `spelltrigger_2`=0, `description`='' WHERE `entry`=18793;
|
||||
-- Great Brown Kodo
|
||||
UPDATE `item_template` SET `BuyPrice`=1000000, `SellPrice`=0, `ItemLevel`=60, `RequiredLevel`=60, `spellid_1`=23249, `spellcharges_1`=0, `spellcategory_1`=330, `spellcategorycooldown_1`=3000, `spellid_2`=0, `spelltrigger_2`=0, `description`='' WHERE `entry`=18794;
|
||||
-- Great Gray Kodo
|
||||
UPDATE `item_template` SET `BuyPrice`=1000000, `SellPrice`=0, `ItemLevel`=60, `RequiredLevel`=60, `spellid_1`=23248, `spellcharges_1`=0, `spellcategory_1`=330, `spellcategorycooldown_1`=3000, `spellid_2`=0, `spelltrigger_2`=0, `description`='' WHERE `entry`=18795;
|
||||
-- Horn of the Swift Brown Wolf
|
||||
UPDATE `item_template` SET `BuyPrice`=1000000, `SellPrice`=0, `ItemLevel`=60, `RequiredLevel`=60, `spellid_1`=23250, `spellcharges_1`=0, `spellcategory_1`=330, `spellcategorycooldown_1`=3000, `spellid_2`=0, `spelltrigger_2`=0, `description`='' WHERE `entry`=18796;
|
||||
-- Horn of the Swift Timber Wolf
|
||||
UPDATE `item_template` SET `BuyPrice`=1000000, `SellPrice`=0, `ItemLevel`=60, `RequiredLevel`=60, `spellid_1`=23251, `spellcharges_1`=0, `spellcategory_1`=330, `spellcategorycooldown_1`=3000, `spellid_2`=0, `spelltrigger_2`=0, `description`='' WHERE `entry`=18797;
|
||||
-- Horn of the Swift Gray Wolf
|
||||
UPDATE `item_template` SET `BuyPrice`=1000000, `SellPrice`=0, `ItemLevel`=60, `RequiredLevel`=60, `spellid_1`=23252, `spellcharges_1`=0, `spellcategory_1`=330, `spellcategorycooldown_1`=3000, `spellid_2`=0, `spelltrigger_2`=0, `description`='' WHERE `entry`=18798;
|
||||
-- Reins of the Swift Stormsaber
|
||||
UPDATE `item_template` SET `BuyPrice`=1000000, `SellPrice`=0, `ItemLevel`=60, `RequiredLevel`=60, `spellid_1`=23338, `spellcharges_1`=0, `spellcategory_1`=330, `spellcategorycooldown_1`=3000, `spellid_2`=0, `spelltrigger_2`=0, `description`='' WHERE `entry`=18902;
|
||||
-- Horn of the Frostwolf Howler
|
||||
UPDATE `item_template` SET `BuyPrice`=0, `SellPrice`=0, `ItemLevel`=60, `RequiredLevel`=60, `spellid_1`=23509, `spellcharges_1`=0, `spellcategory_1`=330, `spellcategorycooldown_1`=3000, `spellid_2`=0, `spelltrigger_2`=0, `description`='' WHERE `entry`=19029;
|
||||
-- Stormpike Battle Charger
|
||||
UPDATE `item_template` SET `BuyPrice`=0, `SellPrice`=0, `ItemLevel`=60, `RequiredLevel`=60, `spellid_1`=23510, `spellcharges_1`=0, `spellcategory_1`=330, `spellcategorycooldown_1`=3000, `spellid_2`=0, `spelltrigger_2`=0, `description`='' WHERE `entry`=19030;
|
||||
-- Swift Razzashi Raptor
|
||||
UPDATE `item_template` SET `BuyPrice`=10000000, `SellPrice`=0, `ItemLevel`=60, `RequiredLevel`=60, `spellid_1`=24242, `spellcharges_1`=0, `spellcategory_1`=330, `spellcategorycooldown_1`=3000, `spellid_2`=0, `spelltrigger_2`=0, `description`='' WHERE `entry`=19872;
|
||||
-- Swift Zulian Tiger
|
||||
UPDATE `item_template` SET `BuyPrice`=10000000, `SellPrice`=0, `ItemLevel`=60, `RequiredLevel`=60, `spellid_1`=24252, `spellcharges_1`=0, `spellcategory_1`=330, `spellcategorycooldown_1`=3000, `spellid_2`=0, `spelltrigger_2`=0, `description`='' WHERE `entry`=19902;
|
||||
-- Foror's Fabled Steed
|
||||
UPDATE `item_template` SET `BuyPrice`=10000000, `SellPrice`=0, `ItemLevel`=60, `RequiredLevel`=60, `spellid_1`=24576, `spellcharges_1`=0, `spellcategory_1`=330, `spellcategorycooldown_1`=3000, `spellid_2`=0, `spelltrigger_2`=0, `description`='' WHERE `entry`=20221;
|
||||
-- Black Qiraji Resonating Crystal
|
||||
UPDATE `item_template` SET `BuyPrice`=100000000, `SellPrice`=0, `ItemLevel`=60, `RequiredLevel`=60, `spellid_1`=26656, `spellcharges_1`=0, `spellcategory_1`=330, `spellcategorycooldown_1`=3000, `spellid_2`=0, `spelltrigger_2`=0, `description`='' WHERE `entry`=21176;
|
||||
-- Black Battlestrider
|
||||
UPDATE `item_template` SET `BuyPrice`=0, `SellPrice`=0, `ItemLevel`=60, `RequiredLevel`=60, `spellid_1`=22719, `spellcharges_1`=0, `spellcategory_1`=330, `spellcategorycooldown_1`=3000, `spellid_2`=0, `spelltrigger_2`=0, `description`='' WHERE `entry`=29465;
|
||||
-- Black War Kodo
|
||||
UPDATE `item_template` SET `BuyPrice`=0, `SellPrice`=0, `ItemLevel`=60, `RequiredLevel`=60, `spellid_1`=22718, `spellcharges_1`=0, `spellcategory_1`=330, `spellcategorycooldown_1`=3000, `spellid_2`=0, `spelltrigger_2`=0, `description`='' WHERE `entry`=29466;
|
||||
-- Black War Ram
|
||||
UPDATE `item_template` SET `BuyPrice`=0, `SellPrice`=0, `ItemLevel`=60, `RequiredLevel`=60, `spellid_1`=22720, `spellcharges_1`=0, `spellcategory_1`=330, `spellcategorycooldown_1`=3000, `spellid_2`=0, `spelltrigger_2`=0, `description`='' WHERE `entry`=29467;
|
||||
-- Black War Steed Bridle
|
||||
UPDATE `item_template` SET `BuyPrice`=0, `SellPrice`=0, `ItemLevel`=60, `RequiredLevel`=60, `spellid_1`=22717, `spellcharges_1`=0, `spellcategory_1`=330, `spellcategorycooldown_1`=3000, `spellid_2`=0, `spelltrigger_2`=0, `description`='' WHERE `entry`=29468;
|
||||
-- Horn of the Black War Wolf
|
||||
UPDATE `item_template` SET `BuyPrice`=0, `SellPrice`=0, `ItemLevel`=60, `RequiredLevel`=60, `spellid_1`=22724, `spellcharges_1`=0, `spellcategory_1`=330, `spellcategorycooldown_1`=3000, `spellid_2`=0, `spelltrigger_2`=0, `description`='' WHERE `entry`=29469;
|
||||
-- Red Skeletal Warhorse
|
||||
UPDATE `item_template` SET `BuyPrice`=0, `SellPrice`=0, `ItemLevel`=60, `RequiredLevel`=60, `spellid_1`=22722, `spellcharges_1`=0, `spellcategory_1`=330, `spellcategorycooldown_1`=3000, `spellid_2`=0, `spelltrigger_2`=0, `description`='' WHERE `entry`=29470;
|
||||
-- Reins of the Black War Tiger
|
||||
UPDATE `item_template` SET `BuyPrice`=0, `SellPrice`=0, `ItemLevel`=60, `RequiredLevel`=60, `spellid_1`=22723, `spellcharges_1`=0, `spellcategory_1`=330, `spellcategorycooldown_1`=3000, `spellid_2`=0, `spelltrigger_2`=0, `description`='' WHERE `entry`=29471;
|
||||
-- Whistle of the Black War Raptor
|
||||
UPDATE `item_template` SET `BuyPrice`=0, `SellPrice`=0, `ItemLevel`=60, `RequiredLevel`=60, `spellid_1`=22721, `spellcharges_1`=0, `spellcategory_1`=330, `spellcategorycooldown_1`=3000, `spellid_2`=0, `spelltrigger_2`=0, `description`='' WHERE `entry`=29472;
|
||||
-- Swift Brewfest Ram
|
||||
UPDATE `item_template` SET `BuyPrice`=10000000, `SellPrice`=0, `ItemLevel`=60, `RequiredLevel`=60, `spellid_1`=43900, `spellcharges_1`=0, `spellcategory_1`=330, `spellcategorycooldown_1`=3000, `spellid_2`=0, `spelltrigger_2`=0, `description`='' WHERE `entry`=33977;
|
||||
-- Swift Warstrider
|
||||
UPDATE `item_template` SET `BuyPrice`=0, `SellPrice`=0, `ItemLevel`=60, `RequiredLevel`=60, `spellid_1`=35028, `spellcharges_1`=0, `spellcategory_1`=330, `spellcategorycooldown_1`=3000, `spellid_2`=0, `spelltrigger_2`=0, `description`='' WHERE `entry`=34129;
|
||||
-- Ochre Skeletal Warhorse
|
||||
UPDATE `item_template` SET `BuyPrice`=1000000, `SellPrice`=0, `ItemLevel`=60, `RequiredLevel`=60, `spellid_1`=66846, `spellcharges_1`=0, `spellcategory_1`=330, `spellcategorycooldown_1`=3000, `spellid_2`=0, `spelltrigger_2`=0, `description`='' WHERE `entry`=47101;
|
||||
|
||||
517
sql/world/base/professions.sql
Normal file
517
sql/world/base/professions.sql
Normal file
@@ -0,0 +1,517 @@
|
||||
-- Lhara in Darkmmon Faire - TBC Items
|
||||
DELETE FROM `npc_vendor` WHERE (`entry` = 14846) AND (`item` IN (21887, 22572, 22573, 22574, 22575, 22576, 22577, 22578, 22787, 22789, 22790, 22791, 22792, 22793, 22794, 23436, 23437, 23438, 23439, 23440, 23441, 23793, 25707, 25708));
|
||||
|
||||
-- Lhara WotLK Items
|
||||
DELETE FROM `npc_vendor` WHERE (`entry` = 14846) AND (`item` IN (33568, 36901, 36903, 36904, 36905, 36906, 36907, 36908, 37700, 37701, 37702, 37703, 37704, 37705, 37921, 38425, 44128, 46812));
|
||||
|
||||
-- Enchant formulas
|
||||
DELETE FROM npc_trainer WHERE SpellID IN (20008, 20012, 20013, 20014, 20016, 20023, 20028, 32667);
|
||||
|
||||
-- Blacksmithing Plans
|
||||
DELETE FROM npc_trainer WHERE SpellID IN (16642, 16643, 16644, 16652, 16653, 16662, 16969, 16971);
|
||||
|
||||
-- Alchemy recipes
|
||||
DELETE FROM npc_trainer WHERE SpellID IN (2795, 17552, 17553, 17555, 17556, 17557, 17572, 17573);
|
||||
|
||||
-- Engineering Schematics
|
||||
DELETE FROM npc_trainer WHERE SpellID IN (12615, 19790, 19791, 19792, 19794, 19795, 19800, 19825, 23071);
|
||||
|
||||
-- Tailoring Recipes
|
||||
DELETE FROM npc_trainer WHERE SpellID IN (18450, 18453, 18444, 18406, 18409, 18417, 18423);
|
||||
|
||||
-- First Aid Recipes
|
||||
DELETE FROM npc_trainer WHERE SpellID IN (7929, 10840, 27032, 27033);
|
||||
|
||||
-- Leatherworking Recipes
|
||||
DELETE
|
||||
FROM npc_trainer
|
||||
WHERE SpellID IN
|
||||
(19052, 19055, 19065, 19071, 19072, 19083, 19091, 19092, 19098, 19102, 19103, 18403, 18407, 18410, 18411, 18413,
|
||||
18414, 18415, 18416, 18420, 18421, 18424, 18437, 18438, 18441, 18442, 18446, 18449, 18451, 19082, 32455);
|
||||
|
||||
-- Class skills taught by dropped items
|
||||
DELETE
|
||||
FROM npc_trainer
|
||||
WHERE SpellID IN (23028,
|
||||
21849,
|
||||
21850,
|
||||
26991,
|
||||
31018,
|
||||
31709,
|
||||
23028,
|
||||
27090,
|
||||
27127,
|
||||
28609,
|
||||
28612,
|
||||
33717,
|
||||
21562,
|
||||
21564,
|
||||
25392,
|
||||
27683,
|
||||
39374,
|
||||
31016,
|
||||
29228);
|
||||
|
||||
|
||||
-- Restore Vendor Formulas
|
||||
DELETE FROM npc_vendor WHERE entry = 11188 AND item = 13480;
|
||||
DELETE FROM npc_vendor WHERE entry = 11189 AND item = 14481;
|
||||
DELETE FROM npc_vendor WHERE entry = 4610 AND item = 13477;
|
||||
DELETE FROM npc_vendor WHERE entry = 4226 AND item = 13477;
|
||||
DELETE FROM npc_vendor WHERE entry = 12941 AND item = 15756;
|
||||
DELETE FROM npc_vendor WHERE entry = 7940 AND item = 14488;
|
||||
|
||||
DELETE FROM npc_vendor WHERE entry = 18991 AND item = 21992;
|
||||
DELETE FROM npc_vendor WHERE entry = 18990 AND item = 21992;
|
||||
DELETE FROM npc_vendor WHERE entry = 18991 AND item = 21993;
|
||||
DELETE FROM npc_vendor WHERE entry = 18990 AND item = 21993;
|
||||
|
||||
DELETE FROM npc_vendor WHERE entry = 3413 AND item = 16041;
|
||||
DELETE FROM npc_vendor WHERE entry = 5175 AND item = 16041;
|
||||
DELETE FROM npc_vendor WHERE entry = 3413 AND item = 16042;
|
||||
DELETE FROM npc_vendor WHERE entry = 5175 AND item = 16042;
|
||||
DELETE FROM npc_vendor WHERE entry = 11185 AND item = 16047;
|
||||
DELETE FROM npc_vendor WHERE entry = 2685 AND item = 18651;
|
||||
|
||||
INSERT INTO npc_vendor (entry, slot, item) VALUES (11188, 0, 13480);
|
||||
INSERT INTO npc_vendor (entry, slot, item) VALUES (11189, 0, 14481);
|
||||
INSERT INTO npc_vendor (entry, slot, item) VALUES (4610, 0, 13477);
|
||||
INSERT INTO npc_vendor (entry, slot, item) VALUES (4226, 0, 13477);
|
||||
INSERT INTO npc_vendor (entry, slot, item) VALUES (12941, 0, 15756);
|
||||
INSERT INTO npc_vendor (entry, slot, item) VALUES (7940, 0, 14488);
|
||||
|
||||
INSERT INTO npc_vendor (entry, slot, item) VALUES (18991, 0, 21992);
|
||||
INSERT INTO npc_vendor (entry, slot, item) VALUES (18990, 0, 21992);
|
||||
INSERT INTO npc_vendor (entry, slot, item) VALUES (18991, 0, 21993);
|
||||
INSERT INTO npc_vendor (entry, slot, item) VALUES (18990, 0, 21993);
|
||||
|
||||
INSERT INTO npc_vendor (entry, slot, item) VALUES (3413, 0, 16041);
|
||||
INSERT INTO npc_vendor (entry, slot, item) VALUES (5175, 0, 16041);
|
||||
INSERT INTO npc_vendor (entry, slot, item) VALUES (3413, 0, 16042);
|
||||
INSERT INTO npc_vendor (entry, slot, item) VALUES (5175, 0, 16042);
|
||||
INSERT INTO npc_vendor (entry, slot, item) VALUES (11185, 0, 16047);
|
||||
INSERT INTO npc_vendor (entry, slot, item) VALUES (2685, 0, 18651);
|
||||
|
||||
-- Apprentice Alchemist
|
||||
DELETE FROM `npc_trainer` WHERE `ID`=300000;
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (300000, 2275, 10, 0, 0, 5);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (300000, 3170, 50, 171, 15, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (300000, 2331, 100, 171, 25, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (300000, 2332, 150, 171, 40, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (300000, 2334, 250, 171, 50, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (300000, 2337, 250, 171, 55, 0);
|
||||
|
||||
-- Journeyman Alchemist
|
||||
DELETE FROM `npc_trainer` WHERE `ID`=300001;
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (300001, 2280, 500, 171, 50, 10);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (300001, 7836, 250, 171, 80, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (300001, 3171, 500, 171, 90, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (300001, 7179, 450, 171, 90, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (300001, 7841, 1000, 171, 100, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (300001, 3447, 4000, 171, 110, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (300001, 3173, 1500, 171, 120, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (300001, 3176, 1500, 171, 125, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (300001, 3177, 2000, 171, 130, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (300001, 7837, 1000, 171, 130, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (300001, 7845, 3000, 171, 140, 0);
|
||||
|
||||
-- Apprentice Blacksmith
|
||||
DELETE FROM `npc_trainer` WHERE `ID`=310000;
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (310000, 2020, 10, 0, 0, 5);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (310000, 2662, 50, 164, 1, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (310000, 2737, 50, 164, 15, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (310000, 2738, 50, 164, 20, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (310000, 3319, 50, 164, 20, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (310000, 2739, 50, 164, 25, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (310000, 3320, 100, 164, 25, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (310000, 8880, 100, 164, 30, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (310000, 9983, 100, 164, 30, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (310000, 2661, 100, 164, 35, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (310000, 3293, 250, 164, 35, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (310000, 3323, 100, 164, 40, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (310000, 3324, 200, 164, 45, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (310000, 2665, 100, 164, 65, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (310000, 3116, 100, 164, 65, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (310000, 7408, 300, 164, 65, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (310000, 2666, 200, 164, 70, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (310000, 3294, 500, 164, 70, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (310000, 3326, 250, 164, 75, 0);
|
||||
|
||||
-- Journeyman Blacksmith
|
||||
DELETE FROM `npc_trainer` WHERE `ID`=310001;
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (310001, 2021, 500, 164, 50, 10);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (310001, 2664, 500, 164, 90, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (310001, 3292, 500, 164, 90, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (310001, 7817, 200, 164, 95, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (310001, 3491, 600, 164, 100, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (310001, 7818, 100, 164, 100, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (310001, 19666, 600, 164, 100, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (310001, 2668, 300, 164, 105, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (310001, 2670, 500, 164, 105, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (310001, 2740, 200, 164, 110, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (310001, 3328, 1000, 164, 110, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (310001, 6517, 800, 164, 110, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (310001, 2741, 200, 164, 115, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (310001, 2672, 500, 164, 120, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (310001, 2742, 200, 164, 120, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (310001, 2674, 1000, 164, 125, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (310001, 3117, 1000, 164, 125, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (310001, 3337, 1000, 164, 125, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (310001, 9985, 250, 164, 125, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (310001, 3296, 1000, 164, 130, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (310001, 3331, 500, 164, 130, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (310001, 9986, 500, 164, 130, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (310001, 3333, 1000, 164, 135, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (310001, 9987, 500, 164, 135, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (310001, 2675, 1000, 164, 145, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (310001, 8768, 250, 164, 150, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (310001, 14379, 250, 164, 150, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (310001, 19667, 250, 164, 150, 0);
|
||||
|
||||
-- Expert Blacksmith
|
||||
DELETE FROM `npc_trainer` WHERE `ID`=310002;
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (310002, 3539, 4500, 164, 125, 20);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (310002, 3506, 900, 164, 155, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (310002, 3501, 900, 164, 165, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (310002, 3502, 1150, 164, 170, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (310002, 15972, 7000, 164, 180, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (310002, 3508, 7000, 164, 180, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (310002, 7223, 900, 164, 185, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (310002, 9920, 2300, 164, 200, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (310002, 9918, 2300, 164, 200, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (310002, 9921, 2300, 164, 200, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (310002, 9916, 2300, 164, 200, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (310002, 14380, 2300, 164, 200, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (310002, 19668, 2300, 164, 200, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (310002, 9928, 4500, 164, 205, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (310002, 9926, 4500, 164, 205, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (310002, 9931, 4500, 164, 205, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (310002, 9993, 9000, 164, 210, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (310002, 9935, 4500, 164, 215, 0);
|
||||
|
||||
-- Cooking
|
||||
DELETE FROM `npc_trainer` WHERE `ID`=320000;
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (320000, 2551, 100, 0, 0, 5);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (320000, 2539, 50, 185, 10, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (320000, 2541, 100, 185, 50, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (320000, 3412, 500, 185, 50, 10);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (320000, 6499, 100, 185, 50, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (320000, 2544, 200, 185, 75, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (320000, 2546, 150, 185, 80, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (320000, 6500, 300, 185, 125, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (320000, 21175, 4000, 185, 200, 0);
|
||||
|
||||
-- Apprentice Enchanter
|
||||
DELETE FROM `npc_trainer` WHERE `ID`=330000;
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (330000, 7414, 10, 0, 0, 5);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (330000, 14293, 50, 333, 10, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (330000, 7420, 50, 333, 15, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (330000, 7426, 100, 333, 40, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (330000, 7454, 100, 333, 45, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (330000, 7457, 250, 333, 50, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (330000, 7748, 250, 333, 60, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (330000, 7771, 200, 333, 70, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (330000, 14807, 200, 333, 70, 0);
|
||||
|
||||
-- Journeyman Enchanter
|
||||
DELETE FROM `npc_trainer` WHERE `ID`=330001;
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (330001, 7415, 500, 333, 50, 10);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (330001, 7779, 400, 333, 80, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (330001, 7788, 500, 333, 90, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (330001, 7745, 500, 333, 100, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (330001, 7795, 1000, 333, 100, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (330001, 13378, 600, 333, 105, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (330001, 13421, 800, 333, 115, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (330001, 7857, 1000, 333, 120, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (330001, 7861, 1250, 333, 125, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (330001, 7863, 1400, 333, 125, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (330001, 13485, 1500, 333, 130, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (330001, 13501, 1500, 333, 130, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (330001, 13503, 2000, 333, 140, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (330001, 13538, 2500, 333, 140, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (330001, 13529, 2400, 333, 145, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (330001, 13607, 2400, 333, 145, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (330001, 13622, 2500, 333, 150, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (330001, 13626, 2500, 333, 150, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (330001, 13628, 2500, 333, 150, 0);
|
||||
|
||||
-- Expert Enchanter
|
||||
DELETE FROM `npc_trainer` WHERE `ID`=330002;
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (330002, 7416, 5000, 333, 125, 20);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (330002, 13635, 2600, 333, 155, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (330002, 13631, 2600, 333, 155, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (330002, 14809, 2600, 333, 155, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (330002, 13637, 2800, 333, 160, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (330002, 13640, 2800, 333, 160, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (330002, 13642, 2600, 333, 165, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (330002, 13644, 2800, 333, 170, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (330002, 13648, 2600, 333, 170, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (330002, 13657, 2700, 333, 175, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (330002, 14810, 2700, 333, 175, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (330002, 13661, 3300, 333, 180, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (330002, 13659, 2900, 333, 180, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (330002, 13663, 3500, 333, 185, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (330002, 13693, 3600, 333, 195, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (330002, 13695, 3600, 333, 200, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (330002, 13700, 3600, 333, 200, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (330002, 13702, 3600, 333, 200, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (330002, 13746, 3800, 333, 205, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (330002, 13794, 3800, 333, 205, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (330002, 13822, 4000, 333, 210, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (330002, 13815, 4000, 333, 210, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (330002, 13836, 4200, 333, 215, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (330002, 13858, 4400, 333, 220, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (330002, 13890, 4500, 333, 225, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (330002, 13887, 4500, 333, 225, 0);
|
||||
|
||||
-- Apprentice Engineer
|
||||
DELETE FROM `npc_trainer` WHERE `ID`=340000;
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (340000, 4039, 10, 0, 0, 5);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (340000, 3922, 115, 202, 30, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (340000, 3923, 130, 202, 30, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (340000, 7430, 150, 202, 50, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (340000, 3924, 150, 202, 50, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (340000, 3925, 150, 202, 50, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (340000, 3977, 200, 202, 60, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (340000, 3926, 225, 202, 65, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (340000, 3929, 250, 202, 75, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (340000, 3931, 250, 202, 75, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (340000, 3930, 250, 202, 75, 0);
|
||||
|
||||
-- Journeyman Engineer
|
||||
DELETE FROM `npc_trainer` WHERE `ID`=340001;
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (340001, 4040, 500, 202, 50, 10);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (340001, 3932, 300, 202, 85, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (340001, 3973, 300, 202, 90, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (340001, 3934, 400, 202, 100, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (340001, 8334, 300, 202, 100, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (340001, 3938, 450, 202, 105, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (340001, 3936, 400, 202, 105, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (340001, 3937, 420, 202, 105, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (340001, 3978, 450, 202, 110, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (340001, 3941, 475, 202, 120, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (340001, 3947, 300, 202, 125, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (340001, 3945, 480, 202, 125, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (340001, 3946, 480, 202, 125, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (340001, 3942, 480, 202, 125, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (340001, 3949, 500, 202, 130, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (340001, 6458, 370, 202, 135, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (340001, 3950, 550, 202, 140, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (340001, 3953, 550, 202, 145, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (340001, 9271, 470, 202, 150, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (340001, 3955, 700, 202, 150, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (340001, 12584, 1000, 202, 150, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (340001, 3956, 700, 202, 150, 0);
|
||||
|
||||
-- Expert Engineer
|
||||
DELETE FROM `npc_trainer` WHERE `ID`=340002;
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (340002, 4041, 4500, 202, 125, 20);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (340002, 3958, 800, 202, 160, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (340002, 3961, 850, 202, 170, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (340002, 3963, 900, 202, 175, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (340002, 12590, 900, 202, 175, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (340002, 3962, 900, 202, 175, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (340002, 12585, 900, 202, 175, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (340002, 12586, 900, 202, 175, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (340002, 3965, 1100, 202, 185, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (340002, 3967, 1250, 202, 190, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (340002, 12589, 1250, 202, 195, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (340002, 15255, 1400, 202, 200, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (340002, 12591, 1400, 202, 200, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (340002, 12594, 1500, 202, 205, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (340002, 12595, 1500, 202, 205, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (340002, 12596, 1600, 202, 210, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (340002, 12599, 1650, 202, 215, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (340002, 12603, 1700, 202, 215, 0);
|
||||
|
||||
-- First Aid
|
||||
DELETE FROM `npc_trainer` WHERE `ID`=350000;
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (350000, 3279, 100, 0, 0, 1);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (350000, 3276, 100, 129, 40, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (350000, 3280, 500, 129, 50, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (350000, 3277, 250, 129, 80, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (350000, 7934, 250, 129, 80, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (350000, 3278, 1000, 129, 115, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (350000, 7928, 5000, 129, 150, 0);
|
||||
|
||||
-- Fishing
|
||||
DELETE FROM `npc_trainer` WHERE `ID`=360000;
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (360000, 7733, 100, 0, 0, 5);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (360000, 7734, 500, 356, 50, 10);
|
||||
|
||||
-- Herbalism
|
||||
DELETE FROM `npc_trainer` WHERE `ID`=370000;
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (370000, 2372, 10, 0, 0, 1);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (370000, 2373, 500, 182, 50, 1);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (370000, 3571, 5000, 182, 125, 10);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (370000, 11994, 50000, 182, 200, 25);
|
||||
|
||||
-- Apprentice Leatherworker
|
||||
DELETE FROM `npc_trainer` WHERE `ID`=380000;
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (380000, 2155, 10, 0, 0, 5);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (380000, 2153, 50, 165, 15, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (380000, 3753, 75, 165, 25, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (380000, 9060, 100, 165, 30, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (380000, 9062, 100, 165, 30, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (380000, 3816, 50, 165, 35, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (380000, 2160, 100, 165, 40, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (380000, 2161, 100, 165, 55, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (380000, 3756, 150, 165, 55, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (380000, 2162, 100, 165, 60, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (380000, 9065, 450, 165, 70, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (380000, 3759, 2000, 165, 75, 0);
|
||||
|
||||
-- Journeyman Leatherworker
|
||||
DELETE FROM `npc_trainer` WHERE `ID`=380001;
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (380001, 2154, 500, 165, 50, 10);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (380001, 3763, 500, 165, 80, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (380001, 2159, 550, 165, 85, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (380001, 3761, 550, 165, 85, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (380001, 9068, 600, 165, 95, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (380001, 2165, 650, 165, 100, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (380001, 2167, 650, 165, 100, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (380001, 3817, 650, 165, 100, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (380001, 20648, 500, 165, 100, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (380001, 2168, 1000, 165, 110, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (380001, 7135, 1000, 165, 115, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (380001, 2166, 1400, 165, 120, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (380001, 9074, 1400, 165, 120, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (380001, 3766, 1500, 165, 125, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (380001, 9145, 1500, 165, 125, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (380001, 3768, 1200, 165, 130, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (380001, 3770, 1500, 165, 135, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (380001, 3764, 1800, 165, 145, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (380001, 3760, 2000, 165, 150, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (380001, 3780, 2000, 165, 150, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (380001, 3818, 1800, 165, 150, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (380001, 9193, 2000, 165, 150, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (380001, 9194, 2000, 165, 150, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (380001, 20649, 1800, 165, 150, 0);
|
||||
|
||||
-- Expert Leatherworker
|
||||
DELETE FROM `npc_trainer` WHERE `ID`=380002;
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (380002, 3812, 5000, 165, 125, 20);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (380002, 3774, 2500, 165, 160, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (380002, 7147, 2500, 165, 160, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (380002, 7151, 2500, 165, 175, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (380002, 9196, 2500, 165, 175, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (380002, 10482, 2800, 165, 180, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (380002, 9201, 2800, 165, 180, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (380002, 9198, 2800, 165, 180, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (380002, 3776, 2800, 165, 180, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (380002, 20650, 2800, 165, 180, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (380002, 6661, 2800, 165, 190, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (380002, 7156, 2800, 165, 190, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (380002, 9206, 2800, 165, 195, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (380002, 10487, 3500, 165, 200, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (380002, 10507, 3500, 165, 205, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (380002, 10499, 3500, 165, 205, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (380002, 10518, 4000, 165, 210, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (380002, 10511, 4000, 165, 210, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (380002, 14930, 4000, 165, 225, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (380002, 14932, 4000, 165, 225, 0);
|
||||
|
||||
-- Mining
|
||||
DELETE FROM `npc_trainer` WHERE `ID`=390000;
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (390000, 2581, 10, 186, 0, 1);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (390000, 2582, 500, 186, 50, 1);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (390000, 2658, 200, 186, 75, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (390000, 2659, 200, 186, 65, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (390000, 3304, 50, 186, 65, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (390000, 3307, 500, 186, 125, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (390000, 3308, 2500, 186, 155, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (390000, 3568, 5000, 186, 125, 10);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (390000, 3569, 2500, 186, 165, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (390000, 10097, 5000, 186, 175, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (390000, 10249, 50000, 186, 200, 25);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (390000, 10098, 10000, 186, 230, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (390000, 16153, 20000, 186, 250, 0);
|
||||
|
||||
-- Skinning
|
||||
DELETE FROM `npc_trainer` WHERE `ID`=400000;
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (400000, 8615, 10, 0, 0, 1);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (400000, 8619, 500, 393, 50, 1);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (400000, 8620, 5000, 393, 125, 10);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (400000, 10769, 50000, 393, 200, 25);
|
||||
|
||||
-- Apprentice Tailor
|
||||
DELETE FROM `npc_trainer` WHERE `ID`=410000;
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (410000, 3911, 10, 0, 0, 5);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (410000, 2393, 25, 197, 1, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (410000, 3915, 25, 197, 1, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (410000, 12044, 30, 197, 1, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (410000, 2385, 50, 197, 10, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (410000, 8776, 50, 197, 10, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (410000, 12045, 50, 197, 20, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (410000, 7623, 50, 197, 30, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (410000, 7624, 50, 197, 30, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (410000, 3914, 50, 197, 30, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (410000, 3840, 100, 197, 35, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (410000, 2392, 50, 197, 40, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (410000, 2394, 50, 197, 40, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (410000, 8465, 50, 197, 40, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (410000, 3755, 100, 197, 45, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (410000, 2397, 200, 197, 60, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (410000, 3841, 200, 197, 60, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (410000, 2386, 200, 197, 65, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (410000, 2395, 300, 197, 70, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (410000, 2396, 200, 197, 70, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (410000, 3842, 300, 197, 70, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (410000, 2402, 250, 197, 75, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (410000, 2964, 100, 197, 75, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (410000, 12046, 300, 197, 75, 0);
|
||||
|
||||
-- Journeyman Tailor
|
||||
DELETE FROM `npc_trainer` WHERE `ID`=410001;
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (410001, 3912, 500, 197, 50, 10);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (410001, 3757, 200, 197, 80, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (410001, 3845, 300, 197, 80, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (410001, 2399, 300, 197, 85, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (410001, 3843, 400, 197, 85, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (410001, 6521, 400, 197, 90, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (410001, 2401, 300, 197, 95, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (410001, 2406, 200, 197, 100, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (410001, 3848, 500, 197, 110, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (410001, 3850, 500, 197, 110, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (410001, 3866, 250, 197, 110, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (410001, 8467, 250, 197, 110, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (410001, 3839, 500, 197, 125, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (410001, 3855, 700, 197, 125, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (410001, 3852, 700, 197, 130, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (410001, 6690, 1000, 197, 135, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (410001, 8758, 600, 197, 140, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (410001, 8760, 600, 197, 145, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (410001, 3813, 750, 197, 150, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (410001, 3859, 700, 197, 150, 0);
|
||||
|
||||
-- Expert Tailor
|
||||
DELETE FROM `npc_trainer` WHERE `ID`=410002;
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (410002, 3913, 5000, 197, 125, 20);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (410002, 8483, 500, 197, 160, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (410002, 8762, 700, 197, 160, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (410002, 3871, 500, 197, 170, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (410002, 8764, 850, 197, 170, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (410002, 8489, 700, 197, 175, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (410002, 8766, 950, 197, 175, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (410002, 8772, 950, 197, 175, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (410002, 3865, 950, 197, 175, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (410002, 8774, 950, 197, 180, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (410002, 3861, 950, 197, 185, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (410002, 8791, 23000, 197, 185, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (410002, 8770, 950, 197, 190, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (410002, 8799, 3000, 197, 195, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (410002, 12048, 4000, 197, 205, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (410002, 12049, 4000, 197, 205, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (410002, 8804, 5000, 197, 210, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (410002, 12050, 4000, 197, 210, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (410002, 12053, 5000, 197, 215, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (410002, 12061, 2500, 197, 215, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (410002, 12065, 5000, 197, 225, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (410002, 12067, 5000, 197, 225, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (410002, 12069, 5000, 197, 225, 0);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (410002, 12070, 5000, 197, 225, 0);
|
||||
|
||||
-- Riding
|
||||
DELETE FROM `npc_trainer` WHERE `ID`=450000;
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (450000, 33388, 900000, 762, 0, 40);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (450000, 33391, 9000000, 762, 75, 60);
|
||||
21
sql/world/base/quest_missing_diplomat.sql
Normal file
21
sql/world/base/quest_missing_diplomat.sql
Normal file
@@ -0,0 +1,21 @@
|
||||
-- Missing Diplomat Quests
|
||||
UPDATE quest_template SET RewardNextQuest=11222 WHERE ID=11142;
|
||||
UPDATE quest_template SET RewardNextQuest=11223 WHERE ID=11222;
|
||||
INSERT INTO creature_queststarter(id, quest) VALUES (4968, 11222);
|
||||
INSERT INTO creature_queststarter(id, quest) VALUES (1748, 11223);
|
||||
UPDATE quest_offer_reward SET RewardText="<Lady Jaina listens intently as you report the results of your aerial survey.>$B$BA rune circle, dragonkin? The Defias have allied themselves with HER? The traitor?$B$BAnd why would the black dragonkin be interested in an island full of naga? There are many unanswered questions, but I one thing is for certain: the Defias have a powerful ally in upper echelons of the Alliance."
|
||||
WHERE ID=11142;
|
||||
UPDATE quest_template SET LogTitle="Warn Bolvar!", LogDescription="Speak to Highlord Bolvar Fordragon in Stormwind Keep.", QuestDescription="Although we don't have all the answers we might like, it's imperative that you bring our findings to Highlord Bolvar Fordragon right away! He needs to know that the Defias have a powerful patron in Stormwind and that they're involved in the disappearance of King Varian!$B$BI can use my magic to expedite your trip to Stormwind. Just speak to me when you're prepared to go, $N." WHERE ID=11222;
|
||||
UPDATE quest_template_addon SET NextQuestID=11223 WHERE ID=11222;
|
||||
INSERT INTO creature_questender(id, quest) VALUES (1748, 11222);
|
||||
INSERT INTO creature_questender(id, quest) VALUES (4968, 11223);
|
||||
|
||||
UPDATE creature_questender SET id=1748 WHERE quest=396;
|
||||
UPDATE creature_questender SET id=1748 WHERE quest=6186;
|
||||
UPDATE creature_questender SET id=1748 WHERE quest=6187;
|
||||
UPDATE creature_questender SET id=1748 WHERE quest=7781;
|
||||
|
||||
UPDATE creature_queststarter SET id=1748 WHERE quest=396;
|
||||
UPDATE creature_queststarter SET id=1748 WHERE quest=6182;
|
||||
UPDATE creature_queststarter SET id=1748 WHERE quest=6187;
|
||||
UPDATE creature_queststarter SET id=1748 WHERE quest=7782;
|
||||
269
sql/world/base/restore_vanilla_elites.sql
Normal file
269
sql/world/base/restore_vanilla_elites.sql
Normal file
@@ -0,0 +1,269 @@
|
||||
/* Restore Elites to world that were nerfed in 2.3.0 */
|
||||
UPDATE creature_template SET DamageModifier=6.43, HealthModifier=3.00, minlevel=31, maxlevel=31, rank=1 WHERE entry=314;
|
||||
UPDATE creature_template SET DamageModifier=4.78, HealthModifier=3.00, minlevel=27, maxlevel=27, rank=1 WHERE entry=397;
|
||||
UPDATE creature_template SET DamageModifier=4.39, HealthModifier=3.00, minlevel=22, maxlevel=23, rank=1 WHERE entry=436;
|
||||
UPDATE creature_template SET DamageModifier=3.22, HealthModifier=3.00, minlevel=15, maxlevel=16, rank=1 WHERE entry=594;
|
||||
UPDATE creature_template SET DamageModifier=4.62, HealthModifier=3.00, minlevel=15, maxlevel=16, rank=1 WHERE entry=619;
|
||||
UPDATE creature_template SET DamageModifier=2.85, HealthModifier=3.00, minlevel=17, maxlevel=18, rank=1 WHERE entry=623;
|
||||
UPDATE creature_template SET DamageModifier=2.85, HealthModifier=3.00, minlevel=17, maxlevel=18, rank=1 WHERE entry=624;
|
||||
UPDATE creature_template SET DamageModifier=2.85, HealthModifier=3.00, minlevel=17, maxlevel=18, rank=1 WHERE entry=625;
|
||||
UPDATE creature_template SET DamageModifier=3.28, HealthModifier=3.00, minlevel=20, maxlevel=20, rank=1 WHERE entry=626;
|
||||
UPDATE creature_template SET DamageModifier=2.69, HealthModifier=3.00, minlevel=43, maxlevel=44, rank=1 WHERE entry=678;
|
||||
UPDATE creature_template SET DamageModifier=4.01, HealthModifier=3.00, minlevel=43, maxlevel=44, rank=1 WHERE entry=679;
|
||||
UPDATE creature_template SET DamageModifier=2.64, HealthModifier=3.00, minlevel=45, maxlevel=45, rank=1 WHERE entry=680;
|
||||
UPDATE creature_template SET DamageModifier=4.34, HealthModifier=3.00, minlevel=41, maxlevel=42, rank=1 WHERE entry=709;
|
||||
UPDATE creature_template SET DamageModifier=5.38, HealthModifier=3.00, minlevel=43, maxlevel=44, rank=1 WHERE entry=710;
|
||||
UPDATE creature_template SET DamageModifier=3.28, HealthModifier=3.00, minlevel=44, maxlevel=44, rank=2 WHERE entry=723;
|
||||
UPDATE creature_template SET DamageModifier=4.14, HealthModifier=3.15, minlevel=40, maxlevel=40, rank=1 WHERE entry=728;
|
||||
UPDATE creature_template SET DamageModifier=4.94, HealthModifier=3.10, minlevel=43, maxlevel=43, rank=1 WHERE entry=730;
|
||||
UPDATE creature_template SET DamageModifier=4.11, HealthModifier=3.00, minlevel=40, maxlevel=40, rank=1 WHERE entry=813;
|
||||
UPDATE creature_template SET DamageModifier=3.68, HealthModifier=3.00, minlevel=47, maxlevel=47, rank=1 WHERE entry=818;
|
||||
UPDATE creature_template SET DamageModifier=3.94, HealthModifier=3.00, minlevel=35, maxlevel=36, rank=1 WHERE entry=871;
|
||||
UPDATE creature_template SET DamageModifier=4.11, HealthModifier=3.00, minlevel=36, maxlevel=37, rank=1 WHERE entry=873;
|
||||
UPDATE creature_template SET DamageModifier=4.11, HealthModifier=3.00, minlevel=37, maxlevel=37, rank=1 WHERE entry=875;
|
||||
UPDATE creature_template SET DamageModifier=3.94, HealthModifier=3.00, minlevel=35, maxlevel=36, rank=1 WHERE entry=877;
|
||||
UPDATE creature_template SET DamageModifier=3.94, HealthModifier=3.00, minlevel=35, maxlevel=36, rank=1 WHERE entry=879;
|
||||
UPDATE creature_template SET DamageModifier=3.31, HealthModifier=3.00, minlevel=27, maxlevel=28, rank=1 WHERE entry=1051;
|
||||
UPDATE creature_template SET DamageModifier=3.23, HealthModifier=3.00, minlevel=28, maxlevel=29, rank=1 WHERE entry=1052;
|
||||
UPDATE creature_template SET DamageModifier=3.07, HealthModifier=3.00, minlevel=29, maxlevel=30, rank=1 WHERE entry=1053;
|
||||
UPDATE creature_template SET DamageModifier=4.49, HealthModifier=3.00, minlevel=30, maxlevel=31, rank=1 WHERE entry=1054;
|
||||
UPDATE creature_template SET DamageModifier=2.93, HealthModifier=3.00, minlevel=18, maxlevel=19, rank=1 WHERE entry=1178;
|
||||
UPDATE creature_template SET DamageModifier=2.96, HealthModifier=3.00, minlevel=18, maxlevel=19, rank=1 WHERE entry=1179;
|
||||
UPDATE creature_template SET DamageModifier=2.96, HealthModifier=3.00, minlevel=18, maxlevel=19, rank=1 WHERE entry=1181;
|
||||
UPDATE creature_template SET DamageModifier=3.15, HealthModifier=3.00, minlevel=19, maxlevel=20, rank=1 WHERE entry=1183;
|
||||
UPDATE creature_template SET DamageModifier=3.97, HealthModifier=3.00, minlevel=20, maxlevel=20, rank=1 WHERE entry=1225;
|
||||
UPDATE creature_template SET DamageModifier=4.49, HealthModifier=5.00, minlevel=34, maxlevel=34, rank=1 WHERE entry=1364;
|
||||
UPDATE creature_template SET DamageModifier=3.81, HealthModifier=7.00, minlevel=52, maxlevel=52, rank=1 WHERE entry=8400;
|
||||
UPDATE creature_template SET DamageModifier=3.71, HealthModifier=3.00, minlevel=11, maxlevel=11, rank=1 WHERE entry=1388;
|
||||
UPDATE creature_template SET DamageModifier=2.43, HealthModifier=5.00, minlevel=51, maxlevel=51, rank=1 WHERE entry=1559;
|
||||
UPDATE creature_template SET DamageModifier=1.76, HealthModifier=3.00, minlevel=16, maxlevel=17, rank=1 WHERE entry=1725;
|
||||
UPDATE creature_template SET DamageModifier=4.35, HealthModifier=3.00, minlevel=16, maxlevel=17, rank=1 WHERE entry=1726;
|
||||
UPDATE creature_template SET DamageModifier=2.82, HealthModifier=3.00, minlevel=56, maxlevel=57, rank=1 WHERE entry=1788;
|
||||
UPDATE creature_template SET DamageModifier=3.62, HealthModifier=3.00, minlevel=55, maxlevel=56, rank=1 WHERE entry=1827;
|
||||
UPDATE creature_template SET DamageModifier=4.99, HealthModifier=3.00, minlevel=56, maxlevel=57, rank=1 WHERE entry=1832;
|
||||
UPDATE creature_template SET DamageModifier=2.52, HealthModifier=3.00, minlevel=55, maxlevel=56, rank=1 WHERE entry=1834;
|
||||
UPDATE creature_template SET DamageModifier=2.85, HealthModifier=3.00, minlevel=13, maxlevel=14, rank=1 WHERE entry=1891;
|
||||
UPDATE creature_template SET DamageModifier=2.85, HealthModifier=3.00, minlevel=13, maxlevel=14, rank=1 WHERE entry=1892;
|
||||
UPDATE creature_template SET DamageModifier=2.77, HealthModifier=3.00, minlevel=14, maxlevel=15, rank=1 WHERE entry=1893;
|
||||
UPDATE creature_template SET DamageModifier=2.77, HealthModifier=3.00, minlevel=14, maxlevel=15, rank=1 WHERE entry=1894;
|
||||
UPDATE creature_template SET DamageModifier=3.05, HealthModifier=3.00, minlevel=14, maxlevel=15, rank=1 WHERE entry=1895;
|
||||
UPDATE creature_template SET DamageModifier=3.05, HealthModifier=3.00, minlevel=14, maxlevel=15, rank=1 WHERE entry=1896;
|
||||
UPDATE creature_template SET DamageModifier=4.67, HealthModifier=3.00, minlevel=24, maxlevel=24, rank=1 WHERE entry=1947;
|
||||
UPDATE creature_template SET DamageModifier=6.17, HealthModifier=3.38, minlevel=12, maxlevel=12, rank=1 WHERE entry=2060;
|
||||
UPDATE creature_template SET DamageModifier=3.78, HealthModifier=3.00, minlevel=13, maxlevel=13, rank=1 WHERE entry=2061;
|
||||
UPDATE creature_template SET DamageModifier=4.11, HealthModifier=3.00, minlevel=13, maxlevel=13, rank=1 WHERE entry=2062;
|
||||
UPDATE creature_template SET DamageModifier=3.17, HealthModifier=3.00, minlevel=13, maxlevel=13, rank=1 WHERE entry=2063;
|
||||
UPDATE creature_template SET DamageModifier=3.17, HealthModifier=3.00, minlevel=13, maxlevel=13, rank=1 WHERE entry=2064;
|
||||
UPDATE creature_template SET DamageModifier=3.17, HealthModifier=3.00, minlevel=13, maxlevel=13, rank=1 WHERE entry=2065;
|
||||
UPDATE creature_template SET DamageModifier=3.17, HealthModifier=3.00, minlevel=13, maxlevel=13, rank=1 WHERE entry=2066;
|
||||
UPDATE creature_template SET DamageModifier=3.17, HealthModifier=3.00, minlevel=13, maxlevel=13, rank=1 WHERE entry=2067;
|
||||
UPDATE creature_template SET DamageModifier=3.36, HealthModifier=3.00, minlevel=15, maxlevel=15, rank=1 WHERE entry=2068;
|
||||
UPDATE creature_template SET DamageModifier=3.64, HealthModifier=3.00, minlevel=32, maxlevel=32, rank=1 WHERE entry=2091;
|
||||
UPDATE creature_template SET DamageModifier=3.70, HealthModifier=3.00, minlevel=16, maxlevel=16, rank=1 WHERE entry=2106;
|
||||
UPDATE creature_template SET DamageModifier=1.20, HealthModifier=3.00, minlevel=9, maxlevel=9, rank=1 WHERE entry=2166;
|
||||
UPDATE creature_template SET DamageModifier=3.78, HealthModifier=3.00, minlevel=36, maxlevel=37, rank=1 WHERE entry=2254;
|
||||
UPDATE creature_template SET DamageModifier=5.22, HealthModifier=3.00, minlevel=37, maxlevel=38, rank=1 WHERE entry=2255;
|
||||
UPDATE creature_template SET DamageModifier=3.57, HealthModifier=3.00, minlevel=38, maxlevel=39, rank=1 WHERE entry=2256;
|
||||
UPDATE creature_template SET DamageModifier=4.08, HealthModifier=3.00, minlevel=43, maxlevel=43, rank=1 WHERE entry=2257;
|
||||
UPDATE creature_template SET DamageModifier=3.45, HealthModifier=3.00, minlevel=39, maxlevel=40, rank=1 WHERE entry=2287;
|
||||
UPDATE creature_template SET DamageModifier=4.20, HealthModifier=3.00, minlevel=32, maxlevel=32, rank=1 WHERE entry=2304;
|
||||
UPDATE creature_template SET DamageModifier=3.39, HealthModifier=3.00, minlevel=28, maxlevel=29, rank=1 WHERE entry=2344;
|
||||
UPDATE creature_template SET DamageModifier=3.07, HealthModifier=3.00, minlevel=29, maxlevel=30, rank=1 WHERE entry=2345;
|
||||
UPDATE creature_template SET DamageModifier=3.44, HealthModifier=3.00, minlevel=29, maxlevel=30, rank=1 WHERE entry=2346;
|
||||
UPDATE creature_template SET DamageModifier=3.78, HealthModifier=3.00, minlevel=36, maxlevel=37, rank=1 WHERE entry=2416;
|
||||
UPDATE creature_template SET DamageModifier=4.64, HealthModifier=5.00, minlevel=41, maxlevel=41, rank=1 WHERE entry=2420;
|
||||
UPDATE creature_template SET DamageModifier=3.71, HealthModifier=3.00, minlevel=40, maxlevel=40, rank=1 WHERE entry=2421;
|
||||
UPDATE creature_template SET DamageModifier=3.69, HealthModifier=3.00, minlevel=39, maxlevel=39, rank=1 WHERE entry=2422;
|
||||
UPDATE creature_template SET DamageModifier=3.78, HealthModifier=3.00, minlevel=36, maxlevel=37, rank=1 WHERE entry=2558;
|
||||
UPDATE creature_template SET DamageModifier=3.71, HealthModifier=3.00, minlevel=37, maxlevel=38, rank=1 WHERE entry=2569;
|
||||
UPDATE creature_template SET DamageModifier=3.86, HealthModifier=3.00, minlevel=38, maxlevel=39, rank=1 WHERE entry=2570;
|
||||
UPDATE creature_template SET DamageModifier=2.68, HealthModifier=3.00, minlevel=39, maxlevel=40, rank=1 WHERE entry=2571;
|
||||
UPDATE creature_template SET DamageModifier=3.94, HealthModifier=3.00, minlevel=37, maxlevel=38, rank=1 WHERE entry=2583;
|
||||
UPDATE creature_template SET DamageModifier=3.57, HealthModifier=3.00, minlevel=38, maxlevel=39, rank=1 WHERE entry=2584;
|
||||
UPDATE creature_template SET DamageModifier=3.55, HealthModifier=3.00, minlevel=39, maxlevel=40, rank=1 WHERE entry=2585;
|
||||
UPDATE creature_template SET DamageModifier=3.78, HealthModifier=3.00, minlevel=36, maxlevel=37, rank=1 WHERE entry=2588;
|
||||
UPDATE creature_template SET DamageModifier=5.51, HealthModifier=3.00, minlevel=35, maxlevel=36, rank=1 WHERE entry=2590;
|
||||
UPDATE creature_template SET DamageModifier=5.22, HealthModifier=3.00, minlevel=37, maxlevel=38, rank=1 WHERE entry=2591;
|
||||
UPDATE creature_template SET DamageModifier=3.84, HealthModifier=7.00, minlevel=40, maxlevel=40, rank=1 WHERE entry=2597;
|
||||
UPDATE creature_template SET DamageModifier=2.61, HealthModifier=3.00, minlevel=38, maxlevel=38, rank=1 WHERE entry=2599;
|
||||
UPDATE creature_template SET DamageModifier=3.87, HealthModifier=3.00, minlevel=44, maxlevel=44, rank=1 WHERE entry=2607;
|
||||
UPDATE creature_template SET DamageModifier=4.34, HealthModifier=3.00, minlevel=42, maxlevel=42, rank=1 WHERE entry=2611;
|
||||
UPDATE creature_template SET DamageModifier=4.24, HealthModifier=3.00, minlevel=38, maxlevel=38, rank=1 WHERE entry=2612;
|
||||
UPDATE creature_template SET DamageModifier=5.00, HealthModifier=3.00, minlevel=38, maxlevel=38, rank=1 WHERE entry=2635;
|
||||
UPDATE creature_template SET DamageModifier=3.45, HealthModifier=3.00, minlevel=46, maxlevel=47, rank=1 WHERE entry=2641;
|
||||
UPDATE creature_template SET DamageModifier=4.84, HealthModifier=3.00, minlevel=47, maxlevel=48, rank=1 WHERE entry=2642;
|
||||
UPDATE creature_template SET DamageModifier=3.36, HealthModifier=3.00, minlevel=47, maxlevel=48, rank=1 WHERE entry=2643;
|
||||
UPDATE creature_template SET DamageModifier=4.09, HealthModifier=3.00, minlevel=48, maxlevel=49, rank=1 WHERE entry=2644;
|
||||
UPDATE creature_template SET DamageModifier=3.54, HealthModifier=3.00, minlevel=48, maxlevel=49, rank=1 WHERE entry=2645;
|
||||
UPDATE creature_template SET DamageModifier=3.20, HealthModifier=3.00, minlevel=49, maxlevel=50, rank=1 WHERE entry=2646;
|
||||
UPDATE creature_template SET DamageModifier=3.45, HealthModifier=3.75, minlevel=49, maxlevel=50, rank=1 WHERE entry=2647;
|
||||
UPDATE creature_template SET DamageModifier=4.00, HealthModifier=3.00, minlevel=50, maxlevel=51, rank=1 WHERE entry=2648;
|
||||
UPDATE creature_template SET DamageModifier=5.14, HealthModifier=3.00, minlevel=50, maxlevel=51, rank=1 WHERE entry=2681;
|
||||
UPDATE creature_template SET DamageModifier=3.78, HealthModifier=3.00, minlevel=36, maxlevel=37, rank=1 WHERE entry=2738;
|
||||
UPDATE creature_template SET DamageModifier=3.69, HealthModifier=5.00, minlevel=50, maxlevel=50, rank=1 WHERE entry=2757;
|
||||
UPDATE creature_template SET DamageModifier=3.38, HealthModifier=6.00, minlevel=50, maxlevel=50, rank=1 WHERE entry=2759;
|
||||
UPDATE creature_template SET DamageModifier=4.34, HealthModifier=3.00, minlevel=42, maxlevel=42, rank=1 WHERE entry=2763;
|
||||
UPDATE creature_template SET DamageModifier=3.45, HealthModifier=3.25, minlevel=40, maxlevel=40, rank=1 WHERE entry=2773;
|
||||
UPDATE creature_template SET DamageModifier=4.64, HealthModifier=3.00, minlevel=41, maxlevel=41, rank=1 WHERE entry=2780;
|
||||
UPDATE creature_template SET DamageModifier=4.64, HealthModifier=3.00, minlevel=41, maxlevel=41, rank=1 WHERE entry=2781;
|
||||
UPDATE creature_template SET DamageModifier=4.64, HealthModifier=3.00, minlevel=41, maxlevel=41, rank=1 WHERE entry=2782;
|
||||
UPDATE creature_template SET DamageModifier=3.45, HealthModifier=3.00, minlevel=40, maxlevel=40, rank=1 WHERE entry=2783;
|
||||
UPDATE creature_template SET DamageModifier=2.37, HealthModifier=3.00, minlevel=38, maxlevel=38, rank=1 WHERE entry=2794;
|
||||
UPDATE creature_template SET DamageModifier=3.30, HealthModifier=3.00, minlevel=55, maxlevel=55, rank=1 WHERE entry=2835;
|
||||
UPDATE creature_template SET DamageModifier=3.71, HealthModifier=3.00, minlevel=39, maxlevel=40, rank=1 WHERE entry=2892;
|
||||
UPDATE creature_template SET DamageModifier=3.40, HealthModifier=3.00, minlevel=38, maxlevel=38, rank=1 WHERE entry=2932;
|
||||
UPDATE creature_template SET DamageModifier=2.91, HealthModifier=3.00, minlevel=14, maxlevel=15, rank=1 WHERE entry=3528;
|
||||
UPDATE creature_template SET DamageModifier=2.91, HealthModifier=3.00, minlevel=14, maxlevel=15, rank=1 WHERE entry=3529;
|
||||
UPDATE creature_template SET DamageModifier=3.36, HealthModifier=3.00, minlevel=14, maxlevel=15, rank=1 WHERE entry=3530;
|
||||
UPDATE creature_template SET DamageModifier=3.36, HealthModifier=3.00, minlevel=14, maxlevel=15, rank=1 WHERE entry=3531;
|
||||
UPDATE creature_template SET DamageModifier=2.91, HealthModifier=3.00, minlevel=14, maxlevel=15, rank=1 WHERE entry=3532;
|
||||
UPDATE creature_template SET DamageModifier=2.77, HealthModifier=3.00, minlevel=14, maxlevel=15, rank=1 WHERE entry=3533;
|
||||
UPDATE creature_template SET DamageModifier=1.30, HealthModifier=3.00, minlevel=15, maxlevel=16, rank=1 WHERE entry=3632;
|
||||
UPDATE creature_template SET DamageModifier=1.24, HealthModifier=3.00, minlevel=16, maxlevel=17, rank=1 WHERE entry=3633;
|
||||
UPDATE creature_template SET DamageModifier=0.92, HealthModifier=3.00, minlevel=15, maxlevel=17, rank=1 WHERE entry=3634;
|
||||
UPDATE creature_template SET DamageModifier=2.96, HealthModifier=3.00, minlevel=16, maxlevel=17, rank=1 WHERE entry=3638;
|
||||
UPDATE creature_template SET DamageModifier=0.96, HealthModifier=3.00, minlevel=16, maxlevel=17, rank=1 WHERE entry=3641;
|
||||
UPDATE creature_template SET DamageModifier=3.04, HealthModifier=3.00, minlevel=18, maxlevel=18, rank=1 WHERE entry=3655;
|
||||
UPDATE creature_template SET DamageModifier=3.79, HealthModifier=3.00, minlevel=25, maxlevel=26, rank=1 WHERE entry=4050;
|
||||
UPDATE creature_template SET DamageModifier=3.69, HealthModifier=3.00, minlevel=26, maxlevel=27, rank=1 WHERE entry=4052;
|
||||
UPDATE creature_template SET DamageModifier=3.39, HealthModifier=3.00, minlevel=26, maxlevel=27, rank=1 WHERE entry=4056;
|
||||
UPDATE creature_template SET DamageModifier=3.58, HealthModifier=3.00, minlevel=25, maxlevel=26, rank=1 WHERE entry=4061;
|
||||
UPDATE creature_template SET DamageModifier=3.37, HealthModifier=3.00, minlevel=20, maxlevel=21, rank=1 WHERE entry=4064;
|
||||
UPDATE creature_template SET DamageModifier=3.26, HealthModifier=3.00, minlevel=21, maxlevel=22, rank=1 WHERE entry=4065;
|
||||
UPDATE creature_template SET DamageModifier=1.24, HealthModifier=3.00, minlevel=16, maxlevel=17, rank=1 WHERE entry=3631;
|
||||
UPDATE creature_template SET DamageModifier=1.30, HealthModifier=3.00, minlevel=15, maxlevel=16, rank=1 WHERE entry=3630;
|
||||
UPDATE creature_template SET DamageModifier=3.31, HealthModifier=3.00, minlevel=29, maxlevel=30, rank=1 WHERE entry=4280;
|
||||
UPDATE creature_template SET DamageModifier=3.07, HealthModifier=3.00, minlevel=29, maxlevel=30, rank=1 WHERE entry=4281;
|
||||
UPDATE creature_template SET DamageModifier=4.47, HealthModifier=3.00, minlevel=29, maxlevel=30, rank=1 WHERE entry=4282;
|
||||
UPDATE creature_template SET DamageModifier=1.86, HealthModifier=3.00, minlevel=30, maxlevel=31, rank=1 WHERE entry=4283;
|
||||
UPDATE creature_template SET DamageModifier=4.83, HealthModifier=3.00, minlevel=30, maxlevel=31, rank=1 WHERE entry=4284;
|
||||
UPDATE creature_template SET DamageModifier=4.83, HealthModifier=3.00, minlevel=30, maxlevel=31, rank=1 WHERE entry=4285;
|
||||
UPDATE creature_template SET DamageModifier=3.34, HealthModifier=3.00, minlevel=25, maxlevel=25, rank=1 WHERE entry=4409;
|
||||
UPDATE creature_template SET DamageModifier=2.97, HealthModifier=3.00, minlevel=23, maxlevel=24, rank=1 WHERE entry=4462;
|
||||
UPDATE creature_template SET DamageModifier=2.52, HealthModifier=3.00, minlevel=24, maxlevel=25, rank=1 WHERE entry=4464;
|
||||
UPDATE creature_template SET DamageModifier=3.49, HealthModifier=3.00, minlevel=45, maxlevel=46, rank=1 WHERE entry=4465;
|
||||
UPDATE creature_template SET DamageModifier=3.36, HealthModifier=3.00, minlevel=47, maxlevel=48, rank=1 WHERE entry=4468;
|
||||
UPDATE creature_template SET DamageModifier=4.25, HealthModifier=3.00, minlevel=46, maxlevel=47, rank=1 WHERE entry=4469;
|
||||
UPDATE creature_template SET DamageModifier=3.07, HealthModifier=3.00, minlevel=30, maxlevel=30, rank=1 WHERE entry=4499;
|
||||
UPDATE creature_template SET DamageModifier=3.37, HealthModifier=3.00, minlevel=20, maxlevel=21, rank=1 WHERE entry=4788;
|
||||
UPDATE creature_template SET DamageModifier=3.26, HealthModifier=3.00, minlevel=21, maxlevel=22, rank=1 WHERE entry=4789;
|
||||
UPDATE creature_template SET DamageModifier=3.61, HealthModifier=3.00, minlevel=20, maxlevel=21, rank=1 WHERE entry=4802;
|
||||
UPDATE creature_template SET DamageModifier=3.48, HealthModifier=3.00, minlevel=21, maxlevel=22, rank=1 WHERE entry=4803;
|
||||
UPDATE creature_template SET DamageModifier=4.20, HealthModifier=2.67, minlevel=35, maxlevel=36, rank=1 WHERE entry=4844;
|
||||
UPDATE creature_template SET DamageModifier=3.27, HealthModifier=3.00, minlevel=36, maxlevel=37, rank=1 WHERE entry=4845;
|
||||
UPDATE creature_template SET DamageModifier=3.94, HealthModifier=3.00, minlevel=35, maxlevel=36, rank=1 WHERE entry=4846;
|
||||
UPDATE creature_template SET DamageModifier=1.26, HealthModifier=3.00, minlevel=36, maxlevel=37, rank=1 WHERE entry=4851;
|
||||
UPDATE creature_template SET DamageModifier=3.78, HealthModifier=3.00, minlevel=36, maxlevel=37, rank=1 WHERE entry=4856;
|
||||
UPDATE creature_template SET DamageModifier=3.83, HealthModifier=3.00, minlevel=38, maxlevel=38, rank=1 WHERE entry=4872;
|
||||
UPDATE creature_template SET DamageModifier=3.06, HealthModifier=3.00, minlevel=45, maxlevel=46, rank=1 WHERE entry=5224;
|
||||
UPDATE creature_template SET DamageModifier=3.45, HealthModifier=3.00, minlevel=46, maxlevel=47, rank=1 WHERE entry=5225;
|
||||
UPDATE creature_template SET DamageModifier=3.49, HealthModifier=3.00, minlevel=45, maxlevel=46, rank=1 WHERE entry=5235;
|
||||
UPDATE creature_template SET DamageModifier=3.49, HealthModifier=3.00, minlevel=45, maxlevel=46, rank=1 WHERE entry=5243;
|
||||
UPDATE creature_template SET DamageModifier=3.49, HealthModifier=3.00, minlevel=45, maxlevel=46, rank=1 WHERE entry=5261;
|
||||
UPDATE creature_template SET DamageModifier=1.42, HealthModifier=3.00, minlevel=46, maxlevel=47, rank=1 WHERE entry=5263;
|
||||
UPDATE creature_template SET DamageModifier=1.53, HealthModifier=3.00, minlevel=46, maxlevel=47, rank=1 WHERE entry=5269;
|
||||
UPDATE creature_template SET DamageModifier=3.68, HealthModifier=3.00, minlevel=48, maxlevel=48, rank=1 WHERE entry=5401;
|
||||
UPDATE creature_template SET DamageModifier=4.34, HealthModifier=3.00, minlevel=42, maxlevel=42, rank=1 WHERE entry=5402;
|
||||
UPDATE creature_template SET DamageModifier=4.08, HealthModifier=3.00, minlevel=42, maxlevel=43, rank=1 WHERE entry=5645;
|
||||
UPDATE creature_template SET DamageModifier=3.74, HealthModifier=3.00, minlevel=42, maxlevel=44, rank=1 WHERE entry=5646;
|
||||
UPDATE creature_template SET DamageModifier=4.01, HealthModifier=2.62, minlevel=43, maxlevel=44, rank=1 WHERE entry=5647;
|
||||
UPDATE creature_template SET DamageModifier=3.40, HealthModifier=3.00, minlevel=16, maxlevel=17, rank=1 WHERE entry=5780;
|
||||
UPDATE creature_template SET DamageModifier=3.24, HealthModifier=3.00, minlevel=48, maxlevel=48, rank=1 WHERE entry=5833;
|
||||
UPDATE creature_template SET DamageModifier=3.59, HealthModifier=3.00, minlevel=47, maxlevel=48, rank=1 WHERE entry=5860;
|
||||
UPDATE creature_template SET DamageModifier=3.66, HealthModifier=3.00, minlevel=48, maxlevel=49, rank=1 WHERE entry=5861;
|
||||
UPDATE creature_template SET DamageModifier=4.68, HealthModifier=3.00, minlevel=49, maxlevel=50, rank=1 WHERE entry=5862;
|
||||
UPDATE creature_template SET DamageModifier=3.79, HealthModifier=3.00, minlevel=23, maxlevel=24, rank=1 WHERE entry=6132;
|
||||
UPDATE creature_template SET DamageModifier=3.30, HealthModifier=5.00, minlevel=55, maxlevel=55, rank=1 WHERE entry=6140;
|
||||
UPDATE creature_template SET DamageModifier=3.58, HealthModifier=3.00, minlevel=25, maxlevel=26, rank=1 WHERE entry=6208;
|
||||
UPDATE creature_template SET DamageModifier=3.31, HealthModifier=3.00, minlevel=24, maxlevel=25, rank=1 WHERE entry=6210;
|
||||
UPDATE creature_template SET DamageModifier=3.79, HealthModifier=2.76, minlevel=24, maxlevel=26, rank=1 WHERE entry=6213;
|
||||
UPDATE creature_template SET DamageModifier=3.58, HealthModifier=6.00, minlevel=26, maxlevel=26, rank=1 WHERE entry=6231;
|
||||
UPDATE creature_template SET DamageModifier=3.31, HealthModifier=3.00, minlevel=27, maxlevel=28, rank=1 WHERE entry=6523;
|
||||
UPDATE creature_template SET DamageModifier=2.55, HealthModifier=2.00, minlevel=20, maxlevel=20, rank=1 WHERE entry=6669;
|
||||
UPDATE creature_template SET DamageModifier=3.45, HealthModifier=3.00, minlevel=39, maxlevel=40, rank=1 WHERE entry=6733;
|
||||
UPDATE creature_template SET DamageModifier=2.73, HealthModifier=3.00, minlevel=52, maxlevel=53, rank=1 WHERE entry=7040;
|
||||
UPDATE creature_template SET DamageModifier=5.29, HealthModifier=3.00, minlevel=53, maxlevel=54, rank=1 WHERE entry=7041;
|
||||
UPDATE creature_template SET DamageModifier=2.44, HealthModifier=3.00, minlevel=56, maxlevel=57, rank=1 WHERE entry=7042;
|
||||
UPDATE creature_template SET DamageModifier=4.91, HealthModifier=3.00, minlevel=57, maxlevel=58, rank=1 WHERE entry=7043;
|
||||
UPDATE creature_template SET DamageModifier=3.52, HealthModifier=3.00, minlevel=50, maxlevel=52, rank=1 WHERE entry=7044;
|
||||
UPDATE creature_template SET DamageModifier=3.30, HealthModifier=3.00, minlevel=53, maxlevel=55, rank=1 WHERE entry=7045;
|
||||
UPDATE creature_template SET DamageModifier=3.38, HealthModifier=3.00, minlevel=56, maxlevel=58, rank=1 WHERE entry=7046;
|
||||
UPDATE creature_template SET DamageModifier=3.55, HealthModifier=4.00, minlevel=23, maxlevel=23, rank=1 WHERE entry=7053;
|
||||
UPDATE creature_template SET DamageModifier=3.57, HealthModifier=3.00, minlevel=53, maxlevel=54, rank=1 WHERE entry=7135;
|
||||
UPDATE creature_template SET DamageModifier=3.44, HealthModifier=3.00, minlevel=52, maxlevel=53, rank=1 WHERE entry=7136;
|
||||
UPDATE creature_template SET DamageModifier=3.66, HealthModifier=4.00, minlevel=55, maxlevel=55, rank=1 WHERE entry=7728;
|
||||
UPDATE creature_template SET DamageModifier=5.82, HealthModifier=2.00, minlevel=60, maxlevel=60, rank=1 WHERE entry=7734;
|
||||
UPDATE creature_template SET DamageModifier=5.67, HealthModifier=1.50, minlevel=60, maxlevel=60, rank=1 WHERE entry=7735;
|
||||
UPDATE creature_template SET DamageModifier=4.49, HealthModifier=2.69, minlevel=33, maxlevel=34, rank=1 WHERE entry=7872;
|
||||
UPDATE creature_template SET DamageModifier=4.11, HealthModifier=3.00, minlevel=33, maxlevel=34, rank=1 WHERE entry=7873;
|
||||
UPDATE creature_template SET DamageModifier=4.49, HealthModifier=2.69, minlevel=33, maxlevel=34, rank=1 WHERE entry=7874;
|
||||
UPDATE creature_template SET DamageModifier=3.14, HealthModifier=3.25, minlevel=48, maxlevel=48, rank=1 WHERE entry=7977;
|
||||
UPDATE creature_template SET DamageModifier=5.64, HealthModifier=5.00, minlevel=51, maxlevel=51, rank=1 WHERE entry=7995;
|
||||
UPDATE creature_template SET DamageModifier=4.26, HealthModifier=5.00, minlevel=50, maxlevel=50, rank=1 WHERE entry=7996;
|
||||
UPDATE creature_template SET DamageModifier=3.64, HealthModifier=3.00, minlevel=50, maxlevel=50, rank=1 WHERE entry=8075;
|
||||
UPDATE creature_template SET DamageModifier=3.91, HealthModifier=5.00, minlevel=52, maxlevel=52, rank=1 WHERE entry=8391;
|
||||
UPDATE creature_template SET DamageModifier=4.30, HealthModifier=3.00, minlevel=49, maxlevel=51, rank=1 WHERE entry=8419;
|
||||
UPDATE creature_template SET DamageModifier=3.36, HealthModifier=3.00, minlevel=48, maxlevel=48, rank=1 WHERE entry=8447;
|
||||
UPDATE creature_template SET DamageModifier=3.50, HealthModifier=3.00, minlevel=29, maxlevel=29, rank=1 WHERE entry=8518;
|
||||
UPDATE creature_template SET DamageModifier=3.79, HealthModifier=5.00, minlevel=50, maxlevel=50, rank=1 WHERE entry=8636;
|
||||
UPDATE creature_template SET DamageModifier=3.74, HealthModifier=3.00, minlevel=53, maxlevel=54, rank=1 WHERE entry=9043;
|
||||
UPDATE creature_template SET DamageModifier=3.74, HealthModifier=3.00, minlevel=53, maxlevel=54, rank=1 WHERE entry=9044;
|
||||
UPDATE creature_template SET DamageModifier=3.37, HealthModifier=3.00, minlevel=54, maxlevel=54, rank=1 WHERE entry=9461;
|
||||
UPDATE creature_template SET DamageModifier=2.52, HealthModifier=3.00, minlevel=55, maxlevel=57, rank=1 WHERE entry=10608;
|
||||
UPDATE creature_template SET DamageModifier=5.41, HealthModifier=4.50, minlevel=60, maxlevel=60, rank=1 WHERE entry=10737;
|
||||
UPDATE creature_template SET DamageModifier=2.61, HealthModifier=3.00, minlevel=59, maxlevel=59, rank=1 WHERE entry=10738;
|
||||
UPDATE creature_template SET DamageModifier=5.54, HealthModifier=4.50, minlevel=60, maxlevel=60, rank=1 WHERE entry=10741;
|
||||
UPDATE creature_template SET DamageModifier=4.35, HealthModifier=5.00, minlevel=51, maxlevel=51, rank=1 WHERE entry=10802;
|
||||
UPDATE creature_template SET DamageModifier=3.50, HealthModifier=4.50, minlevel=56, maxlevel=56, rank=1 WHERE entry=10806;
|
||||
UPDATE creature_template SET DamageModifier=3.65, HealthModifier=4.00, minlevel=58, maxlevel=58, rank=1 WHERE entry=10807;
|
||||
UPDATE creature_template SET DamageModifier=3.00, HealthModifier=3.00, minlevel=28, maxlevel=28, rank=1 WHERE entry=10882;
|
||||
UPDATE creature_template SET DamageModifier=5.56, HealthModifier=3.00, minlevel=57, maxlevel=58, rank=1 WHERE entry=10953;
|
||||
UPDATE creature_template SET DamageModifier=3.52, HealthModifier=3.00, minlevel=53, maxlevel=53, rank=1 WHERE entry=11141;
|
||||
UPDATE creature_template SET DamageModifier=3.74, HealthModifier=3.00, minlevel=53, maxlevel=54, rank=1 WHERE entry=11440;
|
||||
UPDATE creature_template SET DamageModifier=0.75, HealthModifier=3.00, minlevel=53, maxlevel=54, rank=1 WHERE entry=11442;
|
||||
UPDATE creature_template SET DamageModifier=4.14, HealthModifier=3.00, minlevel=52, maxlevel=53, rank=1 WHERE entry=11443;
|
||||
UPDATE creature_template SET DamageModifier=3.58, HealthModifier=3.00, minlevel=57, maxlevel=58, rank=1 WHERE entry=11698;
|
||||
UPDATE creature_template SET DamageModifier=3.65, HealthModifier=3.00, minlevel=57, maxlevel=58, rank=1 WHERE entry=11721;
|
||||
UPDATE creature_template SET DamageModifier=3.68, HealthModifier=3.00, minlevel=58, maxlevel=59, rank=1 WHERE entry=11722;
|
||||
UPDATE creature_template SET DamageModifier=3.57, HealthModifier=2.85, minlevel=58, maxlevel=59, rank=1 WHERE entry=11723;
|
||||
UPDATE creature_template SET DamageModifier=3.58, HealthModifier=3.00, minlevel=57, maxlevel=58, rank=1 WHERE entry=11724;
|
||||
UPDATE creature_template SET DamageModifier=3.68, HealthModifier=3.00, minlevel=58, maxlevel=59, rank=1 WHERE entry=11725;
|
||||
UPDATE creature_template SET DamageModifier=3.57, HealthModifier=3.00, minlevel=58, maxlevel=59, rank=1 WHERE entry=11726;
|
||||
UPDATE creature_template SET DamageModifier=5.54, HealthModifier=3.00, minlevel=59, maxlevel=60, rank=1 WHERE entry=11728;
|
||||
UPDATE creature_template SET DamageModifier=5.54, HealthModifier=3.00, minlevel=59, maxlevel=60, rank=1 WHERE entry=11729;
|
||||
UPDATE creature_template SET DamageModifier=5.28, HealthModifier=2.85, minlevel=59, maxlevel=60, rank=1 WHERE entry=11730;
|
||||
UPDATE creature_template SET DamageModifier=5.28, HealthModifier=3.00, minlevel=59, maxlevel=60, rank=1 WHERE entry=11731;
|
||||
UPDATE creature_template SET DamageModifier=5.43, HealthModifier=3.00, minlevel=59, maxlevel=60, rank=1 WHERE entry=11732;
|
||||
UPDATE creature_template SET DamageModifier=5.43, HealthModifier=3.00, minlevel=59, maxlevel=60, rank=1 WHERE entry=11733;
|
||||
UPDATE creature_template SET DamageModifier=3.62, HealthModifier=4.00, minlevel=59, maxlevel=61, rank=1 WHERE entry=11734;
|
||||
UPDATE creature_template SET DamageModifier=3.95, HealthModifier=3.00, minlevel=40, maxlevel=41, rank=1 WHERE entry=11777;
|
||||
UPDATE creature_template SET DamageModifier=3.69, HealthModifier=3.00, minlevel=41, maxlevel=42, rank=1 WHERE entry=11778;
|
||||
UPDATE creature_template SET DamageModifier=3.95, HealthModifier=3.00, minlevel=40, maxlevel=41, rank=1 WHERE entry=11781;
|
||||
UPDATE creature_template SET DamageModifier=3.47, HealthModifier=3.00, minlevel=42, maxlevel=43, rank=1 WHERE entry=11782;
|
||||
UPDATE creature_template SET DamageModifier=2.28, HealthModifier=3.00, minlevel=40, maxlevel=41, rank=1 WHERE entry=11785;
|
||||
UPDATE creature_template SET DamageModifier=2.48, HealthModifier=3.00, minlevel=41, maxlevel=42, rank=1 WHERE entry=11786;
|
||||
UPDATE creature_template SET DamageModifier=3.59, HealthModifier=3.00, minlevel=40, maxlevel=41, rank=1 WHERE entry=11787;
|
||||
UPDATE creature_template SET DamageModifier=3.56, HealthModifier=3.00, minlevel=41, maxlevel=42, rank=1 WHERE entry=11788;
|
||||
UPDATE creature_template SET DamageModifier=5.57, HealthModifier=15.00, minlevel=61, maxlevel=61, rank=1 WHERE entry=11896;
|
||||
UPDATE creature_template SET DamageModifier=5.13, HealthModifier=6.00, minlevel=60, maxlevel=60, rank=1 WHERE entry=11897;
|
||||
UPDATE creature_template SET DamageModifier=2.55, HealthModifier=3.00, minlevel=20, maxlevel=20, rank=1 WHERE entry=11920;
|
||||
UPDATE creature_template SET DamageModifier=1.50, HealthModifier=3.00, minlevel=21, maxlevel=21, rank=1 WHERE entry=11921;
|
||||
UPDATE creature_template SET DamageModifier=3.58, HealthModifier=6.00, minlevel=58, maxlevel=58, rank=1 WHERE entry=12262;
|
||||
UPDATE creature_template SET DamageModifier=3.38, HealthModifier=6.00, minlevel=58, maxlevel=58, rank=1 WHERE entry=12263;
|
||||
UPDATE creature_template SET DamageModifier=3.58, HealthModifier=3.00, minlevel=26, maxlevel=26, rank=1 WHERE entry=12579;
|
||||
UPDATE creature_template SET DamageModifier=1.80, HealthModifier=3.00, minlevel=19, maxlevel=20, rank=1 WHERE entry=1180;
|
||||
UPDATE creature_template SET DamageModifier=3.02, HealthModifier=3.00, minlevel=36, maxlevel=36, rank=1 WHERE entry=12865;
|
||||
UPDATE creature_template SET DamageModifier=3.06, HealthModifier=3.00, minlevel=50, maxlevel=52, rank=1 WHERE entry=14388;
|
||||
UPDATE creature_template SET DamageModifier=2.20, HealthModifier=6.00, minlevel=55, maxlevel=55, rank=1 WHERE entry=14467;
|
||||
UPDATE creature_template SET DamageModifier=3.32, HealthModifier=8.00, minlevel=50, maxlevel=50, rank=1 WHERE entry=14621;
|
||||
UPDATE creature_template SET DamageModifier=2.02, HealthModifier=3.37, minlevel=60, maxlevel=60, rank=1 WHERE entry=15211;
|
||||
UPDATE creature_template SET DamageModifier=1.98, HealthModifier=2.70, minlevel=60, maxlevel=60, rank=1 WHERE entry=15209;
|
||||
UPDATE creature_template SET DamageModifier=2.59, HealthModifier=10.00, minlevel=61, maxlevel=62, rank=1 WHERE entry=15215;
|
||||
UPDATE creature_template SET DamageModifier=10.17, HealthModifier=45.00, minlevel=62, maxlevel=62, rank=1 WHERE entry=15286;
|
||||
UPDATE creature_template SET DamageModifier=10.17, HealthModifier=30.00, minlevel=62, maxlevel=62, rank=1 WHERE entry=15288;
|
||||
UPDATE creature_template SET DamageModifier=10.17, HealthModifier=30.00, minlevel=62, maxlevel=62, rank=1 WHERE entry=15290;
|
||||
UPDATE creature_template SET DamageModifier=1.02, HealthModifier=3.00, minlevel=39, maxlevel=40, rank=1 WHERE entry=4394;
|
||||
UPDATE creature_template SET DamageModifier=0.00, HealthModifier=0.00, minlevel=60, maxlevel=60, rank=3 WHERE entry=20100;
|
||||
UPDATE creature_template SET DamageModifier=0.00, HealthModifier=0.00, minlevel=60, maxlevel=60, rank=3 WHERE entry=20101;
|
||||
UPDATE creature_template SET DamageModifier=3.09, HealthModifier=2.70, minlevel=60, maxlevel=60, rank=1 WHERE entry=15212;
|
||||
UPDATE creature_template SET DamageModifier=3.09, HealthModifier=2.70, minlevel=60, maxlevel=60, rank=1 WHERE entry=15307;
|
||||
5
sql/world/base/transports.sql
Normal file
5
sql/world/base/transports.sql
Normal file
@@ -0,0 +1,5 @@
|
||||
-- From Stormwind to Auberdine
|
||||
DELETE FROM `transports` WHERE `guid`=2;
|
||||
|
||||
-- From Orgrimmar to Thunder Bluff
|
||||
DELETE FROM `transports` WHERE `guid`=20;
|
||||
2918
sql/world/base/vanilla_quest_reputations.sql
Normal file
2918
sql/world/base/vanilla_quest_reputations.sql
Normal file
File diff suppressed because it is too large
Load Diff
3302
sql/world/base/vanilla_regen_values.sql
Normal file
3302
sql/world/base/vanilla_regen_values.sql
Normal file
File diff suppressed because it is too large
Load Diff
80
sql/world/base/vanilla_xp_tables.sql
Normal file
80
sql/world/base/vanilla_xp_tables.sql
Normal file
@@ -0,0 +1,80 @@
|
||||
REPLACE INTO `player_xp_for_level` (`Level`, `Experience`) VALUES
|
||||
(1, 400),
|
||||
(2, 900),
|
||||
(3, 1400),
|
||||
(4, 2100),
|
||||
(5, 2800),
|
||||
(6, 3600),
|
||||
(7, 4500),
|
||||
(8, 5400),
|
||||
(9, 6500),
|
||||
(10, 7600),
|
||||
(11, 8800),
|
||||
(12, 10100),
|
||||
(13, 11400),
|
||||
(14, 12900),
|
||||
(15, 14400),
|
||||
(16, 16000),
|
||||
(17, 17700),
|
||||
(18, 19400),
|
||||
(19, 21300),
|
||||
(20, 23200),
|
||||
(21, 25200),
|
||||
(22, 27300),
|
||||
(23, 29400),
|
||||
(24, 31700),
|
||||
(25, 34000),
|
||||
(26, 36400),
|
||||
(27, 38900),
|
||||
(28, 41400),
|
||||
(29, 44300),
|
||||
(30, 47400),
|
||||
(31, 50800),
|
||||
(32, 54500),
|
||||
(33, 58600),
|
||||
(34, 62800),
|
||||
(35, 67100),
|
||||
(36, 71600),
|
||||
(37, 76100),
|
||||
(38, 80800),
|
||||
(39, 85700),
|
||||
(40, 90700),
|
||||
(41, 95800),
|
||||
(42, 101000),
|
||||
(43, 106300),
|
||||
(44, 111800),
|
||||
(45, 117500),
|
||||
(46, 123200),
|
||||
(47, 129100),
|
||||
(48, 135100),
|
||||
(49, 141200),
|
||||
(50, 147500),
|
||||
(51, 153900),
|
||||
(52, 160400),
|
||||
(53, 167100),
|
||||
(54, 173900),
|
||||
(55, 180800),
|
||||
(56, 187900),
|
||||
(57, 195000),
|
||||
(58, 202300),
|
||||
(59, 209800),
|
||||
(60, 494000),
|
||||
(61, 574700),
|
||||
(62, 614400),
|
||||
(63, 650300),
|
||||
(64, 682300),
|
||||
(65, 710200),
|
||||
(66, 734100),
|
||||
(67, 753700),
|
||||
(68, 768900),
|
||||
(69, 779700),
|
||||
(70, 1523800),
|
||||
(71, 1539600),
|
||||
(72, 1555700),
|
||||
(73, 1571800),
|
||||
(74, 1587900),
|
||||
(75, 1604200),
|
||||
(76, 1620700),
|
||||
(77, 1637400),
|
||||
(78, 1653900),
|
||||
(79, 1670800);
|
||||
1759
sql/world/base/zone_deadwind_pass.sql
Normal file
1759
sql/world/base/zone_deadwind_pass.sql
Normal file
File diff suppressed because it is too large
Load Diff
14
sql/world/base/zone_dun_morogh.sql
Normal file
14
sql/world/base/zone_dun_morogh.sql
Normal file
@@ -0,0 +1,14 @@
|
||||
-- Beginnings (Warlock)
|
||||
DELETE FROM `creature_questender` WHERE `id`=460 AND `quest`=1599;
|
||||
INSERT INTO `creature_questender` (`id`, `quest`) VALUES (460, 1599);
|
||||
|
||||
-- Beginnings (Warlock)
|
||||
DELETE FROM `creature_queststarter` WHERE `id`=460 AND `quest`=1599;
|
||||
INSERT INTO `creature_queststarter` (`id`, `quest`) VALUES (460, 1599);
|
||||
|
||||
-- Beginnings (Warlock)
|
||||
UPDATE `quest_template` SET `Flags`=8 WHERE `ID`=1599;
|
||||
|
||||
-- Beginnings (Warlock)
|
||||
UPDATE `quest_template_addon` SET `SpecialFlags`=0 WHERE `ID`=1599;
|
||||
|
||||
170
sql/world/base/zone_durotar.sql
Normal file
170
sql/world/base/zone_durotar.sql
Normal file
@@ -0,0 +1,170 @@
|
||||
-- Vile Familiars
|
||||
UPDATE `creature_template` SET `faction`=14 WHERE `entry`=3101;
|
||||
|
||||
-- Felstalker
|
||||
UPDATE `creature_template` SET `faction`=14 WHERE `entry`=3102;
|
||||
|
||||
-- Dwukk <Journeyman Blacksmith>
|
||||
UPDATE `creature_template` SET `subname`='Journeyman Blacksmith' WHERE `entry`=3174;
|
||||
|
||||
-- Krunn <Miner>
|
||||
UPDATE `creature_template` SET `subname`='Miner' WHERE `entry`=3175;
|
||||
|
||||
-- Yarrog Baneshadow
|
||||
UPDATE `creature_template` SET `faction`=16 WHERE `entry`=3183;
|
||||
|
||||
-- Miao'zan <Journeyman Alchemist>
|
||||
UPDATE `creature_template` SET `subname`='Journeyman Alchemist' WHERE `entry`=3184;
|
||||
|
||||
-- Mishiki <Herbalist>
|
||||
UPDATE `creature_template` SET `subname`='Herbalist' WHERE `entry`=3185;
|
||||
|
||||
-- Gazz'uz
|
||||
UPDATE `creature_template` SET `minlevel`=14, `maxlevel`=14 WHERE `entry`=3204;
|
||||
|
||||
-- Den Grunt
|
||||
UPDATE `creature_template` SET `minlevel`=55, `maxlevel`=55 WHERE `entry`=5952;
|
||||
|
||||
-- Voidwalker Minion
|
||||
UPDATE `creature_template` SET `minlevel`=47, `maxlevel`=47, `faction`=7 WHERE `entry`=8996;
|
||||
|
||||
-- Frezza <Zeppelin Master>
|
||||
UPDATE `creature_template` SET `subname`='Zeppelin Master' WHERE `entry`=9564;
|
||||
|
||||
-- Mukdrak <Journeyman Engineer>
|
||||
UPDATE `creature_template` SET `subname`='Journeyman Engineer' WHERE `entry`=11025;
|
||||
|
||||
-- Imp Minion
|
||||
UPDATE `creature_template` SET `minlevel`=46, `maxlevel`=46 WHERE `entry`=12922;
|
||||
|
||||
-- Steamwheedle Bruiser
|
||||
UPDATE `creature_template` SET `minlevel`=55, `maxlevel`=55 WHERE `entry`=16096;
|
||||
|
||||
-- Dwukk <Journeyman Blacksmith>
|
||||
DELETE FROM `npc_trainer` WHERE `ID`=3174;
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`) VALUES (3174, -310000);
|
||||
|
||||
-- Krunn <Miner>
|
||||
DELETE FROM `npc_trainer` WHERE `ID`=3175;
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`) VALUES (3175, -390000);
|
||||
|
||||
-- Miao'zan <Journeyman Alchemist>
|
||||
DELETE FROM `npc_trainer` WHERE `ID`=3184;
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`) VALUES (3184, -300000);
|
||||
|
||||
-- Mishiki <Herbalist>
|
||||
DELETE FROM `npc_trainer` WHERE `ID`=3185;
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`) VALUES (3185, -370000);
|
||||
|
||||
-- Rawrk <First Aid Trainer>
|
||||
DELETE FROM `npc_trainer` WHERE `ID`=5943;
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`) VALUES (5943, -350000);
|
||||
|
||||
-- Xar'Ti <Riding Trainer>
|
||||
DELETE FROM `npc_trainer` WHERE `ID`=7953;
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`) VALUES (7953, -450000);
|
||||
|
||||
-- Mukdrak <Journeyman Engineer>
|
||||
DELETE FROM `npc_trainer` WHERE `ID`=11025;
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`) VALUES (11025, -340000);
|
||||
|
||||
-- Wuark <Armorer & Shieldcrafter>
|
||||
DELETE FROM `npc_vendor` WHERE `entry`=3167 AND `item` IN (20815, 20824);
|
||||
|
||||
-- Flakk <Trade Supplies>
|
||||
DELETE FROM `npc_vendor` WHERE `entry`=3168 AND `item` IN (30817);
|
||||
|
||||
-- Tai'tasi <Trade Supplies>
|
||||
DELETE FROM `npc_vendor` WHERE `entry`=3187 AND `item` IN (30817);
|
||||
|
||||
-- Zansoa <Fishing Supplies>
|
||||
DELETE FROM `npc_vendor` WHERE `entry`=5942 AND `item` IN (6365, 6533);
|
||||
|
||||
-- Cutting Teeth
|
||||
UPDATE `quest_template` SET `Flags`=8, `LogDescription`='Kill 10 Mottled Boars then return to Gornek at the Den.', `RequiredNpcOrGoCount1`=10 WHERE `ID`=788;
|
||||
|
||||
-- Sting of the Scorpid
|
||||
UPDATE `quest_template` SET `Flags`=8, `LogDescription`='Get 10 Scorpid Worker Tails for Gornek in the Den.', `RequiredItemCount1`=10 WHERE `ID`=789;
|
||||
|
||||
-- Sarkoth
|
||||
UPDATE `quest_template` SET `Flags`=8 WHERE `ID`=790;
|
||||
|
||||
-- Vile Familiars
|
||||
UPDATE `quest_template` SET `Flags`=8, `LogDescription`='Kill 12 Vile Familiars.$b$bReturn to Zureetha Fargaze outside the Den.', `RequiredNpcOrGoCount1`=12 WHERE `ID`=792;
|
||||
|
||||
-- Burning Blade Medallion
|
||||
UPDATE `quest_template` SET `Flags`=8 WHERE `ID`=794;
|
||||
|
||||
-- Sarkoth
|
||||
UPDATE `quest_template` SET `Flags`=0 WHERE `ID`=804;
|
||||
|
||||
-- Report to Sen'jin Village
|
||||
UPDATE `quest_template` SET `Flags`=8 WHERE `ID`=805;
|
||||
|
||||
-- Call of Earth (Shaman)
|
||||
UPDATE `quest_template` SET `Flags`=8 WHERE `ID`=1516;
|
||||
|
||||
-- Call of Earth (Shaman)
|
||||
UPDATE `quest_template` SET `Flags`=0 WHERE `ID`=1517;
|
||||
|
||||
-- A Peon's Burden
|
||||
UPDATE `quest_template` SET `Flags`=0 WHERE `ID`=2161;
|
||||
|
||||
-- Galgar's Cactus Apple Surprise
|
||||
UPDATE `quest_template` SET `Flags`=8, `LogDescription`='Bring Galgar 10 Cactus Apples. You remember him saying that they could be found near cactuses.', `RequiredItemCount1`=10 WHERE `ID`=4402;
|
||||
|
||||
-- Your Place In The World
|
||||
UPDATE `quest_template` SET `Flags`=8 WHERE `ID`=4641;
|
||||
|
||||
-- Lazy Peons
|
||||
UPDATE `quest_template` SET `Flags`=0 WHERE `ID`=5441;
|
||||
|
||||
-- Thazz'ril's Pick
|
||||
UPDATE `quest_template` SET `Flags`=8 WHERE `ID`=6394;
|
||||
|
||||
-- Cutting Teeth
|
||||
UPDATE `quest_template_addon` SET `SpecialFlags`=0 WHERE `ID`=788;
|
||||
|
||||
-- Sting of the Scorpid
|
||||
UPDATE `quest_template_addon` SET `SpecialFlags`=0 WHERE `ID`=789;
|
||||
|
||||
-- Sarkoth
|
||||
UPDATE `quest_template_addon` SET `SpecialFlags`=0 WHERE `ID`=790;
|
||||
|
||||
-- Vile Familiars
|
||||
UPDATE `quest_template_addon` SET `SpecialFlags`=0 WHERE `ID`=792;
|
||||
|
||||
-- Burning Blade Medallion
|
||||
UPDATE `quest_template_addon` SET `SpecialFlags`=0 WHERE `ID`=794;
|
||||
|
||||
-- Sarkoth
|
||||
UPDATE `quest_template_addon` SET `SpecialFlags`=0 WHERE `ID`=804;
|
||||
|
||||
-- Report to Sen'jin Village
|
||||
UPDATE `quest_template_addon` SET `SpecialFlags`=0 WHERE `ID`=805;
|
||||
|
||||
-- Call of Earth (Shaman)
|
||||
UPDATE `quest_template_addon` SET `SpecialFlags`=0 WHERE `ID`=1516;
|
||||
|
||||
-- Call of Earth (Shaman)
|
||||
UPDATE `quest_template_addon` SET `SpecialFlags`=0 WHERE `ID`=1517;
|
||||
|
||||
-- A Peon's Burden
|
||||
UPDATE `quest_template_addon` SET `SpecialFlags`=0 WHERE `ID`=2161;
|
||||
|
||||
-- Simple Parchment
|
||||
UPDATE `quest_template_addon` SET `SpecialFlags`=0 WHERE `ID`=2383;
|
||||
|
||||
-- Galgar's Cactus Apple Surprise
|
||||
UPDATE `quest_template_addon` SET `SpecialFlags`=0 WHERE `ID`=4402;
|
||||
|
||||
-- Your Place In The World
|
||||
UPDATE `quest_template_addon` SET `SpecialFlags`=0 WHERE `ID`=4641;
|
||||
|
||||
-- Lazy Peons
|
||||
UPDATE `quest_template_addon` SET `SpecialFlags`=0 WHERE `ID`=5441;
|
||||
|
||||
-- Thazz'ril's Pick
|
||||
UPDATE `quest_template_addon` SET `SpecialFlags`=0 WHERE `ID`=6394;
|
||||
|
||||
|
||||
231
sql/world/base/zone_elwynn_forest.sql
Normal file
231
sql/world/base/zone_elwynn_forest.sql
Normal file
@@ -0,0 +1,231 @@
|
||||
-- Kitta Firewind <Enchanting Trainer>
|
||||
DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=15 AND `SourceGroup`=4169 AND `SourceEntry`=0 AND `ConditionTypeOrReference`=7;
|
||||
INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `ConditionTypeOrReference`, `ConditionValue1`, `ConditionValue2`, `Comment`) VALUES (15, 4169, 0, 7, 333, 125, 'Show menu if enchanting is 125 or higher');
|
||||
|
||||
-- The Stolen Tome (Warlock)
|
||||
DELETE FROM `creature_questender` WHERE `id`=459 AND `quest`=1598;
|
||||
INSERT INTO `creature_questender` (`id`, `quest`) VALUES (459, 1598);
|
||||
|
||||
-- The Stolen Tome (Warlock)
|
||||
DELETE FROM `creature_queststarter` WHERE `id`=459 AND `quest`=1598;
|
||||
INSERT INTO `creature_queststarter` (`id`, `quest`) VALUES (459, 1598);
|
||||
|
||||
-- Defias Thug
|
||||
UPDATE `creature_template` SET `faction`=17 WHERE `entry`=38;
|
||||
|
||||
-- Diseased Timber Wolf
|
||||
UPDATE `creature_template` SET `modelid1`=604, `name`='Timber Wolf' WHERE `entry`=69;
|
||||
|
||||
-- Kobold Laborer
|
||||
UPDATE `creature_template` SET `maxlevel`=4 WHERE `entry`=80;
|
||||
|
||||
-- Garrick Padfoot
|
||||
UPDATE `creature_template` SET `faction`=17 WHERE `entry`=103;
|
||||
|
||||
-- Kobold Worker
|
||||
UPDATE `creature_template` SET `modelid1`=10912 WHERE `entry`=257;
|
||||
|
||||
-- Diseased Young Wolf
|
||||
UPDATE `creature_template` SET `modelid1`=447, `name`='Young Wolf' WHERE `entry`=299;
|
||||
|
||||
-- Smith Argus
|
||||
UPDATE `creature_template` SET `subname`='Journeyman Blacksmith' WHERE `entry`=514;
|
||||
|
||||
-- Eldrin <Journeyman Tailor>
|
||||
UPDATE `creature_template` SET `subname`='Journeyman Tailor' WHERE `entry`=1103;
|
||||
|
||||
-- Alchemist Mallory <Journeyman Alchemist>
|
||||
UPDATE `creature_template` SET `subname`='Journeyman Alchemist' WHERE `entry`=1215;
|
||||
|
||||
-- Adele Fielder <Journeyman Leatherworker>
|
||||
UPDATE `creature_template` SET `subname`='Journeyman Leatherworker' WHERE `entry`=1632;
|
||||
|
||||
-- Northshire Guard
|
||||
UPDATE `creature_template` SET `minlevel`=55, `maxlevel`=55 WHERE `entry`=1642;
|
||||
|
||||
-- Lee Brown <Fisherman>
|
||||
UPDATE `creature_template` SET `subname`='Fisherman' WHERE `entry`=1651;
|
||||
|
||||
-- Rebecca Laughlin <Tabard Designer>
|
||||
UPDATE `creature_template` SET `subname`='Tabard Vendor' WHERE `entry`=5193;
|
||||
|
||||
-- Lilyssia Nightbreeze <Alchemy Trainer>
|
||||
UPDATE `creature_template` SET `subname`='Expert Alchemist' WHERE `entry`=5499;
|
||||
|
||||
-- Tel'Athir <Apprentice Alchemist>
|
||||
UPDATE `creature_template` SET `subname`='Journeyman Alchemist', `npcflag`=81, `trainer_type`=2 WHERE `entry`=5500;
|
||||
|
||||
-- Eldraeith <Herbalism Supplies>
|
||||
UPDATE `creature_template` SET `subname`='Herbalism Supplier' WHERE `entry`=5503;
|
||||
|
||||
-- Therum Deepforge <Blacksmithing Trainer>
|
||||
UPDATE `creature_template` SET `subname`='Expert Blacksmith' WHERE `entry`=5511;
|
||||
|
||||
-- Lilliam Sparkspindle <Engineering Trainer>
|
||||
UPDATE `creature_template` SET `subname`='Expert Engineer' WHERE `entry`=5518;
|
||||
|
||||
-- Simon Tanner <Leatherworking Trainer>
|
||||
UPDATE `creature_template` SET `subname`='Expert Leatherworker' WHERE `entry`=5564;
|
||||
|
||||
-- Sellandus <Apprentice Tailor>
|
||||
UPDATE `creature_template` SET `subname`='Expert Tailor', `npcflag`=81, `trainer_type`=2 WHERE `entry`=5567;
|
||||
|
||||
-- Helene Peltskinner <Skinner>
|
||||
UPDATE `creature_template` SET `subname`='Skinner' WHERE `entry`=6306;
|
||||
|
||||
-- Diseased Timber Wolf
|
||||
DELETE FROM `creature_template_addon` WHERE `entry`=69;
|
||||
|
||||
-- Diseased Young Wolf
|
||||
DELETE FROM `creature_template_addon` WHERE `entry`=299;
|
||||
|
||||
-- Kitta Firewind <Enchanting Trainer>
|
||||
DELETE FROM `gossip_menu_option` WHERE `MenuID`=4169;
|
||||
INSERT INTO `gossip_menu_option` (`MenuID`, `OptionID`, `OptionIcon`, `OptionText`, `OptionBroadcastTextID`, `OptionType`, `OptionNpcFlag`) VALUES (4169, 0, 3, 'Train me.', 3266, 5, 16);
|
||||
|
||||
-- Smith Argus <Journeyman Blacksmith>
|
||||
DELETE FROM `npc_trainer` WHERE `ID`=514;
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`) VALUES (514, -310000);
|
||||
|
||||
-- Eldrin <Journeyman Tailor>
|
||||
DELETE FROM `npc_trainer` WHERE `ID`=1103;
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`) VALUES (1103, -410000);
|
||||
|
||||
-- Alchemist Mallory <Journeyman Alchemist>
|
||||
DELETE FROM `npc_trainer` WHERE `ID`=1215;
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`) VALUES (1215, -300000);
|
||||
|
||||
-- Adele Fielder <Journeyman Leatherworker>
|
||||
DELETE FROM `npc_trainer` WHERE `ID`=1632;
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`) VALUES (1632, -380000);
|
||||
|
||||
-- Lee Brown <Fisherman>
|
||||
DELETE FROM `npc_trainer` WHERE `ID`=1651;
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`) VALUES (1651, -360000);
|
||||
|
||||
-- Michelle Belle <Physician>
|
||||
DELETE FROM `npc_trainer` WHERE `ID`=2329;
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`) VALUES (2329, -350000);
|
||||
|
||||
-- Randal Hunter <Riding Trainer>
|
||||
DELETE FROM `npc_trainer` WHERE `ID`=4732;
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`) VALUES (4732, -450000);
|
||||
|
||||
-- Kitta Firewind <Enchanting Trainer>
|
||||
DELETE FROM `npc_trainer` WHERE `ID`=11072;
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`) VALUES (11072, -330000);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`) VALUES (11072, -330001);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`) VALUES (11072, -330002);
|
||||
|
||||
-- Antonio Perelli <Traveling Salesman>
|
||||
DELETE FROM `npc_vendor` WHERE `entry`=844 AND `item`=40411;
|
||||
|
||||
-- Dawn Brightstar <Arcane Goods>
|
||||
DELETE FROM `npc_vendor` WHERE `entry`=958 AND `item` IN (22147, 22148, 37201, 40411);
|
||||
|
||||
-- Wolves Across the Border
|
||||
DELETE FROM `quest_offer_reward` WHERE `ID`=33;
|
||||
INSERT INTO `quest_offer_reward` (`ID`, `Emote1`, `RewardText`) VALUES (33, 1, 'You\'ve been busy! I can\'t wait to cook up that wolf meat...$b$bI have some things here you might want - take your pick!');
|
||||
|
||||
-- Wolves Across the Border
|
||||
DELETE FROM `quest_request_items` WHERE `ID`=33;
|
||||
INSERT INTO `quest_request_items` (`ID`, `EmoteOnComplete`, `EmoteOnIncomplete`, `CompletionText`) VALUES (33, 6, 6, 'Hey $N. I\'m getting hungry...did you get that tough wolf meat?');
|
||||
|
||||
-- Bounty on Garrick Padfoot
|
||||
UPDATE `quest_template` SET `Flags`=8 WHERE `ID`=6;
|
||||
|
||||
-- Kobold Camp Cleanup
|
||||
UPDATE `quest_template` SET `Flags`=8, `LogDescription`='Kill 10 Kobold Vermin, then return to Marshal McBride.', `RequiredNpcOrGoCount1`=10 WHERE `ID`=7;
|
||||
|
||||
-- Investigate Echo Ridge
|
||||
UPDATE `quest_template` SET `Flags`=8, `LogDescription`='Kill 10 Kobold Workers, then report back to Marshal McBride.', `QuestDescription`='$N, my scouts tell me that the kobold infestation is larger than we had thought. A group of kobold workers has camped near the Echo Ridge Mine to the north.$B$BGo to the mine and remove them. We know there are at least 10. Kill them, see if there are more, then report back to me.', `RequiredNpcOrGoCount1`=10 WHERE `ID`=15;
|
||||
|
||||
-- Brotherhood of Thieves
|
||||
UPDATE `quest_template` SET `Flags`=8, `LogDescription`='Bring 12 Red Burlap Bandanas to Deputy Willem outside the Northshire Abbey.', `RequiredItemCount1`=12 WHERE `ID`=18;
|
||||
|
||||
-- Skirmish at Echo Ridge
|
||||
UPDATE `quest_template` SET `Flags`=8, `LogDescription`='Kill 12 Kobold Laborers, then return to Marshal McBride at Northshire Abbey.', `RequiredNpcOrGoCount1`=12 WHERE `ID`=21;
|
||||
|
||||
-- Wolves Across the Border
|
||||
UPDATE `quest_template` SET `Flags`=8, `LogDescription`='Bring 8 pieces of Tough Wolf Meat to Eagan Peltskinner outside Northshire Abbey.', `QuestDescription`='I hate those nasty timber wolves! But I sure like eating wolf steaks... Bring me tough wolf meat and I will exchange it for something you\'ll find useful.$B$BTough wolf meat is gathered from hunting the timber wolves and young wolves wandering the Northshire countryside.', `RequiredItemId1`=750 WHERE `ID`=33;
|
||||
|
||||
-- Report to Goldshire
|
||||
UPDATE `quest_template` SET `Flags`=0 WHERE `ID`=54;
|
||||
|
||||
-- A Threat Within
|
||||
UPDATE `quest_template` SET `Flags`=8 WHERE `ID`=783;
|
||||
|
||||
-- Rest and Relaxation
|
||||
UPDATE `quest_template` SET `Flags`=8 WHERE `ID`=2158;
|
||||
|
||||
-- Encrypted Letter
|
||||
UPDATE `quest_template` SET `Flags`=0 WHERE `ID`=3102;
|
||||
|
||||
-- Milly Osworth
|
||||
UPDATE `quest_template` SET `Flags`=8 WHERE `ID`=3903;
|
||||
|
||||
-- Milly's Harvest
|
||||
UPDATE `quest_template` SET `Flags`=8 WHERE `ID`=3904;
|
||||
|
||||
-- Grape Manifest
|
||||
UPDATE `quest_template` SET `Flags`=0 WHERE `ID`=3905;
|
||||
|
||||
-- Eagan Peltskinner
|
||||
UPDATE `quest_template` SET `QuestDescription`='Eagan Peltskinner is looking for someone to hunt wolves for him. That\'s good news, because we\'re seeing a lot more wolves in Northshire Valley lately.$B$BIf you\'re interested then speak with Eagan. He\'s around the side of the abbey, to the left.' WHERE `ID`=5261;
|
||||
|
||||
-- Bounty on Garrick Padfoot
|
||||
UPDATE `quest_template_addon` SET `SpecialFlags`=0 WHERE `ID`=6;
|
||||
|
||||
-- Kobold Camp Cleanup
|
||||
UPDATE `quest_template_addon` SET `SpecialFlags`=0 WHERE `ID`=7;
|
||||
|
||||
-- Investigate Echo Ridge
|
||||
UPDATE `quest_template_addon` SET `SpecialFlags`=0 WHERE `ID`=15;
|
||||
|
||||
-- Brotherhood of Thieves
|
||||
UPDATE `quest_template_addon` SET `SpecialFlags`=0 WHERE `ID`=18;
|
||||
|
||||
-- Skirmish at Echo Ridge
|
||||
UPDATE `quest_template_addon` SET `SpecialFlags`=0 WHERE `ID`=21;
|
||||
|
||||
-- Wolves Across the Border
|
||||
UPDATE `quest_template_addon` SET `SpecialFlags`=0 WHERE `ID`=33;
|
||||
|
||||
-- Report to Goldshire
|
||||
UPDATE `quest_template_addon` SET `SpecialFlags`=0 WHERE `ID`=54;
|
||||
|
||||
-- A Threat Within
|
||||
UPDATE `quest_template_addon` SET `SpecialFlags`=0 WHERE `ID`=783;
|
||||
|
||||
-- Rest and Relaxation
|
||||
UPDATE `quest_template_addon` SET `SpecialFlags`=0 WHERE `ID`=2158;
|
||||
|
||||
-- Simple Letter
|
||||
UPDATE `quest_template_addon` SET `SpecialFlags`=0 WHERE `ID`=3100;
|
||||
|
||||
-- Consecrated Letter
|
||||
UPDATE `quest_template_addon` SET `SpecialFlags`=0 WHERE `ID`=3101;
|
||||
|
||||
-- Encrypted Letter
|
||||
UPDATE `quest_template_addon` SET `SpecialFlags`=0 WHERE `ID`=3102;
|
||||
|
||||
-- Hallowed Letter
|
||||
UPDATE `quest_template_addon` SET `SpecialFlags`=0 WHERE `ID`=3103;
|
||||
|
||||
-- Glyphic Letter
|
||||
UPDATE `quest_template_addon` SET `SpecialFlags`=0 WHERE `ID`=3104;
|
||||
|
||||
-- Tainted Letter
|
||||
UPDATE `quest_template_addon` SET `SpecialFlags`=0 WHERE `ID`=3105;
|
||||
|
||||
-- Milly Osworth
|
||||
UPDATE `quest_template_addon` SET `SpecialFlags`=0 WHERE `ID`=3903;
|
||||
|
||||
-- Milly's Harvest
|
||||
UPDATE `quest_template_addon` SET `SpecialFlags`=0 WHERE `ID`=3904;
|
||||
|
||||
-- Grape Manifest
|
||||
UPDATE `quest_template_addon` SET `SpecialFlags`=0 WHERE `ID`=3905;
|
||||
|
||||
-- Eagan Peltskinner
|
||||
UPDATE `quest_template_addon` SET `SpecialFlags`=0 WHERE `ID`=5261;
|
||||
3
sql/world/base/zone_ironforge.sql
Normal file
3
sql/world/base/zone_ironforge.sql
Normal file
@@ -0,0 +1,3 @@
|
||||
-- Summon Felsteed (Warlock)
|
||||
DELETE FROM `creature_queststarter` WHERE `id`=5172 AND `quest`=4487;
|
||||
INSERT INTO `creature_queststarter` (`id`, `quest`) VALUES (5172, 4487);
|
||||
139
sql/world/base/zone_mulgore.sql
Normal file
139
sql/world/base/zone_mulgore.sql
Normal file
@@ -0,0 +1,139 @@
|
||||
-- Bristleback Quilboar
|
||||
UPDATE `creature_template` SET `faction`=111 WHERE `entry`=2952;
|
||||
|
||||
-- Bristleback Shaman
|
||||
UPDATE `creature_template` SET `faction`=111 WHERE `entry`=2953;
|
||||
|
||||
-- Bristleback Battleboar
|
||||
UPDATE `creature_template` SET `faction`=111 WHERE `entry`=2954;
|
||||
|
||||
-- Battleboar
|
||||
UPDATE `creature_template` SET `faction`=14 WHERE `entry`=2966;
|
||||
|
||||
-- Bael'dun Digger
|
||||
UPDATE `creature_template` SET `faction`=57 WHERE `entry`=2989;
|
||||
|
||||
-- Bael'dun Appraiser
|
||||
UPDATE `creature_template` SET `faction`=57 WHERE `entry`=2990;
|
||||
|
||||
-- Chaw Stronghide <Journeyman Leatherworker>
|
||||
UPDATE `creature_template` SET `subname`='Journeyman Leatherworker' WHERE `entry`=3069;
|
||||
|
||||
-- Bronk Steelrage
|
||||
UPDATE `creature_template` SET `subname`='Armorer and Shieldcrafter' WHERE `entry`=3075;
|
||||
|
||||
-- Brave Proudsnout
|
||||
UPDATE `creature_template` SET `minlevel`=55, `maxlevel`=55 WHERE `entry`=3210;
|
||||
|
||||
-- Brave Lightninghorn
|
||||
UPDATE `creature_template` SET `minlevel`=55, `maxlevel`=55 WHERE `entry`=3211;
|
||||
|
||||
-- Uthan Stillwater <Fisherman>
|
||||
UPDATE `creature_template` SET `subname`='Fisherman' WHERE `entry`=5938;
|
||||
|
||||
-- Yonn Deepcut <Skinner>
|
||||
UPDATE `creature_template` SET `subname`='Skinner' WHERE `entry`=6290;
|
||||
|
||||
-- Mulgore Protector
|
||||
UPDATE `creature_template` SET `minlevel`=55, `maxlevel`=55 WHERE `entry`=7975;
|
||||
|
||||
-- Chief Sharptusk Thornmantle
|
||||
UPDATE `creature_template` SET `faction`=14 WHERE `entry`=8554;
|
||||
|
||||
-- Twizwick Sprocketgrind <Journeyman Engineer>
|
||||
UPDATE `creature_template` SET `subname`='Journeyman Engineer' WHERE `entry`=10993;
|
||||
|
||||
-- Chaw Stronghide <Journeyman Leatherworker>
|
||||
DELETE FROM `npc_trainer` WHERE `ID`=3069;
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`) VALUES (3069, -380000);
|
||||
|
||||
-- Kar Stormsinger <Riding Trainer>
|
||||
DELETE FROM `npc_trainer` WHERE `ID`=3690;
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`) VALUES (3690, -450000);
|
||||
|
||||
-- Uthan Stillwater <Fisherman>
|
||||
DELETE FROM `npc_trainer` WHERE `ID`=5938;
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`) VALUES (5938, -360000);
|
||||
|
||||
-- Vira Younghoof <First Aid Trainer>
|
||||
DELETE FROM `npc_trainer` WHERE `ID`=5939;
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`) VALUES (5939, -350000);
|
||||
|
||||
-- Yonn Deepcut <Skinner>
|
||||
DELETE FROM `npc_trainer` WHERE `ID`=6290;
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`) VALUES (6290, -400000);
|
||||
|
||||
-- Twizwick Sprocketgrind <Journeyman Engineer>
|
||||
DELETE FROM `npc_trainer` WHERE `ID`=10993;
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`) VALUES (10993, -340000);
|
||||
|
||||
-- Wunna Darkmane <Trade Goods>
|
||||
# DELETE FROM `npc_vendor` WHERE `entry`=3081 AND `item` IN (10648, 30817, 39354);
|
||||
DELETE FROM `npc_vendor` WHERE `entry`=3081 AND `item` IN (30817);
|
||||
|
||||
-- Harb Clawhoof <Kodo Mounts>
|
||||
DELETE FROM `npc_vendor` WHERE `entry`=3685 AND `item`=46100;
|
||||
|
||||
-- The Hunt Begins
|
||||
DELETE FROM `quest_offer_reward` WHERE `ID`=747;
|
||||
INSERT INTO `quest_offer_reward` (`ID`, `RewardText`) VALUES (747, 'The tauren of Narache thank you, $n. You show much promise.');
|
||||
|
||||
-- The Hunter's Way
|
||||
DELETE FROM `quest_offer_reward` WHERE `ID`=861;
|
||||
INSERT INTO `quest_offer_reward` (`ID`, `RewardText`) VALUES (861, 'Skorn Whitecloud is a wise tauren. He has hunted for years and years, and although his body is old, his spirit burns fiercely. We are honored to have him with us.$B$BIf Skorn sent you to me, then you too must have the hunter\'s spirit. And to have gathered these claws shows your burgeoning skills.$B$BPerhaps you are ready to walk the path.');
|
||||
|
||||
-- The Hunt Begins
|
||||
DELETE FROM `quest_request_items` WHERE `ID`=747;
|
||||
INSERT INTO `quest_request_items` (`ID`, `EmoteOnComplete`, `CompletionText`) VALUES (747, 1, 'Providing meat and feathers for the tribe is the first step in proving yourself as a hunter before the Chief.');
|
||||
|
||||
-- Wildmane Cleansing
|
||||
DELETE FROM `quest_request_items` WHERE `ID`=760;
|
||||
INSERT INTO `quest_request_items` (`ID`, `EmoteOnComplete`, `CompletionText`) VALUES (760, 1, 'The last water well remains fetid and poisonous, $N. You must not delay!');
|
||||
|
||||
-- Rite of Strength
|
||||
UPDATE `quest_template` SET `LogDescription`='Kill Bristlebacks in Brambleblade Ravine and bring 12 Bristleback Belts to Chief Hawkwind in Camp Narache.', `RequiredItemCount1`=12 WHERE `ID`=757;
|
||||
|
||||
-- Call of Earth (Shaman)
|
||||
UPDATE `quest_template` SET `Flags`=0 WHERE `ID`=1518;
|
||||
|
||||
-- The Hunt Begins
|
||||
UPDATE `quest_template_addon` SET `SpecialFlags`=0 WHERE `ID`=747;
|
||||
|
||||
-- The Hunt Continues
|
||||
UPDATE `quest_template_addon` SET `SpecialFlags`=0 WHERE `ID`=750;
|
||||
|
||||
-- A Humble Task
|
||||
UPDATE `quest_template_addon` SET `SpecialFlags`=0 WHERE `ID`=752;
|
||||
|
||||
-- A Humble Task
|
||||
UPDATE `quest_template_addon` SET `SpecialFlags`=0 WHERE `ID`=753;
|
||||
|
||||
-- Rites of the Earthmother
|
||||
UPDATE `quest_template_addon` SET `SpecialFlags`=0 WHERE `ID`=755;
|
||||
|
||||
-- Rite of Strength
|
||||
UPDATE `quest_template_addon` SET `SpecialFlags`=0 WHERE `ID`=757;
|
||||
|
||||
-- Rites of the Earthmother
|
||||
UPDATE `quest_template_addon` SET `SpecialFlags`=0 WHERE `ID`=763;
|
||||
|
||||
-- The Battleboars
|
||||
UPDATE `quest_template_addon` SET `SpecialFlags`=0 WHERE `ID`=780;
|
||||
|
||||
-- Call of Earth (Shaman)
|
||||
UPDATE `quest_template_addon` SET `SpecialFlags`=0 WHERE `ID`=1518;
|
||||
|
||||
-- Call of Earth (Shaman)
|
||||
UPDATE `quest_template_addon` SET `SpecialFlags`=0 WHERE `ID`=1520;
|
||||
|
||||
-- Call of Earth (Shaman)
|
||||
UPDATE `quest_template_addon` SET `SpecialFlags`=0 WHERE `ID`=1521;
|
||||
|
||||
-- A Task Unfinished
|
||||
UPDATE `quest_template_addon` SET `SpecialFlags`=0 WHERE `ID`=1656;
|
||||
|
||||
-- Rune-Inscribed Note
|
||||
UPDATE `quest_template_addon` SET `SpecialFlags`=0 WHERE `ID`=3093;
|
||||
|
||||
-- Break Sharptusk!
|
||||
UPDATE `quest_template_addon` SET `SpecialFlags`=0 WHERE `ID`=3376;
|
||||
617
sql/world/base/zone_orgrimmar.sql
Normal file
617
sql/world/base/zone_orgrimmar.sql
Normal file
@@ -0,0 +1,617 @@
|
||||
-- Saru Steelfury <Artisan Blacksmith>
|
||||
DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=15 AND `SourceGroup`=1012 AND `SourceEntry`=0 AND `ConditionTypeOrReference`=7;
|
||||
INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `ConditionTypeOrReference`, `ConditionValue1`, `ConditionValue2`, `Comment`) VALUES (15, 1012, 0, 7, 164, 125, 'Show menu if blacksmithing is 125 or higher');
|
||||
|
||||
-- Snarl <Expert Blacksmith>
|
||||
DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=15 AND `SourceGroup`=2782 AND `SourceEntry`=0 AND `ConditionTypeOrReference`=7;
|
||||
INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `ConditionTypeOrReference`, `ConditionValue1`, `ConditionValue2`, `Comment`) VALUES (15, 2782, 0, 7, 164, 50, 'Show menu if blacksmithing is 50 or higher');
|
||||
|
||||
-- Yelmak <Expert Alchemist>
|
||||
DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=15 AND `SourceGroup`=4126 AND `SourceEntry`=0 AND `ConditionTypeOrReference`=7;
|
||||
INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `ConditionTypeOrReference`, `ConditionValue1`, `ConditionValue2`, `Comment`) VALUES (15, 4126, 0, 7, 171, 50, 'Show menu if alchemy is 50 or higher');
|
||||
|
||||
-- Nogg <Expert Engineer>
|
||||
DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=15 AND `SourceGroup`=4148 AND `SourceEntry`=0 AND `ConditionTypeOrReference`=7;
|
||||
INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `ConditionTypeOrReference`, `ConditionValue1`, `ConditionValue2`, `Comment`) VALUES (15, 4148, 0, 7, 202, 50, 'Show menu if engineering is 50 or higher');
|
||||
|
||||
-- Roxxik <Artisan Engineer>
|
||||
DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=15 AND `SourceGroup`=4151 AND `SourceEntry`=0 AND `ConditionTypeOrReference`=7;
|
||||
INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `ConditionTypeOrReference`, `ConditionValue1`, `ConditionValue2`, `Comment`) VALUES (15, 4151, 0, 7, 202, 125, 'Show menu if engineering is 125 or higher');
|
||||
|
||||
-- Godan <Expert Enchanter>
|
||||
DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=15 AND `SourceGroup`=4168 AND `SourceEntry`=0 AND `ConditionTypeOrReference`=7;
|
||||
INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `ConditionTypeOrReference`, `ConditionValue1`, `ConditionValue2`, `Comment`) VALUES (15, 4168, 0, 7, 333, 50, 'Show menu if enchanting is 50 or higher');
|
||||
|
||||
-- Karolek <Expert Leatherworker>
|
||||
DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=15 AND `SourceGroup`=4209 AND `SourceEntry`=0 AND `ConditionTypeOrReference`=7;
|
||||
INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `ConditionTypeOrReference`, `ConditionValue1`, `ConditionValue2`, `Comment`) VALUES (15, 4209, 0, 7, 165, 50, 'Show menu if leatherworking is 50 or higher');
|
||||
|
||||
-- Magar <Expert Tailor>
|
||||
DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=15 AND `SourceGroup`=4347 AND `SourceEntry`=0 AND `ConditionTypeOrReference`=7;
|
||||
INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `ConditionTypeOrReference`, `ConditionValue1`, `ConditionValue2`, `Comment`) VALUES (15, 4347, 0, 7, 197, 50, 'Show menu if tailoring is 50 or higher');
|
||||
|
||||
-- Nazgrel <Advisor to Thrall>
|
||||
DELETE FROM `creature` WHERE `id1`=3230;
|
||||
INSERT INTO `creature` (`id1`, `map`, `position_x`, `position_y`, `position_z`, `orientation`, `spawntimesecs`) VALUES (3230, 1, 1938.55, -4133.22, 41.1424, 4.07636, 300);
|
||||
|
||||
-- Orgrimmar Grunt
|
||||
DELETE FROM `creature` WHERE `guid` IN (10299, 203492, 203493, 203494, 203495);
|
||||
INSERT INTO `creature` (`guid`, `id1`, `map`, `position_x`, `position_y`, `position_z`, `orientation`, `spawntimesecs`) VALUES (10299, 3296, 1, 1620.45, -4252.84, 47.5273, 3.7001, 300);
|
||||
|
||||
-- Brakgul Deathbringer <Warsong Gulch Battlemaster>
|
||||
DELETE FROM `creature` WHERE `id1`=3890;
|
||||
INSERT INTO `creature` (`id1`, `map`, `position_x`, `position_y`, `position_z`, `orientation`, `spawntimesecs`) VALUES (3890, 1, 1990.64, -4794.13, 56.0472, 3.22013, 300);
|
||||
|
||||
-- Legionnaire Teena
|
||||
DELETE FROM `creature` WHERE `id1`=12788;
|
||||
INSERT INTO `creature` (`id1`, `map`, `position_x`, `position_y`, `position_z`, `orientation`, `spawntimesecs`) VALUES (12788, 1, 1651.22, -4213.42, 55.4372, 0.427786, 25);
|
||||
|
||||
-- Lady Palanseer <Armor Quartermaster>
|
||||
DELETE FROM `creature` WHERE `id1`=34043;
|
||||
DELETE FROM `creature` WHERE `id1`=12792;
|
||||
INSERT INTO `creature` (`id1`, `map`, `position_x`, `position_y`, `position_z`, `orientation`, `spawntimesecs`) VALUES (12792, 1, 1669.78, -4200.1, 56.3815, 3.61023, 180);
|
||||
|
||||
-- Brave Stonehide <Officer Accessories Quartermaster>
|
||||
DELETE FROM `creature` WHERE `id1`=12793;
|
||||
INSERT INTO `creature` (`id1`, `map`, `position_x`, `position_y`, `position_z`, `orientation`, `spawntimesecs`) VALUES (12793, 1, 1657.6, -4191.97, 56.383, 4.52365, 180);
|
||||
|
||||
-- Stone Guard Zarg <Food and Drink>
|
||||
DELETE FROM `creature` WHERE `id1`=12794;
|
||||
INSERT INTO `creature` (`id1`, `map`, `position_x`, `position_y`, `position_z`, `orientation`, `spawntimesecs`) VALUES (12794, 1, 1641.65, -4197.52, 56.3823, 5.41219, 180);
|
||||
|
||||
-- First Sergeant Hola'mahi <Reagent Vendor>
|
||||
DELETE FROM `creature` WHERE `id1`=12795;
|
||||
INSERT INTO `creature` (`id1`, `map`, `position_x`, `position_y`, `position_z`, `orientation`, `spawntimesecs`) VALUES (12795, 1, 1673.9, -4216, 56.3826, 2.93578, 180);
|
||||
|
||||
-- Raider Bork <Mount Quartermaster>
|
||||
DELETE FROM `creature` WHERE `id1`=12796;
|
||||
INSERT INTO `creature` (`id1`, `map`, `position_x`, `position_y`, `position_z`, `orientation`, `spawntimesecs`) VALUES (12796, 1, 1674.43, -4212.55, 56.3829, 3.00254, 1290);
|
||||
|
||||
-- Sergeant Ba'sha <Accessories Quartermaster>
|
||||
DELETE FROM `creature` WHERE `id1`=12799;
|
||||
INSERT INTO `creature` (`id1`, `map`, `position_x`, `position_y`, `position_z`, `orientation`, `spawntimesecs`) VALUES (12799, 1, 1632.21, -4262.19, 49.027, 3.63029, 430);
|
||||
|
||||
-- Sergeant Thunderhorn <Weapons Quartermaster>
|
||||
DELETE FROM `creature` WHERE `id1`=14581;
|
||||
INSERT INTO `creature` (`id1`, `map`, `position_x`, `position_y`, `position_z`, `orientation`, `spawntimesecs`) VALUES (14581, 1, 1644.52, -4195.26, 56.3826, 5.43078, 180);
|
||||
|
||||
-- High Overlord Saurfang
|
||||
DELETE FROM `creature` WHERE `id1`=14720;
|
||||
INSERT INTO `creature` (`id1`, `map`, `position_x`, `position_y`, `position_z`, `orientation`, `spawntimesecs`) VALUES (14720, 1, 1565.79, -4395.27, 6.9866, 3.35103, 600);
|
||||
|
||||
-- Kartra Bloodsnarl <Alterac Valley Battlemaster>
|
||||
DELETE FROM `creature` WHERE `id1`=14942;
|
||||
INSERT INTO `creature` (`id1`, `map`, `position_x`, `position_y`, `position_z`, `orientation`, `spawntimesecs`) VALUES (14942, 1, 1980.9, -4787.78, 55.8796, 5.13127, 600);
|
||||
|
||||
-- Deze Snowbane <Arathis Basin Battlemaster>
|
||||
DELETE FROM `creature` WHERE `id1`=15006;
|
||||
INSERT INTO `creature` (`id1`, `map`, `position_x`, `position_y`, `position_z`, `orientation`, `spawntimesecs`) VALUES (15006, 1, 2002.26, -4796.74, 56.8471, 3.00197, 600);
|
||||
|
||||
-- Summon Felsteed (Warlock)
|
||||
DELETE FROM `creature_queststarter` WHERE `id`=3326 AND `quest`=3631;
|
||||
INSERT INTO `creature_queststarter` (`id`, `quest`) VALUES (3326, 3631);
|
||||
|
||||
-- Knowledge of the Orb of Orahil (Warlock)
|
||||
DELETE FROM `creature_queststarter` WHERE `id`=3326 AND `quest`=4967;
|
||||
INSERT INTO `creature_queststarter` (`id`, `quest`) VALUES (3326, 4967);
|
||||
|
||||
-- An Imp's Request (Warlock)
|
||||
DELETE FROM `creature_queststarter` WHERE `id` IN (3324, 3325, 3326, 4564, 5495, 5496) AND `quest`=8419;
|
||||
INSERT INTO `creature_queststarter` (`id`, `quest`) VALUES (3326, 8419);
|
||||
|
||||
-- Snarl <Expert Blacksmith>
|
||||
UPDATE `creature_template` SET `subname`='Expert Blacksmith', `npcflag`=81, `trainer_type`=2 WHERE `entry`=1383;
|
||||
|
||||
-- Snang <Journeyman Tailor>
|
||||
UPDATE `creature_template` SET `subname`='Journeyman Tailor', `npcflag`=81, `trainer_type`=2 WHERE `entry`=2855;
|
||||
|
||||
-- Thund <Journeyman Engineer>
|
||||
UPDATE `creature_template` SET `subname`='Journeyman Engineer', `npcflag`=81, `trainer_type`=2 WHERE `entry`=2857;
|
||||
|
||||
-- Nazgrel <Advisor to Thrall>
|
||||
UPDATE `creature_template` SET `scale`=0.7, `npcflag`=2, `faction`=29, `gossip_menu_id`=0 WHERE `entry`=3230;
|
||||
|
||||
-- Orgrimmar Grunt
|
||||
UPDATE `creature_template` SET `minlevel`=55, `maxlevel`=55 WHERE `entry`=3296;
|
||||
|
||||
-- Doras <Wind Rider Master>
|
||||
UPDATE `creature_template` SET `minlevel`=55, `maxlevel`=55 WHERE `entry`=3310;
|
||||
|
||||
-- Trak'gen <General Goods Merchant>
|
||||
UPDATE `creature_template` SET `subname`='General Goods Merchant' WHERE `entry`=3313;
|
||||
|
||||
-- Kaja <Guns and Ammo Merchant>
|
||||
UPDATE `creature_template` SET `subname`='Guns and Ammo Merchant' WHERE `entry`=3322;
|
||||
|
||||
-- Horthus <Reagents Vendor>
|
||||
UPDATE `creature_template` SET `subname`='Reagents Vendor' WHERE `entry`=3323;
|
||||
|
||||
-- Rekkul <Poison Vendor>
|
||||
UPDATE `creature_template` SET `subname`='Poison Vendor' WHERE `entry`=3334;
|
||||
|
||||
-- Hagrus <Reagents Vendor>
|
||||
UPDATE `creature_template` SET `subname`='Reagents Vendor' WHERE `entry`=3335;
|
||||
|
||||
-- Godan <Expert Enchanter>
|
||||
UPDATE `creature_template` SET `subname`='Expert Enchanter' WHERE `entry`=3345;
|
||||
|
||||
-- Yelmak <Expert Alchemist>
|
||||
UPDATE `creature_template` SET `subname`='Expert Alchemist' WHERE `entry`=3347;
|
||||
|
||||
-- Asoran <General Goods Vendor>
|
||||
UPDATE `creature_template` SET `subname`='General Goods Vendor' WHERE `entry`=3350;
|
||||
|
||||
-- Magenius <Reagents Vendor>
|
||||
UPDATE `creature_template` SET `subname`='Reagents Vendor' WHERE `entry`=3351;
|
||||
|
||||
-- Saru Steelfury <Artisan Blacksmith>
|
||||
UPDATE `creature_template` SET `subname`='Artisan Blacksmith' WHERE `entry`=3355;
|
||||
|
||||
-- Sumi <Blacksmithing Supplier>
|
||||
UPDATE `creature_template` SET `subname`='Blacksmithing Supplier' WHERE `entry`=3356;
|
||||
|
||||
-- Gorina <Mining Supplier>
|
||||
UPDATE `creature_template` SET `subname`='Mining Supplier' WHERE `entry`=3358;
|
||||
|
||||
-- Magar <Expert Tailor>
|
||||
UPDATE `creature_template` SET `subname`='Expert Tailor' WHERE `entry`=3363;
|
||||
|
||||
-- Karolek <Expert Leatherworker>
|
||||
UPDATE `creature_template` SET `subname`='Expert Leatherworker' WHERE `entry`=3365;
|
||||
|
||||
-- Felika <General Trade Goods Merchant>
|
||||
UPDATE `creature_template` SET `subname`='General Trade Goods Merchant' WHERE `entry`=3367;
|
||||
|
||||
-- Xen'to <Cooking Supplier>
|
||||
UPDATE `creature_template` SET `subname`='Cooking Supplier' WHERE `entry`=3400;
|
||||
|
||||
-- Nogg <Expert Engineer>
|
||||
UPDATE `creature_template` SET `subname`='Expert Engineer', `npcflag`=81, `trainer_type`=2 WHERE `entry`=3412;
|
||||
|
||||
-- Thrall <Warchief>
|
||||
UPDATE `creature_template` SET `minlevel`=63, `maxlevel`=63 WHERE `entry`=4949;
|
||||
|
||||
-- Kamari <Journeyman Leatherworker>
|
||||
UPDATE `creature_template` SET `subname`='Journeyman Leatherworker', `npcflag`=81, `trainer_type`=2 WHERE `entry`=5811;
|
||||
|
||||
-- Shimra <General Trade Goods Merchant>
|
||||
UPDATE `creature_template` SET `subname`='General Trade Goods Merchant' WHERE `entry`=5817;
|
||||
|
||||
-- Shayis Steelfury <Armor Crafter>
|
||||
UPDATE `creature_template` SET `subname`='Armor Crafter' WHERE `entry`=7230;
|
||||
|
||||
-- Kelgruk Bloodaxe <Weapon Crafter>
|
||||
UPDATE `creature_template` SET `subname`='Weapon Crafter' WHERE `entry`=7231;
|
||||
|
||||
-- Ug'thok <Journeyman Blacksmith>
|
||||
UPDATE `creature_template` SET `subname`='Journeyman Blacksmith', `npcflag`=81, `trainer_type`=2 WHERE `entry`=10266;
|
||||
|
||||
-- Roxxik <Artisan Engineer>
|
||||
UPDATE `creature_template` SET `subname`='Artisan Engineer', `npcflag`=81, `trainer_type`=2 WHERE `entry`=11017;
|
||||
|
||||
-- Whuut <Journeyman Alchemist>
|
||||
UPDATE `creature_template` SET `subname`='Journeyman Alchemist', `npcflag`=81, `trainer_type`=2 WHERE `entry`=11046;
|
||||
|
||||
-- Jhag <Journeyman Enchanter>
|
||||
UPDATE `creature_template` SET `subname`='Journeyman Enchanter', `npcflag`=81, `trainer_type`=2 WHERE `entry`=11066;
|
||||
|
||||
-- Snurk Bucksquick <Zeppelin Master>
|
||||
UPDATE `creature_template` SET `subname`='Zeppelin Master' WHERE `entry`=12136;
|
||||
|
||||
-- Legionnaire Teena
|
||||
UPDATE `creature_template` SET `subname`=NULL, `npcflag`=0, `faction`=85 WHERE `entry`=12788;
|
||||
|
||||
-- Lady Palanseer <Armor Quartermaster>
|
||||
UPDATE `creature_template` SET `minlevel`=55, `maxlevel`=55 WHERE `entry`=12792;
|
||||
|
||||
-- Brave Stonehide <Officer Accessories Quartermaster>
|
||||
UPDATE `creature_template` SET `subname`='Officer Accessories Quartermaster' WHERE `entry`=12793;
|
||||
|
||||
-- First Sergeant Hola'mahi <Reagent Vendor>
|
||||
UPDATE `creature_template` SET `subname`='Reagent Vendor' WHERE `entry`=12795;
|
||||
|
||||
-- Stone Guard Zarg <Food and Drink>
|
||||
UPDATE `creature_template` SET `subname`='Food and Drink' WHERE `entry`=12794;
|
||||
|
||||
-- Raider Bork <Mount Quartermaster>
|
||||
UPDATE `creature_template` SET `subname`='Mount Quartermaster' WHERE `entry`=12796;
|
||||
|
||||
-- Kor'kron Elite
|
||||
UPDATE `creature_template` SET `minlevel`=60, `maxlevel`=60, `rank`=0 WHERE `entry`=14304;
|
||||
|
||||
-- Scout Stronghand
|
||||
UPDATE `creature_template` SET `minlevel`=60, `maxlevel`=60 WHERE `entry`=14375;
|
||||
|
||||
-- Scout Manslayer
|
||||
UPDATE `creature_template` SET `minlevel`=60, `maxlevel`=60 WHERE `entry`=14376;
|
||||
|
||||
-- Scout Tharr
|
||||
UPDATE `creature_template` SET `minlevel`=60, `maxlevel`=60 WHERE `entry`=14377;
|
||||
|
||||
-- Sergeant Thunderhorn <Weapons Quartermaster>
|
||||
UPDATE `creature_template` SET `minlevel`=55, `maxlevel`=55 WHERE `entry`=14581;
|
||||
|
||||
-- High Overlord Saurfang
|
||||
UPDATE `creature_template` SET `minlevel`=62, `maxlevel`=62 WHERE `entry`=14720;
|
||||
|
||||
-- Horde Warbringer
|
||||
UPDATE `creature_template` SET `minlevel`=60, `maxlevel`=60, `rank`=0 WHERE `entry`=15350;
|
||||
|
||||
-- Raider Bork <Mount Quartermaster>
|
||||
UPDATE `creature_template_addon` SET `mount`=0 WHERE `entry`=12796;
|
||||
|
||||
-- Snarl <Expert Blacksmith>
|
||||
DELETE FROM `gossip_menu_option` WHERE `MenuID`=2782;
|
||||
INSERT INTO `gossip_menu_option` (`MenuID`, `OptionID`, `OptionIcon`, `OptionText`, `OptionBroadcastTextID`, `OptionType`, `OptionNpcFlag`) VALUES (2782, 0, 3, 'Train me.', 3266, 5, 16);
|
||||
|
||||
-- Nogg <Expert Engineer>
|
||||
DELETE FROM `gossip_menu_option` WHERE `MenuID`=4148;
|
||||
INSERT INTO `gossip_menu_option` (`MenuID`, `OptionID`, `OptionIcon`, `OptionText`, `OptionBroadcastTextID`, `OptionType`, `OptionNpcFlag`) VALUES (4148, 0, 3, 'Train me.', 3266, 5, 16);
|
||||
|
||||
-- Roxxik <Artisan Engineer>
|
||||
DELETE FROM `gossip_menu_option` WHERE `MenuID`=4151;
|
||||
INSERT INTO `gossip_menu_option` (`MenuID`, `OptionID`, `OptionIcon`, `OptionText`, `OptionBroadcastTextID`, `OptionType`, `OptionNpcFlag`) VALUES (4151, 0, 3, 'Train me.', 3266, 5, 16);
|
||||
|
||||
-- Snarl <Expert Blacksmith>
|
||||
DELETE FROM `npc_trainer` WHERE `ID`=1383;
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`) VALUES (1383, -310000);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`) VALUES (1383, -310001);
|
||||
|
||||
-- Snang <Journeyman Tailor>
|
||||
DELETE FROM `npc_trainer` WHERE `ID`=2855;
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`) VALUES (2855, -410000);
|
||||
|
||||
-- Thund <Journeyman Engineer>
|
||||
DELETE FROM `npc_trainer` WHERE `ID`=2857;
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`) VALUES (2857, -340000);
|
||||
|
||||
-- Lumak <Fishing Trainer>
|
||||
DELETE FROM `npc_trainer` WHERE `ID`=3332;
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`) VALUES (3332, -360000);
|
||||
|
||||
-- Godan <Expert Enchanter>
|
||||
DELETE FROM `npc_trainer` WHERE `ID`=3345;
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`) VALUES (3345, -330000);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`) VALUES (3345, -330001);
|
||||
|
||||
-- Yelmak <Expert Alchemist>
|
||||
DELETE FROM `npc_trainer` WHERE `ID`=3347;
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`) VALUES (3347, -300000);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`) VALUES (3347, -300001);
|
||||
|
||||
-- Saru Steelfury <Artisan Blacksmith>
|
||||
DELETE FROM `npc_trainer` WHERE `ID`=3355;
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`) VALUES (3355, -310000);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`) VALUES (3355, -310001);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`) VALUES (3355, -310002);
|
||||
|
||||
-- Makaru <Mining Trainer>
|
||||
DELETE FROM `npc_trainer` WHERE `ID`=3357;
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`) VALUES (3357, -390000);
|
||||
|
||||
-- Magar <Expert Tailor>
|
||||
DELETE FROM `npc_trainer` WHERE `ID`=3363;
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`) VALUES (3363, -410000);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`) VALUES (3363, -410001);
|
||||
|
||||
-- Karolek <Expert Leatherworker>
|
||||
DELETE FROM `npc_trainer` WHERE `ID`=3365;
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`) VALUES (3365, -380000);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`) VALUES (3365, -380001);
|
||||
|
||||
-- Arnok <First Aid Trainer>
|
||||
DELETE FROM `npc_trainer` WHERE `ID`=3373;
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`) VALUES (3373, -350000);
|
||||
|
||||
-- Zamja <Cooking Trainer>
|
||||
DELETE FROM `npc_trainer` WHERE `ID`=3399;
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`) VALUES (3399, -320000);
|
||||
|
||||
-- Nogg <Expert Engineer>
|
||||
DELETE FROM `npc_trainer` WHERE `ID`=3412;
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`) VALUES (3412, -340000);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`) VALUES (3412, -340001);
|
||||
|
||||
-- Kildar <Riding Trainer>
|
||||
DELETE FROM `npc_trainer` WHERE `ID`=4752;
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`) VALUES (4752, -450000);
|
||||
|
||||
-- Kamari <Journeyman Leatherworker>
|
||||
DELETE FROM `npc_trainer` WHERE `ID`=5811;
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`) VALUES (5811, -380000);
|
||||
|
||||
-- Thuwd <Skinning Trainer>
|
||||
DELETE FROM `npc_trainer` WHERE `ID`=7088;
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`) VALUES (7088, -400000);
|
||||
|
||||
-- Ug'thok <Journeyman Blacksmith>
|
||||
DELETE FROM `npc_trainer` WHERE `ID`=10266;
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`) VALUES (10266, -310000);
|
||||
|
||||
-- Roxxik <Artisan Engineer>
|
||||
DELETE FROM `npc_trainer` WHERE `ID`=11017;
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`) VALUES (11017, -340000);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`) VALUES (11017, -340001);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`) VALUES (11017, -340002);
|
||||
|
||||
-- Whuut <Journeyman Alchemist>
|
||||
DELETE FROM `npc_trainer` WHERE `ID`=11046;
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`) VALUES (11046, -300000);
|
||||
|
||||
-- Jhag <Journeyman Enchanter>
|
||||
DELETE FROM `npc_trainer` WHERE `ID`=11066;
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`) VALUES (11066, -330000);
|
||||
|
||||
-- Olvia <Meat Vendor>
|
||||
DELETE FROM `npc_vendor` WHERE `entry`=3312 AND `item` IN (27854, 33454, 35953);
|
||||
|
||||
-- Trak'gen <General Goods Merchant>
|
||||
DELETE FROM `npc_vendor` WHERE `entry`=3313 AND `item` IN (25861, 25872, 25873, 25875, 25876, 28053, 28060, 28979, 29007, 29008, 29009, 29010, 29013, 29014);
|
||||
|
||||
-- Kaja <Guns and Ammo Merchant>
|
||||
DELETE FROM `npc_vendor` WHERE `entry`=3322 AND `item`=28060;
|
||||
|
||||
-- Horthus <Reagents Vendor>
|
||||
DELETE FROM `npc_vendor` WHERE `entry`=3323 AND `item` IN (22147, 22148, 37201, 44605, 44614, 44615);
|
||||
|
||||
-- Kor'jus <Mushroom Vendor>
|
||||
DELETE FROM `npc_vendor` WHERE `entry`=3329 AND `item` IN (27859, 33452, 35947);
|
||||
|
||||
-- Rekkul <Poison Vendor>
|
||||
DELETE FROM `npc_vendor` WHERE `entry`=3334 AND `item` IN (21835, 21927, 22053, 22054, 22055, 43230, 43231, 43232, 43233, 43234, 43235, 43237);
|
||||
|
||||
-- Hagrus <Reagents Vendor>
|
||||
DELETE FROM `npc_vendor` WHERE `entry`=3335 AND `item` IN (22147, 22148, 37201);
|
||||
|
||||
-- Shan'ti <Fruit Vendor>
|
||||
DELETE FROM `npc_vendor` WHERE `entry`=3342 AND `item` IN (27856, 35948, 35949);
|
||||
|
||||
-- Kithas <Enchanting Supplies>
|
||||
DELETE FROM `npc_vendor` WHERE `entry`=3346 AND `item`=6342;
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `maxcount`, `incrtime`) VALUES (3346, 6342, 1, 7200);
|
||||
|
||||
-- Kor'geld <Alchemy Supplies>
|
||||
DELETE FROM `npc_vendor` WHERE `entry`=3348 AND `item`=40411;
|
||||
|
||||
-- Asoran <General Goods Vendor>
|
||||
DELETE FROM `npc_vendor` WHERE `entry`=3350 AND `item` IN (28053, 28060);
|
||||
|
||||
-- Magenius <Reagents Vendor>
|
||||
DELETE FROM `npc_vendor` WHERE `entry`=3351 AND `item` IN (22147, 22148, 37201);
|
||||
|
||||
-- Gorina <Mining Supplier>
|
||||
DELETE FROM `npc_vendor` WHERE `entry`=3358 AND `item` IN (20815, 20824);
|
||||
|
||||
-- Ogunaro Wolfrunner <Kennel Master>
|
||||
DELETE FROM `npc_vendor` WHERE `entry`=3362 AND `item`=46099;
|
||||
|
||||
-- Borya <Tailoring Supplies>
|
||||
DELETE FROM `npc_vendor` WHERE `entry`=3364 AND `item`=38426;
|
||||
|
||||
-- Tamar <Leatherworking Supplies>
|
||||
DELETE FROM `npc_vendor` WHERE `entry`=3366 AND `item`=38426;
|
||||
|
||||
-- Felika <General Trade Goods Merchant>
|
||||
DELETE FROM `npc_vendor` WHERE `entry`=3367 AND `item` IN (14341, 18256, 20856);
|
||||
DELETE FROM `npc_vendor` WHERE `entry`=3367 AND `item` IN (2324, 2605, 6260, 6529);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`) VALUES (3367, 2324);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`) VALUES (3367, 2605);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`) VALUES (3367, 6260);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`) VALUES (3367, 6529);
|
||||
|
||||
-- Borstan <Meat Vendor>
|
||||
DELETE FROM `npc_vendor` WHERE `entry`=3368 AND `item` IN (27854, 33454, 35953);
|
||||
|
||||
-- Xen'to <Cooking Supplier>
|
||||
DELETE FROM `npc_vendor` WHERE `entry`=3400 AND `item`=30817;
|
||||
|
||||
-- Jin'sora <Bow Merchant>
|
||||
DELETE FROM `npc_vendor` WHERE `entry`=3410 AND `item` IN (11303, 11306, 11307, 28053);
|
||||
|
||||
-- Sovik <Engineering Supplies>
|
||||
DELETE FROM `npc_vendor` WHERE `entry`=3413 AND `item` IN (22729, 39684, 40533);
|
||||
|
||||
-- Garyl <Tabard Vendor>
|
||||
DELETE FROM `npc_vendor` WHERE `entry`=5188 AND `item` IN (15197, 15199, 19031, 19505, 24004, 31773, 31775, 31776, 31777, 31778, 31779, 31780, 31781, 31804, 32445, 32828, 35221);
|
||||
|
||||
-- Shimra <General Trade Goods Merchant>
|
||||
DELETE FROM `npc_vendor` WHERE `entry`=5817 AND `item` IN (10648, 14341, 18256, 30817, 39354);
|
||||
|
||||
-- Innkeeper Gryshka <Innkeeper>
|
||||
DELETE FROM `npc_vendor` WHERE `entry`=6929 AND `item` IN (27854, 28399, 33444, 33445, 33454, 35953, 35954);
|
||||
|
||||
-- Legionnaire Teena
|
||||
DELETE FROM `npc_vendor` WHERE `entry`=12788;
|
||||
|
||||
-- Lady Palanseer <Armor Quartermaster>
|
||||
DELETE FROM `npc_vendor` WHERE `entry`=12792 AND `item` IN (16533, 16534, 16535, 16536, 16539, 16540, 16541, 16542, 16543, 16544, 16545, 16548, 16549, 16550, 16551, 16552, 16554, 16555, 16558, 16560, 16561, 16562, 16563, 16564, 16565, 16566, 16567, 16568, 16569, 16571, 16573, 16574, 16577, 16578, 16579, 16580, 17586, 17588, 17590, 17591, 17592, 17593, 17618, 17620, 17622, 17623, 17624, 17625, 22843, 22852, 22855, 22856, 22857, 22858, 22859, 22860, 22862, 22863, 22864, 22865, 22867, 22868, 22869, 22870, 22872, 22873, 22874, 22875, 22876, 22877, 22878, 22879, 22880, 22881, 22882, 22883, 22884, 22885, 22886, 22887, 23243, 23244, 23251, 23252, 23253, 23254, 23255, 23256, 23257, 23258, 23259, 23260, 23261, 23262, 23263, 23264);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12792, 16533, 464);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12792, 16534, 542);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12792, 16535, 463);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12792, 16536, 465);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12792, 16539, 465);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12792, 16540, 541);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12792, 16541, 463);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12792, 16542, 464);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12792, 16543, 542);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12792, 16544, 465);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12792, 16545, 465);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12792, 16548, 541);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12792, 16549, 463);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12792, 16550, 464);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12792, 16551, 465);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12792, 16552, 542);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12792, 16554, 465);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12792, 16555, 541);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12792, 16558, 465);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12792, 16560, 541);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12792, 16561, 464);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12792, 16562, 465);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12792, 16563, 463);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12792, 16564, 542);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12792, 16565, 463);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12792, 16566, 464);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12792, 16567, 542);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12792, 16568, 465);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12792, 16569, 465);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12792, 16571, 541);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12792, 16573, 465);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12792, 16574, 541);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12792, 16577, 463);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12792, 16578, 464);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12792, 16579, 542);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12792, 16580, 465);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12792, 17586, 465);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12792, 17588, 541);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12792, 17590, 465);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12792, 17591, 464);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12792, 17592, 463);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12792, 17593, 542);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12792, 17618, 465);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12792, 17620, 541);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12792, 17622, 465);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12792, 17623, 464);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12792, 17624, 463);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12792, 17625, 542);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12792, 22843, 427);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12792, 22852, 427);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12792, 22855, 427);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12792, 22856, 427);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12792, 22857, 427);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12792, 22858, 427);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12792, 22859, 427);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12792, 22860, 427);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12792, 22862, 428);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12792, 22863, 428);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12792, 22864, 428);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12792, 22865, 428);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12792, 22867, 428);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12792, 22868, 428);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12792, 22869, 428);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12792, 22870, 428);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12792, 22872, 652);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12792, 22873, 653);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12792, 22874, 652);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12792, 22875, 653);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12792, 22876, 652);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12792, 22877, 652);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12792, 22878, 653);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12792, 22879, 652);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12792, 22880, 653);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12792, 22881, 653);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12792, 22882, 653);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12792, 22883, 653);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12792, 22884, 652);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12792, 22885, 652);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12792, 22886, 652);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12792, 22887, 653);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12792, 23243, 427);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12792, 23244, 444);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12792, 23251, 444);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12792, 23252, 427);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12792, 23253, 444);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12792, 23254, 427);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12792, 23255, 444);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12792, 23256, 427);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12792, 23257, 444);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12792, 23258, 427);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12792, 23259, 444);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12792, 23260, 427);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12792, 23261, 444);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12792, 23262, 427);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12792, 23263, 444);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12792, 23264, 427);
|
||||
|
||||
-- Brave Stonehide <Officer Accessories Quartermaster>
|
||||
DELETE FROM `npc_vendor` WHERE `entry`=12793 AND `item` IN (15197, 15200, 16335, 16341, 16486, 16497, 16532, 18427, 18428, 18429, 18430, 18432, 18434, 18435, 18436, 18437, 18461, 18834, 18845, 18846, 18849, 18850, 18851, 18852, 18853, 24551, 28118, 28119, 28120, 28123, 28239, 28240, 28241, 28242, 28243, 28246, 28247, 28362, 28363, 28377, 28378, 29592, 30343, 30344, 30345, 30346, 31838, 31839, 31840, 31841, 31852, 31853, 31854, 31855, 32453, 32455, 37865, 38588, 44957);
|
||||
|
||||
-- First Sergeant Hola'mahi <Reagent Vendor>
|
||||
DELETE FROM `npc_vendor` WHERE `entry`=12795 AND `item` IN (16533, 16534, 16535, 16536, 16539, 16540, 16541, 16542, 16543, 16544, 16545, 16548, 16549, 16550, 16551, 16552, 16554, 16555, 16558, 16560, 16561, 16562, 16563, 16564, 16565, 16566, 16567, 16568, 16569, 16571, 16573, 16574, 16577, 16578, 16579, 16580, 17586, 17588, 17590, 17591, 17592, 17593, 17618, 17620, 17622, 17623, 17624, 17625, 22843, 22852, 22855, 22856, 22857, 22858, 22859, 22860, 22862, 22863, 22864, 22865, 22867, 22868, 22869, 22870, 22872, 22873, 22874, 22875, 22876, 22877, 22878, 22879, 22880, 22881, 22882, 22883, 22884, 22885, 22886, 22887, 23243, 23244, 23251, 23252, 23253, 23254, 23255, 23256, 23257, 23258, 23259, 23260, 23261, 23262, 23263, 23264, 29600, 29601, 29602, 29603, 29604, 29605, 29612, 29613, 29614, 29615, 29616, 29617);
|
||||
DELETE FROM `npc_vendor` WHERE `entry`=12795 AND `item` IN (5565, 16583, 17020, 17021, 17026, 17028, 17029, 17030, 17031, 17032, 17033, 17034, 17035, 17036, 17037, 17038);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`) VALUES (12795, 5565);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`) VALUES (12795, 16583);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`) VALUES (12795, 17020);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`) VALUES (12795, 17021);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`) VALUES (12795, 17026);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`) VALUES (12795, 17028);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`) VALUES (12795, 17029);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`) VALUES (12795, 17030);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`) VALUES (12795, 17031);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`) VALUES (12795, 17032);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`) VALUES (12795, 17033);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`) VALUES (12795, 17034);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`) VALUES (12795, 17035);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`) VALUES (12795, 17036);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`) VALUES (12795, 17037);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`) VALUES (12795, 17038);
|
||||
|
||||
-- Stone Guard Zarg <Food and Drink>
|
||||
DELETE FROM `npc_vendor` WHERE `entry`=12794 AND `item` IN (16345, 18826, 18828, 18831, 18835, 18837, 18840, 18844, 18848, 18860, 18866, 18868, 18871, 18874, 18877, 23464, 23465, 23466, 23467, 23468, 23469);
|
||||
DELETE FROM `npc_vendor` WHERE `entry`=12794 AND `item` IN (117, 159, 1179, 1205, 1645, 1708, 2287, 2593, 2594, 2595, 2596, 2723, 3770, 3771, 4536, 4537, 4538, 4539, 4540, 4541, 4542, 4544, 4599, 4601, 4602, 4604, 4605, 4606, 4607, 4608, 8766, 8948, 8950, 8952, 8953);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`) VALUES (12794, 117);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`) VALUES (12794, 159);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`) VALUES (12794, 1179);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`) VALUES (12794, 1205);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`) VALUES (12794, 1645);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`) VALUES (12794, 1708);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`) VALUES (12794, 2287);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`) VALUES (12794, 2593);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`) VALUES (12794, 2594);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`) VALUES (12794, 2595);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`) VALUES (12794, 2596);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`) VALUES (12794, 2723);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`) VALUES (12794, 3770);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`) VALUES (12794, 3771);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`) VALUES (12794, 4536);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`) VALUES (12794, 4537);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`) VALUES (12794, 4538);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`) VALUES (12794, 4539);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`) VALUES (12794, 4540);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`) VALUES (12794, 4541);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`) VALUES (12794, 4542);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`) VALUES (12794, 4544);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`) VALUES (12794, 4599);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`) VALUES (12794, 4601);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`) VALUES (12794, 4602);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`) VALUES (12794, 4604);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`) VALUES (12794, 4605);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`) VALUES (12794, 4606);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`) VALUES (12794, 4607);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`) VALUES (12794, 4608);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`) VALUES (12794, 8766);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`) VALUES (12794, 8948);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`) VALUES (12794, 8950);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`) VALUES (12794, 8952);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`) VALUES (12794, 8953);
|
||||
|
||||
-- Raider Bork <Mount Quartermaster>
|
||||
DELETE FROM `npc_vendor` WHERE `entry`=12796 AND `item` IN (29466, 29469, 29470, 29472, 34129);
|
||||
DELETE FROM `npc_vendor` WHERE `entry`=12796 AND `item` IN (18245, 18246, 18247, 18248);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12796, 18245, 423);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12796, 18246, 423);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12796, 18247, 423);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12796, 18248, 423);
|
||||
|
||||
-- Sergeant Thunderhorn <Weapons Quartermaster>
|
||||
DELETE FROM `npc_vendor` WHERE `entry`=14581 AND `item` IN (16345, 18826, 18828, 18831, 18835, 18837, 18840, 18844, 18848, 18860, 18866, 18868, 18871, 18874, 18877, 23464, 23465, 23466, 23467, 23468, 23469);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (14581, 16345, 2291);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (14581, 18826, 2291);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (14581, 18828, 2291);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (14581, 18831, 2257);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (14581, 18835, 2291);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (14581, 18837, 2291);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (14581, 18840, 2291);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (14581, 18844, 2291);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (14581, 18848, 2291);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (14581, 18860, 2291);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (14581, 18866, 2291);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (14581, 18868, 2257);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (14581, 18871, 2257);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (14581, 18874, 2257);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (14581, 18877, 2257);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (14581, 23464, 2291);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (14581, 23465, 2257);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (14581, 23466, 2291);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (14581, 23467, 2291);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (14581, 23468, 2291);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (14581, 23469, 2291);
|
||||
24
sql/world/base/zone_silithus.sql
Normal file
24
sql/world/base/zone_silithus.sql
Normal file
@@ -0,0 +1,24 @@
|
||||
-- Gate of Ahn'Qiraj
|
||||
DELETE FROM `gameobject` WHERE `id`=176146;
|
||||
INSERT INTO `gameobject` (`id`, `map`, `position_x`, `position_y`, `position_z`, `orientation`, `rotation2`, `rotation3`, `spawntimesecs`, `animprogress`, `state`) VALUES (176146, 1, -8133.34, 1525.13, 17.1904, 6.28103, 0.00107995, -0.999999, 600, 100, 1);
|
||||
|
||||
-- Ahn'Qiraj Gate Roots
|
||||
DELETE FROM `gameobject` WHERE `id`=176147;
|
||||
INSERT INTO `gameobject` (`id`, `map`, `position_x`, `position_y`, `position_z`, `orientation`, `rotation2`, `rotation3`, `spawntimesecs`, `animprogress`, `state`) VALUES (176147, 1, -8133.34, 1525.13, 17.1904, 6.28103, 0.00107995, -0.999999, 600, 100, 1);
|
||||
|
||||
-- Ahn'Qiraj Gate Runes
|
||||
DELETE FROM `gameobject` WHERE `id`=176148;
|
||||
INSERT INTO `gameobject` (`id`, `map`, `position_x`, `position_y`, `position_z`, `orientation`, `rotation2`, `rotation3`, `spawntimesecs`, `animprogress`, `state`) VALUES (176148, 1, -8133.34, 1525.13, 17.1904, 6.28103, 0.00107995, -0.999999, 600, 100, 1);
|
||||
|
||||
-- Ghost Gate
|
||||
DELETE FROM `gameobject` WHERE `id`=180322;
|
||||
INSERT INTO `gameobject` (`id`, `map`, `position_x`, `position_y`, `position_z`, `orientation`, `rotation2`, `rotation3`, `spawntimesecs`, `animprogress`, `state`) VALUES (180322, 1, -8132.76, 1525.19, 6.19048, 6.27739, 0.00289526, -0.999996, 25, 100, 1);
|
||||
|
||||
-- Gate of Ahn'Qiraj
|
||||
UPDATE `gameobject_template_addon` SET `flags`=4 WHERE `entry`=176146;
|
||||
|
||||
-- Ahn'Qiraj Gate Roots
|
||||
UPDATE `gameobject_template_addon` SET `flags`=4 WHERE `entry`=176147;
|
||||
|
||||
-- Ahn'Qiraj Gate Runes
|
||||
UPDATE `gameobject_template_addon` SET `flags`=4 WHERE `entry`=176148;
|
||||
2
sql/world/base/zone_silverpine.sql
Normal file
2
sql/world/base/zone_silverpine.sql
Normal file
@@ -0,0 +1,2 @@
|
||||
-- Call of Water (Shaman)
|
||||
UPDATE `quest_template` SET `LogDescription`='Speak to the Minor Manifestation of Water in Silverpine Forest.' WHERE `ID`=100;
|
||||
552
sql/world/base/zone_stormwind.sql
Normal file
552
sql/world/base/zone_stormwind.sql
Normal file
@@ -0,0 +1,552 @@
|
||||
-- Therum Deepforge <Expert Blacksmith>
|
||||
DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=15 AND `SourceGroup`=581 AND `SourceEntry`=0 AND `ConditionTypeOrReference`=7;
|
||||
INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `ConditionTypeOrReference`, `ConditionValue1`, `ConditionValue2`, `Comment`) VALUES (15, 581, 0, 7, 164, 50, 'Show menu if blacksmithing is 50 or higher');
|
||||
|
||||
-- Lilliam Sparkspindle <Expert Engineer>
|
||||
DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=15 AND `SourceGroup`=4146 AND `SourceEntry`=0 AND `ConditionTypeOrReference`=7;
|
||||
INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `ConditionTypeOrReference`, `ConditionValue1`, `ConditionValue2`, `Comment`) VALUES (15, 4146, 0, 7, 202, 50, 'Show menu if engineering is 50 or higher');
|
||||
|
||||
-- Lucan Cordell <Expert Enchanter>
|
||||
DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=15 AND `SourceGroup`=4161 AND `SourceEntry`=0 AND `ConditionTypeOrReference`=7;
|
||||
INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `ConditionTypeOrReference`, `ConditionValue1`, `ConditionValue2`, `Comment`) VALUES (15, 4161, 0, 7, 333, 50, 'Show menu if enchanting is 50 or higher');
|
||||
|
||||
-- Lilyssia Nightbreeze <Expert Alchemist>
|
||||
DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=15 AND `SourceGroup`=4201 AND `SourceEntry`=0 AND `ConditionTypeOrReference`=7;
|
||||
INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `ConditionTypeOrReference`, `ConditionValue1`, `ConditionValue2`, `Comment`) VALUES (15, 4201, 0, 7, 171, 50, 'Show menu if alchemy is 50 or higher');
|
||||
|
||||
-- Simon Tanner <Expert Leatherworker>
|
||||
DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=15 AND `SourceGroup`=4203 AND `SourceEntry`=0 AND `ConditionTypeOrReference`=7;
|
||||
INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `ConditionTypeOrReference`, `ConditionValue1`, `ConditionValue2`, `Comment`) VALUES (15, 4203, 0, 7, 165, 50, 'Show menu if leatherworking is 50 or higher');
|
||||
|
||||
-- Sellandus <Expert Tailor>
|
||||
DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=15 AND `SourceGroup`=4344 AND `SourceEntry`=0 AND `ConditionTypeOrReference`=7;
|
||||
INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `ConditionTypeOrReference`, `ConditionValue1`, `ConditionValue2`, `Comment`) VALUES (15, 4344, 0, 7, 197, 50, 'Show menu if tailoring is 50 or higher');
|
||||
|
||||
-- Georgio Bolero <Artisan Tailor>
|
||||
DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=15 AND `SourceGroup`=4353 AND `SourceEntry`=0 AND `ConditionTypeOrReference`=7;
|
||||
INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `ConditionTypeOrReference`, `ConditionValue1`, `ConditionValue2`, `Comment`) VALUES (15, 4353, 0, 7, 197, 125, 'Show menu if tailoring is 125 or higher');
|
||||
|
||||
|
||||
-- Thelman Slatefist <Alterac Valley Battlemaster>
|
||||
DELETE FROM `creature` WHERE `id1`=7410;
|
||||
INSERT INTO `creature` (`id1`, `map`, `position_x`, `position_y`, `position_z`, `orientation`, `spawntimesecs`) VALUES (7410, 0, -8424.43, 342.967, 120.886, 3.82018, 300);
|
||||
|
||||
-- Hank the Hammer <The Mitrhil Order>
|
||||
DELETE FROM `creature` WHERE `id1`=7798;
|
||||
INSERT INTO `creature` (`id1`, `map`, `position_x`, `position_y`, `position_z`, `orientation`, `spawntimesecs`) VALUES (7798, 0, -8422.17, 630.877, 95.8402, 5.044, 430);
|
||||
|
||||
-- Lieutenant Karter <War Mount Quartermaster>
|
||||
DELETE FROM `creature` WHERE `id1`=12783;
|
||||
INSERT INTO `creature` (`id1`, `map`, `position_x`, `position_y`, `position_z`, `orientation`, `spawntimesecs`) VALUES (12783, 0, -8779.7, 432.158, 105.233, 5.36374, 300);
|
||||
|
||||
-- Captain Dirgehammer <Armor Quartermaster>
|
||||
DELETE FROM `creature` WHERE `id1`=12777;
|
||||
INSERT INTO `creature` (`id1`, `map`, `position_x`, `position_y`, `position_z`, `orientation`, `spawntimesecs`) VALUES (12777, 0, -8768.77, 401.647, 109.665, 2.22999, 300);
|
||||
|
||||
-- Lieutenant Rachel Vaccar <Outland Armor Quartermaster>
|
||||
DELETE FROM `creature` WHERE `id1`=12778;
|
||||
INSERT INTO `creature` (`id1`, `map`, `position_x`, `position_y`, `position_z`, `orientation`, `spawntimesecs`) VALUES (12778, 0, -8783.7, 423.749, 105.276, 0.651345, 300);
|
||||
|
||||
-- Archmage Gaiman
|
||||
DELETE FROM `creature` WHERE `id1`=12779;
|
||||
INSERT INTO `creature` (`id1`, `map`, `position_x`, `position_y`, `position_z`, `orientation`, `spawntimesecs`) VALUES (12779, 0, -8783.33, 426.686, 105.276, 5.37159, 300);
|
||||
|
||||
-- Sergeant Major Skyshadow
|
||||
DELETE FROM `creature` WHERE `id1`=12780;
|
||||
INSERT INTO `creature` (`id1`, `map`, `position_x`, `position_y`, `position_z`, `orientation`, `spawntimesecs`) VALUES (12780, 0, -8779.46, 427.206, 105.275, 3.80473, 300);
|
||||
|
||||
-- Master Sergeant Biggins <Accessories Quartermaster>
|
||||
DELETE FROM `creature` WHERE `id1`=12781;
|
||||
INSERT INTO `creature` (`id1`, `map`, `position_x`, `position_y`, `position_z`, `orientation`, `spawntimesecs`) VALUES (12781, 0, -8777.4, 417.124, 103.921, 6.23553, 300);
|
||||
|
||||
-- Captain O'Neal <Weapons Quartermaster>
|
||||
DELETE FROM `creature` WHERE `id1`=12782;
|
||||
INSERT INTO `creature` (`id1`, `map`, `position_x`, `position_y`, `position_z`, `orientation`, `spawntimesecs`) VALUES (12782, 0, -8778.3, 432.142, 105.309, 4.17386, 300);
|
||||
|
||||
|
||||
|
||||
-- Sergeant Major Clate <Legacy Armor Quartermaster>
|
||||
DELETE FROM `creature` WHERE `id1`=12785;
|
||||
INSERT INTO `creature` (`id1`, `map`, `position_x`, `position_y`, `position_z`, `orientation`, `spawntimesecs`) VALUES (12785, 0, -8771.31, 401.973, 109.665, 0.659191, 300);
|
||||
|
||||
-- Officer Areyn <Accessories Quartermaster>
|
||||
DELETE FROM `creature` WHERE `id1`=12805;
|
||||
INSERT INTO `creature` (`id1`, `map`, `equipment_id`, `position_x`, `position_y`, `position_z`, `orientation`, `spawntimesecs`) VALUES (12805, 0, 1, -8759.18, 389.112, 101.056, 0.648394, 430);
|
||||
|
||||
-- Elfarran <Warsong Gulch Battlemaster>
|
||||
DELETE FROM `creature` WHERE `id1`=14981;
|
||||
INSERT INTO `creature` (`id1`, `map`, `position_x`, `position_y`, `position_z`, `orientation`, `spawntimesecs`) VALUES (14981, 0, -8454.62, 318.853, 120.969, 0.698132, 180);
|
||||
|
||||
-- Lady Hoteshem <Arathi Basin Battlemaster>
|
||||
DELETE FROM `creature` WHERE `id1`=15008;
|
||||
INSERT INTO `creature` (`id1`, `map`, `position_x`, `position_y`, `position_z`, `orientation`, `spawntimesecs`) VALUES (15008, 0, -8420.48, 328.711, 120.886, 3.06638, 180);
|
||||
|
||||
-- Tome of Nobility (Paladin)
|
||||
DELETE FROM `creature_questender` WHERE `id`=6171 AND `quest`=1661;
|
||||
INSERT INTO `creature_questender` (`id`, `quest`) VALUES (6171, 1661);
|
||||
|
||||
-- Tome of Nobility (Paladin)
|
||||
DELETE FROM `creature_queststarter` WHERE `id`=6171 AND `quest`=1661;
|
||||
INSERT INTO `creature_queststarter` (`id`, `quest`) VALUES (6171, 1661);
|
||||
|
||||
-- Summon Felsteed (Warlock)
|
||||
DELETE FROM `creature_queststarter` WHERE `id`=461 AND `quest`=4488;
|
||||
INSERT INTO `creature_queststarter` (`id`, `quest`) VALUES (461, 4488);
|
||||
|
||||
-- Stormwind City Guard
|
||||
UPDATE `creature_template` SET `minlevel`=55, `maxlevel`=55 WHERE `entry`=68;
|
||||
|
||||
-- Dungar Longdrink <Gryphon Master>
|
||||
UPDATE `creature_template` SET `minlevel`=55, `maxlevel`=55 WHERE `entry`=352;
|
||||
|
||||
-- General Marcus Jonathan <High Commander of Stormwind Defense>
|
||||
UPDATE `creature_template` SET `minlevel`=62, `maxlevel`=62 WHERE `entry`=466;
|
||||
|
||||
-- Dane Lindgren <Apprentice Blacksmith>
|
||||
UPDATE `creature_template` SET `subname`='Journeyman Blacksmith', `npcflag`=81, `trainer_type`=2 WHERE `entry`=957;
|
||||
|
||||
-- Keldric Boucher <Alchemy Supplies & Reagents>
|
||||
UPDATE `creature_template` SET `subname`='Arcane Goods Vendor' WHERE `entry`=1257;
|
||||
|
||||
-- Kyra Boucher <Reagents>
|
||||
UPDATE `creature_template` SET `subname`='Reagent Vendor' WHERE `entry`=1275;
|
||||
|
||||
-- Edna Mullby <Trade Supplies>
|
||||
UPDATE `creature_template` SET `subname`='Trade Supplier' WHERE `entry`=1286;
|
||||
|
||||
-- Lawrence Schneider <Apprentice Tailor>
|
||||
UPDATE `creature_template` SET `subname`='Journeyman Tailor', `npcflag`=81, `trainer_type`=2 WHERE `entry`=1300;
|
||||
|
||||
-- Owen Vaughn <Reagents>
|
||||
UPDATE `creature_template` SET `subname`='Reagent Vendor' WHERE `entry`=1308;
|
||||
|
||||
-- Lucan Cordell <Enchanting Trainer>
|
||||
UPDATE `creature_template` SET `subname`='Expert Enchanter' WHERE `entry`=1317;
|
||||
|
||||
-- Sloan McCoy <Poison Supplier>
|
||||
UPDATE `creature_template` SET `subname`='Poison Supplier' WHERE `entry`=1326;
|
||||
|
||||
-- Georgio Bolero <Tailoring Trainer>
|
||||
UPDATE `creature_template` SET `subname`='Artisan Tailor' WHERE `entry`=1346;
|
||||
|
||||
-- Brother Cassius <Reagents>
|
||||
UPDATE `creature_template` SET `subname`='Reagent Vendor' WHERE `entry`=1351;
|
||||
|
||||
-- Stormwind Royal Guard
|
||||
UPDATE `creature_template` SET `minlevel`=60, `maxlevel`=60, `rank`=0 WHERE `entry`=1756;
|
||||
|
||||
-- Stormwind City Patroller
|
||||
UPDATE `creature_template` SET `minlevel`=55, `maxlevel`=55 WHERE `entry`=1976;
|
||||
|
||||
-- Borgus Steelhand <Weapon Crafter>
|
||||
UPDATE `creature_template` SET `subname`='Weapon Crafter' WHERE `entry`=7232;
|
||||
|
||||
-- Sprite Jumpsprocket <Apprentice Engineer>
|
||||
UPDATE `creature_template` SET `subname`='Journeyman Engineer', `npcflag`=81, `trainer_type`=2 WHERE `entry`=11026;
|
||||
|
||||
-- Betty Quin <Apprentice Enchanter>
|
||||
UPDATE `creature_template` SET `subname`='Journeyman Enchanter', `npcflag`=81, `trainer_type`=2 WHERE `entry`=11068;
|
||||
|
||||
-- Randal Worth <Apprentice Leatherworker>
|
||||
UPDATE `creature_template` SET `subname`='Journeyman Leatherworker', `npcflag`=81, `trainer_type`=2 WHERE `entry`=11096;
|
||||
|
||||
-- Lieutenant Rachel Vaccar <Outland Armor Quartermaster>
|
||||
UPDATE `creature_template` SET `subname`=NULL, `minlevel`=55, `maxlevel`=55, `npcflag`=0 WHERE `entry`=12778;
|
||||
|
||||
-- Master Sergeant Biggins <Accessories Quartermaster>
|
||||
UPDATE `creature_template` SET `subname`='Officer Accessories Quartermaster' WHERE `entry`=12781;
|
||||
|
||||
-- Captain O'Neal <Weapons Quartermaster>
|
||||
UPDATE `creature_template` SET `minlevel`=55, `maxlevel`=55 WHERE `entry`=12782;
|
||||
|
||||
-- Lieutenant Karter <War Mount Quartermaster>
|
||||
UPDATE `creature_template` SET `subname`='Mount Vendor' WHERE `entry`=12783;
|
||||
|
||||
-- Sergeant Major Clate <Legacy Armor Quartermaster>
|
||||
UPDATE `creature_template` SET `subname`='Food and Drink' WHERE `entry`=12785;
|
||||
|
||||
-- Officer Jaxon
|
||||
UPDATE `creature_template` SET `minlevel`=60, `maxlevel`=60 WHERE `entry`=14423;
|
||||
|
||||
-- Officer Pomeroy
|
||||
UPDATE `creature_template` SET `minlevel`=60, `maxlevel`=60 WHERE `entry`=14438;
|
||||
|
||||
-- Officer Brady
|
||||
UPDATE `creature_template` SET `minlevel`=60, `maxlevel`=60 WHERE `entry`=14439;
|
||||
|
||||
-- Alliance Brigadier General
|
||||
UPDATE `creature_template` SET `minlevel`=60, `maxlevel`=60, `rank`=0 WHERE `entry`=15351;
|
||||
|
||||
-- King Varian Wrynn
|
||||
UPDATE `creature_template` SET `minlevel`=63, `maxlevel`=63 WHERE `entry`=29611;
|
||||
|
||||
-- Lieutenant Karter <Mount Vendor>
|
||||
UPDATE `creature_template_addon` SET `mount`=0 WHERE `entry`=12783;
|
||||
|
||||
-- Lucan Cordell <Expert Enchanter>
|
||||
DELETE FROM `gossip_menu_option` WHERE `MenuID`=4161;
|
||||
INSERT INTO `gossip_menu_option` (`MenuID`, `OptionID`, `OptionIcon`, `OptionText`, `OptionBroadcastTextID`, `OptionType`, `OptionNpcFlag`) VALUES (4161, 0, 3, 'Train me.', 3266, 5, 16);
|
||||
|
||||
-- Sellandus <Expert Tailor>
|
||||
DELETE FROM `gossip_menu_option` WHERE `MenuID`=4344;
|
||||
INSERT INTO `gossip_menu_option` (`MenuID`, `OptionID`, `OptionIcon`, `OptionText`, `OptionBroadcastTextID`, `OptionType`, `OptionNpcFlag`) VALUES (4344, 0, 3, 'Train me.', 3266, 5, 16);
|
||||
|
||||
-- Dane Lindgren <Journeyman Blacksmith>
|
||||
DELETE FROM `npc_trainer` WHERE `ID`=957;
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`) VALUES (957, -310000);
|
||||
|
||||
-- Lawrence Schneider <Journeyman Tailor>
|
||||
DELETE FROM `npc_trainer` WHERE `ID`=1300;
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`) VALUES (1300, -410000);
|
||||
|
||||
-- Lucan Cordell <Expert Enchanter>
|
||||
DELETE FROM `npc_trainer` WHERE `ID`=1317;
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`) VALUES (1317, -330000);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`) VALUES (1317, -330001);
|
||||
|
||||
-- Georgio Bolero <Artisan Tailor>
|
||||
DELETE FROM `npc_trainer` WHERE `ID`=1346;
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`) VALUES (1346, -410000);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`) VALUES (1346, -410001);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`) VALUES (1346, -410002);
|
||||
|
||||
-- Tomas <Cook>
|
||||
DELETE FROM `npc_trainer` WHERE `ID`=1430;
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`) VALUES (1430, -320000);
|
||||
|
||||
-- Shaina Fuller <First Aid Trainer>
|
||||
DELETE FROM `npc_trainer` WHERE `ID`=2327;
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`) VALUES (2327, -350000);
|
||||
|
||||
-- Arnold Leland <Fishing Trainer>
|
||||
DELETE FROM `npc_trainer` WHERE `ID`=5493;
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`) VALUES (5493, -360000);
|
||||
|
||||
-- Stephen Ryback <Cooking Trainer>
|
||||
DELETE FROM `npc_trainer` WHERE `ID`=5482;
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`) VALUES (5482, -320000);
|
||||
|
||||
-- Lilyssia Nightbreeze <Expert Alchemist>
|
||||
DELETE FROM `npc_trainer` WHERE `ID`=5499;
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`) VALUES (5499, -300000);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`) VALUES (5499, -300001);
|
||||
|
||||
-- Tel'Athir <Journeyman Alchemist>
|
||||
DELETE FROM `npc_trainer` WHERE `ID`=5500;
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`) VALUES (5500, -300000);
|
||||
|
||||
-- Therum Deepforge <Expert Blacksmith>
|
||||
DELETE FROM `npc_trainer` WHERE `ID`=5511;
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`) VALUES (5511, -310000);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`) VALUES (5511, -310001);
|
||||
|
||||
-- Gelman Stonehand <Mining Trainer>
|
||||
DELETE FROM `npc_trainer` WHERE `ID`=5513;
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`) VALUES (5513, -390000);
|
||||
|
||||
-- Lilliam Sparkspindle <Expert Engineer>
|
||||
DELETE FROM `npc_trainer` WHERE `ID`=5518;
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`) VALUES (5518, -340000);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`) VALUES (5518, -340001);
|
||||
|
||||
-- Simon Tanner <Expert Leatherworker>
|
||||
DELETE FROM `npc_trainer` WHERE `ID`=5564;
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`) VALUES (5564, -380000);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`) VALUES (5564, -380001);
|
||||
|
||||
-- Sellandus <Expert Tailor>
|
||||
DELETE FROM `npc_trainer` WHERE `ID`=5567;
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`) VALUES (5567, -410000);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`) VALUES (5567, -410001);
|
||||
|
||||
-- Sprite Jumpsprocket <Journeyman Engineer>
|
||||
DELETE FROM `npc_trainer` WHERE `ID`=11026;
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`) VALUES (11026, -340000);
|
||||
|
||||
-- Betty Quin <Journeyman Enchanter>
|
||||
DELETE FROM `npc_trainer` WHERE `ID`=11068;
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`) VALUES (11068, -330000);
|
||||
|
||||
-- Randal Worth <Journeyman Leatherworker>
|
||||
DELETE FROM `npc_trainer` WHERE `ID`=11096;
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`) VALUES (11096, -380000);
|
||||
|
||||
-- Elaine Trias <Mistress of Cheese>
|
||||
DELETE FROM `npc_vendor` WHERE `entry`=483 AND `item` IN (27857, 33443, 35952);
|
||||
|
||||
-- Keldric Boucher <Alchemy Supplies & Reagents>
|
||||
DELETE FROM `npc_vendor` WHERE `entry`=1257 AND `item` IN (22147, 22148, 37201, 40411);
|
||||
|
||||
-- Kyra Boucher <Reagents>
|
||||
DELETE FROM `npc_vendor` WHERE `entry`=1275 AND `item` IN (22147, 22148, 37201);
|
||||
|
||||
-- Edna Mullby <Trade Supplies>
|
||||
DELETE FROM `npc_vendor` WHERE `entry`=1286 AND `item` IN (14341, 18256, 20856);
|
||||
DELETE FROM `npc_vendor` WHERE `entry`=1286 AND `item` IN (2324, 2605, 2928, 6260, 6529);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`) VALUES (1286, 2324);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`) VALUES (1286, 2605);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`) VALUES (1286, 2928);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`) VALUES (1286, 6260);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`) VALUES (1286, 6529);
|
||||
|
||||
-- Frederick Stover <Bow & Arrow Merchant>
|
||||
DELETE FROM `npc_vendor` WHERE `entry`=1298 AND `item` IN (11303, 11306, 11307, 28053);
|
||||
|
||||
-- Bernard Gump <Florist>
|
||||
DELETE FROM `npc_vendor` WHERE `entry`=1302 AND `item` IN (785, 2449, 2453, 3355, 3356, 3357);
|
||||
|
||||
-- Charys Yserian <Arcane Trinkets Vendor>
|
||||
DELETE FROM `npc_vendor` WHERE `entry`=1307 AND `item` IN (22147, 22148, 37201);
|
||||
|
||||
-- Owen Vaughn <Reagent Vendor>
|
||||
DELETE FROM `npc_vendor` WHERE `entry`=1308 AND `item` IN (22147, 22148, 37201);
|
||||
|
||||
-- Maria Lumere <Alchemy Supplies>
|
||||
DELETE FROM `npc_vendor` WHERE `entry`=1313 AND `item`=40411;
|
||||
|
||||
-- Jasper Fel <Shady Dealer>
|
||||
DELETE FROM `npc_vendor` WHERE `entry`=1325 AND `item` IN (21835, 21927, 22053, 22054, 22055, 43230, 43231, 43232, 43233, 43234, 43235, 43237);
|
||||
|
||||
-- Sloan McCoy <Poison Supplier>
|
||||
DELETE FROM `npc_vendor` WHERE `entry`=1326 AND `item` IN (21835, 21927, 22053, 22054, 22055, 43230, 43231, 43232, 43233, 43234, 43235, 43237);
|
||||
|
||||
-- Alexandra Bolero <Tailoring Supplies>
|
||||
DELETE FROM `npc_vendor` WHERE `entry`=1347 AND `item`=38426;
|
||||
|
||||
-- Brother Cassius <Reagent Vendor>
|
||||
DELETE FROM `npc_vendor` WHERE `entry`=1351 AND `item` IN (22147, 22148, 37201);
|
||||
|
||||
-- Thomas Miller <Baker>
|
||||
DELETE FROM `npc_vendor` WHERE `entry`=3518 AND `item` IN (27855, 33449, 35950);
|
||||
|
||||
-- Bren Trias <Apprentice of Cheese>
|
||||
DELETE FROM `npc_vendor` WHERE `entry`=4981 AND `item` IN (27857, 28399, 33443, 33444, 33445, 35952, 35954);
|
||||
|
||||
-- Rebecca Laughlin <Tabard Designer>
|
||||
DELETE FROM `npc_vendor` WHERE `entry`=5193 AND `item` IN (15196, 15198, 19032, 19506, 23999, 31774, 31775, 31776, 31777, 31778, 31779, 31780, 31781, 31804, 32445, 32828, 35221);
|
||||
|
||||
-- Eldraeith <Herbalism Supplier>
|
||||
DELETE FROM `npc_vendor` WHERE `entry`=5503 AND `item` IN (18256, 40411);
|
||||
|
||||
-- Brooke Stonebraid <Mining Supplies>
|
||||
DELETE FROM `npc_vendor` WHERE `entry`=5514 AND `item` IN (20815, 20824);
|
||||
|
||||
-- Billibub Cogspinner <Engineering Supplies>
|
||||
DELETE FROM `npc_vendor` WHERE `entry`=5519 AND `item` IN (39684, 40533);
|
||||
|
||||
-- Jillian Tanner <Leatherworking Supplies>
|
||||
DELETE FROM `npc_vendor` WHERE `entry`=5565 AND `item`=38426;
|
||||
|
||||
-- Innkeeper Allison <Innkeeper>
|
||||
DELETE FROM `npc_vendor` WHERE `entry`=6740 AND `item` IN (4536, 4537, 4538, 4539, 4602, 8953, 27855, 27856, 28399, 33444, 33445, 33449, 35948, 35949, 35950, 35954);
|
||||
|
||||
-- Captain Dirgehammer <Armor Quartermaster>
|
||||
DELETE FROM `npc_vendor` WHERE `entry`=12777 AND `item` IN (16437, 16440, 16441, 16442, 16443, 16444, 16446, 16448, 16449, 16450, 16451, 16452, 16453, 16454, 16455, 16456, 16457, 16459, 16462, 16463, 16465, 16466, 16467, 16468, 16471, 16472, 16473, 16474, 16475, 16476, 16477, 16478, 16479, 16480, 16483, 16484, 17578, 17579, 17580, 17581, 17583, 17584, 17602, 17603, 17604, 17605, 17607, 17608, 23272, 23273, 23274, 23275, 23276, 23277, 23278, 23279, 23280, 23281, 23282, 23283, 23284, 23285, 23286, 23287, 23288, 23289, 23290, 23291, 23292, 23293, 23294, 23295, 23296, 23297, 23298, 23299, 23300, 23301, 23302, 23303, 23304, 23305, 23306, 23307, 23308, 23309, 23310, 23311, 23312, 23313, 23314, 23315, 23316, 23317, 23318, 23319);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12777, 16437, 465);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12777, 16440, 541);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12777, 16441, 464);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12777, 16442, 542);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12777, 16443, 463);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12777, 16444, 465);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12777, 16446, 465);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12777, 16448, 541);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12777, 16449, 465);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12777, 16450, 542);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12777, 16451, 464);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12777, 16452, 463);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12777, 16453, 463);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12777, 16454, 541);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12777, 16455, 464);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12777, 16456, 542);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12777, 16457, 465);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12777, 16459, 465);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12777, 16462, 465);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12777, 16463, 541);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12777, 16465, 464);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12777, 16466, 463);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12777, 16467, 542);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12777, 16468, 465);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12777, 16471, 541);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12777, 16472, 465);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12777, 16473, 463);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12777, 16474, 464);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12777, 16475, 542);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12777, 16476, 465);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12777, 16477, 463);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12777, 16478, 464);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12777, 16479, 542);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12777, 16480, 465);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12777, 16483, 465);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12777, 16484, 541);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12777, 17578, 464);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12777, 17579, 542);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12777, 17580, 465);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12777, 17581, 463);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12777, 17583, 465);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12777, 17584, 541);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12777, 17602, 464);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12777, 17603, 542);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12777, 17604, 465);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12777, 17605, 463);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12777, 17607, 465);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12777, 17608, 541);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12777, 23272, 652);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12777, 23273, 653);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12777, 23274, 428);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12777, 23275, 427);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12777, 23276, 444);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12777, 23277, 427);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12777, 23278, 427);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12777, 23279, 428);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12777, 23280, 428);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12777, 23281, 427);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12777, 23282, 428);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12777, 23283, 427);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12777, 23284, 428);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12777, 23285, 427);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12777, 23286, 428);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12777, 23287, 427);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12777, 23288, 428);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12777, 23289, 427);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12777, 23290, 428);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12777, 23291, 427);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12777, 23292, 652);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12777, 23293, 653);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12777, 23294, 652);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12777, 23295, 653);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12777, 23296, 653);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12777, 23297, 652);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12777, 23298, 652);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12777, 23299, 653);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12777, 23300, 652);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12777, 23301, 653);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12777, 23302, 653);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12777, 23303, 652);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12777, 23304, 653);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12777, 23305, 652);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12777, 23306, 444);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12777, 23307, 427);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12777, 23308, 444);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12777, 23309, 427);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12777, 23310, 444);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12777, 23311, 427);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12777, 23312, 444);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12777, 23313, 427);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12777, 23314, 444);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12777, 23315, 427);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12777, 23316, 444);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12777, 23317, 427);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12777, 23318, 444);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12777, 23319, 427);
|
||||
|
||||
-- Lieutenant Rachel Vaccar <Outland Armor Quartermaster>
|
||||
DELETE FROM `npc_vendor` WHERE `entry`=12778;
|
||||
|
||||
-- Master Sergeant Biggins <Accessories Quartermaster>
|
||||
DELETE FROM `npc_vendor` WHERE `entry`=12781 AND `item` IN (15196, 16342, 18440, 18441, 18442, 18443, 18444, 18445, 18447, 18448, 18449, 18452, 18453, 18454, 18455, 18456, 18457, 18854, 18856, 18857, 18858, 18859, 18862, 18863, 18864, 25829, 28118, 28119, 28120, 28123, 28234, 28235, 28236, 28237, 28238, 28246, 28247, 28362, 28363, 28379, 28380, 29593, 30348, 30349, 30350, 30351, 31838, 31839, 31840, 31841, 31852, 31853, 31854, 31855, 32453, 32455, 37864, 38589, 44957);
|
||||
|
||||
-- Captain O'Neal <Weapons Quartermaster>
|
||||
DELETE FROM `npc_vendor` WHERE `entry`=12782 AND `item` IN (12584, 18825, 18827, 18830, 18833, 18836, 18838, 18843, 18847, 18855, 18865, 18867, 18869, 18873, 18876);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12782, 12584, 2291);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12782, 18825, 2291);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12782, 18827, 2291);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12782, 18830, 2257);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12782, 18833, 2291);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12782, 18836, 2291);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12782, 18838, 2291);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12782, 18843, 2291);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12782, 18847, 2291);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12782, 18855, 2291);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12782, 18865, 2291);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12782, 18867, 2257);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12782, 18869, 2257);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12782, 18873, 2257);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12782, 18876, 2257);
|
||||
|
||||
-- Lieutenant Karter <War Mount Quartermaster>
|
||||
DELETE FROM `npc_vendor` WHERE `entry`=12783 AND `item` IN (29465, 29467, 29468, 29471, 35906);
|
||||
DELETE FROM `npc_vendor` WHERE `entry`=12783 AND `item` IN (18241, 18242, 18243, 18244);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12783, 18241, 423);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12783, 18242, 423);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12783, 18243, 423);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12783, 18244, 423);
|
||||
|
||||
-- Sergeant Major Clate <Legacy Armor Quartermaster>
|
||||
DELETE FROM `npc_vendor` WHERE `entry`=12785 AND `item` IN (16437, 16440, 16441, 16442, 16443, 16444, 16446, 16448, 16449, 16450, 16451, 16452, 16453, 16454, 16455, 16456, 16457, 16459, 16462, 16463, 16465, 16466, 16467, 16468, 16471, 16472, 16473, 16474, 16475, 16476, 16477, 16478, 16479, 16480, 16483, 16484, 17578, 17579, 17580, 17581, 17583, 17584, 17602, 17603, 17604, 17605, 17607, 17608, 23272, 23273, 23274, 23275, 23276, 23277, 23278, 23279, 23280, 23281, 23282, 23283, 23284, 23285, 23286, 23287, 23288, 23289, 23290, 23291, 23292, 23293, 23294, 23295, 23296, 23297, 23298, 23299, 23300, 23301, 23302, 23303, 23304, 23305, 23306, 23307, 23308, 23309, 23310, 23311, 23312, 23313, 23314, 23315, 23316, 23317, 23318, 23319, 29594, 29595, 29596, 29597, 29598, 29599, 29606, 29607, 29608, 29609, 29610, 29611);
|
||||
DELETE FROM `npc_vendor` WHERE `entry`=12785 AND `item` IN (117, 159, 1179, 1205, 1645, 1708, 2287, 2593, 2594, 2595, 2596, 2723, 3770, 3771, 4536, 4537, 4538, 4539, 4540, 4541, 4542, 4544, 4599, 4601, 4602, 4604, 4605, 4606, 4607, 4608, 8766, 8948, 8950, 8952, 8953);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`) VALUES (12785, 117);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`) VALUES (12785, 159);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`) VALUES (12785, 1179);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`) VALUES (12785, 1205);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`) VALUES (12785, 1645);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`) VALUES (12785, 1708);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`) VALUES (12785, 2287);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`) VALUES (12785, 2593);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`) VALUES (12785, 2594);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`) VALUES (12785, 2595);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`) VALUES (12785, 2596);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`) VALUES (12785, 2723);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`) VALUES (12785, 3770);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`) VALUES (12785, 3771);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`) VALUES (12785, 4536);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`) VALUES (12785, 4537);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`) VALUES (12785, 4538);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`) VALUES (12785, 4539);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`) VALUES (12785, 4540);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`) VALUES (12785, 4541);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`) VALUES (12785, 4542);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`) VALUES (12785, 4544);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`) VALUES (12785, 4599);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`) VALUES (12785, 4601);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`) VALUES (12785, 4602);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`) VALUES (12785, 4604);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`) VALUES (12785, 4605);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`) VALUES (12785, 4606);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`) VALUES (12785, 4607);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`) VALUES (12785, 4608);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`) VALUES (12785, 8766);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`) VALUES (12785, 8948);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`) VALUES (12785, 8950);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`) VALUES (12785, 8952);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`) VALUES (12785, 8953);
|
||||
|
||||
-- Officer Areyn <Accessories Quartermaster>
|
||||
DELETE FROM `npc_vendor` WHERE `entry`=12805 AND `item` IN (18445, 18447, 18448, 18449, 18454, 18455, 18456, 18457, 18854, 18856, 18858, 18859, 18862, 18863, 18864);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12805, 18445, 492);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12805, 18447, 931);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12805, 18448, 492);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12805, 18449, 931);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12805, 18454, 492);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12805, 18455, 931);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12805, 18456, 492);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12805, 18457, 931);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12805, 18854, 634);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12805, 18856, 634);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12805, 18858, 634);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12805, 18859, 634);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12805, 18862, 634);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12805, 18863, 634);
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `ExtendedCost`) VALUES (12805, 18864, 634);
|
||||
|
||||
-- Summon Felsteed (Warlock)
|
||||
DELETE FROM `quest_offer_reward` WHERE `ID`=4488;
|
||||
INSERT INTO `quest_offer_reward` (`ID`, `RewardText`) VALUES (4488, 'So, you\'ve decided to grace my presence again. How kind of you.$b$bMy acolytes wondered if you\'d ever show up. I told them there was no doubt. When power is concerned, you are drawn in like a moth to the flame.');
|
||||
|
||||
-- A Meal Served Cold
|
||||
UPDATE `quest_template` SET `Flags`=9, `LogDescription`='Kill a Cold Eye Basilisk, get a Chilled Basilisk Haunch, and return it to Angus Stern in the Blue Recluse.$B$B<You must not release your spirit to succeed in this quest.>' WHERE `ID`=212;
|
||||
|
||||
-- Chillwind Camp
|
||||
UPDATE `quest_template` SET `LogTitle`='Chillwind Point' WHERE `ID`=8415;
|
||||
|
||||
-- Devourer of Souls (Warlock)
|
||||
UPDATE `quest_template_addon` SET `PrevQuestID`=0 WHERE `ID`=1716;
|
||||
|
||||
-- Remove non-Vanilla food items from Stormwind vendors
|
||||
DELETE FROM npc_vendor WHERE entry=6740 and item IN (27855, 27856, 28399, 33444, 33445, 33449, 35948, 35949, 35950, 35954);
|
||||
DELETE FROM npc_vendor WHERE entry=3518 and item IN (27855, 33449, 35950);
|
||||
DELETE FROM npc_vendor WHERE entry=3003 and item IN (27855, 33449, 35950);
|
||||
DELETE FROM npc_vendor WHERE entry=4255 and item IN (27854, 27855, 27856, 27857, 27858, 27860, 28399, 29448, 29449, 29450, 29451, 29452, 33443, 33444, 33445, 33449, 33451, 33454, 35948, 35949, 35950, 35951, 35952, 35953, 35954);
|
||||
DELETE FROM npc_vendor WHERE entry=10367 and item IN (27854, 27855, 27856, 27857, 27858, 27860, 28399, 29448, 29449, 29450, 29451, 29452, 33443, 33444, 33445, 33449, 33451, 33454, 35948, 35949, 35950, 35951, 35952, 35953, 35954, 27859, 29453, 33452, 35947);
|
||||
DELETE FROM npc_vendor WHERE entry=5109 and item IN (27855, 33449, 35950);
|
||||
DELETE FROM npc_vendor WHERE entry=4981 and item IN (27857, 28399, 33443, 33444, 33445, 35952, 35954);
|
||||
DELETE FROM npc_vendor WHERE entry=483 and item IN (27857, 33443, 35952);
|
||||
266
sql/world/base/zone_the_barrens.sql
Normal file
266
sql/world/base/zone_the_barrens.sql
Normal file
@@ -0,0 +1,266 @@
|
||||
-- Traugh <Expert Blacksmith>
|
||||
DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=15 AND `SourceGroup`=2783 AND `SourceEntry`=0 AND `ConditionTypeOrReference`=7;
|
||||
INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `ConditionTypeOrReference`, `ConditionValue1`, `ConditionValue2`, `Comment`) VALUES (15, 2783, 0, 7, 164, 50, 'Show menu if blacksmithing is 50 or higher');
|
||||
|
||||
-- Krulmoo Fullmoon <Expert Leatherworker>
|
||||
DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=15 AND `SourceGroup`=4206 AND `SourceEntry`=0 AND `ConditionTypeOrReference`=7;
|
||||
INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `ConditionTypeOrReference`, `ConditionValue1`, `ConditionValue2`, `Comment`) VALUES (15, 4206, 0, 7, 165, 50, 'Show menu if leatherworking is 50 or higher');
|
||||
|
||||
-- Mahani <Expert Tailor>
|
||||
DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=15 AND `SourceGroup`=4350 AND `SourceEntry`=0 AND `ConditionTypeOrReference`=7;
|
||||
INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `ConditionTypeOrReference`, `ConditionValue1`, `ConditionValue2`, `Comment`) VALUES (15, 4350, 0, 7, 197, 50, 'Show menu if tailoring is 50 or higher');
|
||||
|
||||
-- Vile Familiars (Warlock)
|
||||
DELETE FROM `creature_questender` WHERE `id`=5765 AND `quest`=1485;
|
||||
INSERT INTO `creature_questender` (`id`, `quest`) VALUES (5765, 1485);
|
||||
|
||||
-- Summon Felsteed (Warlock)
|
||||
DELETE FROM `creature_questender` WHERE `id`=6251 AND `quest`=3631;
|
||||
INSERT INTO `creature_questender` (`id`, `quest`) VALUES (6251, 3631);
|
||||
DELETE FROM `creature_questender` WHERE `id`=6251 AND `quest`=4487;
|
||||
INSERT INTO `creature_questender` (`id`, `quest`) VALUES (6251, 4487);
|
||||
DELETE FROM `creature_questender` WHERE `id`=6251 AND `quest`=4488;
|
||||
INSERT INTO `creature_questender` (`id`, `quest`) VALUES (6251, 4488);
|
||||
DELETE FROM `creature_questender` WHERE `id`=6251 AND `quest`=4489;
|
||||
INSERT INTO `creature_questender` (`id`, `quest`) VALUES (6251, 4489);
|
||||
DELETE FROM `creature_questender` WHERE `id`=6251 AND `quest`=4490;
|
||||
INSERT INTO `creature_questender` (`id`, `quest`) VALUES (6251, 4490);
|
||||
|
||||
-- Vile Familiars (Warlock)
|
||||
DELETE FROM `creature_queststarter` WHERE `id`=5765 AND `quest`=1485;
|
||||
INSERT INTO `creature_queststarter` (`id`, `quest`) VALUES (5765, 1485);
|
||||
|
||||
-- Summon Felsteed (Warlock)
|
||||
DELETE FROM `creature_queststarter` WHERE `id`=6251 AND `quest`=4490;
|
||||
INSERT INTO `creature_queststarter` (`id`, `quest`) VALUES (6251, 4490);
|
||||
|
||||
-- Grub
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=0, `npcflag`=2 WHERE `entry`=3443;
|
||||
|
||||
-- Gilthares Firebough
|
||||
UPDATE `creature_template` SET `modelid1`=4244 WHERE `entry`=3465;
|
||||
|
||||
-- Hraq <Blacksmithing Supplier>
|
||||
UPDATE `creature_template` SET `subname`='Blacksmithing Supplier' WHERE `entry`=3477;
|
||||
|
||||
-- Traugh <Expert Blacksmith>
|
||||
UPDATE `creature_template` SET `subname`='Expert Blacksmith' WHERE `entry`=3478;
|
||||
|
||||
-- Kil'hala <Journeyman Tailor>
|
||||
UPDATE `creature_template` SET `subname`='Journeyman Tailor' WHERE `entry`=3484;
|
||||
|
||||
-- Hula'mahi <Reagents and Herbs>
|
||||
UPDATE `creature_template` SET `subname`='Reagents and Herbs' WHERE `entry`=3490;
|
||||
|
||||
-- Tinkerwiz <Journeyman Engineer>
|
||||
UPDATE `creature_template` SET `subname`='Journeyman Engineer' WHERE `entry`=3494;
|
||||
|
||||
-- Gagsprocket <Engineering Goods>
|
||||
UPDATE `creature_template` SET `subname`='Engineering Goods' WHERE `entry`=3495;
|
||||
|
||||
-- Silithid Protector
|
||||
UPDATE `creature_template` SET `faction`=16 WHERE `entry`=3503;
|
||||
|
||||
-- Devrak <Wind Rider Master>
|
||||
UPDATE `creature_template` SET `minlevel`=55, `maxlevel`=55 WHERE `entry`=3615;
|
||||
|
||||
-- Deviate Coiler
|
||||
UPDATE `creature_template` SET `rank`=1 WHERE `entry`=3630;
|
||||
|
||||
-- Deviate Stinglash
|
||||
UPDATE `creature_template` SET `rank`=1 WHERE `entry`=3631;
|
||||
|
||||
-- Deviate Creeper
|
||||
UPDATE `creature_template` SET `rank`=1 WHERE `entry`=3632;
|
||||
|
||||
-- Deviate Slayer
|
||||
UPDATE `creature_template` SET `rank`=1 WHERE `entry`=3633;
|
||||
|
||||
-- Deviate Stalker
|
||||
UPDATE `creature_template` SET `maxlevel`=17, `rank`=1 WHERE `entry`=3634;
|
||||
|
||||
-- Devouring Ectoplasm
|
||||
UPDATE `creature_template` SET `rank`=1 WHERE `entry`=3638;
|
||||
|
||||
-- Deviate Lurker
|
||||
UPDATE `creature_template` SET `rank`=1 WHERE `entry`=3641;
|
||||
|
||||
-- Trigore the Lasher
|
||||
UPDATE `creature_template` SET `minlevel`=19, `maxlevel`=19, `rank`=2 WHERE `entry`=3652;
|
||||
|
||||
-- Boahn <Druid of the Fang>
|
||||
UPDATE `creature_template` SET `minlevel`=20, `maxlevel`=20, `rank`=2 WHERE `entry`=3672;
|
||||
|
||||
-- Krulmoo Fullmoon <Expert Leatherworker>
|
||||
UPDATE `creature_template` SET `subname`='Expert Leatherworker' WHERE `entry`=3703;
|
||||
|
||||
-- Mahani <Expert Tailor>
|
||||
UPDATE `creature_template` SET `subname`='Expert Tailor' WHERE `entry`=3704;
|
||||
|
||||
-- Darkmist Widow
|
||||
UPDATE `creature_template` SET `minlevel`=40, `maxlevel`=40, `rank`=4 WHERE `entry`=4380;
|
||||
|
||||
-- Waldor <Journeyman Leatherworker>
|
||||
UPDATE `creature_template` SET `subname`='Journeyman Leatherworker' WHERE `entry`=5784;
|
||||
|
||||
-- Aean Swiftriver <Alliance Outrunner>
|
||||
UPDATE `creature_template` SET `minlevel`=25, `maxlevel`=25 WHERE `entry`=5797;
|
||||
|
||||
-- Marcus Bel <Alliance Outrunner>
|
||||
UPDATE `creature_template` SET `minlevel`=24, `maxlevel`=24 WHERE `entry`=5800;
|
||||
|
||||
-- Foreman Grills
|
||||
UPDATE `creature_template` SET `minlevel`=19 WHERE `entry`=5835;
|
||||
|
||||
-- Razorfen Servitor
|
||||
UPDATE `creature_template` SET `rank`=1 WHERE `entry`=6132;
|
||||
|
||||
-- Dranh <Skinner>
|
||||
UPDATE `creature_template` SET `subname`='Skinner' WHERE `entry`=6387;
|
||||
|
||||
-- Death's Head Cultist
|
||||
UPDATE `creature_template` SET `rank`=1 WHERE `entry`=7872;
|
||||
|
||||
-- Razorfen Battleguard
|
||||
UPDATE `creature_template` SET `rank`=1 WHERE `entry`=7873;
|
||||
|
||||
-- Razorfen Thornweaver
|
||||
UPDATE `creature_template` SET `rank`=1 WHERE `entry`=7874;
|
||||
|
||||
-- Ambassador Bloodrage
|
||||
UPDATE `creature_template` SET `rank`=2 WHERE `entry`=7895;
|
||||
|
||||
-- Muck Frenzy
|
||||
UPDATE `creature_template` SET `minlevel`=15, `maxlevel`=15 WHERE `entry`=8236;
|
||||
|
||||
-- Vazario Linkgrease <Master Goblin Engineer>
|
||||
UPDATE `creature_template` SET `subname`='Master Goblin Engineer' WHERE `entry`=8738;
|
||||
|
||||
-- Omusa Thunderhorn <Wind Rider Master>
|
||||
UPDATE `creature_template` SET `minlevel`=55, `maxlevel`=55 WHERE `entry`=10378;
|
||||
|
||||
-- Ambassador Malcin
|
||||
UPDATE `creature_template` SET `rank`=1 WHERE `entry`=12865;
|
||||
|
||||
-- Horde Elite
|
||||
UPDATE `creature_template` SET `minlevel`=55, `maxlevel`=55 WHERE `entry`=14717;
|
||||
|
||||
-- Bragok <Flight Master>
|
||||
UPDATE `creature_template` SET `minlevel`=55, `maxlevel`=55 WHERE `entry`=16227;
|
||||
|
||||
-- Traugh <Expert Blacksmith>
|
||||
DELETE FROM `npc_trainer` WHERE `ID`=3478;
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`) VALUES (3478, -310000);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`) VALUES (3478, -310001);
|
||||
|
||||
-- Kil'hala <Journeyman Tailor>
|
||||
DELETE FROM `npc_trainer` WHERE `ID`=3484;
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`) VALUES (3484, -410000);
|
||||
|
||||
-- Tinkerwiz <Journeyman Engineer>
|
||||
DELETE FROM `npc_trainer` WHERE `ID`=3494;
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`) VALUES (3494, -340000);
|
||||
|
||||
-- Krulmoo Fullmoon <Expert Leatherworker>
|
||||
DELETE FROM `npc_trainer` WHERE `ID`=3703;
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`) VALUES (3703, -380000);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`) VALUES (3703, -380001);
|
||||
|
||||
-- Mahani <Expert Tailor>
|
||||
DELETE FROM `npc_trainer` WHERE `ID`=3704;
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`) VALUES (3704, -410000);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`) VALUES (3704, -410001);
|
||||
|
||||
-- Waldor <Journeyman Leatherworker>
|
||||
DELETE FROM `npc_trainer` WHERE `ID`=5784;
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`) VALUES (5784, -380000);
|
||||
|
||||
-- Dranh <Skinner>
|
||||
DELETE FROM `npc_trainer` WHERE `ID`=6387;
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`) VALUES (6387, -400000);
|
||||
|
||||
-- Duhng <Cook>
|
||||
DELETE FROM `npc_trainer` WHERE `ID`=8306;
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`) VALUES (8306, -320000);
|
||||
|
||||
-- Vazario Linkgrease <Master Goblin Engineer>
|
||||
DELETE FROM `npc_trainer` WHERE `ID`=8738;
|
||||
|
||||
-- Grub
|
||||
DELETE FROM `npc_vendor` WHERE `entry`=3443;
|
||||
|
||||
-- Tari'qa <Trade Supplies>
|
||||
DELETE FROM `npc_vendor` WHERE `entry`=3482 AND `item`=39354;
|
||||
|
||||
-- Wrahk <Tailoring Supplies>
|
||||
DELETE FROM `npc_vendor` WHERE `entry`=3485 AND `item`=38426;
|
||||
|
||||
-- Hula'mahi <Reagents and Herbs>
|
||||
DELETE FROM `npc_vendor` WHERE `entry`=3490 AND `item` IN (21835, 21927, 22053, 22054, 22055, 22147, 22148, 37201, 43230, 43231, 43232, 43233, 43234, 43235, 43237);
|
||||
DELETE FROM `npc_vendor` WHERE `entry`=3490 AND `item`=8925;
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`) VALUES (3490, 8925);
|
||||
|
||||
-- Gagsprocket <Engineering Goods>
|
||||
DELETE FROM `npc_vendor` WHERE `entry`=3495 AND `item` IN (14639, 39684, 40533);
|
||||
|
||||
-- Ranik <Trade Supplies>
|
||||
DELETE FROM `npc_vendor` WHERE `entry`=3499 AND `item` IN (20855, 39354);
|
||||
|
||||
-- Kalldan Felmoon <Specialist Leatherworking Supplies>
|
||||
DELETE FROM `npc_vendor` WHERE `entry`=5783 AND `item`=38426;
|
||||
|
||||
-- Yonada <Tailoring & Leatherworking Supplies>
|
||||
DELETE FROM `npc_vendor` WHERE `entry`=5944 AND `item`=38426;
|
||||
|
||||
-- Tarban Hearthgrain <Baker>
|
||||
DELETE FROM `npc_vendor` WHERE `entry`=8307 AND `item`=30817;
|
||||
|
||||
-- Kelm Hargunth <Warsong Supply Officer>
|
||||
DELETE FROM `npc_vendor` WHERE `entry`=14754 AND `item`=30498;
|
||||
|
||||
-- The Angry Scytheclaws
|
||||
DELETE FROM `quest_offer_reward` WHERE `ID`=905;
|
||||
INSERT INTO `quest_offer_reward` (`ID`, `Emote1`, `RewardText`) VALUES (905, 1, 'So you\'ve been to the nests and placed the feathers of your prey within them. That took a fair portion of courage, no doubt about it.$B$BDo you feel a little tougher, $N? Because you look tougher now then when you first came here. I guess the Barrens is doing its job.');
|
||||
|
||||
-- Call of Water (Shaman)
|
||||
DELETE FROM `quest_request_items` WHERE `ID`=63;
|
||||
INSERT INTO `quest_request_items` (`ID`, `EmoteOnComplete`, `CompletionText`) VALUES (63, 1, 'The brazier still reflects the ambient light from the area, and the flame shifts slightly as you move closer.$B$BThe corruption along the hills seems to have kept its distance, and besides the missing components, the brazier looks prepared for the ritual to summon a cleansed manifestation of water.');
|
||||
|
||||
-- Hamuul Runetotem
|
||||
DELETE FROM `quest_request_items` WHERE `ID`=1489;
|
||||
INSERT INTO `quest_request_items` (`ID`, `EmoteOnComplete`, `CompletionText`) VALUES (1489, 1, NULL);
|
||||
|
||||
-- Call of Water (Shaman)
|
||||
UPDATE `quest_template` SET `LogDescription`='Bring the Shard of Water to Islen Waterseer in the Barrens.' WHERE `ID`=96;
|
||||
|
||||
-- Call of Water (Shaman)
|
||||
UPDATE `quest_template` SET `LogDescription`='Bring the Vial of Purest Water to Islen Waterseer in the Barrens.' WHERE `ID`=220;
|
||||
|
||||
-- Ziz Fizziks
|
||||
UPDATE `quest_template` SET `LogDescription`='Speak with Ziz Fizziks in Windshear Crag.' WHERE `ID`=1483;
|
||||
|
||||
-- Call of Water (Shaman)
|
||||
UPDATE `quest_template` SET `LogDescription`='Find Brine in Southern Barrens.' WHERE `ID`=1530;
|
||||
|
||||
-- Mura Runetotem
|
||||
UPDATE `quest_template` SET `LogDescription`='Speak with Mura Runetotem in the Sepulcher.' WHERE `ID`=3301;
|
||||
|
||||
-- Melor Sends Word
|
||||
UPDATE `quest_template_addon` SET `PrevQuestID`=882 WHERE `ID`=1130;
|
||||
|
||||
-- Shard of a Felhound (Warlock)
|
||||
UPDATE `quest_template_addon` SET `PrevQuestID`=1799 WHERE `ID`=4962;
|
||||
|
||||
-- Shard of an Infernal (Warlock)
|
||||
UPDATE `quest_template_addon` SET `PrevQuestID`=1799 WHERE `ID`=4963;
|
||||
|
||||
-- The Completed Orb of Dar'Orahil (Warlock)
|
||||
UPDATE `quest_template_addon` SET `PrevQuestID`=4962 WHERE `ID`=4964;
|
||||
|
||||
-- The Completed Orb of Noh'Orahil (Warlock)
|
||||
UPDATE `quest_template_addon` SET `PrevQuestID`=4963 WHERE `ID`=4975;
|
||||
|
||||
-- Supplies for the Crossroads
|
||||
UPDATE `quest_template_addon` SET `PrevQuestID`=871 WHERE `ID`=5041;
|
||||
|
||||
|
||||
237
sql/world/base/zone_thunder_bluff.sql
Normal file
237
sql/world/base/zone_thunder_bluff.sql
Normal file
@@ -0,0 +1,237 @@
|
||||
-- Karn Stonehoof <Expert Blacksmith>
|
||||
DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=15 AND `SourceGroup`=1017 AND `SourceEntry`=0 AND `ConditionTypeOrReference`=7;
|
||||
INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `ConditionTypeOrReference`, `ConditionValue1`, `ConditionValue2`, `Comment`) VALUES (15, 1017, 0, 7, 164, 50, 'Show menu if blacksmithing is 50 or higher');
|
||||
|
||||
-- Bena Winterhoof <Expert Alchemist>
|
||||
DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=15 AND `SourceGroup`=4128 AND `SourceEntry`=0 AND `ConditionTypeOrReference`=7;
|
||||
INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `ConditionTypeOrReference`, `ConditionValue1`, `ConditionValue2`, `Comment`) VALUES (15, 4128, 0, 7, 171, 50, 'Show menu if alchemy is 50 or higher');
|
||||
|
||||
-- Teg Dawnstrider <Expert Enchanter>
|
||||
DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=15 AND `SourceGroup`=4165 AND `SourceEntry`=0 AND `ConditionTypeOrReference`=7;
|
||||
INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `ConditionTypeOrReference`, `ConditionValue1`, `ConditionValue2`, `Comment`) VALUES (15, 4165, 0, 7, 333, 50, 'Show menu if enchanting is 50 or higher');
|
||||
|
||||
-- Tarn <Expert Leatherworker>
|
||||
DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=15 AND `SourceGroup`=4207 AND `SourceEntry`=0 AND `ConditionTypeOrReference`=7;
|
||||
INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `ConditionTypeOrReference`, `ConditionValue1`, `ConditionValue2`, `Comment`) VALUES (15, 4207, 0, 7, 165, 50, 'Show menu if leatherworking is 50 or higher');
|
||||
|
||||
-- Una <Artisan Leatherworker>
|
||||
DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=15 AND `SourceGroup`=4242 AND `SourceEntry`=0 AND `ConditionTypeOrReference`=7;
|
||||
INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `ConditionTypeOrReference`, `ConditionValue1`, `ConditionValue2`, `Comment`) VALUES (15, 4242, 0, 7, 165, 125, 'Show menu if leatherworking is 125 or higher');
|
||||
|
||||
-- Tepa <Expert Tailor>
|
||||
DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=15 AND `SourceGroup`=4351 AND `SourceEntry`=0 AND `ConditionTypeOrReference`=7;
|
||||
INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `ConditionTypeOrReference`, `ConditionValue1`, `ConditionValue2`, `Comment`) VALUES (15, 4351, 0, 7, 197, 50, 'Show menu if tailoring is 50 or higher');
|
||||
|
||||
-- Taim Ragetotem
|
||||
DELETE FROM `creature` WHERE `id1`=7427;
|
||||
INSERT INTO `creature` (`id1`, `map`, `position_x`, `position_y`, `position_z`, `orientation`, `spawntimesecs`) VALUES (7427, 1, -1384.29, -98.6163, 159.018, 2.87979, 300);
|
||||
|
||||
-- Kergul Bloodaxe <Warsong Gulch Battlemaster>
|
||||
DELETE FROM `creature` WHERE `id1`=10360;
|
||||
INSERT INTO `creature` (`id1`, `map`, `position_x`, `position_y`, `position_z`, `orientation`, `spawntimesecs`) VALUES (10360, 1, -1381.29, -75.9809, 160.602, 3.19395, 300);
|
||||
|
||||
-- Martin Lindsey <Arathi Basin Battlemaster>
|
||||
DELETE FROM `creature` WHERE `id1`=12198;
|
||||
INSERT INTO `creature` (`id1`, `map`, `position_x`, `position_y`, `position_z`, `orientation`, `spawntimesecs`) VALUES (12198, 1, -995.143, 217.173, 104.729, 4.46804, 500);
|
||||
|
||||
-- Karn Stonehoof <Expert Blacksmith>
|
||||
UPDATE `creature_template` SET `subname`='Expert Blacksmith' WHERE `entry`=2998;
|
||||
|
||||
-- Kurm Stonehoof <Mining Supplier>
|
||||
UPDATE `creature_template` SET `subname`='Mining Supplier' WHERE `entry`=3002;
|
||||
|
||||
-- Tepa <Expert Tailor>
|
||||
UPDATE `creature_template` SET `subname`='Expert Tailor' WHERE `entry`=3004;
|
||||
|
||||
-- Una <Artisan Leatherworker>
|
||||
UPDATE `creature_template` SET `subname`='Artisan Leatherworker' WHERE `entry`=3007;
|
||||
|
||||
-- Mak <Journeyman Leatherworker>
|
||||
UPDATE `creature_template` SET `subname`='Journeyman Leatherworker', `npcflag`=81, `trainer_type`=2 WHERE `entry`=3008;
|
||||
|
||||
-- Bena Winterhoof <Expert Alchemist>
|
||||
UPDATE `creature_template` SET `subname`='Expert Alchemist' WHERE `entry`=3009;
|
||||
|
||||
-- Teg Dawnstrider <Expert Enchanter>
|
||||
UPDATE `creature_template` SET `subname`='Expert Enchanter' WHERE `entry`=3011;
|
||||
|
||||
-- Nida Winterhoof <Herbalism Supplier>
|
||||
UPDATE `creature_template` SET `subname`='Expert Enchanter' WHERE `entry`=3014;
|
||||
|
||||
-- Kard Ragetotem <Sword and Dagger Merchant>
|
||||
UPDATE `creature_template` SET `subname`='Sword and Dagger Merchant' WHERE `entry`=3021;
|
||||
|
||||
-- Naal Mistrunner <Cooking Supplier>
|
||||
UPDATE `creature_template` SET `subname`='Cooking Supplier' WHERE `entry`=3027;
|
||||
|
||||
-- Sewa Mistrunner <Fishing Supplier>
|
||||
UPDATE `creature_template` SET `subname`='Fishing Supplier' WHERE `entry`=3029;
|
||||
|
||||
-- Cairne Bloodhoof <High Chieftain>
|
||||
UPDATE `creature_template` SET `minlevel`=63, `maxlevel`=63 WHERE `entry`=3057;
|
||||
|
||||
-- Honor Guard
|
||||
UPDATE `creature_template` SET `minlevel`=60, `maxlevel`=60, `rank`=0 WHERE `entry`=3083;
|
||||
|
||||
-- Bluffwatcher
|
||||
UPDATE `creature_template` SET `minlevel`=55, `maxlevel`=55, `faction`=105 WHERE `entry`=3084;
|
||||
|
||||
-- Chepi <Reagent Vendor>
|
||||
UPDATE `creature_template` SET `subname`='Reagent Vendor' WHERE `entry`=8361;
|
||||
|
||||
-- Kuruk <General Goods Vendor>
|
||||
UPDATE `creature_template` SET `subname`='General Goods Vendor' WHERE `entry`=8362;
|
||||
|
||||
-- Shadi Mistrunner <Trade Goods Supplier>
|
||||
UPDATE `creature_template` SET `subname`='Trade Goods Supplier' WHERE `entry`=8363;
|
||||
|
||||
-- Thrag Stonehoof <Journeyman Blacksmith>
|
||||
UPDATE `creature_template` SET `subname`='Journeyman Blacksmith', `npcflag`=81, `trainer_type`=2 WHERE `entry`=10278;
|
||||
|
||||
-- Kray <Journeyman Alchemist>
|
||||
UPDATE `creature_template` SET `subname`='Journeyman Alchemist', `npcflag`=81, `trainer_type`=2 WHERE `entry`=11047;
|
||||
|
||||
-- Vhan <Journeyman Tailor>
|
||||
UPDATE `creature_template` SET `subname`='Journeyman Tailor', `npcflag`=81, `trainer_type`=2 WHERE `entry`=11051;
|
||||
|
||||
-- Mot Dawnstrider <Journeyman Enchanter>
|
||||
UPDATE `creature_template` SET `subname`='Journeyman Enchanter', `npcflag`=81, `trainer_type`=2 WHERE `entry`=11071;
|
||||
|
||||
-- Tarn <Expert Leatherworker>
|
||||
UPDATE `creature_template` SET `subname`='Expert Leatherworker', `npcflag`=81, `trainer_type`=2 WHERE `entry`=11084;
|
||||
|
||||
-- Hunter Sagewind
|
||||
UPDATE `creature_template` SET `minlevel`=60, `maxlevel`=60 WHERE `entry`=14440;
|
||||
|
||||
-- Hunter Ragetotem
|
||||
UPDATE `creature_template` SET `minlevel`=60, `maxlevel`=60 WHERE `entry`=14441;
|
||||
|
||||
-- Bena Winterhoof <Expert Alchemist>
|
||||
DELETE FROM `gossip_menu_option` WHERE `MenuID`=4128;
|
||||
INSERT INTO `gossip_menu_option` (`MenuID`, `OptionID`, `OptionIcon`, `OptionText`, `OptionBroadcastTextID`, `OptionType`, `OptionNpcFlag`) VALUES (4128, 0, 3, 'Train me.', 3266, 5, 16);
|
||||
|
||||
-- Teg Dawnstrider <Expert Enchanter>
|
||||
DELETE FROM `gossip_menu_option` WHERE `MenuID`=4165;
|
||||
INSERT INTO `gossip_menu_option` (`MenuID`, `OptionID`, `OptionIcon`, `OptionText`, `OptionBroadcastTextID`, `OptionType`, `OptionNpcFlag`) VALUES (4165, 0, 3, 'Train me.', 3266, 5, 16);
|
||||
|
||||
-- Tarn <Expert Leatherworker>
|
||||
DELETE FROM `gossip_menu_option` WHERE `MenuID`=4207;
|
||||
INSERT INTO `gossip_menu_option` (`MenuID`, `OptionID`, `OptionIcon`, `OptionText`, `OptionBroadcastTextID`, `OptionType`, `OptionNpcFlag`) VALUES (4207, 0, 3, 'Train me.', 3266, 5, 16);
|
||||
|
||||
-- Una <Artisan Leatherworker>
|
||||
DELETE FROM `gossip_menu_option` WHERE `MenuID`=4242;
|
||||
INSERT INTO `gossip_menu_option` (`MenuID`, `OptionID`, `OptionIcon`, `OptionText`, `OptionBroadcastTextID`, `OptionType`, `OptionNpcFlag`) VALUES (4242, 0, 3, 'Train me.', 3266, 5, 16);
|
||||
|
||||
-- Tepa <Expert Tailor>
|
||||
DELETE FROM `gossip_menu_option` WHERE `MenuID`=4351;
|
||||
INSERT INTO `gossip_menu_option` (`MenuID`, `OptionID`, `OptionIcon`, `OptionText`, `OptionBroadcastTextID`, `OptionType`, `OptionNpcFlag`) VALUES (4351, 0, 3, 'Train me.', 3266, 5, 16);
|
||||
|
||||
-- Pand Stonebinder <First Aid Trainer>
|
||||
DELETE FROM `npc_trainer` WHERE `ID`=2798;
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`) VALUES (2798, -350000);
|
||||
|
||||
-- Karn Stonehoof <Expert Blacksmith>
|
||||
DELETE FROM `npc_trainer` WHERE `ID`=2998;
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`) VALUES (2998, -310000);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`) VALUES (2998, -310001);
|
||||
|
||||
-- Brek Stonehoof <Mining Trainer>
|
||||
DELETE FROM `npc_trainer` WHERE `ID`=3001;
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`) VALUES (3001, -390000);
|
||||
|
||||
-- Tepa <Expert Tailor>
|
||||
DELETE FROM `npc_trainer` WHERE `ID`=3004;
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`) VALUES (3004, -410000);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`) VALUES (3004, -410001);
|
||||
|
||||
-- Una <Artisan Leatherworker>
|
||||
DELETE FROM `npc_trainer` WHERE `ID`=3007;
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`) VALUES (3007, -380000);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`) VALUES (3007, -380001);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`) VALUES (3007, -380002);
|
||||
|
||||
-- Mak <Journeyman Leatherworker>
|
||||
DELETE FROM `npc_trainer` WHERE `ID`=3008;
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`) VALUES (3008, -380000);
|
||||
|
||||
-- Bena Winterhoof <Expert Alchemist>
|
||||
DELETE FROM `npc_trainer` WHERE `ID`=3009;
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`) VALUES (3009, -300000);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`) VALUES (3009, -300001);
|
||||
|
||||
-- Teg Dawnstrider <Expert Enchanter>
|
||||
DELETE FROM `npc_trainer` WHERE `ID`=3011;
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`) VALUES (3011, -330000);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`) VALUES (3011, -330001);
|
||||
|
||||
-- Komin Winterhoof
|
||||
DELETE FROM `npc_trainer` WHERE `ID`=3013;
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`) VALUES (3013, -370000);
|
||||
|
||||
-- Aska Mistrunner <Cooking Trainer>
|
||||
DELETE FROM `npc_trainer` WHERE `ID`=3026;
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`) VALUES (3026, -320000);
|
||||
|
||||
-- Kah Mistrunner
|
||||
DELETE FROM `npc_trainer` WHERE `ID`=3028;
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`) VALUES (3028, -360000);
|
||||
|
||||
-- Mooranta <Skinning Trainer>
|
||||
DELETE FROM `npc_trainer` WHERE `ID`=7089;
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`) VALUES (7089, -400000);
|
||||
|
||||
-- Thrag Stonehoof <Journeyman Blacksmith>
|
||||
DELETE FROM `npc_trainer` WHERE `ID`=10278;
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`) VALUES (10278, -310000);
|
||||
|
||||
-- Kray <Journeyman Alchemist>
|
||||
DELETE FROM `npc_trainer` WHERE `ID`=11047;
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`) VALUES (11047, -300000);
|
||||
|
||||
-- Vhan <Journeyman Tailor>
|
||||
DELETE FROM `npc_trainer` WHERE `ID`=11051;
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`) VALUES (11051, -410000);
|
||||
|
||||
-- Mot Dawnstrider <Journeyman Enchanter>
|
||||
DELETE FROM `npc_trainer` WHERE `ID`=11071;
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`) VALUES (11071, -330000);
|
||||
|
||||
-- Tarn <Expert Leatherworker>
|
||||
DELETE FROM `npc_trainer` WHERE `ID`=11084;
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`) VALUES (11084, -380000);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`) VALUES (11084, -380001);
|
||||
|
||||
-- Kurm Stonehoof <Mining Supplier>
|
||||
DELETE FROM `npc_vendor` WHERE `entry`=3002 AND `item` IN (20815, 20824);
|
||||
|
||||
-- Fyr Mistrunner <Bread Vendor>
|
||||
DELETE FROM `npc_vendor` WHERE `entry`=3003 AND `item` IN (27855, 33449, 35950);
|
||||
|
||||
-- Mahu <Leatherworking & Tailoring Supplies>
|
||||
DELETE FROM `npc_vendor` WHERE `entry`=3005 AND `item`=38426;
|
||||
|
||||
-- Nida Winterhoof <Herbalism Supplier>
|
||||
DELETE FROM `npc_vendor` WHERE `entry`=3014 AND `item`=40411;
|
||||
|
||||
-- Kuna Thunderhorn <Bowyer & Fletching Goods>
|
||||
DELETE FROM `npc_vendor` WHERE `entry`=3015 AND `item`=28053;
|
||||
|
||||
-- Nata Dawnstrider <Enchanting Supplies>
|
||||
DELETE FROM `npc_vendor` WHERE `entry`=3012 AND `item`=6342;
|
||||
INSERT INTO `npc_vendor` (`entry`, `item`, `maxcount`, `incrtime`) VALUES (3012, 6342, 1, 7200);
|
||||
|
||||
-- Kaga Mistrunner <Meat Vendor>
|
||||
DELETE FROM `npc_vendor` WHERE `entry`=3025 AND `item` IN (27854, 33454, 35953);
|
||||
|
||||
-- Naal Mistrunner <Cooking Supplier>
|
||||
DELETE FROM `npc_vendor` WHERE `entry`=3027 AND `item`=30817;
|
||||
|
||||
-- Thrumn <Tabard Vendor>
|
||||
DELETE FROM `npc_vendor` WHERE `entry`=5189 AND `item` IN (15197, 15199, 19031, 19505, 24004, 31773, 31775, 31776, 31777, 31778, 31779, 31780, 31781, 31804, 32445, 32828, 35221);
|
||||
|
||||
-- Innkeeper Pala <Innkeeper>
|
||||
DELETE FROM `npc_vendor` WHERE `entry`=6746 AND `item` IN (27857, 28399, 33443, 33444, 33445, 35952, 35954);
|
||||
|
||||
-- Chepi <Reagent Vendor>
|
||||
DELETE FROM `npc_vendor` WHERE `entry`=8361 AND `item` IN (22147, 22148, 37201, 44605, 44614, 44615);
|
||||
|
||||
221
sql/world/base/zone_tirisfal_glades.sql
Normal file
221
sql/world/base/zone_tirisfal_glades.sql
Normal file
@@ -0,0 +1,221 @@
|
||||
|
||||
-- Undertaker Mordo
|
||||
DELETE FROM `creature` WHERE `id1`=1568;
|
||||
INSERT INTO `creature` (`id1`, `map`, `position_x`, `position_y`, `position_z`, `orientation`, `spawntimesecs`) VALUES (1568, 0, 1678.99, 1667.86, 135.855, 3.76991, 300);
|
||||
|
||||
-- Piercing the Veil (Warlock)
|
||||
DELETE FROM `creature_questender` WHERE `id`=5667 AND `quest`=1470;
|
||||
INSERT INTO `creature_questender` (`id`, `quest`) VALUES (5667, 1470);
|
||||
|
||||
-- Piercing the Veil (Warlock)
|
||||
DELETE FROM `creature_queststarter` WHERE `id`=5667 AND `quest`=1470;
|
||||
INSERT INTO `creature_queststarter` (`id`, `quest`) VALUES (5667, 1470);
|
||||
|
||||
-- Wretched Zombie
|
||||
UPDATE `creature_template` SET `name`='Wretched Zombie' WHERE `entry`=1502;
|
||||
|
||||
-- Night Web Spider
|
||||
UPDATE `creature_template` SET `faction`=22 WHERE `entry`=1505;
|
||||
|
||||
-- Scarlet Convert
|
||||
UPDATE `creature_template` SET `faction`=67 WHERE `entry`=1506;
|
||||
|
||||
-- Scarlet Initiate
|
||||
UPDATE `creature_template` SET `faction`=67 WHERE `entry`=1507;
|
||||
|
||||
-- Meven Korgal
|
||||
UPDATE `creature_template` SET `faction`=67 WHERE `entry`=1667;
|
||||
|
||||
-- Night Web Matriarch
|
||||
UPDATE `creature_template` SET `faction`=22 WHERE `entry`=1688;
|
||||
|
||||
-- Deathguard Randolph
|
||||
UPDATE `creature_template` SET `minlevel`=55, `maxlevel`=55 WHERE `entry`=1736;
|
||||
|
||||
-- Deathguard Oliver
|
||||
UPDATE `creature_template` SET `minlevel`=55, `maxlevel`=55 WHERE `entry`=1737;
|
||||
|
||||
-- Deathguard Phillip
|
||||
UPDATE `creature_template` SET `minlevel`=55, `maxlevel`=55 WHERE `entry`=1739;
|
||||
|
||||
-- Deathguard Bartrand
|
||||
UPDATE `creature_template` SET `minlevel`=55, `maxlevel`=55 WHERE `entry`=1741;
|
||||
|
||||
-- Faruza <Apprentice Herbalist>
|
||||
UPDATE `creature_template` SET `subname`='Apprentice Herbalist' WHERE `entry`=2114;
|
||||
|
||||
-- Carolai Anise <Journeyman Alchemist>
|
||||
UPDATE `creature_template` SET `subname`='Journeyman Alchemist' WHERE `entry`=2132;
|
||||
|
||||
-- Hin Denburg <Zeppelin Master>
|
||||
UPDATE `creature_template` SET `subname`='Zeppelin Master' WHERE `entry`=3150;
|
||||
|
||||
-- Shelene Rhobart <Journeyman Leatherworker>
|
||||
UPDATE `creature_template` SET `subname`='Journeyman Leatherworker' WHERE `entry`=3549;
|
||||
|
||||
-- Scarlet Preserver
|
||||
UPDATE `creature_template` SET `rank`=1 WHERE `entry`=4280;
|
||||
|
||||
-- Scarlet Scout
|
||||
UPDATE `creature_template` SET `rank`=1 WHERE `entry`=4281;
|
||||
|
||||
-- Scarlet Magician
|
||||
UPDATE `creature_template` SET `rank`=1 WHERE `entry`=4282;
|
||||
|
||||
-- Scarlet Sentry
|
||||
UPDATE `creature_template` SET `rank`=1 WHERE `entry`=4283;
|
||||
|
||||
-- Scarlet Augur
|
||||
UPDATE `creature_template` SET `rank`=1 WHERE `entry`=4284;
|
||||
|
||||
-- Scarlet Disciple
|
||||
UPDATE `creature_template` SET `rank`=1 WHERE `entry`=4285;
|
||||
|
||||
-- Clyde Kellen <Fisherman>
|
||||
UPDATE `creature_template` SET `subname`='Fisherman' WHERE `entry`=5690;
|
||||
|
||||
-- Vance Undergloom <Journeyman Enchanter>
|
||||
UPDATE `creature_template` SET `subname`='Journeyman Enchanter' WHERE `entry`=5695;
|
||||
|
||||
-- Kayla Smithe <Demon Trainer>
|
||||
UPDATE `creature_template` SET `subname`='Demon Trainer' WHERE `entry`=5749;
|
||||
|
||||
-- Gina Lang <Demon Trainer>
|
||||
UPDATE `creature_template` SET `subname`='Demon Trainer' WHERE `entry`=5750;
|
||||
|
||||
-- Rand Rhobart <Skinner>
|
||||
UPDATE `creature_template` SET `subname`='Skinner' WHERE `entry`=6289;
|
||||
|
||||
-- Deathguard Elite
|
||||
UPDATE `creature_template` SET `minlevel`=55, `maxlevel`=55 WHERE `entry`=7980;
|
||||
|
||||
-- Zapetta <Zeppelin Master>
|
||||
UPDATE `creature_template` SET `subname`='Zeppelin Master' WHERE `entry`=9566;
|
||||
|
||||
-- Lieutenant Sanders
|
||||
UPDATE `creature_template` SET `faction`=67 WHERE `entry`=13158;
|
||||
|
||||
-- Faruza <Apprentice Herbalist>
|
||||
DELETE FROM `npc_trainer` WHERE `ID`=2114;
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`) VALUES (2114, -370000);
|
||||
|
||||
-- Carolai Anise <Journeyman Alchemist>
|
||||
DELETE FROM `npc_trainer` WHERE `ID`=2132;
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`) VALUES (2132, -300000);
|
||||
|
||||
-- Shelene Rhobart <Journeyman Leatherworker>
|
||||
DELETE FROM `npc_trainer` WHERE `ID`=3549;
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`) VALUES (3549, -380000);
|
||||
|
||||
-- Velma Warnam <Riding Trainer>
|
||||
DELETE FROM `npc_trainer` WHERE `ID`=4773;
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`) VALUES (4773, -450000);
|
||||
|
||||
-- Nurse Neela <First Aid Trainer>
|
||||
DELETE FROM `npc_trainer` WHERE `ID`=5759;
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`) VALUES (5759, -350000);
|
||||
|
||||
-- Clyde Kellen <Fisherman>
|
||||
DELETE FROM `npc_trainer` WHERE `ID`=5690;
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`) VALUES (5690, -360000);
|
||||
|
||||
-- Vance Undergloom <Journeyman Enchanter>
|
||||
DELETE FROM `npc_trainer` WHERE `ID`=5695;
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`) VALUES (5695, -330000);
|
||||
|
||||
-- Rand Rhobart <Skinner>
|
||||
DELETE FROM `npc_trainer` WHERE `ID`=6289;
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`) VALUES (6289, -400000);
|
||||
|
||||
-- Abigail Shiel <Trade Supplies>
|
||||
DELETE FROM `npc_vendor` WHERE `entry`=2118 AND `item` IN (10648, 30817, 39354);
|
||||
|
||||
-- Selina Weston <Alchemy & Herbalism Supplies>
|
||||
DELETE FROM `npc_vendor` WHERE `entry`=3548 AND `item`=40411;
|
||||
|
||||
-- Zachariah Post <Undead Horse Merchant>
|
||||
DELETE FROM `npc_vendor` WHERE `entry`=4731 AND `item` IN (46308, 47101);
|
||||
|
||||
-- A Rogue's Deal
|
||||
UPDATE `quest_template` SET `Flags`=0 WHERE `ID`=8;
|
||||
|
||||
-- Rude Awakening
|
||||
UPDATE `quest_template` SET `Flags`=8, `QuestDescription`='About time you woke up. We were ready to toss you into the fire with the others, but it looks like you made it.$b$bI am Mordo, the caretaker of the crypt of Deathknell. And you are the Lich King\'s slave no more.$b$bSpeak with Shadow Priest Sarvis in the chapel at the base of the hill, he will tell you more of what you must know.' WHERE `ID`=363;
|
||||
|
||||
-- The Mindless Ones
|
||||
UPDATE `quest_template` SET `Flags`=8, `LogDescription`='Shadow Priest Sarvis wants you to kill 8 Mindless Zombies and 8 Wretched Zombies.', `RequiredNpcOrGoCount1`=8, `RequiredNpcOrGoCount2`=8 WHERE `ID`=364;
|
||||
|
||||
-- The Damned
|
||||
UPDATE `quest_template` SET `Flags`=8 WHERE `ID`=376;
|
||||
|
||||
-- Night Web's Hollow
|
||||
UPDATE `quest_template` SET `Flags`=8, `LogDescription`='Executor Arren wants you to kill 10 Young Night Web Spiders and 8 Night Web Spiders.', `RequiredNpcOrGoCount1`=10, `RequiredNpcOrGoCount2`=8 WHERE `ID`=380;
|
||||
|
||||
-- The Scarlet Crusade
|
||||
UPDATE `quest_template` SET `Flags`=8 WHERE `ID`=381;
|
||||
|
||||
-- The Red Messenger
|
||||
UPDATE `quest_template` SET `Flags`=8 WHERE `ID`=382;
|
||||
|
||||
-- Vital Intelligence
|
||||
UPDATE `quest_template` SET `Flags`=0 WHERE `ID`=383;
|
||||
|
||||
-- Rattling the Rattlecages
|
||||
UPDATE `quest_template` SET `Flags`=8, `LogDescription`='Kill 12 Rattlecage Skeletons, and then return to Shadow Priest Sarvis in Deathknell when you are done.', `RequiredNpcOrGoCount1`=12 WHERE `ID`=3901;
|
||||
|
||||
-- Scavenging Deathknell
|
||||
UPDATE `quest_template` SET `Flags`=8 WHERE `ID`=3902;
|
||||
|
||||
-- Marla's Last Wish
|
||||
UPDATE `quest_template` SET `Flags`=8 WHERE `ID`=6395;
|
||||
|
||||
-- A Rogue's Deal
|
||||
UPDATE `quest_template_addon` SET `SpecialFlags`=0 WHERE `ID`=8;
|
||||
|
||||
-- Rude Awakening
|
||||
UPDATE `quest_template_addon` SET `SpecialFlags`=0 WHERE `ID`=363;
|
||||
|
||||
-- The Mindless Ones
|
||||
UPDATE `quest_template_addon` SET `SpecialFlags`=0 WHERE `ID`=364;
|
||||
|
||||
-- Proof of Demise
|
||||
UPDATE `quest_template_addon` SET `PrevQuestID`=427 WHERE `ID`=374;
|
||||
|
||||
-- The Damned
|
||||
UPDATE `quest_template_addon` SET `SpecialFlags`=0 WHERE `ID`=376;
|
||||
|
||||
-- Night Web's Hollow
|
||||
UPDATE `quest_template_addon` SET `SpecialFlags`=0 WHERE `ID`=380;
|
||||
|
||||
-- The Scarlet Crusade
|
||||
UPDATE `quest_template_addon` SET `SpecialFlags`=0 WHERE `ID`=381;
|
||||
|
||||
-- The Red Messenger
|
||||
UPDATE `quest_template_addon` SET `SpecialFlags`=0 WHERE `ID`=382;
|
||||
|
||||
-- Vital Intelligence
|
||||
UPDATE `quest_template_addon` SET `SpecialFlags`=0 WHERE `ID`=383;
|
||||
|
||||
-- Simple Scroll
|
||||
UPDATE `quest_template_addon` SET `SpecialFlags`=0 WHERE `ID`=3095;
|
||||
|
||||
-- Encrypted Scroll
|
||||
UPDATE `quest_template_addon` SET `SpecialFlags`=0 WHERE `ID`=3096;
|
||||
|
||||
-- Hallowed Scroll
|
||||
UPDATE `quest_template_addon` SET `SpecialFlags`=0 WHERE `ID`=3097;
|
||||
|
||||
-- Glyphic Scroll
|
||||
UPDATE `quest_template_addon` SET `SpecialFlags`=0 WHERE `ID`=3098;
|
||||
|
||||
-- Tainted Scroll
|
||||
UPDATE `quest_template_addon` SET `SpecialFlags`=0 WHERE `ID`=3099;
|
||||
|
||||
-- Rattling the Rattlecages
|
||||
UPDATE `quest_template_addon` SET `SpecialFlags`=0 WHERE `ID`=3901;
|
||||
|
||||
-- Scavenging Deathknell
|
||||
UPDATE `quest_template_addon` SET `SpecialFlags`=0 WHERE `ID`=3902;
|
||||
|
||||
-- Marla's Last Wish
|
||||
UPDATE `quest_template_addon` SET `SpecialFlags`=0 WHERE `ID`=6395;
|
||||
3
sql/world/base/zone_undercity.sql
Normal file
3
sql/world/base/zone_undercity.sql
Normal file
@@ -0,0 +1,3 @@
|
||||
-- Summon Felsteed (Warlock)
|
||||
DELETE FROM `creature_queststarter` WHERE `id`=4563 AND `quest`=4489;
|
||||
INSERT INTO `creature_queststarter` (`id`, `quest`) VALUES (4563, 4489);
|
||||
14
sql/world/base/zone_westfall.sql
Normal file
14
sql/world/base/zone_westfall.sql
Normal file
@@ -0,0 +1,14 @@
|
||||
-- Defias Messenger
|
||||
UPDATE `creature_template` SET `minlevel`=14, `maxlevel`=15 WHERE `entry`=550;
|
||||
|
||||
-- Christopher Hewen <General Trade Goods Vendor>
|
||||
UPDATE `creature_template` SET `subname`='General Trade Goods Vendor' WHERE `entry`=8934;
|
||||
|
||||
-- Vol'jin <King of Darkspear Trolls>
|
||||
UPDATE `creature_template` SET `subname`='King of Darkspear Trolls', `minlevel`=60, `maxlevel`=60 WHERE `entry`=8934;
|
||||
|
||||
-- Gina MacGregor <Trade Supplies>
|
||||
DELETE FROM `npc_vendor` WHERE `entry`=843 AND `item`=39354;
|
||||
|
||||
-- Christopher Hewen <General Trade Goods Vendor>
|
||||
DELETE FROM `npc_vendor` WHERE `entry`=8934 AND `item` IN (10648, 14341, 18256, 30817, 39354);
|
||||
Reference in New Issue
Block a user