diff options
Diffstat (limited to 'client/map/items/plate_items.gd')
-rw-r--r-- | client/map/items/plate_items.gd | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/client/map/items/plate_items.gd b/client/map/items/plate_items.gd index c8e6901f..adbe7aa9 100644 --- a/client/map/items/plate_items.gd +++ b/client/map/items/plate_items.gd @@ -47,6 +47,12 @@ class CurryP extends PlateFill: super(owned_by_) set_color(Color(.75, .45, .1)) +class CookedRiceCurryP extends Plate: + func _init(owned_by_: Node3D): + super(owned_by_) + var fill = load("res://map/items/cooked-rice-curry-fill.tscn").instantiate() + add_child(fill) + class DirtyP extends Plate: func _init(owned_by_: Node3D): super(owned_by_) |