diff options
| author | metamuffin <metamuffin@disroot.org> | 2025-10-09 00:26:46 +0200 |
|---|---|---|
| committer | metamuffin <metamuffin@disroot.org> | 2025-10-09 00:26:46 +0200 |
| commit | 515ebc423e9da14787f0d9ee06549a7e67019deb (patch) | |
| tree | 0012962f9cd84999422f3d9c24ffa9533d10eb62 /client/map/items | |
| parent | df50603df4a198bceaec2b0d334c35d2b7e8303f (diff) | |
| download | hurrycurry-515ebc423e9da14787f0d9ee06549a7e67019deb.tar hurrycurry-515ebc423e9da14787f0d9ee06549a7e67019deb.tar.bz2 hurrycurry-515ebc423e9da14787f0d9ee06549a7e67019deb.tar.zst | |
Add processed mushroom fills
Diffstat (limited to 'client/map/items')
| -rw-r--r-- | client/map/items/food_processor.gd | 2 | ||||
| -rw-r--r-- | client/map/items/pot.gd | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/client/map/items/food_processor.gd b/client/map/items/food_processor.gd index 0a78904f..14706677 100644 --- a/client/map/items/food_processor.gd +++ b/client/map/items/food_processor.gd @@ -52,6 +52,8 @@ func add_contents(contents: Array[String]): add_child(FoodProcessorFill.new(self, Color8(250, 180, 210))) "strawberry-puree": add_child(FoodProcessorFill.new(self, Color8(200, 80, 80))) + "processed-mushroom": + add_child(FoodProcessorFill.new(self, Color(0.596, 0.341, 0.259))) "tomato": processing.color = Color(1.,0.,0.) base.add_child(load("res://map/items/tomato.tscn").instantiate()) diff --git a/client/map/items/pot.gd b/client/map/items/pot.gd index ec60c04c..c42334a7 100644 --- a/client/map/items/pot.gd +++ b/client/map/items/pot.gd @@ -46,7 +46,7 @@ func add_contents(contents: Array[String]): "noodles": add_child(PotFillTransparent.new(self, Color(0.46, 0.68, 0.73, 0.392))) # water base.add_child(ItemFactory.produce(i, self)) - "sliced-mushroom": + "processed-mushroom": add_child(PotFill.new(self, Color(0.596, 0.341, 0.259))) "mushroom-soup": add_child(PotFill.new(self, Color(0.747, 0.454, 0.36, 1.0))) |