Further file organization
Further file organization
This commit is contained in:
24
nwn/nwnprc/trunk/spells/sp_natdraught.nss
Normal file
24
nwn/nwnprc/trunk/spells/sp_natdraught.nss
Normal file
@@ -0,0 +1,24 @@
|
||||
///////////////////////////////////////////////////////
|
||||
// Nature's Draught
|
||||
// sp_natdraught.nss
|
||||
///////////////////////////////////////////////////////
|
||||
|
||||
/*
|
||||
Nature<EFBFBD>s Draught: This substance is a murky, pungent
|
||||
liquid. When consumed, nature<72>s draught causes subtle
|
||||
changes in the user<65>s scent. Animals respond well to a
|
||||
character who has consumed nature<72>s draught, finding
|
||||
her less threatening and easier to trust. Drinking a vial
|
||||
of nature<72>s 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");
|
||||
}
|
Reference in New Issue
Block a user