PRC8/nwn/nwnprc/trunk/spells/sp_brittlebn.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

42 lines
1.9 KiB
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

//////////////////////////////////////////////////////
// Brittlebone
// sp_brittlebn.nss
//////////////////////////////////////////////////////
/* Brittlebone: This unguent must be spread over a set of
bones before animation as a skeleton. The ointment reduces
the skeletons natural armor by 2 points (to a minimum of 0),
but when the skeleton is destroyed, its bones splinter and fl y
apart, sending shards in all directions. Any creature within
the skeletons reach takes 1 point of piercing damage per HD
of the skeleton (Reflex DC 15 half; minimum 1 point). */
#include "prc_inc_spells"
void main()
{
object oPC = OBJECT_SELF;
object oTarget = PRCGetSpellTargetObject();
string sResRef = GetResRef(oTarget);
//Conditional statement checking for resrefs of skeletons. If you have custom skeletons, add their resrefs here.
if(sResRef == "nw_s_skeleton" ||
sResRef == "x2_s_bguard_18" ||
sResRef == "nw_s_skelchief" ||
sResRef == "nw_s_skelwarr" ||
sResRef == "nw_skeleton" ||
sResRef == "nw_skelchief" ||
sResRef == "nw_skelmage" ||
sResRef == "nw_skelpriest" ||
sResRef == "nw_skelwarr01" ||
sResRef == "nw_skelwarr02")
{
object oSkin = GetItemInSlot(INVENTORY_SLOT_CARMOUR, oTarget);
itemproperty ipOnHit = ItemPropertyOnHitCastSpell(IP_CONST_ONHIT_CASTSPELL_ONHIT_UNIQUEPOWER, 1);
IPSafeAddItemProperty(oSkin, ipOnHit, 0.0f);
AddEventScript(oTarget, EVENT_NPC_ONDEATH, "prc_evnt_brtbn.nss", FALSE, FALSE);
ApplyEffectToObject(DURATION_TYPE_PERMANENT, EffectACDecrease(2, AC_NATURAL_BONUS), oTarget);
SendMessageToPC(oPC, "You have coated the skeleton with Brittlebone.");
}
else SendMessageToPC(oPC, "Invalid target. The target must be a skeleton.");
}