PRC8/trunk/spells/x0_s0_entex.nss
Jaysyn904 1662218bb4 Initial upload.
Adding base PRC 4.19a files to repository.
2022-10-07 13:51:24 -04:00

34 lines
1.0 KiB
Plaintext

//::///////////////////////////////////////////////
//:: x0_s0_entEX
//:: Copyright (c) 2001 Bioware Corp.
//:://////////////////////////////////////////////
/*
Removes a miss chance to any enemies
of the area of effect creator.
*/
//:://////////////////////////////////////////////
//:: Created By:
//:: Created On:
//:://////////////////////////////////////////////
//:: altered by mr_bumpkin Dec 4, 2003 for prc stuff
#include "prc_alterations"
void main()
{
DeleteLocalInt(OBJECT_SELF, "X2_L_LAST_SPELLSCHOOL_VAR");
SetLocalInt(OBJECT_SELF, "X2_L_LAST_SPELLSCHOOL_VAR", SPELL_SCHOOL_ABJURATION);
// not sure if it's needed, since nothing would use it, but might as well include this.
object oTarget = GetEnteringObject();
if(!GetIsReactionTypeFriendly(oTarget, GetAreaOfEffectCreator()))
{
PRCRemoveSpellEffects(SPELL_ENTROPIC_SHIELD, GetAreaOfEffectCreator(), oTarget);
}
DeleteLocalInt(OBJECT_SELF, "X2_L_LAST_SPELLSCHOOL_VAR");
/// erases the local int containing the AOE's spell school for tidiness
}