Ancordia_PRC8/_removed/x2_s2_divwrath.nss
2024-06-14 00:06:09 -04:00

143 lines
4.4 KiB
Plaintext

//::///////////////////////////////////////////////
//:: Divine Wrath
//:: x2_s2_DivWrath
//:: Copyright (c) 2003 Bioware Corp.
//:://////////////////////////////////////////////
/*
The Divine Champion is able to channel a portion
of their gods power once per day giving them a +3
bonus on attack rolls, damage, and saving throws
for a number of rounds equal to their Charisma
bonus. They also gain damage reduction of +1/5.
At 10th level, an additional +2 is granted to
attack rolls and saving throws.
Epic Progression
Every five levels past 10 an additional +2
on attack rolls, damage and saving throws is added. As well the damage
reduction increases by 5 and the damage power required to penetrate
damage reduction raises by +1 (to a maximum of /+5).
*/
//:://////////////////////////////////////////////
//:: Created By: Andrew Nobbs
//:: Created On: Feb 05, 2003
//:: Updated On: Jul 21, 2003 Georg Zoeller -
// Epic Level progession
//:://////////////////////////////////////////////
/*
Patch 1.70
- did signalized wrong spell ID
*/
#include "nw_i0_spells"
void main()
{
//Declare major variables
object oTarget = OBJECT_SELF;
int nDuration = GetAbilityModifier(ABILITY_CHARISMA, OBJECT_SELF);
//Check that if nDuration is not above 0, make it 1.
if(nDuration <= 0)
{
FloatingTextStrRefOnCreature(100967,OBJECT_SELF);
return;
}
effect eVis = EffectVisualEffect(VFX_IMP_HEAD_HOLY);
eVis = EffectLinkEffects(EffectVisualEffect(VFX_IMP_GOOD_HELP),eVis);
effect eAttack, eDamage, eSaving, eReduction;
//Fire cast spell at event for the specified target
SignalEvent(oTarget, EventSpellCastAt(OBJECT_SELF, 622, FALSE));
int nAttackB = 3;
int nDamageB = DAMAGE_BONUS_3;
int nSaveB = 3 ;
int nDmgRedB = 5;
int nDmgRedP = DAMAGE_POWER_PLUS_ONE;
// --------------- Epic Progression ---------------------------
int nLevelDiv = GetLevelByClass(CLASS_TYPE_DIVINECHAMPION,oTarget);
int nLevelPal = GetLevelByClass(CLASS_TYPE_PALADIN,oTarget)-10;
int nLevelBlg = GetLevelByClass(CLASS_TYPE_BLACKGUARD,oTarget);
int nLevel = nLevelDiv;
if (nLevelPal > nLevel) nLevel = nLevelPal;
if (nLevelBlg > nLevel) nLevel = nLevelBlg;
int nLevelB = (nLevel / 5)-1;
if (nLevelB <=0)
{
nLevelB =0;
}
else
{
nAttackB += (nLevelB*2); // +2 to attack every 5 levels past 5
nSaveB += (nLevelB*2); // +2 to saves every 5 levels past 5
}
if (nLevelB >6 )
{
nDmgRedP = DAMAGE_POWER_PLUS_FIVE;
nDmgRedB = 7*5;
nDamageB = DAMAGE_BONUS_17;
}
else if (nLevelB >5 )
{
nDmgRedP = DAMAGE_POWER_PLUS_FIVE;
nDmgRedB = 6*5;
nDamageB = DAMAGE_BONUS_15;
}
else if (nLevelB >4 )
{
nDmgRedP = DAMAGE_POWER_PLUS_FIVE;
nDmgRedB = 5*5;
nDamageB = DAMAGE_BONUS_13;
}
else if (nLevelB >3)
{
nDmgRedP = DAMAGE_POWER_PLUS_FOUR;
nDmgRedB = 4*5;
nDamageB = DAMAGE_BONUS_11;
}
else if (nLevelB >2)
{
nDmgRedP = DAMAGE_POWER_PLUS_THREE;
nDmgRedB = 3*5;
nDamageB = DAMAGE_BONUS_9;
}
else if (nLevelB >1)
{
nDmgRedP = DAMAGE_POWER_PLUS_TWO;
nDmgRedB = 2*5;
nDamageB = DAMAGE_BONUS_7;
}
else if (nLevelB >0)
{
nDamageB = DAMAGE_BONUS_5;
}
//--------------------------------------------------------------
//
//--------------------------------------------------------------
eAttack = EffectAttackIncrease(nAttackB,ATTACK_BONUS_MISC);
eDamage = EffectDamageIncrease(nDamageB, DAMAGE_TYPE_DIVINE);
eSaving = EffectSavingThrowIncrease(SAVING_THROW_ALL,nSaveB, SAVING_THROW_TYPE_ALL);
eReduction = EffectDamageReduction(nDmgRedB, nDmgRedP);
effect eDur = EffectVisualEffect(VFX_DUR_CESSATE_POSITIVE);
effect eLink = EffectLinkEffects(eAttack, eDamage);
eLink = EffectLinkEffects(eSaving,eLink);
eLink = EffectLinkEffects(eReduction,eLink);
eLink = EffectLinkEffects(eDur,eLink);
eLink = SupernaturalEffect(eLink);
// prevent stacking with self
RemoveEffectsFromSpell(oTarget, GetSpellId());
//Apply the armor bonuses and the VFX impact
ApplyEffectToObject(DURATION_TYPE_TEMPORARY, eLink, oTarget, RoundsToSeconds(nDuration));
ApplyEffectToObject(DURATION_TYPE_INSTANT, eVis, oTarget);
}