PRC8/nwn/nwnprc/trunk/smp/nw_s0_magmiss.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

28 lines
758 B
Plaintext

//::///////////////////////////////////////////////
#include "PHS_INC_SPELLS"
void main()
{
// Apply some paralsis to the target
object oTarget = GetSpellTargetObject();
// Declare Effects
effect eParalyze = EffectParalyze();
effect eDur1 = EffectVisualEffect(VFX_DUR_PARALYZED);
effect eDur2 = EffectVisualEffect(VFX_DUR_PARALYZE_HOLD);
effect eCessate = EffectVisualEffect(VFX_DUR_CESSATE_NEGATIVE);
// Link effects
effect eLink = EffectLinkEffects(eParalyze, eDur1);
eLink = EffectLinkEffects(eLink, eDur2);
eLink = EffectLinkEffects(eLink, eCessate);
SpeakString("PARALSIS: 120 seconds :" + GetName(oTarget));
// Apply VFX Impact and daze effect
PHS_ApplyDuration(oTarget, eLink, 120.0);
}