PRC8/nwn/trunk/spells/sp_keenearb.nss
Jaysyn904 5914ed2ab5 Updated Release Archive
Updated Release Archive.  Fixed Mage-killer prereqs.  Removed old LETO & ConvoCC related files.  Added organized spell scroll store.  Fixed Gloura spellbook. Various TLK fixes.  Reorganized Repo.  Removed invalid user folders. Added DocGen back in.
2023-08-22 10:00:21 -04:00

28 lines
1.0 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.

//////////////////////////////////////////////////////////////
// Keenear Powder
// sp_keenear.nss
//////////////////////////////////////////////////////////////
/*
Keenear Powder: This dry white powder sharpens a
creatures hearing when applied to the ear. The powder
is effective for only a short time, so it is more often used
by those trying to avoid guards or sentries than by those
tasked with guarding an area for a longer time. Keenear
powder provides a +1 alchemical bonus on Listen checks
for 1 minute.
One dose of keenear powder is enough to affect the
hearing of a creature of any size, but the creature must
have ears to gain any benefit from the powder. Applying
keenear powder is a standard action that provokes attacks
of opportunity.
*/
#include "prc_inc_spells"
void main()
{
object oTarget = PRCGetSpellTargetObject();
ApplyEffectToObject(DURATION_TYPE_TEMPORARY, EffectSkillIncrease(SKILL_LISTEN, 1), oTarget, TurnsToSeconds(1));
SendMessageToPC(oTarget, "Your hearing is enchanced.");
}