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

56 lines
1.8 KiB
Plaintext

//::///////////////////////////////////////////////
//:: x1_s2_deatharrow
//:: Copyright (c) 2001 Bioware Corp.
//:://////////////////////////////////////////////
/*
Seeker Arrow
- creates an arrow that automatically hits target.
- At level 4 the arrow does +2 magic damage
- at level 5 the arrow does +3 magic damage
- normal arrow damage, based on base item type
- Must have shortbow or longbow in hand.
*/
//:://////////////////////////////////////////////
//:: Created By:
//:: Created On:
//:://////////////////////////////////////////////
#include "X0_I0_SPELLS"
#include "prc_x2_itemprop"
void main()
{
int nBonus = nBonus = ArcaneArcherCalculateBonus();
object oTarget = GetSpellTargetObject();
if (GetIsObjectValid(oTarget) == TRUE)
{
// * Roll Touch Attack
int nTouch = TouchAttackRanged(oTarget, TRUE);
if (nTouch > 0)
{
int nDamage = ArcaneArcherDamageDoneByBow((nTouch ==2));
if (nDamage > 0)
{
effect ePhysical = EffectDamage(nDamage, DAMAGE_TYPE_PIERCING,IPGetDamagePowerConstantFromNumber(nBonus));
effect eMagic = EffectDamage(nBonus, DAMAGE_TYPE_MAGICAL);
ApplyEffectToObject(DURATION_TYPE_INSTANT, ePhysical, oTarget);
ApplyEffectToObject(DURATION_TYPE_INSTANT, eMagic, oTarget);
//Fire cast spell at event for the specified target
SignalEvent(oTarget, EventSpellCastAt(OBJECT_SELF, GetSpellId()));
// * if target fails a save DC20 they die
if (MySavingThrow(SAVING_THROW_FORT, oTarget, 20) == 0)
{
effect eDeath = EffectDeath();
ApplyEffectToObject(DURATION_TYPE_INSTANT, eDeath, oTarget);
}
}
}
}
}