mirror of
https://github.com/emagi/eq2emu-content
synced 2026-08-12 20:23:03 -04:00
15 lines
306 B
Lua
Executable file
15 lines
306 B
Lua
Executable file
--[[
|
|
Script Name : Spells/Commoner/Swipe.lua
|
|
Script Author : LordPazuzu
|
|
Script Date : 2023.03.31 02:03:14
|
|
Script Purpose :
|
|
:
|
|
--]]
|
|
|
|
|
|
function cast(Caster, Target, DmgType, MinDmg, MaxDmg)
|
|
|
|
SpellDamage(Target, DmgType, MinDmg, MaxDmg)
|
|
|
|
end
|
|
|