Files
ludum_dare_46/src/Menus/DialogueBox/Dialogues.gd
Conrad d12d69f083 Minor Cleanup
- Renamed SoundController
- Cleaned up spacings
- File endings
2020-04-21 03:14:00 +02:00

22 lines
437 B
GDScript

extends Node
var _dialogues = []
func _ready():
_dialogues.append([
"Hero: I... I... I need to go pee",
"Boss: After this you won't need to pee ever again!"
])
_dialogues.append([
"Hero: I've come to slay you, you beast!",
"Boss: Well then... step forward!"
])
_dialogues.append([
"Hero: You've killed so many, but you won't kill me!",
"Boss: We'll see about that!"
])
func get_dialogue(id):
return _dialogues[id]