PRC8/nwn/nwnprc/trunk/newspellbook/tob_event_girwfr.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

18 lines
493 B
Plaintext

//////////////////////////////////////////////////
// Girallon Windmill Flesh Rip Onhit
// tob_event_girwfr.nss
// Tenjac 10/17/07
//////////////////////////////////////////////////
#include "prc_inc_spells"
void main()
{
object oSpellOrigin = OBJECT_SELF;
object oTarget = PRCGetSpellTargetObject(oSpellOrigin);
int nHits = GetLocalInt(oTarget, "TOB_GIR_WINDMILL_FR");
nHits ++;
SetLocalInt(oTarget, "TOB_GIR_WINDMILL_FR", nHits);
}