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.
89 lines
3.3 KiB
Plaintext
89 lines
3.3 KiB
Plaintext
/*:://////////////////////////////////////////////
|
|
//:: Spell Name Hold Monster
|
|
//:: Spell FileName PHS_S_HoldMon
|
|
//:://////////////////////////////////////////////
|
|
//:: In Game Spell desctiption
|
|
//:://////////////////////////////////////////////
|
|
Enchantment (Compulsion) [Mind-Affecting]
|
|
Level: Brd 4, Law 6, Sor/Wiz 5
|
|
Components: V, S, M/DF
|
|
Casting Time: 1 standard action
|
|
Range: Medium (20M)
|
|
Target: One living creature
|
|
Duration: 1 round/level (D); see text
|
|
Saving Throw: Will negates; see text
|
|
Spell Resistance: Yes
|
|
|
|
The subject becomes paralyzed and freezes in place. It is aware and breathes
|
|
normally but cannot take any actions, even speech. Each round on its turn,
|
|
the subject may attempt a new saving throw to end the effect. (This is a
|
|
full-round action that does not provoke attacks of opportunity.)
|
|
|
|
Arcane Material Component: One hard metal bar or rod, which can be as small
|
|
as a three-penny nail.
|
|
//:://////////////////////////////////////////////
|
|
//:: Spell Effects Applied / Notes
|
|
//:://////////////////////////////////////////////
|
|
As hold person, but only needs to be living.
|
|
//:://////////////////////////////////////////////
|
|
//:: Created By: Jasperre
|
|
//::////////////////////////////////////////////*/
|
|
|
|
#include "PHS_INC_SPELLS"
|
|
|
|
void main()
|
|
{
|
|
// Spell Hook Check.
|
|
if(!PHS_SpellHookCheck(PHS_SPELL_HOLD_MONSTER)) return;
|
|
|
|
//Declare major variables
|
|
object oCaster = OBJECT_SELF;
|
|
object oTarget = GetSpellTargetObject();
|
|
int nCasterLevel = PHS_GetCasterLevel();
|
|
int nSpellSaveDC = PHS_GetSpellSaveDC();
|
|
int nMetaMagic = PHS_GetMetaMagicFeat();
|
|
|
|
// Duration in rounds.
|
|
float fDuration = PHS_GetDuration(PHS_ROUNDS, nCasterLevel, nMetaMagic);
|
|
|
|
// Declare Effects
|
|
effect eParalyze = EffectParalyze();
|
|
effect eDur1 = EffectVisualEffect(VFX_DUR_PARALYZED);
|
|
effect eDur2 = EffectVisualEffect(VFX_DUR_PARALYZE_HOLD);
|
|
effect eCessate = EffectVisualEffect(VFX_DUR_CESSATE_NEGATIVE);
|
|
|
|
// Link effects
|
|
effect eLink = EffectLinkEffects(eParalyze, eDur1);
|
|
eLink = EffectLinkEffects(eLink, eDur2);
|
|
eLink = EffectLinkEffects(eLink, eCessate);
|
|
|
|
// Always fire spell cast at event
|
|
PHS_SignalSpellCastAt(oTarget, PHS_SPELL_HOLD_MONSTER, TRUE);
|
|
|
|
// Must check reaction type for PvP
|
|
if(!GetIsReactionTypeFriendly(oTarget) &&
|
|
// Make sure they are not immune to spells
|
|
!PHS_TotalSpellImmunity(oTarget))
|
|
{
|
|
// Must be a living creature
|
|
if(PHS_GetIsAliveCreature(oTarget))
|
|
{
|
|
// Check spell resistance and immunities.
|
|
if(!PHS_SpellResistanceCheck(oCaster, oTarget) &&
|
|
!PHS_ImmunityCheck(oTarget, IMMUNITY_TYPE_MIND_SPELLS) &&
|
|
!PHS_ImmunityCheck(oTarget, IMMUNITY_TYPE_PARALYSIS))
|
|
{
|
|
// Make Will Save to negate effect. Mind spell too.
|
|
if(!PHS_SavingThrow(SAVING_THROW_WILL, oTarget, nSpellSaveDC, SAVING_THROW_TYPE_MIND_SPELLS))
|
|
{
|
|
// Apply VFX Impact and daze effect
|
|
PHS_ApplyDuration(oTarget, eLink, fDuration);
|
|
|
|
// Delay a round-will-save to remove
|
|
PHS_HoldWillSaveStart(oTarget, oCaster, PHS_SPELL_HOLD_MONSTER, nSpellSaveDC);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|