47 lines
1.2 KiB
Plaintext
47 lines
1.2 KiB
Plaintext
VAR mushrooms_collected = 0
|
|
VAR quest_mushroom_active = false
|
|
VAR quest_mushroom_done = false
|
|
|
|
{
|
|
- quest_mushroom_done:
|
|
# color whisper
|
|
Danke nochmal für die Pilze. Das Rezept ist fast fertig.
|
|
-> ende
|
|
|
|
- quest_mushroom_active && mushrooms_collected >= 10:
|
|
# color whisper
|
|
Du hast {mushrooms_collected} Pilze dabei -- mehr als genug!
|
|
* [Hier, nimm sie.]
|
|
~ quest_mushroom_done = true
|
|
# color whisper
|
|
Wunderbar, vielen Dank! Das wird ein gutes Süppchen.
|
|
-> ende
|
|
* [Lass mich noch ein paar behalten.]
|
|
# color whisper
|
|
Wie du willst. Komm wieder, wenn du sie loswerden möchtest.
|
|
-> ende
|
|
|
|
- quest_mushroom_active:
|
|
# color whisper
|
|
Du hast schon {mushrooms_collected} von 10 Pilzen. Mach ruhig weiter.
|
|
-> ende
|
|
|
|
- else:
|
|
# color whisper
|
|
TEST1 Hallo! Ich bräuchte 10 Pilze für ein Rezept. Hättest du Lust, welche zu sammeln?
|
|
* [Klar, ich helfe.]
|
|
~ quest_mushroom_active = true
|
|
# color whisper
|
|
Danke! Ich warte hier.
|
|
-> ende
|
|
* [Vielleicht später.]
|
|
# color whisper
|
|
Schade. Komm gerne nochmal vorbei.
|
|
-> ende
|
|
}
|
|
|
|
= ende
|
|
* [Bis dann]
|
|
# person_farewell
|
|
-> END
|