Temp 4a
const story = {
start: {
text: "Du stehst vor einer Höhle.",
choices: [
{ text: "Betreten", next: "hoehle" },
{ text: "Weggehen", next: "dorf" }
]
},
hoehle: {
text: "Die Höhle ist dunkel...",
choices: [...]
}
};
Kommentare
Kommentar veröffentlichen