60 lines
1.5 KiB
Plaintext
60 lines
1.5 KiB
Plaintext
|
///::///////////////////////////////////////////////
|
||
|
//:: Regenerate
|
||
|
//:: NW_S0_Regen
|
||
|
//:: Copyright (c) 2001 Bioware Corp.
|
||
|
//:://////////////////////////////////////////////
|
||
|
/*
|
||
|
Grants the selected target 6 HP of regeneration
|
||
|
every round.
|
||
|
*/
|
||
|
//:://////////////////////////////////////////////
|
||
|
//:: Created By: Preston Watamaniuk
|
||
|
//:: Created On: Oct 22, 2001
|
||
|
//:://////////////////////////////////////////////
|
||
|
|
||
|
#include "x2_inc_spellhook"
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
|
||
|
/*
|
||
|
Spellcast Hook Code
|
||
|
Added 2003-06-23 by GeorgZ
|
||
|
If you want to make changes to all spells,
|
||
|
check x2_inc_spellhook.nss to find out more
|
||
|
|
||
|
*/
|
||
|
|
||
|
if (!X2PreSpellCastCode())
|
||
|
{
|
||
|
// If code within the PreSpellCastHook (i.e. UMD) reports FALSE, do not run this spell
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
// End of Spell Cast Hook
|
||
|
|
||
|
|
||
|
//Declare major variables
|
||
|
object oTarget = GetSpellTargetObject();
|
||
|
effect eRegen = EffectRegenerate(6, 6.0);
|
||
|
effect eVis = EffectVisualEffect(VFX_IMP_HEAD_NATURE);
|
||
|
effect eDur = EffectVisualEffect(VFX_DUR_CESSATE_POSITIVE);
|
||
|
|
||
|
effect eLink = EffectLinkEffects(eRegen, eDur);
|
||
|
|
||
|
|
||
|
int nMeta = GetMetaMagicFeat();
|
||
|
int nLevel = GetCasterLevel(OBJECT_SELF);
|
||
|
//Meta-Magic Checks
|
||
|
if (nMeta == METAMAGIC_EXTEND)
|
||
|
{
|
||
|
nLevel *= 2;
|
||
|
|
||
|
}
|
||
|
SignalEvent(oTarget, EventSpellCastAt(OBJECT_SELF, SPELL_REGENERATE, FALSE));
|
||
|
//Apply effects and VFX
|
||
|
ApplyEffectToObject(DURATION_TYPE_TEMPORARY, eLink, oTarget, RoundsToSeconds(nLevel));
|
||
|
ApplyEffectToObject(DURATION_TYPE_INSTANT, eVis, oTarget);
|
||
|
|
||
|
}
|