Alangara_PRC8/_removed/NW_S0_BARKSKINKE.nss
Jaysyn904 86feb9ca6f Initial commit
Initial commit.
2024-06-05 21:21:06 -04:00

81 lines
2.2 KiB
Plaintext

//::///////////////////////////////////////////////
//:: [Barkskin]
//:: [NW_S0_BarkSkin.nss]
//:: Copyright (c) 2000 Bioware Corp.
//:://////////////////////////////////////////////
/*
Enhances the casters Natural AC by an amount
dependant on the caster's level.
*/
//:://////////////////////////////////////////////
//:: Created By: Preston Watamaniuk
//:: Created On: Feb 21, 2001
//:://////////////////////////////////////////////
//:: Last Updated By: Preston Watamaniuk, On: April 5, 2001
//:: VFX Pass By: Preston W, On: June 20, 2001
//:: Update Pass By: Preston W, On: July 20, 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
object oTarget = GetSpellTargetObject();
int nCasterLevel = GetCasterLevel(OBJECT_SELF);
int nBonus;
int nMetaMagic = GetMetaMagicFeat();
float fDuration = HoursToSeconds(nCasterLevel);
effect eVis = EffectVisualEffect(VFX_DUR_PROT_BARKSKIN);
effect eHead = EffectVisualEffect(VFX_IMP_HEAD_NATURE);
effect eDur = EffectVisualEffect(VFX_DUR_CESSATE_POSITIVE);
effect eAC;
//Signal spell cast at event
SignalEvent(oTarget, EventSpellCastAt(OBJECT_SELF, SPELL_BARKSKIN, FALSE));
//Enter Metamagic conditions
if (nMetaMagic == METAMAGIC_EXTEND) //Duration is +100%
{
fDuration = HoursToSeconds(nCasterLevel * 2);
}
//Determine AC Bonus based Level.
if (nCasterLevel <= 6)
{
nBonus = 3;
}
else
{
if (nCasterLevel <= 12)
{
nBonus = 4;
}
else
{
nBonus = 6;
}
}
//Make sure the Armor Bonus is of type Natural
eAC = EffectACIncrease(nBonus, AC_NATURAL_BONUS);
effect eLink = EffectLinkEffects(eVis, eAC);
eLink = EffectLinkEffects(eLink, eDur);
ApplyEffectToObject(DURATION_TYPE_TEMPORARY, eLink, oTarget, fDuration);
ApplyEffectToObject(DURATION_TYPE_INSTANT, eHead, oTarget);
}