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

24 lines
829 B
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.

///////////////////////////////////////////////////////
// Nature's Draught
// sp_natdraught.nss
///////////////////////////////////////////////////////
/*
Natures Draught: This substance is a murky, pungent
liquid. When consumed, natures draught causes subtle
changes in the users scent. Animals respond well to a
character who has consumed natures draught, finding
her less threatening and easier to trust. Drinking a vial
of natures draught provides a +1 alchemical bonus on
Handle Animal and wild empathy checks made during
the next 12 hours.
*/
#include "prc_inc_spells"
void main()
{
object oTarget = OBJECT_SELF;
ApplyEffectToObject(DURATION_TYPE_TEMPORARY, EffectSkillIncrease(SKILL_ANIMAL_EMPATHY,1), oTarget, HoursToSeconds(12));
SendMessageToPC(oTarget, "Your scent changes subtley");
}