mirror of
https://github.com/opentibiabr/canary
synced 2026-08-16 06:26:09 -04:00
30 lines
773 B
Lua
30 lines
773 B
Lua
local combat = Combat()
|
|
combat:setParameter(COMBAT_PARAM_EFFECT, CONST_ME_MAGIC_BLUE)
|
|
combat:setArea(createCombatArea(AREA_SQUARE1X1))
|
|
|
|
function onTargetCreature(creature, target)
|
|
return doChallengeCreature(creature, target)
|
|
end
|
|
|
|
combat:setCallback(CALLBACK_PARAM_TARGETCREATURE, "onTargetCreature")
|
|
|
|
local spell = Spell("instant")
|
|
|
|
function spell.onCastSpell(creature, variant)
|
|
return combat:execute(creature, variant)
|
|
end
|
|
|
|
spell:name("Challenge")
|
|
spell:words("exeta res")
|
|
spell:group("support")
|
|
spell:vocation("elite knight;true")
|
|
spell:castSound(SOUND_EFFECT_TYPE_SPELL_CHALLENGE)
|
|
spell:id(93)
|
|
spell:cooldown(2 * 1000)
|
|
spell:groupCooldown(2 * 1000)
|
|
spell:level(20)
|
|
spell:mana(30)
|
|
spell:isAggressive(false)
|
|
spell:isPremium(true)
|
|
spell:needLearn(false)
|
|
spell:register()
|