PRC8/nwn/nwnprc/trunk/scripts/strat_pitglare.nss
Jaysyn904 6ec137a24e Updated AMS marker feats
Updated AMS marker feats.  Removed arcane & divine marker feats.  Updated Dread Necromancer for epic progression. Updated weapon baseitem models.  Updated new weapons for crafting & npc equip.
 Updated prefix.  Updated release archive.
2024-02-11 14:01:05 -05:00

34 lines
954 B
Plaintext

#include "prc_inc_sp_tch"
void main()
{
//Declare major variables
object oTarget = PRCGetSpellTargetObject();
int nDamage = d6(16);
effect eVis = EffectVisualEffect(VFX_IMP_FLAME_M);
effect eDam = EffectDamage(nDamage, DAMAGE_TYPE_FIRE);
effect eRay;
int nTouchAttack = PRCDoRangedTouchAttack(oTarget);;
if (nTouchAttack > 0)
{
if(!GetIsReactionTypeFriendly(oTarget))
{
//Fire cast spell at event for the specified target
SignalEvent(oTarget, EventSpellCastAt(OBJECT_SELF, SPELL_NEGATIVE_ENERGY_RAY));
eRay = EffectBeam(VFX_BEAM_FIRE, OBJECT_SELF, BODY_NODE_HAND);
//Apply the VFX impact and effects
DelayCommand(0.5, ApplyEffectToObject(DURATION_TYPE_INSTANT, eVis, oTarget));
ApplyEffectToObject(DURATION_TYPE_INSTANT, eDam, oTarget);
}
ApplyEffectToObject(DURATION_TYPE_TEMPORARY, eRay, oTarget, 1.7);
}
}