89 lines
2.2 KiB
Plaintext
89 lines
2.2 KiB
Plaintext
|
///::///////////////////////////////////////////////
|
||
|
//:: Doom
|
||
|
//:: NW_S0_Doom.nss
|
||
|
//:: Copyright (c) 2001 Bioware Corp.
|
||
|
//:://////////////////////////////////////////////
|
||
|
/*
|
||
|
If the target fails a save they recieve a -2
|
||
|
penalty to all saves, attack rolls, damage and
|
||
|
skill checks for the duration of the spell.
|
||
|
|
||
|
July 22 2002 (BK): Made it mind affecting.
|
||
|
*/
|
||
|
//:://////////////////////////////////////////////
|
||
|
//:: Created By: Preston Watamaniuk
|
||
|
//:: Created On: Oct 22, 2001
|
||
|
//:://////////////////////////////////////////////
|
||
|
|
||
|
|
||
|
#include "NW_I0_SPELLS"
|
||
|
#include "x2_inc_spellhook"
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
|
||
|
/*
|
||
|
Spellcast Hook Code
|
||
|
Added 2003-06-23 by GeorgZ
|
||
|
If you want to make changes to all spells,
|
||
|
check x2_inc_spellhook.nss to find out more
|
||
|
|
||
|
*/
|
||
|
|
||
|
if (!X2PreSpellCastCode())
|
||
|
{
|
||
|
// If code within the PreSpellCastHook (i.e. UMD) reports FALSE, do not run this spell
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
// End of Spell Cast Hook
|
||
|
|
||
|
|
||
|
//Declare major variables
|
||
|
object oTarget = GetSpellTargetObject();
|
||
|
effect eVis = EffectVisualEffect(VFX_IMP_DOOM);
|
||
|
effect eLink = CreateDoomEffectsLink();
|
||
|
|
||
|
int nLevel = GetCasterLevel(OBJECT_SELF);
|
||
|
int nMetaMagic = GetMetaMagicFeat();
|
||
|
//Meta-Magic checks
|
||
|
if(nMetaMagic == METAMAGIC_EXTEND)
|
||
|
{
|
||
|
nLevel *= 2;
|
||
|
}
|
||
|
if(!GetIsReactionTypeFriendly(oTarget))
|
||
|
{
|
||
|
SignalEvent(oTarget, EventSpellCastAt(OBJECT_SELF, SPELL_DOOM));
|
||
|
//Spell Resistance and Saving throw
|
||
|
|
||
|
//* GZ Engine fix for mind affecting spell
|
||
|
|
||
|
int nResult = WillSave(oTarget, GetSpellSaveDC(), SAVING_THROW_TYPE_MIND_SPELLS);
|
||
|
if (nResult == 2)
|
||
|
{
|
||
|
if (GetIsPC(OBJECT_SELF)) // only display immune feedback for PCs
|
||
|
{
|
||
|
FloatingTextStrRefOnCreature(84525, oTarget,FALSE); // * Target Immune
|
||
|
}
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
if (nResult==1)
|
||
|
{
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
|
||
|
if (nResult==0)
|
||
|
{
|
||
|
// Make SR Check
|
||
|
if (!MyResistSpell(OBJECT_SELF, oTarget))
|
||
|
{
|
||
|
ApplyEffectToObject(DURATION_TYPE_INSTANT, eVis, oTarget);
|
||
|
ApplyEffectToObject(DURATION_TYPE_TEMPORARY, eLink , oTarget, TurnsToSeconds(nLevel));
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|