2025/06/05 Late Update

Expanded Hand of the Winged Masters for epic progression.
Expanded Crusader for epic progression.
Expanded Swordsage for epic progression.
Tweaked Warblade's epic bonus feat list.
Updated iprp_casterlvl.2da to allow higher DC for Runecrafting.
Updated Aligned Aura, Soldiers of Sanctity, Divine Protection, Tortiseshell & Mantle of Egregious Might to give correct AC type.
This commit is contained in:
Jaysyn904
2025-06-05 23:35:34 -04:00
parent 9121e8fc6b
commit 3eae65b914
25 changed files with 4348 additions and 3419 deletions

View File

@@ -91,7 +91,7 @@ void main()
}
if(nSpellID == SPELL_ALIGNED_AURA_LAW)
{
eBuff = EffectACIncrease(1);
eBuff = EffectACIncrease(1, AC_DEFLECTION_BONUS);
eDebuff = EffectDamageDecrease(DAMAGE_BONUS_1, DAMAGE_TYPE_BLUDGEONING|DAMAGE_TYPE_PIERCING|DAMAGE_TYPE_SLASHING);
eVisHelp = EffectVisualEffect(VFX_IMP_AC_BONUS);
eVisHarm = EffectVisualEffect(VFX_IMP_HEAD_COLD);

View File

@@ -47,7 +47,7 @@ void AllyCheck(object oPC, float fDur)
}
SetLocalInt(oPC, "SOLDIERS_OF_SANCTITY_ALLIES", nCount);
SPApplyEffectToObject(DURATION_TYPE_TEMPORARY, VersusRacialTypeEffect(EffectACIncrease(2), RACIAL_TYPE_UNDEAD), oPC, 6.0f);
SPApplyEffectToObject(DURATION_TYPE_TEMPORARY, VersusRacialTypeEffect(EffectACIncrease(2, AC_DEFLECTION_BONUS), RACIAL_TYPE_UNDEAD), oPC, 6.0f);
DelayCommand(6.0f, AllyCheck(oPC, fDur- 6.0));
}