Skip to content

Commit bd14348

Browse files
committed
[0325] Fixed rank of creature 10509 in Blackrock Spire
* Set to rare rank of creature 10509 (Jed Runewatcher) in Blackrock Spire Source: http://old.wowhead.com/npc=10509#comments * Put creatures 10509 (Jed Runewatcher) in pool as he is a rare creature and should not spawn all the time
1 parent 4ff594d commit bd14348

1 file changed

Lines changed: 17 additions & 0 deletions

File tree

updates/0325_pool_creature.sql

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
-- Set to rare rank of creature 10509 (Jed Runewatcher) in Blackrock Spire
2+
-- Source: http://old.wowhead.com/npc=10509#comments
3+
UPDATE `creature_template` SET `rank` = 2 WHERE `entry` = 10509;
4+
5+
SET @GUID := 160107;
6+
SET @JED_GUID := @GUID + 150;
7+
SET @ALTERNATE_GUID := @GUID + 22;
8+
9+
-- Put creatures 10509 (Jed Runewatcher) in pool as he is a rare creature and should not spawn all the time
10+
DELETE FROM `pool_creature` WHERE `guid` IN (@JED_GUID, @ALTERNATE_GUID);
11+
INSERT INTO `pool_creature` VALUES
12+
(@JED_GUID, 1178, 30, 'Jed Runewatcher (10509) Blackrock Spire'),
13+
(@ALTERNATE_GUID, 1178, 70, 'Alternate creature to Jed Runewatcher (10509) Blackrock Spire');
14+
15+
DELETE FROM `pool_template` WHERE `entry` = 1178;
16+
INSERT INTO `pool_template` VALUES
17+
(1178, 1, 'Jed Runewatcher (10509) Blackrock Spire');

0 commit comments

Comments
 (0)