mirror of
https://github.com/emagi/eq2emu-content
synced 2026-08-12 20:23:03 -04:00
22 lines
436 B
Lua
Executable file
22 lines
436 B
Lua
Executable file
--[[
|
|
Script Name : SpawnScripts/Caves/analabasterbehemoth.lua
|
|
Script Purpose : an alabaster behemoth
|
|
Script Author : LordPazuzu
|
|
Script Date : 10-8-2022
|
|
Script Notes :
|
|
--]]
|
|
dofile("SpawnScripts/Generic/MonsterCallouts/BaseGolem1.lua")
|
|
require "SpawnScripts/Generic/NPCModule"
|
|
|
|
function spawn(NPC, Spawn)
|
|
NPCModule(NPC, Spawn)
|
|
SetSpawnAnimation(NPC, 13016)
|
|
end
|
|
|
|
function respawn(NPC)
|
|
spawn(NPC)
|
|
end
|
|
|
|
|
|
|
|
|