//:://///////////////////////////////////////////// //:: Wall of Fire: On Enter //:: 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. object oTarget = GetEnteringObject(); 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); 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_INSTANT, eVis, oTarget); } } } }