mirror of
https://github.com/otland/forgottenserver
synced 2026-08-15 16:32:07 -04:00
* Move runes to dedicated folder * Redirect old XML and lib folder to new location * Drop unused custom spells
20 lines
477 B
Lua
20 lines
477 B
Lua
local spell = Spell(SPELL_INSTANT)
|
|
|
|
function spell.onCastSpell(creature, variant)
|
|
return creature:conjureItem(0, 23839, 3, CONST_ME_MAGIC_BLUE)
|
|
end
|
|
|
|
spell:group("support")
|
|
spell:id(176)
|
|
spell:name("Arrow Call")
|
|
spell:words("exevo infir con")
|
|
spell:level(1)
|
|
spell:mana(10)
|
|
spell:soul(1)
|
|
spell:isPremium(true)
|
|
spell:isAggressive(false)
|
|
spell:isSelfTarget(true)
|
|
spell:cooldown(2000)
|
|
spell:groupCooldown(2000)
|
|
spell:vocation("paladin;true", "royal paladin;true")
|
|
spell:register()
|