This repository has been archived on 2024-02-25. You can view files and clone it, but cannot push or open issues or pull requests.
Wol/dialogue.yarn

42 lines
726 B
Plaintext
Raw Normal View History

title: Start
2021-11-20 11:10:20 +01:00
tags:
colorID: 0
2021-11-20 22:29:24 +01:00
position: 0, 0
2021-11-20 11:10:20 +01:00
---
2021-11-20 22:29:24 +01:00
<<a_custom_command>>
<<command_with multiple arguments>>
2021-11-20 11:10:20 +01:00
2021-11-20 22:29:24 +01:00
// remove "to" to trigger error
<<set $direction to 'this'>>
<<set $one to 1>>
2021-11-20 11:10:20 +01:00
2021-11-20 22:29:24 +01:00
// Implement inline expressions
Bob: Theresa, {$direction} way! #line:5d7a7c
Theresa: Did you know one + one equals {$one + $one}?
Bob: You wanna go somewhere?
2021-11-20 11:10:20 +01:00
2021-11-20 22:29:24 +01:00
[[Go to the store|TheStore]]
[[Lets stay here and talk|Talk]]
===
title: TheStore
tags:
colorID: 0
position: 0, 200
---
Clerk: Welcome to the store.
Clerk: Can I help you with anything?
[[Go home|Start]]
2021-11-20 11:10:20 +01:00
===
2021-11-20 22:29:24 +01:00
title: Talk
2021-11-20 11:10:20 +01:00
tags:
colorID: 0
2021-11-20 22:29:24 +01:00
position: 0, 400
2021-11-20 11:10:20 +01:00
---
2021-11-20 22:29:24 +01:00
Bob: So how are you really?
Theresa: I'm good!
Bob: Do you want to continue talking?
-> Yes
[[Start]]
-> No
2021-11-20 11:10:20 +01:00
===