PRC8/nwn/nwnprc/trunk/scripts/hellgrasp.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
617 B
Plaintext

//Hellfire Grasp by Sir Attilla
//Fixed some run-time errors that caused spell to do nothing
//Aaon Graywolf - Jan 9, 2004
#include "prc_inc_sp_tch"
void main()
{
//Declare major variables
object oTarget = PRCGetSpellTargetObject();
int nDamage = d6(1);
effect eVis = EffectVisualEffect(VFX_IMP_FLAME_S);
effect eDam = EffectDamage(nDamage, DAMAGE_TYPE_FIRE);
//Main Spell Body
int iHit = PRCDoMeleeTouchAttack(oTarget);;
if (iHit > 0)
{
ApplyEffectToObject(DURATION_TYPE_INSTANT, eDam, oTarget);
ApplyEffectToObject(DURATION_TYPE_INSTANT, eVis, oTarget);
}
}