mirror of
http://prc.nwn.ee:3000/Jaysyn/PRC8.git
synced 2025-12-16 20:17:16 -05:00
Updated Dodge-proxy prereqs
Updated Dodge-proxy prereqs for Mobility, Spring Attack, Quick Staff & Sidestep Charge. Updated Piercing Cold to ignore Reserve Feats. Updated elven blades to use Weapon Finesse properly (NWNEE change). Updated release archive.
This commit is contained in:
@@ -2458,13 +2458,27 @@ effect PRCEffectDamage(object oTarget, int nDamageAmount, int nDamageType=DAMAGE
|
||||
ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_FNF_LOS_EVIL_10), oTarget);
|
||||
}
|
||||
}
|
||||
|
||||
//:: Get the current spell being cast
|
||||
int nCurrentSpell = PRCGetSpellId();
|
||||
|
||||
//:: Skip Reserve Feat spellIDs
|
||||
if (nCurrentSpell < 19359 || nCurrentSpell > 19396)
|
||||
{
|
||||
//:: Piercing Cold for the Frost Mage
|
||||
if (GetLevelByClass(CLASS_TYPE_FROST_MAGE, oCaster) >= 4 && nDamageType == DAMAGE_TYPE_COLD)
|
||||
{
|
||||
int nCurrentHP = GetCurrentHitPoints(oTarget);
|
||||
DelayCommand(0.1, DoPiercingCold(oCaster, oTarget, nDamageAmount, nCurrentHP));
|
||||
}
|
||||
}
|
||||
|
||||
// Piercing Cold for the Frost Mage
|
||||
/* // Piercing Cold for the Frost Mage
|
||||
if (GetLevelByClass(CLASS_TYPE_FROST_MAGE, oCaster) >= 4 && nDamageType == DAMAGE_TYPE_COLD)
|
||||
{
|
||||
int nCurrentHP = GetCurrentHitPoints(oTarget);
|
||||
DelayCommand(0.1, DoPiercingCold(oCaster, oTarget, nDamageAmount, nCurrentHP));
|
||||
}
|
||||
} */
|
||||
|
||||
// Die DR die
|
||||
if (GetLocalInt(oCaster, "MoveIgnoreDR"))
|
||||
|
||||
Reference in New Issue
Block a user