65 lines
2.2 KiB
Plaintext
65 lines
2.2 KiB
Plaintext
//::///////////////////////////////////////////////
|
|
//:: Cone: Sonic
|
|
//:: NW_S1_ConeSonic
|
|
//:: Copyright (c) 2001 Bioware Corp.
|
|
//:://////////////////////////////////////////////
|
|
/*
|
|
A cone of damage eminated from the monster. Does
|
|
a set amount of damage based upon the creatures HD
|
|
and can be halved with a Reflex Save.
|
|
*/
|
|
//:://////////////////////////////////////////////
|
|
//:: Created By: Preston Watamaniuk
|
|
//:: Created On: May 11, 2001
|
|
//:://////////////////////////////////////////////
|
|
|
|
#include "NW_I0_SPELLS"
|
|
void main()
|
|
{
|
|
//Declare major variables
|
|
int nHD = GetHitDice(OBJECT_SELF);
|
|
int nDamage;
|
|
int nLoop = nHD / 3;
|
|
int nDC = 10 + (nHD/2);
|
|
float fDelay;
|
|
if(nLoop == 0)
|
|
{
|
|
nLoop = 1;
|
|
}
|
|
//Calculate the damage
|
|
for (nLoop; nLoop > 0; nLoop--)
|
|
{
|
|
nDamage = nDamage + d6(6);
|
|
}
|
|
location lTargetLocation = GetSpellTargetLocation();
|
|
object oTarget;
|
|
effect eCone;
|
|
effect eVis = EffectVisualEffect(VFX_IMP_SONIC);
|
|
|
|
oTarget = GetFirstObjectInShape(SHAPE_SPELLCONE, 11.0, lTargetLocation, TRUE);
|
|
//Get first target in spell area
|
|
while(GetIsObjectValid(oTarget))
|
|
{
|
|
if(!GetIsReactionTypeFriendly(oTarget) && oTarget != OBJECT_SELF)
|
|
{
|
|
//Fire cast spell at event for the specified target
|
|
SignalEvent(oTarget, EventSpellCastAt(OBJECT_SELF, SPELLABILITY_CONE_SONIC));
|
|
//Determine effect delay
|
|
fDelay = GetDistanceBetween(OBJECT_SELF, oTarget)/20;
|
|
//Adjust the damage based on the Reflex Save, Evasion and Improved Evasion.
|
|
nDamage = GetReflexAdjustedDamage(nDamage, oTarget, GetSpellSaveDC(),DAMAGE_TYPE_SONIC);
|
|
//Set damage effect
|
|
eCone = EffectDamage(nDamage, DAMAGE_TYPE_SONIC);
|
|
DelayCommand(fDelay, ApplyEffectToObject(DURATION_TYPE_INSTANT, eVis, oTarget));
|
|
if(nDamage > 0)
|
|
{
|
|
//Apply the VFX impact and effects
|
|
DelayCommand(fDelay, ApplyEffectToObject(DURATION_TYPE_INSTANT, eCone, oTarget));
|
|
}
|
|
}
|
|
//Get next target in spell area
|
|
oTarget = GetNextObjectInShape(SHAPE_SPELLCONE, 11.0, lTargetLocation, TRUE);
|
|
}
|
|
}
|
|
|