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

25 lines
745 B
Plaintext

//////////////////////////////////////////////////////////////
// Weeping Stone
// sp_weepstn.nss
/////////////////////////////////////////////////////////////
/*
Weeping Stone: Created through alchemical processes
that inflict terrible—and sometimes lethal—pain on a
living being, a weeping stone causes anyone touching it to
his or her face to begin to weep and feel great sorrow. Such a
character is considered shaken for 1d6 rounds.
*/
#include "prc_inc_sp_tch"
void main()
{
object oTarget = PRCGetSpellTargetObject();
int nTouch = PRCDoRangedTouchAttack(oTarget);
if(nTouch)
{
int nRounds = d6(1);
SPApplyEffectToObject(DURATION_TYPE_TEMPORARY, EffectShaken(), oTarget, RoundsToSeconds(nRounds));
}
}