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

52 lines
2.6 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.

/*
11/1/20 by Stratovarius
Shadow Mantle
Descriptors: Darkness
Classes: Totemist
Chakra: Shoulders (totem)
Saving Throw: None
Incarnum forms a rough cloak of stony gray around your shoulders and back. As you move, the cloak writhes behind you, suggesting the movement of tentacles. It seems to collect shadow, always appearing darker than the surrounding area.
Channeling the merest suggestion of a darkmantles powerful blindsight, you gain a +4 competence bonus on Listen checks.
Essentia: Every point of essentia you invest in your shadow mantle increases the competence bonus on Listen checks by 2.
Chakra Bind (Shoulders)
The shadows of your mantle deepen, and its coloration grows darker. Blackness seems to cling in every fold and sometimes trail off in wisps from the mantles substance. You start to hear sounds too high for most humans to detect, and occasionally sounds too low, as well.
As a swift action, you can surround yourself with a globe of magical darkness and gain the benefits of ultravision. You can end the darkness effect as a swift action; ending the darkness effect also ends your ultravision.
Chakra Bind (Totem)
Your shadow mantle literally draws shadows to itself, and it changes color to match your surroundings. You find it much easier to hide from view by drawing the cloak around your body and ducking your head into its membranous collar.
You gain a competence bonus on Hide checks equal to the bonus the soulmeld grants on Listen checks (+4 plus an additional +2 per point of invested essentia).
*/
#include "moi_inc_moifunc"
void main()
{
object oMeldshaper = OBJECT_SELF;
// Remove the effect if we have it
if(GetHasSpellEffect(MELD_SHADOW_MANTLE_SHOULDERS, oMeldshaper))
{
PRCRemoveSpellEffects(SPELL_DARKNESS, oMeldshaper, oMeldshaper);
PRCRemoveSpellEffects(MELD_SHADOW_MANTLE_SHOULDERS, oMeldshaper, oMeldshaper);
GZPRCRemoveSpellEffects(MELD_SHADOW_MANTLE_SHOULDERS, oMeldshaper, FALSE);
GZPRCRemoveSpellEffects(SPELL_DARKNESS, oMeldshaper, FALSE);
}
else
{
ActionDoCommand(SetLocalInt(oMeldshaper, "ShadowMantle_Shoulder", TRUE));
ActionDoCommand(SetLocalInt(oMeldshaper, "SpellIsSLA", TRUE));
ActionCastSpell(SPELL_DARKNESS, GetMeldshaperLevel(oMeldshaper, CLASS_TYPE_TOTEMIST, MELD_SHADOW_MANTLE), 0, 0, METAMAGIC_NONE, CLASS_TYPE_INVALID, FALSE, FALSE, OBJECT_INVALID, FALSE);
ActionDoCommand(DeleteLocalInt(oMeldshaper, "SpellIsSLA"));
ApplyEffectToObject(DURATION_TYPE_TEMPORARY, SupernaturalEffect(EffectUltravision()), oMeldshaper, 9999.0);
ActionDoCommand(DeleteLocalInt(oMeldshaper, "ShadowMantle_Shoulder"));
}
}