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

32 lines
943 B
Plaintext

#include "prc_alterations"
#include "prc_inc_assoc"
void main()
{
object oFam = OBJECT_SELF;
ExecuteScript("prc_npc_death", oFam);
if(GetStringLeft(GetResRef(oFam), 11) == "prc_pnpfam_")
{
//raisable
SetIsDestroyable(FALSE, TRUE, TRUE);
SetLocalInt(oFam, "Familiar_Died", 1);
//apply XP penalty
object oPC = GetMasterNPC(oFam);
int nFamLevel = GetHitDice(oFam);
int nLostXP = 200*nFamLevel;
//fort save for half xp loss
if(FortitudeSave(oPC, 15))
nLostXP /= 2;
//check it wont loose a level
int nSpareXP = GetXP(oPC)-(GetHitDice(oPC)*(GetHitDice(oPC)-1)*500);
if(nSpareXP < nLostXP)
nLostXP = nSpareXP;
SetXP(oPC, GetXP(oPC) - nLostXP);
//delete it from the database
//DeleteCampaignVariable("prc_data", "Familiar", oPC);
}
else
ExecuteScript("nw_ch_ac7", oFam);
}