Jaysyn904 22947ad4b6 Initial Upload
Initial Upload
2023-08-08 16:22:17 -04:00

67 lines
2.0 KiB
Plaintext

//::///////////////////////////////////////////////
//:: Bless
//:: x0_s0_divfav.nss
//:: Copyright (c) 2001 Bioware Corp.
//:://////////////////////////////////////////////
/*
+1 bonus to attack and damage for every three
caster levels (+1 to max +5) \
NOTE: Official rules say +6, we can only go to +5
Duration: 1 turn
*/
//:://////////////////////////////////////////////
//:: Created By: Brent Knowles Modified by Tab, Realms of Trinity
//:: Created On: July 15, 2002
//:://////////////////////////////////////////////
//:: VFX Pass By:
#include "NW_I0_SPELLS"
void RemoveEffectsFromSpell1(object oTarget, int SpellID)
{
effect eLook = GetFirstEffect(oTarget);
while (GetIsEffectValid(eLook)) {
if (GetEffectSpellId(eLook) == SpellID)
RemoveEffect(oTarget, eLook);
eLook = GetNextEffect(oTarget);
}
}
void main()
{
//Declare major variables
object oTarget;
effect eVis = EffectVisualEffect(VFX_IMP_HEAD_HOLY);
effect eImpact = EffectVisualEffect(VFX_FNF_LOS_HOLY_30);
int nScale = (GetCasterLevel(OBJECT_SELF) / 3);
// * must fall between +1 and +5
if (nScale < 1)
nScale = 1;
else
if (nScale > 5)
nScale = 5;
// * determine the damage bonus to apply
effect eAttack = EffectAttackIncrease(nScale);
effect eDamage = EffectDamageIncrease(nScale, DAMAGE_TYPE_MAGICAL);
effect eDur = EffectVisualEffect(VFX_DUR_CESSATE_POSITIVE);
effect eLink = EffectLinkEffects(eAttack, eDamage);
eLink = EffectLinkEffects(eLink, eDur);
int nDuration = 1; // * Duration 1 turn
//Apply Impact
ApplyEffectAtLocation(DURATION_TYPE_INSTANT, eImpact, GetSpellTargetLocation());
oTarget = OBJECT_SELF;
//Fire spell cast at event for target
SignalEvent(oTarget, EventSpellCastAt(OBJECT_SELF, 414, FALSE));
//Apply VFX impact and bonus effects
RemoveEffectsFromSpell1(OBJECT_SELF,SPELL_DIVINE_FAVOR);
ApplyEffectToObject(DURATION_TYPE_INSTANT, eVis, oTarget);
ApplyEffectToObject(DURATION_TYPE_TEMPORARY, eLink, oTarget, TurnsToSeconds(nDuration));
}