2021-12-29 01:54:32 -05:00
|
|
|
////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
// Green Guardian Gargoyle Hold Attack
|
|
|
|
//
|
|
|
|
// CR_CLAW_GGG_L
|
|
|
|
//
|
|
|
|
// Keeps track of when the left claw hits
|
|
|
|
// and resets the counter every round.
|
|
|
|
//
|
|
|
|
////////////////////////////////////////////
|
|
|
|
#include "prc_inc_combmove"
|
|
|
|
#include "prc_misc_const"
|
|
|
|
|
|
|
|
void main()
|
|
|
|
{
|
|
|
|
|
|
|
|
object oGGG = OBJECT_SELF;
|
2023-08-10 23:50:38 -04:00
|
|
|
object oItem = PRCGetSpellCastItem();
|
|
|
|
object oTarget = PRCGetSpellTargetObject();
|
2021-12-29 01:54:32 -05:00
|
|
|
string sID = GetObjectUUID(oGGG);
|
|
|
|
|
|
|
|
string sLeft = sID + "LeftClaw";
|
|
|
|
|
|
|
|
SetLocalInt(oTarget, sLeft, 1);
|
|
|
|
|
|
|
|
DelayCommand(6.0f, SetLocalInt(oTarget, sLeft, 0));
|
|
|
|
|
|
|
|
}
|