//:://///////////////////////////////////////////// //:: Pulse Drown //:: NW_S1_PulsDrwn //:: Copyright (c) 2001 Bioware Corp. //::////////////////////////////////////////////// /* Allows a water elemental to fill an enemies lungs with water drowning them over the next several rounds. */ //::////////////////////////////////////////////// //:: Created By: Preston Watmaniuk //:: Created On: April 15, 2002 //::////////////////////////////////////////////// #include "prc_inc_spells" #include "NW_I0_SPELLS" void Drown(object oTarget) { effect eVis = EffectVisualEffect(VFX_IMP_FROST_S); // * certain racial types are immune if ((GetRacialType(oTarget) != RACIAL_TYPE_CONSTRUCT) &&(GetRacialType(oTarget) != RACIAL_TYPE_UNDEAD) &&(GetRacialType(oTarget) != RACIAL_TYPE_ELEMENTAL)) { //Make a fortitude save if(MySavingThrow(SAVING_THROW_FORT, oTarget, 20) == FALSE) { //Apply the VFX impact and damage effect ApplyEffectToObject(DURATION_TYPE_INSTANT, eVis, oTarget); //Set damage effect to kill the target ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectDeath(), oTarget); } } } void main () { int nDamage = GetCurrentHitPoints() / 2; ApplyEffectToObject(DURATION_TYPE_PERMANENT, EffectDamage(nDamage), OBJECT_SELF); //Declare major variables object oTarget; int bSave = FALSE; int nIdx; effect eImpact = EffectVisualEffect(VFX_IMP_PULSE_WATER); ApplyEffectToObject(DURATION_TYPE_INSTANT, eImpact, OBJECT_SELF); oTarget = GetFirstObjectInShape(SHAPE_SPHERE, RADIUS_SIZE_LARGE, GetLocation(OBJECT_SELF)); while(GetIsObjectValid(oTarget) == TRUE) { if(!GetIsReactionTypeFriendly(oTarget) && oTarget != OBJECT_SELF) { //Fire cast spell at event for the specified target SignalEvent(oTarget, EventSpellCastAt(OBJECT_SELF, SPELLABILITY_PULSE_DROWN)); //Drown(oTarget); ActionCastSpell(SPELL_DROWN, GetHitDice(OBJECT_SELF), 0, 20, METAMAGIC_NONE, CLASS_TYPE_INVALID, FALSE, TRUE, oTarget); } oTarget = GetNextObjectInShape(SHAPE_SPHERE, RADIUS_SIZE_LARGE, GetLocation(OBJECT_SELF)); } } //:: Add all this back in later, maybe - Jaysyn /* #include "NW_I0_SPELLS" void RunDrownImpact(int nSecondsRemaining, object oTarget); void spritepulse(); void spriteimpact(int nSecondsRemaining, object oTarget); void main () { if (GetTag(OBJECT_SELF)=="jw_water_sprite") { spritepulse(); return; } //Declare major variables object oTarget; int bSave = FALSE; int nCnt = GetHitDice(OBJECT_SELF)/4; int nIdx; //Make a touch attack effect eImpact = EffectVisualEffect(VFX_IMP_PULSE_WATER); ApplyEffectToObject(DURATION_TYPE_INSTANT, eImpact, OBJECT_SELF); oTarget = GetFirstObjectInShape(SHAPE_SPHERE, RADIUS_SIZE_LARGE, GetLocation(OBJECT_SELF)); while(GetIsObjectValid(oTarget) && nIdx <= nCnt) { if(!GetIsReactionTypeFriendly(oTarget) && oTarget != OBJECT_SELF) { //Fire cast spell at event for the specified target SignalEvent(oTarget, EventSpellCastAt(OBJECT_SELF, SPELLABILITY_PULSE_DROWN)); nCnt = nCnt * 6; DelayCommand(6.0, RunDrownImpact(nCnt, oTarget)); } oTarget = GetNextObjectInShape(SHAPE_SPHERE, RADIUS_SIZE_LARGE, GetLocation(OBJECT_SELF)); } } void RunDrownImpact(int nSecondsRemaining, object oTarget) { int nCount = GetHitDice(OBJECT_SELF) + 10; int nDice = nCount/4; if (GetIsDead(oTarget) == FALSE) { if (nSecondsRemaining % 6 == 0) { if(!MySavingThrow(SAVING_THROW_FORT, oTarget, nCount)) { //Roll damage int nDamage = d4(nDice); //check for metamagic effect eDam = EffectDamage(nDamage); effect eVis = EffectVisualEffect(VFX_IMP_POISON_S); ApplyEffectToObject(DURATION_TYPE_INSTANT, eDam, oTarget); ApplyEffectToObject(DURATION_TYPE_INSTANT, eVis, oTarget); } else { nSecondsRemaining = 0; } } --nSecondsRemaining; if (nSecondsRemaining > 0) { DelayCommand(1.0f,RunDrownImpact(nSecondsRemaining,oTarget)); } } } void spritepulse () { //Declare major variables object oTarget; int bSave = FALSE; int nCnt = 2; int nIdx; //Make a touch attack effect eImpact = EffectVisualEffect(VFX_IMP_PULSE_WATER); ApplyEffectToObject(DURATION_TYPE_INSTANT, eImpact, OBJECT_SELF); oTarget = GetFirstObjectInShape(SHAPE_SPHERE, RADIUS_SIZE_LARGE, GetLocation(OBJECT_SELF)); while(GetIsObjectValid(oTarget) && nIdx <= nCnt) { if(!GetIsReactionTypeFriendly(oTarget) && oTarget != OBJECT_SELF) { //Fire cast spell at event for the specified target SignalEvent(oTarget, EventSpellCastAt(OBJECT_SELF, SPELLABILITY_PULSE_DROWN)); nCnt = nCnt * 6; DelayCommand(6.0, spriteimpact(6, oTarget)); } oTarget = GetNextObjectInShape(SHAPE_SPHERE, RADIUS_SIZE_LARGE, GetLocation(OBJECT_SELF)); } } void spriteimpact(int nSecondsRemaining, object oTarget) { int nCount = 4; int nDice = 2; if (GetIsDead(oTarget) == FALSE) { if (nSecondsRemaining % 6 == 0) { if(!MySavingThrow(SAVING_THROW_FORT, oTarget, 15)) { //Roll damage int nDamage = d3(); //check for metamagic effect eDam = EffectDamage(nDamage); effect eVis = EffectVisualEffect(VFX_IMP_POISON_S); ApplyEffectToObject(DURATION_TYPE_INSTANT, eDam, oTarget); ApplyEffectToObject(DURATION_TYPE_INSTANT, eVis, oTarget); } else { nSecondsRemaining = 0; } } --nSecondsRemaining; if (nSecondsRemaining > 0) { DelayCommand(1.0f,RunDrownImpact(nSecondsRemaining,oTarget)); } } } */