Piercing Cold now inflicts untyped damage

Piercing Cold now inflicts untyped damage.
Cleaned up Midnight Augmentation.
Dread Necromancer is an Arcane class.
Expanded  Iron Mind for epic progression.
Expanded  War Mind for epic progression.
Fixed Gloura / Bard / Sublime Chord issues.
Restored Nezumi race.
Reverted Bard Armored spellcasting (change originally made due to incorrect SRD).
Fixed Aura of Despair to only affect hostiles.
Fixed damage cap on Disintegrate.
Fixed bug where you could still wear armor under the effects of Luminous Armor.
Fixed PsyWar bug with NUI Spellcast menu (@rakiov).
This commit is contained in:
Jaysyn904
2025-06-01 10:30:29 -04:00
parent 051083061b
commit 188047149c
28 changed files with 2226 additions and 826 deletions

View File

@@ -544,13 +544,27 @@ struct manifestation EvaluateAugmentation(struct manifestation manif, struct pow
// Account for wild surge
nAugPPCostReductions += nSurge;
// Midnight Augmentation feat from incarnum
// Midnight Augmentation feat from incarnum
if (GetHasFeat(FEAT_MIDNIGHT_AUGMENTATION, manif.oManifester))
{
int nPower = GetLocalInt(manif.oManifester, "MidnightAugPower");
if (manif.nSpellID == nPower)
{
int bUsedFocus = UsePsionicFocus(manif.oManifester);
if (bUsedFocus)
{
nAugPPCostReductions += GetEssentiaInvestedFeat(manif.oManifester, FEAT_MIDNIGHT_AUGMENTATION);
}
}
}
/* // Midnight Augmentation feat from incarnum
if (GetHasFeat(FEAT_MIDNIGHT_AUGMENTATION, manif.oManifester))
{
// Make sure the power is the correct one, and that you can expend your psionic focus
if (manif.nSpellID == GetLocalInt(manif.oManifester, "MidnightAugPower") && UsePsionicFocus(manif.oManifester))
nAugPPCostReductions += GetEssentiaInvestedFeat(manif.oManifester, FEAT_MIDNIGHT_AUGMENTATION);
}
} */
/*/ Various effects modifying the augmentation go above /*/