141 lines
4.4 KiB
Plaintext
141 lines
4.4 KiB
Plaintext
//::///////////////////////////////////////////////
|
|
//:: Searing Light
|
|
//:: s_SearLght.nss
|
|
//:: Copyright (c) 2000 Bioware Corp.
|
|
//:://////////////////////////////////////////////
|
|
//:: Focusing holy power like a ray of the sun, you project
|
|
//:: a blast of light from your open palm. You must succeed
|
|
//:: at a ranged touch attack to strike your target. A creature
|
|
//:: struck by this ray of light suffers 1d8 points of damage
|
|
//:: per two caster levels (maximum 5d8). Undead creatures suffer
|
|
//:: 1d6 points of damage per caster level (maximum 10d6), and
|
|
//:: undead creatures particularly vulnerable to sunlight, such
|
|
//:: as vampires, suffer 1d8 points of damage per caster level
|
|
//:: (maximum 10d8). Constructs and inanimate objects suffer only
|
|
//:: 1d6 points of damage per two caster levels (maximum 5d6).
|
|
//:://////////////////////////////////////////////
|
|
//:: Created By: Keith Soleski
|
|
//:: Created On: 02/05/2001
|
|
//:://////////////////////////////////////////////
|
|
//:: VFX Pass By: Preston W, On: June 25, 2001
|
|
|
|
|
|
#include "ke_spell_factor"
|
|
|
|
#include "NW_I0_SPELLS"
|
|
#include "x2_inc_spellhook"
|
|
|
|
void main()
|
|
{
|
|
|
|
/*
|
|
Spellcast Hook Code
|
|
Added 2003-06-23 by GeorgZ
|
|
If you want to make changes to all spells,
|
|
check x2_inc_spellhook.nss to find out more
|
|
|
|
*/
|
|
|
|
if (!X2PreSpellCastCode())
|
|
{
|
|
// If code within the PreSpellCastHook (i.e. UMD) reports FALSE, do not run this spell
|
|
return;
|
|
}
|
|
|
|
// End of Spell Cast Hook
|
|
|
|
|
|
//Declare major variables
|
|
object oCaster = OBJECT_SELF;
|
|
object oTarget = GetSpellTargetObject();
|
|
int nMetaMagic = GetMetaMagicFeat();
|
|
int nCasterLevel = GetCasterLevel(oCaster);
|
|
int nDamage;
|
|
int nMax;
|
|
effect eDam;
|
|
effect eVis = EffectVisualEffect(VFX_IMP_SUNSTRIKE);
|
|
effect eRay = EffectBeam(VFX_BEAM_HOLY, OBJECT_SELF, BODY_NODE_HAND);
|
|
if(!GetIsReactionTypeFriendly(oTarget))
|
|
{
|
|
//Fire cast spell at event for the specified target
|
|
SignalEvent(oTarget, EventSpellCastAt(OBJECT_SELF, SPELL_SEARING_LIGHT));
|
|
eRay = EffectBeam(VFX_BEAM_HOLY, OBJECT_SELF, BODY_NODE_HAND);
|
|
//Make an SR Check
|
|
if (!MyResistSpell(oCaster, oTarget))
|
|
{
|
|
//Limit caster level
|
|
if (nCasterLevel > 40)
|
|
{
|
|
nCasterLevel = 40;
|
|
}
|
|
//Check for racial type undead
|
|
// if (GetRacialType(oTarget) == RACIAL_TYPE_UNDEAD)
|
|
// {
|
|
// nDamage = d6(nCasterLevel);
|
|
// nMax = 6;
|
|
// }
|
|
//Check for racial type construct
|
|
// else if (GetRacialType(oTarget) == RACIAL_TYPE_CONSTRUCT)
|
|
// {
|
|
// nCasterLevel /= 2;
|
|
// if(nCasterLevel == 0)
|
|
// {
|
|
// nCasterLevel = 1;
|
|
// }
|
|
// nDamage = d6(nCasterLevel);
|
|
// nMax = 6;
|
|
// }
|
|
// else
|
|
// {
|
|
nCasterLevel = nCasterLevel;
|
|
if(nCasterLevel == 0)
|
|
{
|
|
nCasterLevel = 1;
|
|
}
|
|
nDamage = d6(nCasterLevel)+30;
|
|
|
|
// nMax = (6*(nCasterLevel))+30;
|
|
// }
|
|
|
|
//Make metamagic checks
|
|
if (nMetaMagic == METAMAGIC_MAXIMIZE)
|
|
{
|
|
nDamage = (6*(nCasterLevel))+30;
|
|
}
|
|
if (nMetaMagic == METAMAGIC_EMPOWER)
|
|
{
|
|
nDamage = nDamage + (nDamage/2);
|
|
}
|
|
|
|
|
|
nDamage = (nDamage*13)/10;
|
|
|
|
//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 :) //
|
|
|
|
|
|
//Set the damage effect
|
|
eDam = EffectDamage(nDamage2, DAMAGE_TYPE_DIVINE);
|
|
//Apply the damage effect and VFX impact
|
|
ApplyEffectToObject(DURATION_TYPE_INSTANT, eDam, oTarget);
|
|
DelayCommand(0.5, ApplyEffectToObject(DURATION_TYPE_INSTANT, eVis, oTarget));
|
|
//ApplyEffectToObject(DURATION_TYPE_TEMPORARY, eRay, oTarget, 1.0);
|
|
}
|
|
}
|
|
ApplyEffectToObject(DURATION_TYPE_TEMPORARY, eRay, oTarget, 1.7);
|
|
}
|
|
|