mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-04-22 12:47:46 +00:00

- added magic.lua (todo: enumerate modifiers and stuff) - moved aggro handling to session position update - some cleanup
41 lines
No EOL
1,008 B
Lua
41 lines
No EOL
1,008 B
Lua
-- todo: add enums for status effects in global.lua
|
|
require("global")
|
|
|
|
magic =
|
|
{
|
|
|
|
};
|
|
|
|
--[[
|
|
modifier - Modifier.Intelligence, Modifier.Mind (see Modifier.cs)
|
|
multiplier -
|
|
]]
|
|
function magic.HandleHealingMagic(caster, target, spell, action, modifierId, multiplier, baseAmount)
|
|
potency = potency or 1.0;
|
|
healAmount = baseAmount;
|
|
|
|
-- todo: shit based on mnd
|
|
local mind = caster.GetMod(Modifier.Mind);
|
|
end;
|
|
|
|
function magic.HandleAttackMagic(caster, target, spell, action, modifierId, multiplier, baseAmount)
|
|
-- todo: actually handle this
|
|
damage = baseAmount or math.random(1,10) * 10;
|
|
|
|
return damage;
|
|
end;
|
|
|
|
function magic.HandleEvasion(caster, target, spell, action, modifierId)
|
|
|
|
return false;
|
|
end;
|
|
|
|
function magic.HandleStoneskin(caster, target, spell, action, modifierId, damage)
|
|
--[[
|
|
if target.statusEffects.HasStatusEffect(StatusEffect.Stoneskin) then
|
|
-- todo: damage reduction
|
|
return true;
|
|
end;
|
|
]]
|
|
return false;
|
|
end; |