summaryrefslogtreecommitdiffstats
path: root/scripts/DwarfNPC.gd
diff options
context:
space:
mode:
authorJan Tuomi <jan.tuomi@valuemotive.com>2020-08-01 20:27:03 +0300
committerJan Tuomi <jan.tuomi@valuemotive.com>2020-08-01 20:27:03 +0300
commitc438ce2976c4dda931918c019a25e00104d0cbc2 (patch)
tree5e8a1a6818fe82d6a51fba3a1040a40c1f6bad94 /scripts/DwarfNPC.gd
parentf89994a8558ba59388c77b968ce5712bd709e15a (diff)
Improve dialogue system
Diffstat (limited to 'scripts/DwarfNPC.gd')
-rw-r--r--scripts/DwarfNPC.gd3
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/DwarfNPC.gd b/scripts/DwarfNPC.gd
index 178179a..8fa7b24 100644
--- a/scripts/DwarfNPC.gd
+++ b/scripts/DwarfNPC.gd
@@ -23,4 +23,5 @@ func _process(_delta):
$Sprite.set_scale(Vector2(dir, 1))
func get_dialogue():
- return [{ "name": "Dwarf", "body": "Hello, I'm a dwarf." }]
+ return [{ "name": "Dwarf", "body": "Hello, I'm a dwarf." },
+ { "name": "Dwarf", "body": "How's it going?" }]