aboutsummaryrefslogtreecommitdiff
path: root/client/map/items
diff options
context:
space:
mode:
authortpart <tpart120@proton.me>2025-10-14 21:32:33 +0200
committertpart <tpart120@proton.me>2025-10-14 21:32:38 +0200
commite7e99e37dab1d0af0cfa8c13b08c00f85e08ba4e (patch)
tree6f11f1acfeec5db6f440df60266ea28436f859b0 /client/map/items
parent3ccbc351c05fd247fa5e478e7b097db8866d6069 (diff)
downloadhurrycurry-e7e99e37dab1d0af0cfa8c13b08c00f85e08ba4e.tar
hurrycurry-e7e99e37dab1d0af0cfa8c13b08c00f85e08ba4e.tar.bz2
hurrycurry-e7e99e37dab1d0af0cfa8c13b08c00f85e08ba4e.tar.zst
Make noodles fit in pot
Diffstat (limited to 'client/map/items')
-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":