Add files via upload

This commit is contained in:
Dinkledork
2023-03-21 03:16:58 -06:00
committed by GitHub
parent bd7b2fd4bb
commit 3e8d4a9231
4 changed files with 12 additions and 12 deletions

View File

@@ -6,11 +6,11 @@ local SPELL_EVASION = 5277
local SPELL_GOUGE = 12540
local SPELL_CAST_DEATH = 5
local function CastSinisterStrike(creature)
local function CastSinisterStrike(eventId, delay, calls, creature)
creature:CastSpell(creature:GetVictim(), SPELL_SINISTER_STRIKE, false)
end
local function CastGouge(creature)
local function CastGouge(eventId, delay, calls, creature)
creature:CastSpell(creature:GetVictim(), SPELL_GOUGE, false)
end

View File

@@ -5,11 +5,11 @@ local SPELL_BANSHEE_SCREAM = 41150
local SPELL_SHADOW_BOLT = 9613
local SPELL_CAST_DEATH = 5
local function CastShadowBolt(creature)
local function CastShadowBolt(eventId, delay, calls, creature)
creature:CastSpell(creature:GetVictim(), SPELL_SHADOW_BOLT, true)
end
local function CastBansheeScream(creature)
local function CastBansheeScream(eventId, delay, calls, creature)
creature:CastSpell(creature:GetVictim(), SPELL_BANSHEE_SCREAM, true)
end

View File

@@ -2,7 +2,7 @@ local NPC_HORDE_GUARD = 400105
local SPELL_REND = 6547
local function CastRend(creature)
local function CastRend(eventId, delay, calls, creature)
creature:CastSpell(creature:GetVictim(), SPELL_REND, true)
end

View File

@@ -2,7 +2,7 @@ local NPC_SUTURES = 400113
local SPELL_CLEAVE = 15496
local SPELL_DISEASE_CLOUD = 30122
local SPELL_ABOMINATION_SLAM = 40546
local SPELL_ABOMINATION_SLAM = 1464
local YELL_COMBAT_DIALOGUE = {
"Sutures smash!",
@@ -12,16 +12,16 @@ local YELL_COMBAT_DIALOGUE = {
"Sutures crush you!"
}
local function CastCleave(creature)
creature:CastSpell(creature:GetVictim(), SPELL_CLEAVE, false)
local function CastCleave(eventId, delay, calls, creature)
creature:CastSpell(creature:GetVictim(), SPELL_CLEAVE, true)
end
local function CastDiseaseCloud(creature)
creature:CastSpell(creature:GetVictim(), SPELL_DISEASE_CLOUD, false)
local function CastDiseaseCloud(eventId, delay, calls, creature)
creature:CastSpell(creature:GetVictim(), SPELL_DISEASE_CLOUD, true)
end
local function CastAbominationSlam(creature)
creature:CastSpell(creature:GetVictim(), SPELL_ABOMINATION_SLAM, false)
local function CastAbominationSlam(eventId, delay, calls, creature)
creature:CastSpell(creature:GetVictim(), SPELL_ABOMINATION_SLAM, true)
end
local function Sutures_OnEnterCombat(event, creature, target)