PRC8/nwn/nwnprc/trunk/scripts/sac_innerarmor.nss
Jaysyn904 6ec137a24e Updated AMS marker feats
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.
2024-02-11 14:01:05 -05:00

18 lines
691 B
Plaintext

void main()
{
object oPC = OBJECT_SELF;
int nWis = GetAbilityModifier(ABILITY_WISDOM, oPC);
if(nWis < 1) nWis = 1;
effect eAC = EffectVisualEffect(VFX_DUR_CESSATE_POSITIVE);
eAC = EffectLinkEffects(eAC, EffectACIncrease(4, AC_ARMOUR_ENCHANTMENT_BONUS));
eAC = EffectLinkEffects(eAC, EffectSavingThrowIncrease(SAVING_THROW_ALL, 4));
eAC = EffectLinkEffects(eAC, EffectSpellResistanceIncrease(25));
eAC = SupernaturalEffect(eAC);
effect eVFX = EffectVisualEffect(VFX_IMP_AC_BONUS);
ApplyEffectToObject(DURATION_TYPE_TEMPORARY, eAC, oPC, RoundsToSeconds(nWis));
ApplyEffectToObject(DURATION_TYPE_INSTANT, eVFX, oPC);
}