2023-10-02 13:45:13 +00:00
|
|
|
[gd_scene load_steps=10 format=3 uid="uid://bawprh8kluilq"]
|
2023-10-02 12:58:17 +00:00
|
|
|
|
|
|
|
[ext_resource type="PhysicsMaterial" uid="uid://c6kn1an85lccr" path="res://entity/coin_physics_material.tres" id="1_vmemd"]
|
|
|
|
[ext_resource type="Texture2D" uid="uid://b21bsbo5f0ed7" path="res://entity/gem/gemstone.png" id="3_6jejy"]
|
2023-10-02 13:45:13 +00:00
|
|
|
[ext_resource type="PackedScene" uid="uid://vkvtap437nnf" path="res://color/colored.tscn" id="4_2cetq"]
|
2023-10-02 12:58:17 +00:00
|
|
|
[ext_resource type="PackedScene" uid="uid://bk1vvq5rug01m" path="res://collector/collectible.tscn" id="4_idoeu"]
|
|
|
|
[ext_resource type="PackedScene" uid="uid://ujpra0s1kpqi" path="res://value/valuable.tscn" id="5_7bd6c"]
|
2023-10-02 13:45:13 +00:00
|
|
|
[ext_resource type="Shader" path="res://entity/gem/gem_shading_material.gdshader" id="5_v6ppl"]
|
2023-10-02 12:58:17 +00:00
|
|
|
[ext_resource type="Script" path="res://entity/gem/RandomValue.gd" id="6_3lulr"]
|
|
|
|
[ext_resource type="AudioStream" uid="uid://br25ip30mu174" path="res://audio/conversione/mechanic_sound.wav" id="6_svrnw"]
|
|
|
|
|
|
|
|
[sub_resource type="CapsuleShape2D" id="CapsuleShape2D_jkfas"]
|
2023-10-02 16:36:55 +00:00
|
|
|
radius = 4.0
|
|
|
|
height = 10.0
|
2023-10-02 12:58:17 +00:00
|
|
|
|
|
|
|
[node name="Gem" type="RigidBody2D"]
|
2023-10-02 16:29:05 +00:00
|
|
|
collision_layer = 4
|
2023-10-02 16:36:55 +00:00
|
|
|
collision_mask = 14
|
2023-10-02 12:58:17 +00:00
|
|
|
mass = 1.5
|
|
|
|
inertia = 800.0
|
|
|
|
physics_material_override = ExtResource("1_vmemd")
|
|
|
|
continuous_cd = 1
|
|
|
|
linear_damp = 0.1
|
|
|
|
angular_damp = 0.1
|
|
|
|
|
|
|
|
[node name="CollisionShape2D" type="CollisionShape2D" parent="."]
|
2023-10-02 13:57:26 +00:00
|
|
|
scale = Vector2(4, 4)
|
2023-10-02 12:58:17 +00:00
|
|
|
shape = SubResource("CapsuleShape2D_jkfas")
|
|
|
|
|
|
|
|
[node name="Sprite" type="Sprite2D" parent="CollisionShape2D"]
|
|
|
|
texture_filter = 1
|
|
|
|
texture = ExtResource("3_6jejy")
|
|
|
|
|
2023-10-02 13:45:13 +00:00
|
|
|
[node name="Colored" parent="CollisionShape2D/Sprite" instance=ExtResource("4_2cetq")]
|
|
|
|
shader = ExtResource("5_v6ppl")
|
|
|
|
|
2023-10-02 12:58:17 +00:00
|
|
|
[node name="Collectible" parent="." instance=ExtResource("4_idoeu")]
|
2023-10-02 14:32:13 +00:00
|
|
|
type = &"Gem"
|
2023-10-02 12:58:17 +00:00
|
|
|
|
|
|
|
[node name="Valuable" parent="." instance=ExtResource("5_7bd6c")]
|
2023-10-02 16:42:10 +00:00
|
|
|
value = 1000
|
2023-10-02 12:58:17 +00:00
|
|
|
|
|
|
|
[node name="RandomValue" type="Node" parent="Valuable"]
|
|
|
|
script = ExtResource("6_3lulr")
|
2023-10-02 16:42:10 +00:00
|
|
|
min_value = 900
|
|
|
|
max_value = 1300
|
2023-10-02 12:58:17 +00:00
|
|
|
|
|
|
|
[node name="SoundWorking" type="AudioStreamPlayer" parent="."]
|
|
|
|
stream = ExtResource("6_svrnw")
|
|
|
|
|
|
|
|
[connection signal="collected" from="Collectible" to="Collectible" method="_on_done" flags=18]
|