PRC8/trunk/newspellbook/bnd_vest_buerent.nss
Jaysyn904 1662218bb4 Initial upload.
Adding base PRC 4.19a files to repository.
2022-10-07 13:51:24 -04:00

44 lines
1.8 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.

/*
03/03/21 by Stratovarius
Buer, Grandmother Huntress
Buer grants binders superior healing as well as powers against poisons and diseases.
Vestige Level: 4th
Binding DC: 20
Special Requirement: Buer requires that her seal be drawn outdoors.
Influence: Under Buers influence, you are plagued by momentary memory lapses. For an instant, you might forget even a piece of information as familiar as the
name of a friend or family member. Furthermore, since Buer abhors the needless death of living creatures other than animals and vermin, the first melee
attack you make against such a foe must be for nonlethal damage. In addition, Buer requires that you not make any coup de grace attacks.
Granted Abilities:
Buer grants you healing powers, the ability to ignore toxins and ailments, and skills that help you navigate the natural world.
Delay Diseases and Poisons: Each ally within 30 feet of you gains immunity to poison and disease.
OnEnter
*/
#include "bnd_inc_bndfunc"
void main()
{
//Declare major variables
object oBinder = GetAreaOfEffectCreator();
//Capture the first target object in the shape.
object oTarget = GetEnteringObject();
//FloatingTextStringOnCreature(GetName(oTarget)+" entered Aura of Sadness", oBinder, FALSE);
if (GetIsFriend(oTarget, oBinder) && oTarget != oBinder)
{
effect eLink = EffectLinkEffects(eLink, EffectImmunity(IMMUNITY_TYPE_DISEASE));
eLink = EffectLinkEffects(eLink, EffectImmunity(IMMUNITY_TYPE_POISON));
eLink = EffectLinkEffects(eLink, EffectVisualEffect(VFX_DUR_MIND_AFFECTING_POSITIVE));
ApplyEffectToObject(DURATION_TYPE_PERMANENT, SupernaturalEffect(eLink), oTarget);
//FloatingTextStringOnCreature(GetName(oTarget)+" Aura of Sadness effect applied", oBinder, FALSE);
}
}