using Robust.Shared.Configuration;
namespace Content.Shared.CCVar;
public sealed partial class CCVars
{
///
/// Whether tips being shown is enabled at all.
///
public static readonly CVarDef TipsEnabled =
CVarDef.Create("tips.enabled", true);
///
/// The dataset prototype to use when selecting a random tip.
///
public static readonly CVarDef TipsDataset =
CVarDef.Create("tips.dataset", "Tips");
///
/// The number of seconds between each tip being displayed when the round is not actively going
/// (i.e. postround or lobby)
///
public static readonly CVarDef TipFrequencyOutOfRound =
CVarDef.Create("tips.out_of_game_frequency", 60f * 1.5f);
///
/// The number of seconds between each tip being displayed when the round is actively going
///
public static readonly CVarDef TipFrequencyInRound =
CVarDef.Create("tips.in_game_frequency", 60f * 60);
public static readonly CVarDef LoginTipsDataset =
CVarDef.Create("tips.login_dataset", "Tips");
///
/// The chance for Tippy to replace a normal tip message.
///
public static readonly CVarDef TipsTippyChance =
CVarDef.Create("tips.tippy_chance", 0.01f);
}