Files
ScrapFrontier/game/entities/weapons/shrapnel/shrapnel_weapon.tscn
T
2025-11-26 21:29:57 +03:00

153 lines
4.5 KiB
Plaintext

[gd_scene load_steps=18 format=3 uid="uid://r7wnk762jbfy"]
[ext_resource type="PackedScene" uid="uid://1o2ta17yc5bp" path="res://game/entities/weapons/abstract_weapon.tscn" id="1_xk300"]
[ext_resource type="Script" uid="uid://gxwbsiicuqh5" path="res://game/entities/weapons/shrapnel/shrapnel_weapon.gd" id="2_1bd18"]
[ext_resource type="PackedScene" uid="uid://bsx23u3a2obbj" path="res://game/entities/weapons/shrapnel/shrapnel_projectile.tscn" id="2_xvd4y"]
[ext_resource type="Texture2D" uid="uid://b2tpy3y2bpuat" path="res://particle_textures/flame_small.tres" id="4_0tw2i"]
[ext_resource type="Texture2D" uid="uid://6hh66k8s4a1e" path="res://images/weapons.png" id="6_0tw2i"]
[ext_resource type="Texture2D" uid="uid://dxcxybr27kkra" path="res://particle_textures/shell_medium.tres" id="6_gdolk"]
[sub_resource type="ParticleProcessMaterial" id="ParticleProcessMaterial_a22j7"]
resource_local_to_scene = true
lifetime_randomness = 0.5
particle_flag_disable_z = true
emission_shape = 1
emission_sphere_radius = 2.0
angle_min = -179.99998
angle_max = 180.00002
inherit_velocity_ratio = 0.5
spread = 60.0
initial_velocity_min = 10.0
initial_velocity_max = 15.0
gravity = Vector3(0, 0, 0)
[sub_resource type="AtlasTexture" id="AtlasTexture_gdolk"]
atlas = ExtResource("6_0tw2i")
region = Rect2(128, 48, 32, 16)
[sub_resource type="AtlasTexture" id="AtlasTexture_a22j7"]
atlas = ExtResource("6_0tw2i")
region = Rect2(160, 48, 32, 16)
[sub_resource type="AtlasTexture" id="AtlasTexture_t57yr"]
atlas = ExtResource("6_0tw2i")
region = Rect2(192, 48, 32, 16)
[sub_resource type="AtlasTexture" id="AtlasTexture_cogj5"]
atlas = ExtResource("6_0tw2i")
region = Rect2(224, 48, 32, 16)
[sub_resource type="AtlasTexture" id="AtlasTexture_t4pcy"]
atlas = ExtResource("6_0tw2i")
region = Rect2(128, 32, 32, 16)
[sub_resource type="AtlasTexture" id="AtlasTexture_25rnd"]
atlas = ExtResource("6_0tw2i")
region = Rect2(160, 32, 32, 16)
[sub_resource type="AtlasTexture" id="AtlasTexture_02grq"]
atlas = ExtResource("6_0tw2i")
region = Rect2(192, 32, 32, 16)
[sub_resource type="AtlasTexture" id="AtlasTexture_6pv2s"]
atlas = ExtResource("6_0tw2i")
region = Rect2(224, 32, 32, 16)
[sub_resource type="SpriteFrames" id="SpriteFrames_he4pe"]
animations = [{
"frames": [{
"duration": 1.0,
"texture": SubResource("AtlasTexture_gdolk")
}],
"loop": true,
"name": &"enemy_idle",
"speed": 10.0
}, {
"frames": [{
"duration": 1.0,
"texture": SubResource("AtlasTexture_a22j7")
}, {
"duration": 1.0,
"texture": SubResource("AtlasTexture_t57yr")
}, {
"duration": 1.0,
"texture": SubResource("AtlasTexture_cogj5")
}],
"loop": false,
"name": &"enemy_shot",
"speed": 10.0
}, {
"frames": [{
"duration": 1.0,
"texture": SubResource("AtlasTexture_t4pcy")
}],
"loop": true,
"name": &"player_idle",
"speed": 10.0
}, {
"frames": [{
"duration": 1.0,
"texture": SubResource("AtlasTexture_25rnd")
}, {
"duration": 1.0,
"texture": SubResource("AtlasTexture_02grq")
}, {
"duration": 1.0,
"texture": SubResource("AtlasTexture_6pv2s")
}],
"loop": false,
"name": &"player_shot",
"speed": 10.0
}]
[sub_resource type="ParticleProcessMaterial" id="ParticleProcessMaterial_t57yr"]
resource_local_to_scene = true
particle_flag_disable_z = true
inherit_velocity_ratio = 1.0
direction = Vector3(0, 1, 0)
spread = 15.0
initial_velocity_min = 15.0
initial_velocity_max = 25.0
gravity = Vector3(0, 0, 0)
[node name="ShrapnelWeapon" instance=ExtResource("1_xk300")]
script = ExtResource("2_1bd18")
bullet_per_shot = 20
sector_angle = 30
Projectile = ExtResource("2_xvd4y")
type = 0
[node name="ShotParticles" type="GPUParticles2D" parent="." index="0"]
position = Vector2(17, 0)
emitting = false
amount = 32
texture = ExtResource("4_0tw2i")
lifetime = 0.3
one_shot = true
process_material = SubResource("ParticleProcessMaterial_a22j7")
[node name="AnimatedSprite2D" type="AnimatedSprite2D" parent="." index="1"]
position = Vector2(7, 0)
sprite_frames = SubResource("SpriteFrames_he4pe")
animation = &"player_shot"
[node name="CooldownTimer" type="Timer" parent="." index="2"]
wait_time = 0.6
one_shot = true
[node name="ShellParticles" type="GPUParticles2D" parent="." index="3"]
z_index = 1
position = Vector2(-1, 1)
emitting = false
amount = 1
texture = ExtResource("6_gdolk")
lifetime = 2.0
one_shot = true
process_material = SubResource("ParticleProcessMaterial_t57yr")
[node name="Muzzle" parent="." index="4"]
position = Vector2(14, 0)
[connection signal="animation_finished" from="AnimatedSprite2D" to="." method="_on_animated_sprite_2d_animation_finished"]
[connection signal="timeout" from="CooldownTimer" to="." method="_on_cooldown_timer_timeout"]