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

27 lines
903 B
Plaintext

//::///////////////////////////////////////////////
//:: Mighty Contender of Kord
//:: prc_contendkord.nss
//:://////////////////////////////////////////////
//:: Applies the Contender Strength boost
//:://////////////////////////////////////////////
#include "inc_item_props"
#include "prc_class_const"
void main()
{
object oPC = OBJECT_SELF;
int nKord = GetLevelByClass(CLASS_TYPE_MIGHTY_CONTENDER_KORD, oPC);
// Get the first boost at level 5
/*if(nKord > 4)
{
object oSkin = GetPCSkin(oPC);
int nBonus = nKord > 8 ? 2 : 1;
int iTest = GetPersistantLocalInt(oPC, "NWNX_MightyContenderStr");
int nDiff = nBonus - iTest;
if(nDiff != 0)//only part of the bouns was applied permanently or not applied at all
SetCompositeBonus(oSkin, "MightyContenderStrength", nDiff, ITEM_PROPERTY_ABILITY_BONUS, IP_CONST_ABILITY_STR);
}*/
}