diff options
-rw-r--r-- | client/menu/character_menu.tscn | 2 | ||||
-rw-r--r-- | client/menu/error_menu.tscn | 2 | ||||
-rw-r--r-- | client/menu/main_menu.tscn | 2 | ||||
-rw-r--r-- | data/demands.yaml | 2 | ||||
-rw-r--r-- | data/recipes.ts | 14 |
5 files changed, 12 insertions, 10 deletions
diff --git a/client/menu/character_menu.tscn b/client/menu/character_menu.tscn index 4d91425a..8f8455b6 100644 --- a/client/menu/character_menu.tscn +++ b/client/menu/character_menu.tscn @@ -50,7 +50,7 @@ grow_horizontal = 2 [node name="Label" type="Label" parent="Panel/a"] layout_mode = 2 -text = "This textbox is useless." +text = "This Chef is called" horizontal_alignment = 1 [node name="LineEdit" type="LineEdit" parent="Panel/a"] diff --git a/client/menu/error_menu.tscn b/client/menu/error_menu.tscn index 42396b4e..0b86cceb 100644 --- a/client/menu/error_menu.tscn +++ b/client/menu/error_menu.tscn @@ -1,4 +1,4 @@ -[gd_scene load_steps=5 format=3 uid="uid://cclkimst14r12"] +[gd_scene load_steps=5 format=3 uid="uid://cimgn07lbcs4v"] [ext_resource type="Theme" uid="uid://b0qmvo504e457" path="res://menu/theme.tres" id="1_cabdu"] [ext_resource type="PackedScene" uid="uid://l4vm07dtda4j" path="res://menu/menu_background.tscn" id="2_5fxol"] diff --git a/client/menu/main_menu.tscn b/client/menu/main_menu.tscn index 32a5bb24..0deeb748 100644 --- a/client/menu/main_menu.tscn +++ b/client/menu/main_menu.tscn @@ -85,7 +85,7 @@ alignment = 0 [node name="settings" type="Button" parent="side/margin/options"] layout_mode = 2 -text = "Settings (todo)" +text = "Settings" alignment = 0 [node name="credits" type="Button" parent="side/margin/options"] diff --git a/data/demands.yaml b/data/demands.yaml index 0a2b9706..f6be0911 100644 --- a/data/demands.yaml +++ b/data/demands.yaml @@ -23,4 +23,4 @@ - { from: bread-slice-sliced-tomato-steak-plate, to: dirty-plate, duration: 20 } -- { from: tomato-soop-plate, to: dirty-plate, duration: 20 } +- { from: tomato-soup-plate, to: dirty-plate, duration: 20 } diff --git a/data/recipes.ts b/data/recipes.ts index 8ae9bcd4..30a60b63 100644 --- a/data/recipes.ts +++ b/data/recipes.ts @@ -122,20 +122,22 @@ out({ action: "active", duration: 2, tile: "sink", inputs: ["dirty-plate"], outp crate("tomato") crate("raw-steak") crate("flour") -crate("herbs") +crate("leek") cut("tomato") + cook("raw-steak", "steak") -cut("bread", "bread-slice") -combine("plate", "steak-pot", "sliced-tomato", "bread-slice") process("flour", "dough") out({ action: "instant", inputs: ["dough-foodprocessor"], outputs: ["foodprocessor", "dough"] }) bake("dough", "bread") +cut("bread", "bread-slice") process("tomato") -combine("pot", "herbs", "tomato-juice-foodprocessor") -cook("herbs-tomato-juice-pot", "tomato-soop") -out({ action: "instant", inputs: ["tomato-soop-pot", "plate"], outputs: ["pot", "tomato-soop-plate"] }) +combine("pot", "leek", "tomato-juice-foodprocessor") +cook("leek-tomato-juice-pot", "tomato-soup") +out({ action: "instant", inputs: ["tomato-soup-pot", "plate"], outputs: ["pot", "tomato-soup-plate"] }) + +combine("plate", "steak-pot", "sliced-tomato", "bread-slice") auto_trash() |