From 31e8b7fb0177d709fc4961d6dbdddd990f3d4632 Mon Sep 17 00:00:00 2001 From: Pal Date: Wed, 1 Apr 2026 16:47:05 -0700 Subject: [PATCH] Added all forms of enemies taking elemental damage + rust. Added on Sara.tscn and persuader and fist effect changed. added entropic sign visual --- .../enemy_types/04. sara/SaraModelView.tscn | 2839 ++++++++++++++++- .../src/items/armor/textures/Holy Barrier.png | Bin 58595 -> 60129 bytes .../A2-Puer_AREA_2_MAIN_222STONE.png.import | 6 +- .../Puer/A2-Puer_AREA_2_MAIN_STONE.png.import | 6 +- .../Puer/A2-Puer_COLUMN_WHITE.png.import | 6 +- .../Area 2/Puer/A2-Puer_GREENBIT.png.import | 6 +- .../Area 2/Puer/A2-Puer_M13_14.png.import | 6 +- .../Area 2/Puer/A2-Puer_M13_49.png.import | 6 +- .../Area 2/Puer/A2-Puer_RUBBLE_1.png.import | 6 +- .../Puer/A2-Puer_STUCCO_DECAL_BIG.png.import | 6 +- .../Area 2/Puer/A2-Puer_Tile 4.png.import | 6 +- .../Puer/A2-Puer_imag2esnormal.jpg.import | 6 +- .../Puer/A2-Puer_inner_rock2.png.import | 6 +- .../Puer/A2-Puer_lime_hand_relief.png.import | 6 +- .../Puer/A2-Puer_mother_GREEN.png.import | 6 +- ...A2-Puer_swirled_column _AREA222.png.import | 6 +- Zennysoft.Game.Ma/src/player/Player.tscn | 2467 ++++++++++---- .../src/vfx/Enemy Affected/Holy Damage.png | Bin 0 -> 711866 bytes .../vfx/Enemy Affected/Holy Damage.png.import | 35 + .../src/vfx/Enemy Affected/Rust Particles.png | Bin 0 -> 22111 bytes .../Enemy Affected/Rust Particles.png.import | 35 + .../src/vfx/Enemy Affected/Wind Damage.png | Bin 0 -> 1848410 bytes .../vfx/Enemy Affected/Wind Damage.png.import | 35 + .../src/vfx/Enemy Affected/curse_damage.png | Bin 0 -> 328018 bytes .../Enemy Affected/curse_damage.png.import | 35 + .../src/vfx/Enemy Affected/earth damage.png | Bin 0 -> 563364 bytes .../Enemy Affected/earth damage.png.import | 35 + .../enemy_water_damage.png.import | 35 + .../src/vfx/Enemy Affected/firedamage.png | Bin 0 -> 272198 bytes .../vfx/Enemy Affected/firedamage.png.import | 35 + .../src/vfx/Enemy Affected/water layer 1.png | Bin 0 -> 616268 bytes .../Enemy Affected/water layer 1.png.import | 35 + .../vfx/Enemy Affected/water_hit_layer2.png | Bin 0 -> 54761 bytes .../water_hit_layer2.png.import | 35 + .../src/vfx/Items Etc/energyorb.png | Bin 0 -> 54342 bytes .../src/vfx/Items Etc/energyorb.png.import | 35 + .../src/vfx/Items Etc/explopsiopn.png | Bin 0 -> 202838 bytes .../src/vfx/Items Etc/explopsiopn.png.import | 35 + .../vfx/Weapon Strikes/persuaderbullet.png | Bin 0 -> 122 bytes .../Weapon Strikes/persuaderbullet.png.import | 35 + .../src/vfx/hit_effects/fist.png | Bin 0 -> 26565 bytes .../src/vfx/hit_effects/fist.png.import | 35 + 42 files changed, 5167 insertions(+), 678 deletions(-) create mode 100644 Zennysoft.Game.Ma/src/vfx/Enemy Affected/Holy Damage.png create mode 100644 Zennysoft.Game.Ma/src/vfx/Enemy Affected/Holy Damage.png.import create mode 100644 Zennysoft.Game.Ma/src/vfx/Enemy Affected/Rust Particles.png create mode 100644 Zennysoft.Game.Ma/src/vfx/Enemy Affected/Rust Particles.png.import create mode 100644 Zennysoft.Game.Ma/src/vfx/Enemy Affected/Wind Damage.png create mode 100644 Zennysoft.Game.Ma/src/vfx/Enemy Affected/Wind Damage.png.import create mode 100644 Zennysoft.Game.Ma/src/vfx/Enemy Affected/curse_damage.png create mode 100644 Zennysoft.Game.Ma/src/vfx/Enemy Affected/curse_damage.png.import create mode 100644 Zennysoft.Game.Ma/src/vfx/Enemy Affected/earth damage.png create mode 100644 Zennysoft.Game.Ma/src/vfx/Enemy Affected/earth damage.png.import create mode 100644 Zennysoft.Game.Ma/src/vfx/Enemy Affected/enemy_water_damage.png.import create mode 100644 Zennysoft.Game.Ma/src/vfx/Enemy Affected/firedamage.png create mode 100644 Zennysoft.Game.Ma/src/vfx/Enemy Affected/firedamage.png.import create mode 100644 Zennysoft.Game.Ma/src/vfx/Enemy Affected/water layer 1.png create mode 100644 Zennysoft.Game.Ma/src/vfx/Enemy Affected/water layer 1.png.import create mode 100644 Zennysoft.Game.Ma/src/vfx/Enemy Affected/water_hit_layer2.png create mode 100644 Zennysoft.Game.Ma/src/vfx/Enemy Affected/water_hit_layer2.png.import create mode 100644 Zennysoft.Game.Ma/src/vfx/Items Etc/energyorb.png create mode 100644 Zennysoft.Game.Ma/src/vfx/Items Etc/energyorb.png.import create mode 100644 Zennysoft.Game.Ma/src/vfx/Items Etc/explopsiopn.png create mode 100644 Zennysoft.Game.Ma/src/vfx/Items Etc/explopsiopn.png.import create mode 100644 Zennysoft.Game.Ma/src/vfx/Weapon Strikes/persuaderbullet.png create mode 100644 Zennysoft.Game.Ma/src/vfx/Weapon Strikes/persuaderbullet.png.import create mode 100644 Zennysoft.Game.Ma/src/vfx/hit_effects/fist.png create mode 100644 Zennysoft.Game.Ma/src/vfx/hit_effects/fist.png.import diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/04. sara/SaraModelView.tscn b/Zennysoft.Game.Ma/src/enemy/enemy_types/04. sara/SaraModelView.tscn index c803b7a5..ecc0db62 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/04. sara/SaraModelView.tscn +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/04. sara/SaraModelView.tscn @@ -1,4 +1,4 @@ -[gd_scene load_steps=232 format=3 uid="uid://g84hcmgo3gtl"] +[gd_scene load_steps=621 format=3 uid="uid://g84hcmgo3gtl"] [ext_resource type="Script" uid="uid://cvr1qimxpignl" path="res://src/enemy/EnemyModelView2D.cs" id="1_oh25a"] [ext_resource type="Texture2D" uid="uid://nps7rrvkgews" path="res://src/enemy/enemy_types/04. sara/animations/IDLE+MOVE/FRONT/0001.png" id="2_8j76g"] @@ -168,6 +168,14 @@ [ext_resource type="Texture2D" uid="uid://cxibdrta6imfb" path="res://src/vfx/Enemy/nega.png" id="164_rrjme"] [ext_resource type="AnimationNodeStateMachine" uid="uid://cbq8xog50cjjy" path="res://src/enemy/animation_state_machines/PrimaryAttackStateMachine.tres" id="165_veo2p"] [ext_resource type="AnimationNodeStateMachine" uid="uid://clybvwx3itfeo" path="res://src/enemy/animation_state_machines/SecondaryAttackStateMachine.tres" id="166_xppqu"] +[ext_resource type="Texture2D" uid="uid://dq70aipwl1qrg" path="res://src/vfx/Enemy Affected/Rust Particles.png" id="169_6shfu"] +[ext_resource type="Texture2D" uid="uid://by0ehygy7bq13" path="res://src/vfx/Enemy Affected/Holy Damage.png" id="170_cftgd"] +[ext_resource type="Texture2D" uid="uid://dqqhu0s51o3n7" path="res://src/vfx/Enemy Affected/Wind Damage.png" id="171_0tqwp"] +[ext_resource type="Texture2D" uid="uid://dh6mk1c35nymx" path="res://src/vfx/Enemy Affected/firedamage.png" id="172_f5cjs"] +[ext_resource type="Texture2D" uid="uid://7a42df2ijrmv" path="res://src/vfx/Enemy Affected/earth damage.png" id="173_godpv"] +[ext_resource type="Texture2D" uid="uid://cot4wx5fg5pfs" path="res://src/vfx/Enemy Affected/water_hit_layer2.png" id="174_q5dfb"] +[ext_resource type="Texture2D" uid="uid://cbei66g134fgv" path="res://src/vfx/Enemy Affected/water layer 1.png" id="175_30xy4"] +[ext_resource type="Texture2D" uid="uid://bp6npqoco5fl3" path="res://src/vfx/Enemy Affected/curse_damage.png" id="176_3pm1j"] [sub_resource type="ViewportTexture" id="ViewportTexture_h1kaf"] viewport_path = NodePath("Sprite3D/SubViewportContainer/SubViewport") @@ -1823,6 +1831,2767 @@ _data = { &"RESET": SubResource("Animation_8wlnr") } +[sub_resource type="AtlasTexture" id="AtlasTexture_4o5f2"] +atlas = ExtResource("169_6shfu") +region = Rect2(1206, 402, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r8ggx"] +atlas = ExtResource("169_6shfu") +region = Rect2(1340, 402, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xafpd"] +atlas = ExtResource("169_6shfu") +region = Rect2(1474, 402, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_73dpc"] +atlas = ExtResource("169_6shfu") +region = Rect2(0, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vppxt"] +atlas = ExtResource("169_6shfu") +region = Rect2(134, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nk562"] +atlas = ExtResource("169_6shfu") +region = Rect2(268, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dwu2q"] +atlas = ExtResource("169_6shfu") +region = Rect2(402, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w3p3j"] +atlas = ExtResource("169_6shfu") +region = Rect2(536, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ig0ip"] +atlas = ExtResource("169_6shfu") +region = Rect2(670, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r4enw"] +atlas = ExtResource("169_6shfu") +region = Rect2(804, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uy6hg"] +atlas = ExtResource("169_6shfu") +region = Rect2(938, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_85jwg"] +atlas = ExtResource("169_6shfu") +region = Rect2(1072, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ln7dl"] +atlas = ExtResource("169_6shfu") +region = Rect2(1206, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3vvgp"] +atlas = ExtResource("169_6shfu") +region = Rect2(1340, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_01f7m"] +atlas = ExtResource("169_6shfu") +region = Rect2(1474, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pp21u"] +atlas = ExtResource("169_6shfu") +region = Rect2(0, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1aldj"] +atlas = ExtResource("169_6shfu") +region = Rect2(134, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xv5pw"] +atlas = ExtResource("169_6shfu") +region = Rect2(268, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_14lh3"] +atlas = ExtResource("169_6shfu") +region = Rect2(402, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xxid6"] +atlas = ExtResource("169_6shfu") +region = Rect2(536, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y6yeo"] +atlas = ExtResource("169_6shfu") +region = Rect2(670, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2aohu"] +atlas = ExtResource("169_6shfu") +region = Rect2(804, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ebvc7"] +atlas = ExtResource("169_6shfu") +region = Rect2(938, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yd50d"] +atlas = ExtResource("169_6shfu") +region = Rect2(1072, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yimdu"] +atlas = ExtResource("169_6shfu") +region = Rect2(1206, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dync1"] +atlas = ExtResource("169_6shfu") +region = Rect2(1340, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jsjdk"] +atlas = ExtResource("169_6shfu") +region = Rect2(1474, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ueih5"] +atlas = ExtResource("169_6shfu") +region = Rect2(0, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k0hut"] +atlas = ExtResource("169_6shfu") +region = Rect2(134, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kybji"] +atlas = ExtResource("169_6shfu") +region = Rect2(268, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u5vpt"] +atlas = ExtResource("169_6shfu") +region = Rect2(402, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wko4t"] +atlas = ExtResource("169_6shfu") +region = Rect2(536, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ru86o"] +atlas = ExtResource("169_6shfu") +region = Rect2(670, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uybbj"] +atlas = ExtResource("169_6shfu") +region = Rect2(804, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s6pp8"] +atlas = ExtResource("169_6shfu") +region = Rect2(938, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a7pls"] +atlas = ExtResource("169_6shfu") +region = Rect2(1072, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_30y71"] +atlas = ExtResource("169_6shfu") +region = Rect2(1206, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dwl1c"] +atlas = ExtResource("169_6shfu") +region = Rect2(1340, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_01jp4"] +atlas = ExtResource("169_6shfu") +region = Rect2(1474, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b8ulh"] +atlas = ExtResource("169_6shfu") +region = Rect2(0, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3walv"] +atlas = ExtResource("169_6shfu") +region = Rect2(134, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_exyoj"] +atlas = ExtResource("169_6shfu") +region = Rect2(268, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kus54"] +atlas = ExtResource("169_6shfu") +region = Rect2(402, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_meauc"] +atlas = ExtResource("169_6shfu") +region = Rect2(536, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7v7xr"] +atlas = ExtResource("169_6shfu") +region = Rect2(670, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4ktea"] +atlas = ExtResource("169_6shfu") +region = Rect2(804, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l8oa1"] +atlas = ExtResource("169_6shfu") +region = Rect2(938, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3eopa"] +atlas = ExtResource("169_6shfu") +region = Rect2(1072, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ip8hv"] +atlas = ExtResource("169_6shfu") +region = Rect2(1206, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_42rbq"] +atlas = ExtResource("169_6shfu") +region = Rect2(1340, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tu0vu"] +atlas = ExtResource("169_6shfu") +region = Rect2(1474, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gbh7l"] +atlas = ExtResource("169_6shfu") +region = Rect2(0, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_733jx"] +atlas = ExtResource("169_6shfu") +region = Rect2(134, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sfa2q"] +atlas = ExtResource("169_6shfu") +region = Rect2(268, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o0nvo"] +atlas = ExtResource("169_6shfu") +region = Rect2(402, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1mv1w"] +atlas = ExtResource("169_6shfu") +region = Rect2(536, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yw8ob"] +atlas = ExtResource("169_6shfu") +region = Rect2(670, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ptkbd"] +atlas = ExtResource("169_6shfu") +region = Rect2(804, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2uoiw"] +atlas = ExtResource("169_6shfu") +region = Rect2(938, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4m684"] +atlas = ExtResource("169_6shfu") +region = Rect2(1072, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_st6fj"] +atlas = ExtResource("169_6shfu") +region = Rect2(1206, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1wana"] +atlas = ExtResource("169_6shfu") +region = Rect2(1340, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ati4e"] +atlas = ExtResource("169_6shfu") +region = Rect2(1474, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0w31q"] +atlas = ExtResource("169_6shfu") +region = Rect2(0, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uxu33"] +atlas = ExtResource("169_6shfu") +region = Rect2(134, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2ulnd"] +atlas = ExtResource("169_6shfu") +region = Rect2(268, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ddsrn"] +atlas = ExtResource("169_6shfu") +region = Rect2(402, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n1e5w"] +atlas = ExtResource("169_6shfu") +region = Rect2(536, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f4aq5"] +atlas = ExtResource("169_6shfu") +region = Rect2(670, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_er00h"] +atlas = ExtResource("169_6shfu") +region = Rect2(804, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mlf5c"] +atlas = ExtResource("169_6shfu") +region = Rect2(938, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c362w"] +atlas = ExtResource("169_6shfu") +region = Rect2(1072, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_30wb7"] +atlas = ExtResource("169_6shfu") +region = Rect2(1206, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_stb0b"] +atlas = ExtResource("169_6shfu") +region = Rect2(1340, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a64qf"] +atlas = ExtResource("169_6shfu") +region = Rect2(1474, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_52bkw"] +atlas = ExtResource("169_6shfu") +region = Rect2(0, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y0yvc"] +atlas = ExtResource("169_6shfu") +region = Rect2(134, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5h2xe"] +atlas = ExtResource("169_6shfu") +region = Rect2(268, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6hh33"] +atlas = ExtResource("169_6shfu") +region = Rect2(402, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kmk3m"] +atlas = ExtResource("169_6shfu") +region = Rect2(536, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rbtmh"] +atlas = ExtResource("169_6shfu") +region = Rect2(670, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bit6n"] +atlas = ExtResource("169_6shfu") +region = Rect2(804, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_458hw"] +atlas = ExtResource("169_6shfu") +region = Rect2(938, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4x2ea"] +atlas = ExtResource("169_6shfu") +region = Rect2(1072, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bcljt"] +atlas = ExtResource("169_6shfu") +region = Rect2(1206, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p6e34"] +atlas = ExtResource("169_6shfu") +region = Rect2(1340, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2yfi0"] +atlas = ExtResource("169_6shfu") +region = Rect2(1474, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bhoxy"] +atlas = ExtResource("169_6shfu") +region = Rect2(0, 1474, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_41wyx"] +atlas = ExtResource("169_6shfu") +region = Rect2(134, 1474, 134, 134) + +[sub_resource type="SpriteFrames" id="SpriteFrames_s0t7i"] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_4o5f2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r8ggx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xafpd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_73dpc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vppxt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nk562") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dwu2q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w3p3j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ig0ip") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r4enw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uy6hg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_85jwg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ln7dl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3vvgp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_01f7m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pp21u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1aldj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xv5pw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_14lh3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xxid6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y6yeo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2aohu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ebvc7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yd50d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yimdu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dync1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jsjdk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ueih5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k0hut") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kybji") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u5vpt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wko4t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ru86o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uybbj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s6pp8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a7pls") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_30y71") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dwl1c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_01jp4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b8ulh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3walv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_exyoj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kus54") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_meauc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7v7xr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4ktea") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l8oa1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3eopa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ip8hv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_42rbq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tu0vu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gbh7l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_733jx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sfa2q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o0nvo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1mv1w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yw8ob") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ptkbd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2uoiw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4m684") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_st6fj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1wana") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ati4e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0w31q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uxu33") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2ulnd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ddsrn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n1e5w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f4aq5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_er00h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mlf5c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c362w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_30wb7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_stb0b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a64qf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_52bkw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y0yvc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5h2xe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6hh33") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kmk3m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rbtmh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bit6n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_458hw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4x2ea") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bcljt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p6e34") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2yfi0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bhoxy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_41wyx") +}], +"loop": false, +"name": &"default", +"speed": 60.0 +}] + +[sub_resource type="AtlasTexture" id="AtlasTexture_slhg2"] +atlas = ExtResource("170_cftgd") +region = Rect2(1024, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pvn2l"] +atlas = ExtResource("170_cftgd") +region = Rect2(1536, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sctov"] +atlas = ExtResource("170_cftgd") +region = Rect2(2048, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_46bwa"] +atlas = ExtResource("170_cftgd") +region = Rect2(2560, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o42jv"] +atlas = ExtResource("170_cftgd") +region = Rect2(3072, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5dqsk"] +atlas = ExtResource("170_cftgd") +region = Rect2(3584, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_35l4k"] +atlas = ExtResource("170_cftgd") +region = Rect2(4096, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x0jfm"] +atlas = ExtResource("170_cftgd") +region = Rect2(4608, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fk16r"] +atlas = ExtResource("170_cftgd") +region = Rect2(5120, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ewtdr"] +atlas = ExtResource("170_cftgd") +region = Rect2(5632, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bul51"] +atlas = ExtResource("170_cftgd") +region = Rect2(6144, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vbobf"] +atlas = ExtResource("170_cftgd") +region = Rect2(6656, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_itqlk"] +atlas = ExtResource("170_cftgd") +region = Rect2(7168, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_41jjh"] +atlas = ExtResource("170_cftgd") +region = Rect2(7680, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kol03"] +atlas = ExtResource("170_cftgd") +region = Rect2(0, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ynyxy"] +atlas = ExtResource("170_cftgd") +region = Rect2(512, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ngcxk"] +atlas = ExtResource("170_cftgd") +region = Rect2(1024, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ba8fa"] +atlas = ExtResource("170_cftgd") +region = Rect2(1536, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ngitf"] +atlas = ExtResource("170_cftgd") +region = Rect2(2048, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_boovf"] +atlas = ExtResource("170_cftgd") +region = Rect2(2560, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jwkhr"] +atlas = ExtResource("170_cftgd") +region = Rect2(3072, 512, 512, 512) + +[sub_resource type="SpriteFrames" id="SpriteFrames_jy23v"] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_slhg2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pvn2l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sctov") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_46bwa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o42jv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5dqsk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_35l4k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x0jfm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fk16r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ewtdr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bul51") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vbobf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_itqlk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_41jjh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kol03") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ynyxy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ngcxk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ba8fa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ngitf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_boovf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jwkhr") +}], +"loop": false, +"name": &"HOLY", +"speed": 30.0 +}] + +[sub_resource type="AtlasTexture" id="AtlasTexture_oid3y"] +atlas = ExtResource("171_0tqwp") +region = Rect2(0, 0, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3jmy8"] +atlas = ExtResource("171_0tqwp") +region = Rect2(266, 0, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t76hk"] +atlas = ExtResource("171_0tqwp") +region = Rect2(532, 0, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_06gff"] +atlas = ExtResource("171_0tqwp") +region = Rect2(798, 0, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ssjgs"] +atlas = ExtResource("171_0tqwp") +region = Rect2(1064, 0, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_53u6k"] +atlas = ExtResource("171_0tqwp") +region = Rect2(0, 131, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_inmu7"] +atlas = ExtResource("171_0tqwp") +region = Rect2(266, 131, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bmkvg"] +atlas = ExtResource("171_0tqwp") +region = Rect2(532, 131, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oqdmj"] +atlas = ExtResource("171_0tqwp") +region = Rect2(798, 131, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bnn41"] +atlas = ExtResource("171_0tqwp") +region = Rect2(1064, 131, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p6hmn"] +atlas = ExtResource("171_0tqwp") +region = Rect2(0, 262, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s0ybe"] +atlas = ExtResource("171_0tqwp") +region = Rect2(266, 262, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y2273"] +atlas = ExtResource("171_0tqwp") +region = Rect2(532, 262, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2i87r"] +atlas = ExtResource("171_0tqwp") +region = Rect2(798, 262, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4q8o2"] +atlas = ExtResource("171_0tqwp") +region = Rect2(1064, 262, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_esxmc"] +atlas = ExtResource("171_0tqwp") +region = Rect2(0, 393, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rdsur"] +atlas = ExtResource("171_0tqwp") +region = Rect2(266, 393, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b2qt4"] +atlas = ExtResource("171_0tqwp") +region = Rect2(532, 393, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xamrr"] +atlas = ExtResource("171_0tqwp") +region = Rect2(798, 393, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0prqh"] +atlas = ExtResource("171_0tqwp") +region = Rect2(1064, 393, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dh1oc"] +atlas = ExtResource("171_0tqwp") +region = Rect2(0, 524, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ybb1w"] +atlas = ExtResource("171_0tqwp") +region = Rect2(266, 524, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2nkua"] +atlas = ExtResource("171_0tqwp") +region = Rect2(532, 524, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2gocr"] +atlas = ExtResource("171_0tqwp") +region = Rect2(798, 524, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_acsou"] +atlas = ExtResource("171_0tqwp") +region = Rect2(1064, 524, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yflou"] +atlas = ExtResource("171_0tqwp") +region = Rect2(0, 655, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_env3c"] +atlas = ExtResource("171_0tqwp") +region = Rect2(266, 655, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_74f4l"] +atlas = ExtResource("171_0tqwp") +region = Rect2(532, 655, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cbaq7"] +atlas = ExtResource("171_0tqwp") +region = Rect2(798, 655, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bc4hh"] +atlas = ExtResource("171_0tqwp") +region = Rect2(1064, 655, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5m27y"] +atlas = ExtResource("171_0tqwp") +region = Rect2(0, 786, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c2vig"] +atlas = ExtResource("171_0tqwp") +region = Rect2(266, 786, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h8qbh"] +atlas = ExtResource("171_0tqwp") +region = Rect2(532, 786, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vj2ia"] +atlas = ExtResource("171_0tqwp") +region = Rect2(798, 786, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h0bv3"] +atlas = ExtResource("171_0tqwp") +region = Rect2(1064, 786, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3xb07"] +atlas = ExtResource("171_0tqwp") +region = Rect2(0, 917, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p845e"] +atlas = ExtResource("171_0tqwp") +region = Rect2(266, 917, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nm575"] +atlas = ExtResource("171_0tqwp") +region = Rect2(532, 917, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8wvvt"] +atlas = ExtResource("171_0tqwp") +region = Rect2(798, 917, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2l45l"] +atlas = ExtResource("171_0tqwp") +region = Rect2(1064, 917, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0c6u7"] +atlas = ExtResource("171_0tqwp") +region = Rect2(0, 1048, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bo1qh"] +atlas = ExtResource("171_0tqwp") +region = Rect2(266, 1048, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4cq22"] +atlas = ExtResource("171_0tqwp") +region = Rect2(532, 1048, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d6auk"] +atlas = ExtResource("171_0tqwp") +region = Rect2(798, 1048, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4bvg3"] +atlas = ExtResource("171_0tqwp") +region = Rect2(1064, 1048, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rps4p"] +atlas = ExtResource("171_0tqwp") +region = Rect2(0, 1179, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qdy2n"] +atlas = ExtResource("171_0tqwp") +region = Rect2(266, 1179, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a63dt"] +atlas = ExtResource("171_0tqwp") +region = Rect2(532, 1179, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3alol"] +atlas = ExtResource("171_0tqwp") +region = Rect2(798, 1179, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w5y4o"] +atlas = ExtResource("171_0tqwp") +region = Rect2(1064, 1179, 133, 131) + +[sub_resource type="SpriteFrames" id="SpriteFrames_olmld"] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_oid3y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3jmy8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t76hk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_06gff") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ssjgs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_53u6k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_inmu7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bmkvg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oqdmj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bnn41") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p6hmn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s0ybe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y2273") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2i87r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4q8o2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_esxmc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rdsur") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b2qt4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xamrr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0prqh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dh1oc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ybb1w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2nkua") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2gocr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_acsou") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yflou") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_env3c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_74f4l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cbaq7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bc4hh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5m27y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c2vig") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h8qbh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vj2ia") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h0bv3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3xb07") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p845e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nm575") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8wvvt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2l45l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0c6u7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bo1qh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4cq22") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d6auk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4bvg3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rps4p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qdy2n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a63dt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3alol") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w5y4o") +}, { +"duration": 1.0, +"texture": null +}], +"loop": false, +"name": &"default", +"speed": 60.0 +}] + +[sub_resource type="AtlasTexture" id="AtlasTexture_ql2id"] +atlas = ExtResource("172_f5cjs") +region = Rect2(200, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w5yum"] +atlas = ExtResource("172_f5cjs") +region = Rect2(600, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xagiq"] +atlas = ExtResource("172_f5cjs") +region = Rect2(1000, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iu4h2"] +atlas = ExtResource("172_f5cjs") +region = Rect2(100, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t6kmk"] +atlas = ExtResource("172_f5cjs") +region = Rect2(500, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c3c22"] +atlas = ExtResource("172_f5cjs") +region = Rect2(900, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_udm06"] +atlas = ExtResource("172_f5cjs") +region = Rect2(0, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_31shi"] +atlas = ExtResource("172_f5cjs") +region = Rect2(400, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i6wsf"] +atlas = ExtResource("172_f5cjs") +region = Rect2(800, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jhluk"] +atlas = ExtResource("172_f5cjs") +region = Rect2(1200, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_exq74"] +atlas = ExtResource("172_f5cjs") +region = Rect2(300, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k7tc1"] +atlas = ExtResource("172_f5cjs") +region = Rect2(700, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_456io"] +atlas = ExtResource("172_f5cjs") +region = Rect2(1100, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2h7ac"] +atlas = ExtResource("172_f5cjs") +region = Rect2(200, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dy5lo"] +atlas = ExtResource("172_f5cjs") +region = Rect2(500, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_biyyn"] +atlas = ExtResource("172_f5cjs") +region = Rect2(1000, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_flqm1"] +atlas = ExtResource("172_f5cjs") +region = Rect2(100, 500, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xttn8"] +atlas = ExtResource("172_f5cjs") +region = Rect2(500, 500, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_85rsb"] +atlas = ExtResource("172_f5cjs") +region = Rect2(900, 500, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oxqm1"] +atlas = ExtResource("172_f5cjs") +region = Rect2(0, 600, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dphle"] +atlas = ExtResource("172_f5cjs") +region = Rect2(400, 600, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_48bul"] +atlas = ExtResource("172_f5cjs") +region = Rect2(800, 600, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2d6tt"] +atlas = ExtResource("172_f5cjs") +region = Rect2(1200, 600, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ty41g"] +atlas = ExtResource("172_f5cjs") +region = Rect2(300, 700, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c5uyp"] +atlas = ExtResource("172_f5cjs") +region = Rect2(700, 700, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tf4dl"] +atlas = ExtResource("172_f5cjs") +region = Rect2(1100, 700, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cvdlu"] +atlas = ExtResource("172_f5cjs") +region = Rect2(200, 800, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f25l1"] +atlas = ExtResource("172_f5cjs") +region = Rect2(600, 800, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v033q"] +atlas = ExtResource("172_f5cjs") +region = Rect2(1000, 800, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xgfkn"] +atlas = ExtResource("172_f5cjs") +region = Rect2(100, 900, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_duxfd"] +atlas = ExtResource("172_f5cjs") +region = Rect2(500, 900, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5uvt0"] +atlas = ExtResource("172_f5cjs") +region = Rect2(900, 900, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7d05g"] +atlas = ExtResource("172_f5cjs") +region = Rect2(0, 1000, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x0ube"] +atlas = ExtResource("172_f5cjs") +region = Rect2(400, 1000, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_15y07"] +atlas = ExtResource("172_f5cjs") +region = Rect2(800, 1000, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_de0po"] +atlas = ExtResource("172_f5cjs") +region = Rect2(1200, 1000, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b3rtc"] +atlas = ExtResource("172_f5cjs") +region = Rect2(300, 1100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q32lt"] +atlas = ExtResource("172_f5cjs") +region = Rect2(700, 1100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_88hqh"] +atlas = ExtResource("172_f5cjs") +region = Rect2(1100, 1100, 100, 100) + +[sub_resource type="SpriteFrames" id="SpriteFrames_a23f0"] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": null +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ql2id") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w5yum") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xagiq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iu4h2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t6kmk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c3c22") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_udm06") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_31shi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i6wsf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jhluk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_exq74") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k7tc1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_456io") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2h7ac") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dy5lo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_biyyn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_flqm1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xttn8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_85rsb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oxqm1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dphle") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_48bul") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2d6tt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ty41g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c5uyp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tf4dl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cvdlu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f25l1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v033q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xgfkn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_duxfd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5uvt0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7d05g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x0ube") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_15y07") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_de0po") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b3rtc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q32lt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_88hqh") +}, { +"duration": 1.0, +"texture": null +}], +"loop": false, +"name": &"Flame Damage", +"speed": 30.0 +}] + +[sub_resource type="AtlasTexture" id="AtlasTexture_qf2hn"] +atlas = ExtResource("173_godpv") +region = Rect2(0, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0rj30"] +atlas = ExtResource("173_godpv") +region = Rect2(200, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ug1a1"] +atlas = ExtResource("173_godpv") +region = Rect2(400, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8eees"] +atlas = ExtResource("173_godpv") +region = Rect2(600, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k2i7i"] +atlas = ExtResource("173_godpv") +region = Rect2(800, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4wwo5"] +atlas = ExtResource("173_godpv") +region = Rect2(0, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_418m2"] +atlas = ExtResource("173_godpv") +region = Rect2(200, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6g5qj"] +atlas = ExtResource("173_godpv") +region = Rect2(400, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k3sey"] +atlas = ExtResource("173_godpv") +region = Rect2(600, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ms40v"] +atlas = ExtResource("173_godpv") +region = Rect2(800, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2tfej"] +atlas = ExtResource("173_godpv") +region = Rect2(0, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_woj7f"] +atlas = ExtResource("173_godpv") +region = Rect2(200, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kg861"] +atlas = ExtResource("173_godpv") +region = Rect2(400, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jtxxp"] +atlas = ExtResource("173_godpv") +region = Rect2(600, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sxooa"] +atlas = ExtResource("173_godpv") +region = Rect2(800, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hkj2y"] +atlas = ExtResource("173_godpv") +region = Rect2(0, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wm40h"] +atlas = ExtResource("173_godpv") +region = Rect2(200, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u66v8"] +atlas = ExtResource("173_godpv") +region = Rect2(400, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6ip85"] +atlas = ExtResource("173_godpv") +region = Rect2(600, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qad2i"] +atlas = ExtResource("173_godpv") +region = Rect2(800, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nifqu"] +atlas = ExtResource("173_godpv") +region = Rect2(0, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_goocc"] +atlas = ExtResource("173_godpv") +region = Rect2(200, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l78ua"] +atlas = ExtResource("173_godpv") +region = Rect2(400, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ybqlc"] +atlas = ExtResource("173_godpv") +region = Rect2(600, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d0lry"] +atlas = ExtResource("173_godpv") +region = Rect2(800, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ccb2v"] +atlas = ExtResource("173_godpv") +region = Rect2(0, 500, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dcp7h"] +atlas = ExtResource("173_godpv") +region = Rect2(200, 500, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3kud6"] +atlas = ExtResource("173_godpv") +region = Rect2(400, 500, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0tvc2"] +atlas = ExtResource("173_godpv") +region = Rect2(600, 500, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g5aky"] +atlas = ExtResource("173_godpv") +region = Rect2(800, 500, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nyc7u"] +atlas = ExtResource("173_godpv") +region = Rect2(0, 600, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q1yeq"] +atlas = ExtResource("173_godpv") +region = Rect2(200, 600, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pupfb"] +atlas = ExtResource("173_godpv") +region = Rect2(400, 600, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gfe8c"] +atlas = ExtResource("173_godpv") +region = Rect2(600, 600, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_76bl1"] +atlas = ExtResource("173_godpv") +region = Rect2(800, 600, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u7frn"] +atlas = ExtResource("173_godpv") +region = Rect2(0, 700, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ls3an"] +atlas = ExtResource("173_godpv") +region = Rect2(200, 700, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4l6e0"] +atlas = ExtResource("173_godpv") +region = Rect2(400, 700, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cvlbl"] +atlas = ExtResource("173_godpv") +region = Rect2(600, 700, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jkvpv"] +atlas = ExtResource("173_godpv") +region = Rect2(800, 700, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lpp7o"] +atlas = ExtResource("173_godpv") +region = Rect2(0, 800, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v8igx"] +atlas = ExtResource("173_godpv") +region = Rect2(200, 800, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mmm0q"] +atlas = ExtResource("173_godpv") +region = Rect2(400, 800, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5ukt7"] +atlas = ExtResource("173_godpv") +region = Rect2(600, 800, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0pkd7"] +atlas = ExtResource("173_godpv") +region = Rect2(800, 800, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n85t7"] +atlas = ExtResource("174_q5dfb") +region = Rect2(0, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nb4v4"] +atlas = ExtResource("174_q5dfb") +region = Rect2(100, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cl00x"] +atlas = ExtResource("174_q5dfb") +region = Rect2(200, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ufcsw"] +atlas = ExtResource("174_q5dfb") +region = Rect2(300, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aoisp"] +atlas = ExtResource("174_q5dfb") +region = Rect2(400, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3rkdy"] +atlas = ExtResource("174_q5dfb") +region = Rect2(500, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o0dym"] +atlas = ExtResource("174_q5dfb") +region = Rect2(0, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vxihx"] +atlas = ExtResource("174_q5dfb") +region = Rect2(100, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ofpmt"] +atlas = ExtResource("174_q5dfb") +region = Rect2(200, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ux0ir"] +atlas = ExtResource("174_q5dfb") +region = Rect2(300, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8dgch"] +atlas = ExtResource("174_q5dfb") +region = Rect2(400, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7ixin"] +atlas = ExtResource("174_q5dfb") +region = Rect2(500, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2kea0"] +atlas = ExtResource("174_q5dfb") +region = Rect2(0, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kgnps"] +atlas = ExtResource("174_q5dfb") +region = Rect2(100, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g2wgu"] +atlas = ExtResource("174_q5dfb") +region = Rect2(200, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0oosk"] +atlas = ExtResource("174_q5dfb") +region = Rect2(300, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_80k2g"] +atlas = ExtResource("174_q5dfb") +region = Rect2(400, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fskx7"] +atlas = ExtResource("174_q5dfb") +region = Rect2(500, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_no3pe"] +atlas = ExtResource("174_q5dfb") +region = Rect2(0, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_15fnm"] +atlas = ExtResource("174_q5dfb") +region = Rect2(100, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r5e73"] +atlas = ExtResource("174_q5dfb") +region = Rect2(200, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2im8t"] +atlas = ExtResource("174_q5dfb") +region = Rect2(300, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mxl2m"] +atlas = ExtResource("174_q5dfb") +region = Rect2(400, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6dwuh"] +atlas = ExtResource("174_q5dfb") +region = Rect2(500, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_53c1f"] +atlas = ExtResource("174_q5dfb") +region = Rect2(0, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mmbhy"] +atlas = ExtResource("174_q5dfb") +region = Rect2(100, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uwbh3"] +atlas = ExtResource("174_q5dfb") +region = Rect2(200, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j6v2y"] +atlas = ExtResource("174_q5dfb") +region = Rect2(300, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h5xbu"] +atlas = ExtResource("174_q5dfb") +region = Rect2(400, 400, 100, 100) + +[sub_resource type="SpriteFrames" id="SpriteFrames_bsjfy"] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_qf2hn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0rj30") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ug1a1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8eees") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k2i7i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4wwo5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_418m2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6g5qj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k3sey") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ms40v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2tfej") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_woj7f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kg861") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jtxxp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sxooa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hkj2y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wm40h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u66v8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6ip85") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qad2i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nifqu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_goocc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l78ua") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ybqlc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d0lry") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ccb2v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dcp7h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3kud6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0tvc2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g5aky") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nyc7u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q1yeq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pupfb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gfe8c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_76bl1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u7frn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ls3an") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4l6e0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cvlbl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jkvpv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lpp7o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v8igx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mmm0q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5ukt7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0pkd7") +}], +"loop": false, +"name": &"EARTH DAMAGE", +"speed": 30.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": null +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n85t7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nb4v4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cl00x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ufcsw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aoisp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3rkdy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o0dym") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vxihx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ofpmt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ux0ir") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8dgch") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7ixin") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2kea0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kgnps") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g2wgu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0oosk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_80k2g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fskx7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_no3pe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_15fnm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r5e73") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2im8t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mxl2m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6dwuh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_53c1f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mmbhy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uwbh3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j6v2y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h5xbu") +}], +"loop": false, +"name": &"WATER DAMAGE", +"speed": 38.0 +}] + +[sub_resource type="AtlasTexture" id="AtlasTexture_wof5o"] +atlas = ExtResource("175_30xy4") +region = Rect2(875, 452, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ekrqp"] +atlas = ExtResource("175_30xy4") +region = Rect2(1050, 452, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dvnic"] +atlas = ExtResource("175_30xy4") +region = Rect2(1225, 452, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rxdv7"] +atlas = ExtResource("175_30xy4") +region = Rect2(1400, 452, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0pvcp"] +atlas = ExtResource("175_30xy4") +region = Rect2(0, 678, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yga3t"] +atlas = ExtResource("175_30xy4") +region = Rect2(175, 678, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c6qrx"] +atlas = ExtResource("175_30xy4") +region = Rect2(350, 678, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fkryw"] +atlas = ExtResource("175_30xy4") +region = Rect2(525, 678, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jt7jg"] +atlas = ExtResource("175_30xy4") +region = Rect2(700, 678, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6eyjl"] +atlas = ExtResource("175_30xy4") +region = Rect2(875, 678, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tsolq"] +atlas = ExtResource("175_30xy4") +region = Rect2(1050, 678, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_opqal"] +atlas = ExtResource("175_30xy4") +region = Rect2(1225, 678, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kia47"] +atlas = ExtResource("175_30xy4") +region = Rect2(1400, 678, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6aolf"] +atlas = ExtResource("175_30xy4") +region = Rect2(0, 904, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g6jok"] +atlas = ExtResource("175_30xy4") +region = Rect2(175, 904, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_swdkn"] +atlas = ExtResource("175_30xy4") +region = Rect2(350, 904, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_edlre"] +atlas = ExtResource("175_30xy4") +region = Rect2(525, 904, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gbj32"] +atlas = ExtResource("175_30xy4") +region = Rect2(700, 904, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bstol"] +atlas = ExtResource("175_30xy4") +region = Rect2(875, 904, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_57vey"] +atlas = ExtResource("175_30xy4") +region = Rect2(1050, 904, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_31ikn"] +atlas = ExtResource("175_30xy4") +region = Rect2(1225, 904, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e1yxa"] +atlas = ExtResource("175_30xy4") +region = Rect2(1400, 904, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7a7ks"] +atlas = ExtResource("175_30xy4") +region = Rect2(0, 1130, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p2hq6"] +atlas = ExtResource("175_30xy4") +region = Rect2(175, 1130, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k3fbj"] +atlas = ExtResource("175_30xy4") +region = Rect2(350, 1130, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ylav8"] +atlas = ExtResource("175_30xy4") +region = Rect2(525, 1130, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xhgk2"] +atlas = ExtResource("175_30xy4") +region = Rect2(700, 1130, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_diucy"] +atlas = ExtResource("175_30xy4") +region = Rect2(875, 1130, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8gw5n"] +atlas = ExtResource("175_30xy4") +region = Rect2(1050, 1130, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hc5wr"] +atlas = ExtResource("175_30xy4") +region = Rect2(1225, 1130, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fugdi"] +atlas = ExtResource("175_30xy4") +region = Rect2(1400, 1130, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h222i"] +atlas = ExtResource("175_30xy4") +region = Rect2(0, 1356, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7qa4p"] +atlas = ExtResource("175_30xy4") +region = Rect2(175, 1356, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jbavk"] +atlas = ExtResource("175_30xy4") +region = Rect2(350, 1356, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ncorq"] +atlas = ExtResource("175_30xy4") +region = Rect2(525, 1356, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mdvft"] +atlas = ExtResource("175_30xy4") +region = Rect2(700, 1356, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ljrf5"] +atlas = ExtResource("175_30xy4") +region = Rect2(875, 1356, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r7ll6"] +atlas = ExtResource("175_30xy4") +region = Rect2(1050, 1356, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6vssn"] +atlas = ExtResource("175_30xy4") +region = Rect2(1225, 1356, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4lr8r"] +atlas = ExtResource("175_30xy4") +region = Rect2(1400, 1356, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xp4kq"] +atlas = ExtResource("175_30xy4") +region = Rect2(0, 1582, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_idymv"] +atlas = ExtResource("175_30xy4") +region = Rect2(175, 1582, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ujl1x"] +atlas = ExtResource("175_30xy4") +region = Rect2(350, 1582, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_37wgc"] +atlas = ExtResource("175_30xy4") +region = Rect2(525, 1582, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g5fso"] +atlas = ExtResource("175_30xy4") +region = Rect2(700, 1582, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4a47d"] +atlas = ExtResource("175_30xy4") +region = Rect2(875, 1582, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eh3iw"] +atlas = ExtResource("175_30xy4") +region = Rect2(1050, 1582, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jc54a"] +atlas = ExtResource("175_30xy4") +region = Rect2(1225, 1582, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xyo6b"] +atlas = ExtResource("175_30xy4") +region = Rect2(1400, 1582, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gnyks"] +atlas = ExtResource("175_30xy4") +region = Rect2(0, 1808, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_08lae"] +atlas = ExtResource("175_30xy4") +region = Rect2(175, 1808, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r710l"] +atlas = ExtResource("175_30xy4") +region = Rect2(350, 1808, 175, 226) + +[sub_resource type="SpriteFrames" id="SpriteFrames_cht2c"] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_wof5o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ekrqp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dvnic") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rxdv7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0pvcp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yga3t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c6qrx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fkryw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jt7jg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6eyjl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tsolq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_opqal") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kia47") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6aolf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g6jok") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_swdkn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_edlre") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gbj32") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bstol") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_57vey") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_31ikn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e1yxa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7a7ks") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p2hq6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k3fbj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ylav8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xhgk2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_diucy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8gw5n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hc5wr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fugdi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h222i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7qa4p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jbavk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ncorq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mdvft") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ljrf5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r7ll6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6vssn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4lr8r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xp4kq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_idymv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ujl1x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_37wgc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g5fso") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4a47d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eh3iw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jc54a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xyo6b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gnyks") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_08lae") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r710l") +}], +"loop": false, +"name": &"WATER", +"speed": 60.0 +}] + +[sub_resource type="AtlasTexture" id="AtlasTexture_lubni"] +atlas = ExtResource("176_3pm1j") +region = Rect2(134, 0, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_56ojt"] +atlas = ExtResource("176_3pm1j") +region = Rect2(402, 0, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jwkdt"] +atlas = ExtResource("176_3pm1j") +region = Rect2(670, 0, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tklqq"] +atlas = ExtResource("176_3pm1j") +region = Rect2(938, 0, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0kd7d"] +atlas = ExtResource("176_3pm1j") +region = Rect2(1206, 0, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uoo6g"] +atlas = ExtResource("176_3pm1j") +region = Rect2(134, 134, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eyk0y"] +atlas = ExtResource("176_3pm1j") +region = Rect2(402, 134, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0imbq"] +atlas = ExtResource("176_3pm1j") +region = Rect2(670, 134, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oys1t"] +atlas = ExtResource("176_3pm1j") +region = Rect2(938, 134, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_06alo"] +atlas = ExtResource("176_3pm1j") +region = Rect2(1206, 134, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uoxdj"] +atlas = ExtResource("176_3pm1j") +region = Rect2(134, 268, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rcb13"] +atlas = ExtResource("176_3pm1j") +region = Rect2(402, 268, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pj86n"] +atlas = ExtResource("176_3pm1j") +region = Rect2(670, 268, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qpw3f"] +atlas = ExtResource("176_3pm1j") +region = Rect2(938, 268, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gn6h7"] +atlas = ExtResource("176_3pm1j") +region = Rect2(1206, 268, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lkh03"] +atlas = ExtResource("176_3pm1j") +region = Rect2(134, 402, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pdi3o"] +atlas = ExtResource("176_3pm1j") +region = Rect2(402, 402, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s3ywy"] +atlas = ExtResource("176_3pm1j") +region = Rect2(670, 402, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6idxu"] +atlas = ExtResource("176_3pm1j") +region = Rect2(938, 402, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qndi3"] +atlas = ExtResource("176_3pm1j") +region = Rect2(1206, 402, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y4ahc"] +atlas = ExtResource("176_3pm1j") +region = Rect2(134, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y5c6p"] +atlas = ExtResource("176_3pm1j") +region = Rect2(402, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oa8p3"] +atlas = ExtResource("176_3pm1j") +region = Rect2(670, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rc08e"] +atlas = ExtResource("176_3pm1j") +region = Rect2(938, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8tw6t"] +atlas = ExtResource("176_3pm1j") +region = Rect2(1206, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_njvn5"] +atlas = ExtResource("176_3pm1j") +region = Rect2(134, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cwp0x"] +atlas = ExtResource("176_3pm1j") +region = Rect2(402, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hch5s"] +atlas = ExtResource("176_3pm1j") +region = Rect2(670, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vgjuv"] +atlas = ExtResource("176_3pm1j") +region = Rect2(938, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1502j"] +atlas = ExtResource("176_3pm1j") +region = Rect2(1206, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5m1ra"] +atlas = ExtResource("176_3pm1j") +region = Rect2(134, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l0imt"] +atlas = ExtResource("176_3pm1j") +region = Rect2(402, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ywb2s"] +atlas = ExtResource("176_3pm1j") +region = Rect2(670, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x5582"] +atlas = ExtResource("176_3pm1j") +region = Rect2(938, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4uy6l"] +atlas = ExtResource("176_3pm1j") +region = Rect2(1206, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_50esb"] +atlas = ExtResource("176_3pm1j") +region = Rect2(134, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xnham"] +atlas = ExtResource("176_3pm1j") +region = Rect2(402, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j1cf1"] +atlas = ExtResource("176_3pm1j") +region = Rect2(670, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jvde4"] +atlas = ExtResource("176_3pm1j") +region = Rect2(938, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dvkgv"] +atlas = ExtResource("176_3pm1j") +region = Rect2(1206, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3ant7"] +atlas = ExtResource("176_3pm1j") +region = Rect2(134, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a6f8y"] +atlas = ExtResource("176_3pm1j") +region = Rect2(402, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ancbh"] +atlas = ExtResource("176_3pm1j") +region = Rect2(670, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yes2c"] +atlas = ExtResource("176_3pm1j") +region = Rect2(938, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cs2h2"] +atlas = ExtResource("176_3pm1j") +region = Rect2(1206, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n2i2d"] +atlas = ExtResource("176_3pm1j") +region = Rect2(134, 1206, 134, 134) + +[sub_resource type="SpriteFrames" id="SpriteFrames_v3crq"] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": null +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lubni") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_56ojt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jwkdt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tklqq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0kd7d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uoo6g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eyk0y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0imbq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oys1t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_06alo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uoxdj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rcb13") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pj86n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qpw3f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gn6h7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lkh03") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pdi3o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s3ywy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6idxu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qndi3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y4ahc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y5c6p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oa8p3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rc08e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8tw6t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_njvn5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cwp0x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hch5s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vgjuv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1502j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5m1ra") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l0imt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ywb2s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x5582") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4uy6l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_50esb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xnham") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j1cf1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jvde4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dvkgv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3ant7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a6f8y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ancbh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yes2c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cs2h2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n2i2d") +}, { +"duration": 1.0, +"texture": null +}], +"loop": false, +"name": &"default", +"speed": 30.0 +}] + +[sub_resource type="Animation" id="Animation_6shfu"] +resource_name = "Fire Damage" +length = 1.33334 +tracks/0/type = "value" +tracks/0/imported = false +tracks/0/enabled = true +tracks/0/path = NodePath("../Flame Hit Effect:animation") +tracks/0/interp = 1 +tracks/0/loop_wrap = true +tracks/0/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"Flame Damage"] +} +tracks/1/type = "value" +tracks/1/imported = false +tracks/1/enabled = true +tracks/1/path = NodePath("../Flame Hit Effect:frame") +tracks/1/interp = 1 +tracks/1/loop_wrap = true +tracks/1/keys = { +"times": PackedFloat32Array(0, 1.33333), +"transitions": PackedFloat32Array(1, 1), +"update": 0, +"values": [0, 40] +} +tracks/2/type = "value" +tracks/2/imported = false +tracks/2/enabled = true +tracks/2/path = NodePath("../Flame Hit Effect:modulate") +tracks/2/interp = 1 +tracks/2/loop_wrap = true +tracks/2/keys = { +"times": PackedFloat32Array(0, 0.0333333, 0.0666667, 0.1, 0.133333, 0.166667, 0.2, 0.233333, 0.266667, 0.3, 0.333333, 0.366667, 0.4, 0.433333, 0.466667, 0.5, 0.533333, 0.566667, 0.6, 0.633333, 0.666667, 0.7, 0.733333, 0.766667, 0.8, 0.833333, 0.866667, 0.9, 0.933333, 0.966667, 1, 1.03333, 1.06667, 1.1, 1.13333, 1.16667, 1.2, 1.23333, 1.26667, 1.3, 1.33333, 1.36667, 1.4, 1.43333, 1.46667, 1.5, 1.53333, 1.56667), +"transitions": PackedFloat32Array(1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1), +"update": 0, +"values": [Color(1, 1, 1, 0.85), Color(1, 1, 1, 0.056), Color(1, 1, 1, 0.85), Color(1, 1, 1, 0.056), Color(1, 1, 1, 0.85), Color(1, 1, 1, 0.056), Color(1, 1, 1, 0.85), Color(1, 1, 1, 0.056), Color(1, 1, 1, 0.85), Color(1, 1, 1, 0.056), Color(1, 1, 1, 0.85), Color(1, 1, 1, 0.056), Color(1, 1, 1, 0.85), Color(1, 1, 1, 0.056), Color(1, 1, 1, 0.85), Color(1, 1, 1, 0.056), Color(1, 1, 1, 0.85), Color(1, 1, 1, 0.056), Color(1, 1, 1, 0.85), Color(1, 1, 1, 0.056), Color(1, 1, 1, 0.85), Color(1, 1, 1, 0.056), Color(1, 1, 1, 0.85), Color(1, 1, 1, 0.056), Color(1, 1, 1, 0.85), Color(1, 1, 1, 0.056), Color(1, 1, 1, 0.85), Color(1, 1, 1, 0.056), Color(1, 1, 1, 0.85), Color(1, 1, 1, 0.056), Color(1, 1, 1, 0.85), Color(1, 1, 1, 0.056), Color(1, 1, 1, 0.85), Color(1, 1, 1, 0.056), Color(1, 1, 1, 0.85), Color(1, 1, 1, 0.056), Color(1, 1, 1, 0.85), Color(1, 1, 1, 0.056), Color(1, 1, 1, 0.85), Color(1, 1, 1, 0.056), Color(1, 1, 1, 0.85), Color(1, 1, 1, 0.056), Color(1, 1, 1, 0.85), Color(1, 1, 1, 0.056), Color(1, 1, 1, 0.85), Color(1, 1, 1, 0.056), Color(1, 1, 1, 0.85), Color(1, 1, 1, 0.056)] +} + +[sub_resource type="Animation" id="Animation_cftgd"] +length = 0.001 +tracks/0/type = "value" +tracks/0/imported = false +tracks/0/enabled = true +tracks/0/path = NodePath("../Flame Hit Effect:modulate") +tracks/0/interp = 1 +tracks/0/loop_wrap = true +tracks/0/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 0, +"values": [Color(1, 1, 1, 1)] +} +tracks/1/type = "value" +tracks/1/imported = false +tracks/1/enabled = true +tracks/1/path = NodePath("../Flame Hit Effect:frame") +tracks/1/interp = 1 +tracks/1/loop_wrap = true +tracks/1/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [40] +} +tracks/2/type = "value" +tracks/2/imported = false +tracks/2/enabled = true +tracks/2/path = NodePath("../Flame Hit Effect:animation") +tracks/2/interp = 1 +tracks/2/loop_wrap = true +tracks/2/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"Flame Damage"] +} + +[sub_resource type="AnimationLibrary" id="AnimationLibrary_0tqwp"] +_data = { +&"Fire Damage": SubResource("Animation_6shfu"), +&"RESET": SubResource("Animation_cftgd") +} + [node name="EnemyModelView" type="Node3D"] script = ExtResource("1_oh25a") @@ -1900,3 +4669,71 @@ unique_name_in_owner = true transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.72758, 0) autoplay = true bus = &"SFX" + +[node name="Rust Activation Effect" type="AnimatedSprite3D" parent="."] +transform = Transform3D(1.54, 0, 0, 0, 1.54, 0, 0, 0, 1.54, 0, 1.06234, -0.235147) +billboard = 1 +texture_filter = 0 +sprite_frames = SubResource("SpriteFrames_s0t7i") +frame = 88 +frame_progress = 1.0 + +[node name="Holy Hit Layer Effect" type="AnimatedSprite3D" parent="."] +transform = Transform3D(0.675, 0, 0, 0, 0.675, 0, 0, 0, 0.675, 0, 0.886205, -0.235147) +sprite_frames = SubResource("SpriteFrames_jy23v") +animation = &"HOLY" +frame = 20 +frame_progress = 1.0 + +[node name="Wind Hit Layer Effect" type="AnimatedSprite3D" parent="."] +transform = Transform3D(1.445, 0, 0, 0, 1.445, 0, 0, 0, 1.445, 0, 0.886205, -0.235147) +sprite_frames = SubResource("SpriteFrames_olmld") +frame = 50 +frame_progress = 1.0 + +[node name="Flame Hit Effect" type="AnimatedSprite3D" parent="."] +transform = Transform3D(3.445, 0, 0, 0, 3.445, 0, 0, 0, 3.445, 0, 0.886205, -0.235147) +billboard = 1 +texture_filter = 0 +sprite_frames = SubResource("SpriteFrames_a23f0") +animation = &"Flame Damage" +frame = 40 + +[node name="Water Hit Layer 1 Effect" type="AnimatedSprite3D" parent="."] +transform = Transform3D(2.215, 0, 0, 0, 2.215, 0, 0, 0, 2.215, -0.0456848, 0.96603, -0.706615) +billboard = 1 +sprite_frames = SubResource("SpriteFrames_bsjfy") +animation = &"EARTH DAMAGE" +frame = 44 +frame_progress = 1.0 + +[node name="Water Hit Layer 2Effect" type="AnimatedSprite3D" parent="."] +transform = Transform3D(1.105, 0, 0, 0, 0.895, 0, 0, 0, 1, 0, 0.886205, -0.235147) +billboard = 1 +texture_filter = 0 +sprite_frames = SubResource("SpriteFrames_cht2c") +animation = &"WATER" +frame = 51 +frame_progress = 1.0 + +[node name="Curse Hit Effect" type="AnimatedSprite3D" parent="."] +transform = Transform3D(2.78, 0, 0, 0, 2.78, 0, 0, 0, 2.78, 0.0292172, 0.932952, -0.235147) +billboard = 1 +texture_filter = 1 +sprite_frames = SubResource("SpriteFrames_v3crq") +frame = 46 +frame_progress = 1.0 + +[node name="Earth Hit Effect" type="AnimatedSprite3D" parent="."] +transform = Transform3D(2.005, 0, 0, 0, 2.005, 0, 0, 0, 2.005, -0.0701203, 1.00307, -0.235147) +billboard = 1 +sprite_frames = SubResource("SpriteFrames_bsjfy") +animation = &"WATER DAMAGE" +frame = 29 +frame_progress = 1.0 + +[node name="Flame Animation Player" type="AnimationPlayer" parent="."] +root_node = NodePath("../Secondary Animation Player") +libraries = { +&"": SubResource("AnimationLibrary_0tqwp") +} diff --git a/Zennysoft.Game.Ma/src/items/armor/textures/Holy Barrier.png b/Zennysoft.Game.Ma/src/items/armor/textures/Holy Barrier.png index 4d5b4a0e8eb03af5af3f9c7953149d6f98b6f56a..34d65f1fdb3f95bd6886f87ff917d860d86cc924 100644 GIT binary patch delta 58685 zcmbrlWmH{FwmMYrASI$n%*x+A|xQIhvR=d)hm} z{PPG1dpa4L+M2skn3!8yI|x#qwsuldSepq_YJE~*Rd5nBx3ZS@b}?7;R#Z3jwl(E7 zqZAgR5b)%CC17vvYE0p2Z|4Bv^Ax1~7hS&B@;}uqlobDhxY`O*0;2zLq|jDSrVw*< zF{j{VX8mZ&%F0T?&CATj&1TBZZNWsr&dSct!pg(K#`TenhmVz=kCTJqKOf3helBJf ze5&G-|H%fZ#y^P>X* zq53Zp;^q)j7i%Y1Yexr)e@GgeIJ&tCQoaiNA6nQu{hO`>3@C3S)2oZypd=3HMh${?jD?6B_sr*&*s)PUbAC<`73W7gKWy_g6uw{?W&YPt3*K z*wxWR-Omw`2M>ckK zHV!@xPQFi^A6dEiSXuuAs^Dk_SX+4gcPu-*Iy)O5Cl?>7C+2A9=<>?>RXh$#3gBP1S63+E^7H|FG1jc=Tj`N z;Yc*m_=va=@)?m}_bgdH@L6cTD_D({OY=Ulb4=Gt#oAla9} z>z4vOyn`h3RiT!2JF|WOtgUu0Nw!cqO2DV`O`WJuuvMX-1R|?xVg5m|%_DS?%%3q0 zWWfA`>et4Fd4<;!*}{E(YwJm1ssK}N{C3jh|DrMQf7SZ`zA^B>(z@;D`RNq;HyeKtOGGqYf(QRE&h(8swvl1sEv-_c8!&)=!5u7M*#0V5&k z+0+bn1VU6;GJ&P6CF&fV9PbEUEMCo4A_2r6+~J`B4iiSsi^QSirb!KzJN#dvF9 z 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

2#{hFuHmd$}(eR-GYt@a}>4`c;RFM=|dRqtotk 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