diff options
| author | tpart <tpart120@proton.me> | 2025-10-13 21:35:49 +0200 |
|---|---|---|
| committer | tpart <tpart120@proton.me> | 2025-10-13 21:35:49 +0200 |
| commit | 6989db6e0855c6df2435082d73d6b780adbe07e0 (patch) | |
| tree | ae2422b0bd819e4f941f7a169b247b8124e242c7 /client/map | |
| parent | 2543e56e8e2e5df8291bb69eacdcaed2e6741cf1 (diff) | |
| download | hurrycurry-6989db6e0855c6df2435082d73d6b780adbe07e0.tar hurrycurry-6989db6e0855c6df2435082d73d6b780adbe07e0.tar.bz2 hurrycurry-6989db6e0855c6df2435082d73d6b780adbe07e0.tar.zst | |
Add mushroom sliced to mushroom soup (#393)
Diffstat (limited to 'client/map')
| -rw-r--r-- | client/map/items/mushroom_plate_fill.tscn | 17 | ||||
| -rw-r--r-- | client/map/items/plate.gd | 4 |
2 files changed, 20 insertions, 1 deletions
diff --git a/client/map/items/mushroom_plate_fill.tscn b/client/map/items/mushroom_plate_fill.tscn new file mode 100644 index 00000000..f673afa9 --- /dev/null +++ b/client/map/items/mushroom_plate_fill.tscn @@ -0,0 +1,17 @@ +[gd_scene load_steps=2 format=3 uid="uid://dvh0w2l8ly53e"] + +[ext_resource type="PackedScene" uid="uid://da3d6rgfss3su" path="res://map/items/pizza/mushroom_slice.tscn" id="1_iihb3"] + +[node name="MushroomPlateTopping" type="Node3D"] + +[node name="CookedMushroomSlice" parent="." instance=ExtResource("1_iihb3")] +transform = Transform3D(-0.53290087, 0.09379602, 0.8409631, 0.111597665, 0.9929469, -0.040030282, -0.8387864, 0.07251734, -0.5396097, 0.083272, 0.020344693, -0.06993499) + +[node name="CookedMushroomSlice2" parent="." instance=ExtResource("1_iihb3")] +transform = Transform3D(0.8638758, -0.24161705, 0.44197255, 0.2151002, 0.97037166, 0.11004867, -0.45546728, 0, 0.89025253, -0.06327816, 0.024188552, -0.060519822) + +[node name="CookedMushroomSlice3" parent="." instance=ExtResource("1_iihb3")] +transform = Transform3D(-0.95794797, -0.20063338, 0.20513889, -0.19618548, 0.9796664, 0.04201196, -0.20939668, 0, -0.97783077, 0.08738138, 0.020179842, 0.036596574) + +[node name="CookedMushroomSlice4" parent="." instance=ExtResource("1_iihb3")] +transform = Transform3D(0.8235921, 0, -0.5671827, -0.12658499, 0.9747768, -0.18381096, 0.5528766, 0.2231821, 0.8028185, -0.08654484, 0.023021702, 0.08201364) diff --git a/client/map/items/plate.gd b/client/map/items/plate.gd index 28856792..01b2fe29 100644 --- a/client/map/items/plate.gd +++ b/client/map/items/plate.gd @@ -61,7 +61,9 @@ func add_contents(contents: Array[String]): match c: "curry": add_child(PlateFill.new(self, Color(.75, .45, .1))) "cheese-leek-soup": add_child(PlateFill.new(self, Color(0.747, 0.77, 0.493))) - "mushroom-soup": add_child(PlateFill.new(self, Color(0.747, 0.454, 0.36))) + "mushroom-soup": + add_child(PlateFill.new(self, Color(0.747, 0.454, 0.36))) + add_child(load("res://map/items/mushroom_plate_fill.tscn").instantiate()) "cooked-rice": add_child(load("res://map/items/cooked_rice_fill.tscn").instantiate()) "tomato-lettuce-salad": add_child(load("res://map/items/sliced_tomato_sliced_lettuce_fill.tscn").instantiate()) "tomato-soup": add_child(PlateFill.new(self, Color(1., .3, .2))) |