aboutsummaryrefslogtreecommitdiff
path: root/client/map/items
diff options
context:
space:
mode:
Diffstat (limited to 'client/map/items')
-rw-r--r--client/map/items/bread.gd34
-rw-r--r--client/map/items/bread.resbin7285 -> 0 bytes
-rw-r--r--client/map/items/bread.tscn10
-rw-r--r--client/map/items/bread_slice.gd21
-rw-r--r--client/map/items/bread_slice.resbin5169 -> 0 bytes
-rw-r--r--client/map/items/bread_slice.tscn9
6 files changed, 0 insertions, 74 deletions
diff --git a/client/map/items/bread.gd b/client/map/items/bread.gd
deleted file mode 100644
index a3c109e1..00000000
--- a/client/map/items/bread.gd
+++ /dev/null
@@ -1,34 +0,0 @@
-# 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 Bread
-extends Item
-
-var steam: CPUParticles3D = preload("res://map/items/steam.tscn").instantiate()
-
-func _init(owned_by_: Node3D):
- super(owned_by_)
- base.add_child(load("res://map/items/bread.tscn").instantiate())
- steam.position.y += .1
- steam.color = Color(.6, .6, .6, .4)
- base.add_child(steam)
-
-func progress(position_: float, speed: float, warn: bool):
- super(position_, speed, warn)
- steam.emitting = warn
-
-func finish():
- super()
- steam.emitting = false
diff --git a/client/map/items/bread.res b/client/map/items/bread.res
deleted file mode 100644
index 4fe2dd65..00000000
--- a/client/map/items/bread.res
+++ /dev/null
Binary files differ
diff --git a/client/map/items/bread.tscn b/client/map/items/bread.tscn
deleted file mode 100644
index a787bb44..00000000
--- a/client/map/items/bread.tscn
+++ /dev/null
@@ -1,10 +0,0 @@
-[gd_scene load_steps=2 format=3 uid="uid://dsrhcbmij58ck"]
-
-[ext_resource type="ArrayMesh" uid="uid://cuym17dskutc8" path="res://map/items/bread.res" id="1_0eevh"]
-
-[node name="Bread" type="Node3D"]
-
-[node name="Mesh" type="MeshInstance3D" parent="."]
-transform = Transform3D(0.75, 0, 0, 0, 0.75, 0, 0, 0, 0.75, 0, 0, 0)
-mesh = ExtResource("1_0eevh")
-skeleton = NodePath("")
diff --git a/client/map/items/bread_slice.gd b/client/map/items/bread_slice.gd
deleted file mode 100644
index f74b0058..00000000
--- a/client/map/items/bread_slice.gd
+++ /dev/null
@@ -1,21 +0,0 @@
-# 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 BreadSlice
-extends Item
-
-func _init(owned_by_: Node3D):
- super(owned_by_)
- base.add_child(load("res://map/items/bread_slice.tscn").instantiate())
diff --git a/client/map/items/bread_slice.res b/client/map/items/bread_slice.res
deleted file mode 100644
index f78b75ae..00000000
--- a/client/map/items/bread_slice.res
+++ /dev/null
Binary files differ
diff --git a/client/map/items/bread_slice.tscn b/client/map/items/bread_slice.tscn
deleted file mode 100644
index 3a435e17..00000000
--- a/client/map/items/bread_slice.tscn
+++ /dev/null
@@ -1,9 +0,0 @@
-[gd_scene load_steps=2 format=3 uid="uid://ccajf36datccs"]
-
-[ext_resource type="ArrayMesh" uid="uid://cwftutpb2lxca" path="res://map/items/bread_slice.res" id="1_yv77k"]
-
-[node name="BreadSlice" type="Node3D"]
-
-[node name="Mesh" type="MeshInstance3D" parent="."]
-mesh = ExtResource("1_yv77k")
-skeleton = NodePath("")