Alangara_PRC8/_removed/x2_s0_glphwardx.nss
Jaysyn904 86feb9ca6f Initial commit
Initial commit.
2024-06-05 21:21:06 -04:00

140 lines
4.6 KiB
Plaintext

//::///////////////////////////////////////////////
//:: Glyph of Warding Heartbet
//:: x2_o0_glyphhb
//:: Copyright (c) 2003 Bioware Corp.
//:://////////////////////////////////////////////
/*
Default Glyph of warding damage script
This spellscript is fired when someone triggers
a player cast Glyph of Warding
Check x2_o0_hhb.nss and the Glyph of Warding
placeable object for details
*/
//:://////////////////////////////////////////////
//:: Created By: Georg Zoeller
//:: Created On: 2003-09-02
//:://////////////////////////////////////////////
#include "ke_spell_factor"
#include "x0_i0_spells"
void DoDamage(int nDamage, object oTarget)
{
effect eVis = EffectVisualEffect(VFX_IMP_SONIC);
effect eDam = EffectDamage(nDamage, DAMAGE_TYPE_SONIC);
if(nDamage > 0)
{
//Apply VFX impact and damage effect
ApplyEffectToObject(DURATION_TYPE_INSTANT, eVis, oTarget);
DelayCommand(0.01, ApplyEffectToObject(DURATION_TYPE_INSTANT, eDam, oTarget));
}
}
void main()
{
//Declare major variables
object oTarget = GetLocalObject(OBJECT_SELF,"X2_GLYPH_LAST_ENTER");
location lTarget = GetLocation(OBJECT_SELF);
effect eDur = EffectVisualEffect(445);
int nDamage;
int nCasterLevel = GetLocalInt(OBJECT_SELF,"X2_PLC_GLYPH_CASTER_LEVEL");
int nMetaMagic = GetLocalInt(OBJECT_SELF,"X2_PLC_GLYPH_CASTER_METAMAGIC");
object oCreator = GetLocalObject(OBJECT_SELF,"X2_PLC_GLYPH_CASTER") ;
if ( GetLocalInt (OBJECT_SELF,"X2_PLC_GLYPH_PLAYERCREATED") == 0 )
{
oCreator = OBJECT_SELF;
}
if (!GetIsObjectValid(oCreator))
{
DestroyObject(OBJECT_SELF);
return;
}
int nDice = nCasterLevel;
if (nDice > 40)
nDice = 40;
else if (nDice <1 )
nDice = 1;
effect eDam;
effect eExplode = EffectVisualEffect(459);
//Check the faction of the entering object to make sure the entering object is not in the casters faction
ApplyEffectAtLocation(DURATION_TYPE_INSTANT, eExplode, lTarget);
//Cycle through the targets in the explosion area
oTarget = GetFirstObjectInShape(SHAPE_SPHERE, RADIUS_SIZE_LARGE, lTarget, TRUE, OBJECT_TYPE_CREATURE | OBJECT_TYPE_DOOR | OBJECT_TYPE_PLACEABLE);
while(GetIsObjectValid(oTarget))
{
if (spellsIsTarget(oTarget,SPELL_TARGET_STANDARDHOSTILE,oCreator))
{
//Fire cast spell at event for the specified target
SignalEvent(oTarget, EventSpellCastAt(oCreator, GetSpellId()));
//Make SR check
if (!MyResistSpell(oCreator, oTarget))
{
nDamage = (d6(nDice))+30;
//nDamage = d8(nDice);
//Enter Metamagic conditions
if (nMetaMagic == METAMAGIC_MAXIMIZE)
{
nDamage = (6*(nDice))+30;;//Damage is at max
}
else if (nMetaMagic == METAMAGIC_EMPOWER)
{
nDamage = nDamage + (nDamage/2);//Damage/Healing is +50%
}
//Change damage according to Reflex, Evasion and Improved Evasion
nDamage = GetReflexAdjustedDamage(nDamage, oTarget, GetSpellSaveDC(), SAVING_THROW_TYPE_SONIC, oCreator);
//starting the grand circus of importing and converting back and forth //
float fDamage = IntToFloat(nDamage);
// multiplaying damage with fFactor //
float fFactor = CalculateFactor();
fDamage = fDamage * fFactor;
// converting the float damage back to INT damage so we can use it again //
int nDamage2 = FloatToInt(fDamage);
// Done and remember to change nDamage with nDamage2 below :) //
//----------------------------------------------------------
// Have the creator do the damage so he gets feedback strings
//----------------------------------------------------------
if (oCreator != OBJECT_SELF)
{
AssignCommand(oCreator, DoDamage(nDamage2,oTarget));
}
else
{
DoDamage(nDamage2,oTarget);
}
}
}
//Get next target in the sequence
oTarget = GetNextObjectInShape(SHAPE_SPHERE, RADIUS_SIZE_LARGE, lTarget, TRUE, OBJECT_TYPE_CREATURE | OBJECT_TYPE_DOOR | OBJECT_TYPE_PLACEABLE);
}
}