34 lines
710 B
Plaintext
34 lines
710 B
Plaintext
|
///::///////////////////////////////////////////////
|
||
|
//:: Acid Fog: On Enter
|
||
|
//:: NW_S0_AcidFogA.nss
|
||
|
//:: Copyright (c) 2001 Bioware Corp.
|
||
|
//:://////////////////////////////////////////////
|
||
|
/*
|
||
|
All creatures within the AoE take 2d6 acid damage
|
||
|
per round and upon entering if they fail a Fort Save
|
||
|
their movement is halved.
|
||
|
|
||
|
**EDITED Nov 18/02 - Keith Warner**
|
||
|
Only enemies should take the dirge damage
|
||
|
*/
|
||
|
//:://////////////////////////////////////////////
|
||
|
//:: Created By: Preston Watamaniuk
|
||
|
//:: Created On: May 17, 2001
|
||
|
//:://////////////////////////////////////////////
|
||
|
|
||
|
#include "x0_i0_spells"
|
||
|
|
||
|
#include "x2_inc_spellhook"
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
DoDirgeEffect(GetEnteringObject());
|
||
|
}
|
||
|
|
||
|
|