diff options
author | tpart <tpart120@proton.me> | 2024-08-19 20:03:23 +0200 |
---|---|---|
committer | tpart <tpart120@proton.me> | 2024-08-19 20:03:23 +0200 |
commit | 84bed3d870c6c3348c85e4cef9f6c3316888865a (patch) | |
tree | f213ed683472004f9e61e54af7d96cc87b50c109 /client/map/items | |
parent | 5db3cd101fb1108815b58c0609959b2f45447aae (diff) | |
download | hurrycurry-84bed3d870c6c3348c85e4cef9f6c3316888865a.tar hurrycurry-84bed3d870c6c3348c85e4cef9f6c3316888865a.tar.bz2 hurrycurry-84bed3d870c6c3348c85e4cef9f6c3316888865a.tar.zst |
Implement curry plate item
Diffstat (limited to 'client/map/items')
-rw-r--r-- | client/map/items/plate_items.gd | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/client/map/items/plate_items.gd b/client/map/items/plate_items.gd index c1f4df37..33b128ba 100644 --- a/client/map/items/plate_items.gd +++ b/client/map/items/plate_items.gd @@ -42,6 +42,11 @@ class BreadSliceSteakP extends BreadSliceP: steak.position.y = .05 base.add_child(steak) +class CurryP extends PlateFill: + func _init(owned_by_: Node3D): + super(owned_by_) + set_color(Color(.75, .45, .1)) + class DirtyP extends Plate: func _init(owned_by_: Node3D): super(owned_by_) |