mirror of
https://github.com/ErikasKontenis/SabrehavenServer.git
synced 2025-11-01 04:16:24 +01:00
8.0 spells from nostalrius
This commit is contained in:
18
data/spells/scripts/attack/whirlwind throw.lua
Normal file
18
data/spells/scripts/attack/whirlwind throw.lua
Normal file
@@ -0,0 +1,18 @@
|
||||
local combat = Combat()
|
||||
combat:setParameter(COMBAT_PARAM_TYPE, COMBAT_PHYSICALDAMAGE)
|
||||
combat:setParameter(COMBAT_PARAM_EFFECT, CONST_ME_HITAREA)
|
||||
combat:setParameter(COMBAT_PARAM_DISTANCEEFFECT, CONST_ANI_WEAPONTYPE)
|
||||
combat:setParameter(COMBAT_PARAM_BLOCKARMOR, 1)
|
||||
combat:setParameter(COMBAT_PARAM_USECHARGES, 1)
|
||||
|
||||
function onGetFormulaValues(player, skill, attack, factor)
|
||||
local skillTotal = skill * attack
|
||||
local levelTotal = player:getLevel() / 5
|
||||
return -(((skillTotal * 0.01) + 1) + (levelTotal)), -(((skillTotal * 0.03) + 6) + (levelTotal))
|
||||
end
|
||||
|
||||
combat:setCallback(CALLBACK_PARAM_SKILLVALUE, "onGetFormulaValues")
|
||||
|
||||
function onCastSpell(creature, var)
|
||||
return combat:execute(creature, var)
|
||||
end
|
||||
Reference in New Issue
Block a user