PRC8/nwn/nwnprc/trunk/psionics/psi_wmnd_defpost.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

26 lines
813 B
Plaintext

/////////////////////////////////////////////////
// Warmind Chain of Defensive Posture
//-----------------------------------------------
// Created By: Stratovarius
/////////////////////////////////////////////////
#include "prc_alterations"
#include "prc_class_const"
void main()
{
effect eVis = EffectVisualEffect(VFX_IMP_AC_BONUS);
effect eDur = EffectVisualEffect(VFX_DUR_DEATH_ARMOR);
int nClass = GetLevelByClass(CLASS_TYPE_WARMIND, OBJECT_SELF);
int nBonus = 2;
if (nClass >= 8) nBonus = 4;
effect eAC = EffectACIncrease(nBonus);
effect eLink = EffectLinkEffects(eAC, eDur);
eLink = ExtraordinaryEffect(eLink);
ApplyEffectToObject(DURATION_TYPE_INSTANT, eVis, OBJECT_SELF);
ApplyEffectToObject(DURATION_TYPE_TEMPORARY, eLink, OBJECT_SELF, 60.0);
}