PRC8/nwn/nwnprc/trunk/spells/sp_greenfire_en.nss
Jaysyn904 6ec137a24e Updated AMS marker feats
Updated AMS marker feats.  Removed arcane & divine marker feats.  Updated Dread Necromancer for epic progression. Updated weapon baseitem models.  Updated new weapons for crafting & npc equip.
 Updated prefix.  Updated release archive.
2024-02-11 14:01:05 -05:00

21 lines
577 B
Plaintext

#include "prc_inc_spells"
#include "spinc_greenfire"
void main()
{
// When the caster poofs, all functions calling GetAreaOfEffectCreator() will
// fail, so in that case terminate the spell (taken from NWN cloudkill).
object oCaster = GetAreaOfEffectCreator();
if (!GetIsObjectValid(oCaster))
{
DestroyObject(OBJECT_SELF);
return;
}
// Get the adjusted damage type.
int nDamageType = PRCGetElementalDamageType(DAMAGE_TYPE_ACID, oCaster);
// Run the greenfire logic on the entering object.
DoGreenfire(nDamageType, oCaster, GetEnteringObject());
}