PRC8/nwn/nwnprc/trunk/newspellbook/moi_mld_necrocrc.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

76 lines
3.4 KiB
Plaintext
Raw Permalink 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.

/*
17/10/20 by Stratovarius
Necrocarnum Circlet
Descriptors: Evil, necrocarnum
Classes: Incarnate, soulborn
Chakra: Crown
Saving Throw: None
Necrocarnum bends itself into a matte black crown that seems to consume light. The fractured remnants of souls broken by the power of necrocarnum float within this soulmeld. These forms barely surface in this dark and foreboding crown, yet even the faintest glimpse is unsettling
While this soulmeld is shaped, you unerringly detect the presence and position of undead creatures within 30 feet.
Essentia: Undead within a 30-foot radius gain turn resistance equal to the number of points of essentia that you invest in the soulmeld. If you animated the undead, the turn resistance is equal to double the number of points of invested essentia.
Chakra Bind (Crown)
A matching coil of necrocarnum forms around the head of a corpse. Filled with the dark power of necrocarnum, the corpse shambles to its feet, its flesh and mind overtaken by the curse of undeath.
When you shape this soulmeld and bind it to your crown chakra, you can animate an undead creature. This requires a full-round action and provokes attacks of opportunity; in addition, you take
damage equal to the necrocarnum zombies Hit Dice, which may not be healed as long as the zombie remains animated. You may only have one zombie.
*/
#include "moi_inc_moifunc"
void NecroDetect(object oMeldshaper);
void CircTurnRes(object oMeldshaper);
void NecroDetect(object oMeldshaper)
{
if (GetHasSpellEffect(MELD_NECROCARNUM_CIRCLET, oMeldshaper))
{
ActionCastSpellOnSelf(SPELL_DETECT_UNDEAD);
DelayCommand(6.0, NecroDetect(oMeldshaper));
}
}
void CircTurnRes(object oMeldshaper)
{
if (GetHasSpellEffect(MELD_NECROCARNUM_CIRCLET, oMeldshaper))
{
location lTarget = GetLocation(oMeldshaper);
int nEssentia = GetEssentiaInvested(oMeldshaper, MELD_NECROCARNUM_CIRCLET);
// Use the function to get the closest creature as a target
object oAreaTarget = MyFirstObjectInShape(SHAPE_SPHERE, FeetToMeters(30.0), lTarget, TRUE, OBJECT_TYPE_CREATURE);
while(GetIsObjectValid(oAreaTarget))
{
if(MyPRCGetRacialType(oAreaTarget) == RACIAL_TYPE_UNDEAD)
{
if (GetMaster(oAreaTarget) == oMeldshaper)
ApplyEffectToObject(DURATION_TYPE_TEMPORARY, SupernaturalEffect(EffectTurnResistanceIncrease(nEssentia*2)), oAreaTarget, 6.0);
else
ApplyEffectToObject(DURATION_TYPE_TEMPORARY, SupernaturalEffect(EffectTurnResistanceIncrease(nEssentia)), oAreaTarget, 6.0);
}
//Select the next target within the spell shape.
oAreaTarget = MyNextObjectInShape(SHAPE_SPHERE, FeetToMeters(30.0), lTarget, TRUE, OBJECT_TYPE_CREATURE);
}
DelayCommand(6.0, CircTurnRes(oMeldshaper));
}
}
void main()
{
object oMeldshaper = PRCGetSpellTargetObject();
int nEssentia = GetEssentiaInvested(oMeldshaper);
effect eLink = EffectVisualEffect(VFX_DUR_GR_AURA_UNDEAD);
ApplyEffectToObject(DURATION_TYPE_TEMPORARY, SupernaturalEffect(eLink), oMeldshaper, 9999.0);
if (nEssentia) CircTurnRes(oMeldshaper);
IPSafeAddItemProperty(GetPCSkin(oMeldshaper), ItemPropertyBonusFeat(IP_CONST_MELD_NECROCARNUM_CIRCLET), 9999.0, X2_IP_ADDPROP_POLICY_KEEP_EXISTING);
if (GetIsMeldBound(oMeldshaper) == CHAKRA_CROWN) IPSafeAddItemProperty(GetPCSkin(oMeldshaper), ItemPropertyBonusFeat(IP_CONST_MELD_NECRO_CIRCLET_BROW), 9999.0, X2_IP_ADDPROP_POLICY_KEEP_EXISTING);
}