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

@@ -1403,6 +1403,7 @@ void HathranFear(object oPC)
}
void MephlingBreath(object oPC) //:: Mephlings
{
if(!GetHasFeat(FEAT_MEPHLING_BREATH, oPC))
@@ -1618,6 +1619,28 @@ void FeatShadowblade(object oPC)
FeatUsePerDay(oPC, FEAT_FAR_SHADOW, -1, iShadowLevel);
}
void FeatIronMind(object oPC)
{
int iIronmindLvl = GetLevelByClass(CLASS_TYPE_IRONMIND, oPC);
if (iIronmindLvl <= 0) return;
int nBonus;
// Armoured Mind: starts at level 1
if (iIronmindLvl >= 1)
{
nBonus = 1 + (iIronmindLvl - 1) / 3;
FeatUsePerDay(oPC, FEAT_ARMOURED_MIND, -1, nBonus);
}
// Mind Over Body: starts at level 3
if (iIronmindLvl >= 3)
{
nBonus = 1 + (iIronmindLvl - 3) / 3;
FeatUsePerDay(oPC, FEAT_MIND_OVER_BODY, -1, nBonus);
}
}
void FeatNoble(object oPC)
{
int iNobleLevel = GetLevelByClass(CLASS_TYPE_NOBLE, oPC);
@@ -2154,6 +2177,7 @@ void FeatSpecialUsePerDay(object oPC)
FeatRacial(oPC);
FeatShadowblade(oPC);
SoulbornDefense(oPC);
FeatIronMind(oPC);
int nDread = GetLevelByClass(CLASS_TYPE_DREAD_NECROMANCER, oPC);
if (nDread >= 1)