PRC8_fork/nwn/trunk/spells/sp_blendcrm.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

24 lines
885 B
Plaintext

//////////////////////////////////////////////////
// Blend Cream
// sp_blendcrm.nss
///////////////////////////////////////////////////
/*
Blend Cream: This pale gray cream dulls the color of
flesh, fur, scales, and hair. It allows those affected to better
blend with background and shadow, making it easier to
hide.
Applying blend cream is a standard action that provokes
attacks of opportunity. Blend cream provides a +1
alchemical bonus on Hide checks. The effects of blend
cream last for 1 hour. Blend cream gives no ability to hide
in plain sight or without sufficient cover.
*/
#include "prc_inc_spells"
void main()
{
object oTarget = PRCGetSpellTargetObject();
ApplyEffectToObject(DURATION_TYPE_TEMPORARY, EffectSkillIncrease(SKILL_HIDE, 1), oTarget, HoursToSeconds(1));
SendMessageToPC(oTarget, "The color of your skin, hair, and clothing dulls.");
}