Inital version

This commit is contained in:
Arthur Beck 2025-05-07 20:14:33 -05:00
parent da49e2223b
commit b8921858f2
Signed by: ArthurB
GPG key ID: CA200B389F0F6BC9
9 changed files with 293 additions and 32 deletions

33
games/test.toml Normal file
View file

@ -0,0 +1,33 @@
[meta]
version = 2.0
title = "Test"
author = "Arthur Beck"
beginning = "start"
default_voice = "UgBBYS2sOqTuMpoF3BR0"
[track.start]
text = "This is an example story in compact adventure 2!"
[[track.start.options]]
text = "Option 1"
to = "track2"
[[track.start.options]]
text = "Option 2"
to = "track3"
[track.track2]
text = "Track 2!"
[[track.track2.options]]
text = "Option 2.1"
to = "track3"
[[track.track2.options]]
text = "Option 2.2"
to = "start"
[track.track3]
text = "Track 3!"
[[track.track3.options]]
text = "Option 3.1"
to = "start"
[[track.track3.options]]
text = "Option 3.2"
to = "track2"