NWNDS/nwnds_module/airlessaura1.nss
Jaysyn904 de24f81734 Added NWN Dark Sun module contents
Added NWN Dark Sun module contents.
2021-07-12 21:24:46 -04:00

15 lines
263 B
Plaintext

#include "NW_I0_SPELLS"
#include "inc_suffocate"
void main()
{
//Declare major variables
object oCaster = GetAreaOfEffectCreator();
object oTarget = GetEnteringObject();
if(GetIsEnemy(oTarget, oCaster))
{
Suffocate(oTarget);
}
}