33 lines
1.0 KiB
Plaintext
33 lines
1.0 KiB
Plaintext
//://///////////////////////////////////////////////////////////////////////////
|
|
/*
|
|
swm_bloodfly_ent.nss [Jaysyn / 20221230]
|
|
|
|
Bloodflies bite and seek to draw blood from their
|
|
targets. A bloodfly swarm deals 1d6 damage to any
|
|
creature whose space it occupies at the end of its move.
|
|
|
|
Blood Drain (Ex): Each creature that begins its turn
|
|
with a mini-kank swarm in its space suffers 1 points of
|
|
Constitution damage from blood loss as the mini-kanks
|
|
feed (Reflex DC 17 half). The save DC is Dexterity-based
|
|
and includes a +2 racial bonus.
|
|
|
|
Distraction (Ex): Any living creature that begins its
|
|
turns with a mini-kank swarm in its space must succeed
|
|
on a DC 12 Fortitude save or be nauseated for 1 round.
|
|
The save DC is Constitution-based.
|
|
|
|
*/
|
|
//://///////////////////////////////////////////////////////////////////////////
|
|
|
|
#include "nw_i0_spells"
|
|
#include "NW_I0_GENERIC"
|
|
#include "prc_inc_spells"
|
|
|
|
void main()
|
|
{
|
|
//:: Declare major variables
|
|
object oCaster = GetAreaOfEffectCreator();
|
|
object oTarget = GetEnteringObject();
|
|
|
|
} |