aboutsummaryrefslogtreecommitdiff
path: root/client/map/items/pot.gd
diff options
context:
space:
mode:
Diffstat (limited to 'client/map/items/pot.gd')
-rw-r--r--client/map/items/pot.gd8
1 files changed, 7 insertions, 1 deletions
diff --git a/client/map/items/pot.gd b/client/map/items/pot.gd
index 1bf9bde7..335fd093 100644
--- a/client/map/items/pot.gd
+++ b/client/map/items/pot.gd
@@ -45,9 +45,15 @@ func add_contents(contents: Array[String]):
leek.rotation_degrees = Vector3(-75.5, 0, -25)
leek.position = Vector3(.03, .1, .25)
base.add_child(leek)
+ "cooked-noodles":
+ var noodles := ItemFactory.produce(i, self)
+ noodles.scale = Vector3(.85, .85, .85)
+ base.add_child(noodles)
"noodles":
add_child(PotFillTransparent.new(self, Color(0.46, 0.68, 0.73, 0.392))) # water
- base.add_child(ItemFactory.produce(i, self))
+ var noodles := ItemFactory.produce(i, self)
+ noodles.scale = Vector3(.85, .85, .85)
+ base.add_child(noodles)
"processed-mushroom":
add_child(PotFill.new(self, Color(0.596, 0.341, 0.259)))
"mushroom-soup":