Battledale_PRC8/_removed/x0_s0_bigby3.nss
Jaysyn904 7b9e44ebbb Initial upload
Initial upload.  PRC8 has been added.  Module compiles, PRC's default AI & treasure scripts have been integrated.  Started work on top hak for SLA / Ability / Scripting modifications.
2024-03-11 23:44:08 -04:00

117 lines
3.5 KiB
Plaintext

//::///////////////////////////////////////////////
//:: Bigby's Grasping Hand
//:: [x0_s0_bigby3]
//:: Copyright (c) 2002 Bioware Corp.
//:://////////////////////////////////////////////
/*
make an attack roll. If succesful target is held for 1 round/level
*/
//:://////////////////////////////////////////////
//:: Created By: Brent
//:: Created On: September 7, 2002
//:://////////////////////////////////////////////
//:: VFX Pass By:
#include "x0_i0_spells"
#include "x2_inc_spellhook"
void main()
{
/*
Spellcast Hook Code
Added 2003-06-20 by Georg
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();
int nDuration = GetCasterLevel(OBJECT_SELF);
int nMetaMagic = GetMetaMagicFeat();
effect eVis = EffectVisualEffect(VFX_DUR_MIND_AFFECTING_DISABLED);
//Check for metamagic extend
if (nMetaMagic == METAMAGIC_EXTEND) //Duration is +100%
{
nDuration = nDuration * 2;
}
if(!GetIsReactionTypeFriendly(oTarget))
{
//Fire cast spell at event for the specified target
SignalEvent(oTarget, EventSpellCastAt(OBJECT_SELF, 461, TRUE));
// Check spell resistance
if(!MyResistSpell(OBJECT_SELF, oTarget))
{
// Check caster ability vs. target's AC
int nCasterModifier = GetCasterAbilityModifier(OBJECT_SELF);
int nCasterRoll = d20(1)
+ nCasterModifier
+ GetCasterLevel(OBJECT_SELF) + 10 + -1;
int nTargetRoll = GetAC(oTarget);
// * grapple HIT succesful,
if (nCasterRoll >= nTargetRoll)
{
// * now must make a GRAPPLE check to
// * hold target for duration of spell
// * check caster ability vs. target's size & strength
nCasterRoll = d20(1) + nCasterModifier
+ GetCasterLevel(OBJECT_SELF) + 10 +4;
nTargetRoll = d20(1) + GetAbilityModifier(ABILITY_STRENGTH, oTarget) + GetSizeModifier(oTarget);
if (nCasterRoll >= nTargetRoll)
{
// Hold the target paralyzed
effect eKnockdown = EffectParalyze();
effect eDur = EffectVisualEffect(VFX_DUR_CESSATE_NEGATIVE);
effect eHand = EffectVisualEffect(VFX_DUR_BIGBYS_GRASPING_HAND);
effect eLink = EffectLinkEffects(eKnockdown, eDur);
eLink = EffectLinkEffects(eHand, eLink);
eLink = EffectLinkEffects(eVis, eLink);
if (GetIsImmune(oTarget, EFFECT_TYPE_PARALYZE) == FALSE)
{
ApplyEffectToObject(DURATION_TYPE_TEMPORARY,
eLink, oTarget,
RoundsToSeconds(nDuration));
// ApplyEffectToObject(DURATION_TYPE_TEMPORARY,
// eVis, oTarget,RoundsToSeconds(nDuration));
FloatingTextStrRefOnCreature(2478, OBJECT_SELF);
}
}
else
{
FloatingTextStrRefOnCreature(83309, OBJECT_SELF);
}
}
}
}
}