bossPhases = bossPhases or {}
summonedMinionsFor = summonedMinionsFor or {}
originalSpeed = originalSpeed or {}
minionOwner = minionOwner or {}
local function findClosestCreature(position, radius)
local spectators = Game.getSpectators(position, false, false, radius, radius, radius, radius)
local closest, closestDistance = nil, math.huge
for _, spectator in ipairs(spectators) do
if spectator:isPlayer() then
local d = getDistanceBetween(position, spectator:getPosition())
if d < closestDistance then
closestDistance = d
closest = spectator
end
end
end
return closest
end
local function summonTrio(boss)
local bossId = boss:getId()
bossPhases[bossId] = { phase = 1, trioActive = true, summoned = true }
summonedMinionsFor[bossId] = {}
originalSpeed[bossId] = boss:getSpeed()
boss:changeSpeed(-originalSpeed[bossId])
local centerPos = boss:getPosition()
local spawnOffsets = {
{x = 1, y = 0, z = 0},
{x = -1, y = 0, z = 0},
{x = 0, y = 1, z = 0},
{x = 0, y = -1, z = 0}
}
local minionNames = {"Chiruku", "Koros", "Roko"}
local spawnedCount = 0
for _, off in ipairs(spawnOffsets) do
if spawnedCount >= 3 then break end
local pos = { x = centerPos.x + off.x, y = centerPos.y + off.y, z = centerPos.z }
local tile = Tile(pos)
if tile and tile:getCreatureCount() == 0 then
local minion = Game.createMonster(minionNames[spawnedCount+1], pos)
if minion then
spawnedCount = spawnedCount + 1
table.insert(summonedMinionsFor[bossId], minion:getId())
minionOwner[minion:getId()] = bossId
minion:registerEvent("BossMinionDeath")
addEvent(function(minionId)
local mCreature = Creature(minionId)
if mCreature and mCreature:isCreature() then
local enemy = findClosestCreature(mCreature:getPosition(), 10)
if enemy then
mCreature:setTarget(enemy)
end
end
end, 500, minion:getId())
end
end
end
boss:say("Chiruku, Koros and Roko have arrived!", TALKTYPE_MONSTER_SAY)
end
function onThink(creature)
if not creature or not creature:isMonster() then
return true
end
local boss = creature
local bossId = boss:getId()
if boss:getName() == "Boss Test" and not bossPhases[bossId] then
summonTrio(boss)
end
if bossPhases[bossId] and bossPhases[bossId].trioActive then
if boss:getTarget() then
boss:setTarget(nil)
end
end
return true
end
function onHealthChange(creature, attacker, primaryDamage, primaryType, secondaryDamage, secondaryType)
local bossId = creature:getId()
if bossPhases[bossId] and bossPhases[bossId].trioActive then
return 0
end
return primaryDamage
end
function onDeath(creature, corpse, killer, mostDamageKiller)
local bossId = creature:getId()
bossPhases[bossId] = nil
return true
end