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

New scripts for commands and effects that use the new function signatures and work with the new statuseffectcontainer
19 lines
No EOL
498 B
Lua
19 lines
No EOL
498 B
Lua
require("global");
|
|
require("ability");
|
|
|
|
function onAbilityPrepare(caster, target, ability)
|
|
return 0;
|
|
end;
|
|
|
|
function onAbilityStart(caster, target, ability)
|
|
--27245: Swift Chameleon
|
|
if caster.HasTrait(27245) then
|
|
ability.recastTimeMs = ability.recastTimeMs - 60000;
|
|
end
|
|
return 0;
|
|
end;
|
|
|
|
function onSkillFinish(caster, target, skill, action, actionContainer)
|
|
--Need a way to get all targets with hate for player
|
|
--target.hateContainer.UpdateHate(caster, -840);
|
|
end; |