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

Added formulas for base EXP gain and chain experience Added basic scripts for most player abilities and effects Added stat gains for some abilities Changed status flags Fixed bug with player death Fixed bug where auto attacks didnt work when not locked on Added traits
8 lines
359 B
Lua
8 lines
359 B
Lua
--Bloodletter2 is the uncomboed version of Bloodletter. It doesn't deal any additional damage when it falls off but has the same tick damage
|
|
function onGain(owner, effect)
|
|
owner.SubtractMod(modifiersGlobal.MagicEvasion, effect.GetMagnitude());
|
|
end
|
|
|
|
function onLose(owner, effect)
|
|
owner.AddMod(modifiersGlobal.MagicEvasion, effect.GetMagnitude());
|
|
end
|