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

39 lines
1.3 KiB
Plaintext

/*:://////////////////////////////////////////////
//:: Spell Name Silence: On Enter
//:: Spell FileName PHS_S_SilenceA
//:://////////////////////////////////////////////
//:: Spell Effects Applied / Notes
//:://////////////////////////////////////////////
Applies silence if they don't resist it.
//:://////////////////////////////////////////////
//:: Created By: Jasperre
//::////////////////////////////////////////////*/
#include "PHS_INC_SPELLS"
void main()
{
// Check AOE creator
if(!PHS_CheckAOECreator()) return;
// Declare major variables
object oCaster = GetAreaOfEffectCreator();
object oTarget = GetEnteringObject();
// Declare effects and link
effect eCessate = EffectVisualEffect(VFX_DUR_CESSATE_NEGATIVE);
effect eVis = EffectVisualEffect(VFX_IMP_SILENCE);
effect eSilence = EffectSilence();
effect eImmune = EffectDamageImmunityIncrease(DAMAGE_TYPE_SONIC, 100);
effect eLink = EffectLinkEffects(eCessate, eSilence);
eLink = EffectLinkEffects(eLink, eImmune);
// Check hostility
// Fire cast spell at event for the target
PHS_SignalSpellCastAt(oTarget, PHS_SPELL_SILENCE, (!GetIsFriend(oTarget)));
// Apply effects
PHS_AOE_OnEnterEffectsVFX(eLink, oTarget, eVis, PHS_SPELL_SILENCE);
}