PRC8/nwn/nwnprc/trunk/scripts/prc_tn_des_20.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

36 lines
1.1 KiB
Plaintext

//::///////////////////////////////////////////////
//:: Lesser Desecrate
//:: PRC_TN_DES_20
//:://////////////////////////////////////////////
/*
You create an aura that boosts the undead
around you.
*/
#include "prc_inc_spells"
void main()
{
object oPC = OBJECT_SELF;
string nMes = "";
if(!GetHasSpellEffect(SPELL_DES_20) )
{
effect eAOE = EffectAreaOfEffect(AOE_MOB_DES_20, "prc_tn_des_a", "", "prc_tn_des_b");
effect eVis = EffectVisualEffect(VFX_TN_DES_20);
ApplyEffectToObject(DURATION_TYPE_TEMPORARY, eAOE, OBJECT_SELF, HoursToSeconds(99));
//rather than a big flashy desecration effect, the alternative is a dark light effect
if(GetPRCSwitch(PRC_TRUE_NECROMANCER_ALTERNATE_VISUAL))
eVis = EffectVisualEffect(VFX_DUR_ANTI_LIGHT_10);
ApplyEffectToObject(DURATION_TYPE_TEMPORARY, eVis, OBJECT_SELF, HoursToSeconds(99));
nMes = "*Lesser Desecrate Activated*";
}
else
{
// Removes effects
PRCRemoveSpellEffects(SPELL_DES_20, oPC, oPC);
nMes = "*Lesser Desecrate Deactivated*";
}
FloatingTextStringOnCreature(nMes, oPC, FALSE);
}