114 lines
3.2 KiB
Plaintext
114 lines
3.2 KiB
Plaintext
//::///////////////////////////////////////////////
|
|
//:: Paladin spell level 4 holy sword - now holy armor.
|
|
//:: NW_S0_SplResis
|
|
//:: Copyright (c) 2001 Bioware Corp.
|
|
//:://////////////////////////////////////////////
|
|
/*
|
|
The target creature gains 10 + Caster Level/2 SR.
|
|
ANd also armor gains bonus like the cleric armor spell
|
|
*/
|
|
//:://////////////////////////////////////////////
|
|
//:: Created By: Preston Watamaniuk
|
|
//:: Created On: March 19, 2001
|
|
//:://////////////////////////////////////////////
|
|
//:: Last Updated By: Preston Watamaniuk, On: April 11, 2001
|
|
//:: VFX Pass By: Preston W, On: June 25, 2001
|
|
|
|
#include "nw_i0_spells"
|
|
//#include "x2_i0_spells" #include "prc_inc_spells"
|
|
|
|
#include "x2_inc_spellhook"
|
|
|
|
|
|
|
|
void AddACBonusToArmor(object oMyArmor, float fDuration, int nAmount)
|
|
{
|
|
IPSafeAddItemProperty(oMyArmor,ItemPropertyACBonus(nAmount), fDuration, X2_IP_ADDPROP_POLICY_REPLACE_EXISTING ,FALSE,TRUE);
|
|
return;
|
|
}
|
|
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
|
|
object oTarget = GetSpellTargetObject();
|
|
int nMetaMagic = GetMetaMagicFeat();
|
|
int nLevel = GetCasterLevel(OBJECT_SELF);
|
|
int nBonus = 10 + nLevel/2;
|
|
|
|
int nDuration = GetCasterLevel(OBJECT_SELF);
|
|
|
|
int nAmount = GetCasterLevel(OBJECT_SELF)/3;
|
|
if (nAmount <0)
|
|
{
|
|
nAmount =1;
|
|
}
|
|
|
|
|
|
|
|
else if (nAmount>7)
|
|
{
|
|
nAmount =7;
|
|
}
|
|
|
|
effect eSR = EffectSpellResistanceIncrease(nBonus);
|
|
effect eVis = EffectVisualEffect(VFX_IMP_GLOBE_USE);
|
|
effect eDur = EffectVisualEffect(VFX_DUR_CESSATE_POSITIVE);
|
|
effect eDur2 = EffectVisualEffect(249);
|
|
effect eLink = EffectLinkEffects(eSR, eDur);
|
|
eLink = EffectLinkEffects(eLink, eDur2);
|
|
|
|
|
|
|
|
object oMyArmor = IPGetTargetedOrEquippedArmor(TRUE);
|
|
|
|
//Fire cast spell at event for the specified target
|
|
SignalEvent(oTarget, EventSpellCastAt(OBJECT_SELF, SPELL_SPELL_RESISTANCE, FALSE));
|
|
//Check for metamagic extension
|
|
if (nMetaMagic == METAMAGIC_EXTEND)
|
|
{
|
|
nLevel = nLevel *2; //Duration is +100%
|
|
}
|
|
//Apply VFX impact and SR bonus effect
|
|
ApplyEffectToObject(DURATION_TYPE_INSTANT, eVis, oTarget);
|
|
ApplyEffectToObject(DURATION_TYPE_TEMPORARY, eLink, oTarget, HoursToSeconds(nLevel));
|
|
|
|
if(GetIsObjectValid(oMyArmor) )
|
|
{
|
|
SignalEvent(GetItemPossessor(oMyArmor ), EventSpellCastAt(OBJECT_SELF, GetSpellId(), FALSE));
|
|
|
|
if (nDuration>0)
|
|
{
|
|
|
|
location lLoc = GetLocation(GetSpellTargetObject());
|
|
DelayCommand(1.3f, ApplyEffectToObject(DURATION_TYPE_INSTANT, eVis, GetItemPossessor(oMyArmor)));
|
|
ApplyEffectToObject(DURATION_TYPE_TEMPORARY, eDur, GetItemPossessor(oMyArmor), HoursToSeconds(nDuration));
|
|
AddACBonusToArmor(oMyArmor, HoursToSeconds(nDuration),nAmount);
|
|
}
|
|
return;
|
|
}
|
|
else
|
|
{
|
|
FloatingTextStrRefOnCreature(83826, OBJECT_SELF);
|
|
return;
|
|
}
|
|
}
|
|
|
|
|