Skip to content

Commit

Permalink
add scaling to naxx40 scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
sogladev committed Jun 11, 2024
1 parent 678e8df commit c3e58a5
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions src/Naxxramas/sql/world/naxx40_creatures.sql
Original file line number Diff line number Diff line change
Expand Up @@ -5717,3 +5717,19 @@ DELETE FROM `smart_scripts` WHERE (`entryorguid` IN (351033, 351034)) AND (`sour
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`, `event_param6`, `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
(351033, 0, 0, 0, 76, 0, 100, 0, 0, 181202, 54, 1500, 0, 0, 41, 200, 10, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 'Diseased Maggot - On Distance 54y To GameObject - Despawn In 200 ms'),
(351034, 0, 0, 0, 76, 0, 100, 0, 0, 181202, 54, 1500, 0, 0, 41, 200, 10, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 'Rotten Maggot - On Distance 54y To GameObject - Despawn In 200 ms');

-- Scaling
SET @DAMAGE_MULTIPLIER:= 0.69;
SET @HEALTH_MULTIPLIER:= 1.00;
SET @ARMOR_MULTIPLIER:= 1.00;

UPDATE `creature_template`
SET
`DamageModifier` = `DamageModifier` * @DAMAGE_MULTIPLIER,
`HealthModifier` = `HealthModifier` * @HEALTH_MULTIPLIER,
`ArmorModifier` = `ArmorModifier` * @ARMOR_MULTIPLIER
WHERE `entry` IN (
SELECT `id1`
FROM `creature`
WHERE `map` = 533 AND `spawnMask` = 4
);

0 comments on commit c3e58a5

Please sign in to comment.