RATDOG/_module/nss/ra_slp_2d4_min.nss
Jaysyn904 e4a37cd868 Added creatures & models
Added creatures, portraits & models in support of Horsefly Swamp Update.
2023-08-12 00:55:47 -04:00

23 lines
705 B
Plaintext

//::///////////////////////////////////////////////
//:: Sleep 2d4 Minutes
//:: ra_slp_2d4_min.nss
//:: Copyright (c) 2023 Project RATDOG
//:://////////////////////////////////////////////
/*
Character is rendered unconscious for
2d4 minutes.
*/
//:://////////////////////////////////////////////
//:: Created By: Jaysyn
//:: Created On: 20230811
//:://////////////////////////////////////////////
void main()
{
object oTarget = OBJECT_SELF;
effect eSleep = EffectSleep();
effect eVis = EffectVisualEffect(VFX_DUR_MIND_AFFECTING_DISABLED);
effect eLink = EffectLinkEffects(eSleep, eVis);
ApplyEffectToObject(DURATION_TYPE_TEMPORARY, eLink, oTarget, RoundsToSeconds(d4(2)));
}