Ancordia_PRC8/_removed/nw_s0_wallfirec.nss
2024-06-14 00:06:09 -04:00

72 lines
2.7 KiB
Plaintext

//::///////////////////////////////////////////////
//:: Wall of Fire: Heartbeat
//:: NW_S0_WallFireA.nss
//:: Copyright (c) 2001 Bioware Corp.
//:://////////////////////////////////////////////
/*
Person within the AoE take 4d6 fire damage
per round.
*/
//:://////////////////////////////////////////////
//:: Created By: Preston Watamaniuk
//:: Created On: May 17, 2001
//:://////////////////////////////////////////////
#include "70_inc_spells"
#include "x0_i0_spells"
#include "x2_inc_spellhook"
void main()
{
//Declare major variables
aoesDeclareMajorVariables();
int nDamage;
effect eDam;
//Declare and assign personal impact visual effect.
effect eVis = EffectVisualEffect(VFX_IMP_FLAME_M);
//Capture the first target object in the shape.
//--------------------------------------------------------------------------
// GZ 2003-Oct-15
// When the caster is no longer there, all functions calling
// GetAreaOfEffectCreator will fail. Its better to remove the barrier then
//--------------------------------------------------------------------------
if (!GetIsObjectValid(aoe.Creator))
{
DestroyObject(aoe.AOE);
return;
}
object oTarget = GetFirstInPersistentObject(aoe.AOE,OBJECT_TYPE_CREATURE | OBJECT_TYPE_DOOR | OBJECT_TYPE_PLACEABLE);
//Declare the spell shape, size and the location.
while(GetIsObjectValid(oTarget))
{
if(spellsIsTarget(oTarget, SPELL_TARGET_STANDARDHOSTILE, aoe.Creator))
{
//Fire cast spell at event for the specified target
SignalEvent(oTarget, EventSpellCastAt(aoe.AOE, spell.Id));
//Make SR check, and appropriate saving throw(s).
if(!MyResistSpell(aoe.Creator, oTarget))
{
//Roll damage.
int nDice = GetCasterLevel(aoe.Creator) / 5;
if (nDice < 4) nDice = 4;
if (nDice > 7) nDice = 7;
nDamage = MaximizeOrEmpower(6,nDice,spell.Meta);
//Enter Metamagic conditions
nDamage = GetReflexAdjustedDamage(nDamage, oTarget, spell.DC, SAVING_THROW_TYPE_FIRE, aoe.Creator);
if(nDamage > 0)
{
// Apply effects to the currently selected target.
eDam = EffectDamage(nDamage, DAMAGE_TYPE_FIRE);
ApplyEffectToObject(DURATION_TYPE_INSTANT, eDam, oTarget);
ApplyEffectToObject(DURATION_TYPE_TEMPORARY, eVis, oTarget, 1.0);
}
}
}
//Select the next target within the spell shape.
oTarget = GetNextInPersistentObject(aoe.AOE,OBJECT_TYPE_CREATURE | OBJECT_TYPE_DOOR | OBJECT_TYPE_PLACEABLE);
}
}