aboutsummaryrefslogtreecommitdiff
path: root/client/map/items/dough_food_processor.gd
diff options
context:
space:
mode:
authormetamuffin <metamuffin@disroot.org>2024-06-24 21:25:55 +0200
committermetamuffin <metamuffin@disroot.org>2024-06-24 21:25:55 +0200
commit144a4cf77ab18c73fd7b1fdbc390445056a615fb (patch)
tree27bb41b71bb315ab9e8b6059c847ecd5facd88c7 /client/map/items/dough_food_processor.gd
parent54c75911214b87664a85a2195b11cdabe11b8640 (diff)
parent30b38da3ee8bc289a42287c9e5ba15f4d55e7e1c (diff)
downloadhurrycurry-144a4cf77ab18c73fd7b1fdbc390445056a615fb.tar
hurrycurry-144a4cf77ab18c73fd7b1fdbc390445056a615fb.tar.bz2
hurrycurry-144a4cf77ab18c73fd7b1fdbc390445056a615fb.tar.zst
Merge branch 'master' of codeberg.org:metamuffin/undercooked
Diffstat (limited to 'client/map/items/dough_food_processor.gd')
-rw-r--r--client/map/items/dough_food_processor.gd21
1 files changed, 21 insertions, 0 deletions
diff --git a/client/map/items/dough_food_processor.gd b/client/map/items/dough_food_processor.gd
new file mode 100644
index 00000000..2d9cd8b7
--- /dev/null
+++ b/client/map/items/dough_food_processor.gd
@@ -0,0 +1,21 @@
+# Undercooked - a game about cooking
+# Copyright 2024 nokoe
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU Affero General Public License as published by
+# the Free Software Foundation, version 3 of the License only.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU Affero General Public License for more details.
+#
+# You should have received a copy of the GNU Affero General Public License
+# along with this program. If not, see <https://www.gnu.org/licenses/>.
+#
+class_name DoughFoodProcessor
+extends FoodProcessorContent
+
+func _init(owned_by_: Node3D):
+ super(owned_by_)
+ set_color(Color8(198, 195, 180))