52 lines
1.8 KiB
Plaintext
52 lines
1.8 KiB
Plaintext
//::///////////////////////////////////////////////
|
|
//:: Aura of Electricity on Heartbeat
|
|
//:: NW_S1_AuraElecC.nss
|
|
//:: Copyright (c) 2001 Bioware Corp.
|
|
//:://////////////////////////////////////////////
|
|
/*
|
|
Prolonged exposure to the aura of the creature
|
|
causes electrical damage to all within the aura.
|
|
*/
|
|
//:://////////////////////////////////////////////
|
|
//:: Created By: Preston Watamaniuk
|
|
//:: Created On: May 25, 2001
|
|
//:://////////////////////////////////////////////
|
|
#include "NW_I0_SPELLS"
|
|
|
|
void main()
|
|
{
|
|
//Declare major variables
|
|
int nHD = GetHitDice(GetAreaOfEffectCreator());
|
|
nHD = nHD/3+1;
|
|
int nDC = 10 + nHD/3;
|
|
int nDamage;
|
|
effect eDam;
|
|
effect eVis = EffectVisualEffect(VFX_IMP_LIGHTNING_S);
|
|
//Get first target in spell area
|
|
object oTarget = GetFirstInPersistentObject();
|
|
while (GetIsObjectValid(oTarget))
|
|
{
|
|
if(GetIsEnemy(oTarget, GetAreaOfEffectCreator()))
|
|
{
|
|
nDamage = d4(nHD);
|
|
//Fire cast spell at event for the specified target
|
|
SignalEvent(oTarget, EventSpellCastAt(OBJECT_SELF, SPELLABILITY_AURA_ELECTRICITY));
|
|
//Make a saving throw check
|
|
if(MySavingThrow(SAVING_THROW_FORT, oTarget, nDC, SAVING_THROW_TYPE_ELECTRICITY))
|
|
{
|
|
nDamage = nDamage / 2;
|
|
}
|
|
eDam = EffectDamage(nDamage, DAMAGE_TYPE_ELECTRICAL);
|
|
//Apply the VFX impact and effects
|
|
if (GetTag(oTarget)=="cfleshgolem")
|
|
{ // heal
|
|
eDam=EffectHeal(nDamage/3);
|
|
} // heal
|
|
ApplyEffectToObject(DURATION_TYPE_INSTANT, eDam, oTarget);
|
|
ApplyEffectToObject(DURATION_TYPE_INSTANT, eVis, oTarget);
|
|
}
|
|
//Get next target in spell area
|
|
oTarget = GetNextInPersistentObject();
|
|
}
|
|
}
|