{
“start”: {
“text”: “BEEP BEEP! Your alarm is ringing. It is 7:00 AM.”,
“image”: “โฐ”,
“choices”: [
{ “label”: “Make my bed”, “next”: “bathroom”, “energy”: 10 },
{ “label”: “Go to the toilet”, “next”: “bathroom”, “energy”: 5 },
{ “label”: “Go back to sleep”, “next”: “late_start”, “energy”: -20 }
]
},
“late_start”: {
“text”: “Oh no! You woke up late. You feel tired and rushed.”,
“image”: “๐ด”,
“choices”: [
{ “label”: “Run to the bathroom”, “next”: “bathroom”, “energy”: -5 }
]
},
“bathroom”: {
“text”: “You are at the sink. Time to get clean!”,
“image”: “๐ชฅ”,
“choices”: [
{ “label”: “Brush my teeth and wash my face”, “next”: “wardrobe”, “energy”: 15 },
{ “label”: “Just splash some water”, “next”: “wardrobe”, “energy”: 5 }
]
},
“wardrobe”: {
“text”: “What should you wear for school today?”,
“image”: “๐”,
“choices”: [
{ “label”: “Put on my clean school uniform”, “next”: “kitchen”, “energy”: 10 },
{ “label”: “Wear my dirty pajamas”, “next”: “kitchen”, “energy”: -10 }
]
},
“kitchen”: {
“text”: “Your stomach is growling! What’s for breakfast?”,
“image”: “๐ฅฃ”,
“choices”: [
{ “label”: “Eat healthy eggs and fruit”, “next”: “desk”, “energy”: 20 },
{ “label”: “Eat a big chocolate bar”, “next”: “desk”, “energy”: -5 },
{ “label”: “Skip breakfast”, “next”: “desk”, “energy”: -15 }
]
},
“desk”: {
“text”: “Almost time for the bus! Let’s pack your bag.”,
“image”: “๐”,
“choices”: [
{ “label”: “Check my books and pencil case”, “next”: “finish”, “energy”: 10 },
{ “label”: “Just grab the bag and run”, “next”: “finish”, “energy”: 0 }
]
},
“finish”: {
“text”: “You are ready for school! Let’s see how much energy you have.”,
“image”: “๐ซ”,
“choices”: [
{ “label”: “Play Again”, “next”: “start”, “reset”: true }
]
}
}
