2018-02-15 13:20:46 -06:00
|
|
|
require("global");
|
|
|
|
require("magic");
|
2019-05-29 23:05:40 -07:00
|
|
|
require("modifiers")
|
2018-02-15 13:20:46 -06:00
|
|
|
|
|
|
|
function onMagicPrepare(caster, target, spell)
|
|
|
|
return 0;
|
|
|
|
end;
|
|
|
|
|
|
|
|
function onMagicStart(caster, target, spell)
|
|
|
|
return 0;
|
|
|
|
end;
|
|
|
|
|
2018-04-18 16:06:41 -05:00
|
|
|
--http://forum.square-enix.com/ffxiv/threads/41900-White-Mage-A-Guide
|
|
|
|
function onSkillFinish(caster, target, skill, action, actionContainer)
|
|
|
|
|
|
|
|
local hpPerPoint = 1.34;--? 1.33?
|
|
|
|
|
|
|
|
--27364: Enhanced Stoneskin: Increases efficacy of Stoneskin
|
|
|
|
if caster.HasTrait(27364) then
|
|
|
|
hpPerPoint = 1.96;
|
|
|
|
end
|
|
|
|
|
2019-05-29 23:05:40 -07:00
|
|
|
skill.statusMagnitude = hpPerPoint * caster.GetMod(modifiersGlobal.EnhancementMagicPotency);
|
2018-04-18 16:06:41 -05:00
|
|
|
|
|
|
|
--DoAction handles rates, buffs, dealing damage
|
|
|
|
action.DoAction(caster, target, skill, actionContainer);
|
2018-02-15 13:20:46 -06:00
|
|
|
end;
|