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

20 lines
797 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.

////////////////////////////////////////////////////////
// Fareye Oil
// sp_fareyeoil.nss
////////////////////////////////////////////////////////
/* Fareye Oil: When applied to the eyes, this clear oil
sharpens the users vision for a short time, providing a
+1 alchemical bonus on Spot checks for 1 minute.
One dose of fareye oil is enough to affect the eyes of
a creature of any size, but the creature must have eyes
to gain any benefit from the oil. Applying fareye oil is a
standard action that provokes attacks of opportunity. */
#include "prc_inc_spells"
void main()
{
object oTarget = PRCGetSpellTargetObject();
ApplyEffectToObject(DURATION_TYPE_TEMPORARY, EffectSkillIncrease(SKILL_SPOT, 1), oTarget, TurnsToSeconds(1));
SendMessageToPC(oTarget, "Your vision sharpens.");
}