Initial Commit

Initial Commit.
This commit is contained in:
Jaysyn904
2025-09-14 15:40:46 -04:00
parent 7083b33d71
commit 1eefc84201
19230 changed files with 11539227 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
//:://////////////////////////////////////////////////
//:: NW_C2_DEFAULT6
//:: Default OnDamaged handler
/*
If already fighting then ignore, else determine
combat round
*/
//:://////////////////////////////////////////////////
//:: Copyright (c) 2002 Floodgate Entertainment
//:: Created By: Naomi Novik
//:: Created On: 12/22/2002
//:://////////////////////////////////////////////////
#include "nw_i0_generic"
void main()
{
object oMod;
oMod=GetModule();
location lTarget;
lTarget =GetLocation(OBJECT_SELF);
ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_FNF_SUMMON_MONSTER_2), OBJECT_SELF);
CreateObject(OBJECT_TYPE_PLACEABLE, "invisiblemarker", lTarget);
ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectDamage(300, DAMAGE_TYPE_DIVINE, DAMAGE_POWER_ENERGY), OBJECT_SELF);
ExecuteScript("skel_spawner", oMod);
}