Navigation wieder hinzugefügt
This commit is contained in:
parent
60f5fd089c
commit
e7ca49b71a
1 changed files with 9 additions and 0 deletions
|
|
@ -20,6 +20,15 @@ INSERT INTO raeume (id, name, beschreibung, raetsel_frage, raetsel_antwort) VALU
|
|||
(2, 'Krypta', 'Kaltes Kerzenlicht flackert.', NULL, NULL),
|
||||
(3, 'Bibliothek', 'Staubige Bücher bis zur Decke.', NULL, NULL),
|
||||
(4, 'Schatzkammer', 'Eine verschlossene Truhe.', 'Wie viele Beine hat eine Spinne?', '8');
|
||||
|
||||
INSERT INTO ausgaenge (von_raum, richtung, nach_raum) VALUES
|
||||
(1, 'links', 2),
|
||||
(1, 'rechts', 3),
|
||||
(2, 'zurück', 1),
|
||||
(3, 'zurück', 1),
|
||||
(2, 'vor', 4),
|
||||
(2, 'zurück', 1),
|
||||
(2, 'hoch', 3);
|
||||
""")
|
||||
|
||||
db.commit()
|
||||
|
|
|
|||
Loading…
Reference in a new issue