aboutsummaryrefslogtreecommitdiff
path: root/client/map/items/coconut_food_processor.gd
diff options
context:
space:
mode:
authornokoe <nokoe@mailbox.org>2024-08-13 15:51:56 +0200
committernokoe <nokoe@mailbox.org>2024-08-13 15:51:56 +0200
commit11ff74f034aeec58c06dbe15a3f1ee650ef18c9f (patch)
treeb74da9035d3f7938d6e26b7b62da4a4ae331c0ff /client/map/items/coconut_food_processor.gd
parent84fbb6fc9824ec28622afbf6b345dd9182557b72 (diff)
downloadhurrycurry-11ff74f034aeec58c06dbe15a3f1ee650ef18c9f.tar
hurrycurry-11ff74f034aeec58c06dbe15a3f1ee650ef18c9f.tar.bz2
hurrycurry-11ff74f034aeec58c06dbe15a3f1ee650ef18c9f.tar.zst
add coconut, nigiri and ice cream models
Diffstat (limited to 'client/map/items/coconut_food_processor.gd')
-rw-r--r--client/map/items/coconut_food_processor.gd22
1 files changed, 22 insertions, 0 deletions
diff --git a/client/map/items/coconut_food_processor.gd b/client/map/items/coconut_food_processor.gd
new file mode 100644
index 00000000..c21ebabf
--- /dev/null
+++ b/client/map/items/coconut_food_processor.gd
@@ -0,0 +1,22 @@
+# Hurry Curry! - 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 CoconutFoodProcessor
+extends FoodProcessor
+
+func _init(owned_by_: Node3D):
+ super(owned_by_)
+ processing.color = Color(.8, .5, .4)
+ base.add_child(load("res://map/items/coconut.tscn").instantiate())