PoA_PRC8/_module/_removed files/x2_s0_stneholda.nss
Jaysyn904 151d074880 Added "Removed Files" folder
Added "Removed Files" folder in case we needed to review any of them.
2022-10-10 10:39:34 -04:00

56 lines
1.8 KiB
Plaintext

//::///////////////////////////////////////////////
//:: Stonehold
//:: X2_S0_StneholdA
//:: Copyright (c) 2001 Bioware Corp.
//:://////////////////////////////////////////////
/*
Creates an area of effect that will cover the
creature with a stone shell holding them in
place.
*/
//:://////////////////////////////////////////////
//:: Created By: Georg Zoeller
//:: Created On: August 2003
//:: Updated : October 2003
//:://////////////////////////////////////////////
#include "NW_I0_SPELLS"
#include "x0_i0_spells"
#include "x2_inc_spellhook"
#include "epicdc_inc"
void main()
{
//Declare major variables
int nRounds;
effect eHold = EffectParalyze();
effect eDur = EffectVisualEffect(476 );
effect eFind;
object oTarget;
object oCreator;
float fDelay;
int nMetaMagic = GetMetaMagicFeat();
effect eLink = EffectLinkEffects(eDur,eHold);
//Get the first object in the persistant area
oTarget = GetEnteringObject();
if(spellsIsTarget(oTarget, SPELL_TARGET_STANDARDHOSTILE, GetAreaOfEffectCreator()))
{
//Fire cast spell at event for the specified target
SignalEvent(oTarget, EventSpellCastAt(OBJECT_SELF, SPELL_STONEHOLD));
//Make a SR check
if(!MyResistSpell(GetAreaOfEffectCreator(), oTarget))
{
//Make a Will Save
if(!MySavingThrow(SAVING_THROW_WILL, oTarget, GetEpicSpellSaveDC(), SAVING_THROW_TYPE_SPELL))
{
nRounds = MaximizeOrEmpower(6, 1, nMetaMagic);
fDelay = GetRandomDelay(0.45, 1.85);
//Apply the VFX impact and linked effects
DelayCommand(fDelay, ApplyEffectToObject(DURATION_TYPE_TEMPORARY, eLink, oTarget, RoundsToSeconds(nRounds)));
}
}
}
}