Initial upload.
Adding base PRC 4.19a files to repository.
This commit is contained in:
20
trunk/spells/sp_fareyeoil.nss
Normal file
20
trunk/spells/sp_fareyeoil.nss
Normal file
@@ -0,0 +1,20 @@
|
||||
////////////////////////////////////////////////////////
|
||||
// Fareye Oil
|
||||
// sp_fareyeoil.nss
|
||||
////////////////////////////////////////////////////////
|
||||
/* Fareye Oil: When applied to the eyes, this clear oil
|
||||
sharpens the user<65>s 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.");
|
||||
}
|
Reference in New Issue
Block a user