Updated Release Archive. Fixed Mage-killer prereqs. Removed old LETO & ConvoCC related files. Added organized spell scroll store. Fixed Gloura spellbook. Various TLK fixes. Reorganized Repo. Removed invalid user folders. Added DocGen back in.
36 lines
1.1 KiB
Plaintext
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);
|
|
} |