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

71 lines
1.7 KiB
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
2021-11-21 23:10:48 +01:00
<<set $direction to 'that'>>
2021-11-20 22:29:24 +01:00
<<set $one to 1>>
2021-11-20 11:10:20 +01:00
2021-11-20 22:29:24 +01:00
// Implement inline expressions
2021-11-21 23:10:48 +01:00
<<if visit_count() == 1>>
Narrator: You, {$direction} way!
<<endif>>
Narrator: Do you know you've been here {visit_count()} times?
You: Did you know one + one equals {$one + $one}?
Narrator: You wanna go somewhere?
2021-11-20 11:10:20 +01:00
2021-11-21 23:10:48 +01:00
-> Go to the store
[[TheStore]]
// -> Wait, how many times have I been to the store?
// Narrator: You've been to the store {visit_count('TheStore')} times.
// [[Start]]
-> Lets stay here and talk
[[Talk]]
2021-11-20 22:29:24 +01:00
===
title: TheStore
tags:
colorID: 0
position: 0, 200
---
2021-11-21 23:10:48 +01:00
Guy: Hey what's up I need your help can you come here?
You: Well I can't I'm buying clothes.
All right well hurry up and come over here.
You: I can't find them.
Guy: What do you mean you can't find them?
You: I can't find them there's only soup.
Guy: What do you mean there's only soup?!
You: It means there's only soup.
Guy: WELL THEN GET OUT OF THE SOUP ISLE!!
You: Alright you dont have to shout at me!
You: There's more soup.
Guy: What do you mean there's more soup?
You: There's just more soup.
Guy: Then go to the next aisle!
You: There's still soup!
Guy: Where are you right now?!
You: I'm at soup!
Guy: What do you mean you're at soup?!
You: I mean I'm at soup.
Guy: WHAT STORE ARE YOU IN?!
You: IM AT THE SOUP STORE!!
Guy: WHY ARE YOU BUYING CLOTHES AT THE SOUP STORE?!
You: FUCK YOU!
2021-11-20 22:29:24 +01:00
[[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-21 23:10:48 +01:00
Narrator: So how are you really?
You: I'm good!
Narrator: Do you want to continue talking?
2021-11-20 22:29:24 +01:00
-> Yes
[[Start]]
-> No
2021-11-20 11:10:20 +01:00
===