34 lines
1.0 KiB
Plaintext
34 lines
1.0 KiB
Plaintext
//::///////////////////////////////////////////////
|
|
//:: Blade Barrier: On Enter
|
|
//:: NW_S0_BladeBarA.nss
|
|
//:: Copyright (c) 2001 Bioware Corp.
|
|
//:://////////////////////////////////////////////
|
|
/*
|
|
Creates a wall 10m long and 2m thick of whirling
|
|
blades that hack and slice anything moving into
|
|
them. Anything caught in the blades takes
|
|
2d6 per caster level.
|
|
*/
|
|
//:://////////////////////////////////////////////
|
|
//:: Created By: Preston Watamaniuk
|
|
//:: Created On: July 20, 2001
|
|
//:://////////////////////////////////////////////
|
|
|
|
//#include "X0_I0_SPELLS"
|
|
#include "x2_inc_spellhook"
|
|
#include "prc_inc_spells"
|
|
|
|
void main()
|
|
{
|
|
object oTarget = GetEnteringObject();
|
|
effect eDam;
|
|
effect eVis = EffectVisualEffect(VFX_COM_BLOOD_LRG_RED);
|
|
int nDamage = d6(14);
|
|
if(PRCMySavingThrow(SAVING_THROW_REFLEX, oTarget, 24))
|
|
nDamage = d6(8);
|
|
eDam = EffectDamage(nDamage, DAMAGE_TYPE_SLASHING);
|
|
ApplyEffectToObject(DURATION_TYPE_INSTANT, eDam, oTarget);
|
|
ApplyEffectToObject(DURATION_TYPE_INSTANT, eVis, oTarget);
|
|
}
|
|
|