diff options
author | metamuffin <metamuffin@disroot.org> | 2025-10-03 16:09:02 +0200 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2025-10-03 16:09:02 +0200 |
commit | 55d426dd7bbbeb4bd05b2134d93f32a71f7222e9 (patch) | |
tree | 65203d0f991e4805b5169c83cb88c9ad4d1c1a6e /client/map/items/plate.gd | |
parent | 10bd0b8a05c12c5f88cbd7e76521601817e70856 (diff) | |
download | hurrycurry-55d426dd7bbbeb4bd05b2134d93f32a71f7222e9.tar hurrycurry-55d426dd7bbbeb4bd05b2134d93f32a71f7222e9.tar.bz2 hurrycurry-55d426dd7bbbeb4bd05b2134d93f32a71f7222e9.tar.zst |
Add cheese leek soup plate fill
Diffstat (limited to 'client/map/items/plate.gd')
-rw-r--r-- | client/map/items/plate.gd | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/client/map/items/plate.gd b/client/map/items/plate.gd index fb4e52f6..d6df1c46 100644 --- a/client/map/items/plate.gd +++ b/client/map/items/plate.gd @@ -48,6 +48,7 @@ func _init(owned_by_: Node3D, contents: Array): var item: Item 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))) "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))) |