2026/03/28

Added default level up package for Warblade.
Moment of Prescience should be an instant action.
Truespeak should be a class skill for Factotum.
Added Armor Enhancement, Lesser infusion.
Added Armor Enhancement infusion.
Added Armor Enhancement, Greater infusion
Added Resistance Item infusion.
Added Weapon Augmentation, Personal infusion.
Added Weapon Augmentation infusion.
Added Weapon Augmentation, Lesser infusion.
This commit is contained in:
Jaysyn904
2026-03-28 23:39:46 -04:00
parent a84e7acc91
commit 038a4cf88d
15 changed files with 2413 additions and 8 deletions

View File

@@ -781,6 +781,8 @@ int CheckTrueSpeechSkill(object oTrueSpeaker)
else if (GetLevelByClass(CLASS_TYPE_BEREFT, oTrueSpeaker) > 0) return FALSE;
// And this one
else if (GetLevelByClass(CLASS_TYPE_BRIMSTONE_SPEAKER, oTrueSpeaker) > 0) return FALSE;
// Factotums have every skill as a class skill.
else if (GetLevelByClass(CLASS_TYPE_FACTOTUM, oTrueSpeaker) > 0) return FALSE;
// If they have the feat, no relevel
else if(GetHasFeat(FEAT_TRUENAME_TRAINING, oTrueSpeaker)) return FALSE;
// Now we check the values. If they have too many ranks, relevel.
@@ -837,4 +839,7 @@ int GetCadenceCount(object oTrueSpeaker)
// Return total
return nCount;
}
}
//
void main (){}