31 lines
1.3 KiB
Plaintext
31 lines
1.3 KiB
Plaintext
[gd_scene load_steps=5 format=3 uid="uid://l72f05nek0y4"]
|
|
|
|
[ext_resource type="Texture2D" uid="uid://c3td3bhrbd0kp" path="res://sprites/cowberry_plant.png" id="2_ihdej"]
|
|
[ext_resource type="Script" uid="uid://jd6ce3f7e1bh" path="res://prefabs/tiles/gatherable_animation.gd" id="2_kod7n"]
|
|
[ext_resource type="Texture2D" uid="uid://1udkm2j25i8o" path="res://sprites/generic_picked.png" id="3_ihdej"]
|
|
[ext_resource type="Script" uid="uid://u5cupgv1dx71" path="res://prefabs/tiles/berry_grower.gd" id="4_y3wpw"]
|
|
|
|
[node name="Blueberry" type="GridPosition"]
|
|
|
|
[node name="Not Picked" type="Sprite2D" parent="."]
|
|
texture = ExtResource("2_ihdej")
|
|
|
|
[node name="Picked" type="Sprite2D" parent="."]
|
|
visible = false
|
|
texture = ExtResource("3_ihdej")
|
|
|
|
[node name="Gatherable" type="Gatherable" parent="." node_paths=PackedStringArray("grid")]
|
|
grid = NodePath("..")
|
|
item = "Cowberry"
|
|
|
|
[node name="Sprite Swapper" type="Node" parent="." node_paths=PackedStringArray("gatherable", "picked", "not_picked")]
|
|
script = ExtResource("2_kod7n")
|
|
gatherable = NodePath("../Gatherable")
|
|
picked = NodePath("../Picked")
|
|
not_picked = NodePath("../Not Picked")
|
|
|
|
[node name="Grow" type="Node" parent="." node_paths=PackedStringArray("gatherable")]
|
|
script = ExtResource("4_y3wpw")
|
|
gatherable = NodePath("../Gatherable")
|
|
days_to_grow = 2
|