forked from Simnation/Main
33 lines
899 B
Lua
33 lines
899 B
Lua
Config = {}
|
|
|
|
-- TV Modelle die genutzt werden können
|
|
Config.TVModels = {
|
|
`prop_tv_flat_01`,
|
|
`prop_tv_flat_02`,
|
|
`prop_tv_03`
|
|
}
|
|
|
|
-- Menü Hauptoptionen
|
|
Config.MainMenu = {
|
|
{ label = "🎮 Solo spielen", action = "solo" },
|
|
{ label = "⚔️ Duell starten", action = "duel" }
|
|
}
|
|
|
|
-- Minigames
|
|
Config.MiniGames = {
|
|
{ label = "⚡ Reaction Test", game = "reaction" },
|
|
{ label = "🧠 Memory Challenge", game = "memory" },
|
|
{ label = "🔥 Fast Clicker", game = "clicker" }
|
|
}
|
|
|
|
-- UI Texte
|
|
Config.Texts = {
|
|
PressE = "Drücke ~INPUT_CONTEXT~ um den Fernseher zu benutzen.",
|
|
NoPlayers = "❌ Keine Spieler gefunden.",
|
|
InviteSent = "📩 Einladung an Spieler gesendet.",
|
|
GameStarted = "🚀 Spiel gestartet: ",
|
|
InviteTitle = "Spieler einladen",
|
|
SelectGameTitle = "Spiel auswählen",
|
|
MainMenuTitle = "TV Mini-Games"
|
|
}
|
|
|