diff options
author | tpart <tpart120@proton.me> | 2024-08-19 21:06:06 +0200 |
---|---|---|
committer | tpart <tpart120@proton.me> | 2024-08-19 21:06:06 +0200 |
commit | 666ade5b9ccc01d936b61bdaceab496227aca8f3 (patch) | |
tree | 9cf9f52cef5212ccfdca8f0526406723adc2d2b5 /client/map/item_factory.gd | |
parent | 84bed3d870c6c3348c85e4cef9f6c3316888865a (diff) | |
download | hurrycurry-666ade5b9ccc01d936b61bdaceab496227aca8f3.tar hurrycurry-666ade5b9ccc01d936b61bdaceab496227aca8f3.tar.bz2 hurrycurry-666ade5b9ccc01d936b61bdaceab496227aca8f3.tar.zst |
Add ice cream model & implement strawberry ice cream plate item
Diffstat (limited to 'client/map/item_factory.gd')
-rw-r--r-- | client/map/item_factory.gd | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/client/map/item_factory.gd b/client/map/item_factory.gd index 4ac20de8..014c80b4 100644 --- a/client/map/item_factory.gd +++ b/client/map/item_factory.gd @@ -83,6 +83,7 @@ static func produce(name: String, owned_by: Node3D) -> Item: "bread-slice-sliced-tomato-steak-plate": return PlateItems.BreadSliceSlicedTomatoSteakP.new(owned_by) "bread-slice-steak-plate": return PlateItems.BreadSliceSteakP.new(owned_by) "curry-plate": return PlateItems.CurryP.new(owned_by) + "strawberry-icecream-plate": return PlateItems.StrawberryIcecreamP.new(owned_by) "dirty-plate": return PlateItems.DirtyP.new(owned_by) "nigiri-plate": return PlateItems.NigiriP.new(owned_by) |