using Robust.Shared.Configuration;
namespace Content.Shared.CCVar;
public sealed partial class CCVars
{
///
/// The time you must spend reading the rules, before the "Request" button is enabled
///
public static readonly CVarDef GhostRoleTime =
CVarDef.Create("ghost.role_time", 3f, CVar.REPLICATED | CVar.SERVER);
///
/// If ghost role lotteries should be made near-instanteous.
///
public static readonly CVarDef GhostQuickLottery =
CVarDef.Create("ghost.quick_lottery", false, CVar.SERVERONLY);
///
/// Whether or not to kill the player's mob on ghosting, when it is in a critical health state.
///
public static readonly CVarDef GhostKillCrit =
CVarDef.Create("ghost.kill_crit", true, CVar.REPLICATED | CVar.SERVER);
}