PRC8/nwn/nwnprc/trunk/scripts/prc_alaghar.nss
Jaysyn904 d87fe14826 Further file organization
Further file organization
2023-08-23 22:11:00 -04:00

14 lines
346 B
Plaintext

#include "prc_alterations"
#include "prc_feat_const"
#include "prc_class_const"
void main()
{
object oPC = OBJECT_SELF;
object oSkin = GetPCSkin(oPC);
int iLevel = GetLevelByClass(CLASS_TYPE_ALAGHAR, oPC);
int iArmorBonus = ((iLevel + 1)/3);
SetCompositeBonus(oSkin, "SilverbeardAC", iArmorBonus, ITEM_PROPERTY_AC_BONUS);
}