-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
11 changed files
with
82 additions
and
95 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
extends DialogueScript | ||
|
||
func _start() -> void: | ||
print("Opening debug menu!") | ||
|
||
var choice | ||
choice = await dbox().say_as_with_choices( | ||
"[CASCADE]", [ | ||
"Hey...?", | ||
], [ | ||
"Battle", | ||
"Item", | ||
"Page 2", | ||
"Nah", | ||
] | ||
) | ||
|
||
match choice: | ||
0: | ||
World.singleton().start_battle("A_NONNY_MOUSE") | ||
1: | ||
choice = await dbox().say_as_with_choices( | ||
"[CASCADE]", [ | ||
"What do you need?", | ||
], [ | ||
"Rusty x1", | ||
"Rusty x5", | ||
] | ||
) | ||
|
||
match choice: | ||
0: | ||
DialogueScriptBase.debug_item("trusty_rusty_pistol", 1) | ||
1: | ||
DialogueScriptBase.debug_item("trusty_rusty_pistol", 5) | ||
|
||
await dbox().say_as("[CASCADE]", [ | ||
"Here you go!" | ||
]) | ||
2: | ||
choice = await dbox().say_as_with_choices( | ||
"[CASCADE]", [ | ||
"Okay, how about these?", | ||
], [ | ||
"Pauses", | ||
"Nah", | ||
]) | ||
|
||
match choice: | ||
0: | ||
await dbox().say_as("Isaac", [ | ||
"""Flint... | ||
Where did you last see Hinawa?""" | ||
]) | ||
await dbox().say_as("[CASCADE]", [ | ||
"""This next part will print verrrrry | ||
slooooowly.""" | ||
]) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters