Add cross timeline interaction gym

This commit is contained in:
2026-06-16 23:51:31 +02:00
parent a621366717
commit 99a7068e12
33 changed files with 2324 additions and 80 deletions

View File

@@ -0,0 +1,37 @@
# ============================================================
# Pattern 5: Choice Routes to Different Timelines
# ============================================================
# Each choice branch doesn't just set a variable —
# it JUMPS to a completely different timeline.
# ============================================================
label start
join Miko center
join Advisor right
Advisor (doubt): This is a crossroads. Each choice leads to a different\
destination.
Miko (neutral): Where should we go?
- The sunny meadow
Miko (joy): I love flowers! Let's go to the meadow.
Advisor (pl5): Fresh air will do us good.
jump gym_main/menu
- The dark cave
Miko (doubt): It's so dark in there... but I'm curious.
Advisor (doubt): Bring a torch. We don't know what lurks inside.
jump gym_main/menu
- Back to the hub
Miko (smile): Good idea. I've seen enough crossroads.
Advisor (pl5): A safe choice.
jump gym_main/menu
# Note: In a real game, these would jump to:
# jump meadow_scene/start
# jump cave_scene/start
# jump hub_scene/main
# But here we just return to the hub for the demo.