mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-05-20 08:26:59 -04:00
Updated Map Server namespace. Moved all other data folders (www and sql) to data folder. Renamed boot name to Project Meteor.
This commit is contained in:
12
Data/scripts/effects/cleric_stance.lua
Normal file
12
Data/scripts/effects/cleric_stance.lua
Normal file
@@ -0,0 +1,12 @@
|
||||
require("modifiers")
|
||||
|
||||
function onGain(owner, effect, actionContainer)
|
||||
--Multiples Attack Magic Potency by 1.2 and Healing Magic Potency by 0.8
|
||||
owner.MultiplyMod(modifiersGlobal.AttackMagicPotency, 1.2);
|
||||
owner.MultiplyMod(modifiersGlobal.HealingMagicPotency, 0.8);
|
||||
end;
|
||||
|
||||
function onLose(owner, effect, actionContainer)
|
||||
owner.DivideMod(modifiersGlobal.AttackMagicPotency, 1.2);
|
||||
owner.DivideMod(modifiersGlobal.HealingMagicPotency, 0.8);
|
||||
end;
|
||||
Reference in New Issue
Block a user