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.
75 lines
2.4 KiB
Plaintext
75 lines
2.4 KiB
Plaintext
|
|
//::///////////////////////////////////////////////
|
|
//:: Protection from Good
|
|
//:: NW_S0_PrGood.nss
|
|
//:: Copyright (c) 2001 Bioware Corp.
|
|
//:://////////////////////////////////////////////
|
|
/*
|
|
When confronted by good the protected character
|
|
gains +2 AC, +2 to Saves and immunity to all
|
|
mind-affecting spells cast by good creatures
|
|
*/
|
|
//:://////////////////////////////////////////////
|
|
//:: Created By: Preston Watamaniuk
|
|
//:: Created On: Sept 28, 2001
|
|
//:://////////////////////////////////////////////
|
|
//:: VFX Pass By: Preston W, On: June 22, 2001
|
|
|
|
#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
|
|
int nAlign = ALIGNMENT_GOOD;
|
|
object oTarget = GetSpellTargetObject();
|
|
int nDuration = GetCasterLevel(OBJECT_SELF);
|
|
int nMetaMagic = GetMetaMagicFeat();
|
|
//effect eVis = EffectVisualEffect(VFX_IMP_GOOD_HELP);
|
|
effect eAC = EffectACIncrease(2, AC_DEFLECTION_BONUS);
|
|
//Change the effects so that it only applies when the target is evil
|
|
eAC = VersusAlignmentEffect(eAC, ALIGNMENT_ALL, nAlign);
|
|
effect eSave = EffectSavingThrowIncrease(SAVING_THROW_ALL, 2);
|
|
eSave = VersusAlignmentEffect(eSave,ALIGNMENT_ALL, nAlign);
|
|
effect eImmune = EffectImmunity(IMMUNITY_TYPE_MIND_SPELLS);
|
|
eImmune = VersusAlignmentEffect(eImmune,ALIGNMENT_ALL, nAlign);
|
|
//effect eDur = EffectVisualEffect(VFX_DUR_PROTECTION_EVIL_MINOR);
|
|
effect eDur2 = EffectVisualEffect(VFX_DUR_CESSATE_POSITIVE);
|
|
|
|
|
|
effect eLink = EffectLinkEffects(eImmune, eSave);
|
|
eLink = EffectLinkEffects(eLink, eAC);
|
|
//eLink = EffectLinkEffects(eLink, eDur);
|
|
eLink = EffectLinkEffects(eLink, eDur2);
|
|
|
|
if (nMetaMagic == METAMAGIC_EXTEND)
|
|
{
|
|
nDuration = nDuration *2; //Duration is +100%
|
|
}
|
|
|
|
//Fire cast spell at event for the specified target
|
|
SignalEvent(oTarget, EventSpellCastAt(OBJECT_SELF, SPELL_PROTECTION_FROM_GOOD, FALSE));
|
|
|
|
//Apply the VFX impact and effects
|
|
//ApplyEffectToObject(DURATION_TYPE_INSTANT, eVis, oTarget);
|
|
ApplyEffectToObject(DURATION_TYPE_TEMPORARY, eLink, oTarget, HoursToSeconds(nDuration));
|
|
}
|
|
|