mirror of
https://github.com/edgegamers/Jailbreak.git
synced 2025-12-06 04:42:57 -08:00
20 lines
642 B
C#
20 lines
642 B
C#
using CounterStrikeSharp.API.Modules.Utils;
|
|
using Jailbreak.Formatting.Base;
|
|
using Jailbreak.Formatting.Core;
|
|
using Jailbreak.Formatting.Logistics;
|
|
using Jailbreak.Formatting.Objects;
|
|
using Jailbreak.Formatting.Views;
|
|
|
|
namespace Jailbreak.English.Rebel;
|
|
|
|
public class RebelLocale : IRebelLocale,
|
|
ILanguage<Formatting.Languages.English> {
|
|
public static readonly FormatObject PREFIX =
|
|
new HiddenFormatObject($" {ChatColors.DarkBlue}Game>") {
|
|
// Hide in panorama and center text
|
|
Plain = false, Panorama = false, Chat = true
|
|
};
|
|
|
|
public IView NoLongerRebel
|
|
=> new SimpleView { PREFIX, "You are no longer red." };
|
|
} |