Add spielstand table for game saves

This commit is contained in:
DylanBarnes 2026-07-15 14:31:53 +00:00
parent a639f1b237
commit c3d2e05058

View file

@ -22,6 +22,11 @@ CREATE TABLE IF NOT EXISTS ausgaenge (
nach_raum INTEGER
);
CREATE TABLE IF NOT EXISTS spielstand (
spieler TEXT PRIMARY KEY,
raum_id INTEGER
);
INSERT INTO raeume (id, name, beschreibung, raetsel_frage, raetsel_antwort) VALUES
(1, 'Schlafkapsel', 'Du erwachst aus dem Kryoschlaf. Die Notbeleuchtung flackert und das Schiff wirkt verlassen.', NULL, NULL),
(2, 'Brücke', 'Die Steuerzentrale ist dunkel. Mehrere Monitore zeigen Fehlermeldungen.', NULL, NULL),