Further file organization

Further file organization
This commit is contained in:
Jaysyn904
2023-08-23 22:11:00 -04:00
parent 3062876237
commit d87fe14826
22364 changed files with 0 additions and 3253 deletions

View File

@@ -0,0 +1,25 @@
//////////////////////////////////////////////////////////////
// Weeping Stone
// sp_weepstn.nss
/////////////////////////////////////////////////////////////
/*
Weeping Stone: Created through alchemical processes
that inflict terrible<6C>and sometimes lethal<61>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));
}
}