Updated AMS marker feats. Removed arcane & divine marker feats. Updated Dread Necromancer for epic progression. Updated weapon baseitem models. Updated new weapons for crafting & npc equip. Updated prefix. Updated release archive.
74 lines
2.5 KiB
Plaintext
74 lines
2.5 KiB
Plaintext
//::///////////////////////////////////////////////
|
|
//:: Epic Mage Armor
|
|
//:: X2_S2_EpMageArm
|
|
//:: Copyright (c) 2001 Bioware Corp.
|
|
//:://////////////////////////////////////////////
|
|
/*
|
|
Gives the target +20 AC Bonus to Deflection,
|
|
Armor Enchantment, Natural Armor and Dodge.
|
|
*/
|
|
//:://////////////////////////////////////////////
|
|
//:: Created By: Andrew Nobbs
|
|
//:: Created On: Feb 07, 2003
|
|
//:://////////////////////////////////////////////
|
|
|
|
//:: modified by mr_bumpkin Dec 15, 2003 for PRC stuff
|
|
#include "prc_inc_spells"
|
|
|
|
void main()
|
|
{
|
|
DeleteLocalInt(OBJECT_SELF, "X2_L_LAST_SPELLSCHOOL_VAR");
|
|
SetLocalInt(OBJECT_SELF, "X2_L_LAST_SPELLSCHOOL_VAR", SPELL_SCHOOL_CONJURATION);
|
|
|
|
/*
|
|
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;
|
|
}
|
|
|
|
//Declare major variables
|
|
object oTarget = PRCGetSpellTargetObject();
|
|
int nDuration = PRCGetCasterLevel(OBJECT_SELF);
|
|
int nMetaMagic = PRCGetMetaMagicFeat();
|
|
effect eVis = EffectVisualEffect(495);
|
|
effect eAC1, eAC2, eAC3, eAC4;
|
|
//Fire cast spell at event for the specified target
|
|
SignalEvent(oTarget, EventSpellCastAt(OBJECT_SELF, GetSpellId(), FALSE));
|
|
//Check for metamagic extend
|
|
if (CheckMetaMagic(nMetaMagic, METAMAGIC_EXTEND)) //Duration is +100%
|
|
{
|
|
nDuration = nDuration * 2;
|
|
}
|
|
//Set the four unique armor bonuses
|
|
eAC1 = EffectACIncrease(5, AC_ARMOUR_ENCHANTMENT_BONUS);
|
|
eAC2 = EffectACIncrease(5, AC_DEFLECTION_BONUS);
|
|
eAC3 = EffectACIncrease(5, AC_DODGE_BONUS);
|
|
eAC4 = EffectACIncrease(5, AC_NATURAL_BONUS);
|
|
effect eDur = EffectVisualEffect(VFX_DUR_SANCTUARY);
|
|
|
|
effect eLink = EffectLinkEffects(eAC1, eAC2);
|
|
eLink = EffectLinkEffects(eLink, eAC3);
|
|
eLink = EffectLinkEffects(eLink, eAC4);
|
|
eLink = EffectLinkEffects(eLink, eDur);
|
|
|
|
PRCRemoveEffectsFromSpell(oTarget, GetSpellId());
|
|
|
|
// * Brent, Nov 24, making extraodinary so cannot be dispelled
|
|
eLink = ExtraordinaryEffect(eLink);
|
|
|
|
//Apply the armor bonuses and the VFX impact
|
|
ApplyEffectToObject(DURATION_TYPE_TEMPORARY, eLink, oTarget, HoursToSeconds(nDuration));
|
|
ApplyEffectToObject(DURATION_TYPE_TEMPORARY, eVis, oTarget,1.0);
|
|
|
|
DeleteLocalInt(OBJECT_SELF, "X2_L_LAST_SPELLSCHOOL_VAR");
|
|
// Getting rid of the local integer storing the spellschool name
|
|
}
|