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.
67 lines
1.8 KiB
Plaintext
67 lines
1.8 KiB
Plaintext
///::///////////////////////////////////////////////
|
|
//:: Shield of Faith
|
|
//:: x0_s0_ShieldFait.nss
|
|
//:: Copyright (c) 2002 Bioware Corp.
|
|
//:://////////////////////////////////////////////
|
|
/*
|
|
+2 deflection AC bonus, +1 every 6 levels (max +5)
|
|
Duration: 1 turn/level
|
|
*/
|
|
//:://////////////////////////////////////////////
|
|
//:: Created By: Brent Knowles
|
|
//:: Created On: September 6, 2002
|
|
//:://////////////////////////////////////////////
|
|
//:: VFX Pass By:
|
|
#include "NW_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();
|
|
effect eVis = EffectVisualEffect(VFX_IMP_AC_BONUS);
|
|
int nMetaMagic = GetMetaMagicFeat();
|
|
int nCasterLvl = GetCasterLevel(OBJECT_SELF);
|
|
|
|
int nValue = 2 + (nCasterLvl)/6;
|
|
if (nValue > 5)
|
|
nValue = 5; // * Max of 5
|
|
|
|
effect eAC = EffectACIncrease(nValue, AC_DEFLECTION_BONUS);
|
|
|
|
effect eDur = EffectVisualEffect(VFX_DUR_PROTECTION_GOOD_MINOR);
|
|
effect eLink = EffectLinkEffects(eAC, eDur);
|
|
|
|
int nDuration = GetCasterLevel(OBJECT_SELF); // * Duration 1 turn/level
|
|
if (nMetaMagic == METAMAGIC_EXTEND) //Duration is +100%
|
|
{
|
|
nDuration = nDuration * 2;
|
|
}
|
|
|
|
//Fire spell cast at event for target
|
|
SignalEvent(oTarget, EventSpellCastAt(OBJECT_SELF, 421, FALSE));
|
|
//Apply VFX impact and bonus effects
|
|
ApplyEffectToObject(DURATION_TYPE_INSTANT, eVis, oTarget);
|
|
ApplyEffectToObject(DURATION_TYPE_TEMPORARY, eLink, oTarget, TurnsToSeconds(nDuration));
|
|
|
|
}
|