PRC8/nwn/nwnprc/trunk/scripts/prc_nbl_coord.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

22 lines
817 B
Plaintext

#include "prc_class_const"
#include "inc_vfx_const"
void main()
{
object oTarget = GetSpellTargetObject();
object oPC = OBJECT_SELF;
int nBonus = 0;
if (GetLevelByClass(CLASS_TYPE_NOBLE, oPC) >= 20) nBonus = 7;
else if (GetLevelByClass(CLASS_TYPE_NOBLE, oPC) >= 18) nBonus = 6;
else if (GetLevelByClass(CLASS_TYPE_NOBLE, oPC) >= 13) nBonus = 5;
else if (GetLevelByClass(CLASS_TYPE_NOBLE, oPC) >= 8) nBonus = 4;
else if (GetLevelByClass(CLASS_TYPE_NOBLE, oPC) >= 4) nBonus = 3;
effect eVis = EffectVisualEffect(VFX_IMP_REGENERATE_IMPACT);
effect eLink = EffectLinkEffects(EffectAttackIncrease(nBonus), EffectSkillIncrease(SKILL_ALL_SKILLS, nBonus));
ApplyEffectToObject(DURATION_TYPE_INSTANT, eVis, oTarget);
ApplyEffectToObject(DURATION_TYPE_TEMPORARY, ExtraordinaryEffect(eLink), oTarget, 6.0);
}