82 lines
3.2 KiB
Plaintext
82 lines
3.2 KiB
Plaintext
//::///////////////////////////////////////////////
|
|
//:: Gaze attack for shifter forms
|
|
//:: x2_s1_petrgaze
|
|
//:: Copyright (c) 2003 Bioware Corp.
|
|
//:://////////////////////////////////////////////
|
|
/*
|
|
|
|
Petrification gaze for polymorph type
|
|
basilisk and medusa
|
|
|
|
*/
|
|
//:://////////////////////////////////////////////
|
|
//:: Created By: Georg Zoeller
|
|
//:: Created On: July, 09, 2003
|
|
//:://////////////////////////////////////////////
|
|
|
|
#include "x0_i0_spells"
|
|
#include "x2_inc_shifter"
|
|
|
|
void main()
|
|
{
|
|
//--------------------------------------------------------------------------
|
|
// Enforce artifical use limit on that ability
|
|
//--------------------------------------------------------------------------
|
|
if(ShifterDecrementGWildShapeSpellUsesLeft() < 1)
|
|
{
|
|
FloatingTextStrRefOnCreature(83576, OBJECT_SELF);
|
|
return;
|
|
}
|
|
|
|
//--------------------------------------------------------------------------
|
|
// Make sure we are not blind
|
|
//--------------------------------------------------------------------------
|
|
if(GZCanNotUseGazeAttackCheck(OBJECT_SELF))
|
|
{
|
|
return;
|
|
}
|
|
|
|
//--------------------------------------------------------------------------
|
|
// Calculate Save DC
|
|
//--------------------------------------------------------------------------
|
|
int nDC = ShifterGetSaveDC(OBJECT_SELF,SHIFTER_DC_EASY_MEDIUM);
|
|
|
|
float fDelay;
|
|
object oTarget = GetSpellTargetObject();
|
|
int nHitDice = GetCasterLevel(OBJECT_SELF);
|
|
int nSpellID = GetSpellId();
|
|
object oSelf = OBJECT_SELF;
|
|
|
|
//--------------------------------------------------------------------------
|
|
// Loop through all available targets in spellcone
|
|
//--------------------------------------------------------------------------
|
|
location lFinalTarget = GetSpellTargetLocation();
|
|
vector vFinalPosition;
|
|
if(lFinalTarget == GetLocation(OBJECT_SELF))
|
|
{
|
|
// Since the target and origin are the same, we have to determine the
|
|
// direction of the spell from the facing of OBJECT_SELF (which is more
|
|
// intuitive than defaulting to East everytime).
|
|
|
|
// In order to use the direction that OBJECT_SELF is facing, we have to
|
|
// instead we pick a point slightly in front of OBJECT_SELF as the target.
|
|
vector lTargetPosition = GetPositionFromLocation(lFinalTarget);
|
|
vFinalPosition.x = lTargetPosition.x + cos(GetFacing(OBJECT_SELF));
|
|
vFinalPosition.y = lTargetPosition.y + sin(GetFacing(OBJECT_SELF));
|
|
lFinalTarget = Location(GetAreaFromLocation(lFinalTarget),vFinalPosition,GetFacingFromLocation(lFinalTarget));
|
|
}
|
|
oTarget = GetFirstObjectInShape(SHAPE_SPELLCONE, 11.0, lFinalTarget, TRUE);
|
|
while(GetIsObjectValid(oTarget))
|
|
{
|
|
if(spellsIsTarget(oTarget,SPELL_TARGET_STANDARDHOSTILE,OBJECT_SELF) && oTarget != OBJECT_SELF)
|
|
{
|
|
// Let target know the negative spell has been cast
|
|
SignalEvent(oTarget, EventSpellCastAt(OBJECT_SELF, nSpellID));
|
|
fDelay = GetDistanceBetween(OBJECT_SELF, oTarget)/20;
|
|
DelayCommand(fDelay, DoPetrification(nHitDice, oSelf, oTarget, nSpellID, nDC));
|
|
//Get next target in spell area
|
|
}
|
|
oTarget = GetNextObjectInShape(SHAPE_SPELLCONE, 11.0, lFinalTarget, TRUE);
|
|
}
|
|
}
|