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

21 lines
915 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.

/////////////////////////////////////////////////////////
// Healer's Balm
// sp_healrbm.nss
/////////////////////////////////////////////////////////
/*Healers Balm: This smooth, sweet-smelling balm
allows a healer to better soothe the effects of wounds, disease,
and poison. Healers balm provides a +1 alchemical
bonus on Heal checks made to help an affected creature.
The effects of healers balm last for 1 minute.
One dose of healers balm is enough to coat one
Medium creature. Applying healers balm is a standard
action that provokes attacks of opportunity. It can be
applied as part of a standard action made to administer
first aid, treat a wound, or treat poison. */
void main()
{
object oPC = OBJECT_SELF;
ApplyEffectToObject(DURATION_TYPE_TEMPORARY, EffectSkillIncrease(SKILL_HEAL, 1), oPC, TurnsToSeconds(1));
SendMessageToPC(oPC, "You coat your hands in Healer's Balm.");
}