- .NET 10 console app with Spectre.Console and Loreline integration - Black Box Sim architecture (simulation separated from presentation) - Progressive CLI rendering (9 phases from basic to full layout) - 25+ box definitions with weighted loot tables - 100+ item definitions (meta, cosmetics, materials, adventure tokens) - 9 Loreline adventures (Space, Medieval, Pirate, etc.) - Bilingual content (EN/FR) - Save/load system - Game Design Document
27 lines
787 B
C#
27 lines
787 B
C#
namespace OpenTheBox.Core.Enums;
|
|
|
|
/// <summary>
|
|
/// Unlockable font styles for the CLI interface.
|
|
/// Found in Boite Meta. The default console font is always available;
|
|
/// additional fonts are unlocked as drops.
|
|
/// </summary>
|
|
public enum FontStyle
|
|
{
|
|
/// <summary>The default system console font. Always available.</summary>
|
|
Default,
|
|
|
|
/// <summary>Consolas monospaced font. Clean and technical.</summary>
|
|
Consolas,
|
|
|
|
/// <summary>Firetruc display font. Bold and playful.</summary>
|
|
Firetruc,
|
|
|
|
/// <summary>JetBrains Mono font. Developer-focused with ligatures.</summary>
|
|
Jetbrains,
|
|
|
|
/// <summary>Vercel One font. Modern and sleek.</summary>
|
|
VercelOne,
|
|
|
|
/// <summary>Toto Posted One font. Artistic and distinctive.</summary>
|
|
TotoPostedOne
|
|
}
|