Unstable 1.8.4.0

This commit is contained in:
Markus Isberg
2025-03-12 12:56:27 +00:00
parent a4c3e868e4
commit a4a3427e4e
627 changed files with 29860 additions and 10018 deletions
@@ -22,6 +22,11 @@ namespace Barotrauma
public readonly Sprite Icon;
/// <summary>
/// When set to true, this talent will not be visible in the "Extra Talents" panel if it is not part of the character's job talent tree.
/// </summary>
public readonly bool IsHiddenExtraTalent;
/// <summary>
/// When set to a value the talent tooltip will display a text showing the current value of the stat and the max value.
/// For example "Progress: 37/100".
@@ -62,6 +67,8 @@ namespace Barotrauma
DisplayName = TextManager.Get(nameIdentifier).Fallback(Identifier.Value);
}
IsHiddenExtraTalent = element.GetAttributeBool("ishiddenextratalent", false);
Description = string.Empty;
#if CLIENT