14 lines
614 B
C#
14 lines
614 B
C#
namespace NeonSprawl.Server.Game.Mastery;
|
|
|
|
/// <summary>Stable deny codes for perk branch selection (NEO-47; NEO-48 HTTP).</summary>
|
|
public static class PerkUnlockReasonCodes
|
|
{
|
|
public const string UnknownTrack = "unknown_track";
|
|
public const string UnknownTier = "unknown_tier";
|
|
public const string UnknownBranch = "unknown_branch";
|
|
public const string LevelTooLow = "level_too_low";
|
|
public const string BranchAlreadyChosen = "branch_already_chosen";
|
|
public const string TierBranchNotSelectable = "tier_branch_not_selectable";
|
|
public const string PlayerNotFound = "player_not_found";
|
|
}
|