Added creatures & models

Added creatures, portraits & models in support of Horsefly Swamp Update.
This commit is contained in:
Jaysyn904
2023-08-12 00:55:47 -04:00
parent 71058b22ed
commit e4a37cd868
346 changed files with 1982132 additions and 21137 deletions

View File

@@ -0,0 +1,22 @@
//::///////////////////////////////////////////////
//:: 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)));
}