mirror of
https://github.com/emagi/eq2emu-content
synced 2026-08-12 20:23:03 -04:00
13 lines
327 B
Lua
13 lines
327 B
Lua
--[[
|
|
Script Name : Spells/Commoner/Pounce.lua
|
|
Script Author : lordpazuzu
|
|
Script Date : 2025.05.28 09:05:52
|
|
Script Purpose :
|
|
:
|
|
--]]
|
|
|
|
function cast(Caster, Target, MinVal, MaxVal)
|
|
SpellDamage(Target, 0, MinVal, MaxVal)
|
|
CastSpell(Target, 5001, GetSpellTier())
|
|
|
|
end
|