diff options
Diffstat (limited to 'client/map/items')
-rw-r--r-- | client/map/items/patty.gd | 21 | ||||
-rw-r--r-- | client/map/items/patty.res | bin | 0 -> 7798 bytes | |||
-rw-r--r-- | client/map/items/patty.tscn | 10 | ||||
-rw-r--r-- | client/map/items/seared_patty.gd | 21 | ||||
-rw-r--r-- | client/map/items/seared_patty.res | bin | 0 -> 6300 bytes | |||
-rw-r--r-- | client/map/items/seared_patty.tscn | 10 |
6 files changed, 62 insertions, 0 deletions
diff --git a/client/map/items/patty.gd b/client/map/items/patty.gd new file mode 100644 index 00000000..23d9879f --- /dev/null +++ b/client/map/items/patty.gd @@ -0,0 +1,21 @@ +# Hurry Curry! - a game about cooking +# Copyright 2024 tpart +# +# 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 Patty +extends Item + +func _init(owned_by_: Node3D): + super(owned_by_) + base.add_child(load("res://map/items/patty.tscn").instantiate()) diff --git a/client/map/items/patty.res b/client/map/items/patty.res Binary files differnew file mode 100644 index 00000000..855d17e5 --- /dev/null +++ b/client/map/items/patty.res diff --git a/client/map/items/patty.tscn b/client/map/items/patty.tscn new file mode 100644 index 00000000..2d1bdab6 --- /dev/null +++ b/client/map/items/patty.tscn @@ -0,0 +1,10 @@ +[gd_scene load_steps=2 format=3 uid="uid://b1grk3gj58qbn"] + +[ext_resource type="ArrayMesh" uid="uid://wp3747kxnah1" path="res://map/items/patty.res" id="1_7tkah"] + +[node name="Patty" type="Node3D"] + +[node name="Mesh" type="MeshInstance3D" parent="."] +transform = Transform3D(0.5, 0, 0, 0, 0.5, 0, 0, 0, 0.5, 0, 0, 0) +mesh = ExtResource("1_7tkah") +skeleton = NodePath("") diff --git a/client/map/items/seared_patty.gd b/client/map/items/seared_patty.gd new file mode 100644 index 00000000..3b6b528c --- /dev/null +++ b/client/map/items/seared_patty.gd @@ -0,0 +1,21 @@ +# Hurry Curry! - a game about cooking +# Copyright 2024 tpart +# +# 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 SearedPatty +extends Item + +func _init(owned_by_: Node3D): + super(owned_by_) + base.add_child(load("res://map/items/seared_patty.tscn").instantiate()) diff --git a/client/map/items/seared_patty.res b/client/map/items/seared_patty.res Binary files differnew file mode 100644 index 00000000..d4dc6a44 --- /dev/null +++ b/client/map/items/seared_patty.res diff --git a/client/map/items/seared_patty.tscn b/client/map/items/seared_patty.tscn new file mode 100644 index 00000000..7ffe65f2 --- /dev/null +++ b/client/map/items/seared_patty.tscn @@ -0,0 +1,10 @@ +[gd_scene load_steps=2 format=3 uid="uid://dfriokxmga3c8"] + +[ext_resource type="ArrayMesh" uid="uid://dl8hstmmdkog4" path="res://map/items/seared_patty.res" id="1_gy1aa"] + +[node name="SearedPatty" type="Node3D"] + +[node name="Mesh" type="MeshInstance3D" parent="."] +transform = Transform3D(0.5, 0, 0, 0, 0.5, 0, 0, 0, 0.5, 0, 0, 0) +mesh = ExtResource("1_gy1aa") +skeleton = NodePath("") |