//:://///////////////////////////////////////////// //:: Slow //:: NW_S0_Slow.nss //:: Copyright (c) 2001 Bioware Corp. //::////////////////////////////////////////////// /* Character can take only one partial action per round. */ //::////////////////////////////////////////////// //:: Created By: Preston Watamaniuk //:: Created On: May 29, 2001 //::////////////////////////////////////////////// //:: VFX Pass By: Preston W, On: June 25, 2001 #include "X0_I0_SPELLS" #include "x2_inc_spellhook" #include "epicdc_inc" void main() { /* Spellcast Hook Code Added 2003-06-20 by Georg 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; effect eSlow = EffectSlow(); effect eDur = EffectVisualEffect(VFX_DUR_CESSATE_NEGATIVE); effect eLink = EffectLinkEffects(eSlow, eDur); effect eVis = EffectVisualEffect(VFX_IMP_SLOW); effect eImpact = EffectVisualEffect(VFX_FNF_LOS_NORMAL_30); int nMetaMagic = GetMetaMagicFeat(); //Determine spell duration as an integer for later conversion to Rounds, Turns or Hours. int nDuration = GetCasterLevel(OBJECT_SELF); int nLevel = nDuration; int nCount = 0; location lSpell = GetSpellTargetLocation(); //Metamagic check for extend if (nMetaMagic == METAMAGIC_EXTEND) { nDuration = nDuration *2; //Duration is +100% } ApplyEffectAtLocation(DURATION_TYPE_INSTANT, eImpact, GetSpellTargetLocation()); //Declare the spell shape, size and the location. Capture the first target object in the shape. oTarget = GetFirstObjectInShape(SHAPE_SPHERE, RADIUS_SIZE_COLOSSAL, lSpell); //Cycle through the targets within the spell shape until an invalid object is captured or the number of //targets affected is equal to the caster level. while(GetIsObjectValid(oTarget) && nCount < nLevel) { if (spellsIsTarget(oTarget, SPELL_TARGET_SELECTIVEHOSTILE, OBJECT_SELF)) { //Fire cast spell at event for the specified target SignalEvent(oTarget, EventSpellCastAt(OBJECT_SELF, SPELL_SLOW)); if (!MyResistSpell(OBJECT_SELF, oTarget) && !/*Will Save*/ MySavingThrow(SAVING_THROW_WILL, oTarget, GetEpicSpellSaveDC())) { //Apply the slow effect and VFX impact ApplyEffectToObject(DURATION_TYPE_TEMPORARY, eLink, oTarget, RoundsToSeconds(nDuration)); ApplyEffectToObject(DURATION_TYPE_INSTANT, eVis, oTarget); //Count the number of creatures affected nCount++; } } //Select the next target within the spell shape. oTarget = GetNextObjectInShape(SHAPE_SPHERE, RADIUS_SIZE_COLOSSAL, lSpell); } }