From 89da483448030bb85a089a28fd885d563fbb278c Mon Sep 17 00:00:00 2001 From: Zenny Date: Thu, 23 Apr 2026 01:04:02 -0700 Subject: [PATCH] Add elemental VFX when hitting enemies (2D only currently) --- .../Components/IHealthComponent.cs | 4 +- .../src/Components/HealthComponent.cs | 6 +- .../src/audio/amb/amb_ocean.ogg.import | 6 +- Zennysoft.Game.Ma/src/enemy/Enemy.cs | 7 +- Zennysoft.Game.Ma/src/enemy/EnemyModelView.cs | 2 + .../src/enemy/EnemyModelView2D.cs | 51 + .../src/enemy/EnemyModelView3D.cs | 6 + .../src/enemy/IEnemyModelView.cs | 2 + .../01. sproingy/SproingyModelView.tscn | 3268 +++++++++++++++- .../02. michael/MichaelModelView.tscn | 3268 +++++++++++++++- .../03. filth_eater/FilthEaterModelView.tscn | 3268 +++++++++++++++- .../enemy_types/04. sara/SaraModelView.tscn | 495 ++- .../05. ballos/BallosModelView.tscn | 3268 +++++++++++++++- .../06. Planter/PlanterModelView.tscn | 3369 ++++++++++++++++- .../07. chinthe/ChintheModelView.tscn | 3269 +++++++++++++++- .../08a. Ambassador/AmbassadorModelView.tscn | 3268 +++++++++++++++- .../AmbassadorSmallModelView.tscn | 3268 +++++++++++++++- .../AmbassadorSteelModelView.tscn | 3262 +++++++++++++++- .../09. Agni/AgniDemonModelView.tscn | 3268 +++++++++++++++- .../enemy_types/11. Palan/PalanModelView.tscn | 3269 +++++++++++++++- .../12. Shield of Heaven/ShieldModelView.tscn | 3269 +++++++++++++++- .../GoldSproingyModelView.tscn | 3267 +++++++++++++++- .../16. demon wall/DemonWallArm.cs | 5 + .../9b. Aqueos Demon/AqueosModelView.tscn | 3268 +++++++++++++++- Zennysoft.Game.Ma/src/game/Game.cs | 2 +- Zennysoft.Game.Ma/src/items/EffectService.cs | 4 +- Zennysoft.Game.Ma/src/items/misc/SetItem.cs | 2 +- .../src/items/thrown/ThrownItem.cs | 4 +- .../textures/PALM OF HEAVEN.PNG.import | 6 +- .../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/npc/Npc.cs | 44 +- Zennysoft.Game.Ma/src/player/Player.cs | 1148 +++--- .../src/system/PlayerProjectile.cs | 2 +- 46 files changed, 46974 insertions(+), 755 deletions(-) diff --git a/Zennysoft.Game.Ma.Implementation/Components/IHealthComponent.cs b/Zennysoft.Game.Ma.Implementation/Components/IHealthComponent.cs index cc48c9df..a0b1ffb5 100644 --- a/Zennysoft.Game.Ma.Implementation/Components/IHealthComponent.cs +++ b/Zennysoft.Game.Ma.Implementation/Components/IHealthComponent.cs @@ -9,13 +9,13 @@ public interface IHealthComponent : IEntityComponent public IAutoProp MaximumHP { get; } public event Action? HealthReachedZero; - public event Action? DamageTaken; + public event Action? DamageTaken; public bool AtFullHealth { get; } public void Heal(int healAmount); - public void Damage(int damageAmount); + public void Damage(int damageAmount, ElementType elementType); public void SetCurrentHealth(int health); diff --git a/Zennysoft.Game.Ma/src/Components/HealthComponent.cs b/Zennysoft.Game.Ma/src/Components/HealthComponent.cs index 43d70ffd..081b39b0 100644 --- a/Zennysoft.Game.Ma/src/Components/HealthComponent.cs +++ b/Zennysoft.Game.Ma/src/Components/HealthComponent.cs @@ -16,7 +16,7 @@ public class HealthComponent : IHealthComponent private readonly AutoProp _maximumHP; public event Action? HealthReachedZero; - public event Action? DamageTaken; + public event Action? DamageTaken; public bool AtFullHealth => CurrentHP.Value == MaximumHP.Value; @@ -44,7 +44,7 @@ public class HealthComponent : IHealthComponent _currentHP.OnNext(cappedAmount); } - public void Damage(int damageAmount) + public void Damage(int damageAmount, ElementType elementType) { if (CurrentHP.Value <= 0) return; @@ -55,7 +55,7 @@ public class HealthComponent : IHealthComponent if (cappedAmount == 0) HealthReachedZero?.Invoke(); else - DamageTaken?.Invoke(); + DamageTaken?.Invoke(elementType); } public void SetCurrentHealth(int health) diff --git a/Zennysoft.Game.Ma/src/audio/amb/amb_ocean.ogg.import b/Zennysoft.Game.Ma/src/audio/amb/amb_ocean.ogg.import index 98d30e18..d7688e59 100644 --- a/Zennysoft.Game.Ma/src/audio/amb/amb_ocean.ogg.import +++ b/Zennysoft.Game.Ma/src/audio/amb/amb_ocean.ogg.import @@ -3,12 +3,12 @@ importer="oggvorbisstr" type="AudioStreamOggVorbis" uid="uid://cgk17d8erskht" -path="res://.godot/imported/amb_ocean.ogg-01a11020be2db82b0e22d1423cb26aa3.oggvorbisstr" +path="res://.godot/imported/amb_ocean.ogg-f4ee3d30caf9194f7881a02c6507d38a.oggvorbisstr" [deps] -source_file="res://src/audio/amb/amb_ocean.ogg" -dest_files=["res://.godot/imported/amb_ocean.ogg-01a11020be2db82b0e22d1423cb26aa3.oggvorbisstr"] +source_file="res://src/audio/AMB/amb_ocean.ogg" +dest_files=["res://.godot/imported/amb_ocean.ogg-f4ee3d30caf9194f7881a02c6507d38a.oggvorbisstr"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/Enemy.cs b/Zennysoft.Game.Ma/src/enemy/Enemy.cs index ff596fe2..8e02ef07 100644 --- a/Zennysoft.Game.Ma/src/enemy/Enemy.cs +++ b/Zennysoft.Game.Ma/src/enemy/Enemy.cs @@ -169,8 +169,9 @@ public abstract partial class Enemy : CharacterBody3D, IEnemy, IProvide().Stop(); AnimationTree.AnimationFinished -= AnimationTree_AnimationFinished; } + + public abstract void PlayElementalDamageAnimation(ElementType elementType); } diff --git a/Zennysoft.Game.Ma/src/enemy/EnemyModelView2D.cs b/Zennysoft.Game.Ma/src/enemy/EnemyModelView2D.cs index 4581cb18..eb61b91a 100644 --- a/Zennysoft.Game.Ma/src/enemy/EnemyModelView2D.cs +++ b/Zennysoft.Game.Ma/src/enemy/EnemyModelView2D.cs @@ -2,6 +2,7 @@ using Chickensoft.AutoInject; using Chickensoft.Introspection; using Godot; using System.Linq; +using Zennysoft.Ma.Adapter; namespace Zennysoft.Game.Ma; [Meta(typeof(IAutoNode))] @@ -17,6 +18,15 @@ public partial class EnemyModelView2D : EnemyModelView, IEnemyModelView [Node] public AnimationPlayer AnimationPlayer { get; set; } = default!; + [Node] public AnimationPlayer FlameHitAnimation { get; set; } = default!; + + [Node] public AnimationPlayer RustHitAnimation { get; set; } = default!; + [Node] public AnimationPlayer HolyHitAnimation { get; set; } = default!; + [Node] public AnimationPlayer WindHitAnimation { get; set; } = default!; + [Node] public AnimationPlayer WaterHitAnimation { get; set; } = default!; + [Node] public AnimationPlayer CurseHitAnimation { get; set; } = default!; + [Node] public AnimationPlayer EarthHitAnimation { get; set; } = default!; + [ExportGroup("Enemy Model Properties")] [Export(PropertyHint.Range, "0.0, 1.0")] private float _upperThreshold { get; set; } = 0.5f; @@ -56,6 +66,47 @@ public partial class EnemyModelView2D : EnemyModelView, IEnemyModelView tweener.TweenMethod(Callable.From((float x) => SetShaderValue(x)), 0.0f, 0.1f, 0.8f); } + public override void PlayElementalDamageAnimation(ElementType elementType) + { + if (elementType == ElementType.Igneous) + { + if (FlameHitAnimation.IsPlaying()) + FlameHitAnimation.Stop(); + FlameHitAnimation.Play("FireHit"); + } + else if (elementType == ElementType.Holy) + { + if (HolyHitAnimation.IsPlaying()) + HolyHitAnimation.Stop(); + HolyHitAnimation.Play("HolyHit"); + } + else if (elementType == ElementType.Aeolic) + { + if (WindHitAnimation.IsPlaying()) + WindHitAnimation.Stop(); + WindHitAnimation.Play("WindHit"); + } + else if (elementType == ElementType.Curse) + { + if (CurseHitAnimation.IsPlaying()) + CurseHitAnimation.Stop(); + CurseHitAnimation.Play("CurseHit"); + } + else if (elementType == ElementType.Hydric) + { + if (WaterHitAnimation.IsPlaying()) + WaterHitAnimation.Stop(); + WaterHitAnimation.Play("WaterHit"); + } + else if (elementType == ElementType.Telluric) + { + if (EarthHitAnimation.IsPlaying()) + EarthHitAnimation.Stop(); + EarthHitAnimation.Play("EarthHit"); + } + + } + private EnemyDirection GetEnemyDirection( Basis enemyBasis, Vector3 cameraDirection, diff --git a/Zennysoft.Game.Ma/src/enemy/EnemyModelView3D.cs b/Zennysoft.Game.Ma/src/enemy/EnemyModelView3D.cs index 20c1a687..4a0d39c5 100644 --- a/Zennysoft.Game.Ma/src/enemy/EnemyModelView3D.cs +++ b/Zennysoft.Game.Ma/src/enemy/EnemyModelView3D.cs @@ -1,6 +1,7 @@ using Chickensoft.AutoInject; using Chickensoft.Introspection; using Godot; +using Zennysoft.Ma.Adapter; namespace Zennysoft.Game.Ma; @@ -59,4 +60,9 @@ public partial class EnemyModelView3D : EnemyModelView { MeshInstance.Transparency = transparencyAmount; } + + public override void PlayElementalDamageAnimation(ElementType elementType) + { + + } } \ No newline at end of file diff --git a/Zennysoft.Game.Ma/src/enemy/IEnemyModelView.cs b/Zennysoft.Game.Ma/src/enemy/IEnemyModelView.cs index 02e37b97..f2a55ab6 100644 --- a/Zennysoft.Game.Ma/src/enemy/IEnemyModelView.cs +++ b/Zennysoft.Game.Ma/src/enemy/IEnemyModelView.cs @@ -27,6 +27,8 @@ public interface IEnemyModelView : INode3D public void PlayDeathAnimation(); + public void PlayElementalDamageAnimation(ElementType elementType); + public double ViewerSize { get; } public AttackData AttackData { get; set; } diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/01. sproingy/SproingyModelView.tscn b/Zennysoft.Game.Ma/src/enemy/enemy_types/01. sproingy/SproingyModelView.tscn index ada16407..4e6c115d 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/01. sproingy/SproingyModelView.tscn +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/01. sproingy/SproingyModelView.tscn @@ -1,4 +1,4 @@ -[gd_scene load_steps=80 format=3 uid="uid://bjcqrhtifpcvr"] +[gd_scene load_steps=475 format=3 uid="uid://bjcqrhtifpcvr"] [ext_resource type="Script" uid="uid://cvr1qimxpignl" path="res://src/enemy/EnemyModelView2D.cs" id="1_oh25a"] [ext_resource type="Texture2D" uid="uid://dd0ia6isdqg61" path="res://src/enemy/enemy_types/01. sproingy/animations/ATTACK/Layer 1.png" id="1_pbx41"] @@ -58,9 +58,17 @@ [ext_resource type="Texture2D" uid="uid://b3gndmrlrvexy" path="res://src/enemy/enemy_types/01. sproingy/animations/IDLE_WALK_SIDE/Layer 13.png" id="53_nr2vc"] [ext_resource type="Texture2D" uid="uid://b1cmx8l4ia3fv" path="res://src/enemy/enemy_types/01. sproingy/animations/IDLE_WALK_SIDE/Layer 14.png" id="54_jdvn0"] [ext_resource type="Texture2D" uid="uid://c7t4626rox02s" path="res://src/enemy/enemy_types/01. sproingy/animations/IDLE_WALK_SIDE/Layer 15.png" id="55_2eqor"] +[ext_resource type="Texture2D" uid="uid://dq70aipwl1qrg" path="res://src/vfx/Enemy Affected/Rust Particles.png" id="59_dfvqa"] +[ext_resource type="Texture2D" uid="uid://by0ehygy7bq13" path="res://src/vfx/Enemy Affected/Holy Damage.png" id="60_dnvt3"] [ext_resource type="AnimationNodeStateMachine" uid="uid://cbq8xog50cjjy" path="res://src/enemy/animation_state_machines/PrimaryAttackStateMachine.tres" id="60_x7uye"] [ext_resource type="Texture2D" uid="uid://dafpnwkwcukp4" path="res://src/vfx/shadow_test_1.png" id="61_djeua"] +[ext_resource type="Texture2D" uid="uid://dqqhu0s51o3n7" path="res://src/vfx/Enemy Affected/Wind Damage.png" id="61_m7aft"] [ext_resource type="AnimationNodeStateMachine" uid="uid://co7lshemjrro8" path="res://src/enemy/animation_state_machines/IdleStateMachine.tres" id="62_8wbs7"] +[ext_resource type="Texture2D" uid="uid://dh6mk1c35nymx" path="res://src/vfx/Enemy Affected/firedamage.png" id="62_at0w8"] +[ext_resource type="Texture2D" uid="uid://7a42df2ijrmv" path="res://src/vfx/Enemy Affected/earth damage.png" id="63_afod7"] +[ext_resource type="Texture2D" uid="uid://cot4wx5fg5pfs" path="res://src/vfx/Enemy Affected/water_hit_layer2.png" id="64_dwhw7"] +[ext_resource type="Texture2D" uid="uid://cbei66g134fgv" path="res://src/vfx/Enemy Affected/water layer 1.png" id="65_qjloj"] +[ext_resource type="Texture2D" uid="uid://bp6npqoco5fl3" path="res://src/vfx/Enemy Affected/curse_damage.png" id="66_7uqwg"] [sub_resource type="Resource" id="Resource_ivy74"] script = ExtResource("2_7hf3j") @@ -267,6 +275,2685 @@ animations = [{ "speed": 12.0 }] +[sub_resource type="AtlasTexture" id="AtlasTexture_4o5f2"] +atlas = ExtResource("59_dfvqa") +region = Rect2(1206, 402, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r8ggx"] +atlas = ExtResource("59_dfvqa") +region = Rect2(1340, 402, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xafpd"] +atlas = ExtResource("59_dfvqa") +region = Rect2(1474, 402, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_73dpc"] +atlas = ExtResource("59_dfvqa") +region = Rect2(0, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vppxt"] +atlas = ExtResource("59_dfvqa") +region = Rect2(134, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nk562"] +atlas = ExtResource("59_dfvqa") +region = Rect2(268, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dwu2q"] +atlas = ExtResource("59_dfvqa") +region = Rect2(402, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w3p3j"] +atlas = ExtResource("59_dfvqa") +region = Rect2(536, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ig0ip"] +atlas = ExtResource("59_dfvqa") +region = Rect2(670, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r4enw"] +atlas = ExtResource("59_dfvqa") +region = Rect2(804, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uy6hg"] +atlas = ExtResource("59_dfvqa") +region = Rect2(938, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_85jwg"] +atlas = ExtResource("59_dfvqa") +region = Rect2(1072, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ln7dl"] +atlas = ExtResource("59_dfvqa") +region = Rect2(1206, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3vvgp"] +atlas = ExtResource("59_dfvqa") +region = Rect2(1340, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_01f7m"] +atlas = ExtResource("59_dfvqa") +region = Rect2(1474, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pp21u"] +atlas = ExtResource("59_dfvqa") +region = Rect2(0, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1aldj"] +atlas = ExtResource("59_dfvqa") +region = Rect2(134, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xv5pw"] +atlas = ExtResource("59_dfvqa") +region = Rect2(268, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_14lh3"] +atlas = ExtResource("59_dfvqa") +region = Rect2(402, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xxid6"] +atlas = ExtResource("59_dfvqa") +region = Rect2(536, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y6yeo"] +atlas = ExtResource("59_dfvqa") +region = Rect2(670, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2aohu"] +atlas = ExtResource("59_dfvqa") +region = Rect2(804, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ebvc7"] +atlas = ExtResource("59_dfvqa") +region = Rect2(938, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yd50d"] +atlas = ExtResource("59_dfvqa") +region = Rect2(1072, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yimdu"] +atlas = ExtResource("59_dfvqa") +region = Rect2(1206, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dync1"] +atlas = ExtResource("59_dfvqa") +region = Rect2(1340, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jsjdk"] +atlas = ExtResource("59_dfvqa") +region = Rect2(1474, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ueih5"] +atlas = ExtResource("59_dfvqa") +region = Rect2(0, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k0hut"] +atlas = ExtResource("59_dfvqa") +region = Rect2(134, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kybji"] +atlas = ExtResource("59_dfvqa") +region = Rect2(268, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u5vpt"] +atlas = ExtResource("59_dfvqa") +region = Rect2(402, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wko4t"] +atlas = ExtResource("59_dfvqa") +region = Rect2(536, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ru86o"] +atlas = ExtResource("59_dfvqa") +region = Rect2(670, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uybbj"] +atlas = ExtResource("59_dfvqa") +region = Rect2(804, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s6pp8"] +atlas = ExtResource("59_dfvqa") +region = Rect2(938, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a7pls"] +atlas = ExtResource("59_dfvqa") +region = Rect2(1072, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_30y71"] +atlas = ExtResource("59_dfvqa") +region = Rect2(1206, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dwl1c"] +atlas = ExtResource("59_dfvqa") +region = Rect2(1340, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_01jp4"] +atlas = ExtResource("59_dfvqa") +region = Rect2(1474, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b8ulh"] +atlas = ExtResource("59_dfvqa") +region = Rect2(0, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3walv"] +atlas = ExtResource("59_dfvqa") +region = Rect2(134, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_exyoj"] +atlas = ExtResource("59_dfvqa") +region = Rect2(268, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kus54"] +atlas = ExtResource("59_dfvqa") +region = Rect2(402, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_meauc"] +atlas = ExtResource("59_dfvqa") +region = Rect2(536, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7v7xr"] +atlas = ExtResource("59_dfvqa") +region = Rect2(670, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4ktea"] +atlas = ExtResource("59_dfvqa") +region = Rect2(804, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l8oa1"] +atlas = ExtResource("59_dfvqa") +region = Rect2(938, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3eopa"] +atlas = ExtResource("59_dfvqa") +region = Rect2(1072, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ip8hv"] +atlas = ExtResource("59_dfvqa") +region = Rect2(1206, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_42rbq"] +atlas = ExtResource("59_dfvqa") +region = Rect2(1340, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tu0vu"] +atlas = ExtResource("59_dfvqa") +region = Rect2(1474, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gbh7l"] +atlas = ExtResource("59_dfvqa") +region = Rect2(0, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_733jx"] +atlas = ExtResource("59_dfvqa") +region = Rect2(134, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sfa2q"] +atlas = ExtResource("59_dfvqa") +region = Rect2(268, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o0nvo"] +atlas = ExtResource("59_dfvqa") +region = Rect2(402, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1mv1w"] +atlas = ExtResource("59_dfvqa") +region = Rect2(536, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yw8ob"] +atlas = ExtResource("59_dfvqa") +region = Rect2(670, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ptkbd"] +atlas = ExtResource("59_dfvqa") +region = Rect2(804, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2uoiw"] +atlas = ExtResource("59_dfvqa") +region = Rect2(938, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4m684"] +atlas = ExtResource("59_dfvqa") +region = Rect2(1072, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_st6fj"] +atlas = ExtResource("59_dfvqa") +region = Rect2(1206, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1wana"] +atlas = ExtResource("59_dfvqa") +region = Rect2(1340, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ati4e"] +atlas = ExtResource("59_dfvqa") +region = Rect2(1474, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0w31q"] +atlas = ExtResource("59_dfvqa") +region = Rect2(0, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uxu33"] +atlas = ExtResource("59_dfvqa") +region = Rect2(134, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2ulnd"] +atlas = ExtResource("59_dfvqa") +region = Rect2(268, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ddsrn"] +atlas = ExtResource("59_dfvqa") +region = Rect2(402, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n1e5w"] +atlas = ExtResource("59_dfvqa") +region = Rect2(536, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f4aq5"] +atlas = ExtResource("59_dfvqa") +region = Rect2(670, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_er00h"] +atlas = ExtResource("59_dfvqa") +region = Rect2(804, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mlf5c"] +atlas = ExtResource("59_dfvqa") +region = Rect2(938, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c362w"] +atlas = ExtResource("59_dfvqa") +region = Rect2(1072, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_30wb7"] +atlas = ExtResource("59_dfvqa") +region = Rect2(1206, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_stb0b"] +atlas = ExtResource("59_dfvqa") +region = Rect2(1340, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a64qf"] +atlas = ExtResource("59_dfvqa") +region = Rect2(1474, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_52bkw"] +atlas = ExtResource("59_dfvqa") +region = Rect2(0, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y0yvc"] +atlas = ExtResource("59_dfvqa") +region = Rect2(134, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5h2xe"] +atlas = ExtResource("59_dfvqa") +region = Rect2(268, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6hh33"] +atlas = ExtResource("59_dfvqa") +region = Rect2(402, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kmk3m"] +atlas = ExtResource("59_dfvqa") +region = Rect2(536, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rbtmh"] +atlas = ExtResource("59_dfvqa") +region = Rect2(670, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bit6n"] +atlas = ExtResource("59_dfvqa") +region = Rect2(804, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_458hw"] +atlas = ExtResource("59_dfvqa") +region = Rect2(938, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4x2ea"] +atlas = ExtResource("59_dfvqa") +region = Rect2(1072, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bcljt"] +atlas = ExtResource("59_dfvqa") +region = Rect2(1206, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p6e34"] +atlas = ExtResource("59_dfvqa") +region = Rect2(1340, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2yfi0"] +atlas = ExtResource("59_dfvqa") +region = Rect2(1474, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bhoxy"] +atlas = ExtResource("59_dfvqa") +region = Rect2(0, 1474, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_41wyx"] +atlas = ExtResource("59_dfvqa") +region = Rect2(134, 1474, 134, 134) + +[sub_resource type="SpriteFrames" id="SpriteFrames_dfvqa"] +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("60_dnvt3") +region = Rect2(1024, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pvn2l"] +atlas = ExtResource("60_dnvt3") +region = Rect2(1536, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sctov"] +atlas = ExtResource("60_dnvt3") +region = Rect2(2048, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_46bwa"] +atlas = ExtResource("60_dnvt3") +region = Rect2(2560, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o42jv"] +atlas = ExtResource("60_dnvt3") +region = Rect2(3072, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5dqsk"] +atlas = ExtResource("60_dnvt3") +region = Rect2(3584, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_35l4k"] +atlas = ExtResource("60_dnvt3") +region = Rect2(4096, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x0jfm"] +atlas = ExtResource("60_dnvt3") +region = Rect2(4608, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fk16r"] +atlas = ExtResource("60_dnvt3") +region = Rect2(5120, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ewtdr"] +atlas = ExtResource("60_dnvt3") +region = Rect2(5632, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bul51"] +atlas = ExtResource("60_dnvt3") +region = Rect2(6144, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vbobf"] +atlas = ExtResource("60_dnvt3") +region = Rect2(6656, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_itqlk"] +atlas = ExtResource("60_dnvt3") +region = Rect2(7168, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_41jjh"] +atlas = ExtResource("60_dnvt3") +region = Rect2(7680, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kol03"] +atlas = ExtResource("60_dnvt3") +region = Rect2(0, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ynyxy"] +atlas = ExtResource("60_dnvt3") +region = Rect2(512, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ngcxk"] +atlas = ExtResource("60_dnvt3") +region = Rect2(1024, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ba8fa"] +atlas = ExtResource("60_dnvt3") +region = Rect2(1536, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ngitf"] +atlas = ExtResource("60_dnvt3") +region = Rect2(2048, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_boovf"] +atlas = ExtResource("60_dnvt3") +region = Rect2(2560, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jwkhr"] +atlas = ExtResource("60_dnvt3") +region = Rect2(3072, 512, 512, 512) + +[sub_resource type="SpriteFrames" id="SpriteFrames_dnvt3"] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": null +}, { +"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("61_m7aft") +region = Rect2(0, 0, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3jmy8"] +atlas = ExtResource("61_m7aft") +region = Rect2(266, 0, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t76hk"] +atlas = ExtResource("61_m7aft") +region = Rect2(532, 0, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_06gff"] +atlas = ExtResource("61_m7aft") +region = Rect2(798, 0, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ssjgs"] +atlas = ExtResource("61_m7aft") +region = Rect2(1064, 0, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_53u6k"] +atlas = ExtResource("61_m7aft") +region = Rect2(0, 131, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_inmu7"] +atlas = ExtResource("61_m7aft") +region = Rect2(266, 131, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bmkvg"] +atlas = ExtResource("61_m7aft") +region = Rect2(532, 131, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oqdmj"] +atlas = ExtResource("61_m7aft") +region = Rect2(798, 131, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bnn41"] +atlas = ExtResource("61_m7aft") +region = Rect2(1064, 131, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p6hmn"] +atlas = ExtResource("61_m7aft") +region = Rect2(0, 262, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s0ybe"] +atlas = ExtResource("61_m7aft") +region = Rect2(266, 262, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y2273"] +atlas = ExtResource("61_m7aft") +region = Rect2(532, 262, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2i87r"] +atlas = ExtResource("61_m7aft") +region = Rect2(798, 262, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4q8o2"] +atlas = ExtResource("61_m7aft") +region = Rect2(1064, 262, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_esxmc"] +atlas = ExtResource("61_m7aft") +region = Rect2(0, 393, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rdsur"] +atlas = ExtResource("61_m7aft") +region = Rect2(266, 393, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b2qt4"] +atlas = ExtResource("61_m7aft") +region = Rect2(532, 393, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xamrr"] +atlas = ExtResource("61_m7aft") +region = Rect2(798, 393, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0prqh"] +atlas = ExtResource("61_m7aft") +region = Rect2(1064, 393, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dh1oc"] +atlas = ExtResource("61_m7aft") +region = Rect2(0, 524, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ybb1w"] +atlas = ExtResource("61_m7aft") +region = Rect2(266, 524, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2nkua"] +atlas = ExtResource("61_m7aft") +region = Rect2(532, 524, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2gocr"] +atlas = ExtResource("61_m7aft") +region = Rect2(798, 524, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_acsou"] +atlas = ExtResource("61_m7aft") +region = Rect2(1064, 524, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yflou"] +atlas = ExtResource("61_m7aft") +region = Rect2(0, 655, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_env3c"] +atlas = ExtResource("61_m7aft") +region = Rect2(266, 655, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_74f4l"] +atlas = ExtResource("61_m7aft") +region = Rect2(532, 655, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cbaq7"] +atlas = ExtResource("61_m7aft") +region = Rect2(798, 655, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bc4hh"] +atlas = ExtResource("61_m7aft") +region = Rect2(1064, 655, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5m27y"] +atlas = ExtResource("61_m7aft") +region = Rect2(0, 786, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c2vig"] +atlas = ExtResource("61_m7aft") +region = Rect2(266, 786, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h8qbh"] +atlas = ExtResource("61_m7aft") +region = Rect2(532, 786, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vj2ia"] +atlas = ExtResource("61_m7aft") +region = Rect2(798, 786, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h0bv3"] +atlas = ExtResource("61_m7aft") +region = Rect2(1064, 786, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3xb07"] +atlas = ExtResource("61_m7aft") +region = Rect2(0, 917, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p845e"] +atlas = ExtResource("61_m7aft") +region = Rect2(266, 917, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nm575"] +atlas = ExtResource("61_m7aft") +region = Rect2(532, 917, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8wvvt"] +atlas = ExtResource("61_m7aft") +region = Rect2(798, 917, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2l45l"] +atlas = ExtResource("61_m7aft") +region = Rect2(1064, 917, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0c6u7"] +atlas = ExtResource("61_m7aft") +region = Rect2(0, 1048, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bo1qh"] +atlas = ExtResource("61_m7aft") +region = Rect2(266, 1048, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4cq22"] +atlas = ExtResource("61_m7aft") +region = Rect2(532, 1048, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d6auk"] +atlas = ExtResource("61_m7aft") +region = Rect2(798, 1048, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4bvg3"] +atlas = ExtResource("61_m7aft") +region = Rect2(1064, 1048, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rps4p"] +atlas = ExtResource("61_m7aft") +region = Rect2(0, 1179, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qdy2n"] +atlas = ExtResource("61_m7aft") +region = Rect2(266, 1179, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a63dt"] +atlas = ExtResource("61_m7aft") +region = Rect2(532, 1179, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3alol"] +atlas = ExtResource("61_m7aft") +region = Rect2(798, 1179, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w5y4o"] +atlas = ExtResource("61_m7aft") +region = Rect2(1064, 1179, 133, 131) + +[sub_resource type="SpriteFrames" id="SpriteFrames_m7aft"] +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("62_at0w8") +region = Rect2(200, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w5yum"] +atlas = ExtResource("62_at0w8") +region = Rect2(600, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xagiq"] +atlas = ExtResource("62_at0w8") +region = Rect2(1000, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iu4h2"] +atlas = ExtResource("62_at0w8") +region = Rect2(100, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t6kmk"] +atlas = ExtResource("62_at0w8") +region = Rect2(500, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c3c22"] +atlas = ExtResource("62_at0w8") +region = Rect2(900, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_udm06"] +atlas = ExtResource("62_at0w8") +region = Rect2(0, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_31shi"] +atlas = ExtResource("62_at0w8") +region = Rect2(400, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i6wsf"] +atlas = ExtResource("62_at0w8") +region = Rect2(800, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jhluk"] +atlas = ExtResource("62_at0w8") +region = Rect2(1200, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_exq74"] +atlas = ExtResource("62_at0w8") +region = Rect2(300, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k7tc1"] +atlas = ExtResource("62_at0w8") +region = Rect2(700, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_456io"] +atlas = ExtResource("62_at0w8") +region = Rect2(1100, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2h7ac"] +atlas = ExtResource("62_at0w8") +region = Rect2(200, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dy5lo"] +atlas = ExtResource("62_at0w8") +region = Rect2(500, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_biyyn"] +atlas = ExtResource("62_at0w8") +region = Rect2(1000, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_flqm1"] +atlas = ExtResource("62_at0w8") +region = Rect2(100, 500, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xttn8"] +atlas = ExtResource("62_at0w8") +region = Rect2(500, 500, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_85rsb"] +atlas = ExtResource("62_at0w8") +region = Rect2(900, 500, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oxqm1"] +atlas = ExtResource("62_at0w8") +region = Rect2(0, 600, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dphle"] +atlas = ExtResource("62_at0w8") +region = Rect2(400, 600, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_48bul"] +atlas = ExtResource("62_at0w8") +region = Rect2(800, 600, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2d6tt"] +atlas = ExtResource("62_at0w8") +region = Rect2(1200, 600, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ty41g"] +atlas = ExtResource("62_at0w8") +region = Rect2(300, 700, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c5uyp"] +atlas = ExtResource("62_at0w8") +region = Rect2(700, 700, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tf4dl"] +atlas = ExtResource("62_at0w8") +region = Rect2(1100, 700, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cvdlu"] +atlas = ExtResource("62_at0w8") +region = Rect2(200, 800, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f25l1"] +atlas = ExtResource("62_at0w8") +region = Rect2(600, 800, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v033q"] +atlas = ExtResource("62_at0w8") +region = Rect2(1000, 800, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xgfkn"] +atlas = ExtResource("62_at0w8") +region = Rect2(100, 900, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_duxfd"] +atlas = ExtResource("62_at0w8") +region = Rect2(500, 900, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5uvt0"] +atlas = ExtResource("62_at0w8") +region = Rect2(900, 900, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7d05g"] +atlas = ExtResource("62_at0w8") +region = Rect2(0, 1000, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x0ube"] +atlas = ExtResource("62_at0w8") +region = Rect2(400, 1000, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_15y07"] +atlas = ExtResource("62_at0w8") +region = Rect2(800, 1000, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_de0po"] +atlas = ExtResource("62_at0w8") +region = Rect2(1200, 1000, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b3rtc"] +atlas = ExtResource("62_at0w8") +region = Rect2(300, 1100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q32lt"] +atlas = ExtResource("62_at0w8") +region = Rect2(700, 1100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_88hqh"] +atlas = ExtResource("62_at0w8") +region = Rect2(1100, 1100, 100, 100) + +[sub_resource type="SpriteFrames" id="SpriteFrames_at0w8"] +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("63_afod7") +region = Rect2(0, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0rj30"] +atlas = ExtResource("63_afod7") +region = Rect2(200, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ug1a1"] +atlas = ExtResource("63_afod7") +region = Rect2(400, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8eees"] +atlas = ExtResource("63_afod7") +region = Rect2(600, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k2i7i"] +atlas = ExtResource("63_afod7") +region = Rect2(800, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4wwo5"] +atlas = ExtResource("63_afod7") +region = Rect2(0, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_418m2"] +atlas = ExtResource("63_afod7") +region = Rect2(200, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6g5qj"] +atlas = ExtResource("63_afod7") +region = Rect2(400, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k3sey"] +atlas = ExtResource("63_afod7") +region = Rect2(600, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ms40v"] +atlas = ExtResource("63_afod7") +region = Rect2(800, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2tfej"] +atlas = ExtResource("63_afod7") +region = Rect2(0, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_woj7f"] +atlas = ExtResource("63_afod7") +region = Rect2(200, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kg861"] +atlas = ExtResource("63_afod7") +region = Rect2(400, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jtxxp"] +atlas = ExtResource("63_afod7") +region = Rect2(600, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sxooa"] +atlas = ExtResource("63_afod7") +region = Rect2(800, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hkj2y"] +atlas = ExtResource("63_afod7") +region = Rect2(0, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wm40h"] +atlas = ExtResource("63_afod7") +region = Rect2(200, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u66v8"] +atlas = ExtResource("63_afod7") +region = Rect2(400, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6ip85"] +atlas = ExtResource("63_afod7") +region = Rect2(600, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qad2i"] +atlas = ExtResource("63_afod7") +region = Rect2(800, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nifqu"] +atlas = ExtResource("63_afod7") +region = Rect2(0, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_goocc"] +atlas = ExtResource("63_afod7") +region = Rect2(200, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l78ua"] +atlas = ExtResource("63_afod7") +region = Rect2(400, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ybqlc"] +atlas = ExtResource("63_afod7") +region = Rect2(600, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d0lry"] +atlas = ExtResource("63_afod7") +region = Rect2(800, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ccb2v"] +atlas = ExtResource("63_afod7") +region = Rect2(0, 500, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dcp7h"] +atlas = ExtResource("63_afod7") +region = Rect2(200, 500, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3kud6"] +atlas = ExtResource("63_afod7") +region = Rect2(400, 500, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0tvc2"] +atlas = ExtResource("63_afod7") +region = Rect2(600, 500, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g5aky"] +atlas = ExtResource("63_afod7") +region = Rect2(800, 500, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nyc7u"] +atlas = ExtResource("63_afod7") +region = Rect2(0, 600, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q1yeq"] +atlas = ExtResource("63_afod7") +region = Rect2(200, 600, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pupfb"] +atlas = ExtResource("63_afod7") +region = Rect2(400, 600, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gfe8c"] +atlas = ExtResource("63_afod7") +region = Rect2(600, 600, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_76bl1"] +atlas = ExtResource("63_afod7") +region = Rect2(800, 600, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u7frn"] +atlas = ExtResource("63_afod7") +region = Rect2(0, 700, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ls3an"] +atlas = ExtResource("63_afod7") +region = Rect2(200, 700, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4l6e0"] +atlas = ExtResource("63_afod7") +region = Rect2(400, 700, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cvlbl"] +atlas = ExtResource("63_afod7") +region = Rect2(600, 700, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jkvpv"] +atlas = ExtResource("63_afod7") +region = Rect2(800, 700, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lpp7o"] +atlas = ExtResource("63_afod7") +region = Rect2(0, 800, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v8igx"] +atlas = ExtResource("63_afod7") +region = Rect2(200, 800, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mmm0q"] +atlas = ExtResource("63_afod7") +region = Rect2(400, 800, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5ukt7"] +atlas = ExtResource("63_afod7") +region = Rect2(600, 800, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0pkd7"] +atlas = ExtResource("63_afod7") +region = Rect2(800, 800, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n85t7"] +atlas = ExtResource("64_dwhw7") +region = Rect2(0, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nb4v4"] +atlas = ExtResource("64_dwhw7") +region = Rect2(100, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cl00x"] +atlas = ExtResource("64_dwhw7") +region = Rect2(200, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ufcsw"] +atlas = ExtResource("64_dwhw7") +region = Rect2(300, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aoisp"] +atlas = ExtResource("64_dwhw7") +region = Rect2(400, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3rkdy"] +atlas = ExtResource("64_dwhw7") +region = Rect2(500, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o0dym"] +atlas = ExtResource("64_dwhw7") +region = Rect2(0, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vxihx"] +atlas = ExtResource("64_dwhw7") +region = Rect2(100, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ofpmt"] +atlas = ExtResource("64_dwhw7") +region = Rect2(200, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ux0ir"] +atlas = ExtResource("64_dwhw7") +region = Rect2(300, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8dgch"] +atlas = ExtResource("64_dwhw7") +region = Rect2(400, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7ixin"] +atlas = ExtResource("64_dwhw7") +region = Rect2(500, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2kea0"] +atlas = ExtResource("64_dwhw7") +region = Rect2(0, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kgnps"] +atlas = ExtResource("64_dwhw7") +region = Rect2(100, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g2wgu"] +atlas = ExtResource("64_dwhw7") +region = Rect2(200, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0oosk"] +atlas = ExtResource("64_dwhw7") +region = Rect2(300, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_80k2g"] +atlas = ExtResource("64_dwhw7") +region = Rect2(400, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fskx7"] +atlas = ExtResource("64_dwhw7") +region = Rect2(500, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_no3pe"] +atlas = ExtResource("64_dwhw7") +region = Rect2(0, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_15fnm"] +atlas = ExtResource("64_dwhw7") +region = Rect2(100, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r5e73"] +atlas = ExtResource("64_dwhw7") +region = Rect2(200, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2im8t"] +atlas = ExtResource("64_dwhw7") +region = Rect2(300, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mxl2m"] +atlas = ExtResource("64_dwhw7") +region = Rect2(400, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6dwuh"] +atlas = ExtResource("64_dwhw7") +region = Rect2(500, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_53c1f"] +atlas = ExtResource("64_dwhw7") +region = Rect2(0, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mmbhy"] +atlas = ExtResource("64_dwhw7") +region = Rect2(100, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uwbh3"] +atlas = ExtResource("64_dwhw7") +region = Rect2(200, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j6v2y"] +atlas = ExtResource("64_dwhw7") +region = Rect2(300, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h5xbu"] +atlas = ExtResource("64_dwhw7") +region = Rect2(400, 400, 100, 100) + +[sub_resource type="SpriteFrames" id="SpriteFrames_afod7"] +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("65_qjloj") +region = Rect2(875, 452, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ekrqp"] +atlas = ExtResource("65_qjloj") +region = Rect2(1050, 452, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dvnic"] +atlas = ExtResource("65_qjloj") +region = Rect2(1225, 452, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rxdv7"] +atlas = ExtResource("65_qjloj") +region = Rect2(1400, 452, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0pvcp"] +atlas = ExtResource("65_qjloj") +region = Rect2(0, 678, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yga3t"] +atlas = ExtResource("65_qjloj") +region = Rect2(175, 678, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c6qrx"] +atlas = ExtResource("65_qjloj") +region = Rect2(350, 678, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fkryw"] +atlas = ExtResource("65_qjloj") +region = Rect2(525, 678, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jt7jg"] +atlas = ExtResource("65_qjloj") +region = Rect2(700, 678, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6eyjl"] +atlas = ExtResource("65_qjloj") +region = Rect2(875, 678, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tsolq"] +atlas = ExtResource("65_qjloj") +region = Rect2(1050, 678, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_opqal"] +atlas = ExtResource("65_qjloj") +region = Rect2(1225, 678, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kia47"] +atlas = ExtResource("65_qjloj") +region = Rect2(1400, 678, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6aolf"] +atlas = ExtResource("65_qjloj") +region = Rect2(0, 904, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g6jok"] +atlas = ExtResource("65_qjloj") +region = Rect2(175, 904, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_swdkn"] +atlas = ExtResource("65_qjloj") +region = Rect2(350, 904, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_edlre"] +atlas = ExtResource("65_qjloj") +region = Rect2(525, 904, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gbj32"] +atlas = ExtResource("65_qjloj") +region = Rect2(700, 904, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bstol"] +atlas = ExtResource("65_qjloj") +region = Rect2(875, 904, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_57vey"] +atlas = ExtResource("65_qjloj") +region = Rect2(1050, 904, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_31ikn"] +atlas = ExtResource("65_qjloj") +region = Rect2(1225, 904, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e1yxa"] +atlas = ExtResource("65_qjloj") +region = Rect2(1400, 904, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7a7ks"] +atlas = ExtResource("65_qjloj") +region = Rect2(0, 1130, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p2hq6"] +atlas = ExtResource("65_qjloj") +region = Rect2(175, 1130, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k3fbj"] +atlas = ExtResource("65_qjloj") +region = Rect2(350, 1130, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ylav8"] +atlas = ExtResource("65_qjloj") +region = Rect2(525, 1130, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xhgk2"] +atlas = ExtResource("65_qjloj") +region = Rect2(700, 1130, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_diucy"] +atlas = ExtResource("65_qjloj") +region = Rect2(875, 1130, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8gw5n"] +atlas = ExtResource("65_qjloj") +region = Rect2(1050, 1130, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hc5wr"] +atlas = ExtResource("65_qjloj") +region = Rect2(1225, 1130, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fugdi"] +atlas = ExtResource("65_qjloj") +region = Rect2(1400, 1130, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h222i"] +atlas = ExtResource("65_qjloj") +region = Rect2(0, 1356, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7qa4p"] +atlas = ExtResource("65_qjloj") +region = Rect2(175, 1356, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jbavk"] +atlas = ExtResource("65_qjloj") +region = Rect2(350, 1356, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ncorq"] +atlas = ExtResource("65_qjloj") +region = Rect2(525, 1356, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mdvft"] +atlas = ExtResource("65_qjloj") +region = Rect2(700, 1356, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ljrf5"] +atlas = ExtResource("65_qjloj") +region = Rect2(875, 1356, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r7ll6"] +atlas = ExtResource("65_qjloj") +region = Rect2(1050, 1356, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6vssn"] +atlas = ExtResource("65_qjloj") +region = Rect2(1225, 1356, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4lr8r"] +atlas = ExtResource("65_qjloj") +region = Rect2(1400, 1356, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xp4kq"] +atlas = ExtResource("65_qjloj") +region = Rect2(0, 1582, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_idymv"] +atlas = ExtResource("65_qjloj") +region = Rect2(175, 1582, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ujl1x"] +atlas = ExtResource("65_qjloj") +region = Rect2(350, 1582, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_37wgc"] +atlas = ExtResource("65_qjloj") +region = Rect2(525, 1582, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g5fso"] +atlas = ExtResource("65_qjloj") +region = Rect2(700, 1582, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4a47d"] +atlas = ExtResource("65_qjloj") +region = Rect2(875, 1582, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eh3iw"] +atlas = ExtResource("65_qjloj") +region = Rect2(1050, 1582, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jc54a"] +atlas = ExtResource("65_qjloj") +region = Rect2(1225, 1582, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xyo6b"] +atlas = ExtResource("65_qjloj") +region = Rect2(1400, 1582, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gnyks"] +atlas = ExtResource("65_qjloj") +region = Rect2(0, 1808, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_08lae"] +atlas = ExtResource("65_qjloj") +region = Rect2(175, 1808, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r710l"] +atlas = ExtResource("65_qjloj") +region = Rect2(350, 1808, 175, 226) + +[sub_resource type="SpriteFrames" id="SpriteFrames_dwhw7"] +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("66_7uqwg") +region = Rect2(134, 0, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_56ojt"] +atlas = ExtResource("66_7uqwg") +region = Rect2(402, 0, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jwkdt"] +atlas = ExtResource("66_7uqwg") +region = Rect2(670, 0, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tklqq"] +atlas = ExtResource("66_7uqwg") +region = Rect2(938, 0, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0kd7d"] +atlas = ExtResource("66_7uqwg") +region = Rect2(1206, 0, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uoo6g"] +atlas = ExtResource("66_7uqwg") +region = Rect2(134, 134, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eyk0y"] +atlas = ExtResource("66_7uqwg") +region = Rect2(402, 134, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0imbq"] +atlas = ExtResource("66_7uqwg") +region = Rect2(670, 134, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oys1t"] +atlas = ExtResource("66_7uqwg") +region = Rect2(938, 134, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_06alo"] +atlas = ExtResource("66_7uqwg") +region = Rect2(1206, 134, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uoxdj"] +atlas = ExtResource("66_7uqwg") +region = Rect2(134, 268, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rcb13"] +atlas = ExtResource("66_7uqwg") +region = Rect2(402, 268, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pj86n"] +atlas = ExtResource("66_7uqwg") +region = Rect2(670, 268, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qpw3f"] +atlas = ExtResource("66_7uqwg") +region = Rect2(938, 268, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gn6h7"] +atlas = ExtResource("66_7uqwg") +region = Rect2(1206, 268, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lkh03"] +atlas = ExtResource("66_7uqwg") +region = Rect2(134, 402, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pdi3o"] +atlas = ExtResource("66_7uqwg") +region = Rect2(402, 402, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s3ywy"] +atlas = ExtResource("66_7uqwg") +region = Rect2(670, 402, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6idxu"] +atlas = ExtResource("66_7uqwg") +region = Rect2(938, 402, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qndi3"] +atlas = ExtResource("66_7uqwg") +region = Rect2(1206, 402, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y4ahc"] +atlas = ExtResource("66_7uqwg") +region = Rect2(134, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y5c6p"] +atlas = ExtResource("66_7uqwg") +region = Rect2(402, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oa8p3"] +atlas = ExtResource("66_7uqwg") +region = Rect2(670, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rc08e"] +atlas = ExtResource("66_7uqwg") +region = Rect2(938, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8tw6t"] +atlas = ExtResource("66_7uqwg") +region = Rect2(1206, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_njvn5"] +atlas = ExtResource("66_7uqwg") +region = Rect2(134, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cwp0x"] +atlas = ExtResource("66_7uqwg") +region = Rect2(402, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hch5s"] +atlas = ExtResource("66_7uqwg") +region = Rect2(670, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vgjuv"] +atlas = ExtResource("66_7uqwg") +region = Rect2(938, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1502j"] +atlas = ExtResource("66_7uqwg") +region = Rect2(1206, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5m1ra"] +atlas = ExtResource("66_7uqwg") +region = Rect2(134, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l0imt"] +atlas = ExtResource("66_7uqwg") +region = Rect2(402, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ywb2s"] +atlas = ExtResource("66_7uqwg") +region = Rect2(670, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x5582"] +atlas = ExtResource("66_7uqwg") +region = Rect2(938, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4uy6l"] +atlas = ExtResource("66_7uqwg") +region = Rect2(1206, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_50esb"] +atlas = ExtResource("66_7uqwg") +region = Rect2(134, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xnham"] +atlas = ExtResource("66_7uqwg") +region = Rect2(402, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j1cf1"] +atlas = ExtResource("66_7uqwg") +region = Rect2(670, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jvde4"] +atlas = ExtResource("66_7uqwg") +region = Rect2(938, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dvkgv"] +atlas = ExtResource("66_7uqwg") +region = Rect2(1206, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3ant7"] +atlas = ExtResource("66_7uqwg") +region = Rect2(134, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a6f8y"] +atlas = ExtResource("66_7uqwg") +region = Rect2(402, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ancbh"] +atlas = ExtResource("66_7uqwg") +region = Rect2(670, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yes2c"] +atlas = ExtResource("66_7uqwg") +region = Rect2(938, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cs2h2"] +atlas = ExtResource("66_7uqwg") +region = Rect2(1206, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n2i2d"] +atlas = ExtResource("66_7uqwg") +region = Rect2(134, 1206, 134, 134) + +[sub_resource type="SpriteFrames" id="SpriteFrames_qjloj"] +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="BoxShape3D" id="BoxShape3D_53wuj"] size = Vector3(1, 0.565, 2) @@ -660,6 +3347,483 @@ states/Idle/position = Vector2(453, 100) states/Start/position = Vector2(201, 100) transitions = ["Start", "Idle", SubResource("AnimationNodeStateMachineTransition_djeua"), "Idle", "Primary Attack", SubResource("AnimationNodeStateMachineTransition_8wbs7"), "Primary Attack", "Idle", SubResource("AnimationNodeStateMachineTransition_mnr4r")] +[sub_resource type="Animation" id="Animation_30xy4"] +resource_name = "CurseHit" +length = 1.56667 +tracks/0/type = "value" +tracks/0/imported = false +tracks/0/enabled = true +tracks/0/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Curse Hit Effect:animation") +tracks/0/interp = 1 +tracks/0/loop_wrap = true +tracks/0/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"default"] +} +tracks/1/type = "value" +tracks/1/imported = false +tracks/1/enabled = true +tracks/1/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Curse Hit Effect:frame") +tracks/1/interp = 1 +tracks/1/loop_wrap = true +tracks/1/keys = { +"times": PackedFloat32Array(0, 1.56667), +"transitions": PackedFloat32Array(1, 1), +"update": 0, +"values": [0, 47] +} + +[sub_resource type="Animation" id="Animation_3pm1j"] +resource_name = "EarthHit" +length = 1.46667 +tracks/0/type = "value" +tracks/0/imported = false +tracks/0/enabled = true +tracks/0/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Earth Hit Effect:animation") +tracks/0/interp = 1 +tracks/0/loop_wrap = true +tracks/0/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"EARTH DAMAGE"] +} +tracks/1/type = "value" +tracks/1/imported = false +tracks/1/enabled = true +tracks/1/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Earth Hit Effect:frame") +tracks/1/interp = 1 +tracks/1/loop_wrap = true +tracks/1/keys = { +"times": PackedFloat32Array(0, 1.46667), +"transitions": PackedFloat32Array(1, 1), +"update": 0, +"values": [0, 44] +} + +[sub_resource type="Animation" id="Animation_6shfu"] +resource_name = "Fire Damage" +length = 2.93334 +tracks/0/type = "value" +tracks/0/imported = false +tracks/0/enabled = true +tracks/0/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/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("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/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("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/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)] +} +tracks/3/type = "value" +tracks/3/imported = false +tracks/3/enabled = true +tracks/3/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Rust Activation Effect:animation") +tracks/3/interp = 1 +tracks/3/loop_wrap = true +tracks/3/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"default"] +} +tracks/4/type = "value" +tracks/4/imported = false +tracks/4/enabled = true +tracks/4/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Rust Activation Effect:frame") +tracks/4/interp = 1 +tracks/4/loop_wrap = true +tracks/4/keys = { +"times": PackedFloat32Array(0, 2.93333), +"transitions": PackedFloat32Array(1, 1), +"update": 0, +"values": [88, 88] +} + +[sub_resource type="Animation" id="Animation_f5cjs"] +resource_name = "HolyHit" +length = 0.700003 +tracks/0/type = "value" +tracks/0/imported = false +tracks/0/enabled = true +tracks/0/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Holy Hit Layer Effect:animation") +tracks/0/interp = 1 +tracks/0/loop_wrap = true +tracks/0/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"HOLY"] +} +tracks/1/type = "value" +tracks/1/imported = false +tracks/1/enabled = true +tracks/1/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Holy Hit Layer Effect:frame") +tracks/1/interp = 1 +tracks/1/loop_wrap = true +tracks/1/keys = { +"times": PackedFloat32Array(0, 0.7), +"transitions": PackedFloat32Array(1, 1), +"update": 0, +"values": [0, 21] +} + +[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("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/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("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/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("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/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"] +} +tracks/3/type = "value" +tracks/3/imported = false +tracks/3/enabled = true +tracks/3/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Rust Activation Effect:animation") +tracks/3/interp = 1 +tracks/3/loop_wrap = true +tracks/3/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"default"] +} +tracks/4/type = "value" +tracks/4/imported = false +tracks/4/enabled = true +tracks/4/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Rust Activation Effect:frame") +tracks/4/interp = 1 +tracks/4/loop_wrap = true +tracks/4/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [88] +} +tracks/5/type = "value" +tracks/5/imported = false +tracks/5/enabled = true +tracks/5/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Holy Hit Layer Effect:animation") +tracks/5/interp = 1 +tracks/5/loop_wrap = true +tracks/5/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"HOLY"] +} +tracks/6/type = "value" +tracks/6/imported = false +tracks/6/enabled = true +tracks/6/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Holy Hit Layer Effect:frame") +tracks/6/interp = 1 +tracks/6/loop_wrap = true +tracks/6/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [0] +} +tracks/7/type = "value" +tracks/7/imported = false +tracks/7/enabled = true +tracks/7/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Wind Hit Layer Effect:animation") +tracks/7/interp = 1 +tracks/7/loop_wrap = true +tracks/7/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"default"] +} +tracks/8/type = "value" +tracks/8/imported = false +tracks/8/enabled = true +tracks/8/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Wind Hit Layer Effect:frame") +tracks/8/interp = 1 +tracks/8/loop_wrap = true +tracks/8/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [50] +} +tracks/9/type = "value" +tracks/9/imported = false +tracks/9/enabled = true +tracks/9/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Water Hit Layer 1 Effect:animation") +tracks/9/interp = 1 +tracks/9/loop_wrap = true +tracks/9/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"WATER DAMAGE"] +} +tracks/10/type = "value" +tracks/10/imported = false +tracks/10/enabled = true +tracks/10/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Water Hit Layer 1 Effect:frame") +tracks/10/interp = 1 +tracks/10/loop_wrap = true +tracks/10/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [29] +} +tracks/11/type = "value" +tracks/11/imported = false +tracks/11/enabled = true +tracks/11/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Water Hit Layer 2Effect:animation") +tracks/11/interp = 1 +tracks/11/loop_wrap = true +tracks/11/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"WATER"] +} +tracks/12/type = "value" +tracks/12/imported = false +tracks/12/enabled = true +tracks/12/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Water Hit Layer 2Effect:frame") +tracks/12/interp = 1 +tracks/12/loop_wrap = true +tracks/12/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [51] +} +tracks/13/type = "value" +tracks/13/imported = false +tracks/13/enabled = true +tracks/13/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Curse Hit Effect:animation") +tracks/13/interp = 1 +tracks/13/loop_wrap = true +tracks/13/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"default"] +} +tracks/14/type = "value" +tracks/14/imported = false +tracks/14/enabled = true +tracks/14/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Curse Hit Effect:frame") +tracks/14/interp = 1 +tracks/14/loop_wrap = true +tracks/14/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [47] +} +tracks/15/type = "value" +tracks/15/imported = false +tracks/15/enabled = true +tracks/15/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Earth Hit Effect:animation") +tracks/15/interp = 1 +tracks/15/loop_wrap = true +tracks/15/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"WATER DAMAGE"] +} +tracks/16/type = "value" +tracks/16/imported = false +tracks/16/enabled = true +tracks/16/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Earth Hit Effect:frame") +tracks/16/interp = 1 +tracks/16/loop_wrap = true +tracks/16/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [0] +} + +[sub_resource type="Animation" id="Animation_0tqwp"] +resource_name = "RustActivate" +length = 1.46667 +step = 0.0166667 +tracks/0/type = "value" +tracks/0/imported = false +tracks/0/enabled = true +tracks/0/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Rust Activation Effect:animation") +tracks/0/interp = 1 +tracks/0/loop_wrap = true +tracks/0/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"default"] +} +tracks/1/type = "value" +tracks/1/imported = false +tracks/1/enabled = true +tracks/1/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Rust Activation Effect:frame") +tracks/1/interp = 1 +tracks/1/loop_wrap = true +tracks/1/keys = { +"times": PackedFloat32Array(0, 1.46667), +"transitions": PackedFloat32Array(1, 1), +"update": 0, +"values": [0, 88] +} + +[sub_resource type="Animation" id="Animation_q5dfb"] +resource_name = "WaterHit" +length = 1.7 +tracks/0/type = "value" +tracks/0/imported = false +tracks/0/enabled = true +tracks/0/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Water Hit Layer 1 Effect:animation") +tracks/0/interp = 1 +tracks/0/loop_wrap = true +tracks/0/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"WATER DAMAGE"] +} +tracks/1/type = "value" +tracks/1/imported = false +tracks/1/enabled = true +tracks/1/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Water Hit Layer 1 Effect:frame") +tracks/1/interp = 1 +tracks/1/loop_wrap = true +tracks/1/keys = { +"times": PackedFloat32Array(0, 1), +"transitions": PackedFloat32Array(1, 1), +"update": 0, +"values": [0, 29] +} +tracks/2/type = "value" +tracks/2/imported = false +tracks/2/enabled = true +tracks/2/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Water Hit Layer 2Effect:animation") +tracks/2/interp = 1 +tracks/2/loop_wrap = true +tracks/2/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"WATER"] +} +tracks/3/type = "value" +tracks/3/imported = false +tracks/3/enabled = true +tracks/3/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Water Hit Layer 2Effect:frame") +tracks/3/interp = 1 +tracks/3/loop_wrap = true +tracks/3/keys = { +"times": PackedFloat32Array(0, 1.7), +"transitions": PackedFloat32Array(1, 1), +"update": 0, +"values": [0, 51] +} + +[sub_resource type="Animation" id="Animation_godpv"] +resource_name = "WindHit" +length = 0.833335 +step = 0.0166667 +tracks/0/type = "value" +tracks/0/imported = false +tracks/0/enabled = true +tracks/0/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Wind Hit Layer Effect:animation") +tracks/0/interp = 1 +tracks/0/loop_wrap = true +tracks/0/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"default"] +} +tracks/1/type = "value" +tracks/1/imported = false +tracks/1/enabled = true +tracks/1/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Wind Hit Layer Effect:frame") +tracks/1/interp = 1 +tracks/1/loop_wrap = true +tracks/1/keys = { +"times": PackedFloat32Array(0, 0.833333), +"transitions": PackedFloat32Array(1, 1), +"update": 0, +"values": [0, 50] +} + +[sub_resource type="AnimationLibrary" id="AnimationLibrary_0tqwp"] +_data = { +&"CurseHit": SubResource("Animation_30xy4"), +&"EarthHit": SubResource("Animation_3pm1j"), +&"FireHit": SubResource("Animation_6shfu"), +&"HolyHit": SubResource("Animation_f5cjs"), +&"RESET": SubResource("Animation_cftgd"), +&"RustActivate": SubResource("Animation_0tqwp"), +&"WaterHit": SubResource("Animation_q5dfb"), +&"WindHit": SubResource("Animation_godpv") +} + [node name="EnemyModelView" type="Node3D"] script = ExtResource("1_oh25a") EnemyLoreInfo = SubResource("Resource_ivy74") @@ -695,6 +3859,60 @@ position = Vector2(400, 400) sprite_frames = SubResource("SpriteFrames_6drt6") animation = &"idle_left_walk" +[node name="VFXSprites" type="Node2D" parent="Sprite3D/SubViewportContainer/SubViewport"] + +[node name="Rust Activation Effect" type="AnimatedSprite2D" parent="Sprite3D/SubViewportContainer/SubViewport/VFXSprites"] +position = Vector2(400, 400) +scale = Vector2(1.54, 1.54) +sprite_frames = SubResource("SpriteFrames_dfvqa") +frame = 88 + +[node name="Holy Hit Layer Effect" type="AnimatedSprite2D" parent="Sprite3D/SubViewportContainer/SubViewport/VFXSprites"] +position = Vector2(400, 400) +scale = Vector2(0.675, 0.675) +sprite_frames = SubResource("SpriteFrames_dnvt3") +animation = &"HOLY" + +[node name="Wind Hit Layer Effect" type="AnimatedSprite2D" parent="Sprite3D/SubViewportContainer/SubViewport/VFXSprites"] +position = Vector2(400, 400) +scale = Vector2(1.445, 1.445) +sprite_frames = SubResource("SpriteFrames_m7aft") +frame = 50 + +[node name="Flame Hit Effect" type="AnimatedSprite2D" parent="Sprite3D/SubViewportContainer/SubViewport/VFXSprites"] +position = Vector2(400, 400) +scale = Vector2(3.445, 3.445) +sprite_frames = SubResource("SpriteFrames_at0w8") +animation = &"Flame Damage" +frame = 40 + +[node name="Water Hit Layer 1 Effect" type="AnimatedSprite2D" parent="Sprite3D/SubViewportContainer/SubViewport/VFXSprites"] +position = Vector2(400, 400) +scale = Vector2(2.215, 2.215) +sprite_frames = SubResource("SpriteFrames_afod7") +animation = &"WATER DAMAGE" +frame = 29 + +[node name="Water Hit Layer 2Effect" type="AnimatedSprite2D" parent="Sprite3D/SubViewportContainer/SubViewport/VFXSprites"] +position = Vector2(400, 400) +scale = Vector2(1.105, 0.895) +sprite_frames = SubResource("SpriteFrames_dwhw7") +animation = &"WATER" +frame = 51 + +[node name="Curse Hit Effect" type="AnimatedSprite2D" parent="Sprite3D/SubViewportContainer/SubViewport/VFXSprites"] +texture_filter = 1 +position = Vector2(400, 400) +scale = Vector2(2.78, 2.78) +sprite_frames = SubResource("SpriteFrames_qjloj") +frame = 47 + +[node name="Earth Hit Effect" type="AnimatedSprite2D" parent="Sprite3D/SubViewportContainer/SubViewport/VFXSprites"] +position = Vector2(400, 400) +scale = Vector2(2.005, 2.005) +sprite_frames = SubResource("SpriteFrames_afod7") +animation = &"WATER DAMAGE" + [node name="Hitbox" type="Area3D" parent="."] unique_name_in_owner = true transform = Transform3D(-1, 0, -8.74228e-08, 0, 1, 0, 8.74228e-08, 0, -1, -0.152949, 2.05501, 0) @@ -732,3 +3950,51 @@ transparency = 0.1 cast_shadow = 0 texture_filter = 0 texture = ExtResource("61_djeua") + +[node name="VFXAnimations" type="Node" parent="."] + +[node name="FlameHitAnimation" type="AnimationPlayer" parent="VFXAnimations"] +unique_name_in_owner = true +libraries = { +&"": SubResource("AnimationLibrary_0tqwp") +} + +[node name="RustHitAnimation" type="AnimationPlayer" parent="VFXAnimations"] +unique_name_in_owner = true +libraries = { +&"": SubResource("AnimationLibrary_0tqwp") +} + +[node name="HolyHitAnimation" type="AnimationPlayer" parent="VFXAnimations"] +unique_name_in_owner = true +libraries = { +&"": SubResource("AnimationLibrary_0tqwp") +} + +[node name="WindHitAnimation" type="AnimationPlayer" parent="VFXAnimations"] +unique_name_in_owner = true +root_node = NodePath("../../Secondary Animation Player") +libraries = { +&"": SubResource("AnimationLibrary_0tqwp") +} + +[node name="WaterHitAnimation" type="AnimationPlayer" parent="VFXAnimations"] +unique_name_in_owner = true +root_node = NodePath("../../Secondary Animation Player") +libraries = { +&"": SubResource("AnimationLibrary_0tqwp") +} + +[node name="CurseHitAnimation" type="AnimationPlayer" parent="VFXAnimations"] +unique_name_in_owner = true +root_node = NodePath("../../Secondary Animation Player") +libraries = { +&"": SubResource("AnimationLibrary_0tqwp") +} + +[node name="EarthHitAnimation" type="AnimationPlayer" parent="VFXAnimations"] +unique_name_in_owner = true +root_node = NodePath("../../Secondary Animation Player") +libraries = { +&"": SubResource("AnimationLibrary_0tqwp") +} diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/02. michael/MichaelModelView.tscn b/Zennysoft.Game.Ma/src/enemy/enemy_types/02. michael/MichaelModelView.tscn index 025cd7c7..e8ed7acf 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/02. michael/MichaelModelView.tscn +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/02. michael/MichaelModelView.tscn @@ -1,4 +1,4 @@ -[gd_scene load_steps=142 format=3 uid="uid://uqle8gaeajg6"] +[gd_scene load_steps=537 format=3 uid="uid://uqle8gaeajg6"] [ext_resource type="Script" uid="uid://cvr1qimxpignl" path="res://src/enemy/EnemyModelView2D.cs" id="1_o4cc2"] [ext_resource type="Script" uid="uid://dlsgyx4i1jmp3" path="res://src/enemy/EnemyLoreInfo.cs" id="2_3eot4"] @@ -71,11 +71,19 @@ [ext_resource type="Texture2D" uid="uid://vxphbifafq0q" path="res://src/enemy/enemy_types/02. michael/animations/IDLE_WALK/LEFT SIDE/Michael_IdleWalk_Left (21).png" id="68_msiau"] [ext_resource type="Texture2D" uid="uid://7r30bjydumon" path="res://src/enemy/enemy_types/02. michael/animations/IDLE_WALK/LEFT SIDE/Michael_IdleWalk_Left (22).png" id="69_lec8c"] [ext_resource type="Texture2D" uid="uid://djspx2smexhme" path="res://src/enemy/enemy_types/02. michael/animations/IDLE_WALK/LEFT SIDE/Michael_IdleWalk_Left (23).png" id="70_f0jo7"] +[ext_resource type="Texture2D" uid="uid://dq70aipwl1qrg" path="res://src/vfx/Enemy Affected/Rust Particles.png" id="72_kl32b"] [ext_resource type="PackedScene" uid="uid://cygwsc1gebeut" path="res://src/enemy/BasicEnemyAnimationTree.tscn" id="73_gby04"] +[ext_resource type="Texture2D" uid="uid://by0ehygy7bq13" path="res://src/vfx/Enemy Affected/Holy Damage.png" id="73_pqohf"] +[ext_resource type="Texture2D" uid="uid://dqqhu0s51o3n7" path="res://src/vfx/Enemy Affected/Wind Damage.png" id="74_fc6qk"] [ext_resource type="AnimationNodeStateMachine" uid="uid://cbq8xog50cjjy" path="res://src/enemy/animation_state_machines/PrimaryAttackStateMachine.tres" id="74_fxhv6"] [ext_resource type="Texture2D" uid="uid://duygq1qfer5oa" path="res://src/vfx/Enemy/michael_attack.png" id="74_mip6u"] [ext_resource type="AnimationNodeStateMachine" uid="uid://co7lshemjrro8" path="res://src/enemy/animation_state_machines/IdleStateMachine.tres" id="74_pxi1p"] +[ext_resource type="Texture2D" uid="uid://dh6mk1c35nymx" path="res://src/vfx/Enemy Affected/firedamage.png" id="75_mb8wm"] +[ext_resource type="Texture2D" uid="uid://7a42df2ijrmv" path="res://src/vfx/Enemy Affected/earth damage.png" id="76_8r7p0"] [ext_resource type="Texture2D" uid="uid://dafpnwkwcukp4" path="res://src/vfx/shadow_test_1.png" id="76_fxhv6"] +[ext_resource type="Texture2D" uid="uid://cot4wx5fg5pfs" path="res://src/vfx/Enemy Affected/water_hit_layer2.png" id="77_474v3"] +[ext_resource type="Texture2D" uid="uid://cbei66g134fgv" path="res://src/vfx/Enemy Affected/water layer 1.png" id="78_x7lnp"] +[ext_resource type="Texture2D" uid="uid://bp6npqoco5fl3" path="res://src/vfx/Enemy Affected/curse_damage.png" id="79_dta0t"] [sub_resource type="Resource" id="Resource_gby04"] script = ExtResource("2_3eot4") @@ -320,6 +328,2685 @@ animations = [{ "speed": 12.0 }] +[sub_resource type="AtlasTexture" id="AtlasTexture_4o5f2"] +atlas = ExtResource("72_kl32b") +region = Rect2(1206, 402, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r8ggx"] +atlas = ExtResource("72_kl32b") +region = Rect2(1340, 402, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xafpd"] +atlas = ExtResource("72_kl32b") +region = Rect2(1474, 402, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_73dpc"] +atlas = ExtResource("72_kl32b") +region = Rect2(0, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vppxt"] +atlas = ExtResource("72_kl32b") +region = Rect2(134, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nk562"] +atlas = ExtResource("72_kl32b") +region = Rect2(268, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dwu2q"] +atlas = ExtResource("72_kl32b") +region = Rect2(402, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w3p3j"] +atlas = ExtResource("72_kl32b") +region = Rect2(536, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ig0ip"] +atlas = ExtResource("72_kl32b") +region = Rect2(670, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r4enw"] +atlas = ExtResource("72_kl32b") +region = Rect2(804, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uy6hg"] +atlas = ExtResource("72_kl32b") +region = Rect2(938, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_85jwg"] +atlas = ExtResource("72_kl32b") +region = Rect2(1072, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ln7dl"] +atlas = ExtResource("72_kl32b") +region = Rect2(1206, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3vvgp"] +atlas = ExtResource("72_kl32b") +region = Rect2(1340, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_01f7m"] +atlas = ExtResource("72_kl32b") +region = Rect2(1474, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pp21u"] +atlas = ExtResource("72_kl32b") +region = Rect2(0, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1aldj"] +atlas = ExtResource("72_kl32b") +region = Rect2(134, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xv5pw"] +atlas = ExtResource("72_kl32b") +region = Rect2(268, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_14lh3"] +atlas = ExtResource("72_kl32b") +region = Rect2(402, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xxid6"] +atlas = ExtResource("72_kl32b") +region = Rect2(536, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y6yeo"] +atlas = ExtResource("72_kl32b") +region = Rect2(670, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2aohu"] +atlas = ExtResource("72_kl32b") +region = Rect2(804, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ebvc7"] +atlas = ExtResource("72_kl32b") +region = Rect2(938, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yd50d"] +atlas = ExtResource("72_kl32b") +region = Rect2(1072, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yimdu"] +atlas = ExtResource("72_kl32b") +region = Rect2(1206, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dync1"] +atlas = ExtResource("72_kl32b") +region = Rect2(1340, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jsjdk"] +atlas = ExtResource("72_kl32b") +region = Rect2(1474, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ueih5"] +atlas = ExtResource("72_kl32b") +region = Rect2(0, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k0hut"] +atlas = ExtResource("72_kl32b") +region = Rect2(134, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kybji"] +atlas = ExtResource("72_kl32b") +region = Rect2(268, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u5vpt"] +atlas = ExtResource("72_kl32b") +region = Rect2(402, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wko4t"] +atlas = ExtResource("72_kl32b") +region = Rect2(536, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ru86o"] +atlas = ExtResource("72_kl32b") +region = Rect2(670, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uybbj"] +atlas = ExtResource("72_kl32b") +region = Rect2(804, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s6pp8"] +atlas = ExtResource("72_kl32b") +region = Rect2(938, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a7pls"] +atlas = ExtResource("72_kl32b") +region = Rect2(1072, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_30y71"] +atlas = ExtResource("72_kl32b") +region = Rect2(1206, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dwl1c"] +atlas = ExtResource("72_kl32b") +region = Rect2(1340, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_01jp4"] +atlas = ExtResource("72_kl32b") +region = Rect2(1474, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b8ulh"] +atlas = ExtResource("72_kl32b") +region = Rect2(0, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3walv"] +atlas = ExtResource("72_kl32b") +region = Rect2(134, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_exyoj"] +atlas = ExtResource("72_kl32b") +region = Rect2(268, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kus54"] +atlas = ExtResource("72_kl32b") +region = Rect2(402, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_meauc"] +atlas = ExtResource("72_kl32b") +region = Rect2(536, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7v7xr"] +atlas = ExtResource("72_kl32b") +region = Rect2(670, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4ktea"] +atlas = ExtResource("72_kl32b") +region = Rect2(804, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l8oa1"] +atlas = ExtResource("72_kl32b") +region = Rect2(938, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3eopa"] +atlas = ExtResource("72_kl32b") +region = Rect2(1072, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ip8hv"] +atlas = ExtResource("72_kl32b") +region = Rect2(1206, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_42rbq"] +atlas = ExtResource("72_kl32b") +region = Rect2(1340, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tu0vu"] +atlas = ExtResource("72_kl32b") +region = Rect2(1474, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gbh7l"] +atlas = ExtResource("72_kl32b") +region = Rect2(0, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_733jx"] +atlas = ExtResource("72_kl32b") +region = Rect2(134, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sfa2q"] +atlas = ExtResource("72_kl32b") +region = Rect2(268, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o0nvo"] +atlas = ExtResource("72_kl32b") +region = Rect2(402, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1mv1w"] +atlas = ExtResource("72_kl32b") +region = Rect2(536, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yw8ob"] +atlas = ExtResource("72_kl32b") +region = Rect2(670, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ptkbd"] +atlas = ExtResource("72_kl32b") +region = Rect2(804, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2uoiw"] +atlas = ExtResource("72_kl32b") +region = Rect2(938, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4m684"] +atlas = ExtResource("72_kl32b") +region = Rect2(1072, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_st6fj"] +atlas = ExtResource("72_kl32b") +region = Rect2(1206, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1wana"] +atlas = ExtResource("72_kl32b") +region = Rect2(1340, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ati4e"] +atlas = ExtResource("72_kl32b") +region = Rect2(1474, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0w31q"] +atlas = ExtResource("72_kl32b") +region = Rect2(0, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uxu33"] +atlas = ExtResource("72_kl32b") +region = Rect2(134, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2ulnd"] +atlas = ExtResource("72_kl32b") +region = Rect2(268, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ddsrn"] +atlas = ExtResource("72_kl32b") +region = Rect2(402, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n1e5w"] +atlas = ExtResource("72_kl32b") +region = Rect2(536, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f4aq5"] +atlas = ExtResource("72_kl32b") +region = Rect2(670, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_er00h"] +atlas = ExtResource("72_kl32b") +region = Rect2(804, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mlf5c"] +atlas = ExtResource("72_kl32b") +region = Rect2(938, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c362w"] +atlas = ExtResource("72_kl32b") +region = Rect2(1072, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_30wb7"] +atlas = ExtResource("72_kl32b") +region = Rect2(1206, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_stb0b"] +atlas = ExtResource("72_kl32b") +region = Rect2(1340, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a64qf"] +atlas = ExtResource("72_kl32b") +region = Rect2(1474, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_52bkw"] +atlas = ExtResource("72_kl32b") +region = Rect2(0, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y0yvc"] +atlas = ExtResource("72_kl32b") +region = Rect2(134, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5h2xe"] +atlas = ExtResource("72_kl32b") +region = Rect2(268, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6hh33"] +atlas = ExtResource("72_kl32b") +region = Rect2(402, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kmk3m"] +atlas = ExtResource("72_kl32b") +region = Rect2(536, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rbtmh"] +atlas = ExtResource("72_kl32b") +region = Rect2(670, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bit6n"] +atlas = ExtResource("72_kl32b") +region = Rect2(804, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_458hw"] +atlas = ExtResource("72_kl32b") +region = Rect2(938, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4x2ea"] +atlas = ExtResource("72_kl32b") +region = Rect2(1072, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bcljt"] +atlas = ExtResource("72_kl32b") +region = Rect2(1206, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p6e34"] +atlas = ExtResource("72_kl32b") +region = Rect2(1340, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2yfi0"] +atlas = ExtResource("72_kl32b") +region = Rect2(1474, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bhoxy"] +atlas = ExtResource("72_kl32b") +region = Rect2(0, 1474, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_41wyx"] +atlas = ExtResource("72_kl32b") +region = Rect2(134, 1474, 134, 134) + +[sub_resource type="SpriteFrames" id="SpriteFrames_0gqb2"] +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("73_pqohf") +region = Rect2(1024, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pvn2l"] +atlas = ExtResource("73_pqohf") +region = Rect2(1536, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sctov"] +atlas = ExtResource("73_pqohf") +region = Rect2(2048, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_46bwa"] +atlas = ExtResource("73_pqohf") +region = Rect2(2560, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o42jv"] +atlas = ExtResource("73_pqohf") +region = Rect2(3072, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5dqsk"] +atlas = ExtResource("73_pqohf") +region = Rect2(3584, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_35l4k"] +atlas = ExtResource("73_pqohf") +region = Rect2(4096, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x0jfm"] +atlas = ExtResource("73_pqohf") +region = Rect2(4608, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fk16r"] +atlas = ExtResource("73_pqohf") +region = Rect2(5120, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ewtdr"] +atlas = ExtResource("73_pqohf") +region = Rect2(5632, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bul51"] +atlas = ExtResource("73_pqohf") +region = Rect2(6144, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vbobf"] +atlas = ExtResource("73_pqohf") +region = Rect2(6656, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_itqlk"] +atlas = ExtResource("73_pqohf") +region = Rect2(7168, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_41jjh"] +atlas = ExtResource("73_pqohf") +region = Rect2(7680, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kol03"] +atlas = ExtResource("73_pqohf") +region = Rect2(0, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ynyxy"] +atlas = ExtResource("73_pqohf") +region = Rect2(512, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ngcxk"] +atlas = ExtResource("73_pqohf") +region = Rect2(1024, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ba8fa"] +atlas = ExtResource("73_pqohf") +region = Rect2(1536, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ngitf"] +atlas = ExtResource("73_pqohf") +region = Rect2(2048, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_boovf"] +atlas = ExtResource("73_pqohf") +region = Rect2(2560, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jwkhr"] +atlas = ExtResource("73_pqohf") +region = Rect2(3072, 512, 512, 512) + +[sub_resource type="SpriteFrames" id="SpriteFrames_u6geb"] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": null +}, { +"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("74_fc6qk") +region = Rect2(0, 0, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3jmy8"] +atlas = ExtResource("74_fc6qk") +region = Rect2(266, 0, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t76hk"] +atlas = ExtResource("74_fc6qk") +region = Rect2(532, 0, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_06gff"] +atlas = ExtResource("74_fc6qk") +region = Rect2(798, 0, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ssjgs"] +atlas = ExtResource("74_fc6qk") +region = Rect2(1064, 0, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_53u6k"] +atlas = ExtResource("74_fc6qk") +region = Rect2(0, 131, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_inmu7"] +atlas = ExtResource("74_fc6qk") +region = Rect2(266, 131, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bmkvg"] +atlas = ExtResource("74_fc6qk") +region = Rect2(532, 131, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oqdmj"] +atlas = ExtResource("74_fc6qk") +region = Rect2(798, 131, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bnn41"] +atlas = ExtResource("74_fc6qk") +region = Rect2(1064, 131, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p6hmn"] +atlas = ExtResource("74_fc6qk") +region = Rect2(0, 262, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s0ybe"] +atlas = ExtResource("74_fc6qk") +region = Rect2(266, 262, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y2273"] +atlas = ExtResource("74_fc6qk") +region = Rect2(532, 262, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2i87r"] +atlas = ExtResource("74_fc6qk") +region = Rect2(798, 262, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4q8o2"] +atlas = ExtResource("74_fc6qk") +region = Rect2(1064, 262, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_esxmc"] +atlas = ExtResource("74_fc6qk") +region = Rect2(0, 393, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rdsur"] +atlas = ExtResource("74_fc6qk") +region = Rect2(266, 393, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b2qt4"] +atlas = ExtResource("74_fc6qk") +region = Rect2(532, 393, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xamrr"] +atlas = ExtResource("74_fc6qk") +region = Rect2(798, 393, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0prqh"] +atlas = ExtResource("74_fc6qk") +region = Rect2(1064, 393, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dh1oc"] +atlas = ExtResource("74_fc6qk") +region = Rect2(0, 524, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ybb1w"] +atlas = ExtResource("74_fc6qk") +region = Rect2(266, 524, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2nkua"] +atlas = ExtResource("74_fc6qk") +region = Rect2(532, 524, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2gocr"] +atlas = ExtResource("74_fc6qk") +region = Rect2(798, 524, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_acsou"] +atlas = ExtResource("74_fc6qk") +region = Rect2(1064, 524, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yflou"] +atlas = ExtResource("74_fc6qk") +region = Rect2(0, 655, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_env3c"] +atlas = ExtResource("74_fc6qk") +region = Rect2(266, 655, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_74f4l"] +atlas = ExtResource("74_fc6qk") +region = Rect2(532, 655, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cbaq7"] +atlas = ExtResource("74_fc6qk") +region = Rect2(798, 655, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bc4hh"] +atlas = ExtResource("74_fc6qk") +region = Rect2(1064, 655, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5m27y"] +atlas = ExtResource("74_fc6qk") +region = Rect2(0, 786, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c2vig"] +atlas = ExtResource("74_fc6qk") +region = Rect2(266, 786, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h8qbh"] +atlas = ExtResource("74_fc6qk") +region = Rect2(532, 786, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vj2ia"] +atlas = ExtResource("74_fc6qk") +region = Rect2(798, 786, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h0bv3"] +atlas = ExtResource("74_fc6qk") +region = Rect2(1064, 786, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3xb07"] +atlas = ExtResource("74_fc6qk") +region = Rect2(0, 917, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p845e"] +atlas = ExtResource("74_fc6qk") +region = Rect2(266, 917, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nm575"] +atlas = ExtResource("74_fc6qk") +region = Rect2(532, 917, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8wvvt"] +atlas = ExtResource("74_fc6qk") +region = Rect2(798, 917, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2l45l"] +atlas = ExtResource("74_fc6qk") +region = Rect2(1064, 917, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0c6u7"] +atlas = ExtResource("74_fc6qk") +region = Rect2(0, 1048, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bo1qh"] +atlas = ExtResource("74_fc6qk") +region = Rect2(266, 1048, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4cq22"] +atlas = ExtResource("74_fc6qk") +region = Rect2(532, 1048, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d6auk"] +atlas = ExtResource("74_fc6qk") +region = Rect2(798, 1048, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4bvg3"] +atlas = ExtResource("74_fc6qk") +region = Rect2(1064, 1048, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rps4p"] +atlas = ExtResource("74_fc6qk") +region = Rect2(0, 1179, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qdy2n"] +atlas = ExtResource("74_fc6qk") +region = Rect2(266, 1179, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a63dt"] +atlas = ExtResource("74_fc6qk") +region = Rect2(532, 1179, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3alol"] +atlas = ExtResource("74_fc6qk") +region = Rect2(798, 1179, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w5y4o"] +atlas = ExtResource("74_fc6qk") +region = Rect2(1064, 1179, 133, 131) + +[sub_resource type="SpriteFrames" id="SpriteFrames_qe6vs"] +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("75_mb8wm") +region = Rect2(200, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w5yum"] +atlas = ExtResource("75_mb8wm") +region = Rect2(600, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xagiq"] +atlas = ExtResource("75_mb8wm") +region = Rect2(1000, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iu4h2"] +atlas = ExtResource("75_mb8wm") +region = Rect2(100, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t6kmk"] +atlas = ExtResource("75_mb8wm") +region = Rect2(500, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c3c22"] +atlas = ExtResource("75_mb8wm") +region = Rect2(900, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_udm06"] +atlas = ExtResource("75_mb8wm") +region = Rect2(0, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_31shi"] +atlas = ExtResource("75_mb8wm") +region = Rect2(400, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i6wsf"] +atlas = ExtResource("75_mb8wm") +region = Rect2(800, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jhluk"] +atlas = ExtResource("75_mb8wm") +region = Rect2(1200, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_exq74"] +atlas = ExtResource("75_mb8wm") +region = Rect2(300, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k7tc1"] +atlas = ExtResource("75_mb8wm") +region = Rect2(700, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_456io"] +atlas = ExtResource("75_mb8wm") +region = Rect2(1100, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2h7ac"] +atlas = ExtResource("75_mb8wm") +region = Rect2(200, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dy5lo"] +atlas = ExtResource("75_mb8wm") +region = Rect2(500, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_biyyn"] +atlas = ExtResource("75_mb8wm") +region = Rect2(1000, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_flqm1"] +atlas = ExtResource("75_mb8wm") +region = Rect2(100, 500, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xttn8"] +atlas = ExtResource("75_mb8wm") +region = Rect2(500, 500, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_85rsb"] +atlas = ExtResource("75_mb8wm") +region = Rect2(900, 500, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oxqm1"] +atlas = ExtResource("75_mb8wm") +region = Rect2(0, 600, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dphle"] +atlas = ExtResource("75_mb8wm") +region = Rect2(400, 600, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_48bul"] +atlas = ExtResource("75_mb8wm") +region = Rect2(800, 600, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2d6tt"] +atlas = ExtResource("75_mb8wm") +region = Rect2(1200, 600, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ty41g"] +atlas = ExtResource("75_mb8wm") +region = Rect2(300, 700, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c5uyp"] +atlas = ExtResource("75_mb8wm") +region = Rect2(700, 700, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tf4dl"] +atlas = ExtResource("75_mb8wm") +region = Rect2(1100, 700, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cvdlu"] +atlas = ExtResource("75_mb8wm") +region = Rect2(200, 800, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f25l1"] +atlas = ExtResource("75_mb8wm") +region = Rect2(600, 800, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v033q"] +atlas = ExtResource("75_mb8wm") +region = Rect2(1000, 800, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xgfkn"] +atlas = ExtResource("75_mb8wm") +region = Rect2(100, 900, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_duxfd"] +atlas = ExtResource("75_mb8wm") +region = Rect2(500, 900, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5uvt0"] +atlas = ExtResource("75_mb8wm") +region = Rect2(900, 900, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7d05g"] +atlas = ExtResource("75_mb8wm") +region = Rect2(0, 1000, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x0ube"] +atlas = ExtResource("75_mb8wm") +region = Rect2(400, 1000, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_15y07"] +atlas = ExtResource("75_mb8wm") +region = Rect2(800, 1000, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_de0po"] +atlas = ExtResource("75_mb8wm") +region = Rect2(1200, 1000, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b3rtc"] +atlas = ExtResource("75_mb8wm") +region = Rect2(300, 1100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q32lt"] +atlas = ExtResource("75_mb8wm") +region = Rect2(700, 1100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_88hqh"] +atlas = ExtResource("75_mb8wm") +region = Rect2(1100, 1100, 100, 100) + +[sub_resource type="SpriteFrames" id="SpriteFrames_k0kt8"] +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("76_8r7p0") +region = Rect2(0, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0rj30"] +atlas = ExtResource("76_8r7p0") +region = Rect2(200, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ug1a1"] +atlas = ExtResource("76_8r7p0") +region = Rect2(400, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8eees"] +atlas = ExtResource("76_8r7p0") +region = Rect2(600, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k2i7i"] +atlas = ExtResource("76_8r7p0") +region = Rect2(800, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4wwo5"] +atlas = ExtResource("76_8r7p0") +region = Rect2(0, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_418m2"] +atlas = ExtResource("76_8r7p0") +region = Rect2(200, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6g5qj"] +atlas = ExtResource("76_8r7p0") +region = Rect2(400, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k3sey"] +atlas = ExtResource("76_8r7p0") +region = Rect2(600, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ms40v"] +atlas = ExtResource("76_8r7p0") +region = Rect2(800, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2tfej"] +atlas = ExtResource("76_8r7p0") +region = Rect2(0, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_woj7f"] +atlas = ExtResource("76_8r7p0") +region = Rect2(200, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kg861"] +atlas = ExtResource("76_8r7p0") +region = Rect2(400, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jtxxp"] +atlas = ExtResource("76_8r7p0") +region = Rect2(600, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sxooa"] +atlas = ExtResource("76_8r7p0") +region = Rect2(800, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hkj2y"] +atlas = ExtResource("76_8r7p0") +region = Rect2(0, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wm40h"] +atlas = ExtResource("76_8r7p0") +region = Rect2(200, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u66v8"] +atlas = ExtResource("76_8r7p0") +region = Rect2(400, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6ip85"] +atlas = ExtResource("76_8r7p0") +region = Rect2(600, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qad2i"] +atlas = ExtResource("76_8r7p0") +region = Rect2(800, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nifqu"] +atlas = ExtResource("76_8r7p0") +region = Rect2(0, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_goocc"] +atlas = ExtResource("76_8r7p0") +region = Rect2(200, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l78ua"] +atlas = ExtResource("76_8r7p0") +region = Rect2(400, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ybqlc"] +atlas = ExtResource("76_8r7p0") +region = Rect2(600, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d0lry"] +atlas = ExtResource("76_8r7p0") +region = Rect2(800, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ccb2v"] +atlas = ExtResource("76_8r7p0") +region = Rect2(0, 500, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dcp7h"] +atlas = ExtResource("76_8r7p0") +region = Rect2(200, 500, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3kud6"] +atlas = ExtResource("76_8r7p0") +region = Rect2(400, 500, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0tvc2"] +atlas = ExtResource("76_8r7p0") +region = Rect2(600, 500, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g5aky"] +atlas = ExtResource("76_8r7p0") +region = Rect2(800, 500, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nyc7u"] +atlas = ExtResource("76_8r7p0") +region = Rect2(0, 600, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q1yeq"] +atlas = ExtResource("76_8r7p0") +region = Rect2(200, 600, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pupfb"] +atlas = ExtResource("76_8r7p0") +region = Rect2(400, 600, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gfe8c"] +atlas = ExtResource("76_8r7p0") +region = Rect2(600, 600, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_76bl1"] +atlas = ExtResource("76_8r7p0") +region = Rect2(800, 600, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u7frn"] +atlas = ExtResource("76_8r7p0") +region = Rect2(0, 700, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ls3an"] +atlas = ExtResource("76_8r7p0") +region = Rect2(200, 700, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4l6e0"] +atlas = ExtResource("76_8r7p0") +region = Rect2(400, 700, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cvlbl"] +atlas = ExtResource("76_8r7p0") +region = Rect2(600, 700, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jkvpv"] +atlas = ExtResource("76_8r7p0") +region = Rect2(800, 700, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lpp7o"] +atlas = ExtResource("76_8r7p0") +region = Rect2(0, 800, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v8igx"] +atlas = ExtResource("76_8r7p0") +region = Rect2(200, 800, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mmm0q"] +atlas = ExtResource("76_8r7p0") +region = Rect2(400, 800, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5ukt7"] +atlas = ExtResource("76_8r7p0") +region = Rect2(600, 800, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0pkd7"] +atlas = ExtResource("76_8r7p0") +region = Rect2(800, 800, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n85t7"] +atlas = ExtResource("77_474v3") +region = Rect2(0, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nb4v4"] +atlas = ExtResource("77_474v3") +region = Rect2(100, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cl00x"] +atlas = ExtResource("77_474v3") +region = Rect2(200, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ufcsw"] +atlas = ExtResource("77_474v3") +region = Rect2(300, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aoisp"] +atlas = ExtResource("77_474v3") +region = Rect2(400, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3rkdy"] +atlas = ExtResource("77_474v3") +region = Rect2(500, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o0dym"] +atlas = ExtResource("77_474v3") +region = Rect2(0, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vxihx"] +atlas = ExtResource("77_474v3") +region = Rect2(100, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ofpmt"] +atlas = ExtResource("77_474v3") +region = Rect2(200, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ux0ir"] +atlas = ExtResource("77_474v3") +region = Rect2(300, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8dgch"] +atlas = ExtResource("77_474v3") +region = Rect2(400, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7ixin"] +atlas = ExtResource("77_474v3") +region = Rect2(500, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2kea0"] +atlas = ExtResource("77_474v3") +region = Rect2(0, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kgnps"] +atlas = ExtResource("77_474v3") +region = Rect2(100, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g2wgu"] +atlas = ExtResource("77_474v3") +region = Rect2(200, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0oosk"] +atlas = ExtResource("77_474v3") +region = Rect2(300, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_80k2g"] +atlas = ExtResource("77_474v3") +region = Rect2(400, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fskx7"] +atlas = ExtResource("77_474v3") +region = Rect2(500, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_no3pe"] +atlas = ExtResource("77_474v3") +region = Rect2(0, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_15fnm"] +atlas = ExtResource("77_474v3") +region = Rect2(100, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r5e73"] +atlas = ExtResource("77_474v3") +region = Rect2(200, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2im8t"] +atlas = ExtResource("77_474v3") +region = Rect2(300, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mxl2m"] +atlas = ExtResource("77_474v3") +region = Rect2(400, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6dwuh"] +atlas = ExtResource("77_474v3") +region = Rect2(500, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_53c1f"] +atlas = ExtResource("77_474v3") +region = Rect2(0, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mmbhy"] +atlas = ExtResource("77_474v3") +region = Rect2(100, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uwbh3"] +atlas = ExtResource("77_474v3") +region = Rect2(200, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j6v2y"] +atlas = ExtResource("77_474v3") +region = Rect2(300, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h5xbu"] +atlas = ExtResource("77_474v3") +region = Rect2(400, 400, 100, 100) + +[sub_resource type="SpriteFrames" id="SpriteFrames_kp6q4"] +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("78_x7lnp") +region = Rect2(875, 452, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ekrqp"] +atlas = ExtResource("78_x7lnp") +region = Rect2(1050, 452, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dvnic"] +atlas = ExtResource("78_x7lnp") +region = Rect2(1225, 452, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rxdv7"] +atlas = ExtResource("78_x7lnp") +region = Rect2(1400, 452, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0pvcp"] +atlas = ExtResource("78_x7lnp") +region = Rect2(0, 678, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yga3t"] +atlas = ExtResource("78_x7lnp") +region = Rect2(175, 678, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c6qrx"] +atlas = ExtResource("78_x7lnp") +region = Rect2(350, 678, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fkryw"] +atlas = ExtResource("78_x7lnp") +region = Rect2(525, 678, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jt7jg"] +atlas = ExtResource("78_x7lnp") +region = Rect2(700, 678, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6eyjl"] +atlas = ExtResource("78_x7lnp") +region = Rect2(875, 678, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tsolq"] +atlas = ExtResource("78_x7lnp") +region = Rect2(1050, 678, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_opqal"] +atlas = ExtResource("78_x7lnp") +region = Rect2(1225, 678, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kia47"] +atlas = ExtResource("78_x7lnp") +region = Rect2(1400, 678, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6aolf"] +atlas = ExtResource("78_x7lnp") +region = Rect2(0, 904, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g6jok"] +atlas = ExtResource("78_x7lnp") +region = Rect2(175, 904, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_swdkn"] +atlas = ExtResource("78_x7lnp") +region = Rect2(350, 904, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_edlre"] +atlas = ExtResource("78_x7lnp") +region = Rect2(525, 904, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gbj32"] +atlas = ExtResource("78_x7lnp") +region = Rect2(700, 904, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bstol"] +atlas = ExtResource("78_x7lnp") +region = Rect2(875, 904, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_57vey"] +atlas = ExtResource("78_x7lnp") +region = Rect2(1050, 904, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_31ikn"] +atlas = ExtResource("78_x7lnp") +region = Rect2(1225, 904, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e1yxa"] +atlas = ExtResource("78_x7lnp") +region = Rect2(1400, 904, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7a7ks"] +atlas = ExtResource("78_x7lnp") +region = Rect2(0, 1130, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p2hq6"] +atlas = ExtResource("78_x7lnp") +region = Rect2(175, 1130, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k3fbj"] +atlas = ExtResource("78_x7lnp") +region = Rect2(350, 1130, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ylav8"] +atlas = ExtResource("78_x7lnp") +region = Rect2(525, 1130, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xhgk2"] +atlas = ExtResource("78_x7lnp") +region = Rect2(700, 1130, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_diucy"] +atlas = ExtResource("78_x7lnp") +region = Rect2(875, 1130, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8gw5n"] +atlas = ExtResource("78_x7lnp") +region = Rect2(1050, 1130, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hc5wr"] +atlas = ExtResource("78_x7lnp") +region = Rect2(1225, 1130, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fugdi"] +atlas = ExtResource("78_x7lnp") +region = Rect2(1400, 1130, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h222i"] +atlas = ExtResource("78_x7lnp") +region = Rect2(0, 1356, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7qa4p"] +atlas = ExtResource("78_x7lnp") +region = Rect2(175, 1356, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jbavk"] +atlas = ExtResource("78_x7lnp") +region = Rect2(350, 1356, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ncorq"] +atlas = ExtResource("78_x7lnp") +region = Rect2(525, 1356, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mdvft"] +atlas = ExtResource("78_x7lnp") +region = Rect2(700, 1356, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ljrf5"] +atlas = ExtResource("78_x7lnp") +region = Rect2(875, 1356, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r7ll6"] +atlas = ExtResource("78_x7lnp") +region = Rect2(1050, 1356, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6vssn"] +atlas = ExtResource("78_x7lnp") +region = Rect2(1225, 1356, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4lr8r"] +atlas = ExtResource("78_x7lnp") +region = Rect2(1400, 1356, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xp4kq"] +atlas = ExtResource("78_x7lnp") +region = Rect2(0, 1582, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_idymv"] +atlas = ExtResource("78_x7lnp") +region = Rect2(175, 1582, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ujl1x"] +atlas = ExtResource("78_x7lnp") +region = Rect2(350, 1582, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_37wgc"] +atlas = ExtResource("78_x7lnp") +region = Rect2(525, 1582, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g5fso"] +atlas = ExtResource("78_x7lnp") +region = Rect2(700, 1582, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4a47d"] +atlas = ExtResource("78_x7lnp") +region = Rect2(875, 1582, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eh3iw"] +atlas = ExtResource("78_x7lnp") +region = Rect2(1050, 1582, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jc54a"] +atlas = ExtResource("78_x7lnp") +region = Rect2(1225, 1582, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xyo6b"] +atlas = ExtResource("78_x7lnp") +region = Rect2(1400, 1582, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gnyks"] +atlas = ExtResource("78_x7lnp") +region = Rect2(0, 1808, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_08lae"] +atlas = ExtResource("78_x7lnp") +region = Rect2(175, 1808, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r710l"] +atlas = ExtResource("78_x7lnp") +region = Rect2(350, 1808, 175, 226) + +[sub_resource type="SpriteFrames" id="SpriteFrames_3to5j"] +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("79_dta0t") +region = Rect2(134, 0, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_56ojt"] +atlas = ExtResource("79_dta0t") +region = Rect2(402, 0, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jwkdt"] +atlas = ExtResource("79_dta0t") +region = Rect2(670, 0, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tklqq"] +atlas = ExtResource("79_dta0t") +region = Rect2(938, 0, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0kd7d"] +atlas = ExtResource("79_dta0t") +region = Rect2(1206, 0, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uoo6g"] +atlas = ExtResource("79_dta0t") +region = Rect2(134, 134, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eyk0y"] +atlas = ExtResource("79_dta0t") +region = Rect2(402, 134, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0imbq"] +atlas = ExtResource("79_dta0t") +region = Rect2(670, 134, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oys1t"] +atlas = ExtResource("79_dta0t") +region = Rect2(938, 134, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_06alo"] +atlas = ExtResource("79_dta0t") +region = Rect2(1206, 134, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uoxdj"] +atlas = ExtResource("79_dta0t") +region = Rect2(134, 268, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rcb13"] +atlas = ExtResource("79_dta0t") +region = Rect2(402, 268, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pj86n"] +atlas = ExtResource("79_dta0t") +region = Rect2(670, 268, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qpw3f"] +atlas = ExtResource("79_dta0t") +region = Rect2(938, 268, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gn6h7"] +atlas = ExtResource("79_dta0t") +region = Rect2(1206, 268, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lkh03"] +atlas = ExtResource("79_dta0t") +region = Rect2(134, 402, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pdi3o"] +atlas = ExtResource("79_dta0t") +region = Rect2(402, 402, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s3ywy"] +atlas = ExtResource("79_dta0t") +region = Rect2(670, 402, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6idxu"] +atlas = ExtResource("79_dta0t") +region = Rect2(938, 402, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qndi3"] +atlas = ExtResource("79_dta0t") +region = Rect2(1206, 402, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y4ahc"] +atlas = ExtResource("79_dta0t") +region = Rect2(134, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y5c6p"] +atlas = ExtResource("79_dta0t") +region = Rect2(402, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oa8p3"] +atlas = ExtResource("79_dta0t") +region = Rect2(670, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rc08e"] +atlas = ExtResource("79_dta0t") +region = Rect2(938, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8tw6t"] +atlas = ExtResource("79_dta0t") +region = Rect2(1206, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_njvn5"] +atlas = ExtResource("79_dta0t") +region = Rect2(134, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cwp0x"] +atlas = ExtResource("79_dta0t") +region = Rect2(402, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hch5s"] +atlas = ExtResource("79_dta0t") +region = Rect2(670, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vgjuv"] +atlas = ExtResource("79_dta0t") +region = Rect2(938, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1502j"] +atlas = ExtResource("79_dta0t") +region = Rect2(1206, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5m1ra"] +atlas = ExtResource("79_dta0t") +region = Rect2(134, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l0imt"] +atlas = ExtResource("79_dta0t") +region = Rect2(402, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ywb2s"] +atlas = ExtResource("79_dta0t") +region = Rect2(670, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x5582"] +atlas = ExtResource("79_dta0t") +region = Rect2(938, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4uy6l"] +atlas = ExtResource("79_dta0t") +region = Rect2(1206, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_50esb"] +atlas = ExtResource("79_dta0t") +region = Rect2(134, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xnham"] +atlas = ExtResource("79_dta0t") +region = Rect2(402, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j1cf1"] +atlas = ExtResource("79_dta0t") +region = Rect2(670, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jvde4"] +atlas = ExtResource("79_dta0t") +region = Rect2(938, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dvkgv"] +atlas = ExtResource("79_dta0t") +region = Rect2(1206, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3ant7"] +atlas = ExtResource("79_dta0t") +region = Rect2(134, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a6f8y"] +atlas = ExtResource("79_dta0t") +region = Rect2(402, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ancbh"] +atlas = ExtResource("79_dta0t") +region = Rect2(670, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yes2c"] +atlas = ExtResource("79_dta0t") +region = Rect2(938, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cs2h2"] +atlas = ExtResource("79_dta0t") +region = Rect2(1206, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n2i2d"] +atlas = ExtResource("79_dta0t") +region = Rect2(134, 1206, 134, 134) + +[sub_resource type="SpriteFrames" id="SpriteFrames_7x07v"] +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="BoxShape3D" id="BoxShape3D_1o50e"] size = Vector3(1, 0.565, 2) @@ -1181,6 +3868,483 @@ animations = [{ "speed": 21.0 }] +[sub_resource type="Animation" id="Animation_30xy4"] +resource_name = "CurseHit" +length = 1.56667 +tracks/0/type = "value" +tracks/0/imported = false +tracks/0/enabled = true +tracks/0/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Curse Hit Effect:animation") +tracks/0/interp = 1 +tracks/0/loop_wrap = true +tracks/0/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"default"] +} +tracks/1/type = "value" +tracks/1/imported = false +tracks/1/enabled = true +tracks/1/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Curse Hit Effect:frame") +tracks/1/interp = 1 +tracks/1/loop_wrap = true +tracks/1/keys = { +"times": PackedFloat32Array(0, 1.56667), +"transitions": PackedFloat32Array(1, 1), +"update": 0, +"values": [0, 47] +} + +[sub_resource type="Animation" id="Animation_3pm1j"] +resource_name = "EarthHit" +length = 1.46667 +tracks/0/type = "value" +tracks/0/imported = false +tracks/0/enabled = true +tracks/0/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Earth Hit Effect:animation") +tracks/0/interp = 1 +tracks/0/loop_wrap = true +tracks/0/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"EARTH DAMAGE"] +} +tracks/1/type = "value" +tracks/1/imported = false +tracks/1/enabled = true +tracks/1/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Earth Hit Effect:frame") +tracks/1/interp = 1 +tracks/1/loop_wrap = true +tracks/1/keys = { +"times": PackedFloat32Array(0, 1.46667), +"transitions": PackedFloat32Array(1, 1), +"update": 0, +"values": [0, 44] +} + +[sub_resource type="Animation" id="Animation_6shfu"] +resource_name = "Fire Damage" +length = 2.93334 +tracks/0/type = "value" +tracks/0/imported = false +tracks/0/enabled = true +tracks/0/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/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("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/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("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/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)] +} +tracks/3/type = "value" +tracks/3/imported = false +tracks/3/enabled = true +tracks/3/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Rust Activation Effect:animation") +tracks/3/interp = 1 +tracks/3/loop_wrap = true +tracks/3/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"default"] +} +tracks/4/type = "value" +tracks/4/imported = false +tracks/4/enabled = true +tracks/4/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Rust Activation Effect:frame") +tracks/4/interp = 1 +tracks/4/loop_wrap = true +tracks/4/keys = { +"times": PackedFloat32Array(0, 2.93333), +"transitions": PackedFloat32Array(1, 1), +"update": 0, +"values": [88, 88] +} + +[sub_resource type="Animation" id="Animation_f5cjs"] +resource_name = "HolyHit" +length = 0.700003 +tracks/0/type = "value" +tracks/0/imported = false +tracks/0/enabled = true +tracks/0/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Holy Hit Layer Effect:animation") +tracks/0/interp = 1 +tracks/0/loop_wrap = true +tracks/0/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"HOLY"] +} +tracks/1/type = "value" +tracks/1/imported = false +tracks/1/enabled = true +tracks/1/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Holy Hit Layer Effect:frame") +tracks/1/interp = 1 +tracks/1/loop_wrap = true +tracks/1/keys = { +"times": PackedFloat32Array(0, 0.7), +"transitions": PackedFloat32Array(1, 1), +"update": 0, +"values": [0, 21] +} + +[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("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/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("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/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("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/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"] +} +tracks/3/type = "value" +tracks/3/imported = false +tracks/3/enabled = true +tracks/3/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Rust Activation Effect:animation") +tracks/3/interp = 1 +tracks/3/loop_wrap = true +tracks/3/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"default"] +} +tracks/4/type = "value" +tracks/4/imported = false +tracks/4/enabled = true +tracks/4/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Rust Activation Effect:frame") +tracks/4/interp = 1 +tracks/4/loop_wrap = true +tracks/4/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [88] +} +tracks/5/type = "value" +tracks/5/imported = false +tracks/5/enabled = true +tracks/5/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Holy Hit Layer Effect:animation") +tracks/5/interp = 1 +tracks/5/loop_wrap = true +tracks/5/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"HOLY"] +} +tracks/6/type = "value" +tracks/6/imported = false +tracks/6/enabled = true +tracks/6/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Holy Hit Layer Effect:frame") +tracks/6/interp = 1 +tracks/6/loop_wrap = true +tracks/6/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [0] +} +tracks/7/type = "value" +tracks/7/imported = false +tracks/7/enabled = true +tracks/7/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Wind Hit Layer Effect:animation") +tracks/7/interp = 1 +tracks/7/loop_wrap = true +tracks/7/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"default"] +} +tracks/8/type = "value" +tracks/8/imported = false +tracks/8/enabled = true +tracks/8/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Wind Hit Layer Effect:frame") +tracks/8/interp = 1 +tracks/8/loop_wrap = true +tracks/8/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [50] +} +tracks/9/type = "value" +tracks/9/imported = false +tracks/9/enabled = true +tracks/9/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Water Hit Layer 1 Effect:animation") +tracks/9/interp = 1 +tracks/9/loop_wrap = true +tracks/9/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"WATER DAMAGE"] +} +tracks/10/type = "value" +tracks/10/imported = false +tracks/10/enabled = true +tracks/10/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Water Hit Layer 1 Effect:frame") +tracks/10/interp = 1 +tracks/10/loop_wrap = true +tracks/10/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [29] +} +tracks/11/type = "value" +tracks/11/imported = false +tracks/11/enabled = true +tracks/11/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Water Hit Layer 2Effect:animation") +tracks/11/interp = 1 +tracks/11/loop_wrap = true +tracks/11/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"WATER"] +} +tracks/12/type = "value" +tracks/12/imported = false +tracks/12/enabled = true +tracks/12/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Water Hit Layer 2Effect:frame") +tracks/12/interp = 1 +tracks/12/loop_wrap = true +tracks/12/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [51] +} +tracks/13/type = "value" +tracks/13/imported = false +tracks/13/enabled = true +tracks/13/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Curse Hit Effect:animation") +tracks/13/interp = 1 +tracks/13/loop_wrap = true +tracks/13/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"default"] +} +tracks/14/type = "value" +tracks/14/imported = false +tracks/14/enabled = true +tracks/14/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Curse Hit Effect:frame") +tracks/14/interp = 1 +tracks/14/loop_wrap = true +tracks/14/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [47] +} +tracks/15/type = "value" +tracks/15/imported = false +tracks/15/enabled = true +tracks/15/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Earth Hit Effect:animation") +tracks/15/interp = 1 +tracks/15/loop_wrap = true +tracks/15/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"WATER DAMAGE"] +} +tracks/16/type = "value" +tracks/16/imported = false +tracks/16/enabled = true +tracks/16/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Earth Hit Effect:frame") +tracks/16/interp = 1 +tracks/16/loop_wrap = true +tracks/16/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [0] +} + +[sub_resource type="Animation" id="Animation_0tqwp"] +resource_name = "RustActivate" +length = 1.46667 +step = 0.0166667 +tracks/0/type = "value" +tracks/0/imported = false +tracks/0/enabled = true +tracks/0/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Rust Activation Effect:animation") +tracks/0/interp = 1 +tracks/0/loop_wrap = true +tracks/0/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"default"] +} +tracks/1/type = "value" +tracks/1/imported = false +tracks/1/enabled = true +tracks/1/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Rust Activation Effect:frame") +tracks/1/interp = 1 +tracks/1/loop_wrap = true +tracks/1/keys = { +"times": PackedFloat32Array(0, 1.46667), +"transitions": PackedFloat32Array(1, 1), +"update": 0, +"values": [0, 88] +} + +[sub_resource type="Animation" id="Animation_q5dfb"] +resource_name = "WaterHit" +length = 1.7 +tracks/0/type = "value" +tracks/0/imported = false +tracks/0/enabled = true +tracks/0/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Water Hit Layer 1 Effect:animation") +tracks/0/interp = 1 +tracks/0/loop_wrap = true +tracks/0/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"WATER DAMAGE"] +} +tracks/1/type = "value" +tracks/1/imported = false +tracks/1/enabled = true +tracks/1/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Water Hit Layer 1 Effect:frame") +tracks/1/interp = 1 +tracks/1/loop_wrap = true +tracks/1/keys = { +"times": PackedFloat32Array(0, 1), +"transitions": PackedFloat32Array(1, 1), +"update": 0, +"values": [0, 29] +} +tracks/2/type = "value" +tracks/2/imported = false +tracks/2/enabled = true +tracks/2/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Water Hit Layer 2Effect:animation") +tracks/2/interp = 1 +tracks/2/loop_wrap = true +tracks/2/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"WATER"] +} +tracks/3/type = "value" +tracks/3/imported = false +tracks/3/enabled = true +tracks/3/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Water Hit Layer 2Effect:frame") +tracks/3/interp = 1 +tracks/3/loop_wrap = true +tracks/3/keys = { +"times": PackedFloat32Array(0, 1.7), +"transitions": PackedFloat32Array(1, 1), +"update": 0, +"values": [0, 51] +} + +[sub_resource type="Animation" id="Animation_godpv"] +resource_name = "WindHit" +length = 0.833335 +step = 0.0166667 +tracks/0/type = "value" +tracks/0/imported = false +tracks/0/enabled = true +tracks/0/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Wind Hit Layer Effect:animation") +tracks/0/interp = 1 +tracks/0/loop_wrap = true +tracks/0/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"default"] +} +tracks/1/type = "value" +tracks/1/imported = false +tracks/1/enabled = true +tracks/1/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Wind Hit Layer Effect:frame") +tracks/1/interp = 1 +tracks/1/loop_wrap = true +tracks/1/keys = { +"times": PackedFloat32Array(0, 0.833333), +"transitions": PackedFloat32Array(1, 1), +"update": 0, +"values": [0, 50] +} + +[sub_resource type="AnimationLibrary" id="AnimationLibrary_0tqwp"] +_data = { +&"CurseHit": SubResource("Animation_30xy4"), +&"EarthHit": SubResource("Animation_3pm1j"), +&"FireHit": SubResource("Animation_6shfu"), +&"HolyHit": SubResource("Animation_f5cjs"), +&"RESET": SubResource("Animation_cftgd"), +&"RustActivate": SubResource("Animation_0tqwp"), +&"WaterHit": SubResource("Animation_q5dfb"), +&"WindHit": SubResource("Animation_godpv") +} + [node name="EnemyModelView" type="Node3D"] script = ExtResource("1_o4cc2") EnemyLoreInfo = SubResource("Resource_gby04") @@ -1216,6 +4380,60 @@ sprite_frames = SubResource("SpriteFrames_v4v5p") animation = &"idle_front_walk" offset = Vector2(400, 400) +[node name="VFXSprites" type="Node2D" parent="Sprite3D/SubViewportContainer/SubViewport"] + +[node name="Rust Activation Effect" type="AnimatedSprite2D" parent="Sprite3D/SubViewportContainer/SubViewport/VFXSprites"] +position = Vector2(400, 400) +scale = Vector2(1.54, 1.54) +sprite_frames = SubResource("SpriteFrames_0gqb2") +frame = 88 + +[node name="Holy Hit Layer Effect" type="AnimatedSprite2D" parent="Sprite3D/SubViewportContainer/SubViewport/VFXSprites"] +position = Vector2(400, 400) +scale = Vector2(0.675, 0.675) +sprite_frames = SubResource("SpriteFrames_u6geb") +animation = &"HOLY" + +[node name="Wind Hit Layer Effect" type="AnimatedSprite2D" parent="Sprite3D/SubViewportContainer/SubViewport/VFXSprites"] +position = Vector2(400, 400) +scale = Vector2(1.445, 1.445) +sprite_frames = SubResource("SpriteFrames_qe6vs") +frame = 50 + +[node name="Flame Hit Effect" type="AnimatedSprite2D" parent="Sprite3D/SubViewportContainer/SubViewport/VFXSprites"] +position = Vector2(400, 400) +scale = Vector2(3.445, 3.445) +sprite_frames = SubResource("SpriteFrames_k0kt8") +animation = &"Flame Damage" +frame = 40 + +[node name="Water Hit Layer 1 Effect" type="AnimatedSprite2D" parent="Sprite3D/SubViewportContainer/SubViewport/VFXSprites"] +position = Vector2(400, 400) +scale = Vector2(2.215, 2.215) +sprite_frames = SubResource("SpriteFrames_kp6q4") +animation = &"WATER DAMAGE" +frame = 29 + +[node name="Water Hit Layer 2Effect" type="AnimatedSprite2D" parent="Sprite3D/SubViewportContainer/SubViewport/VFXSprites"] +position = Vector2(400, 400) +scale = Vector2(1.105, 0.895) +sprite_frames = SubResource("SpriteFrames_3to5j") +animation = &"WATER" +frame = 51 + +[node name="Curse Hit Effect" type="AnimatedSprite2D" parent="Sprite3D/SubViewportContainer/SubViewport/VFXSprites"] +texture_filter = 1 +position = Vector2(400, 400) +scale = Vector2(2.78, 2.78) +sprite_frames = SubResource("SpriteFrames_7x07v") +frame = 47 + +[node name="Earth Hit Effect" type="AnimatedSprite2D" parent="Sprite3D/SubViewportContainer/SubViewport/VFXSprites"] +position = Vector2(400, 400) +scale = Vector2(2.005, 2.005) +sprite_frames = SubResource("SpriteFrames_kp6q4") +animation = &"WATER DAMAGE" + [node name="Hitbox" type="Area3D" parent="."] unique_name_in_owner = true transform = Transform3D(-1, 0, -8.74228e-08, 0, 1, 0, 8.74228e-08, 0, -1, -0.152949, 1.34076, 0) @@ -1263,3 +4481,51 @@ cast_shadow = 0 modulate = Color(1, 1, 1, 0.591) texture_filter = 0 texture = ExtResource("76_fxhv6") + +[node name="VFXAnimations" type="Node" parent="."] + +[node name="FlameHitAnimation" type="AnimationPlayer" parent="VFXAnimations"] +unique_name_in_owner = true +libraries = { +&"": SubResource("AnimationLibrary_0tqwp") +} + +[node name="RustHitAnimation" type="AnimationPlayer" parent="VFXAnimations"] +unique_name_in_owner = true +libraries = { +&"": SubResource("AnimationLibrary_0tqwp") +} + +[node name="HolyHitAnimation" type="AnimationPlayer" parent="VFXAnimations"] +unique_name_in_owner = true +libraries = { +&"": SubResource("AnimationLibrary_0tqwp") +} + +[node name="WindHitAnimation" type="AnimationPlayer" parent="VFXAnimations"] +unique_name_in_owner = true +root_node = NodePath("../../Secondary Animation Player") +libraries = { +&"": SubResource("AnimationLibrary_0tqwp") +} + +[node name="WaterHitAnimation" type="AnimationPlayer" parent="VFXAnimations"] +unique_name_in_owner = true +root_node = NodePath("../../Secondary Animation Player") +libraries = { +&"": SubResource("AnimationLibrary_0tqwp") +} + +[node name="CurseHitAnimation" type="AnimationPlayer" parent="VFXAnimations"] +unique_name_in_owner = true +root_node = NodePath("../../Secondary Animation Player") +libraries = { +&"": SubResource("AnimationLibrary_0tqwp") +} + +[node name="EarthHitAnimation" type="AnimationPlayer" parent="VFXAnimations"] +unique_name_in_owner = true +root_node = NodePath("../../Secondary Animation Player") +libraries = { +&"": SubResource("AnimationLibrary_0tqwp") +} diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/03. filth_eater/FilthEaterModelView.tscn b/Zennysoft.Game.Ma/src/enemy/enemy_types/03. filth_eater/FilthEaterModelView.tscn index b49af7a7..b77000aa 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/03. filth_eater/FilthEaterModelView.tscn +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/03. filth_eater/FilthEaterModelView.tscn @@ -1,4 +1,4 @@ -[gd_scene load_steps=306 format=3 uid="uid://b6sa6ntu4rbrm"] +[gd_scene load_steps=701 format=3 uid="uid://b6sa6ntu4rbrm"] [ext_resource type="Script" uid="uid://cvr1qimxpignl" path="res://src/enemy/EnemyModelView2D.cs" id="1_718m1"] [ext_resource type="Script" uid="uid://dlsgyx4i1jmp3" path="res://src/enemy/EnemyLoreInfo.cs" id="2_krqul"] @@ -191,14 +191,22 @@ [ext_resource type="Texture2D" uid="uid://c3s4tx3p053j" path="res://src/enemy/enemy_types/03. filth_eater/animations/Filth Side Attacks Frames/ATTACK 2 SIDE/frame_071_delay-0.01s.png" id="188_jlpox"] [ext_resource type="Texture2D" uid="uid://cvivq23738fvf" path="res://src/enemy/enemy_types/03. filth_eater/animations/Filth Side Attacks Frames/ATTACK 2 SIDE/frame_072_delay-0.01s.png" id="189_uqsli"] [ext_resource type="Texture2D" uid="uid://bxijhjyqvfrip" path="res://src/enemy/enemy_types/03. filth_eater/animations/Filth Side Attacks Frames/ATTACK 2 SIDE/frame_073_delay-0.01s.png" id="190_wg32o"] +[ext_resource type="Texture2D" uid="uid://dq70aipwl1qrg" path="res://src/vfx/Enemy Affected/Rust Particles.png" id="192_svg22"] [ext_resource type="AudioStream" uid="uid://dl818xjlcm7vu" path="res://src/audio/sfx/ENEMY_FILTH_ATTACK.ogg" id="193_4h5gj"] [ext_resource type="Texture2D" uid="uid://dafpnwkwcukp4" path="res://src/vfx/shadow_test_1.png" id="193_e5pq0"] [ext_resource type="PackedScene" uid="uid://3ax3e5uce27d" path="res://src/enemy/TwoAttacksEnemyAnimationTree.tscn" id="193_krqul"] +[ext_resource type="Texture2D" uid="uid://by0ehygy7bq13" path="res://src/vfx/Enemy Affected/Holy Damage.png" id="193_s7lar"] +[ext_resource type="Texture2D" uid="uid://dqqhu0s51o3n7" path="res://src/vfx/Enemy Affected/Wind Damage.png" id="194_akobn"] [ext_resource type="Texture2D" uid="uid://d0q5jru1am4v0" path="res://src/vfx/Enemy/FILTH_BLAST.png" id="194_pyy2h"] [ext_resource type="AnimationNodeStateMachine" uid="uid://co7lshemjrro8" path="res://src/enemy/animation_state_machines/IdleStateMachine.tres" id="194_u5xjp"] [ext_resource type="AnimationNodeStateMachine" uid="uid://cbq8xog50cjjy" path="res://src/enemy/animation_state_machines/PrimaryAttackStateMachine.tres" id="195_5cwnl"] +[ext_resource type="Texture2D" uid="uid://dh6mk1c35nymx" path="res://src/vfx/Enemy Affected/firedamage.png" id="195_bsqna"] [ext_resource type="AnimationNodeStateMachine" uid="uid://clybvwx3itfeo" path="res://src/enemy/animation_state_machines/SecondaryAttackStateMachine.tres" id="196_e0gee"] +[ext_resource type="Texture2D" uid="uid://7a42df2ijrmv" path="res://src/vfx/Enemy Affected/earth damage.png" id="196_gol4k"] [ext_resource type="AnimationNodeStateMachine" uid="uid://cy2ngl55c0rws" path="res://src/enemy/animation_state_machines/WalkingStateMachine.tres" id="197_mno7m"] +[ext_resource type="Texture2D" uid="uid://cot4wx5fg5pfs" path="res://src/vfx/Enemy Affected/water_hit_layer2.png" id="197_p4ilm"] +[ext_resource type="Texture2D" uid="uid://cbei66g134fgv" path="res://src/vfx/Enemy Affected/water layer 1.png" id="198_k83sm"] +[ext_resource type="Texture2D" uid="uid://bp6npqoco5fl3" path="res://src/vfx/Enemy Affected/curse_damage.png" id="199_kcq25"] [ext_resource type="Script" uid="uid://chxka5g7yvcg" path="res://src/projectile/ProjectileSystem.cs" id="200_4h5gj"] [ext_resource type="PackedScene" uid="uid://cnhoya51br05n" path="res://src/enemy/enemy_types/03. filth_eater/FilthEaterProjectile.tscn" id="200_mno7m"] @@ -1034,6 +1042,2685 @@ animations = [{ "speed": 5.0 }] +[sub_resource type="AtlasTexture" id="AtlasTexture_4o5f2"] +atlas = ExtResource("192_svg22") +region = Rect2(1206, 402, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r8ggx"] +atlas = ExtResource("192_svg22") +region = Rect2(1340, 402, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xafpd"] +atlas = ExtResource("192_svg22") +region = Rect2(1474, 402, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_73dpc"] +atlas = ExtResource("192_svg22") +region = Rect2(0, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vppxt"] +atlas = ExtResource("192_svg22") +region = Rect2(134, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nk562"] +atlas = ExtResource("192_svg22") +region = Rect2(268, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dwu2q"] +atlas = ExtResource("192_svg22") +region = Rect2(402, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w3p3j"] +atlas = ExtResource("192_svg22") +region = Rect2(536, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ig0ip"] +atlas = ExtResource("192_svg22") +region = Rect2(670, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r4enw"] +atlas = ExtResource("192_svg22") +region = Rect2(804, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uy6hg"] +atlas = ExtResource("192_svg22") +region = Rect2(938, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_85jwg"] +atlas = ExtResource("192_svg22") +region = Rect2(1072, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ln7dl"] +atlas = ExtResource("192_svg22") +region = Rect2(1206, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3vvgp"] +atlas = ExtResource("192_svg22") +region = Rect2(1340, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_01f7m"] +atlas = ExtResource("192_svg22") +region = Rect2(1474, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pp21u"] +atlas = ExtResource("192_svg22") +region = Rect2(0, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1aldj"] +atlas = ExtResource("192_svg22") +region = Rect2(134, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xv5pw"] +atlas = ExtResource("192_svg22") +region = Rect2(268, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_14lh3"] +atlas = ExtResource("192_svg22") +region = Rect2(402, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xxid6"] +atlas = ExtResource("192_svg22") +region = Rect2(536, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y6yeo"] +atlas = ExtResource("192_svg22") +region = Rect2(670, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2aohu"] +atlas = ExtResource("192_svg22") +region = Rect2(804, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ebvc7"] +atlas = ExtResource("192_svg22") +region = Rect2(938, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yd50d"] +atlas = ExtResource("192_svg22") +region = Rect2(1072, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yimdu"] +atlas = ExtResource("192_svg22") +region = Rect2(1206, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dync1"] +atlas = ExtResource("192_svg22") +region = Rect2(1340, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jsjdk"] +atlas = ExtResource("192_svg22") +region = Rect2(1474, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ueih5"] +atlas = ExtResource("192_svg22") +region = Rect2(0, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k0hut"] +atlas = ExtResource("192_svg22") +region = Rect2(134, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kybji"] +atlas = ExtResource("192_svg22") +region = Rect2(268, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u5vpt"] +atlas = ExtResource("192_svg22") +region = Rect2(402, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wko4t"] +atlas = ExtResource("192_svg22") +region = Rect2(536, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ru86o"] +atlas = ExtResource("192_svg22") +region = Rect2(670, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uybbj"] +atlas = ExtResource("192_svg22") +region = Rect2(804, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s6pp8"] +atlas = ExtResource("192_svg22") +region = Rect2(938, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a7pls"] +atlas = ExtResource("192_svg22") +region = Rect2(1072, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_30y71"] +atlas = ExtResource("192_svg22") +region = Rect2(1206, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dwl1c"] +atlas = ExtResource("192_svg22") +region = Rect2(1340, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_01jp4"] +atlas = ExtResource("192_svg22") +region = Rect2(1474, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b8ulh"] +atlas = ExtResource("192_svg22") +region = Rect2(0, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3walv"] +atlas = ExtResource("192_svg22") +region = Rect2(134, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_exyoj"] +atlas = ExtResource("192_svg22") +region = Rect2(268, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kus54"] +atlas = ExtResource("192_svg22") +region = Rect2(402, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_meauc"] +atlas = ExtResource("192_svg22") +region = Rect2(536, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7v7xr"] +atlas = ExtResource("192_svg22") +region = Rect2(670, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4ktea"] +atlas = ExtResource("192_svg22") +region = Rect2(804, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l8oa1"] +atlas = ExtResource("192_svg22") +region = Rect2(938, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3eopa"] +atlas = ExtResource("192_svg22") +region = Rect2(1072, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ip8hv"] +atlas = ExtResource("192_svg22") +region = Rect2(1206, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_42rbq"] +atlas = ExtResource("192_svg22") +region = Rect2(1340, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tu0vu"] +atlas = ExtResource("192_svg22") +region = Rect2(1474, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gbh7l"] +atlas = ExtResource("192_svg22") +region = Rect2(0, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_733jx"] +atlas = ExtResource("192_svg22") +region = Rect2(134, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sfa2q"] +atlas = ExtResource("192_svg22") +region = Rect2(268, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o0nvo"] +atlas = ExtResource("192_svg22") +region = Rect2(402, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1mv1w"] +atlas = ExtResource("192_svg22") +region = Rect2(536, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yw8ob"] +atlas = ExtResource("192_svg22") +region = Rect2(670, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ptkbd"] +atlas = ExtResource("192_svg22") +region = Rect2(804, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2uoiw"] +atlas = ExtResource("192_svg22") +region = Rect2(938, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4m684"] +atlas = ExtResource("192_svg22") +region = Rect2(1072, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_st6fj"] +atlas = ExtResource("192_svg22") +region = Rect2(1206, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1wana"] +atlas = ExtResource("192_svg22") +region = Rect2(1340, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ati4e"] +atlas = ExtResource("192_svg22") +region = Rect2(1474, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0w31q"] +atlas = ExtResource("192_svg22") +region = Rect2(0, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uxu33"] +atlas = ExtResource("192_svg22") +region = Rect2(134, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2ulnd"] +atlas = ExtResource("192_svg22") +region = Rect2(268, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ddsrn"] +atlas = ExtResource("192_svg22") +region = Rect2(402, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n1e5w"] +atlas = ExtResource("192_svg22") +region = Rect2(536, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f4aq5"] +atlas = ExtResource("192_svg22") +region = Rect2(670, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_er00h"] +atlas = ExtResource("192_svg22") +region = Rect2(804, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mlf5c"] +atlas = ExtResource("192_svg22") +region = Rect2(938, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c362w"] +atlas = ExtResource("192_svg22") +region = Rect2(1072, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_30wb7"] +atlas = ExtResource("192_svg22") +region = Rect2(1206, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_stb0b"] +atlas = ExtResource("192_svg22") +region = Rect2(1340, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a64qf"] +atlas = ExtResource("192_svg22") +region = Rect2(1474, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_52bkw"] +atlas = ExtResource("192_svg22") +region = Rect2(0, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y0yvc"] +atlas = ExtResource("192_svg22") +region = Rect2(134, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5h2xe"] +atlas = ExtResource("192_svg22") +region = Rect2(268, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6hh33"] +atlas = ExtResource("192_svg22") +region = Rect2(402, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kmk3m"] +atlas = ExtResource("192_svg22") +region = Rect2(536, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rbtmh"] +atlas = ExtResource("192_svg22") +region = Rect2(670, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bit6n"] +atlas = ExtResource("192_svg22") +region = Rect2(804, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_458hw"] +atlas = ExtResource("192_svg22") +region = Rect2(938, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4x2ea"] +atlas = ExtResource("192_svg22") +region = Rect2(1072, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bcljt"] +atlas = ExtResource("192_svg22") +region = Rect2(1206, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p6e34"] +atlas = ExtResource("192_svg22") +region = Rect2(1340, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2yfi0"] +atlas = ExtResource("192_svg22") +region = Rect2(1474, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bhoxy"] +atlas = ExtResource("192_svg22") +region = Rect2(0, 1474, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_41wyx"] +atlas = ExtResource("192_svg22") +region = Rect2(134, 1474, 134, 134) + +[sub_resource type="SpriteFrames" id="SpriteFrames_01v4k"] +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("193_s7lar") +region = Rect2(1024, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pvn2l"] +atlas = ExtResource("193_s7lar") +region = Rect2(1536, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sctov"] +atlas = ExtResource("193_s7lar") +region = Rect2(2048, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_46bwa"] +atlas = ExtResource("193_s7lar") +region = Rect2(2560, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o42jv"] +atlas = ExtResource("193_s7lar") +region = Rect2(3072, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5dqsk"] +atlas = ExtResource("193_s7lar") +region = Rect2(3584, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_35l4k"] +atlas = ExtResource("193_s7lar") +region = Rect2(4096, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x0jfm"] +atlas = ExtResource("193_s7lar") +region = Rect2(4608, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fk16r"] +atlas = ExtResource("193_s7lar") +region = Rect2(5120, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ewtdr"] +atlas = ExtResource("193_s7lar") +region = Rect2(5632, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bul51"] +atlas = ExtResource("193_s7lar") +region = Rect2(6144, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vbobf"] +atlas = ExtResource("193_s7lar") +region = Rect2(6656, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_itqlk"] +atlas = ExtResource("193_s7lar") +region = Rect2(7168, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_41jjh"] +atlas = ExtResource("193_s7lar") +region = Rect2(7680, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kol03"] +atlas = ExtResource("193_s7lar") +region = Rect2(0, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ynyxy"] +atlas = ExtResource("193_s7lar") +region = Rect2(512, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ngcxk"] +atlas = ExtResource("193_s7lar") +region = Rect2(1024, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ba8fa"] +atlas = ExtResource("193_s7lar") +region = Rect2(1536, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ngitf"] +atlas = ExtResource("193_s7lar") +region = Rect2(2048, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_boovf"] +atlas = ExtResource("193_s7lar") +region = Rect2(2560, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jwkhr"] +atlas = ExtResource("193_s7lar") +region = Rect2(3072, 512, 512, 512) + +[sub_resource type="SpriteFrames" id="SpriteFrames_jltoa"] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": null +}, { +"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("194_akobn") +region = Rect2(0, 0, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3jmy8"] +atlas = ExtResource("194_akobn") +region = Rect2(266, 0, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t76hk"] +atlas = ExtResource("194_akobn") +region = Rect2(532, 0, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_06gff"] +atlas = ExtResource("194_akobn") +region = Rect2(798, 0, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ssjgs"] +atlas = ExtResource("194_akobn") +region = Rect2(1064, 0, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_53u6k"] +atlas = ExtResource("194_akobn") +region = Rect2(0, 131, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_inmu7"] +atlas = ExtResource("194_akobn") +region = Rect2(266, 131, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bmkvg"] +atlas = ExtResource("194_akobn") +region = Rect2(532, 131, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oqdmj"] +atlas = ExtResource("194_akobn") +region = Rect2(798, 131, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bnn41"] +atlas = ExtResource("194_akobn") +region = Rect2(1064, 131, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p6hmn"] +atlas = ExtResource("194_akobn") +region = Rect2(0, 262, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s0ybe"] +atlas = ExtResource("194_akobn") +region = Rect2(266, 262, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y2273"] +atlas = ExtResource("194_akobn") +region = Rect2(532, 262, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2i87r"] +atlas = ExtResource("194_akobn") +region = Rect2(798, 262, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4q8o2"] +atlas = ExtResource("194_akobn") +region = Rect2(1064, 262, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_esxmc"] +atlas = ExtResource("194_akobn") +region = Rect2(0, 393, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rdsur"] +atlas = ExtResource("194_akobn") +region = Rect2(266, 393, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b2qt4"] +atlas = ExtResource("194_akobn") +region = Rect2(532, 393, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xamrr"] +atlas = ExtResource("194_akobn") +region = Rect2(798, 393, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0prqh"] +atlas = ExtResource("194_akobn") +region = Rect2(1064, 393, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dh1oc"] +atlas = ExtResource("194_akobn") +region = Rect2(0, 524, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ybb1w"] +atlas = ExtResource("194_akobn") +region = Rect2(266, 524, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2nkua"] +atlas = ExtResource("194_akobn") +region = Rect2(532, 524, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2gocr"] +atlas = ExtResource("194_akobn") +region = Rect2(798, 524, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_acsou"] +atlas = ExtResource("194_akobn") +region = Rect2(1064, 524, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yflou"] +atlas = ExtResource("194_akobn") +region = Rect2(0, 655, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_env3c"] +atlas = ExtResource("194_akobn") +region = Rect2(266, 655, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_74f4l"] +atlas = ExtResource("194_akobn") +region = Rect2(532, 655, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cbaq7"] +atlas = ExtResource("194_akobn") +region = Rect2(798, 655, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bc4hh"] +atlas = ExtResource("194_akobn") +region = Rect2(1064, 655, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5m27y"] +atlas = ExtResource("194_akobn") +region = Rect2(0, 786, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c2vig"] +atlas = ExtResource("194_akobn") +region = Rect2(266, 786, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h8qbh"] +atlas = ExtResource("194_akobn") +region = Rect2(532, 786, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vj2ia"] +atlas = ExtResource("194_akobn") +region = Rect2(798, 786, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h0bv3"] +atlas = ExtResource("194_akobn") +region = Rect2(1064, 786, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3xb07"] +atlas = ExtResource("194_akobn") +region = Rect2(0, 917, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p845e"] +atlas = ExtResource("194_akobn") +region = Rect2(266, 917, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nm575"] +atlas = ExtResource("194_akobn") +region = Rect2(532, 917, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8wvvt"] +atlas = ExtResource("194_akobn") +region = Rect2(798, 917, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2l45l"] +atlas = ExtResource("194_akobn") +region = Rect2(1064, 917, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0c6u7"] +atlas = ExtResource("194_akobn") +region = Rect2(0, 1048, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bo1qh"] +atlas = ExtResource("194_akobn") +region = Rect2(266, 1048, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4cq22"] +atlas = ExtResource("194_akobn") +region = Rect2(532, 1048, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d6auk"] +atlas = ExtResource("194_akobn") +region = Rect2(798, 1048, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4bvg3"] +atlas = ExtResource("194_akobn") +region = Rect2(1064, 1048, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rps4p"] +atlas = ExtResource("194_akobn") +region = Rect2(0, 1179, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qdy2n"] +atlas = ExtResource("194_akobn") +region = Rect2(266, 1179, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a63dt"] +atlas = ExtResource("194_akobn") +region = Rect2(532, 1179, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3alol"] +atlas = ExtResource("194_akobn") +region = Rect2(798, 1179, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w5y4o"] +atlas = ExtResource("194_akobn") +region = Rect2(1064, 1179, 133, 131) + +[sub_resource type="SpriteFrames" id="SpriteFrames_oimc0"] +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("195_bsqna") +region = Rect2(200, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w5yum"] +atlas = ExtResource("195_bsqna") +region = Rect2(600, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xagiq"] +atlas = ExtResource("195_bsqna") +region = Rect2(1000, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iu4h2"] +atlas = ExtResource("195_bsqna") +region = Rect2(100, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t6kmk"] +atlas = ExtResource("195_bsqna") +region = Rect2(500, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c3c22"] +atlas = ExtResource("195_bsqna") +region = Rect2(900, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_udm06"] +atlas = ExtResource("195_bsqna") +region = Rect2(0, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_31shi"] +atlas = ExtResource("195_bsqna") +region = Rect2(400, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i6wsf"] +atlas = ExtResource("195_bsqna") +region = Rect2(800, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jhluk"] +atlas = ExtResource("195_bsqna") +region = Rect2(1200, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_exq74"] +atlas = ExtResource("195_bsqna") +region = Rect2(300, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k7tc1"] +atlas = ExtResource("195_bsqna") +region = Rect2(700, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_456io"] +atlas = ExtResource("195_bsqna") +region = Rect2(1100, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2h7ac"] +atlas = ExtResource("195_bsqna") +region = Rect2(200, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dy5lo"] +atlas = ExtResource("195_bsqna") +region = Rect2(500, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_biyyn"] +atlas = ExtResource("195_bsqna") +region = Rect2(1000, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_flqm1"] +atlas = ExtResource("195_bsqna") +region = Rect2(100, 500, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xttn8"] +atlas = ExtResource("195_bsqna") +region = Rect2(500, 500, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_85rsb"] +atlas = ExtResource("195_bsqna") +region = Rect2(900, 500, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oxqm1"] +atlas = ExtResource("195_bsqna") +region = Rect2(0, 600, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dphle"] +atlas = ExtResource("195_bsqna") +region = Rect2(400, 600, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_48bul"] +atlas = ExtResource("195_bsqna") +region = Rect2(800, 600, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2d6tt"] +atlas = ExtResource("195_bsqna") +region = Rect2(1200, 600, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ty41g"] +atlas = ExtResource("195_bsqna") +region = Rect2(300, 700, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c5uyp"] +atlas = ExtResource("195_bsqna") +region = Rect2(700, 700, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tf4dl"] +atlas = ExtResource("195_bsqna") +region = Rect2(1100, 700, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cvdlu"] +atlas = ExtResource("195_bsqna") +region = Rect2(200, 800, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f25l1"] +atlas = ExtResource("195_bsqna") +region = Rect2(600, 800, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v033q"] +atlas = ExtResource("195_bsqna") +region = Rect2(1000, 800, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xgfkn"] +atlas = ExtResource("195_bsqna") +region = Rect2(100, 900, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_duxfd"] +atlas = ExtResource("195_bsqna") +region = Rect2(500, 900, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5uvt0"] +atlas = ExtResource("195_bsqna") +region = Rect2(900, 900, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7d05g"] +atlas = ExtResource("195_bsqna") +region = Rect2(0, 1000, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x0ube"] +atlas = ExtResource("195_bsqna") +region = Rect2(400, 1000, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_15y07"] +atlas = ExtResource("195_bsqna") +region = Rect2(800, 1000, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_de0po"] +atlas = ExtResource("195_bsqna") +region = Rect2(1200, 1000, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b3rtc"] +atlas = ExtResource("195_bsqna") +region = Rect2(300, 1100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q32lt"] +atlas = ExtResource("195_bsqna") +region = Rect2(700, 1100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_88hqh"] +atlas = ExtResource("195_bsqna") +region = Rect2(1100, 1100, 100, 100) + +[sub_resource type="SpriteFrames" id="SpriteFrames_xcm4a"] +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("196_gol4k") +region = Rect2(0, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0rj30"] +atlas = ExtResource("196_gol4k") +region = Rect2(200, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ug1a1"] +atlas = ExtResource("196_gol4k") +region = Rect2(400, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8eees"] +atlas = ExtResource("196_gol4k") +region = Rect2(600, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k2i7i"] +atlas = ExtResource("196_gol4k") +region = Rect2(800, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4wwo5"] +atlas = ExtResource("196_gol4k") +region = Rect2(0, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_418m2"] +atlas = ExtResource("196_gol4k") +region = Rect2(200, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6g5qj"] +atlas = ExtResource("196_gol4k") +region = Rect2(400, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k3sey"] +atlas = ExtResource("196_gol4k") +region = Rect2(600, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ms40v"] +atlas = ExtResource("196_gol4k") +region = Rect2(800, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2tfej"] +atlas = ExtResource("196_gol4k") +region = Rect2(0, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_woj7f"] +atlas = ExtResource("196_gol4k") +region = Rect2(200, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kg861"] +atlas = ExtResource("196_gol4k") +region = Rect2(400, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jtxxp"] +atlas = ExtResource("196_gol4k") +region = Rect2(600, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sxooa"] +atlas = ExtResource("196_gol4k") +region = Rect2(800, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hkj2y"] +atlas = ExtResource("196_gol4k") +region = Rect2(0, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wm40h"] +atlas = ExtResource("196_gol4k") +region = Rect2(200, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u66v8"] +atlas = ExtResource("196_gol4k") +region = Rect2(400, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6ip85"] +atlas = ExtResource("196_gol4k") +region = Rect2(600, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qad2i"] +atlas = ExtResource("196_gol4k") +region = Rect2(800, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nifqu"] +atlas = ExtResource("196_gol4k") +region = Rect2(0, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_goocc"] +atlas = ExtResource("196_gol4k") +region = Rect2(200, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l78ua"] +atlas = ExtResource("196_gol4k") +region = Rect2(400, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ybqlc"] +atlas = ExtResource("196_gol4k") +region = Rect2(600, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d0lry"] +atlas = ExtResource("196_gol4k") +region = Rect2(800, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ccb2v"] +atlas = ExtResource("196_gol4k") +region = Rect2(0, 500, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dcp7h"] +atlas = ExtResource("196_gol4k") +region = Rect2(200, 500, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3kud6"] +atlas = ExtResource("196_gol4k") +region = Rect2(400, 500, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0tvc2"] +atlas = ExtResource("196_gol4k") +region = Rect2(600, 500, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g5aky"] +atlas = ExtResource("196_gol4k") +region = Rect2(800, 500, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nyc7u"] +atlas = ExtResource("196_gol4k") +region = Rect2(0, 600, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q1yeq"] +atlas = ExtResource("196_gol4k") +region = Rect2(200, 600, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pupfb"] +atlas = ExtResource("196_gol4k") +region = Rect2(400, 600, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gfe8c"] +atlas = ExtResource("196_gol4k") +region = Rect2(600, 600, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_76bl1"] +atlas = ExtResource("196_gol4k") +region = Rect2(800, 600, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u7frn"] +atlas = ExtResource("196_gol4k") +region = Rect2(0, 700, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ls3an"] +atlas = ExtResource("196_gol4k") +region = Rect2(200, 700, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4l6e0"] +atlas = ExtResource("196_gol4k") +region = Rect2(400, 700, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cvlbl"] +atlas = ExtResource("196_gol4k") +region = Rect2(600, 700, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jkvpv"] +atlas = ExtResource("196_gol4k") +region = Rect2(800, 700, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lpp7o"] +atlas = ExtResource("196_gol4k") +region = Rect2(0, 800, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v8igx"] +atlas = ExtResource("196_gol4k") +region = Rect2(200, 800, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mmm0q"] +atlas = ExtResource("196_gol4k") +region = Rect2(400, 800, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5ukt7"] +atlas = ExtResource("196_gol4k") +region = Rect2(600, 800, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0pkd7"] +atlas = ExtResource("196_gol4k") +region = Rect2(800, 800, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n85t7"] +atlas = ExtResource("197_p4ilm") +region = Rect2(0, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nb4v4"] +atlas = ExtResource("197_p4ilm") +region = Rect2(100, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cl00x"] +atlas = ExtResource("197_p4ilm") +region = Rect2(200, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ufcsw"] +atlas = ExtResource("197_p4ilm") +region = Rect2(300, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aoisp"] +atlas = ExtResource("197_p4ilm") +region = Rect2(400, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3rkdy"] +atlas = ExtResource("197_p4ilm") +region = Rect2(500, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o0dym"] +atlas = ExtResource("197_p4ilm") +region = Rect2(0, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vxihx"] +atlas = ExtResource("197_p4ilm") +region = Rect2(100, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ofpmt"] +atlas = ExtResource("197_p4ilm") +region = Rect2(200, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ux0ir"] +atlas = ExtResource("197_p4ilm") +region = Rect2(300, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8dgch"] +atlas = ExtResource("197_p4ilm") +region = Rect2(400, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7ixin"] +atlas = ExtResource("197_p4ilm") +region = Rect2(500, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2kea0"] +atlas = ExtResource("197_p4ilm") +region = Rect2(0, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kgnps"] +atlas = ExtResource("197_p4ilm") +region = Rect2(100, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g2wgu"] +atlas = ExtResource("197_p4ilm") +region = Rect2(200, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0oosk"] +atlas = ExtResource("197_p4ilm") +region = Rect2(300, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_80k2g"] +atlas = ExtResource("197_p4ilm") +region = Rect2(400, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fskx7"] +atlas = ExtResource("197_p4ilm") +region = Rect2(500, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_no3pe"] +atlas = ExtResource("197_p4ilm") +region = Rect2(0, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_15fnm"] +atlas = ExtResource("197_p4ilm") +region = Rect2(100, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r5e73"] +atlas = ExtResource("197_p4ilm") +region = Rect2(200, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2im8t"] +atlas = ExtResource("197_p4ilm") +region = Rect2(300, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mxl2m"] +atlas = ExtResource("197_p4ilm") +region = Rect2(400, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6dwuh"] +atlas = ExtResource("197_p4ilm") +region = Rect2(500, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_53c1f"] +atlas = ExtResource("197_p4ilm") +region = Rect2(0, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mmbhy"] +atlas = ExtResource("197_p4ilm") +region = Rect2(100, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uwbh3"] +atlas = ExtResource("197_p4ilm") +region = Rect2(200, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j6v2y"] +atlas = ExtResource("197_p4ilm") +region = Rect2(300, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h5xbu"] +atlas = ExtResource("197_p4ilm") +region = Rect2(400, 400, 100, 100) + +[sub_resource type="SpriteFrames" id="SpriteFrames_ddwwq"] +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("198_k83sm") +region = Rect2(875, 452, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ekrqp"] +atlas = ExtResource("198_k83sm") +region = Rect2(1050, 452, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dvnic"] +atlas = ExtResource("198_k83sm") +region = Rect2(1225, 452, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rxdv7"] +atlas = ExtResource("198_k83sm") +region = Rect2(1400, 452, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0pvcp"] +atlas = ExtResource("198_k83sm") +region = Rect2(0, 678, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yga3t"] +atlas = ExtResource("198_k83sm") +region = Rect2(175, 678, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c6qrx"] +atlas = ExtResource("198_k83sm") +region = Rect2(350, 678, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fkryw"] +atlas = ExtResource("198_k83sm") +region = Rect2(525, 678, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jt7jg"] +atlas = ExtResource("198_k83sm") +region = Rect2(700, 678, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6eyjl"] +atlas = ExtResource("198_k83sm") +region = Rect2(875, 678, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tsolq"] +atlas = ExtResource("198_k83sm") +region = Rect2(1050, 678, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_opqal"] +atlas = ExtResource("198_k83sm") +region = Rect2(1225, 678, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kia47"] +atlas = ExtResource("198_k83sm") +region = Rect2(1400, 678, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6aolf"] +atlas = ExtResource("198_k83sm") +region = Rect2(0, 904, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g6jok"] +atlas = ExtResource("198_k83sm") +region = Rect2(175, 904, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_swdkn"] +atlas = ExtResource("198_k83sm") +region = Rect2(350, 904, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_edlre"] +atlas = ExtResource("198_k83sm") +region = Rect2(525, 904, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gbj32"] +atlas = ExtResource("198_k83sm") +region = Rect2(700, 904, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bstol"] +atlas = ExtResource("198_k83sm") +region = Rect2(875, 904, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_57vey"] +atlas = ExtResource("198_k83sm") +region = Rect2(1050, 904, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_31ikn"] +atlas = ExtResource("198_k83sm") +region = Rect2(1225, 904, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e1yxa"] +atlas = ExtResource("198_k83sm") +region = Rect2(1400, 904, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7a7ks"] +atlas = ExtResource("198_k83sm") +region = Rect2(0, 1130, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p2hq6"] +atlas = ExtResource("198_k83sm") +region = Rect2(175, 1130, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k3fbj"] +atlas = ExtResource("198_k83sm") +region = Rect2(350, 1130, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ylav8"] +atlas = ExtResource("198_k83sm") +region = Rect2(525, 1130, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xhgk2"] +atlas = ExtResource("198_k83sm") +region = Rect2(700, 1130, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_diucy"] +atlas = ExtResource("198_k83sm") +region = Rect2(875, 1130, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8gw5n"] +atlas = ExtResource("198_k83sm") +region = Rect2(1050, 1130, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hc5wr"] +atlas = ExtResource("198_k83sm") +region = Rect2(1225, 1130, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fugdi"] +atlas = ExtResource("198_k83sm") +region = Rect2(1400, 1130, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h222i"] +atlas = ExtResource("198_k83sm") +region = Rect2(0, 1356, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7qa4p"] +atlas = ExtResource("198_k83sm") +region = Rect2(175, 1356, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jbavk"] +atlas = ExtResource("198_k83sm") +region = Rect2(350, 1356, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ncorq"] +atlas = ExtResource("198_k83sm") +region = Rect2(525, 1356, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mdvft"] +atlas = ExtResource("198_k83sm") +region = Rect2(700, 1356, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ljrf5"] +atlas = ExtResource("198_k83sm") +region = Rect2(875, 1356, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r7ll6"] +atlas = ExtResource("198_k83sm") +region = Rect2(1050, 1356, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6vssn"] +atlas = ExtResource("198_k83sm") +region = Rect2(1225, 1356, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4lr8r"] +atlas = ExtResource("198_k83sm") +region = Rect2(1400, 1356, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xp4kq"] +atlas = ExtResource("198_k83sm") +region = Rect2(0, 1582, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_idymv"] +atlas = ExtResource("198_k83sm") +region = Rect2(175, 1582, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ujl1x"] +atlas = ExtResource("198_k83sm") +region = Rect2(350, 1582, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_37wgc"] +atlas = ExtResource("198_k83sm") +region = Rect2(525, 1582, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g5fso"] +atlas = ExtResource("198_k83sm") +region = Rect2(700, 1582, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4a47d"] +atlas = ExtResource("198_k83sm") +region = Rect2(875, 1582, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eh3iw"] +atlas = ExtResource("198_k83sm") +region = Rect2(1050, 1582, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jc54a"] +atlas = ExtResource("198_k83sm") +region = Rect2(1225, 1582, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xyo6b"] +atlas = ExtResource("198_k83sm") +region = Rect2(1400, 1582, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gnyks"] +atlas = ExtResource("198_k83sm") +region = Rect2(0, 1808, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_08lae"] +atlas = ExtResource("198_k83sm") +region = Rect2(175, 1808, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r710l"] +atlas = ExtResource("198_k83sm") +region = Rect2(350, 1808, 175, 226) + +[sub_resource type="SpriteFrames" id="SpriteFrames_n4eka"] +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("199_kcq25") +region = Rect2(134, 0, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_56ojt"] +atlas = ExtResource("199_kcq25") +region = Rect2(402, 0, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jwkdt"] +atlas = ExtResource("199_kcq25") +region = Rect2(670, 0, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tklqq"] +atlas = ExtResource("199_kcq25") +region = Rect2(938, 0, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0kd7d"] +atlas = ExtResource("199_kcq25") +region = Rect2(1206, 0, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uoo6g"] +atlas = ExtResource("199_kcq25") +region = Rect2(134, 134, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eyk0y"] +atlas = ExtResource("199_kcq25") +region = Rect2(402, 134, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0imbq"] +atlas = ExtResource("199_kcq25") +region = Rect2(670, 134, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oys1t"] +atlas = ExtResource("199_kcq25") +region = Rect2(938, 134, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_06alo"] +atlas = ExtResource("199_kcq25") +region = Rect2(1206, 134, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uoxdj"] +atlas = ExtResource("199_kcq25") +region = Rect2(134, 268, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rcb13"] +atlas = ExtResource("199_kcq25") +region = Rect2(402, 268, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pj86n"] +atlas = ExtResource("199_kcq25") +region = Rect2(670, 268, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qpw3f"] +atlas = ExtResource("199_kcq25") +region = Rect2(938, 268, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gn6h7"] +atlas = ExtResource("199_kcq25") +region = Rect2(1206, 268, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lkh03"] +atlas = ExtResource("199_kcq25") +region = Rect2(134, 402, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pdi3o"] +atlas = ExtResource("199_kcq25") +region = Rect2(402, 402, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s3ywy"] +atlas = ExtResource("199_kcq25") +region = Rect2(670, 402, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6idxu"] +atlas = ExtResource("199_kcq25") +region = Rect2(938, 402, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qndi3"] +atlas = ExtResource("199_kcq25") +region = Rect2(1206, 402, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y4ahc"] +atlas = ExtResource("199_kcq25") +region = Rect2(134, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y5c6p"] +atlas = ExtResource("199_kcq25") +region = Rect2(402, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oa8p3"] +atlas = ExtResource("199_kcq25") +region = Rect2(670, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rc08e"] +atlas = ExtResource("199_kcq25") +region = Rect2(938, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8tw6t"] +atlas = ExtResource("199_kcq25") +region = Rect2(1206, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_njvn5"] +atlas = ExtResource("199_kcq25") +region = Rect2(134, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cwp0x"] +atlas = ExtResource("199_kcq25") +region = Rect2(402, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hch5s"] +atlas = ExtResource("199_kcq25") +region = Rect2(670, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vgjuv"] +atlas = ExtResource("199_kcq25") +region = Rect2(938, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1502j"] +atlas = ExtResource("199_kcq25") +region = Rect2(1206, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5m1ra"] +atlas = ExtResource("199_kcq25") +region = Rect2(134, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l0imt"] +atlas = ExtResource("199_kcq25") +region = Rect2(402, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ywb2s"] +atlas = ExtResource("199_kcq25") +region = Rect2(670, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x5582"] +atlas = ExtResource("199_kcq25") +region = Rect2(938, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4uy6l"] +atlas = ExtResource("199_kcq25") +region = Rect2(1206, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_50esb"] +atlas = ExtResource("199_kcq25") +region = Rect2(134, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xnham"] +atlas = ExtResource("199_kcq25") +region = Rect2(402, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j1cf1"] +atlas = ExtResource("199_kcq25") +region = Rect2(670, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jvde4"] +atlas = ExtResource("199_kcq25") +region = Rect2(938, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dvkgv"] +atlas = ExtResource("199_kcq25") +region = Rect2(1206, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3ant7"] +atlas = ExtResource("199_kcq25") +region = Rect2(134, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a6f8y"] +atlas = ExtResource("199_kcq25") +region = Rect2(402, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ancbh"] +atlas = ExtResource("199_kcq25") +region = Rect2(670, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yes2c"] +atlas = ExtResource("199_kcq25") +region = Rect2(938, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cs2h2"] +atlas = ExtResource("199_kcq25") +region = Rect2(1206, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n2i2d"] +atlas = ExtResource("199_kcq25") +region = Rect2(134, 1206, 134, 134) + +[sub_resource type="SpriteFrames" id="SpriteFrames_ec8sv"] +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="BoxShape3D" id="BoxShape3D_usgpm"] size = Vector3(1, 0.565, 2) @@ -2427,6 +5114,483 @@ _data = { &"attack": SubResource("Animation_nmlvd") } +[sub_resource type="Animation" id="Animation_30xy4"] +resource_name = "CurseHit" +length = 1.56667 +tracks/0/type = "value" +tracks/0/imported = false +tracks/0/enabled = true +tracks/0/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Curse Hit Effect:animation") +tracks/0/interp = 1 +tracks/0/loop_wrap = true +tracks/0/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"default"] +} +tracks/1/type = "value" +tracks/1/imported = false +tracks/1/enabled = true +tracks/1/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Curse Hit Effect:frame") +tracks/1/interp = 1 +tracks/1/loop_wrap = true +tracks/1/keys = { +"times": PackedFloat32Array(0, 1.56667), +"transitions": PackedFloat32Array(1, 1), +"update": 0, +"values": [0, 47] +} + +[sub_resource type="Animation" id="Animation_3pm1j"] +resource_name = "EarthHit" +length = 1.46667 +tracks/0/type = "value" +tracks/0/imported = false +tracks/0/enabled = true +tracks/0/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Earth Hit Effect:animation") +tracks/0/interp = 1 +tracks/0/loop_wrap = true +tracks/0/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"EARTH DAMAGE"] +} +tracks/1/type = "value" +tracks/1/imported = false +tracks/1/enabled = true +tracks/1/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Earth Hit Effect:frame") +tracks/1/interp = 1 +tracks/1/loop_wrap = true +tracks/1/keys = { +"times": PackedFloat32Array(0, 1.46667), +"transitions": PackedFloat32Array(1, 1), +"update": 0, +"values": [0, 44] +} + +[sub_resource type="Animation" id="Animation_6shfu"] +resource_name = "Fire Damage" +length = 2.93334 +tracks/0/type = "value" +tracks/0/imported = false +tracks/0/enabled = true +tracks/0/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/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("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/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("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/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)] +} +tracks/3/type = "value" +tracks/3/imported = false +tracks/3/enabled = true +tracks/3/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Rust Activation Effect:animation") +tracks/3/interp = 1 +tracks/3/loop_wrap = true +tracks/3/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"default"] +} +tracks/4/type = "value" +tracks/4/imported = false +tracks/4/enabled = true +tracks/4/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Rust Activation Effect:frame") +tracks/4/interp = 1 +tracks/4/loop_wrap = true +tracks/4/keys = { +"times": PackedFloat32Array(0, 2.93333), +"transitions": PackedFloat32Array(1, 1), +"update": 0, +"values": [88, 88] +} + +[sub_resource type="Animation" id="Animation_f5cjs"] +resource_name = "HolyHit" +length = 0.700003 +tracks/0/type = "value" +tracks/0/imported = false +tracks/0/enabled = true +tracks/0/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Holy Hit Layer Effect:animation") +tracks/0/interp = 1 +tracks/0/loop_wrap = true +tracks/0/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"HOLY"] +} +tracks/1/type = "value" +tracks/1/imported = false +tracks/1/enabled = true +tracks/1/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Holy Hit Layer Effect:frame") +tracks/1/interp = 1 +tracks/1/loop_wrap = true +tracks/1/keys = { +"times": PackedFloat32Array(0, 0.7), +"transitions": PackedFloat32Array(1, 1), +"update": 0, +"values": [0, 21] +} + +[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("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/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("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/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("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/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"] +} +tracks/3/type = "value" +tracks/3/imported = false +tracks/3/enabled = true +tracks/3/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Rust Activation Effect:animation") +tracks/3/interp = 1 +tracks/3/loop_wrap = true +tracks/3/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"default"] +} +tracks/4/type = "value" +tracks/4/imported = false +tracks/4/enabled = true +tracks/4/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Rust Activation Effect:frame") +tracks/4/interp = 1 +tracks/4/loop_wrap = true +tracks/4/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [88] +} +tracks/5/type = "value" +tracks/5/imported = false +tracks/5/enabled = true +tracks/5/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Holy Hit Layer Effect:animation") +tracks/5/interp = 1 +tracks/5/loop_wrap = true +tracks/5/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"HOLY"] +} +tracks/6/type = "value" +tracks/6/imported = false +tracks/6/enabled = true +tracks/6/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Holy Hit Layer Effect:frame") +tracks/6/interp = 1 +tracks/6/loop_wrap = true +tracks/6/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [0] +} +tracks/7/type = "value" +tracks/7/imported = false +tracks/7/enabled = true +tracks/7/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Wind Hit Layer Effect:animation") +tracks/7/interp = 1 +tracks/7/loop_wrap = true +tracks/7/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"default"] +} +tracks/8/type = "value" +tracks/8/imported = false +tracks/8/enabled = true +tracks/8/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Wind Hit Layer Effect:frame") +tracks/8/interp = 1 +tracks/8/loop_wrap = true +tracks/8/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [50] +} +tracks/9/type = "value" +tracks/9/imported = false +tracks/9/enabled = true +tracks/9/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Water Hit Layer 1 Effect:animation") +tracks/9/interp = 1 +tracks/9/loop_wrap = true +tracks/9/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"WATER DAMAGE"] +} +tracks/10/type = "value" +tracks/10/imported = false +tracks/10/enabled = true +tracks/10/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Water Hit Layer 1 Effect:frame") +tracks/10/interp = 1 +tracks/10/loop_wrap = true +tracks/10/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [29] +} +tracks/11/type = "value" +tracks/11/imported = false +tracks/11/enabled = true +tracks/11/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Water Hit Layer 2Effect:animation") +tracks/11/interp = 1 +tracks/11/loop_wrap = true +tracks/11/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"WATER"] +} +tracks/12/type = "value" +tracks/12/imported = false +tracks/12/enabled = true +tracks/12/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Water Hit Layer 2Effect:frame") +tracks/12/interp = 1 +tracks/12/loop_wrap = true +tracks/12/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [51] +} +tracks/13/type = "value" +tracks/13/imported = false +tracks/13/enabled = true +tracks/13/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Curse Hit Effect:animation") +tracks/13/interp = 1 +tracks/13/loop_wrap = true +tracks/13/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"default"] +} +tracks/14/type = "value" +tracks/14/imported = false +tracks/14/enabled = true +tracks/14/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Curse Hit Effect:frame") +tracks/14/interp = 1 +tracks/14/loop_wrap = true +tracks/14/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [47] +} +tracks/15/type = "value" +tracks/15/imported = false +tracks/15/enabled = true +tracks/15/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Earth Hit Effect:animation") +tracks/15/interp = 1 +tracks/15/loop_wrap = true +tracks/15/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"WATER DAMAGE"] +} +tracks/16/type = "value" +tracks/16/imported = false +tracks/16/enabled = true +tracks/16/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Earth Hit Effect:frame") +tracks/16/interp = 1 +tracks/16/loop_wrap = true +tracks/16/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [0] +} + +[sub_resource type="Animation" id="Animation_0tqwp"] +resource_name = "RustActivate" +length = 1.46667 +step = 0.0166667 +tracks/0/type = "value" +tracks/0/imported = false +tracks/0/enabled = true +tracks/0/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Rust Activation Effect:animation") +tracks/0/interp = 1 +tracks/0/loop_wrap = true +tracks/0/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"default"] +} +tracks/1/type = "value" +tracks/1/imported = false +tracks/1/enabled = true +tracks/1/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Rust Activation Effect:frame") +tracks/1/interp = 1 +tracks/1/loop_wrap = true +tracks/1/keys = { +"times": PackedFloat32Array(0, 1.46667), +"transitions": PackedFloat32Array(1, 1), +"update": 0, +"values": [0, 88] +} + +[sub_resource type="Animation" id="Animation_q5dfb"] +resource_name = "WaterHit" +length = 1.7 +tracks/0/type = "value" +tracks/0/imported = false +tracks/0/enabled = true +tracks/0/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Water Hit Layer 1 Effect:animation") +tracks/0/interp = 1 +tracks/0/loop_wrap = true +tracks/0/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"WATER DAMAGE"] +} +tracks/1/type = "value" +tracks/1/imported = false +tracks/1/enabled = true +tracks/1/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Water Hit Layer 1 Effect:frame") +tracks/1/interp = 1 +tracks/1/loop_wrap = true +tracks/1/keys = { +"times": PackedFloat32Array(0, 1), +"transitions": PackedFloat32Array(1, 1), +"update": 0, +"values": [0, 29] +} +tracks/2/type = "value" +tracks/2/imported = false +tracks/2/enabled = true +tracks/2/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Water Hit Layer 2Effect:animation") +tracks/2/interp = 1 +tracks/2/loop_wrap = true +tracks/2/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"WATER"] +} +tracks/3/type = "value" +tracks/3/imported = false +tracks/3/enabled = true +tracks/3/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Water Hit Layer 2Effect:frame") +tracks/3/interp = 1 +tracks/3/loop_wrap = true +tracks/3/keys = { +"times": PackedFloat32Array(0, 1.7), +"transitions": PackedFloat32Array(1, 1), +"update": 0, +"values": [0, 51] +} + +[sub_resource type="Animation" id="Animation_godpv"] +resource_name = "WindHit" +length = 0.833335 +step = 0.0166667 +tracks/0/type = "value" +tracks/0/imported = false +tracks/0/enabled = true +tracks/0/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Wind Hit Layer Effect:animation") +tracks/0/interp = 1 +tracks/0/loop_wrap = true +tracks/0/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"default"] +} +tracks/1/type = "value" +tracks/1/imported = false +tracks/1/enabled = true +tracks/1/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Wind Hit Layer Effect:frame") +tracks/1/interp = 1 +tracks/1/loop_wrap = true +tracks/1/keys = { +"times": PackedFloat32Array(0, 0.833333), +"transitions": PackedFloat32Array(1, 1), +"update": 0, +"values": [0, 50] +} + +[sub_resource type="AnimationLibrary" id="AnimationLibrary_0tqwp"] +_data = { +&"CurseHit": SubResource("Animation_30xy4"), +&"EarthHit": SubResource("Animation_3pm1j"), +&"FireHit": SubResource("Animation_6shfu"), +&"HolyHit": SubResource("Animation_f5cjs"), +&"RESET": SubResource("Animation_cftgd"), +&"RustActivate": SubResource("Animation_0tqwp"), +&"WaterHit": SubResource("Animation_q5dfb"), +&"WindHit": SubResource("Animation_godpv") +} + [node name="EnemyModelView" type="Node3D"] script = ExtResource("1_718m1") EnemyLoreInfo = SubResource("Resource_pyy2h") @@ -2460,6 +5624,60 @@ rotation = 0.0174533 sprite_frames = SubResource("SpriteFrames_673a4") animation = &"idle_back_walk" +[node name="VFXSprites" type="Node2D" parent="Sprite3D/SubViewportContainer/SubViewport"] + +[node name="Rust Activation Effect" type="AnimatedSprite2D" parent="Sprite3D/SubViewportContainer/SubViewport/VFXSprites"] +position = Vector2(400, 400) +scale = Vector2(1.54, 1.54) +sprite_frames = SubResource("SpriteFrames_01v4k") +frame = 88 + +[node name="Holy Hit Layer Effect" type="AnimatedSprite2D" parent="Sprite3D/SubViewportContainer/SubViewport/VFXSprites"] +position = Vector2(400, 400) +scale = Vector2(0.675, 0.675) +sprite_frames = SubResource("SpriteFrames_jltoa") +animation = &"HOLY" + +[node name="Wind Hit Layer Effect" type="AnimatedSprite2D" parent="Sprite3D/SubViewportContainer/SubViewport/VFXSprites"] +position = Vector2(400, 400) +scale = Vector2(1.445, 1.445) +sprite_frames = SubResource("SpriteFrames_oimc0") +frame = 50 + +[node name="Flame Hit Effect" type="AnimatedSprite2D" parent="Sprite3D/SubViewportContainer/SubViewport/VFXSprites"] +position = Vector2(400, 400) +scale = Vector2(3.445, 3.445) +sprite_frames = SubResource("SpriteFrames_xcm4a") +animation = &"Flame Damage" +frame = 40 + +[node name="Water Hit Layer 1 Effect" type="AnimatedSprite2D" parent="Sprite3D/SubViewportContainer/SubViewport/VFXSprites"] +position = Vector2(400, 400) +scale = Vector2(2.215, 2.215) +sprite_frames = SubResource("SpriteFrames_ddwwq") +animation = &"WATER DAMAGE" +frame = 29 + +[node name="Water Hit Layer 2Effect" type="AnimatedSprite2D" parent="Sprite3D/SubViewportContainer/SubViewport/VFXSprites"] +position = Vector2(400, 400) +scale = Vector2(1.105, 0.895) +sprite_frames = SubResource("SpriteFrames_n4eka") +animation = &"WATER" +frame = 51 + +[node name="Curse Hit Effect" type="AnimatedSprite2D" parent="Sprite3D/SubViewportContainer/SubViewport/VFXSprites"] +texture_filter = 1 +position = Vector2(400, 400) +scale = Vector2(2.78, 2.78) +sprite_frames = SubResource("SpriteFrames_ec8sv") +frame = 47 + +[node name="Earth Hit Effect" type="AnimatedSprite2D" parent="Sprite3D/SubViewportContainer/SubViewport/VFXSprites"] +position = Vector2(400, 400) +scale = Vector2(2.005, 2.005) +sprite_frames = SubResource("SpriteFrames_ddwwq") +animation = &"WATER DAMAGE" + [node name="Shadow" type="Sprite3D" parent="Sprite3D"] transform = Transform3D(0.93, 0, 0, 0, -4.06516e-08, 0.93, 0, -0.93, -4.06516e-08, 0.00393164, -0.670112, 0.0077811) transparency = 0.1 @@ -2524,3 +5742,51 @@ script = ExtResource("200_4h5gj") ProjectileScene = ExtResource("200_mno7m") [node name="Marker3D" type="Marker3D" parent="ProjectileSystem"] + +[node name="VFXAnimations" type="Node" parent="."] + +[node name="FlameHitAnimation" type="AnimationPlayer" parent="VFXAnimations"] +unique_name_in_owner = true +libraries = { +&"": SubResource("AnimationLibrary_0tqwp") +} + +[node name="RustHitAnimation" type="AnimationPlayer" parent="VFXAnimations"] +unique_name_in_owner = true +libraries = { +&"": SubResource("AnimationLibrary_0tqwp") +} + +[node name="HolyHitAnimation" type="AnimationPlayer" parent="VFXAnimations"] +unique_name_in_owner = true +libraries = { +&"": SubResource("AnimationLibrary_0tqwp") +} + +[node name="WindHitAnimation" type="AnimationPlayer" parent="VFXAnimations"] +unique_name_in_owner = true +root_node = NodePath("../../Secondary Animation Player") +libraries = { +&"": SubResource("AnimationLibrary_0tqwp") +} + +[node name="WaterHitAnimation" type="AnimationPlayer" parent="VFXAnimations"] +unique_name_in_owner = true +root_node = NodePath("../../Secondary Animation Player") +libraries = { +&"": SubResource("AnimationLibrary_0tqwp") +} + +[node name="CurseHitAnimation" type="AnimationPlayer" parent="VFXAnimations"] +unique_name_in_owner = true +root_node = NodePath("../../Secondary Animation Player") +libraries = { +&"": SubResource("AnimationLibrary_0tqwp") +} + +[node name="EarthHitAnimation" type="AnimationPlayer" parent="VFXAnimations"] +unique_name_in_owner = true +root_node = NodePath("../../Secondary Animation Player") +libraries = { +&"": SubResource("AnimationLibrary_0tqwp") +} 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 64b8c36b..312a53e9 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=621 format=3 uid="uid://g84hcmgo3gtl"] +[gd_scene load_steps=627 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"] @@ -1442,6 +1442,9 @@ region = Rect2(3072, 512, 512, 512) animations = [{ "frames": [{ "duration": 1.0, +"texture": null +}, { +"duration": 1.0, "texture": SubResource("AtlasTexture_slhg2") }, { "duration": 1.0, @@ -4507,13 +4510,69 @@ _data = { &"RESET": SubResource("Animation_8wlnr") } -[sub_resource type="Animation" id="Animation_6shfu"] -resource_name = "Fire Damage" -length = 1.33334 +[sub_resource type="Animation" id="Animation_30xy4"] +resource_name = "CurseHit" +length = 1.56667 tracks/0/type = "value" tracks/0/imported = false tracks/0/enabled = true -tracks/0/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/Flame Hit Effect:animation") +tracks/0/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Curse Hit Effect:animation") +tracks/0/interp = 1 +tracks/0/loop_wrap = true +tracks/0/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"default"] +} +tracks/1/type = "value" +tracks/1/imported = false +tracks/1/enabled = true +tracks/1/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Curse Hit Effect:frame") +tracks/1/interp = 1 +tracks/1/loop_wrap = true +tracks/1/keys = { +"times": PackedFloat32Array(0, 1.56667), +"transitions": PackedFloat32Array(1, 1), +"update": 0, +"values": [0, 47] +} + +[sub_resource type="Animation" id="Animation_3pm1j"] +resource_name = "EarthHit" +length = 1.46667 +tracks/0/type = "value" +tracks/0/imported = false +tracks/0/enabled = true +tracks/0/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Earth Hit Effect:animation") +tracks/0/interp = 1 +tracks/0/loop_wrap = true +tracks/0/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"EARTH DAMAGE"] +} +tracks/1/type = "value" +tracks/1/imported = false +tracks/1/enabled = true +tracks/1/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Earth Hit Effect:frame") +tracks/1/interp = 1 +tracks/1/loop_wrap = true +tracks/1/keys = { +"times": PackedFloat32Array(0, 1.46667), +"transitions": PackedFloat32Array(1, 1), +"update": 0, +"values": [0, 44] +} + +[sub_resource type="Animation" id="Animation_6shfu"] +resource_name = "Fire Damage" +length = 2.93334 +tracks/0/type = "value" +tracks/0/imported = false +tracks/0/enabled = true +tracks/0/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Flame Hit Effect:animation") tracks/0/interp = 1 tracks/0/loop_wrap = true tracks/0/keys = { @@ -4525,7 +4584,7 @@ tracks/0/keys = { tracks/1/type = "value" tracks/1/imported = false tracks/1/enabled = true -tracks/1/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/Flame Hit Effect:frame") +tracks/1/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Flame Hit Effect:frame") tracks/1/interp = 1 tracks/1/loop_wrap = true tracks/1/keys = { @@ -4537,7 +4596,7 @@ tracks/1/keys = { tracks/2/type = "value" tracks/2/imported = false tracks/2/enabled = true -tracks/2/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/Flame Hit Effect:modulate") +tracks/2/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Flame Hit Effect:modulate") tracks/2/interp = 1 tracks/2/loop_wrap = true tracks/2/keys = { @@ -4546,13 +4605,65 @@ tracks/2/keys = { "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)] } +tracks/3/type = "value" +tracks/3/imported = false +tracks/3/enabled = true +tracks/3/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Rust Activation Effect:animation") +tracks/3/interp = 1 +tracks/3/loop_wrap = true +tracks/3/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"default"] +} +tracks/4/type = "value" +tracks/4/imported = false +tracks/4/enabled = true +tracks/4/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Rust Activation Effect:frame") +tracks/4/interp = 1 +tracks/4/loop_wrap = true +tracks/4/keys = { +"times": PackedFloat32Array(0, 2.93333), +"transitions": PackedFloat32Array(1, 1), +"update": 0, +"values": [88, 88] +} + +[sub_resource type="Animation" id="Animation_f5cjs"] +resource_name = "HolyHit" +length = 0.700003 +tracks/0/type = "value" +tracks/0/imported = false +tracks/0/enabled = true +tracks/0/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Holy Hit Layer Effect:animation") +tracks/0/interp = 1 +tracks/0/loop_wrap = true +tracks/0/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"HOLY"] +} +tracks/1/type = "value" +tracks/1/imported = false +tracks/1/enabled = true +tracks/1/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Holy Hit Layer Effect:frame") +tracks/1/interp = 1 +tracks/1/loop_wrap = true +tracks/1/keys = { +"times": PackedFloat32Array(0, 0.7), +"transitions": PackedFloat32Array(1, 1), +"update": 0, +"values": [0, 21] +} [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("../Sprite3D/SubViewportContainer/SubViewport/Flame Hit Effect:modulate") +tracks/0/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Flame Hit Effect:modulate") tracks/0/interp = 1 tracks/0/loop_wrap = true tracks/0/keys = { @@ -4564,7 +4675,7 @@ tracks/0/keys = { tracks/1/type = "value" tracks/1/imported = false tracks/1/enabled = true -tracks/1/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/Flame Hit Effect:frame") +tracks/1/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Flame Hit Effect:frame") tracks/1/interp = 1 tracks/1/loop_wrap = true tracks/1/keys = { @@ -4576,7 +4687,7 @@ tracks/1/keys = { tracks/2/type = "value" tracks/2/imported = false tracks/2/enabled = true -tracks/2/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/Flame Hit Effect:animation") +tracks/2/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Flame Hit Effect:animation") tracks/2/interp = 1 tracks/2/loop_wrap = true tracks/2/keys = { @@ -4585,11 +4696,295 @@ tracks/2/keys = { "update": 1, "values": [&"Flame Damage"] } +tracks/3/type = "value" +tracks/3/imported = false +tracks/3/enabled = true +tracks/3/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Rust Activation Effect:animation") +tracks/3/interp = 1 +tracks/3/loop_wrap = true +tracks/3/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"default"] +} +tracks/4/type = "value" +tracks/4/imported = false +tracks/4/enabled = true +tracks/4/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Rust Activation Effect:frame") +tracks/4/interp = 1 +tracks/4/loop_wrap = true +tracks/4/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [88] +} +tracks/5/type = "value" +tracks/5/imported = false +tracks/5/enabled = true +tracks/5/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Holy Hit Layer Effect:animation") +tracks/5/interp = 1 +tracks/5/loop_wrap = true +tracks/5/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"HOLY"] +} +tracks/6/type = "value" +tracks/6/imported = false +tracks/6/enabled = true +tracks/6/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Holy Hit Layer Effect:frame") +tracks/6/interp = 1 +tracks/6/loop_wrap = true +tracks/6/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [0] +} +tracks/7/type = "value" +tracks/7/imported = false +tracks/7/enabled = true +tracks/7/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Wind Hit Layer Effect:animation") +tracks/7/interp = 1 +tracks/7/loop_wrap = true +tracks/7/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"default"] +} +tracks/8/type = "value" +tracks/8/imported = false +tracks/8/enabled = true +tracks/8/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Wind Hit Layer Effect:frame") +tracks/8/interp = 1 +tracks/8/loop_wrap = true +tracks/8/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [50] +} +tracks/9/type = "value" +tracks/9/imported = false +tracks/9/enabled = true +tracks/9/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Water Hit Layer 1 Effect:animation") +tracks/9/interp = 1 +tracks/9/loop_wrap = true +tracks/9/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"WATER DAMAGE"] +} +tracks/10/type = "value" +tracks/10/imported = false +tracks/10/enabled = true +tracks/10/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Water Hit Layer 1 Effect:frame") +tracks/10/interp = 1 +tracks/10/loop_wrap = true +tracks/10/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [29] +} +tracks/11/type = "value" +tracks/11/imported = false +tracks/11/enabled = true +tracks/11/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Water Hit Layer 2Effect:animation") +tracks/11/interp = 1 +tracks/11/loop_wrap = true +tracks/11/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"WATER"] +} +tracks/12/type = "value" +tracks/12/imported = false +tracks/12/enabled = true +tracks/12/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Water Hit Layer 2Effect:frame") +tracks/12/interp = 1 +tracks/12/loop_wrap = true +tracks/12/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [51] +} +tracks/13/type = "value" +tracks/13/imported = false +tracks/13/enabled = true +tracks/13/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Curse Hit Effect:animation") +tracks/13/interp = 1 +tracks/13/loop_wrap = true +tracks/13/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"default"] +} +tracks/14/type = "value" +tracks/14/imported = false +tracks/14/enabled = true +tracks/14/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Curse Hit Effect:frame") +tracks/14/interp = 1 +tracks/14/loop_wrap = true +tracks/14/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [47] +} +tracks/15/type = "value" +tracks/15/imported = false +tracks/15/enabled = true +tracks/15/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Earth Hit Effect:animation") +tracks/15/interp = 1 +tracks/15/loop_wrap = true +tracks/15/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"WATER DAMAGE"] +} +tracks/16/type = "value" +tracks/16/imported = false +tracks/16/enabled = true +tracks/16/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Earth Hit Effect:frame") +tracks/16/interp = 1 +tracks/16/loop_wrap = true +tracks/16/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [0] +} + +[sub_resource type="Animation" id="Animation_0tqwp"] +resource_name = "RustActivate" +length = 1.46667 +step = 0.0166667 +tracks/0/type = "value" +tracks/0/imported = false +tracks/0/enabled = true +tracks/0/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Rust Activation Effect:animation") +tracks/0/interp = 1 +tracks/0/loop_wrap = true +tracks/0/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"default"] +} +tracks/1/type = "value" +tracks/1/imported = false +tracks/1/enabled = true +tracks/1/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Rust Activation Effect:frame") +tracks/1/interp = 1 +tracks/1/loop_wrap = true +tracks/1/keys = { +"times": PackedFloat32Array(0, 1.46667), +"transitions": PackedFloat32Array(1, 1), +"update": 0, +"values": [0, 88] +} + +[sub_resource type="Animation" id="Animation_q5dfb"] +resource_name = "WaterHit" +length = 1.7 +tracks/0/type = "value" +tracks/0/imported = false +tracks/0/enabled = true +tracks/0/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Water Hit Layer 1 Effect:animation") +tracks/0/interp = 1 +tracks/0/loop_wrap = true +tracks/0/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"WATER DAMAGE"] +} +tracks/1/type = "value" +tracks/1/imported = false +tracks/1/enabled = true +tracks/1/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Water Hit Layer 1 Effect:frame") +tracks/1/interp = 1 +tracks/1/loop_wrap = true +tracks/1/keys = { +"times": PackedFloat32Array(0, 1), +"transitions": PackedFloat32Array(1, 1), +"update": 0, +"values": [0, 29] +} +tracks/2/type = "value" +tracks/2/imported = false +tracks/2/enabled = true +tracks/2/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Water Hit Layer 2Effect:animation") +tracks/2/interp = 1 +tracks/2/loop_wrap = true +tracks/2/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"WATER"] +} +tracks/3/type = "value" +tracks/3/imported = false +tracks/3/enabled = true +tracks/3/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Water Hit Layer 2Effect:frame") +tracks/3/interp = 1 +tracks/3/loop_wrap = true +tracks/3/keys = { +"times": PackedFloat32Array(0, 1.7), +"transitions": PackedFloat32Array(1, 1), +"update": 0, +"values": [0, 51] +} + +[sub_resource type="Animation" id="Animation_godpv"] +resource_name = "WindHit" +length = 0.833335 +step = 0.0166667 +tracks/0/type = "value" +tracks/0/imported = false +tracks/0/enabled = true +tracks/0/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Wind Hit Layer Effect:animation") +tracks/0/interp = 1 +tracks/0/loop_wrap = true +tracks/0/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"default"] +} +tracks/1/type = "value" +tracks/1/imported = false +tracks/1/enabled = true +tracks/1/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Wind Hit Layer Effect:frame") +tracks/1/interp = 1 +tracks/1/loop_wrap = true +tracks/1/keys = { +"times": PackedFloat32Array(0, 0.833333), +"transitions": PackedFloat32Array(1, 1), +"update": 0, +"values": [0, 50] +} [sub_resource type="AnimationLibrary" id="AnimationLibrary_0tqwp"] _data = { -&"Fire Damage": SubResource("Animation_6shfu"), -&"RESET": SubResource("Animation_cftgd") +&"CurseHit": SubResource("Animation_30xy4"), +&"EarthHit": SubResource("Animation_3pm1j"), +&"FireHit": SubResource("Animation_6shfu"), +&"HolyHit": SubResource("Animation_f5cjs"), +&"RESET": SubResource("Animation_cftgd"), +&"RustActivate": SubResource("Animation_0tqwp"), +&"WaterHit": SubResource("Animation_q5dfb"), +&"WindHit": SubResource("Animation_godpv") } [node name="EnemyModelView" type="Node3D"] @@ -4625,66 +5020,59 @@ position = Vector2(400, 400) sprite_frames = SubResource("SpriteFrames_sobol") animation = &"idle_front" -[node name="Rust Activation Effect" type="AnimatedSprite2D" parent="Sprite3D/SubViewportContainer/SubViewport"] +[node name="VFXSprites" type="Node2D" parent="Sprite3D/SubViewportContainer/SubViewport"] + +[node name="Rust Activation Effect" type="AnimatedSprite2D" parent="Sprite3D/SubViewportContainer/SubViewport/VFXSprites"] position = Vector2(400, 400) scale = Vector2(1.54, 1.54) sprite_frames = SubResource("SpriteFrames_s0t7i") frame = 88 -frame_progress = 1.0 -[node name="Holy Hit Layer Effect" type="AnimatedSprite2D" parent="Sprite3D/SubViewportContainer/SubViewport"] +[node name="Holy Hit Layer Effect" type="AnimatedSprite2D" parent="Sprite3D/SubViewportContainer/SubViewport/VFXSprites"] position = Vector2(400, 400) scale = Vector2(0.675, 0.675) sprite_frames = SubResource("SpriteFrames_jy23v") animation = &"HOLY" -frame = 20 -frame_progress = 1.0 -[node name="Wind Hit Layer Effect" type="AnimatedSprite2D" parent="Sprite3D/SubViewportContainer/SubViewport"] +[node name="Wind Hit Layer Effect" type="AnimatedSprite2D" parent="Sprite3D/SubViewportContainer/SubViewport/VFXSprites"] position = Vector2(400, 400) scale = Vector2(1.445, 1.445) sprite_frames = SubResource("SpriteFrames_olmld") frame = 50 -frame_progress = 1.0 -[node name="Flame Hit Effect" type="AnimatedSprite2D" parent="Sprite3D/SubViewportContainer/SubViewport"] +[node name="Flame Hit Effect" type="AnimatedSprite2D" parent="Sprite3D/SubViewportContainer/SubViewport/VFXSprites"] position = Vector2(400, 400) scale = Vector2(3.445, 3.445) sprite_frames = SubResource("SpriteFrames_a23f0") animation = &"Flame Damage" frame = 40 -[node name="Water Hit Layer 1 Effect" type="AnimatedSprite2D" parent="Sprite3D/SubViewportContainer/SubViewport"] +[node name="Water Hit Layer 1 Effect" type="AnimatedSprite2D" parent="Sprite3D/SubViewportContainer/SubViewport/VFXSprites"] position = Vector2(400, 400) scale = Vector2(2.215, 2.215) sprite_frames = SubResource("SpriteFrames_bsjfy") animation = &"WATER DAMAGE" frame = 29 -frame_progress = 1.0 -[node name="Water Hit Layer 2Effect" type="AnimatedSprite2D" parent="Sprite3D/SubViewportContainer/SubViewport"] +[node name="Water Hit Layer 2Effect" type="AnimatedSprite2D" parent="Sprite3D/SubViewportContainer/SubViewport/VFXSprites"] position = Vector2(400, 400) scale = Vector2(1.105, 0.895) sprite_frames = SubResource("SpriteFrames_cht2c") animation = &"WATER" frame = 51 -frame_progress = 1.0 -[node name="Curse Hit Effect" type="AnimatedSprite2D" parent="Sprite3D/SubViewportContainer/SubViewport"] +[node name="Curse Hit Effect" type="AnimatedSprite2D" parent="Sprite3D/SubViewportContainer/SubViewport/VFXSprites"] texture_filter = 1 position = Vector2(400, 400) scale = Vector2(2.78, 2.78) sprite_frames = SubResource("SpriteFrames_v3crq") frame = 47 -frame_progress = 1.0 -[node name="Earth Hit Effect" type="AnimatedSprite2D" parent="Sprite3D/SubViewportContainer/SubViewport"] +[node name="Earth Hit Effect" type="AnimatedSprite2D" parent="Sprite3D/SubViewportContainer/SubViewport/VFXSprites"] position = Vector2(400, 400) scale = Vector2(2.005, 2.005) sprite_frames = SubResource("SpriteFrames_bsjfy") animation = &"WATER DAMAGE" -frame = 29 -frame_progress = 1.0 [node name="Hitbox" type="Area3D" parent="."] unique_name_in_owner = true @@ -4731,8 +5119,53 @@ transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.72758, 0) autoplay = true bus = &"SFX" -[node name="Flame Animation Player" type="AnimationPlayer" parent="."] -root_node = NodePath("../Secondary Animation Player") +[node name="VFXAnimations" type="Node" parent="."] + +[node name="FlameHitAnimation" type="AnimationPlayer" parent="VFXAnimations"] +unique_name_in_owner = true +root_node = NodePath("../../Secondary Animation Player") +libraries = { +&"": SubResource("AnimationLibrary_0tqwp") +} + +[node name="RustHitAnimation" type="AnimationPlayer" parent="VFXAnimations"] +unique_name_in_owner = true +root_node = NodePath("../../Secondary Animation Player") +libraries = { +&"": SubResource("AnimationLibrary_0tqwp") +} + +[node name="HolyHitAnimation" type="AnimationPlayer" parent="VFXAnimations"] +unique_name_in_owner = true +root_node = NodePath("../../Secondary Animation Player") +libraries = { +&"": SubResource("AnimationLibrary_0tqwp") +} + +[node name="WindHitAnimation" type="AnimationPlayer" parent="VFXAnimations"] +unique_name_in_owner = true +root_node = NodePath("../../Secondary Animation Player") +libraries = { +&"": SubResource("AnimationLibrary_0tqwp") +} + +[node name="WaterHitAnimation" type="AnimationPlayer" parent="VFXAnimations"] +unique_name_in_owner = true +root_node = NodePath("../../Secondary Animation Player") +libraries = { +&"": SubResource("AnimationLibrary_0tqwp") +} + +[node name="CurseHitAnimation" type="AnimationPlayer" parent="VFXAnimations"] +unique_name_in_owner = true +root_node = NodePath("../../Secondary Animation Player") +libraries = { +&"": SubResource("AnimationLibrary_0tqwp") +} + +[node name="EarthHitAnimation" type="AnimationPlayer" parent="VFXAnimations"] +unique_name_in_owner = true +root_node = NodePath("../../Secondary Animation Player") libraries = { &"": SubResource("AnimationLibrary_0tqwp") } diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/05. ballos/BallosModelView.tscn b/Zennysoft.Game.Ma/src/enemy/enemy_types/05. ballos/BallosModelView.tscn index 8259dad3..6d6d2893 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/05. ballos/BallosModelView.tscn +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/05. ballos/BallosModelView.tscn @@ -1,4 +1,4 @@ -[gd_scene load_steps=173 format=3 uid="uid://dppmk4nx2le20"] +[gd_scene load_steps=568 format=3 uid="uid://dppmk4nx2le20"] [ext_resource type="Script" uid="uid://cvr1qimxpignl" path="res://src/enemy/EnemyModelView2D.cs" id="1_ueqp5"] [ext_resource type="Texture2D" uid="uid://bgkx485uy065" path="res://src/enemy/enemy_types/05. ballos/animations/WALK BACK/1.png" id="3_b3ny6"] @@ -93,13 +93,21 @@ [ext_resource type="Texture2D" uid="uid://cuiwtl48d2rgo" path="res://src/enemy/enemy_types/05. ballos/animations/Ballos Side Attack Frames/ATTACK 2 SIDE/frame_23_delay-0.01s.png" id="72_3ev0n"] [ext_resource type="Texture2D" uid="uid://jsknxkujml8k" path="res://src/enemy/enemy_types/05. ballos/animations/Ballos Side Attack Frames/ATTACK 2 BACK/frame_11_delay-0.01s.png" id="72_4q1uq"] [ext_resource type="Texture2D" uid="uid://cejae00ramgdn" path="res://src/enemy/enemy_types/05. ballos/animations/Ballos Side Attack Frames/ATTACK 2 SIDE/frame_24_delay-0.01s.png" id="73_o6ljw"] +[ext_resource type="Texture2D" uid="uid://dq70aipwl1qrg" path="res://src/vfx/Enemy Affected/Rust Particles.png" id="94_3c83d"] [ext_resource type="AudioStream" uid="uid://s8weoqkpc155" path="res://src/audio/sfx/enemy_balos_rolling.ogg" id="94_i3hgg"] +[ext_resource type="Texture2D" uid="uid://by0ehygy7bq13" path="res://src/vfx/Enemy Affected/Holy Damage.png" id="95_my1tv"] [ext_resource type="Texture2D" uid="uid://dh0upso5h2agw" path="res://src/vfx/Enemy/ballos_SPELL.png" id="95_o6ljw"] +[ext_resource type="Texture2D" uid="uid://dqqhu0s51o3n7" path="res://src/vfx/Enemy Affected/Wind Damage.png" id="96_8xbn0"] [ext_resource type="AnimationNodeStateMachine" uid="uid://co7lshemjrro8" path="res://src/enemy/animation_state_machines/IdleStateMachine.tres" id="96_i3hgg"] [ext_resource type="AnimationNodeStateMachine" uid="uid://clybvwx3itfeo" path="res://src/enemy/animation_state_machines/SecondaryAttackStateMachine.tres" id="97_i3hgg"] +[ext_resource type="Texture2D" uid="uid://dh6mk1c35nymx" path="res://src/vfx/Enemy Affected/firedamage.png" id="97_ice28"] [ext_resource type="AnimationNodeStateMachine" uid="uid://cbq8xog50cjjy" path="res://src/enemy/animation_state_machines/PrimaryAttackStateMachine.tres" id="97_ktg2j"] [ext_resource type="AnimationNodeStateMachine" uid="uid://cy2ngl55c0rws" path="res://src/enemy/animation_state_machines/WalkingStateMachine.tres" id="98_ktg2j"] +[ext_resource type="Texture2D" uid="uid://7a42df2ijrmv" path="res://src/vfx/Enemy Affected/earth damage.png" id="98_yxvs8"] +[ext_resource type="Texture2D" uid="uid://cot4wx5fg5pfs" path="res://src/vfx/Enemy Affected/water_hit_layer2.png" id="99_jk3i6"] +[ext_resource type="Texture2D" uid="uid://cbei66g134fgv" path="res://src/vfx/Enemy Affected/water layer 1.png" id="100_h4bl6"] [ext_resource type="Texture2D" uid="uid://dafpnwkwcukp4" path="res://src/vfx/shadow_test_1.png" id="100_ktg2j"] +[ext_resource type="Texture2D" uid="uid://bp6npqoco5fl3" path="res://src/vfx/Enemy Affected/curse_damage.png" id="101_tfnvq"] [sub_resource type="ViewportTexture" id="ViewportTexture_h1kaf"] viewport_path = NodePath("Sprite3D/SubViewportContainer/SubViewport") @@ -424,6 +432,2685 @@ animations = [{ "speed": 5.0 }] +[sub_resource type="AtlasTexture" id="AtlasTexture_4o5f2"] +atlas = ExtResource("94_3c83d") +region = Rect2(1206, 402, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r8ggx"] +atlas = ExtResource("94_3c83d") +region = Rect2(1340, 402, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xafpd"] +atlas = ExtResource("94_3c83d") +region = Rect2(1474, 402, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_73dpc"] +atlas = ExtResource("94_3c83d") +region = Rect2(0, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vppxt"] +atlas = ExtResource("94_3c83d") +region = Rect2(134, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nk562"] +atlas = ExtResource("94_3c83d") +region = Rect2(268, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dwu2q"] +atlas = ExtResource("94_3c83d") +region = Rect2(402, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w3p3j"] +atlas = ExtResource("94_3c83d") +region = Rect2(536, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ig0ip"] +atlas = ExtResource("94_3c83d") +region = Rect2(670, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r4enw"] +atlas = ExtResource("94_3c83d") +region = Rect2(804, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uy6hg"] +atlas = ExtResource("94_3c83d") +region = Rect2(938, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_85jwg"] +atlas = ExtResource("94_3c83d") +region = Rect2(1072, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ln7dl"] +atlas = ExtResource("94_3c83d") +region = Rect2(1206, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3vvgp"] +atlas = ExtResource("94_3c83d") +region = Rect2(1340, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_01f7m"] +atlas = ExtResource("94_3c83d") +region = Rect2(1474, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pp21u"] +atlas = ExtResource("94_3c83d") +region = Rect2(0, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1aldj"] +atlas = ExtResource("94_3c83d") +region = Rect2(134, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xv5pw"] +atlas = ExtResource("94_3c83d") +region = Rect2(268, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_14lh3"] +atlas = ExtResource("94_3c83d") +region = Rect2(402, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xxid6"] +atlas = ExtResource("94_3c83d") +region = Rect2(536, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y6yeo"] +atlas = ExtResource("94_3c83d") +region = Rect2(670, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2aohu"] +atlas = ExtResource("94_3c83d") +region = Rect2(804, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ebvc7"] +atlas = ExtResource("94_3c83d") +region = Rect2(938, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yd50d"] +atlas = ExtResource("94_3c83d") +region = Rect2(1072, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yimdu"] +atlas = ExtResource("94_3c83d") +region = Rect2(1206, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dync1"] +atlas = ExtResource("94_3c83d") +region = Rect2(1340, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jsjdk"] +atlas = ExtResource("94_3c83d") +region = Rect2(1474, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ueih5"] +atlas = ExtResource("94_3c83d") +region = Rect2(0, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k0hut"] +atlas = ExtResource("94_3c83d") +region = Rect2(134, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kybji"] +atlas = ExtResource("94_3c83d") +region = Rect2(268, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u5vpt"] +atlas = ExtResource("94_3c83d") +region = Rect2(402, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wko4t"] +atlas = ExtResource("94_3c83d") +region = Rect2(536, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ru86o"] +atlas = ExtResource("94_3c83d") +region = Rect2(670, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uybbj"] +atlas = ExtResource("94_3c83d") +region = Rect2(804, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s6pp8"] +atlas = ExtResource("94_3c83d") +region = Rect2(938, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a7pls"] +atlas = ExtResource("94_3c83d") +region = Rect2(1072, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_30y71"] +atlas = ExtResource("94_3c83d") +region = Rect2(1206, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dwl1c"] +atlas = ExtResource("94_3c83d") +region = Rect2(1340, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_01jp4"] +atlas = ExtResource("94_3c83d") +region = Rect2(1474, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b8ulh"] +atlas = ExtResource("94_3c83d") +region = Rect2(0, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3walv"] +atlas = ExtResource("94_3c83d") +region = Rect2(134, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_exyoj"] +atlas = ExtResource("94_3c83d") +region = Rect2(268, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kus54"] +atlas = ExtResource("94_3c83d") +region = Rect2(402, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_meauc"] +atlas = ExtResource("94_3c83d") +region = Rect2(536, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7v7xr"] +atlas = ExtResource("94_3c83d") +region = Rect2(670, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4ktea"] +atlas = ExtResource("94_3c83d") +region = Rect2(804, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l8oa1"] +atlas = ExtResource("94_3c83d") +region = Rect2(938, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3eopa"] +atlas = ExtResource("94_3c83d") +region = Rect2(1072, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ip8hv"] +atlas = ExtResource("94_3c83d") +region = Rect2(1206, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_42rbq"] +atlas = ExtResource("94_3c83d") +region = Rect2(1340, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tu0vu"] +atlas = ExtResource("94_3c83d") +region = Rect2(1474, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gbh7l"] +atlas = ExtResource("94_3c83d") +region = Rect2(0, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_733jx"] +atlas = ExtResource("94_3c83d") +region = Rect2(134, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sfa2q"] +atlas = ExtResource("94_3c83d") +region = Rect2(268, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o0nvo"] +atlas = ExtResource("94_3c83d") +region = Rect2(402, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1mv1w"] +atlas = ExtResource("94_3c83d") +region = Rect2(536, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yw8ob"] +atlas = ExtResource("94_3c83d") +region = Rect2(670, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ptkbd"] +atlas = ExtResource("94_3c83d") +region = Rect2(804, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2uoiw"] +atlas = ExtResource("94_3c83d") +region = Rect2(938, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4m684"] +atlas = ExtResource("94_3c83d") +region = Rect2(1072, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_st6fj"] +atlas = ExtResource("94_3c83d") +region = Rect2(1206, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1wana"] +atlas = ExtResource("94_3c83d") +region = Rect2(1340, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ati4e"] +atlas = ExtResource("94_3c83d") +region = Rect2(1474, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0w31q"] +atlas = ExtResource("94_3c83d") +region = Rect2(0, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uxu33"] +atlas = ExtResource("94_3c83d") +region = Rect2(134, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2ulnd"] +atlas = ExtResource("94_3c83d") +region = Rect2(268, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ddsrn"] +atlas = ExtResource("94_3c83d") +region = Rect2(402, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n1e5w"] +atlas = ExtResource("94_3c83d") +region = Rect2(536, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f4aq5"] +atlas = ExtResource("94_3c83d") +region = Rect2(670, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_er00h"] +atlas = ExtResource("94_3c83d") +region = Rect2(804, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mlf5c"] +atlas = ExtResource("94_3c83d") +region = Rect2(938, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c362w"] +atlas = ExtResource("94_3c83d") +region = Rect2(1072, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_30wb7"] +atlas = ExtResource("94_3c83d") +region = Rect2(1206, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_stb0b"] +atlas = ExtResource("94_3c83d") +region = Rect2(1340, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a64qf"] +atlas = ExtResource("94_3c83d") +region = Rect2(1474, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_52bkw"] +atlas = ExtResource("94_3c83d") +region = Rect2(0, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y0yvc"] +atlas = ExtResource("94_3c83d") +region = Rect2(134, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5h2xe"] +atlas = ExtResource("94_3c83d") +region = Rect2(268, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6hh33"] +atlas = ExtResource("94_3c83d") +region = Rect2(402, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kmk3m"] +atlas = ExtResource("94_3c83d") +region = Rect2(536, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rbtmh"] +atlas = ExtResource("94_3c83d") +region = Rect2(670, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bit6n"] +atlas = ExtResource("94_3c83d") +region = Rect2(804, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_458hw"] +atlas = ExtResource("94_3c83d") +region = Rect2(938, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4x2ea"] +atlas = ExtResource("94_3c83d") +region = Rect2(1072, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bcljt"] +atlas = ExtResource("94_3c83d") +region = Rect2(1206, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p6e34"] +atlas = ExtResource("94_3c83d") +region = Rect2(1340, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2yfi0"] +atlas = ExtResource("94_3c83d") +region = Rect2(1474, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bhoxy"] +atlas = ExtResource("94_3c83d") +region = Rect2(0, 1474, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_41wyx"] +atlas = ExtResource("94_3c83d") +region = Rect2(134, 1474, 134, 134) + +[sub_resource type="SpriteFrames" id="SpriteFrames_cwbmd"] +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("95_my1tv") +region = Rect2(1024, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pvn2l"] +atlas = ExtResource("95_my1tv") +region = Rect2(1536, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sctov"] +atlas = ExtResource("95_my1tv") +region = Rect2(2048, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_46bwa"] +atlas = ExtResource("95_my1tv") +region = Rect2(2560, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o42jv"] +atlas = ExtResource("95_my1tv") +region = Rect2(3072, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5dqsk"] +atlas = ExtResource("95_my1tv") +region = Rect2(3584, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_35l4k"] +atlas = ExtResource("95_my1tv") +region = Rect2(4096, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x0jfm"] +atlas = ExtResource("95_my1tv") +region = Rect2(4608, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fk16r"] +atlas = ExtResource("95_my1tv") +region = Rect2(5120, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ewtdr"] +atlas = ExtResource("95_my1tv") +region = Rect2(5632, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bul51"] +atlas = ExtResource("95_my1tv") +region = Rect2(6144, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vbobf"] +atlas = ExtResource("95_my1tv") +region = Rect2(6656, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_itqlk"] +atlas = ExtResource("95_my1tv") +region = Rect2(7168, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_41jjh"] +atlas = ExtResource("95_my1tv") +region = Rect2(7680, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kol03"] +atlas = ExtResource("95_my1tv") +region = Rect2(0, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ynyxy"] +atlas = ExtResource("95_my1tv") +region = Rect2(512, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ngcxk"] +atlas = ExtResource("95_my1tv") +region = Rect2(1024, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ba8fa"] +atlas = ExtResource("95_my1tv") +region = Rect2(1536, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ngitf"] +atlas = ExtResource("95_my1tv") +region = Rect2(2048, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_boovf"] +atlas = ExtResource("95_my1tv") +region = Rect2(2560, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jwkhr"] +atlas = ExtResource("95_my1tv") +region = Rect2(3072, 512, 512, 512) + +[sub_resource type="SpriteFrames" id="SpriteFrames_vvh4o"] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": null +}, { +"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("96_8xbn0") +region = Rect2(0, 0, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3jmy8"] +atlas = ExtResource("96_8xbn0") +region = Rect2(266, 0, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t76hk"] +atlas = ExtResource("96_8xbn0") +region = Rect2(532, 0, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_06gff"] +atlas = ExtResource("96_8xbn0") +region = Rect2(798, 0, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ssjgs"] +atlas = ExtResource("96_8xbn0") +region = Rect2(1064, 0, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_53u6k"] +atlas = ExtResource("96_8xbn0") +region = Rect2(0, 131, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_inmu7"] +atlas = ExtResource("96_8xbn0") +region = Rect2(266, 131, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bmkvg"] +atlas = ExtResource("96_8xbn0") +region = Rect2(532, 131, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oqdmj"] +atlas = ExtResource("96_8xbn0") +region = Rect2(798, 131, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bnn41"] +atlas = ExtResource("96_8xbn0") +region = Rect2(1064, 131, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p6hmn"] +atlas = ExtResource("96_8xbn0") +region = Rect2(0, 262, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s0ybe"] +atlas = ExtResource("96_8xbn0") +region = Rect2(266, 262, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y2273"] +atlas = ExtResource("96_8xbn0") +region = Rect2(532, 262, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2i87r"] +atlas = ExtResource("96_8xbn0") +region = Rect2(798, 262, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4q8o2"] +atlas = ExtResource("96_8xbn0") +region = Rect2(1064, 262, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_esxmc"] +atlas = ExtResource("96_8xbn0") +region = Rect2(0, 393, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rdsur"] +atlas = ExtResource("96_8xbn0") +region = Rect2(266, 393, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b2qt4"] +atlas = ExtResource("96_8xbn0") +region = Rect2(532, 393, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xamrr"] +atlas = ExtResource("96_8xbn0") +region = Rect2(798, 393, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0prqh"] +atlas = ExtResource("96_8xbn0") +region = Rect2(1064, 393, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dh1oc"] +atlas = ExtResource("96_8xbn0") +region = Rect2(0, 524, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ybb1w"] +atlas = ExtResource("96_8xbn0") +region = Rect2(266, 524, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2nkua"] +atlas = ExtResource("96_8xbn0") +region = Rect2(532, 524, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2gocr"] +atlas = ExtResource("96_8xbn0") +region = Rect2(798, 524, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_acsou"] +atlas = ExtResource("96_8xbn0") +region = Rect2(1064, 524, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yflou"] +atlas = ExtResource("96_8xbn0") +region = Rect2(0, 655, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_env3c"] +atlas = ExtResource("96_8xbn0") +region = Rect2(266, 655, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_74f4l"] +atlas = ExtResource("96_8xbn0") +region = Rect2(532, 655, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cbaq7"] +atlas = ExtResource("96_8xbn0") +region = Rect2(798, 655, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bc4hh"] +atlas = ExtResource("96_8xbn0") +region = Rect2(1064, 655, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5m27y"] +atlas = ExtResource("96_8xbn0") +region = Rect2(0, 786, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c2vig"] +atlas = ExtResource("96_8xbn0") +region = Rect2(266, 786, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h8qbh"] +atlas = ExtResource("96_8xbn0") +region = Rect2(532, 786, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vj2ia"] +atlas = ExtResource("96_8xbn0") +region = Rect2(798, 786, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h0bv3"] +atlas = ExtResource("96_8xbn0") +region = Rect2(1064, 786, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3xb07"] +atlas = ExtResource("96_8xbn0") +region = Rect2(0, 917, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p845e"] +atlas = ExtResource("96_8xbn0") +region = Rect2(266, 917, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nm575"] +atlas = ExtResource("96_8xbn0") +region = Rect2(532, 917, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8wvvt"] +atlas = ExtResource("96_8xbn0") +region = Rect2(798, 917, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2l45l"] +atlas = ExtResource("96_8xbn0") +region = Rect2(1064, 917, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0c6u7"] +atlas = ExtResource("96_8xbn0") +region = Rect2(0, 1048, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bo1qh"] +atlas = ExtResource("96_8xbn0") +region = Rect2(266, 1048, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4cq22"] +atlas = ExtResource("96_8xbn0") +region = Rect2(532, 1048, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d6auk"] +atlas = ExtResource("96_8xbn0") +region = Rect2(798, 1048, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4bvg3"] +atlas = ExtResource("96_8xbn0") +region = Rect2(1064, 1048, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rps4p"] +atlas = ExtResource("96_8xbn0") +region = Rect2(0, 1179, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qdy2n"] +atlas = ExtResource("96_8xbn0") +region = Rect2(266, 1179, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a63dt"] +atlas = ExtResource("96_8xbn0") +region = Rect2(532, 1179, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3alol"] +atlas = ExtResource("96_8xbn0") +region = Rect2(798, 1179, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w5y4o"] +atlas = ExtResource("96_8xbn0") +region = Rect2(1064, 1179, 133, 131) + +[sub_resource type="SpriteFrames" id="SpriteFrames_50hsm"] +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("97_ice28") +region = Rect2(200, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w5yum"] +atlas = ExtResource("97_ice28") +region = Rect2(600, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xagiq"] +atlas = ExtResource("97_ice28") +region = Rect2(1000, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iu4h2"] +atlas = ExtResource("97_ice28") +region = Rect2(100, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t6kmk"] +atlas = ExtResource("97_ice28") +region = Rect2(500, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c3c22"] +atlas = ExtResource("97_ice28") +region = Rect2(900, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_udm06"] +atlas = ExtResource("97_ice28") +region = Rect2(0, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_31shi"] +atlas = ExtResource("97_ice28") +region = Rect2(400, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i6wsf"] +atlas = ExtResource("97_ice28") +region = Rect2(800, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jhluk"] +atlas = ExtResource("97_ice28") +region = Rect2(1200, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_exq74"] +atlas = ExtResource("97_ice28") +region = Rect2(300, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k7tc1"] +atlas = ExtResource("97_ice28") +region = Rect2(700, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_456io"] +atlas = ExtResource("97_ice28") +region = Rect2(1100, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2h7ac"] +atlas = ExtResource("97_ice28") +region = Rect2(200, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dy5lo"] +atlas = ExtResource("97_ice28") +region = Rect2(500, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_biyyn"] +atlas = ExtResource("97_ice28") +region = Rect2(1000, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_flqm1"] +atlas = ExtResource("97_ice28") +region = Rect2(100, 500, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xttn8"] +atlas = ExtResource("97_ice28") +region = Rect2(500, 500, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_85rsb"] +atlas = ExtResource("97_ice28") +region = Rect2(900, 500, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oxqm1"] +atlas = ExtResource("97_ice28") +region = Rect2(0, 600, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dphle"] +atlas = ExtResource("97_ice28") +region = Rect2(400, 600, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_48bul"] +atlas = ExtResource("97_ice28") +region = Rect2(800, 600, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2d6tt"] +atlas = ExtResource("97_ice28") +region = Rect2(1200, 600, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ty41g"] +atlas = ExtResource("97_ice28") +region = Rect2(300, 700, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c5uyp"] +atlas = ExtResource("97_ice28") +region = Rect2(700, 700, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tf4dl"] +atlas = ExtResource("97_ice28") +region = Rect2(1100, 700, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cvdlu"] +atlas = ExtResource("97_ice28") +region = Rect2(200, 800, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f25l1"] +atlas = ExtResource("97_ice28") +region = Rect2(600, 800, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v033q"] +atlas = ExtResource("97_ice28") +region = Rect2(1000, 800, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xgfkn"] +atlas = ExtResource("97_ice28") +region = Rect2(100, 900, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_duxfd"] +atlas = ExtResource("97_ice28") +region = Rect2(500, 900, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5uvt0"] +atlas = ExtResource("97_ice28") +region = Rect2(900, 900, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7d05g"] +atlas = ExtResource("97_ice28") +region = Rect2(0, 1000, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x0ube"] +atlas = ExtResource("97_ice28") +region = Rect2(400, 1000, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_15y07"] +atlas = ExtResource("97_ice28") +region = Rect2(800, 1000, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_de0po"] +atlas = ExtResource("97_ice28") +region = Rect2(1200, 1000, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b3rtc"] +atlas = ExtResource("97_ice28") +region = Rect2(300, 1100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q32lt"] +atlas = ExtResource("97_ice28") +region = Rect2(700, 1100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_88hqh"] +atlas = ExtResource("97_ice28") +region = Rect2(1100, 1100, 100, 100) + +[sub_resource type="SpriteFrames" id="SpriteFrames_drcph"] +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("98_yxvs8") +region = Rect2(0, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0rj30"] +atlas = ExtResource("98_yxvs8") +region = Rect2(200, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ug1a1"] +atlas = ExtResource("98_yxvs8") +region = Rect2(400, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8eees"] +atlas = ExtResource("98_yxvs8") +region = Rect2(600, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k2i7i"] +atlas = ExtResource("98_yxvs8") +region = Rect2(800, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4wwo5"] +atlas = ExtResource("98_yxvs8") +region = Rect2(0, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_418m2"] +atlas = ExtResource("98_yxvs8") +region = Rect2(200, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6g5qj"] +atlas = ExtResource("98_yxvs8") +region = Rect2(400, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k3sey"] +atlas = ExtResource("98_yxvs8") +region = Rect2(600, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ms40v"] +atlas = ExtResource("98_yxvs8") +region = Rect2(800, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2tfej"] +atlas = ExtResource("98_yxvs8") +region = Rect2(0, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_woj7f"] +atlas = ExtResource("98_yxvs8") +region = Rect2(200, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kg861"] +atlas = ExtResource("98_yxvs8") +region = Rect2(400, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jtxxp"] +atlas = ExtResource("98_yxvs8") +region = Rect2(600, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sxooa"] +atlas = ExtResource("98_yxvs8") +region = Rect2(800, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hkj2y"] +atlas = ExtResource("98_yxvs8") +region = Rect2(0, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wm40h"] +atlas = ExtResource("98_yxvs8") +region = Rect2(200, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u66v8"] +atlas = ExtResource("98_yxvs8") +region = Rect2(400, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6ip85"] +atlas = ExtResource("98_yxvs8") +region = Rect2(600, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qad2i"] +atlas = ExtResource("98_yxvs8") +region = Rect2(800, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nifqu"] +atlas = ExtResource("98_yxvs8") +region = Rect2(0, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_goocc"] +atlas = ExtResource("98_yxvs8") +region = Rect2(200, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l78ua"] +atlas = ExtResource("98_yxvs8") +region = Rect2(400, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ybqlc"] +atlas = ExtResource("98_yxvs8") +region = Rect2(600, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d0lry"] +atlas = ExtResource("98_yxvs8") +region = Rect2(800, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ccb2v"] +atlas = ExtResource("98_yxvs8") +region = Rect2(0, 500, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dcp7h"] +atlas = ExtResource("98_yxvs8") +region = Rect2(200, 500, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3kud6"] +atlas = ExtResource("98_yxvs8") +region = Rect2(400, 500, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0tvc2"] +atlas = ExtResource("98_yxvs8") +region = Rect2(600, 500, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g5aky"] +atlas = ExtResource("98_yxvs8") +region = Rect2(800, 500, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nyc7u"] +atlas = ExtResource("98_yxvs8") +region = Rect2(0, 600, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q1yeq"] +atlas = ExtResource("98_yxvs8") +region = Rect2(200, 600, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pupfb"] +atlas = ExtResource("98_yxvs8") +region = Rect2(400, 600, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gfe8c"] +atlas = ExtResource("98_yxvs8") +region = Rect2(600, 600, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_76bl1"] +atlas = ExtResource("98_yxvs8") +region = Rect2(800, 600, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u7frn"] +atlas = ExtResource("98_yxvs8") +region = Rect2(0, 700, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ls3an"] +atlas = ExtResource("98_yxvs8") +region = Rect2(200, 700, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4l6e0"] +atlas = ExtResource("98_yxvs8") +region = Rect2(400, 700, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cvlbl"] +atlas = ExtResource("98_yxvs8") +region = Rect2(600, 700, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jkvpv"] +atlas = ExtResource("98_yxvs8") +region = Rect2(800, 700, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lpp7o"] +atlas = ExtResource("98_yxvs8") +region = Rect2(0, 800, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v8igx"] +atlas = ExtResource("98_yxvs8") +region = Rect2(200, 800, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mmm0q"] +atlas = ExtResource("98_yxvs8") +region = Rect2(400, 800, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5ukt7"] +atlas = ExtResource("98_yxvs8") +region = Rect2(600, 800, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0pkd7"] +atlas = ExtResource("98_yxvs8") +region = Rect2(800, 800, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n85t7"] +atlas = ExtResource("99_jk3i6") +region = Rect2(0, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nb4v4"] +atlas = ExtResource("99_jk3i6") +region = Rect2(100, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cl00x"] +atlas = ExtResource("99_jk3i6") +region = Rect2(200, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ufcsw"] +atlas = ExtResource("99_jk3i6") +region = Rect2(300, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aoisp"] +atlas = ExtResource("99_jk3i6") +region = Rect2(400, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3rkdy"] +atlas = ExtResource("99_jk3i6") +region = Rect2(500, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o0dym"] +atlas = ExtResource("99_jk3i6") +region = Rect2(0, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vxihx"] +atlas = ExtResource("99_jk3i6") +region = Rect2(100, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ofpmt"] +atlas = ExtResource("99_jk3i6") +region = Rect2(200, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ux0ir"] +atlas = ExtResource("99_jk3i6") +region = Rect2(300, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8dgch"] +atlas = ExtResource("99_jk3i6") +region = Rect2(400, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7ixin"] +atlas = ExtResource("99_jk3i6") +region = Rect2(500, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2kea0"] +atlas = ExtResource("99_jk3i6") +region = Rect2(0, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kgnps"] +atlas = ExtResource("99_jk3i6") +region = Rect2(100, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g2wgu"] +atlas = ExtResource("99_jk3i6") +region = Rect2(200, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0oosk"] +atlas = ExtResource("99_jk3i6") +region = Rect2(300, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_80k2g"] +atlas = ExtResource("99_jk3i6") +region = Rect2(400, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fskx7"] +atlas = ExtResource("99_jk3i6") +region = Rect2(500, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_no3pe"] +atlas = ExtResource("99_jk3i6") +region = Rect2(0, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_15fnm"] +atlas = ExtResource("99_jk3i6") +region = Rect2(100, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r5e73"] +atlas = ExtResource("99_jk3i6") +region = Rect2(200, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2im8t"] +atlas = ExtResource("99_jk3i6") +region = Rect2(300, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mxl2m"] +atlas = ExtResource("99_jk3i6") +region = Rect2(400, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6dwuh"] +atlas = ExtResource("99_jk3i6") +region = Rect2(500, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_53c1f"] +atlas = ExtResource("99_jk3i6") +region = Rect2(0, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mmbhy"] +atlas = ExtResource("99_jk3i6") +region = Rect2(100, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uwbh3"] +atlas = ExtResource("99_jk3i6") +region = Rect2(200, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j6v2y"] +atlas = ExtResource("99_jk3i6") +region = Rect2(300, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h5xbu"] +atlas = ExtResource("99_jk3i6") +region = Rect2(400, 400, 100, 100) + +[sub_resource type="SpriteFrames" id="SpriteFrames_cec5e"] +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("100_h4bl6") +region = Rect2(875, 452, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ekrqp"] +atlas = ExtResource("100_h4bl6") +region = Rect2(1050, 452, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dvnic"] +atlas = ExtResource("100_h4bl6") +region = Rect2(1225, 452, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rxdv7"] +atlas = ExtResource("100_h4bl6") +region = Rect2(1400, 452, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0pvcp"] +atlas = ExtResource("100_h4bl6") +region = Rect2(0, 678, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yga3t"] +atlas = ExtResource("100_h4bl6") +region = Rect2(175, 678, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c6qrx"] +atlas = ExtResource("100_h4bl6") +region = Rect2(350, 678, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fkryw"] +atlas = ExtResource("100_h4bl6") +region = Rect2(525, 678, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jt7jg"] +atlas = ExtResource("100_h4bl6") +region = Rect2(700, 678, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6eyjl"] +atlas = ExtResource("100_h4bl6") +region = Rect2(875, 678, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tsolq"] +atlas = ExtResource("100_h4bl6") +region = Rect2(1050, 678, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_opqal"] +atlas = ExtResource("100_h4bl6") +region = Rect2(1225, 678, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kia47"] +atlas = ExtResource("100_h4bl6") +region = Rect2(1400, 678, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6aolf"] +atlas = ExtResource("100_h4bl6") +region = Rect2(0, 904, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g6jok"] +atlas = ExtResource("100_h4bl6") +region = Rect2(175, 904, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_swdkn"] +atlas = ExtResource("100_h4bl6") +region = Rect2(350, 904, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_edlre"] +atlas = ExtResource("100_h4bl6") +region = Rect2(525, 904, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gbj32"] +atlas = ExtResource("100_h4bl6") +region = Rect2(700, 904, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bstol"] +atlas = ExtResource("100_h4bl6") +region = Rect2(875, 904, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_57vey"] +atlas = ExtResource("100_h4bl6") +region = Rect2(1050, 904, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_31ikn"] +atlas = ExtResource("100_h4bl6") +region = Rect2(1225, 904, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e1yxa"] +atlas = ExtResource("100_h4bl6") +region = Rect2(1400, 904, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7a7ks"] +atlas = ExtResource("100_h4bl6") +region = Rect2(0, 1130, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p2hq6"] +atlas = ExtResource("100_h4bl6") +region = Rect2(175, 1130, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k3fbj"] +atlas = ExtResource("100_h4bl6") +region = Rect2(350, 1130, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ylav8"] +atlas = ExtResource("100_h4bl6") +region = Rect2(525, 1130, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xhgk2"] +atlas = ExtResource("100_h4bl6") +region = Rect2(700, 1130, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_diucy"] +atlas = ExtResource("100_h4bl6") +region = Rect2(875, 1130, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8gw5n"] +atlas = ExtResource("100_h4bl6") +region = Rect2(1050, 1130, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hc5wr"] +atlas = ExtResource("100_h4bl6") +region = Rect2(1225, 1130, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fugdi"] +atlas = ExtResource("100_h4bl6") +region = Rect2(1400, 1130, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h222i"] +atlas = ExtResource("100_h4bl6") +region = Rect2(0, 1356, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7qa4p"] +atlas = ExtResource("100_h4bl6") +region = Rect2(175, 1356, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jbavk"] +atlas = ExtResource("100_h4bl6") +region = Rect2(350, 1356, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ncorq"] +atlas = ExtResource("100_h4bl6") +region = Rect2(525, 1356, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mdvft"] +atlas = ExtResource("100_h4bl6") +region = Rect2(700, 1356, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ljrf5"] +atlas = ExtResource("100_h4bl6") +region = Rect2(875, 1356, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r7ll6"] +atlas = ExtResource("100_h4bl6") +region = Rect2(1050, 1356, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6vssn"] +atlas = ExtResource("100_h4bl6") +region = Rect2(1225, 1356, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4lr8r"] +atlas = ExtResource("100_h4bl6") +region = Rect2(1400, 1356, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xp4kq"] +atlas = ExtResource("100_h4bl6") +region = Rect2(0, 1582, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_idymv"] +atlas = ExtResource("100_h4bl6") +region = Rect2(175, 1582, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ujl1x"] +atlas = ExtResource("100_h4bl6") +region = Rect2(350, 1582, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_37wgc"] +atlas = ExtResource("100_h4bl6") +region = Rect2(525, 1582, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g5fso"] +atlas = ExtResource("100_h4bl6") +region = Rect2(700, 1582, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4a47d"] +atlas = ExtResource("100_h4bl6") +region = Rect2(875, 1582, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eh3iw"] +atlas = ExtResource("100_h4bl6") +region = Rect2(1050, 1582, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jc54a"] +atlas = ExtResource("100_h4bl6") +region = Rect2(1225, 1582, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xyo6b"] +atlas = ExtResource("100_h4bl6") +region = Rect2(1400, 1582, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gnyks"] +atlas = ExtResource("100_h4bl6") +region = Rect2(0, 1808, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_08lae"] +atlas = ExtResource("100_h4bl6") +region = Rect2(175, 1808, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r710l"] +atlas = ExtResource("100_h4bl6") +region = Rect2(350, 1808, 175, 226) + +[sub_resource type="SpriteFrames" id="SpriteFrames_2isdh"] +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("101_tfnvq") +region = Rect2(134, 0, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_56ojt"] +atlas = ExtResource("101_tfnvq") +region = Rect2(402, 0, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jwkdt"] +atlas = ExtResource("101_tfnvq") +region = Rect2(670, 0, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tklqq"] +atlas = ExtResource("101_tfnvq") +region = Rect2(938, 0, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0kd7d"] +atlas = ExtResource("101_tfnvq") +region = Rect2(1206, 0, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uoo6g"] +atlas = ExtResource("101_tfnvq") +region = Rect2(134, 134, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eyk0y"] +atlas = ExtResource("101_tfnvq") +region = Rect2(402, 134, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0imbq"] +atlas = ExtResource("101_tfnvq") +region = Rect2(670, 134, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oys1t"] +atlas = ExtResource("101_tfnvq") +region = Rect2(938, 134, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_06alo"] +atlas = ExtResource("101_tfnvq") +region = Rect2(1206, 134, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uoxdj"] +atlas = ExtResource("101_tfnvq") +region = Rect2(134, 268, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rcb13"] +atlas = ExtResource("101_tfnvq") +region = Rect2(402, 268, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pj86n"] +atlas = ExtResource("101_tfnvq") +region = Rect2(670, 268, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qpw3f"] +atlas = ExtResource("101_tfnvq") +region = Rect2(938, 268, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gn6h7"] +atlas = ExtResource("101_tfnvq") +region = Rect2(1206, 268, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lkh03"] +atlas = ExtResource("101_tfnvq") +region = Rect2(134, 402, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pdi3o"] +atlas = ExtResource("101_tfnvq") +region = Rect2(402, 402, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s3ywy"] +atlas = ExtResource("101_tfnvq") +region = Rect2(670, 402, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6idxu"] +atlas = ExtResource("101_tfnvq") +region = Rect2(938, 402, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qndi3"] +atlas = ExtResource("101_tfnvq") +region = Rect2(1206, 402, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y4ahc"] +atlas = ExtResource("101_tfnvq") +region = Rect2(134, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y5c6p"] +atlas = ExtResource("101_tfnvq") +region = Rect2(402, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oa8p3"] +atlas = ExtResource("101_tfnvq") +region = Rect2(670, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rc08e"] +atlas = ExtResource("101_tfnvq") +region = Rect2(938, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8tw6t"] +atlas = ExtResource("101_tfnvq") +region = Rect2(1206, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_njvn5"] +atlas = ExtResource("101_tfnvq") +region = Rect2(134, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cwp0x"] +atlas = ExtResource("101_tfnvq") +region = Rect2(402, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hch5s"] +atlas = ExtResource("101_tfnvq") +region = Rect2(670, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vgjuv"] +atlas = ExtResource("101_tfnvq") +region = Rect2(938, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1502j"] +atlas = ExtResource("101_tfnvq") +region = Rect2(1206, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5m1ra"] +atlas = ExtResource("101_tfnvq") +region = Rect2(134, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l0imt"] +atlas = ExtResource("101_tfnvq") +region = Rect2(402, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ywb2s"] +atlas = ExtResource("101_tfnvq") +region = Rect2(670, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x5582"] +atlas = ExtResource("101_tfnvq") +region = Rect2(938, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4uy6l"] +atlas = ExtResource("101_tfnvq") +region = Rect2(1206, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_50esb"] +atlas = ExtResource("101_tfnvq") +region = Rect2(134, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xnham"] +atlas = ExtResource("101_tfnvq") +region = Rect2(402, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j1cf1"] +atlas = ExtResource("101_tfnvq") +region = Rect2(670, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jvde4"] +atlas = ExtResource("101_tfnvq") +region = Rect2(938, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dvkgv"] +atlas = ExtResource("101_tfnvq") +region = Rect2(1206, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3ant7"] +atlas = ExtResource("101_tfnvq") +region = Rect2(134, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a6f8y"] +atlas = ExtResource("101_tfnvq") +region = Rect2(402, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ancbh"] +atlas = ExtResource("101_tfnvq") +region = Rect2(670, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yes2c"] +atlas = ExtResource("101_tfnvq") +region = Rect2(938, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cs2h2"] +atlas = ExtResource("101_tfnvq") +region = Rect2(1206, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n2i2d"] +atlas = ExtResource("101_tfnvq") +region = Rect2(134, 1206, 134, 134) + +[sub_resource type="SpriteFrames" id="SpriteFrames_ymy02"] +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="BoxShape3D" id="BoxShape3D_l4fpo"] size = Vector3(2, 1, 2) @@ -1467,6 +4154,483 @@ _data = { &"RESET": SubResource("Animation_efra4") } +[sub_resource type="Animation" id="Animation_30xy4"] +resource_name = "CurseHit" +length = 1.56667 +tracks/0/type = "value" +tracks/0/imported = false +tracks/0/enabled = true +tracks/0/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Curse Hit Effect:animation") +tracks/0/interp = 1 +tracks/0/loop_wrap = true +tracks/0/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"default"] +} +tracks/1/type = "value" +tracks/1/imported = false +tracks/1/enabled = true +tracks/1/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Curse Hit Effect:frame") +tracks/1/interp = 1 +tracks/1/loop_wrap = true +tracks/1/keys = { +"times": PackedFloat32Array(0, 1.56667), +"transitions": PackedFloat32Array(1, 1), +"update": 0, +"values": [0, 47] +} + +[sub_resource type="Animation" id="Animation_3pm1j"] +resource_name = "EarthHit" +length = 1.46667 +tracks/0/type = "value" +tracks/0/imported = false +tracks/0/enabled = true +tracks/0/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Earth Hit Effect:animation") +tracks/0/interp = 1 +tracks/0/loop_wrap = true +tracks/0/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"EARTH DAMAGE"] +} +tracks/1/type = "value" +tracks/1/imported = false +tracks/1/enabled = true +tracks/1/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Earth Hit Effect:frame") +tracks/1/interp = 1 +tracks/1/loop_wrap = true +tracks/1/keys = { +"times": PackedFloat32Array(0, 1.46667), +"transitions": PackedFloat32Array(1, 1), +"update": 0, +"values": [0, 44] +} + +[sub_resource type="Animation" id="Animation_6shfu"] +resource_name = "Fire Damage" +length = 2.93334 +tracks/0/type = "value" +tracks/0/imported = false +tracks/0/enabled = true +tracks/0/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/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("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/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("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/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)] +} +tracks/3/type = "value" +tracks/3/imported = false +tracks/3/enabled = true +tracks/3/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Rust Activation Effect:animation") +tracks/3/interp = 1 +tracks/3/loop_wrap = true +tracks/3/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"default"] +} +tracks/4/type = "value" +tracks/4/imported = false +tracks/4/enabled = true +tracks/4/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Rust Activation Effect:frame") +tracks/4/interp = 1 +tracks/4/loop_wrap = true +tracks/4/keys = { +"times": PackedFloat32Array(0, 2.93333), +"transitions": PackedFloat32Array(1, 1), +"update": 0, +"values": [88, 88] +} + +[sub_resource type="Animation" id="Animation_f5cjs"] +resource_name = "HolyHit" +length = 0.700003 +tracks/0/type = "value" +tracks/0/imported = false +tracks/0/enabled = true +tracks/0/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Holy Hit Layer Effect:animation") +tracks/0/interp = 1 +tracks/0/loop_wrap = true +tracks/0/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"HOLY"] +} +tracks/1/type = "value" +tracks/1/imported = false +tracks/1/enabled = true +tracks/1/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Holy Hit Layer Effect:frame") +tracks/1/interp = 1 +tracks/1/loop_wrap = true +tracks/1/keys = { +"times": PackedFloat32Array(0, 0.7), +"transitions": PackedFloat32Array(1, 1), +"update": 0, +"values": [0, 21] +} + +[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("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/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("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/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("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/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"] +} +tracks/3/type = "value" +tracks/3/imported = false +tracks/3/enabled = true +tracks/3/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Rust Activation Effect:animation") +tracks/3/interp = 1 +tracks/3/loop_wrap = true +tracks/3/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"default"] +} +tracks/4/type = "value" +tracks/4/imported = false +tracks/4/enabled = true +tracks/4/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Rust Activation Effect:frame") +tracks/4/interp = 1 +tracks/4/loop_wrap = true +tracks/4/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [88] +} +tracks/5/type = "value" +tracks/5/imported = false +tracks/5/enabled = true +tracks/5/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Holy Hit Layer Effect:animation") +tracks/5/interp = 1 +tracks/5/loop_wrap = true +tracks/5/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"HOLY"] +} +tracks/6/type = "value" +tracks/6/imported = false +tracks/6/enabled = true +tracks/6/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Holy Hit Layer Effect:frame") +tracks/6/interp = 1 +tracks/6/loop_wrap = true +tracks/6/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [0] +} +tracks/7/type = "value" +tracks/7/imported = false +tracks/7/enabled = true +tracks/7/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Wind Hit Layer Effect:animation") +tracks/7/interp = 1 +tracks/7/loop_wrap = true +tracks/7/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"default"] +} +tracks/8/type = "value" +tracks/8/imported = false +tracks/8/enabled = true +tracks/8/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Wind Hit Layer Effect:frame") +tracks/8/interp = 1 +tracks/8/loop_wrap = true +tracks/8/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [50] +} +tracks/9/type = "value" +tracks/9/imported = false +tracks/9/enabled = true +tracks/9/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Water Hit Layer 1 Effect:animation") +tracks/9/interp = 1 +tracks/9/loop_wrap = true +tracks/9/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"WATER DAMAGE"] +} +tracks/10/type = "value" +tracks/10/imported = false +tracks/10/enabled = true +tracks/10/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Water Hit Layer 1 Effect:frame") +tracks/10/interp = 1 +tracks/10/loop_wrap = true +tracks/10/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [29] +} +tracks/11/type = "value" +tracks/11/imported = false +tracks/11/enabled = true +tracks/11/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Water Hit Layer 2Effect:animation") +tracks/11/interp = 1 +tracks/11/loop_wrap = true +tracks/11/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"WATER"] +} +tracks/12/type = "value" +tracks/12/imported = false +tracks/12/enabled = true +tracks/12/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Water Hit Layer 2Effect:frame") +tracks/12/interp = 1 +tracks/12/loop_wrap = true +tracks/12/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [51] +} +tracks/13/type = "value" +tracks/13/imported = false +tracks/13/enabled = true +tracks/13/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Curse Hit Effect:animation") +tracks/13/interp = 1 +tracks/13/loop_wrap = true +tracks/13/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"default"] +} +tracks/14/type = "value" +tracks/14/imported = false +tracks/14/enabled = true +tracks/14/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Curse Hit Effect:frame") +tracks/14/interp = 1 +tracks/14/loop_wrap = true +tracks/14/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [47] +} +tracks/15/type = "value" +tracks/15/imported = false +tracks/15/enabled = true +tracks/15/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Earth Hit Effect:animation") +tracks/15/interp = 1 +tracks/15/loop_wrap = true +tracks/15/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"WATER DAMAGE"] +} +tracks/16/type = "value" +tracks/16/imported = false +tracks/16/enabled = true +tracks/16/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Earth Hit Effect:frame") +tracks/16/interp = 1 +tracks/16/loop_wrap = true +tracks/16/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [0] +} + +[sub_resource type="Animation" id="Animation_0tqwp"] +resource_name = "RustActivate" +length = 1.46667 +step = 0.0166667 +tracks/0/type = "value" +tracks/0/imported = false +tracks/0/enabled = true +tracks/0/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Rust Activation Effect:animation") +tracks/0/interp = 1 +tracks/0/loop_wrap = true +tracks/0/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"default"] +} +tracks/1/type = "value" +tracks/1/imported = false +tracks/1/enabled = true +tracks/1/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Rust Activation Effect:frame") +tracks/1/interp = 1 +tracks/1/loop_wrap = true +tracks/1/keys = { +"times": PackedFloat32Array(0, 1.46667), +"transitions": PackedFloat32Array(1, 1), +"update": 0, +"values": [0, 88] +} + +[sub_resource type="Animation" id="Animation_q5dfb"] +resource_name = "WaterHit" +length = 1.7 +tracks/0/type = "value" +tracks/0/imported = false +tracks/0/enabled = true +tracks/0/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Water Hit Layer 1 Effect:animation") +tracks/0/interp = 1 +tracks/0/loop_wrap = true +tracks/0/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"WATER DAMAGE"] +} +tracks/1/type = "value" +tracks/1/imported = false +tracks/1/enabled = true +tracks/1/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Water Hit Layer 1 Effect:frame") +tracks/1/interp = 1 +tracks/1/loop_wrap = true +tracks/1/keys = { +"times": PackedFloat32Array(0, 1), +"transitions": PackedFloat32Array(1, 1), +"update": 0, +"values": [0, 29] +} +tracks/2/type = "value" +tracks/2/imported = false +tracks/2/enabled = true +tracks/2/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Water Hit Layer 2Effect:animation") +tracks/2/interp = 1 +tracks/2/loop_wrap = true +tracks/2/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"WATER"] +} +tracks/3/type = "value" +tracks/3/imported = false +tracks/3/enabled = true +tracks/3/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Water Hit Layer 2Effect:frame") +tracks/3/interp = 1 +tracks/3/loop_wrap = true +tracks/3/keys = { +"times": PackedFloat32Array(0, 1.7), +"transitions": PackedFloat32Array(1, 1), +"update": 0, +"values": [0, 51] +} + +[sub_resource type="Animation" id="Animation_godpv"] +resource_name = "WindHit" +length = 0.833335 +step = 0.0166667 +tracks/0/type = "value" +tracks/0/imported = false +tracks/0/enabled = true +tracks/0/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Wind Hit Layer Effect:animation") +tracks/0/interp = 1 +tracks/0/loop_wrap = true +tracks/0/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"default"] +} +tracks/1/type = "value" +tracks/1/imported = false +tracks/1/enabled = true +tracks/1/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Wind Hit Layer Effect:frame") +tracks/1/interp = 1 +tracks/1/loop_wrap = true +tracks/1/keys = { +"times": PackedFloat32Array(0, 0.833333), +"transitions": PackedFloat32Array(1, 1), +"update": 0, +"values": [0, 50] +} + +[sub_resource type="AnimationLibrary" id="AnimationLibrary_0tqwp"] +_data = { +&"CurseHit": SubResource("Animation_30xy4"), +&"EarthHit": SubResource("Animation_3pm1j"), +&"FireHit": SubResource("Animation_6shfu"), +&"HolyHit": SubResource("Animation_f5cjs"), +&"RESET": SubResource("Animation_cftgd"), +&"RustActivate": SubResource("Animation_0tqwp"), +&"WaterHit": SubResource("Animation_q5dfb"), +&"WindHit": SubResource("Animation_godpv") +} + [node name="EnemyModelView" type="Node3D"] script = ExtResource("1_ueqp5") @@ -1499,6 +4663,60 @@ sprite_frames = SubResource("SpriteFrames_mlptn") animation = &"idle_front_walk" offset = Vector2(400, 400) +[node name="VFXSprites" type="Node2D" parent="Sprite3D/SubViewportContainer/SubViewport"] + +[node name="Rust Activation Effect" type="AnimatedSprite2D" parent="Sprite3D/SubViewportContainer/SubViewport/VFXSprites"] +position = Vector2(400, 400) +scale = Vector2(1.54, 1.54) +sprite_frames = SubResource("SpriteFrames_cwbmd") +frame = 88 + +[node name="Holy Hit Layer Effect" type="AnimatedSprite2D" parent="Sprite3D/SubViewportContainer/SubViewport/VFXSprites"] +position = Vector2(400, 400) +scale = Vector2(0.675, 0.675) +sprite_frames = SubResource("SpriteFrames_vvh4o") +animation = &"HOLY" + +[node name="Wind Hit Layer Effect" type="AnimatedSprite2D" parent="Sprite3D/SubViewportContainer/SubViewport/VFXSprites"] +position = Vector2(400, 400) +scale = Vector2(1.445, 1.445) +sprite_frames = SubResource("SpriteFrames_50hsm") +frame = 50 + +[node name="Flame Hit Effect" type="AnimatedSprite2D" parent="Sprite3D/SubViewportContainer/SubViewport/VFXSprites"] +position = Vector2(400, 400) +scale = Vector2(3.445, 3.445) +sprite_frames = SubResource("SpriteFrames_drcph") +animation = &"Flame Damage" +frame = 40 + +[node name="Water Hit Layer 1 Effect" type="AnimatedSprite2D" parent="Sprite3D/SubViewportContainer/SubViewport/VFXSprites"] +position = Vector2(400, 400) +scale = Vector2(2.215, 2.215) +sprite_frames = SubResource("SpriteFrames_cec5e") +animation = &"WATER DAMAGE" +frame = 29 + +[node name="Water Hit Layer 2Effect" type="AnimatedSprite2D" parent="Sprite3D/SubViewportContainer/SubViewport/VFXSprites"] +position = Vector2(400, 400) +scale = Vector2(1.105, 0.895) +sprite_frames = SubResource("SpriteFrames_2isdh") +animation = &"WATER" +frame = 51 + +[node name="Curse Hit Effect" type="AnimatedSprite2D" parent="Sprite3D/SubViewportContainer/SubViewport/VFXSprites"] +texture_filter = 1 +position = Vector2(400, 400) +scale = Vector2(2.78, 2.78) +sprite_frames = SubResource("SpriteFrames_ymy02") +frame = 47 + +[node name="Earth Hit Effect" type="AnimatedSprite2D" parent="Sprite3D/SubViewportContainer/SubViewport/VFXSprites"] +position = Vector2(400, 400) +scale = Vector2(2.005, 2.005) +sprite_frames = SubResource("SpriteFrames_cec5e") +animation = &"WATER DAMAGE" + [node name="Hitbox" type="Area3D" parent="."] unique_name_in_owner = true transform = Transform3D(-1, 0, -8.74228e-08, 0, 1, 0, 8.74228e-08, 0, -1, -0.152949, 1.86303, 0) @@ -1546,3 +4764,51 @@ cast_shadow = 0 modulate = Color(1, 1, 1, 0.591) texture_filter = 0 texture = ExtResource("100_ktg2j") + +[node name="VFXAnimations" type="Node" parent="."] + +[node name="FlameHitAnimation" type="AnimationPlayer" parent="VFXAnimations"] +unique_name_in_owner = true +libraries = { +&"": SubResource("AnimationLibrary_0tqwp") +} + +[node name="RustHitAnimation" type="AnimationPlayer" parent="VFXAnimations"] +unique_name_in_owner = true +root_node = NodePath("../../Secondary Animation Player") +libraries = { +&"": SubResource("AnimationLibrary_0tqwp") +} + +[node name="HolyHitAnimation" type="AnimationPlayer" parent="VFXAnimations"] +unique_name_in_owner = true +root_node = NodePath("../../Secondary Animation Player") +libraries = { +&"": SubResource("AnimationLibrary_0tqwp") +} + +[node name="WindHitAnimation" type="AnimationPlayer" parent="VFXAnimations"] +unique_name_in_owner = true +libraries = { +&"": SubResource("AnimationLibrary_0tqwp") +} + +[node name="WaterHitAnimation" type="AnimationPlayer" parent="VFXAnimations"] +unique_name_in_owner = true +libraries = { +&"": SubResource("AnimationLibrary_0tqwp") +} + +[node name="CurseHitAnimation" type="AnimationPlayer" parent="VFXAnimations"] +unique_name_in_owner = true +root_node = NodePath("../../Secondary Animation Player") +libraries = { +&"": SubResource("AnimationLibrary_0tqwp") +} + +[node name="EarthHitAnimation" type="AnimationPlayer" parent="VFXAnimations"] +unique_name_in_owner = true +root_node = NodePath("../../Secondary Animation Player") +libraries = { +&"": SubResource("AnimationLibrary_0tqwp") +} diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. Planter/PlanterModelView.tscn b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. Planter/PlanterModelView.tscn index 8f1978a1..e7762c69 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. Planter/PlanterModelView.tscn +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. Planter/PlanterModelView.tscn @@ -1,4 +1,4 @@ -[gd_scene load_steps=399 format=3 uid="uid://dfih3tw51mumf"] +[gd_scene load_steps=794 format=3 uid="uid://dfih3tw51mumf"] [ext_resource type="Script" uid="uid://cvr1qimxpignl" path="res://src/enemy/EnemyModelView2D.cs" id="1_lp3cr"] [ext_resource type="Script" uid="uid://dlsgyx4i1jmp3" path="res://src/enemy/EnemyLoreInfo.cs" id="2_olcu2"] @@ -369,11 +369,19 @@ [ext_resource type="Texture2D" uid="uid://ci1sa1elcmvsd" path="res://src/enemy/enemy_types/06. Planter/animations/Animation Frames/Side/0232.webp" id="370_evvs1"] [ext_resource type="Texture2D" uid="uid://dcfdrpgj3q8ho" path="res://src/enemy/enemy_types/06. Planter/animations/Animation Frames/Side/0234.webp" id="371_1y8gr"] [ext_resource type="Texture2D" uid="uid://o5ud8pqo4jj8" path="res://src/enemy/enemy_types/06. Planter/animations/Animation Frames/Side/0236.webp" id="372_rtbmt"] +[ext_resource type="Texture2D" uid="uid://dq70aipwl1qrg" path="res://src/vfx/Enemy Affected/Rust Particles.png" id="373_k4mkg"] [ext_resource type="Texture2D" uid="uid://cegfsxdx7g361" path="res://src/enemy/enemy_types/06. Planter/animations/Animation Frames/Side/0238.webp" id="373_rymt4"] [ext_resource type="PackedScene" uid="uid://c35bp6wop71bt" path="res://src/enemy/enemy_types/06. Planter/PlanterProjectile.tscn" id="374_3pcvk"] +[ext_resource type="Texture2D" uid="uid://by0ehygy7bq13" path="res://src/vfx/Enemy Affected/Holy Damage.png" id="374_53fy3"] [ext_resource type="Texture2D" uid="uid://c8fuc7x6i365r" path="res://src/enemy/enemy_types/06. Planter/animations/Animation Frames/Side/0240.webp" id="374_t2i2n"] +[ext_resource type="Texture2D" uid="uid://dqqhu0s51o3n7" path="res://src/vfx/Enemy Affected/Wind Damage.png" id="375_3cxqd"] [ext_resource type="Texture2D" uid="uid://dpp6843bvoigd" path="res://src/enemy/enemy_types/06. Planter/animations/Animation Frames/Side/0242.webp" id="375_kgwt2"] +[ext_resource type="Texture2D" uid="uid://dh6mk1c35nymx" path="res://src/vfx/Enemy Affected/firedamage.png" id="376_36ymj"] +[ext_resource type="Texture2D" uid="uid://7a42df2ijrmv" path="res://src/vfx/Enemy Affected/earth damage.png" id="377_kgbd3"] +[ext_resource type="Texture2D" uid="uid://cot4wx5fg5pfs" path="res://src/vfx/Enemy Affected/water_hit_layer2.png" id="378_1mrc6"] +[ext_resource type="Texture2D" uid="uid://cbei66g134fgv" path="res://src/vfx/Enemy Affected/water layer 1.png" id="379_38poq"] [ext_resource type="Script" uid="uid://chxka5g7yvcg" path="res://src/projectile/ProjectileSystem.cs" id="380_nh0cy"] +[ext_resource type="Texture2D" uid="uid://bp6npqoco5fl3" path="res://src/vfx/Enemy Affected/curse_damage.png" id="380_vlgit"] [sub_resource type="Resource" id="Resource_ivy74"] script = ExtResource("2_olcu2") @@ -409,7 +417,7 @@ tracks/0/keys = { tracks/1/type = "value" tracks/1/imported = false tracks/1/enabled = true -tracks/1/path = NodePath("Model/Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:animation") +tracks/1/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:animation") tracks/1/interp = 1 tracks/1/loop_wrap = true tracks/1/keys = { @@ -421,7 +429,7 @@ tracks/1/keys = { tracks/2/type = "value" tracks/2/imported = false tracks/2/enabled = true -tracks/2/path = NodePath("Model/Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:frame") +tracks/2/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:frame") tracks/2/interp = 1 tracks/2/loop_wrap = true tracks/2/keys = { @@ -433,7 +441,7 @@ tracks/2/keys = { tracks/3/type = "value" tracks/3/imported = false tracks/3/enabled = true -tracks/3/path = NodePath("Model/Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:flip_h") +tracks/3/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:flip_h") tracks/3/interp = 1 tracks/3/loop_wrap = true tracks/3/keys = { @@ -451,7 +459,7 @@ step = 0.04 tracks/0/type = "value" tracks/0/imported = false tracks/0/enabled = true -tracks/0/path = NodePath("Model/Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:animation") +tracks/0/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:animation") tracks/0/interp = 1 tracks/0/loop_wrap = true tracks/0/keys = { @@ -463,7 +471,7 @@ tracks/0/keys = { tracks/1/type = "value" tracks/1/imported = false tracks/1/enabled = true -tracks/1/path = NodePath("Model/Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:flip_h") +tracks/1/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:flip_h") tracks/1/interp = 1 tracks/1/loop_wrap = true tracks/1/keys = { @@ -475,7 +483,7 @@ tracks/1/keys = { tracks/2/type = "value" tracks/2/imported = false tracks/2/enabled = true -tracks/2/path = NodePath("Model/Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:frame") +tracks/2/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:frame") tracks/2/interp = 1 tracks/2/loop_wrap = true tracks/2/keys = { @@ -493,7 +501,7 @@ step = 0.04 tracks/0/type = "value" tracks/0/imported = false tracks/0/enabled = true -tracks/0/path = NodePath("Model/Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:animation") +tracks/0/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:animation") tracks/0/interp = 1 tracks/0/loop_wrap = true tracks/0/keys = { @@ -505,7 +513,7 @@ tracks/0/keys = { tracks/1/type = "value" tracks/1/imported = false tracks/1/enabled = true -tracks/1/path = NodePath("Model/Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:flip_h") +tracks/1/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:flip_h") tracks/1/interp = 1 tracks/1/loop_wrap = true tracks/1/keys = { @@ -517,7 +525,7 @@ tracks/1/keys = { tracks/2/type = "value" tracks/2/imported = false tracks/2/enabled = true -tracks/2/path = NodePath("Model/Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:frame") +tracks/2/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:frame") tracks/2/interp = 1 tracks/2/loop_wrap = true tracks/2/keys = { @@ -535,7 +543,7 @@ step = 0.04 tracks/0/type = "value" tracks/0/imported = false tracks/0/enabled = true -tracks/0/path = NodePath("Model/Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:animation") +tracks/0/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:animation") tracks/0/interp = 1 tracks/0/loop_wrap = true tracks/0/keys = { @@ -547,7 +555,7 @@ tracks/0/keys = { tracks/1/type = "value" tracks/1/imported = false tracks/1/enabled = true -tracks/1/path = NodePath("Model/Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:flip_h") +tracks/1/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:flip_h") tracks/1/interp = 1 tracks/1/loop_wrap = true tracks/1/keys = { @@ -559,7 +567,7 @@ tracks/1/keys = { tracks/2/type = "value" tracks/2/imported = false tracks/2/enabled = true -tracks/2/path = NodePath("Model/Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:frame") +tracks/2/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:frame") tracks/2/interp = 1 tracks/2/loop_wrap = true tracks/2/keys = { @@ -577,7 +585,7 @@ step = 0.04 tracks/0/type = "value" tracks/0/imported = false tracks/0/enabled = true -tracks/0/path = NodePath("Model/Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:animation") +tracks/0/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:animation") tracks/0/interp = 1 tracks/0/loop_wrap = true tracks/0/keys = { @@ -589,7 +597,7 @@ tracks/0/keys = { tracks/1/type = "value" tracks/1/imported = false tracks/1/enabled = true -tracks/1/path = NodePath("Model/Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:flip_h") +tracks/1/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:flip_h") tracks/1/interp = 1 tracks/1/loop_wrap = true tracks/1/keys = { @@ -601,7 +609,7 @@ tracks/1/keys = { tracks/2/type = "value" tracks/2/imported = false tracks/2/enabled = true -tracks/2/path = NodePath("Model/Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:frame") +tracks/2/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:frame") tracks/2/interp = 1 tracks/2/loop_wrap = true tracks/2/keys = { @@ -630,7 +638,7 @@ tracks/0/keys = { tracks/1/type = "value" tracks/1/imported = false tracks/1/enabled = true -tracks/1/path = NodePath("Model/Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:animation") +tracks/1/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:animation") tracks/1/interp = 1 tracks/1/loop_wrap = true tracks/1/keys = { @@ -642,7 +650,7 @@ tracks/1/keys = { tracks/2/type = "value" tracks/2/imported = false tracks/2/enabled = true -tracks/2/path = NodePath("Model/Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:frame") +tracks/2/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:frame") tracks/2/interp = 1 tracks/2/loop_wrap = true tracks/2/keys = { @@ -654,7 +662,7 @@ tracks/2/keys = { tracks/3/type = "value" tracks/3/imported = false tracks/3/enabled = true -tracks/3/path = NodePath("Model/Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:flip_h") +tracks/3/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:flip_h") tracks/3/interp = 1 tracks/3/loop_wrap = true tracks/3/keys = { @@ -683,7 +691,7 @@ tracks/0/keys = { tracks/1/type = "value" tracks/1/imported = false tracks/1/enabled = true -tracks/1/path = NodePath("Model/Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:animation") +tracks/1/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:animation") tracks/1/interp = 1 tracks/1/loop_wrap = true tracks/1/keys = { @@ -695,7 +703,7 @@ tracks/1/keys = { tracks/2/type = "value" tracks/2/imported = false tracks/2/enabled = true -tracks/2/path = NodePath("Model/Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:frame") +tracks/2/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:frame") tracks/2/interp = 1 tracks/2/loop_wrap = true tracks/2/keys = { @@ -707,7 +715,7 @@ tracks/2/keys = { tracks/3/type = "value" tracks/3/imported = false tracks/3/enabled = true -tracks/3/path = NodePath("Model/Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:flip_h") +tracks/3/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:flip_h") tracks/3/interp = 1 tracks/3/loop_wrap = true tracks/3/keys = { @@ -736,7 +744,7 @@ tracks/0/keys = { tracks/1/type = "value" tracks/1/imported = false tracks/1/enabled = true -tracks/1/path = NodePath("Model/Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:animation") +tracks/1/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:animation") tracks/1/interp = 1 tracks/1/loop_wrap = true tracks/1/keys = { @@ -748,7 +756,7 @@ tracks/1/keys = { tracks/2/type = "value" tracks/2/imported = false tracks/2/enabled = true -tracks/2/path = NodePath("Model/Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:frame") +tracks/2/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:frame") tracks/2/interp = 1 tracks/2/loop_wrap = true tracks/2/keys = { @@ -760,7 +768,7 @@ tracks/2/keys = { tracks/3/type = "value" tracks/3/imported = false tracks/3/enabled = true -tracks/3/path = NodePath("Model/Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:flip_h") +tracks/3/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:flip_h") tracks/3/interp = 1 tracks/3/loop_wrap = true tracks/3/keys = { @@ -789,7 +797,7 @@ tracks/0/keys = { tracks/1/type = "value" tracks/1/imported = false tracks/1/enabled = true -tracks/1/path = NodePath("Model/Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:animation") +tracks/1/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:animation") tracks/1/interp = 1 tracks/1/loop_wrap = true tracks/1/keys = { @@ -801,7 +809,7 @@ tracks/1/keys = { tracks/2/type = "value" tracks/2/imported = false tracks/2/enabled = true -tracks/2/path = NodePath("Model/Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:frame") +tracks/2/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:frame") tracks/2/interp = 1 tracks/2/loop_wrap = true tracks/2/keys = { @@ -813,7 +821,7 @@ tracks/2/keys = { tracks/3/type = "value" tracks/3/imported = false tracks/3/enabled = true -tracks/3/path = NodePath("Model/Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:flip_h") +tracks/3/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:flip_h") tracks/3/interp = 1 tracks/3/loop_wrap = true tracks/3/keys = { @@ -830,7 +838,7 @@ step = 0.04 tracks/0/type = "value" tracks/0/imported = false tracks/0/enabled = true -tracks/0/path = NodePath("Model/Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:animation") +tracks/0/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:animation") tracks/0/interp = 1 tracks/0/loop_wrap = true tracks/0/keys = { @@ -842,7 +850,7 @@ tracks/0/keys = { tracks/1/type = "value" tracks/1/imported = false tracks/1/enabled = true -tracks/1/path = NodePath("Model/Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:frame") +tracks/1/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:frame") tracks/1/interp = 1 tracks/1/loop_wrap = true tracks/1/keys = { @@ -854,7 +862,7 @@ tracks/1/keys = { tracks/2/type = "value" tracks/2/imported = false tracks/2/enabled = true -tracks/2/path = NodePath("Model/Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:flip_h") +tracks/2/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:flip_h") tracks/2/interp = 1 tracks/2/loop_wrap = true tracks/2/keys = { @@ -885,7 +893,7 @@ step = 0.04 tracks/0/type = "value" tracks/0/imported = false tracks/0/enabled = true -tracks/0/path = NodePath("Model/Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:animation") +tracks/0/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:animation") tracks/0/interp = 1 tracks/0/loop_wrap = true tracks/0/keys = { @@ -897,7 +905,7 @@ tracks/0/keys = { tracks/1/type = "value" tracks/1/imported = false tracks/1/enabled = true -tracks/1/path = NodePath("Model/Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:frame") +tracks/1/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:frame") tracks/1/interp = 1 tracks/1/loop_wrap = true tracks/1/keys = { @@ -909,7 +917,7 @@ tracks/1/keys = { tracks/2/type = "value" tracks/2/imported = false tracks/2/enabled = true -tracks/2/path = NodePath("Model/Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:flip_h") +tracks/2/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:flip_h") tracks/2/interp = 1 tracks/2/loop_wrap = true tracks/2/keys = { @@ -940,7 +948,7 @@ step = 0.04 tracks/0/type = "value" tracks/0/imported = false tracks/0/enabled = true -tracks/0/path = NodePath("Model/Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:animation") +tracks/0/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:animation") tracks/0/interp = 1 tracks/0/loop_wrap = true tracks/0/keys = { @@ -952,7 +960,7 @@ tracks/0/keys = { tracks/1/type = "value" tracks/1/imported = false tracks/1/enabled = true -tracks/1/path = NodePath("Model/Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:frame") +tracks/1/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:frame") tracks/1/interp = 1 tracks/1/loop_wrap = true tracks/1/keys = { @@ -964,7 +972,7 @@ tracks/1/keys = { tracks/2/type = "value" tracks/2/imported = false tracks/2/enabled = true -tracks/2/path = NodePath("Model/Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:flip_h") +tracks/2/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:flip_h") tracks/2/interp = 1 tracks/2/loop_wrap = true tracks/2/keys = { @@ -995,7 +1003,7 @@ step = 0.04 tracks/0/type = "value" tracks/0/imported = false tracks/0/enabled = true -tracks/0/path = NodePath("Model/Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:animation") +tracks/0/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:animation") tracks/0/interp = 1 tracks/0/loop_wrap = true tracks/0/keys = { @@ -1007,7 +1015,7 @@ tracks/0/keys = { tracks/1/type = "value" tracks/1/imported = false tracks/1/enabled = true -tracks/1/path = NodePath("Model/Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:frame") +tracks/1/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:frame") tracks/1/interp = 1 tracks/1/loop_wrap = true tracks/1/keys = { @@ -1019,7 +1027,7 @@ tracks/1/keys = { tracks/2/type = "value" tracks/2/imported = false tracks/2/enabled = true -tracks/2/path = NodePath("Model/Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:flip_h") +tracks/2/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:flip_h") tracks/2/interp = 1 tracks/2/loop_wrap = true tracks/2/keys = { @@ -1086,8 +1094,485 @@ states/Start/position = Vector2(201, 100) transitions = ["Start", "Idle", SubResource("AnimationNodeStateMachineTransition_djeua"), "Idle", "Primary Attack", SubResource("AnimationNodeStateMachineTransition_8wbs7"), "Primary Attack", "Idle", SubResource("AnimationNodeStateMachineTransition_mnr4r"), "Idle", "Secondary Attack", SubResource("AnimationNodeStateMachineTransition_ghicu"), "Secondary Attack", "Idle", SubResource("AnimationNodeStateMachineTransition_nh0cy")] graph_offset = Vector2(-19, 63) +[sub_resource type="Animation" id="Animation_30xy4"] +resource_name = "CurseHit" +length = 1.56667 +tracks/0/type = "value" +tracks/0/imported = false +tracks/0/enabled = true +tracks/0/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Curse Hit Effect:animation") +tracks/0/interp = 1 +tracks/0/loop_wrap = true +tracks/0/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"default"] +} +tracks/1/type = "value" +tracks/1/imported = false +tracks/1/enabled = true +tracks/1/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Curse Hit Effect:frame") +tracks/1/interp = 1 +tracks/1/loop_wrap = true +tracks/1/keys = { +"times": PackedFloat32Array(0, 1.56667), +"transitions": PackedFloat32Array(1, 1), +"update": 0, +"values": [0, 47] +} + +[sub_resource type="Animation" id="Animation_3pm1j"] +resource_name = "EarthHit" +length = 1.46667 +tracks/0/type = "value" +tracks/0/imported = false +tracks/0/enabled = true +tracks/0/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Earth Hit Effect:animation") +tracks/0/interp = 1 +tracks/0/loop_wrap = true +tracks/0/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"EARTH DAMAGE"] +} +tracks/1/type = "value" +tracks/1/imported = false +tracks/1/enabled = true +tracks/1/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Earth Hit Effect:frame") +tracks/1/interp = 1 +tracks/1/loop_wrap = true +tracks/1/keys = { +"times": PackedFloat32Array(0, 1.46667), +"transitions": PackedFloat32Array(1, 1), +"update": 0, +"values": [0, 44] +} + +[sub_resource type="Animation" id="Animation_6shfu"] +resource_name = "Fire Damage" +length = 2.93334 +tracks/0/type = "value" +tracks/0/imported = false +tracks/0/enabled = true +tracks/0/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/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("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/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("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/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)] +} +tracks/3/type = "value" +tracks/3/imported = false +tracks/3/enabled = true +tracks/3/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Rust Activation Effect:animation") +tracks/3/interp = 1 +tracks/3/loop_wrap = true +tracks/3/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"default"] +} +tracks/4/type = "value" +tracks/4/imported = false +tracks/4/enabled = true +tracks/4/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Rust Activation Effect:frame") +tracks/4/interp = 1 +tracks/4/loop_wrap = true +tracks/4/keys = { +"times": PackedFloat32Array(0, 2.93333), +"transitions": PackedFloat32Array(1, 1), +"update": 0, +"values": [88, 88] +} + +[sub_resource type="Animation" id="Animation_f5cjs"] +resource_name = "HolyHit" +length = 0.700003 +tracks/0/type = "value" +tracks/0/imported = false +tracks/0/enabled = true +tracks/0/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Holy Hit Layer Effect:animation") +tracks/0/interp = 1 +tracks/0/loop_wrap = true +tracks/0/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"HOLY"] +} +tracks/1/type = "value" +tracks/1/imported = false +tracks/1/enabled = true +tracks/1/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Holy Hit Layer Effect:frame") +tracks/1/interp = 1 +tracks/1/loop_wrap = true +tracks/1/keys = { +"times": PackedFloat32Array(0, 0.7), +"transitions": PackedFloat32Array(1, 1), +"update": 0, +"values": [0, 21] +} + +[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("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/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("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/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("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/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"] +} +tracks/3/type = "value" +tracks/3/imported = false +tracks/3/enabled = true +tracks/3/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Rust Activation Effect:animation") +tracks/3/interp = 1 +tracks/3/loop_wrap = true +tracks/3/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"default"] +} +tracks/4/type = "value" +tracks/4/imported = false +tracks/4/enabled = true +tracks/4/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Rust Activation Effect:frame") +tracks/4/interp = 1 +tracks/4/loop_wrap = true +tracks/4/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [88] +} +tracks/5/type = "value" +tracks/5/imported = false +tracks/5/enabled = true +tracks/5/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Holy Hit Layer Effect:animation") +tracks/5/interp = 1 +tracks/5/loop_wrap = true +tracks/5/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"HOLY"] +} +tracks/6/type = "value" +tracks/6/imported = false +tracks/6/enabled = true +tracks/6/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Holy Hit Layer Effect:frame") +tracks/6/interp = 1 +tracks/6/loop_wrap = true +tracks/6/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [0] +} +tracks/7/type = "value" +tracks/7/imported = false +tracks/7/enabled = true +tracks/7/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Wind Hit Layer Effect:animation") +tracks/7/interp = 1 +tracks/7/loop_wrap = true +tracks/7/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"default"] +} +tracks/8/type = "value" +tracks/8/imported = false +tracks/8/enabled = true +tracks/8/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Wind Hit Layer Effect:frame") +tracks/8/interp = 1 +tracks/8/loop_wrap = true +tracks/8/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [50] +} +tracks/9/type = "value" +tracks/9/imported = false +tracks/9/enabled = true +tracks/9/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Water Hit Layer 1 Effect:animation") +tracks/9/interp = 1 +tracks/9/loop_wrap = true +tracks/9/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"WATER DAMAGE"] +} +tracks/10/type = "value" +tracks/10/imported = false +tracks/10/enabled = true +tracks/10/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Water Hit Layer 1 Effect:frame") +tracks/10/interp = 1 +tracks/10/loop_wrap = true +tracks/10/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [29] +} +tracks/11/type = "value" +tracks/11/imported = false +tracks/11/enabled = true +tracks/11/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Water Hit Layer 2Effect:animation") +tracks/11/interp = 1 +tracks/11/loop_wrap = true +tracks/11/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"WATER"] +} +tracks/12/type = "value" +tracks/12/imported = false +tracks/12/enabled = true +tracks/12/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Water Hit Layer 2Effect:frame") +tracks/12/interp = 1 +tracks/12/loop_wrap = true +tracks/12/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [51] +} +tracks/13/type = "value" +tracks/13/imported = false +tracks/13/enabled = true +tracks/13/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Curse Hit Effect:animation") +tracks/13/interp = 1 +tracks/13/loop_wrap = true +tracks/13/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"default"] +} +tracks/14/type = "value" +tracks/14/imported = false +tracks/14/enabled = true +tracks/14/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Curse Hit Effect:frame") +tracks/14/interp = 1 +tracks/14/loop_wrap = true +tracks/14/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [47] +} +tracks/15/type = "value" +tracks/15/imported = false +tracks/15/enabled = true +tracks/15/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Earth Hit Effect:animation") +tracks/15/interp = 1 +tracks/15/loop_wrap = true +tracks/15/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"WATER DAMAGE"] +} +tracks/16/type = "value" +tracks/16/imported = false +tracks/16/enabled = true +tracks/16/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Earth Hit Effect:frame") +tracks/16/interp = 1 +tracks/16/loop_wrap = true +tracks/16/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [0] +} + +[sub_resource type="Animation" id="Animation_0tqwp"] +resource_name = "RustActivate" +length = 1.46667 +step = 0.0166667 +tracks/0/type = "value" +tracks/0/imported = false +tracks/0/enabled = true +tracks/0/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Rust Activation Effect:animation") +tracks/0/interp = 1 +tracks/0/loop_wrap = true +tracks/0/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"default"] +} +tracks/1/type = "value" +tracks/1/imported = false +tracks/1/enabled = true +tracks/1/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Rust Activation Effect:frame") +tracks/1/interp = 1 +tracks/1/loop_wrap = true +tracks/1/keys = { +"times": PackedFloat32Array(0, 1.46667), +"transitions": PackedFloat32Array(1, 1), +"update": 0, +"values": [0, 88] +} + +[sub_resource type="Animation" id="Animation_q5dfb"] +resource_name = "WaterHit" +length = 1.7 +tracks/0/type = "value" +tracks/0/imported = false +tracks/0/enabled = true +tracks/0/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Water Hit Layer 1 Effect:animation") +tracks/0/interp = 1 +tracks/0/loop_wrap = true +tracks/0/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"WATER DAMAGE"] +} +tracks/1/type = "value" +tracks/1/imported = false +tracks/1/enabled = true +tracks/1/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Water Hit Layer 1 Effect:frame") +tracks/1/interp = 1 +tracks/1/loop_wrap = true +tracks/1/keys = { +"times": PackedFloat32Array(0, 1), +"transitions": PackedFloat32Array(1, 1), +"update": 0, +"values": [0, 29] +} +tracks/2/type = "value" +tracks/2/imported = false +tracks/2/enabled = true +tracks/2/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Water Hit Layer 2Effect:animation") +tracks/2/interp = 1 +tracks/2/loop_wrap = true +tracks/2/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"WATER"] +} +tracks/3/type = "value" +tracks/3/imported = false +tracks/3/enabled = true +tracks/3/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Water Hit Layer 2Effect:frame") +tracks/3/interp = 1 +tracks/3/loop_wrap = true +tracks/3/keys = { +"times": PackedFloat32Array(0, 1.7), +"transitions": PackedFloat32Array(1, 1), +"update": 0, +"values": [0, 51] +} + +[sub_resource type="Animation" id="Animation_godpv"] +resource_name = "WindHit" +length = 0.833335 +step = 0.0166667 +tracks/0/type = "value" +tracks/0/imported = false +tracks/0/enabled = true +tracks/0/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Wind Hit Layer Effect:animation") +tracks/0/interp = 1 +tracks/0/loop_wrap = true +tracks/0/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"default"] +} +tracks/1/type = "value" +tracks/1/imported = false +tracks/1/enabled = true +tracks/1/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Wind Hit Layer Effect:frame") +tracks/1/interp = 1 +tracks/1/loop_wrap = true +tracks/1/keys = { +"times": PackedFloat32Array(0, 0.833333), +"transitions": PackedFloat32Array(1, 1), +"update": 0, +"values": [0, 50] +} + +[sub_resource type="AnimationLibrary" id="AnimationLibrary_0tqwp"] +_data = { +&"CurseHit": SubResource("Animation_30xy4"), +&"EarthHit": SubResource("Animation_3pm1j"), +&"FireHit": SubResource("Animation_6shfu"), +&"HolyHit": SubResource("Animation_f5cjs"), +&"RESET": SubResource("Animation_cftgd"), +&"RustActivate": SubResource("Animation_0tqwp"), +&"WaterHit": SubResource("Animation_q5dfb"), +&"WindHit": SubResource("Animation_godpv") +} + [sub_resource type="ViewportTexture" id="ViewportTexture_k4mkg"] -viewport_path = NodePath("Model/Sprite3D/SubViewportContainer/SubViewport") +viewport_path = NodePath("Sprite3D/SubViewportContainer/SubViewport") [sub_resource type="SpriteFrames" id="SpriteFrames_ghicu"] animations = [{ @@ -2220,6 +2705,2685 @@ animations = [{ "speed": 25.0 }] +[sub_resource type="AtlasTexture" id="AtlasTexture_4o5f2"] +atlas = ExtResource("373_k4mkg") +region = Rect2(1206, 402, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r8ggx"] +atlas = ExtResource("373_k4mkg") +region = Rect2(1340, 402, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xafpd"] +atlas = ExtResource("373_k4mkg") +region = Rect2(1474, 402, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_73dpc"] +atlas = ExtResource("373_k4mkg") +region = Rect2(0, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vppxt"] +atlas = ExtResource("373_k4mkg") +region = Rect2(134, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nk562"] +atlas = ExtResource("373_k4mkg") +region = Rect2(268, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dwu2q"] +atlas = ExtResource("373_k4mkg") +region = Rect2(402, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w3p3j"] +atlas = ExtResource("373_k4mkg") +region = Rect2(536, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ig0ip"] +atlas = ExtResource("373_k4mkg") +region = Rect2(670, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r4enw"] +atlas = ExtResource("373_k4mkg") +region = Rect2(804, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uy6hg"] +atlas = ExtResource("373_k4mkg") +region = Rect2(938, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_85jwg"] +atlas = ExtResource("373_k4mkg") +region = Rect2(1072, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ln7dl"] +atlas = ExtResource("373_k4mkg") +region = Rect2(1206, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3vvgp"] +atlas = ExtResource("373_k4mkg") +region = Rect2(1340, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_01f7m"] +atlas = ExtResource("373_k4mkg") +region = Rect2(1474, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pp21u"] +atlas = ExtResource("373_k4mkg") +region = Rect2(0, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1aldj"] +atlas = ExtResource("373_k4mkg") +region = Rect2(134, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xv5pw"] +atlas = ExtResource("373_k4mkg") +region = Rect2(268, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_14lh3"] +atlas = ExtResource("373_k4mkg") +region = Rect2(402, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xxid6"] +atlas = ExtResource("373_k4mkg") +region = Rect2(536, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y6yeo"] +atlas = ExtResource("373_k4mkg") +region = Rect2(670, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2aohu"] +atlas = ExtResource("373_k4mkg") +region = Rect2(804, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ebvc7"] +atlas = ExtResource("373_k4mkg") +region = Rect2(938, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yd50d"] +atlas = ExtResource("373_k4mkg") +region = Rect2(1072, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yimdu"] +atlas = ExtResource("373_k4mkg") +region = Rect2(1206, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dync1"] +atlas = ExtResource("373_k4mkg") +region = Rect2(1340, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jsjdk"] +atlas = ExtResource("373_k4mkg") +region = Rect2(1474, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ueih5"] +atlas = ExtResource("373_k4mkg") +region = Rect2(0, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k0hut"] +atlas = ExtResource("373_k4mkg") +region = Rect2(134, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kybji"] +atlas = ExtResource("373_k4mkg") +region = Rect2(268, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u5vpt"] +atlas = ExtResource("373_k4mkg") +region = Rect2(402, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wko4t"] +atlas = ExtResource("373_k4mkg") +region = Rect2(536, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ru86o"] +atlas = ExtResource("373_k4mkg") +region = Rect2(670, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uybbj"] +atlas = ExtResource("373_k4mkg") +region = Rect2(804, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s6pp8"] +atlas = ExtResource("373_k4mkg") +region = Rect2(938, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a7pls"] +atlas = ExtResource("373_k4mkg") +region = Rect2(1072, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_30y71"] +atlas = ExtResource("373_k4mkg") +region = Rect2(1206, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dwl1c"] +atlas = ExtResource("373_k4mkg") +region = Rect2(1340, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_01jp4"] +atlas = ExtResource("373_k4mkg") +region = Rect2(1474, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b8ulh"] +atlas = ExtResource("373_k4mkg") +region = Rect2(0, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3walv"] +atlas = ExtResource("373_k4mkg") +region = Rect2(134, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_exyoj"] +atlas = ExtResource("373_k4mkg") +region = Rect2(268, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kus54"] +atlas = ExtResource("373_k4mkg") +region = Rect2(402, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_meauc"] +atlas = ExtResource("373_k4mkg") +region = Rect2(536, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7v7xr"] +atlas = ExtResource("373_k4mkg") +region = Rect2(670, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4ktea"] +atlas = ExtResource("373_k4mkg") +region = Rect2(804, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l8oa1"] +atlas = ExtResource("373_k4mkg") +region = Rect2(938, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3eopa"] +atlas = ExtResource("373_k4mkg") +region = Rect2(1072, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ip8hv"] +atlas = ExtResource("373_k4mkg") +region = Rect2(1206, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_42rbq"] +atlas = ExtResource("373_k4mkg") +region = Rect2(1340, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tu0vu"] +atlas = ExtResource("373_k4mkg") +region = Rect2(1474, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gbh7l"] +atlas = ExtResource("373_k4mkg") +region = Rect2(0, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_733jx"] +atlas = ExtResource("373_k4mkg") +region = Rect2(134, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sfa2q"] +atlas = ExtResource("373_k4mkg") +region = Rect2(268, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o0nvo"] +atlas = ExtResource("373_k4mkg") +region = Rect2(402, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1mv1w"] +atlas = ExtResource("373_k4mkg") +region = Rect2(536, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yw8ob"] +atlas = ExtResource("373_k4mkg") +region = Rect2(670, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ptkbd"] +atlas = ExtResource("373_k4mkg") +region = Rect2(804, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2uoiw"] +atlas = ExtResource("373_k4mkg") +region = Rect2(938, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4m684"] +atlas = ExtResource("373_k4mkg") +region = Rect2(1072, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_st6fj"] +atlas = ExtResource("373_k4mkg") +region = Rect2(1206, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1wana"] +atlas = ExtResource("373_k4mkg") +region = Rect2(1340, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ati4e"] +atlas = ExtResource("373_k4mkg") +region = Rect2(1474, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0w31q"] +atlas = ExtResource("373_k4mkg") +region = Rect2(0, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uxu33"] +atlas = ExtResource("373_k4mkg") +region = Rect2(134, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2ulnd"] +atlas = ExtResource("373_k4mkg") +region = Rect2(268, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ddsrn"] +atlas = ExtResource("373_k4mkg") +region = Rect2(402, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n1e5w"] +atlas = ExtResource("373_k4mkg") +region = Rect2(536, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f4aq5"] +atlas = ExtResource("373_k4mkg") +region = Rect2(670, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_er00h"] +atlas = ExtResource("373_k4mkg") +region = Rect2(804, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mlf5c"] +atlas = ExtResource("373_k4mkg") +region = Rect2(938, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c362w"] +atlas = ExtResource("373_k4mkg") +region = Rect2(1072, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_30wb7"] +atlas = ExtResource("373_k4mkg") +region = Rect2(1206, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_stb0b"] +atlas = ExtResource("373_k4mkg") +region = Rect2(1340, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a64qf"] +atlas = ExtResource("373_k4mkg") +region = Rect2(1474, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_52bkw"] +atlas = ExtResource("373_k4mkg") +region = Rect2(0, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y0yvc"] +atlas = ExtResource("373_k4mkg") +region = Rect2(134, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5h2xe"] +atlas = ExtResource("373_k4mkg") +region = Rect2(268, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6hh33"] +atlas = ExtResource("373_k4mkg") +region = Rect2(402, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kmk3m"] +atlas = ExtResource("373_k4mkg") +region = Rect2(536, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rbtmh"] +atlas = ExtResource("373_k4mkg") +region = Rect2(670, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bit6n"] +atlas = ExtResource("373_k4mkg") +region = Rect2(804, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_458hw"] +atlas = ExtResource("373_k4mkg") +region = Rect2(938, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4x2ea"] +atlas = ExtResource("373_k4mkg") +region = Rect2(1072, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bcljt"] +atlas = ExtResource("373_k4mkg") +region = Rect2(1206, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p6e34"] +atlas = ExtResource("373_k4mkg") +region = Rect2(1340, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2yfi0"] +atlas = ExtResource("373_k4mkg") +region = Rect2(1474, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bhoxy"] +atlas = ExtResource("373_k4mkg") +region = Rect2(0, 1474, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_41wyx"] +atlas = ExtResource("373_k4mkg") +region = Rect2(134, 1474, 134, 134) + +[sub_resource type="SpriteFrames" id="SpriteFrames_ibh7i"] +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("374_53fy3") +region = Rect2(1024, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pvn2l"] +atlas = ExtResource("374_53fy3") +region = Rect2(1536, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sctov"] +atlas = ExtResource("374_53fy3") +region = Rect2(2048, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_46bwa"] +atlas = ExtResource("374_53fy3") +region = Rect2(2560, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o42jv"] +atlas = ExtResource("374_53fy3") +region = Rect2(3072, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5dqsk"] +atlas = ExtResource("374_53fy3") +region = Rect2(3584, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_35l4k"] +atlas = ExtResource("374_53fy3") +region = Rect2(4096, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x0jfm"] +atlas = ExtResource("374_53fy3") +region = Rect2(4608, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fk16r"] +atlas = ExtResource("374_53fy3") +region = Rect2(5120, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ewtdr"] +atlas = ExtResource("374_53fy3") +region = Rect2(5632, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bul51"] +atlas = ExtResource("374_53fy3") +region = Rect2(6144, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vbobf"] +atlas = ExtResource("374_53fy3") +region = Rect2(6656, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_itqlk"] +atlas = ExtResource("374_53fy3") +region = Rect2(7168, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_41jjh"] +atlas = ExtResource("374_53fy3") +region = Rect2(7680, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kol03"] +atlas = ExtResource("374_53fy3") +region = Rect2(0, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ynyxy"] +atlas = ExtResource("374_53fy3") +region = Rect2(512, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ngcxk"] +atlas = ExtResource("374_53fy3") +region = Rect2(1024, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ba8fa"] +atlas = ExtResource("374_53fy3") +region = Rect2(1536, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ngitf"] +atlas = ExtResource("374_53fy3") +region = Rect2(2048, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_boovf"] +atlas = ExtResource("374_53fy3") +region = Rect2(2560, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jwkhr"] +atlas = ExtResource("374_53fy3") +region = Rect2(3072, 512, 512, 512) + +[sub_resource type="SpriteFrames" id="SpriteFrames_160t8"] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": null +}, { +"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("375_3cxqd") +region = Rect2(0, 0, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3jmy8"] +atlas = ExtResource("375_3cxqd") +region = Rect2(266, 0, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t76hk"] +atlas = ExtResource("375_3cxqd") +region = Rect2(532, 0, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_06gff"] +atlas = ExtResource("375_3cxqd") +region = Rect2(798, 0, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ssjgs"] +atlas = ExtResource("375_3cxqd") +region = Rect2(1064, 0, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_53u6k"] +atlas = ExtResource("375_3cxqd") +region = Rect2(0, 131, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_inmu7"] +atlas = ExtResource("375_3cxqd") +region = Rect2(266, 131, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bmkvg"] +atlas = ExtResource("375_3cxqd") +region = Rect2(532, 131, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oqdmj"] +atlas = ExtResource("375_3cxqd") +region = Rect2(798, 131, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bnn41"] +atlas = ExtResource("375_3cxqd") +region = Rect2(1064, 131, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p6hmn"] +atlas = ExtResource("375_3cxqd") +region = Rect2(0, 262, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s0ybe"] +atlas = ExtResource("375_3cxqd") +region = Rect2(266, 262, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y2273"] +atlas = ExtResource("375_3cxqd") +region = Rect2(532, 262, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2i87r"] +atlas = ExtResource("375_3cxqd") +region = Rect2(798, 262, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4q8o2"] +atlas = ExtResource("375_3cxqd") +region = Rect2(1064, 262, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_esxmc"] +atlas = ExtResource("375_3cxqd") +region = Rect2(0, 393, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rdsur"] +atlas = ExtResource("375_3cxqd") +region = Rect2(266, 393, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b2qt4"] +atlas = ExtResource("375_3cxqd") +region = Rect2(532, 393, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xamrr"] +atlas = ExtResource("375_3cxqd") +region = Rect2(798, 393, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0prqh"] +atlas = ExtResource("375_3cxqd") +region = Rect2(1064, 393, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dh1oc"] +atlas = ExtResource("375_3cxqd") +region = Rect2(0, 524, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ybb1w"] +atlas = ExtResource("375_3cxqd") +region = Rect2(266, 524, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2nkua"] +atlas = ExtResource("375_3cxqd") +region = Rect2(532, 524, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2gocr"] +atlas = ExtResource("375_3cxqd") +region = Rect2(798, 524, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_acsou"] +atlas = ExtResource("375_3cxqd") +region = Rect2(1064, 524, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yflou"] +atlas = ExtResource("375_3cxqd") +region = Rect2(0, 655, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_env3c"] +atlas = ExtResource("375_3cxqd") +region = Rect2(266, 655, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_74f4l"] +atlas = ExtResource("375_3cxqd") +region = Rect2(532, 655, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cbaq7"] +atlas = ExtResource("375_3cxqd") +region = Rect2(798, 655, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bc4hh"] +atlas = ExtResource("375_3cxqd") +region = Rect2(1064, 655, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5m27y"] +atlas = ExtResource("375_3cxqd") +region = Rect2(0, 786, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c2vig"] +atlas = ExtResource("375_3cxqd") +region = Rect2(266, 786, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h8qbh"] +atlas = ExtResource("375_3cxqd") +region = Rect2(532, 786, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vj2ia"] +atlas = ExtResource("375_3cxqd") +region = Rect2(798, 786, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h0bv3"] +atlas = ExtResource("375_3cxqd") +region = Rect2(1064, 786, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3xb07"] +atlas = ExtResource("375_3cxqd") +region = Rect2(0, 917, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p845e"] +atlas = ExtResource("375_3cxqd") +region = Rect2(266, 917, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nm575"] +atlas = ExtResource("375_3cxqd") +region = Rect2(532, 917, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8wvvt"] +atlas = ExtResource("375_3cxqd") +region = Rect2(798, 917, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2l45l"] +atlas = ExtResource("375_3cxqd") +region = Rect2(1064, 917, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0c6u7"] +atlas = ExtResource("375_3cxqd") +region = Rect2(0, 1048, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bo1qh"] +atlas = ExtResource("375_3cxqd") +region = Rect2(266, 1048, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4cq22"] +atlas = ExtResource("375_3cxqd") +region = Rect2(532, 1048, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d6auk"] +atlas = ExtResource("375_3cxqd") +region = Rect2(798, 1048, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4bvg3"] +atlas = ExtResource("375_3cxqd") +region = Rect2(1064, 1048, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rps4p"] +atlas = ExtResource("375_3cxqd") +region = Rect2(0, 1179, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qdy2n"] +atlas = ExtResource("375_3cxqd") +region = Rect2(266, 1179, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a63dt"] +atlas = ExtResource("375_3cxqd") +region = Rect2(532, 1179, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3alol"] +atlas = ExtResource("375_3cxqd") +region = Rect2(798, 1179, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w5y4o"] +atlas = ExtResource("375_3cxqd") +region = Rect2(1064, 1179, 133, 131) + +[sub_resource type="SpriteFrames" id="SpriteFrames_wn8fs"] +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("376_36ymj") +region = Rect2(200, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w5yum"] +atlas = ExtResource("376_36ymj") +region = Rect2(600, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xagiq"] +atlas = ExtResource("376_36ymj") +region = Rect2(1000, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iu4h2"] +atlas = ExtResource("376_36ymj") +region = Rect2(100, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t6kmk"] +atlas = ExtResource("376_36ymj") +region = Rect2(500, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c3c22"] +atlas = ExtResource("376_36ymj") +region = Rect2(900, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_udm06"] +atlas = ExtResource("376_36ymj") +region = Rect2(0, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_31shi"] +atlas = ExtResource("376_36ymj") +region = Rect2(400, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i6wsf"] +atlas = ExtResource("376_36ymj") +region = Rect2(800, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jhluk"] +atlas = ExtResource("376_36ymj") +region = Rect2(1200, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_exq74"] +atlas = ExtResource("376_36ymj") +region = Rect2(300, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k7tc1"] +atlas = ExtResource("376_36ymj") +region = Rect2(700, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_456io"] +atlas = ExtResource("376_36ymj") +region = Rect2(1100, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2h7ac"] +atlas = ExtResource("376_36ymj") +region = Rect2(200, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dy5lo"] +atlas = ExtResource("376_36ymj") +region = Rect2(500, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_biyyn"] +atlas = ExtResource("376_36ymj") +region = Rect2(1000, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_flqm1"] +atlas = ExtResource("376_36ymj") +region = Rect2(100, 500, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xttn8"] +atlas = ExtResource("376_36ymj") +region = Rect2(500, 500, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_85rsb"] +atlas = ExtResource("376_36ymj") +region = Rect2(900, 500, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oxqm1"] +atlas = ExtResource("376_36ymj") +region = Rect2(0, 600, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dphle"] +atlas = ExtResource("376_36ymj") +region = Rect2(400, 600, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_48bul"] +atlas = ExtResource("376_36ymj") +region = Rect2(800, 600, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2d6tt"] +atlas = ExtResource("376_36ymj") +region = Rect2(1200, 600, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ty41g"] +atlas = ExtResource("376_36ymj") +region = Rect2(300, 700, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c5uyp"] +atlas = ExtResource("376_36ymj") +region = Rect2(700, 700, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tf4dl"] +atlas = ExtResource("376_36ymj") +region = Rect2(1100, 700, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cvdlu"] +atlas = ExtResource("376_36ymj") +region = Rect2(200, 800, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f25l1"] +atlas = ExtResource("376_36ymj") +region = Rect2(600, 800, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v033q"] +atlas = ExtResource("376_36ymj") +region = Rect2(1000, 800, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xgfkn"] +atlas = ExtResource("376_36ymj") +region = Rect2(100, 900, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_duxfd"] +atlas = ExtResource("376_36ymj") +region = Rect2(500, 900, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5uvt0"] +atlas = ExtResource("376_36ymj") +region = Rect2(900, 900, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7d05g"] +atlas = ExtResource("376_36ymj") +region = Rect2(0, 1000, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x0ube"] +atlas = ExtResource("376_36ymj") +region = Rect2(400, 1000, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_15y07"] +atlas = ExtResource("376_36ymj") +region = Rect2(800, 1000, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_de0po"] +atlas = ExtResource("376_36ymj") +region = Rect2(1200, 1000, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b3rtc"] +atlas = ExtResource("376_36ymj") +region = Rect2(300, 1100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q32lt"] +atlas = ExtResource("376_36ymj") +region = Rect2(700, 1100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_88hqh"] +atlas = ExtResource("376_36ymj") +region = Rect2(1100, 1100, 100, 100) + +[sub_resource type="SpriteFrames" id="SpriteFrames_h5fl2"] +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("377_kgbd3") +region = Rect2(0, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0rj30"] +atlas = ExtResource("377_kgbd3") +region = Rect2(200, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ug1a1"] +atlas = ExtResource("377_kgbd3") +region = Rect2(400, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8eees"] +atlas = ExtResource("377_kgbd3") +region = Rect2(600, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k2i7i"] +atlas = ExtResource("377_kgbd3") +region = Rect2(800, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4wwo5"] +atlas = ExtResource("377_kgbd3") +region = Rect2(0, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_418m2"] +atlas = ExtResource("377_kgbd3") +region = Rect2(200, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6g5qj"] +atlas = ExtResource("377_kgbd3") +region = Rect2(400, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k3sey"] +atlas = ExtResource("377_kgbd3") +region = Rect2(600, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ms40v"] +atlas = ExtResource("377_kgbd3") +region = Rect2(800, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2tfej"] +atlas = ExtResource("377_kgbd3") +region = Rect2(0, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_woj7f"] +atlas = ExtResource("377_kgbd3") +region = Rect2(200, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kg861"] +atlas = ExtResource("377_kgbd3") +region = Rect2(400, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jtxxp"] +atlas = ExtResource("377_kgbd3") +region = Rect2(600, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sxooa"] +atlas = ExtResource("377_kgbd3") +region = Rect2(800, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hkj2y"] +atlas = ExtResource("377_kgbd3") +region = Rect2(0, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wm40h"] +atlas = ExtResource("377_kgbd3") +region = Rect2(200, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u66v8"] +atlas = ExtResource("377_kgbd3") +region = Rect2(400, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6ip85"] +atlas = ExtResource("377_kgbd3") +region = Rect2(600, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qad2i"] +atlas = ExtResource("377_kgbd3") +region = Rect2(800, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nifqu"] +atlas = ExtResource("377_kgbd3") +region = Rect2(0, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_goocc"] +atlas = ExtResource("377_kgbd3") +region = Rect2(200, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l78ua"] +atlas = ExtResource("377_kgbd3") +region = Rect2(400, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ybqlc"] +atlas = ExtResource("377_kgbd3") +region = Rect2(600, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d0lry"] +atlas = ExtResource("377_kgbd3") +region = Rect2(800, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ccb2v"] +atlas = ExtResource("377_kgbd3") +region = Rect2(0, 500, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dcp7h"] +atlas = ExtResource("377_kgbd3") +region = Rect2(200, 500, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3kud6"] +atlas = ExtResource("377_kgbd3") +region = Rect2(400, 500, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0tvc2"] +atlas = ExtResource("377_kgbd3") +region = Rect2(600, 500, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g5aky"] +atlas = ExtResource("377_kgbd3") +region = Rect2(800, 500, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nyc7u"] +atlas = ExtResource("377_kgbd3") +region = Rect2(0, 600, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q1yeq"] +atlas = ExtResource("377_kgbd3") +region = Rect2(200, 600, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pupfb"] +atlas = ExtResource("377_kgbd3") +region = Rect2(400, 600, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gfe8c"] +atlas = ExtResource("377_kgbd3") +region = Rect2(600, 600, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_76bl1"] +atlas = ExtResource("377_kgbd3") +region = Rect2(800, 600, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u7frn"] +atlas = ExtResource("377_kgbd3") +region = Rect2(0, 700, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ls3an"] +atlas = ExtResource("377_kgbd3") +region = Rect2(200, 700, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4l6e0"] +atlas = ExtResource("377_kgbd3") +region = Rect2(400, 700, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cvlbl"] +atlas = ExtResource("377_kgbd3") +region = Rect2(600, 700, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jkvpv"] +atlas = ExtResource("377_kgbd3") +region = Rect2(800, 700, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lpp7o"] +atlas = ExtResource("377_kgbd3") +region = Rect2(0, 800, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v8igx"] +atlas = ExtResource("377_kgbd3") +region = Rect2(200, 800, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mmm0q"] +atlas = ExtResource("377_kgbd3") +region = Rect2(400, 800, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5ukt7"] +atlas = ExtResource("377_kgbd3") +region = Rect2(600, 800, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0pkd7"] +atlas = ExtResource("377_kgbd3") +region = Rect2(800, 800, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n85t7"] +atlas = ExtResource("378_1mrc6") +region = Rect2(0, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nb4v4"] +atlas = ExtResource("378_1mrc6") +region = Rect2(100, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cl00x"] +atlas = ExtResource("378_1mrc6") +region = Rect2(200, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ufcsw"] +atlas = ExtResource("378_1mrc6") +region = Rect2(300, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aoisp"] +atlas = ExtResource("378_1mrc6") +region = Rect2(400, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3rkdy"] +atlas = ExtResource("378_1mrc6") +region = Rect2(500, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o0dym"] +atlas = ExtResource("378_1mrc6") +region = Rect2(0, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vxihx"] +atlas = ExtResource("378_1mrc6") +region = Rect2(100, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ofpmt"] +atlas = ExtResource("378_1mrc6") +region = Rect2(200, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ux0ir"] +atlas = ExtResource("378_1mrc6") +region = Rect2(300, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8dgch"] +atlas = ExtResource("378_1mrc6") +region = Rect2(400, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7ixin"] +atlas = ExtResource("378_1mrc6") +region = Rect2(500, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2kea0"] +atlas = ExtResource("378_1mrc6") +region = Rect2(0, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kgnps"] +atlas = ExtResource("378_1mrc6") +region = Rect2(100, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g2wgu"] +atlas = ExtResource("378_1mrc6") +region = Rect2(200, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0oosk"] +atlas = ExtResource("378_1mrc6") +region = Rect2(300, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_80k2g"] +atlas = ExtResource("378_1mrc6") +region = Rect2(400, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fskx7"] +atlas = ExtResource("378_1mrc6") +region = Rect2(500, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_no3pe"] +atlas = ExtResource("378_1mrc6") +region = Rect2(0, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_15fnm"] +atlas = ExtResource("378_1mrc6") +region = Rect2(100, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r5e73"] +atlas = ExtResource("378_1mrc6") +region = Rect2(200, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2im8t"] +atlas = ExtResource("378_1mrc6") +region = Rect2(300, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mxl2m"] +atlas = ExtResource("378_1mrc6") +region = Rect2(400, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6dwuh"] +atlas = ExtResource("378_1mrc6") +region = Rect2(500, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_53c1f"] +atlas = ExtResource("378_1mrc6") +region = Rect2(0, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mmbhy"] +atlas = ExtResource("378_1mrc6") +region = Rect2(100, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uwbh3"] +atlas = ExtResource("378_1mrc6") +region = Rect2(200, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j6v2y"] +atlas = ExtResource("378_1mrc6") +region = Rect2(300, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h5xbu"] +atlas = ExtResource("378_1mrc6") +region = Rect2(400, 400, 100, 100) + +[sub_resource type="SpriteFrames" id="SpriteFrames_6tam3"] +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("379_38poq") +region = Rect2(875, 452, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ekrqp"] +atlas = ExtResource("379_38poq") +region = Rect2(1050, 452, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dvnic"] +atlas = ExtResource("379_38poq") +region = Rect2(1225, 452, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rxdv7"] +atlas = ExtResource("379_38poq") +region = Rect2(1400, 452, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0pvcp"] +atlas = ExtResource("379_38poq") +region = Rect2(0, 678, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yga3t"] +atlas = ExtResource("379_38poq") +region = Rect2(175, 678, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c6qrx"] +atlas = ExtResource("379_38poq") +region = Rect2(350, 678, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fkryw"] +atlas = ExtResource("379_38poq") +region = Rect2(525, 678, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jt7jg"] +atlas = ExtResource("379_38poq") +region = Rect2(700, 678, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6eyjl"] +atlas = ExtResource("379_38poq") +region = Rect2(875, 678, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tsolq"] +atlas = ExtResource("379_38poq") +region = Rect2(1050, 678, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_opqal"] +atlas = ExtResource("379_38poq") +region = Rect2(1225, 678, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kia47"] +atlas = ExtResource("379_38poq") +region = Rect2(1400, 678, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6aolf"] +atlas = ExtResource("379_38poq") +region = Rect2(0, 904, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g6jok"] +atlas = ExtResource("379_38poq") +region = Rect2(175, 904, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_swdkn"] +atlas = ExtResource("379_38poq") +region = Rect2(350, 904, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_edlre"] +atlas = ExtResource("379_38poq") +region = Rect2(525, 904, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gbj32"] +atlas = ExtResource("379_38poq") +region = Rect2(700, 904, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bstol"] +atlas = ExtResource("379_38poq") +region = Rect2(875, 904, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_57vey"] +atlas = ExtResource("379_38poq") +region = Rect2(1050, 904, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_31ikn"] +atlas = ExtResource("379_38poq") +region = Rect2(1225, 904, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e1yxa"] +atlas = ExtResource("379_38poq") +region = Rect2(1400, 904, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7a7ks"] +atlas = ExtResource("379_38poq") +region = Rect2(0, 1130, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p2hq6"] +atlas = ExtResource("379_38poq") +region = Rect2(175, 1130, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k3fbj"] +atlas = ExtResource("379_38poq") +region = Rect2(350, 1130, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ylav8"] +atlas = ExtResource("379_38poq") +region = Rect2(525, 1130, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xhgk2"] +atlas = ExtResource("379_38poq") +region = Rect2(700, 1130, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_diucy"] +atlas = ExtResource("379_38poq") +region = Rect2(875, 1130, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8gw5n"] +atlas = ExtResource("379_38poq") +region = Rect2(1050, 1130, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hc5wr"] +atlas = ExtResource("379_38poq") +region = Rect2(1225, 1130, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fugdi"] +atlas = ExtResource("379_38poq") +region = Rect2(1400, 1130, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h222i"] +atlas = ExtResource("379_38poq") +region = Rect2(0, 1356, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7qa4p"] +atlas = ExtResource("379_38poq") +region = Rect2(175, 1356, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jbavk"] +atlas = ExtResource("379_38poq") +region = Rect2(350, 1356, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ncorq"] +atlas = ExtResource("379_38poq") +region = Rect2(525, 1356, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mdvft"] +atlas = ExtResource("379_38poq") +region = Rect2(700, 1356, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ljrf5"] +atlas = ExtResource("379_38poq") +region = Rect2(875, 1356, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r7ll6"] +atlas = ExtResource("379_38poq") +region = Rect2(1050, 1356, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6vssn"] +atlas = ExtResource("379_38poq") +region = Rect2(1225, 1356, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4lr8r"] +atlas = ExtResource("379_38poq") +region = Rect2(1400, 1356, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xp4kq"] +atlas = ExtResource("379_38poq") +region = Rect2(0, 1582, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_idymv"] +atlas = ExtResource("379_38poq") +region = Rect2(175, 1582, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ujl1x"] +atlas = ExtResource("379_38poq") +region = Rect2(350, 1582, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_37wgc"] +atlas = ExtResource("379_38poq") +region = Rect2(525, 1582, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g5fso"] +atlas = ExtResource("379_38poq") +region = Rect2(700, 1582, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4a47d"] +atlas = ExtResource("379_38poq") +region = Rect2(875, 1582, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eh3iw"] +atlas = ExtResource("379_38poq") +region = Rect2(1050, 1582, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jc54a"] +atlas = ExtResource("379_38poq") +region = Rect2(1225, 1582, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xyo6b"] +atlas = ExtResource("379_38poq") +region = Rect2(1400, 1582, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gnyks"] +atlas = ExtResource("379_38poq") +region = Rect2(0, 1808, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_08lae"] +atlas = ExtResource("379_38poq") +region = Rect2(175, 1808, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r710l"] +atlas = ExtResource("379_38poq") +region = Rect2(350, 1808, 175, 226) + +[sub_resource type="SpriteFrames" id="SpriteFrames_7uj4b"] +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("380_vlgit") +region = Rect2(134, 0, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_56ojt"] +atlas = ExtResource("380_vlgit") +region = Rect2(402, 0, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jwkdt"] +atlas = ExtResource("380_vlgit") +region = Rect2(670, 0, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tklqq"] +atlas = ExtResource("380_vlgit") +region = Rect2(938, 0, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0kd7d"] +atlas = ExtResource("380_vlgit") +region = Rect2(1206, 0, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uoo6g"] +atlas = ExtResource("380_vlgit") +region = Rect2(134, 134, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eyk0y"] +atlas = ExtResource("380_vlgit") +region = Rect2(402, 134, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0imbq"] +atlas = ExtResource("380_vlgit") +region = Rect2(670, 134, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oys1t"] +atlas = ExtResource("380_vlgit") +region = Rect2(938, 134, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_06alo"] +atlas = ExtResource("380_vlgit") +region = Rect2(1206, 134, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uoxdj"] +atlas = ExtResource("380_vlgit") +region = Rect2(134, 268, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rcb13"] +atlas = ExtResource("380_vlgit") +region = Rect2(402, 268, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pj86n"] +atlas = ExtResource("380_vlgit") +region = Rect2(670, 268, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qpw3f"] +atlas = ExtResource("380_vlgit") +region = Rect2(938, 268, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gn6h7"] +atlas = ExtResource("380_vlgit") +region = Rect2(1206, 268, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lkh03"] +atlas = ExtResource("380_vlgit") +region = Rect2(134, 402, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pdi3o"] +atlas = ExtResource("380_vlgit") +region = Rect2(402, 402, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s3ywy"] +atlas = ExtResource("380_vlgit") +region = Rect2(670, 402, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6idxu"] +atlas = ExtResource("380_vlgit") +region = Rect2(938, 402, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qndi3"] +atlas = ExtResource("380_vlgit") +region = Rect2(1206, 402, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y4ahc"] +atlas = ExtResource("380_vlgit") +region = Rect2(134, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y5c6p"] +atlas = ExtResource("380_vlgit") +region = Rect2(402, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oa8p3"] +atlas = ExtResource("380_vlgit") +region = Rect2(670, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rc08e"] +atlas = ExtResource("380_vlgit") +region = Rect2(938, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8tw6t"] +atlas = ExtResource("380_vlgit") +region = Rect2(1206, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_njvn5"] +atlas = ExtResource("380_vlgit") +region = Rect2(134, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cwp0x"] +atlas = ExtResource("380_vlgit") +region = Rect2(402, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hch5s"] +atlas = ExtResource("380_vlgit") +region = Rect2(670, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vgjuv"] +atlas = ExtResource("380_vlgit") +region = Rect2(938, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1502j"] +atlas = ExtResource("380_vlgit") +region = Rect2(1206, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5m1ra"] +atlas = ExtResource("380_vlgit") +region = Rect2(134, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l0imt"] +atlas = ExtResource("380_vlgit") +region = Rect2(402, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ywb2s"] +atlas = ExtResource("380_vlgit") +region = Rect2(670, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x5582"] +atlas = ExtResource("380_vlgit") +region = Rect2(938, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4uy6l"] +atlas = ExtResource("380_vlgit") +region = Rect2(1206, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_50esb"] +atlas = ExtResource("380_vlgit") +region = Rect2(134, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xnham"] +atlas = ExtResource("380_vlgit") +region = Rect2(402, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j1cf1"] +atlas = ExtResource("380_vlgit") +region = Rect2(670, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jvde4"] +atlas = ExtResource("380_vlgit") +region = Rect2(938, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dvkgv"] +atlas = ExtResource("380_vlgit") +region = Rect2(1206, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3ant7"] +atlas = ExtResource("380_vlgit") +region = Rect2(134, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a6f8y"] +atlas = ExtResource("380_vlgit") +region = Rect2(402, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ancbh"] +atlas = ExtResource("380_vlgit") +region = Rect2(670, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yes2c"] +atlas = ExtResource("380_vlgit") +region = Rect2(938, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cs2h2"] +atlas = ExtResource("380_vlgit") +region = Rect2(1206, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n2i2d"] +atlas = ExtResource("380_vlgit") +region = Rect2(134, 1206, 134, 134) + +[sub_resource type="SpriteFrames" id="SpriteFrames_81v2d"] +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 +}] + [node name="EnemyModelView" type="Node3D"] script = ExtResource("1_lp3cr") EnemyLoreInfo = SubResource("Resource_ivy74") @@ -2259,7 +5423,63 @@ bus = &"SFX" [node name="grassclump" parent="Model" instance=ExtResource("9_ufhu2")] transform = Transform3D(0.915, 0, 0, 0, 0.19, 0, 0, 0, 0.43, 0, 1.614, 0) -[node name="Sprite3D" type="Sprite3D" parent="Model"] +[node name="ProjectileSystem" type="Node3D" parent="."] +unique_name_in_owner = true +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -0.170087, 2.24702, 1.0328) +script = ExtResource("380_nh0cy") +ProjectileScene = ExtResource("374_3pcvk") +_projectileForce = 2.0 + +[node name="Marker3D" type="Marker3D" parent="ProjectileSystem"] + +[node name="VFXAnimations" type="Node" parent="."] + +[node name="FlameHitAnimation" type="AnimationPlayer" parent="VFXAnimations"] +unique_name_in_owner = true +libraries = { +&"": SubResource("AnimationLibrary_0tqwp") +} + +[node name="RustHitAnimation" type="AnimationPlayer" parent="VFXAnimations"] +unique_name_in_owner = true +libraries = { +&"": SubResource("AnimationLibrary_0tqwp") +} + +[node name="HolyHitAnimation" type="AnimationPlayer" parent="VFXAnimations"] +unique_name_in_owner = true +libraries = { +&"": SubResource("AnimationLibrary_0tqwp") +} + +[node name="WindHitAnimation" type="AnimationPlayer" parent="VFXAnimations"] +unique_name_in_owner = true +root_node = NodePath("../../Secondary Animation Player") +libraries = { +&"": SubResource("AnimationLibrary_0tqwp") +} + +[node name="WaterHitAnimation" type="AnimationPlayer" parent="VFXAnimations"] +unique_name_in_owner = true +root_node = NodePath("../../Secondary Animation Player") +libraries = { +&"": SubResource("AnimationLibrary_0tqwp") +} + +[node name="CurseHitAnimation" type="AnimationPlayer" parent="VFXAnimations"] +unique_name_in_owner = true +libraries = { +&"": SubResource("AnimationLibrary_0tqwp") +} + +[node name="EarthHitAnimation" type="AnimationPlayer" parent="VFXAnimations"] +unique_name_in_owner = true +root_node = NodePath("../../Secondary Animation Player") +libraries = { +&"": SubResource("AnimationLibrary_0tqwp") +} + +[node name="Sprite3D" type="Sprite3D" parent="."] unique_name_in_owner = true transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 3, 0) pixel_size = 0.006 @@ -2270,29 +5490,74 @@ texture_filter = 0 render_priority = 100 texture = SubResource("ViewportTexture_k4mkg") -[node name="SubViewportContainer" type="SubViewportContainer" parent="Model/Sprite3D"] +[node name="SubViewportContainer" type="SubViewportContainer" parent="Sprite3D"] visibility_layer = 0 offset_right = 800.0 offset_bottom = 800.0 -[node name="SubViewport" type="SubViewport" parent="Model/Sprite3D/SubViewportContainer"] +[node name="SubViewport" type="SubViewport" parent="Sprite3D/SubViewportContainer"] disable_3d = true transparent_bg = true handle_input_locally = false size = Vector2i(800, 800) render_target_update_mode = 4 -[node name="AnimatedSprite" type="AnimatedSprite2D" parent="Model/Sprite3D/SubViewportContainer/SubViewport"] +[node name="AnimatedSprite" type="AnimatedSprite2D" parent="Sprite3D/SubViewportContainer/SubViewport"] unique_name_in_owner = true sprite_frames = SubResource("SpriteFrames_ghicu") animation = &"Idle SIDE" offset = Vector2(400, 400) -[node name="ProjectileSystem" type="Node3D" parent="."] -unique_name_in_owner = true -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -0.170087, 2.24702, 1.0328) -script = ExtResource("380_nh0cy") -ProjectileScene = ExtResource("374_3pcvk") -_projectileForce = 2.0 +[node name="VFXSprites" type="Node2D" parent="Sprite3D/SubViewportContainer/SubViewport"] -[node name="Marker3D" type="Marker3D" parent="ProjectileSystem"] +[node name="Rust Activation Effect" type="AnimatedSprite2D" parent="Sprite3D/SubViewportContainer/SubViewport/VFXSprites"] +position = Vector2(400, 400) +scale = Vector2(1.54, 1.54) +sprite_frames = SubResource("SpriteFrames_ibh7i") +frame = 88 + +[node name="Holy Hit Layer Effect" type="AnimatedSprite2D" parent="Sprite3D/SubViewportContainer/SubViewport/VFXSprites"] +position = Vector2(400, 400) +scale = Vector2(0.675, 0.675) +sprite_frames = SubResource("SpriteFrames_160t8") +animation = &"HOLY" + +[node name="Wind Hit Layer Effect" type="AnimatedSprite2D" parent="Sprite3D/SubViewportContainer/SubViewport/VFXSprites"] +position = Vector2(400, 400) +scale = Vector2(1.445, 1.445) +sprite_frames = SubResource("SpriteFrames_wn8fs") +frame = 50 + +[node name="Flame Hit Effect" type="AnimatedSprite2D" parent="Sprite3D/SubViewportContainer/SubViewport/VFXSprites"] +position = Vector2(400, 400) +scale = Vector2(3.445, 3.445) +sprite_frames = SubResource("SpriteFrames_h5fl2") +animation = &"Flame Damage" +frame = 40 + +[node name="Water Hit Layer 1 Effect" type="AnimatedSprite2D" parent="Sprite3D/SubViewportContainer/SubViewport/VFXSprites"] +position = Vector2(400, 400) +scale = Vector2(2.215, 2.215) +sprite_frames = SubResource("SpriteFrames_6tam3") +animation = &"WATER DAMAGE" +frame = 29 + +[node name="Water Hit Layer 2Effect" type="AnimatedSprite2D" parent="Sprite3D/SubViewportContainer/SubViewport/VFXSprites"] +position = Vector2(400, 400) +scale = Vector2(1.105, 0.895) +sprite_frames = SubResource("SpriteFrames_7uj4b") +animation = &"WATER" +frame = 51 + +[node name="Curse Hit Effect" type="AnimatedSprite2D" parent="Sprite3D/SubViewportContainer/SubViewport/VFXSprites"] +texture_filter = 1 +position = Vector2(400, 400) +scale = Vector2(2.78, 2.78) +sprite_frames = SubResource("SpriteFrames_81v2d") +frame = 47 + +[node name="Earth Hit Effect" type="AnimatedSprite2D" parent="Sprite3D/SubViewportContainer/SubViewport/VFXSprites"] +position = Vector2(400, 400) +scale = Vector2(2.005, 2.005) +sprite_frames = SubResource("SpriteFrames_6tam3") +animation = &"WATER DAMAGE" diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/07. chinthe/ChintheModelView.tscn b/Zennysoft.Game.Ma/src/enemy/enemy_types/07. chinthe/ChintheModelView.tscn index 2a4363b1..3a11a3c5 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/07. chinthe/ChintheModelView.tscn +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/07. chinthe/ChintheModelView.tscn @@ -1,4 +1,4 @@ -[gd_scene load_steps=503 format=3 uid="uid://de6e8yv6mv4fe"] +[gd_scene load_steps=898 format=3 uid="uid://de6e8yv6mv4fe"] [ext_resource type="Script" uid="uid://cvr1qimxpignl" path="res://src/enemy/EnemyModelView2D.cs" id="1_6dej3"] [ext_resource type="Texture2D" uid="uid://dnd6d5cx7x7i8" path="res://src/enemy/enemy_types/07. chinthe/animations/CHINTHE - RERENDER/BACK/0400.png" id="2_3sdh3"] @@ -394,11 +394,19 @@ [ext_resource type="Texture2D" uid="uid://gteini5vxmj1" path="res://src/enemy/enemy_types/07. chinthe/animations/CHINTHE - RERENDER/FRONT/0352.png" id="389_whqu2"] [ext_resource type="Texture2D" uid="uid://csdrkeer8xklt" path="res://src/enemy/enemy_types/07. chinthe/animations/CHINTHE - RERENDER/FRONT/0354.png" id="390_ksvn0"] [ext_resource type="AudioStream" uid="uid://dr7w0i4v8qqip" path="res://src/audio/sfx/enemy_chinthe_land.ogg" id="391_5lbxl"] +[ext_resource type="Texture2D" uid="uid://dq70aipwl1qrg" path="res://src/vfx/Enemy Affected/Rust Particles.png" id="392_7dl50"] [ext_resource type="AudioStream" uid="uid://bq4te4d8m0uiw" path="res://src/audio/sfx/enemy_chinthe_mainattack.ogg" id="392_li182"] [ext_resource type="Texture2D" uid="uid://dafpnwkwcukp4" path="res://src/vfx/shadow_test_1.png" id="392_sgkk0"] [ext_resource type="AudioStream" uid="uid://b0w77kgmtd3g5" path="res://src/audio/sfx/enemy_chinthe_teleport.ogg" id="393_sgkk0"] +[ext_resource type="Texture2D" uid="uid://by0ehygy7bq13" path="res://src/vfx/Enemy Affected/Holy Damage.png" id="393_y2ova"] +[ext_resource type="Texture2D" uid="uid://dqqhu0s51o3n7" path="res://src/vfx/Enemy Affected/Wind Damage.png" id="394_8vs7h"] [ext_resource type="AnimationNodeStateMachine" uid="uid://cbq8xog50cjjy" path="res://src/enemy/animation_state_machines/PrimaryAttackStateMachine.tres" id="394_ldtka"] +[ext_resource type="Texture2D" uid="uid://dh6mk1c35nymx" path="res://src/vfx/Enemy Affected/firedamage.png" id="395_rgja2"] [ext_resource type="Texture2D" uid="uid://c7pf2dib2ilhs" path="res://src/vfx/Enemy/CHINTHE_BLAST.png" id="395_ymova"] +[ext_resource type="Texture2D" uid="uid://7a42df2ijrmv" path="res://src/vfx/Enemy Affected/earth damage.png" id="396_syao6"] +[ext_resource type="Texture2D" uid="uid://cot4wx5fg5pfs" path="res://src/vfx/Enemy Affected/water_hit_layer2.png" id="397_3iqav"] +[ext_resource type="Texture2D" uid="uid://cbei66g134fgv" path="res://src/vfx/Enemy Affected/water layer 1.png" id="398_ii52r"] +[ext_resource type="Texture2D" uid="uid://bp6npqoco5fl3" path="res://src/vfx/Enemy Affected/curse_damage.png" id="399_v8fg0"] [sub_resource type="ViewportTexture" id="ViewportTexture_h1kaf"] viewport_path = NodePath("Sprite3D/SubViewportContainer/SubViewport") @@ -1662,6 +1670,2685 @@ animations = [{ "speed": 5.0 }] +[sub_resource type="AtlasTexture" id="AtlasTexture_4o5f2"] +atlas = ExtResource("392_7dl50") +region = Rect2(1206, 402, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r8ggx"] +atlas = ExtResource("392_7dl50") +region = Rect2(1340, 402, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xafpd"] +atlas = ExtResource("392_7dl50") +region = Rect2(1474, 402, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_73dpc"] +atlas = ExtResource("392_7dl50") +region = Rect2(0, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vppxt"] +atlas = ExtResource("392_7dl50") +region = Rect2(134, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nk562"] +atlas = ExtResource("392_7dl50") +region = Rect2(268, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dwu2q"] +atlas = ExtResource("392_7dl50") +region = Rect2(402, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w3p3j"] +atlas = ExtResource("392_7dl50") +region = Rect2(536, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ig0ip"] +atlas = ExtResource("392_7dl50") +region = Rect2(670, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r4enw"] +atlas = ExtResource("392_7dl50") +region = Rect2(804, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uy6hg"] +atlas = ExtResource("392_7dl50") +region = Rect2(938, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_85jwg"] +atlas = ExtResource("392_7dl50") +region = Rect2(1072, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ln7dl"] +atlas = ExtResource("392_7dl50") +region = Rect2(1206, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3vvgp"] +atlas = ExtResource("392_7dl50") +region = Rect2(1340, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_01f7m"] +atlas = ExtResource("392_7dl50") +region = Rect2(1474, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pp21u"] +atlas = ExtResource("392_7dl50") +region = Rect2(0, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1aldj"] +atlas = ExtResource("392_7dl50") +region = Rect2(134, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xv5pw"] +atlas = ExtResource("392_7dl50") +region = Rect2(268, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_14lh3"] +atlas = ExtResource("392_7dl50") +region = Rect2(402, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xxid6"] +atlas = ExtResource("392_7dl50") +region = Rect2(536, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y6yeo"] +atlas = ExtResource("392_7dl50") +region = Rect2(670, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2aohu"] +atlas = ExtResource("392_7dl50") +region = Rect2(804, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ebvc7"] +atlas = ExtResource("392_7dl50") +region = Rect2(938, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yd50d"] +atlas = ExtResource("392_7dl50") +region = Rect2(1072, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yimdu"] +atlas = ExtResource("392_7dl50") +region = Rect2(1206, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dync1"] +atlas = ExtResource("392_7dl50") +region = Rect2(1340, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jsjdk"] +atlas = ExtResource("392_7dl50") +region = Rect2(1474, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ueih5"] +atlas = ExtResource("392_7dl50") +region = Rect2(0, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k0hut"] +atlas = ExtResource("392_7dl50") +region = Rect2(134, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kybji"] +atlas = ExtResource("392_7dl50") +region = Rect2(268, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u5vpt"] +atlas = ExtResource("392_7dl50") +region = Rect2(402, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wko4t"] +atlas = ExtResource("392_7dl50") +region = Rect2(536, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ru86o"] +atlas = ExtResource("392_7dl50") +region = Rect2(670, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uybbj"] +atlas = ExtResource("392_7dl50") +region = Rect2(804, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s6pp8"] +atlas = ExtResource("392_7dl50") +region = Rect2(938, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a7pls"] +atlas = ExtResource("392_7dl50") +region = Rect2(1072, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_30y71"] +atlas = ExtResource("392_7dl50") +region = Rect2(1206, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dwl1c"] +atlas = ExtResource("392_7dl50") +region = Rect2(1340, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_01jp4"] +atlas = ExtResource("392_7dl50") +region = Rect2(1474, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b8ulh"] +atlas = ExtResource("392_7dl50") +region = Rect2(0, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3walv"] +atlas = ExtResource("392_7dl50") +region = Rect2(134, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_exyoj"] +atlas = ExtResource("392_7dl50") +region = Rect2(268, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kus54"] +atlas = ExtResource("392_7dl50") +region = Rect2(402, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_meauc"] +atlas = ExtResource("392_7dl50") +region = Rect2(536, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7v7xr"] +atlas = ExtResource("392_7dl50") +region = Rect2(670, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4ktea"] +atlas = ExtResource("392_7dl50") +region = Rect2(804, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l8oa1"] +atlas = ExtResource("392_7dl50") +region = Rect2(938, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3eopa"] +atlas = ExtResource("392_7dl50") +region = Rect2(1072, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ip8hv"] +atlas = ExtResource("392_7dl50") +region = Rect2(1206, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_42rbq"] +atlas = ExtResource("392_7dl50") +region = Rect2(1340, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tu0vu"] +atlas = ExtResource("392_7dl50") +region = Rect2(1474, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gbh7l"] +atlas = ExtResource("392_7dl50") +region = Rect2(0, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_733jx"] +atlas = ExtResource("392_7dl50") +region = Rect2(134, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sfa2q"] +atlas = ExtResource("392_7dl50") +region = Rect2(268, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o0nvo"] +atlas = ExtResource("392_7dl50") +region = Rect2(402, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1mv1w"] +atlas = ExtResource("392_7dl50") +region = Rect2(536, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yw8ob"] +atlas = ExtResource("392_7dl50") +region = Rect2(670, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ptkbd"] +atlas = ExtResource("392_7dl50") +region = Rect2(804, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2uoiw"] +atlas = ExtResource("392_7dl50") +region = Rect2(938, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4m684"] +atlas = ExtResource("392_7dl50") +region = Rect2(1072, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_st6fj"] +atlas = ExtResource("392_7dl50") +region = Rect2(1206, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1wana"] +atlas = ExtResource("392_7dl50") +region = Rect2(1340, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ati4e"] +atlas = ExtResource("392_7dl50") +region = Rect2(1474, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0w31q"] +atlas = ExtResource("392_7dl50") +region = Rect2(0, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uxu33"] +atlas = ExtResource("392_7dl50") +region = Rect2(134, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2ulnd"] +atlas = ExtResource("392_7dl50") +region = Rect2(268, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ddsrn"] +atlas = ExtResource("392_7dl50") +region = Rect2(402, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n1e5w"] +atlas = ExtResource("392_7dl50") +region = Rect2(536, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f4aq5"] +atlas = ExtResource("392_7dl50") +region = Rect2(670, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_er00h"] +atlas = ExtResource("392_7dl50") +region = Rect2(804, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mlf5c"] +atlas = ExtResource("392_7dl50") +region = Rect2(938, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c362w"] +atlas = ExtResource("392_7dl50") +region = Rect2(1072, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_30wb7"] +atlas = ExtResource("392_7dl50") +region = Rect2(1206, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_stb0b"] +atlas = ExtResource("392_7dl50") +region = Rect2(1340, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a64qf"] +atlas = ExtResource("392_7dl50") +region = Rect2(1474, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_52bkw"] +atlas = ExtResource("392_7dl50") +region = Rect2(0, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y0yvc"] +atlas = ExtResource("392_7dl50") +region = Rect2(134, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5h2xe"] +atlas = ExtResource("392_7dl50") +region = Rect2(268, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6hh33"] +atlas = ExtResource("392_7dl50") +region = Rect2(402, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kmk3m"] +atlas = ExtResource("392_7dl50") +region = Rect2(536, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rbtmh"] +atlas = ExtResource("392_7dl50") +region = Rect2(670, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bit6n"] +atlas = ExtResource("392_7dl50") +region = Rect2(804, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_458hw"] +atlas = ExtResource("392_7dl50") +region = Rect2(938, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4x2ea"] +atlas = ExtResource("392_7dl50") +region = Rect2(1072, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bcljt"] +atlas = ExtResource("392_7dl50") +region = Rect2(1206, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p6e34"] +atlas = ExtResource("392_7dl50") +region = Rect2(1340, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2yfi0"] +atlas = ExtResource("392_7dl50") +region = Rect2(1474, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bhoxy"] +atlas = ExtResource("392_7dl50") +region = Rect2(0, 1474, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_41wyx"] +atlas = ExtResource("392_7dl50") +region = Rect2(134, 1474, 134, 134) + +[sub_resource type="SpriteFrames" id="SpriteFrames_r44fx"] +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("393_y2ova") +region = Rect2(1024, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pvn2l"] +atlas = ExtResource("393_y2ova") +region = Rect2(1536, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sctov"] +atlas = ExtResource("393_y2ova") +region = Rect2(2048, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_46bwa"] +atlas = ExtResource("393_y2ova") +region = Rect2(2560, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o42jv"] +atlas = ExtResource("393_y2ova") +region = Rect2(3072, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5dqsk"] +atlas = ExtResource("393_y2ova") +region = Rect2(3584, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_35l4k"] +atlas = ExtResource("393_y2ova") +region = Rect2(4096, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x0jfm"] +atlas = ExtResource("393_y2ova") +region = Rect2(4608, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fk16r"] +atlas = ExtResource("393_y2ova") +region = Rect2(5120, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ewtdr"] +atlas = ExtResource("393_y2ova") +region = Rect2(5632, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bul51"] +atlas = ExtResource("393_y2ova") +region = Rect2(6144, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vbobf"] +atlas = ExtResource("393_y2ova") +region = Rect2(6656, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_itqlk"] +atlas = ExtResource("393_y2ova") +region = Rect2(7168, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_41jjh"] +atlas = ExtResource("393_y2ova") +region = Rect2(7680, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kol03"] +atlas = ExtResource("393_y2ova") +region = Rect2(0, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ynyxy"] +atlas = ExtResource("393_y2ova") +region = Rect2(512, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ngcxk"] +atlas = ExtResource("393_y2ova") +region = Rect2(1024, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ba8fa"] +atlas = ExtResource("393_y2ova") +region = Rect2(1536, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ngitf"] +atlas = ExtResource("393_y2ova") +region = Rect2(2048, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_boovf"] +atlas = ExtResource("393_y2ova") +region = Rect2(2560, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jwkhr"] +atlas = ExtResource("393_y2ova") +region = Rect2(3072, 512, 512, 512) + +[sub_resource type="SpriteFrames" id="SpriteFrames_dhuhq"] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": null +}, { +"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("394_8vs7h") +region = Rect2(0, 0, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3jmy8"] +atlas = ExtResource("394_8vs7h") +region = Rect2(266, 0, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t76hk"] +atlas = ExtResource("394_8vs7h") +region = Rect2(532, 0, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_06gff"] +atlas = ExtResource("394_8vs7h") +region = Rect2(798, 0, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ssjgs"] +atlas = ExtResource("394_8vs7h") +region = Rect2(1064, 0, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_53u6k"] +atlas = ExtResource("394_8vs7h") +region = Rect2(0, 131, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_inmu7"] +atlas = ExtResource("394_8vs7h") +region = Rect2(266, 131, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bmkvg"] +atlas = ExtResource("394_8vs7h") +region = Rect2(532, 131, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oqdmj"] +atlas = ExtResource("394_8vs7h") +region = Rect2(798, 131, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bnn41"] +atlas = ExtResource("394_8vs7h") +region = Rect2(1064, 131, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p6hmn"] +atlas = ExtResource("394_8vs7h") +region = Rect2(0, 262, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s0ybe"] +atlas = ExtResource("394_8vs7h") +region = Rect2(266, 262, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y2273"] +atlas = ExtResource("394_8vs7h") +region = Rect2(532, 262, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2i87r"] +atlas = ExtResource("394_8vs7h") +region = Rect2(798, 262, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4q8o2"] +atlas = ExtResource("394_8vs7h") +region = Rect2(1064, 262, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_esxmc"] +atlas = ExtResource("394_8vs7h") +region = Rect2(0, 393, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rdsur"] +atlas = ExtResource("394_8vs7h") +region = Rect2(266, 393, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b2qt4"] +atlas = ExtResource("394_8vs7h") +region = Rect2(532, 393, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xamrr"] +atlas = ExtResource("394_8vs7h") +region = Rect2(798, 393, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0prqh"] +atlas = ExtResource("394_8vs7h") +region = Rect2(1064, 393, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dh1oc"] +atlas = ExtResource("394_8vs7h") +region = Rect2(0, 524, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ybb1w"] +atlas = ExtResource("394_8vs7h") +region = Rect2(266, 524, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2nkua"] +atlas = ExtResource("394_8vs7h") +region = Rect2(532, 524, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2gocr"] +atlas = ExtResource("394_8vs7h") +region = Rect2(798, 524, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_acsou"] +atlas = ExtResource("394_8vs7h") +region = Rect2(1064, 524, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yflou"] +atlas = ExtResource("394_8vs7h") +region = Rect2(0, 655, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_env3c"] +atlas = ExtResource("394_8vs7h") +region = Rect2(266, 655, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_74f4l"] +atlas = ExtResource("394_8vs7h") +region = Rect2(532, 655, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cbaq7"] +atlas = ExtResource("394_8vs7h") +region = Rect2(798, 655, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bc4hh"] +atlas = ExtResource("394_8vs7h") +region = Rect2(1064, 655, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5m27y"] +atlas = ExtResource("394_8vs7h") +region = Rect2(0, 786, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c2vig"] +atlas = ExtResource("394_8vs7h") +region = Rect2(266, 786, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h8qbh"] +atlas = ExtResource("394_8vs7h") +region = Rect2(532, 786, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vj2ia"] +atlas = ExtResource("394_8vs7h") +region = Rect2(798, 786, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h0bv3"] +atlas = ExtResource("394_8vs7h") +region = Rect2(1064, 786, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3xb07"] +atlas = ExtResource("394_8vs7h") +region = Rect2(0, 917, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p845e"] +atlas = ExtResource("394_8vs7h") +region = Rect2(266, 917, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nm575"] +atlas = ExtResource("394_8vs7h") +region = Rect2(532, 917, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8wvvt"] +atlas = ExtResource("394_8vs7h") +region = Rect2(798, 917, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2l45l"] +atlas = ExtResource("394_8vs7h") +region = Rect2(1064, 917, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0c6u7"] +atlas = ExtResource("394_8vs7h") +region = Rect2(0, 1048, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bo1qh"] +atlas = ExtResource("394_8vs7h") +region = Rect2(266, 1048, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4cq22"] +atlas = ExtResource("394_8vs7h") +region = Rect2(532, 1048, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d6auk"] +atlas = ExtResource("394_8vs7h") +region = Rect2(798, 1048, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4bvg3"] +atlas = ExtResource("394_8vs7h") +region = Rect2(1064, 1048, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rps4p"] +atlas = ExtResource("394_8vs7h") +region = Rect2(0, 1179, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qdy2n"] +atlas = ExtResource("394_8vs7h") +region = Rect2(266, 1179, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a63dt"] +atlas = ExtResource("394_8vs7h") +region = Rect2(532, 1179, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3alol"] +atlas = ExtResource("394_8vs7h") +region = Rect2(798, 1179, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w5y4o"] +atlas = ExtResource("394_8vs7h") +region = Rect2(1064, 1179, 133, 131) + +[sub_resource type="SpriteFrames" id="SpriteFrames_y4bdd"] +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("395_rgja2") +region = Rect2(200, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w5yum"] +atlas = ExtResource("395_rgja2") +region = Rect2(600, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xagiq"] +atlas = ExtResource("395_rgja2") +region = Rect2(1000, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iu4h2"] +atlas = ExtResource("395_rgja2") +region = Rect2(100, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t6kmk"] +atlas = ExtResource("395_rgja2") +region = Rect2(500, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c3c22"] +atlas = ExtResource("395_rgja2") +region = Rect2(900, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_udm06"] +atlas = ExtResource("395_rgja2") +region = Rect2(0, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_31shi"] +atlas = ExtResource("395_rgja2") +region = Rect2(400, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i6wsf"] +atlas = ExtResource("395_rgja2") +region = Rect2(800, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jhluk"] +atlas = ExtResource("395_rgja2") +region = Rect2(1200, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_exq74"] +atlas = ExtResource("395_rgja2") +region = Rect2(300, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k7tc1"] +atlas = ExtResource("395_rgja2") +region = Rect2(700, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_456io"] +atlas = ExtResource("395_rgja2") +region = Rect2(1100, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2h7ac"] +atlas = ExtResource("395_rgja2") +region = Rect2(200, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dy5lo"] +atlas = ExtResource("395_rgja2") +region = Rect2(500, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_biyyn"] +atlas = ExtResource("395_rgja2") +region = Rect2(1000, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_flqm1"] +atlas = ExtResource("395_rgja2") +region = Rect2(100, 500, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xttn8"] +atlas = ExtResource("395_rgja2") +region = Rect2(500, 500, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_85rsb"] +atlas = ExtResource("395_rgja2") +region = Rect2(900, 500, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oxqm1"] +atlas = ExtResource("395_rgja2") +region = Rect2(0, 600, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dphle"] +atlas = ExtResource("395_rgja2") +region = Rect2(400, 600, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_48bul"] +atlas = ExtResource("395_rgja2") +region = Rect2(800, 600, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2d6tt"] +atlas = ExtResource("395_rgja2") +region = Rect2(1200, 600, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ty41g"] +atlas = ExtResource("395_rgja2") +region = Rect2(300, 700, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c5uyp"] +atlas = ExtResource("395_rgja2") +region = Rect2(700, 700, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tf4dl"] +atlas = ExtResource("395_rgja2") +region = Rect2(1100, 700, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cvdlu"] +atlas = ExtResource("395_rgja2") +region = Rect2(200, 800, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f25l1"] +atlas = ExtResource("395_rgja2") +region = Rect2(600, 800, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v033q"] +atlas = ExtResource("395_rgja2") +region = Rect2(1000, 800, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xgfkn"] +atlas = ExtResource("395_rgja2") +region = Rect2(100, 900, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_duxfd"] +atlas = ExtResource("395_rgja2") +region = Rect2(500, 900, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5uvt0"] +atlas = ExtResource("395_rgja2") +region = Rect2(900, 900, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7d05g"] +atlas = ExtResource("395_rgja2") +region = Rect2(0, 1000, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x0ube"] +atlas = ExtResource("395_rgja2") +region = Rect2(400, 1000, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_15y07"] +atlas = ExtResource("395_rgja2") +region = Rect2(800, 1000, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_de0po"] +atlas = ExtResource("395_rgja2") +region = Rect2(1200, 1000, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b3rtc"] +atlas = ExtResource("395_rgja2") +region = Rect2(300, 1100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q32lt"] +atlas = ExtResource("395_rgja2") +region = Rect2(700, 1100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_88hqh"] +atlas = ExtResource("395_rgja2") +region = Rect2(1100, 1100, 100, 100) + +[sub_resource type="SpriteFrames" id="SpriteFrames_syb4h"] +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("396_syao6") +region = Rect2(0, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0rj30"] +atlas = ExtResource("396_syao6") +region = Rect2(200, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ug1a1"] +atlas = ExtResource("396_syao6") +region = Rect2(400, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8eees"] +atlas = ExtResource("396_syao6") +region = Rect2(600, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k2i7i"] +atlas = ExtResource("396_syao6") +region = Rect2(800, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4wwo5"] +atlas = ExtResource("396_syao6") +region = Rect2(0, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_418m2"] +atlas = ExtResource("396_syao6") +region = Rect2(200, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6g5qj"] +atlas = ExtResource("396_syao6") +region = Rect2(400, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k3sey"] +atlas = ExtResource("396_syao6") +region = Rect2(600, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ms40v"] +atlas = ExtResource("396_syao6") +region = Rect2(800, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2tfej"] +atlas = ExtResource("396_syao6") +region = Rect2(0, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_woj7f"] +atlas = ExtResource("396_syao6") +region = Rect2(200, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kg861"] +atlas = ExtResource("396_syao6") +region = Rect2(400, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jtxxp"] +atlas = ExtResource("396_syao6") +region = Rect2(600, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sxooa"] +atlas = ExtResource("396_syao6") +region = Rect2(800, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hkj2y"] +atlas = ExtResource("396_syao6") +region = Rect2(0, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wm40h"] +atlas = ExtResource("396_syao6") +region = Rect2(200, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u66v8"] +atlas = ExtResource("396_syao6") +region = Rect2(400, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6ip85"] +atlas = ExtResource("396_syao6") +region = Rect2(600, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qad2i"] +atlas = ExtResource("396_syao6") +region = Rect2(800, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nifqu"] +atlas = ExtResource("396_syao6") +region = Rect2(0, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_goocc"] +atlas = ExtResource("396_syao6") +region = Rect2(200, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l78ua"] +atlas = ExtResource("396_syao6") +region = Rect2(400, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ybqlc"] +atlas = ExtResource("396_syao6") +region = Rect2(600, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d0lry"] +atlas = ExtResource("396_syao6") +region = Rect2(800, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ccb2v"] +atlas = ExtResource("396_syao6") +region = Rect2(0, 500, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dcp7h"] +atlas = ExtResource("396_syao6") +region = Rect2(200, 500, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3kud6"] +atlas = ExtResource("396_syao6") +region = Rect2(400, 500, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0tvc2"] +atlas = ExtResource("396_syao6") +region = Rect2(600, 500, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g5aky"] +atlas = ExtResource("396_syao6") +region = Rect2(800, 500, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nyc7u"] +atlas = ExtResource("396_syao6") +region = Rect2(0, 600, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q1yeq"] +atlas = ExtResource("396_syao6") +region = Rect2(200, 600, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pupfb"] +atlas = ExtResource("396_syao6") +region = Rect2(400, 600, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gfe8c"] +atlas = ExtResource("396_syao6") +region = Rect2(600, 600, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_76bl1"] +atlas = ExtResource("396_syao6") +region = Rect2(800, 600, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u7frn"] +atlas = ExtResource("396_syao6") +region = Rect2(0, 700, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ls3an"] +atlas = ExtResource("396_syao6") +region = Rect2(200, 700, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4l6e0"] +atlas = ExtResource("396_syao6") +region = Rect2(400, 700, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cvlbl"] +atlas = ExtResource("396_syao6") +region = Rect2(600, 700, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jkvpv"] +atlas = ExtResource("396_syao6") +region = Rect2(800, 700, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lpp7o"] +atlas = ExtResource("396_syao6") +region = Rect2(0, 800, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v8igx"] +atlas = ExtResource("396_syao6") +region = Rect2(200, 800, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mmm0q"] +atlas = ExtResource("396_syao6") +region = Rect2(400, 800, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5ukt7"] +atlas = ExtResource("396_syao6") +region = Rect2(600, 800, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0pkd7"] +atlas = ExtResource("396_syao6") +region = Rect2(800, 800, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n85t7"] +atlas = ExtResource("397_3iqav") +region = Rect2(0, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nb4v4"] +atlas = ExtResource("397_3iqav") +region = Rect2(100, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cl00x"] +atlas = ExtResource("397_3iqav") +region = Rect2(200, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ufcsw"] +atlas = ExtResource("397_3iqav") +region = Rect2(300, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aoisp"] +atlas = ExtResource("397_3iqav") +region = Rect2(400, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3rkdy"] +atlas = ExtResource("397_3iqav") +region = Rect2(500, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o0dym"] +atlas = ExtResource("397_3iqav") +region = Rect2(0, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vxihx"] +atlas = ExtResource("397_3iqav") +region = Rect2(100, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ofpmt"] +atlas = ExtResource("397_3iqav") +region = Rect2(200, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ux0ir"] +atlas = ExtResource("397_3iqav") +region = Rect2(300, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8dgch"] +atlas = ExtResource("397_3iqav") +region = Rect2(400, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7ixin"] +atlas = ExtResource("397_3iqav") +region = Rect2(500, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2kea0"] +atlas = ExtResource("397_3iqav") +region = Rect2(0, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kgnps"] +atlas = ExtResource("397_3iqav") +region = Rect2(100, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g2wgu"] +atlas = ExtResource("397_3iqav") +region = Rect2(200, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0oosk"] +atlas = ExtResource("397_3iqav") +region = Rect2(300, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_80k2g"] +atlas = ExtResource("397_3iqav") +region = Rect2(400, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fskx7"] +atlas = ExtResource("397_3iqav") +region = Rect2(500, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_no3pe"] +atlas = ExtResource("397_3iqav") +region = Rect2(0, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_15fnm"] +atlas = ExtResource("397_3iqav") +region = Rect2(100, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r5e73"] +atlas = ExtResource("397_3iqav") +region = Rect2(200, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2im8t"] +atlas = ExtResource("397_3iqav") +region = Rect2(300, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mxl2m"] +atlas = ExtResource("397_3iqav") +region = Rect2(400, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6dwuh"] +atlas = ExtResource("397_3iqav") +region = Rect2(500, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_53c1f"] +atlas = ExtResource("397_3iqav") +region = Rect2(0, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mmbhy"] +atlas = ExtResource("397_3iqav") +region = Rect2(100, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uwbh3"] +atlas = ExtResource("397_3iqav") +region = Rect2(200, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j6v2y"] +atlas = ExtResource("397_3iqav") +region = Rect2(300, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h5xbu"] +atlas = ExtResource("397_3iqav") +region = Rect2(400, 400, 100, 100) + +[sub_resource type="SpriteFrames" id="SpriteFrames_8u7he"] +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("398_ii52r") +region = Rect2(875, 452, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ekrqp"] +atlas = ExtResource("398_ii52r") +region = Rect2(1050, 452, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dvnic"] +atlas = ExtResource("398_ii52r") +region = Rect2(1225, 452, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rxdv7"] +atlas = ExtResource("398_ii52r") +region = Rect2(1400, 452, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0pvcp"] +atlas = ExtResource("398_ii52r") +region = Rect2(0, 678, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yga3t"] +atlas = ExtResource("398_ii52r") +region = Rect2(175, 678, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c6qrx"] +atlas = ExtResource("398_ii52r") +region = Rect2(350, 678, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fkryw"] +atlas = ExtResource("398_ii52r") +region = Rect2(525, 678, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jt7jg"] +atlas = ExtResource("398_ii52r") +region = Rect2(700, 678, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6eyjl"] +atlas = ExtResource("398_ii52r") +region = Rect2(875, 678, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tsolq"] +atlas = ExtResource("398_ii52r") +region = Rect2(1050, 678, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_opqal"] +atlas = ExtResource("398_ii52r") +region = Rect2(1225, 678, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kia47"] +atlas = ExtResource("398_ii52r") +region = Rect2(1400, 678, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6aolf"] +atlas = ExtResource("398_ii52r") +region = Rect2(0, 904, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g6jok"] +atlas = ExtResource("398_ii52r") +region = Rect2(175, 904, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_swdkn"] +atlas = ExtResource("398_ii52r") +region = Rect2(350, 904, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_edlre"] +atlas = ExtResource("398_ii52r") +region = Rect2(525, 904, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gbj32"] +atlas = ExtResource("398_ii52r") +region = Rect2(700, 904, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bstol"] +atlas = ExtResource("398_ii52r") +region = Rect2(875, 904, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_57vey"] +atlas = ExtResource("398_ii52r") +region = Rect2(1050, 904, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_31ikn"] +atlas = ExtResource("398_ii52r") +region = Rect2(1225, 904, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e1yxa"] +atlas = ExtResource("398_ii52r") +region = Rect2(1400, 904, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7a7ks"] +atlas = ExtResource("398_ii52r") +region = Rect2(0, 1130, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p2hq6"] +atlas = ExtResource("398_ii52r") +region = Rect2(175, 1130, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k3fbj"] +atlas = ExtResource("398_ii52r") +region = Rect2(350, 1130, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ylav8"] +atlas = ExtResource("398_ii52r") +region = Rect2(525, 1130, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xhgk2"] +atlas = ExtResource("398_ii52r") +region = Rect2(700, 1130, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_diucy"] +atlas = ExtResource("398_ii52r") +region = Rect2(875, 1130, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8gw5n"] +atlas = ExtResource("398_ii52r") +region = Rect2(1050, 1130, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hc5wr"] +atlas = ExtResource("398_ii52r") +region = Rect2(1225, 1130, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fugdi"] +atlas = ExtResource("398_ii52r") +region = Rect2(1400, 1130, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h222i"] +atlas = ExtResource("398_ii52r") +region = Rect2(0, 1356, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7qa4p"] +atlas = ExtResource("398_ii52r") +region = Rect2(175, 1356, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jbavk"] +atlas = ExtResource("398_ii52r") +region = Rect2(350, 1356, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ncorq"] +atlas = ExtResource("398_ii52r") +region = Rect2(525, 1356, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mdvft"] +atlas = ExtResource("398_ii52r") +region = Rect2(700, 1356, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ljrf5"] +atlas = ExtResource("398_ii52r") +region = Rect2(875, 1356, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r7ll6"] +atlas = ExtResource("398_ii52r") +region = Rect2(1050, 1356, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6vssn"] +atlas = ExtResource("398_ii52r") +region = Rect2(1225, 1356, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4lr8r"] +atlas = ExtResource("398_ii52r") +region = Rect2(1400, 1356, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xp4kq"] +atlas = ExtResource("398_ii52r") +region = Rect2(0, 1582, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_idymv"] +atlas = ExtResource("398_ii52r") +region = Rect2(175, 1582, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ujl1x"] +atlas = ExtResource("398_ii52r") +region = Rect2(350, 1582, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_37wgc"] +atlas = ExtResource("398_ii52r") +region = Rect2(525, 1582, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g5fso"] +atlas = ExtResource("398_ii52r") +region = Rect2(700, 1582, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4a47d"] +atlas = ExtResource("398_ii52r") +region = Rect2(875, 1582, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eh3iw"] +atlas = ExtResource("398_ii52r") +region = Rect2(1050, 1582, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jc54a"] +atlas = ExtResource("398_ii52r") +region = Rect2(1225, 1582, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xyo6b"] +atlas = ExtResource("398_ii52r") +region = Rect2(1400, 1582, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gnyks"] +atlas = ExtResource("398_ii52r") +region = Rect2(0, 1808, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_08lae"] +atlas = ExtResource("398_ii52r") +region = Rect2(175, 1808, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r710l"] +atlas = ExtResource("398_ii52r") +region = Rect2(350, 1808, 175, 226) + +[sub_resource type="SpriteFrames" id="SpriteFrames_8e7of"] +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("399_v8fg0") +region = Rect2(134, 0, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_56ojt"] +atlas = ExtResource("399_v8fg0") +region = Rect2(402, 0, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jwkdt"] +atlas = ExtResource("399_v8fg0") +region = Rect2(670, 0, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tklqq"] +atlas = ExtResource("399_v8fg0") +region = Rect2(938, 0, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0kd7d"] +atlas = ExtResource("399_v8fg0") +region = Rect2(1206, 0, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uoo6g"] +atlas = ExtResource("399_v8fg0") +region = Rect2(134, 134, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eyk0y"] +atlas = ExtResource("399_v8fg0") +region = Rect2(402, 134, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0imbq"] +atlas = ExtResource("399_v8fg0") +region = Rect2(670, 134, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oys1t"] +atlas = ExtResource("399_v8fg0") +region = Rect2(938, 134, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_06alo"] +atlas = ExtResource("399_v8fg0") +region = Rect2(1206, 134, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uoxdj"] +atlas = ExtResource("399_v8fg0") +region = Rect2(134, 268, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rcb13"] +atlas = ExtResource("399_v8fg0") +region = Rect2(402, 268, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pj86n"] +atlas = ExtResource("399_v8fg0") +region = Rect2(670, 268, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qpw3f"] +atlas = ExtResource("399_v8fg0") +region = Rect2(938, 268, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gn6h7"] +atlas = ExtResource("399_v8fg0") +region = Rect2(1206, 268, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lkh03"] +atlas = ExtResource("399_v8fg0") +region = Rect2(134, 402, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pdi3o"] +atlas = ExtResource("399_v8fg0") +region = Rect2(402, 402, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s3ywy"] +atlas = ExtResource("399_v8fg0") +region = Rect2(670, 402, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6idxu"] +atlas = ExtResource("399_v8fg0") +region = Rect2(938, 402, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qndi3"] +atlas = ExtResource("399_v8fg0") +region = Rect2(1206, 402, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y4ahc"] +atlas = ExtResource("399_v8fg0") +region = Rect2(134, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y5c6p"] +atlas = ExtResource("399_v8fg0") +region = Rect2(402, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oa8p3"] +atlas = ExtResource("399_v8fg0") +region = Rect2(670, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rc08e"] +atlas = ExtResource("399_v8fg0") +region = Rect2(938, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8tw6t"] +atlas = ExtResource("399_v8fg0") +region = Rect2(1206, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_njvn5"] +atlas = ExtResource("399_v8fg0") +region = Rect2(134, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cwp0x"] +atlas = ExtResource("399_v8fg0") +region = Rect2(402, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hch5s"] +atlas = ExtResource("399_v8fg0") +region = Rect2(670, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vgjuv"] +atlas = ExtResource("399_v8fg0") +region = Rect2(938, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1502j"] +atlas = ExtResource("399_v8fg0") +region = Rect2(1206, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5m1ra"] +atlas = ExtResource("399_v8fg0") +region = Rect2(134, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l0imt"] +atlas = ExtResource("399_v8fg0") +region = Rect2(402, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ywb2s"] +atlas = ExtResource("399_v8fg0") +region = Rect2(670, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x5582"] +atlas = ExtResource("399_v8fg0") +region = Rect2(938, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4uy6l"] +atlas = ExtResource("399_v8fg0") +region = Rect2(1206, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_50esb"] +atlas = ExtResource("399_v8fg0") +region = Rect2(134, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xnham"] +atlas = ExtResource("399_v8fg0") +region = Rect2(402, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j1cf1"] +atlas = ExtResource("399_v8fg0") +region = Rect2(670, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jvde4"] +atlas = ExtResource("399_v8fg0") +region = Rect2(938, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dvkgv"] +atlas = ExtResource("399_v8fg0") +region = Rect2(1206, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3ant7"] +atlas = ExtResource("399_v8fg0") +region = Rect2(134, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a6f8y"] +atlas = ExtResource("399_v8fg0") +region = Rect2(402, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ancbh"] +atlas = ExtResource("399_v8fg0") +region = Rect2(670, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yes2c"] +atlas = ExtResource("399_v8fg0") +region = Rect2(938, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cs2h2"] +atlas = ExtResource("399_v8fg0") +region = Rect2(1206, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n2i2d"] +atlas = ExtResource("399_v8fg0") +region = Rect2(134, 1206, 134, 134) + +[sub_resource type="SpriteFrames" id="SpriteFrames_manul"] +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="BoxShape3D" id="BoxShape3D_53wuj"] size = Vector3(1, 0.565, 2) @@ -3486,6 +6173,483 @@ height = 0.046 radial_segments = 8 rings = 8 +[sub_resource type="Animation" id="Animation_30xy4"] +resource_name = "CurseHit" +length = 1.56667 +tracks/0/type = "value" +tracks/0/imported = false +tracks/0/enabled = true +tracks/0/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Curse Hit Effect:animation") +tracks/0/interp = 1 +tracks/0/loop_wrap = true +tracks/0/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"default"] +} +tracks/1/type = "value" +tracks/1/imported = false +tracks/1/enabled = true +tracks/1/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Curse Hit Effect:frame") +tracks/1/interp = 1 +tracks/1/loop_wrap = true +tracks/1/keys = { +"times": PackedFloat32Array(0, 1.56667), +"transitions": PackedFloat32Array(1, 1), +"update": 0, +"values": [0, 47] +} + +[sub_resource type="Animation" id="Animation_3pm1j"] +resource_name = "EarthHit" +length = 1.46667 +tracks/0/type = "value" +tracks/0/imported = false +tracks/0/enabled = true +tracks/0/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Earth Hit Effect:animation") +tracks/0/interp = 1 +tracks/0/loop_wrap = true +tracks/0/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"EARTH DAMAGE"] +} +tracks/1/type = "value" +tracks/1/imported = false +tracks/1/enabled = true +tracks/1/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Earth Hit Effect:frame") +tracks/1/interp = 1 +tracks/1/loop_wrap = true +tracks/1/keys = { +"times": PackedFloat32Array(0, 1.46667), +"transitions": PackedFloat32Array(1, 1), +"update": 0, +"values": [0, 44] +} + +[sub_resource type="Animation" id="Animation_6shfu"] +resource_name = "Fire Damage" +length = 2.93334 +tracks/0/type = "value" +tracks/0/imported = false +tracks/0/enabled = true +tracks/0/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/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("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/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("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/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)] +} +tracks/3/type = "value" +tracks/3/imported = false +tracks/3/enabled = true +tracks/3/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Rust Activation Effect:animation") +tracks/3/interp = 1 +tracks/3/loop_wrap = true +tracks/3/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"default"] +} +tracks/4/type = "value" +tracks/4/imported = false +tracks/4/enabled = true +tracks/4/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Rust Activation Effect:frame") +tracks/4/interp = 1 +tracks/4/loop_wrap = true +tracks/4/keys = { +"times": PackedFloat32Array(0, 2.93333), +"transitions": PackedFloat32Array(1, 1), +"update": 0, +"values": [88, 88] +} + +[sub_resource type="Animation" id="Animation_f5cjs"] +resource_name = "HolyHit" +length = 0.700003 +tracks/0/type = "value" +tracks/0/imported = false +tracks/0/enabled = true +tracks/0/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Holy Hit Layer Effect:animation") +tracks/0/interp = 1 +tracks/0/loop_wrap = true +tracks/0/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"HOLY"] +} +tracks/1/type = "value" +tracks/1/imported = false +tracks/1/enabled = true +tracks/1/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Holy Hit Layer Effect:frame") +tracks/1/interp = 1 +tracks/1/loop_wrap = true +tracks/1/keys = { +"times": PackedFloat32Array(0, 0.7), +"transitions": PackedFloat32Array(1, 1), +"update": 0, +"values": [0, 21] +} + +[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("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/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("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/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("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/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"] +} +tracks/3/type = "value" +tracks/3/imported = false +tracks/3/enabled = true +tracks/3/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Rust Activation Effect:animation") +tracks/3/interp = 1 +tracks/3/loop_wrap = true +tracks/3/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"default"] +} +tracks/4/type = "value" +tracks/4/imported = false +tracks/4/enabled = true +tracks/4/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Rust Activation Effect:frame") +tracks/4/interp = 1 +tracks/4/loop_wrap = true +tracks/4/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [88] +} +tracks/5/type = "value" +tracks/5/imported = false +tracks/5/enabled = true +tracks/5/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Holy Hit Layer Effect:animation") +tracks/5/interp = 1 +tracks/5/loop_wrap = true +tracks/5/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"HOLY"] +} +tracks/6/type = "value" +tracks/6/imported = false +tracks/6/enabled = true +tracks/6/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Holy Hit Layer Effect:frame") +tracks/6/interp = 1 +tracks/6/loop_wrap = true +tracks/6/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [0] +} +tracks/7/type = "value" +tracks/7/imported = false +tracks/7/enabled = true +tracks/7/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Wind Hit Layer Effect:animation") +tracks/7/interp = 1 +tracks/7/loop_wrap = true +tracks/7/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"default"] +} +tracks/8/type = "value" +tracks/8/imported = false +tracks/8/enabled = true +tracks/8/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Wind Hit Layer Effect:frame") +tracks/8/interp = 1 +tracks/8/loop_wrap = true +tracks/8/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [50] +} +tracks/9/type = "value" +tracks/9/imported = false +tracks/9/enabled = true +tracks/9/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Water Hit Layer 1 Effect:animation") +tracks/9/interp = 1 +tracks/9/loop_wrap = true +tracks/9/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"WATER DAMAGE"] +} +tracks/10/type = "value" +tracks/10/imported = false +tracks/10/enabled = true +tracks/10/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Water Hit Layer 1 Effect:frame") +tracks/10/interp = 1 +tracks/10/loop_wrap = true +tracks/10/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [29] +} +tracks/11/type = "value" +tracks/11/imported = false +tracks/11/enabled = true +tracks/11/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Water Hit Layer 2Effect:animation") +tracks/11/interp = 1 +tracks/11/loop_wrap = true +tracks/11/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"WATER"] +} +tracks/12/type = "value" +tracks/12/imported = false +tracks/12/enabled = true +tracks/12/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Water Hit Layer 2Effect:frame") +tracks/12/interp = 1 +tracks/12/loop_wrap = true +tracks/12/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [51] +} +tracks/13/type = "value" +tracks/13/imported = false +tracks/13/enabled = true +tracks/13/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Curse Hit Effect:animation") +tracks/13/interp = 1 +tracks/13/loop_wrap = true +tracks/13/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"default"] +} +tracks/14/type = "value" +tracks/14/imported = false +tracks/14/enabled = true +tracks/14/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Curse Hit Effect:frame") +tracks/14/interp = 1 +tracks/14/loop_wrap = true +tracks/14/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [47] +} +tracks/15/type = "value" +tracks/15/imported = false +tracks/15/enabled = true +tracks/15/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Earth Hit Effect:animation") +tracks/15/interp = 1 +tracks/15/loop_wrap = true +tracks/15/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"WATER DAMAGE"] +} +tracks/16/type = "value" +tracks/16/imported = false +tracks/16/enabled = true +tracks/16/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Earth Hit Effect:frame") +tracks/16/interp = 1 +tracks/16/loop_wrap = true +tracks/16/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [0] +} + +[sub_resource type="Animation" id="Animation_0tqwp"] +resource_name = "RustActivate" +length = 1.46667 +step = 0.0166667 +tracks/0/type = "value" +tracks/0/imported = false +tracks/0/enabled = true +tracks/0/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Rust Activation Effect:animation") +tracks/0/interp = 1 +tracks/0/loop_wrap = true +tracks/0/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"default"] +} +tracks/1/type = "value" +tracks/1/imported = false +tracks/1/enabled = true +tracks/1/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Rust Activation Effect:frame") +tracks/1/interp = 1 +tracks/1/loop_wrap = true +tracks/1/keys = { +"times": PackedFloat32Array(0, 1.46667), +"transitions": PackedFloat32Array(1, 1), +"update": 0, +"values": [0, 88] +} + +[sub_resource type="Animation" id="Animation_q5dfb"] +resource_name = "WaterHit" +length = 1.7 +tracks/0/type = "value" +tracks/0/imported = false +tracks/0/enabled = true +tracks/0/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Water Hit Layer 1 Effect:animation") +tracks/0/interp = 1 +tracks/0/loop_wrap = true +tracks/0/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"WATER DAMAGE"] +} +tracks/1/type = "value" +tracks/1/imported = false +tracks/1/enabled = true +tracks/1/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Water Hit Layer 1 Effect:frame") +tracks/1/interp = 1 +tracks/1/loop_wrap = true +tracks/1/keys = { +"times": PackedFloat32Array(0, 1), +"transitions": PackedFloat32Array(1, 1), +"update": 0, +"values": [0, 29] +} +tracks/2/type = "value" +tracks/2/imported = false +tracks/2/enabled = true +tracks/2/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Water Hit Layer 2Effect:animation") +tracks/2/interp = 1 +tracks/2/loop_wrap = true +tracks/2/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"WATER"] +} +tracks/3/type = "value" +tracks/3/imported = false +tracks/3/enabled = true +tracks/3/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Water Hit Layer 2Effect:frame") +tracks/3/interp = 1 +tracks/3/loop_wrap = true +tracks/3/keys = { +"times": PackedFloat32Array(0, 1.7), +"transitions": PackedFloat32Array(1, 1), +"update": 0, +"values": [0, 51] +} + +[sub_resource type="Animation" id="Animation_godpv"] +resource_name = "WindHit" +length = 0.833335 +step = 0.0166667 +tracks/0/type = "value" +tracks/0/imported = false +tracks/0/enabled = true +tracks/0/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Wind Hit Layer Effect:animation") +tracks/0/interp = 1 +tracks/0/loop_wrap = true +tracks/0/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"default"] +} +tracks/1/type = "value" +tracks/1/imported = false +tracks/1/enabled = true +tracks/1/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Wind Hit Layer Effect:frame") +tracks/1/interp = 1 +tracks/1/loop_wrap = true +tracks/1/keys = { +"times": PackedFloat32Array(0, 0.833333), +"transitions": PackedFloat32Array(1, 1), +"update": 0, +"values": [0, 50] +} + +[sub_resource type="AnimationLibrary" id="AnimationLibrary_0tqwp"] +_data = { +&"CurseHit": SubResource("Animation_30xy4"), +&"EarthHit": SubResource("Animation_3pm1j"), +&"FireHit": SubResource("Animation_6shfu"), +&"HolyHit": SubResource("Animation_f5cjs"), +&"RESET": SubResource("Animation_cftgd"), +&"RustActivate": SubResource("Animation_0tqwp"), +&"WaterHit": SubResource("Animation_q5dfb"), +&"WindHit": SubResource("Animation_godpv") +} + [node name="EnemyModelView" type="Node3D"] script = ExtResource("1_6dej3") @@ -3527,6 +6691,60 @@ sprite_frames = SubResource("SpriteFrames_22ecf") animation = &"idle_front_walk" offset = Vector2(500, 500) +[node name="VFXSprites" type="Node2D" parent="Sprite3D/SubViewportContainer/SubViewport"] + +[node name="Rust Activation Effect" type="AnimatedSprite2D" parent="Sprite3D/SubViewportContainer/SubViewport/VFXSprites"] +position = Vector2(400, 400) +scale = Vector2(1.54, 1.54) +sprite_frames = SubResource("SpriteFrames_r44fx") +frame = 88 + +[node name="Holy Hit Layer Effect" type="AnimatedSprite2D" parent="Sprite3D/SubViewportContainer/SubViewport/VFXSprites"] +position = Vector2(400, 400) +scale = Vector2(0.675, 0.675) +sprite_frames = SubResource("SpriteFrames_dhuhq") +animation = &"HOLY" + +[node name="Wind Hit Layer Effect" type="AnimatedSprite2D" parent="Sprite3D/SubViewportContainer/SubViewport/VFXSprites"] +position = Vector2(400, 400) +scale = Vector2(1.445, 1.445) +sprite_frames = SubResource("SpriteFrames_y4bdd") +frame = 50 + +[node name="Flame Hit Effect" type="AnimatedSprite2D" parent="Sprite3D/SubViewportContainer/SubViewport/VFXSprites"] +position = Vector2(400, 400) +scale = Vector2(3.445, 3.445) +sprite_frames = SubResource("SpriteFrames_syb4h") +animation = &"Flame Damage" +frame = 40 + +[node name="Water Hit Layer 1 Effect" type="AnimatedSprite2D" parent="Sprite3D/SubViewportContainer/SubViewport/VFXSprites"] +position = Vector2(400, 400) +scale = Vector2(2.215, 2.215) +sprite_frames = SubResource("SpriteFrames_8u7he") +animation = &"WATER DAMAGE" +frame = 29 + +[node name="Water Hit Layer 2Effect" type="AnimatedSprite2D" parent="Sprite3D/SubViewportContainer/SubViewport/VFXSprites"] +position = Vector2(400, 400) +scale = Vector2(1.105, 0.895) +sprite_frames = SubResource("SpriteFrames_8e7of") +animation = &"WATER" +frame = 51 + +[node name="Curse Hit Effect" type="AnimatedSprite2D" parent="Sprite3D/SubViewportContainer/SubViewport/VFXSprites"] +texture_filter = 1 +position = Vector2(400, 400) +scale = Vector2(2.78, 2.78) +sprite_frames = SubResource("SpriteFrames_manul") +frame = 47 + +[node name="Earth Hit Effect" type="AnimatedSprite2D" parent="Sprite3D/SubViewportContainer/SubViewport/VFXSprites"] +position = Vector2(400, 400) +scale = Vector2(2.005, 2.005) +sprite_frames = SubResource("SpriteFrames_8u7he") +animation = &"WATER DAMAGE" + [node name="Hitbox" type="Area3D" parent="."] unique_name_in_owner = true transform = Transform3D(-1, 0, -8.74228e-08, 0, 1, 0, 8.74228e-08, 0, -1, -0.152949, 1.39797, 0) @@ -3582,3 +6800,52 @@ unique_name_in_owner = true transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1.39797, 0) autoplay = true bus = &"SFX" + +[node name="VFXAnimations" type="Node" parent="."] + +[node name="FlameHitAnimation" type="AnimationPlayer" parent="VFXAnimations"] +unique_name_in_owner = true +libraries = { +&"": SubResource("AnimationLibrary_0tqwp") +} + +[node name="RustHitAnimation" type="AnimationPlayer" parent="VFXAnimations"] +unique_name_in_owner = true +root_node = NodePath("../../Secondary Animation Player") +libraries = { +&"": SubResource("AnimationLibrary_0tqwp") +} + +[node name="HolyHitAnimation" type="AnimationPlayer" parent="VFXAnimations"] +unique_name_in_owner = true +libraries = { +&"": SubResource("AnimationLibrary_0tqwp") +} + +[node name="WindHitAnimation" type="AnimationPlayer" parent="VFXAnimations"] +unique_name_in_owner = true +root_node = NodePath("../../Secondary Animation Player") +libraries = { +&"": SubResource("AnimationLibrary_0tqwp") +} + +[node name="WaterHitAnimation" type="AnimationPlayer" parent="VFXAnimations"] +unique_name_in_owner = true +root_node = NodePath("../../Secondary Animation Player") +libraries = { +&"": SubResource("AnimationLibrary_0tqwp") +} + +[node name="CurseHitAnimation" type="AnimationPlayer" parent="VFXAnimations"] +unique_name_in_owner = true +root_node = NodePath("../../Secondary Animation Player") +libraries = { +&"": SubResource("AnimationLibrary_0tqwp") +} + +[node name="EarthHitAnimation" type="AnimationPlayer" parent="VFXAnimations"] +unique_name_in_owner = true +root_node = NodePath("../../Secondary Animation Player") +libraries = { +&"": SubResource("AnimationLibrary_0tqwp") +} diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/08a. Ambassador/AmbassadorModelView.tscn b/Zennysoft.Game.Ma/src/enemy/enemy_types/08a. Ambassador/AmbassadorModelView.tscn index 3587bb9c..03cc8d18 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/08a. Ambassador/AmbassadorModelView.tscn +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/08a. Ambassador/AmbassadorModelView.tscn @@ -1,4 +1,4 @@ -[gd_scene load_steps=300 format=3 uid="uid://7eo16vsbrgi3"] +[gd_scene load_steps=695 format=3 uid="uid://7eo16vsbrgi3"] [ext_resource type="Script" uid="uid://cvr1qimxpignl" path="res://src/enemy/EnemyModelView2D.cs" id="1_h27bt"] [ext_resource type="Script" uid="uid://dlsgyx4i1jmp3" path="res://src/enemy/EnemyLoreInfo.cs" id="2_yyynn"] @@ -260,13 +260,21 @@ [ext_resource type="Texture2D" uid="uid://jcs07eo1xqtj" path="res://src/enemy/enemy_types/08a. Ambassador/animations/SIDE/Layer 171.png" id="258_q2wum"] [ext_resource type="Texture2D" uid="uid://btrum7jo404t0" path="res://src/enemy/enemy_types/08a. Ambassador/animations/SIDE/Layer 172.png" id="259_br04c"] [ext_resource type="AudioStream" uid="uid://bgumf0x52xmby" path="res://src/audio/sfx/enemy_ambassador_kick.ogg" id="260_dcx20"] +[ext_resource type="Texture2D" uid="uid://dq70aipwl1qrg" path="res://src/vfx/Enemy Affected/Rust Particles.png" id="260_vh04b"] [ext_resource type="PackedScene" uid="uid://3ax3e5uce27d" path="res://src/enemy/TwoAttacksEnemyAnimationTree.tscn" id="261_a705x"] [ext_resource type="AudioStream" uid="uid://ugc77goiwht0" path="res://src/audio/sfx/enemy_ambassador_punch.ogg" id="261_evddb"] +[ext_resource type="Texture2D" uid="uid://by0ehygy7bq13" path="res://src/vfx/Enemy Affected/Holy Damage.png" id="261_lsckq"] +[ext_resource type="Texture2D" uid="uid://dqqhu0s51o3n7" path="res://src/vfx/Enemy Affected/Wind Damage.png" id="262_jdpl8"] [ext_resource type="AnimationNodeStateMachine" uid="uid://co7lshemjrro8" path="res://src/enemy/animation_state_machines/IdleStateMachine.tres" id="262_rmbbl"] +[ext_resource type="Texture2D" uid="uid://dh6mk1c35nymx" path="res://src/vfx/Enemy Affected/firedamage.png" id="263_002rf"] [ext_resource type="AnimationNodeStateMachine" uid="uid://cy2ngl55c0rws" path="res://src/enemy/animation_state_machines/WalkingStateMachine.tres" id="263_312rt"] [ext_resource type="AnimationNodeStateMachine" uid="uid://cbq8xog50cjjy" path="res://src/enemy/animation_state_machines/PrimaryAttackStateMachine.tres" id="263_sroq1"] +[ext_resource type="Texture2D" uid="uid://7a42df2ijrmv" path="res://src/vfx/Enemy Affected/earth damage.png" id="264_373po"] [ext_resource type="AnimationNodeStateMachine" uid="uid://clybvwx3itfeo" path="res://src/enemy/animation_state_machines/SecondaryAttackStateMachine.tres" id="264_dcx20"] +[ext_resource type="Texture2D" uid="uid://cot4wx5fg5pfs" path="res://src/vfx/Enemy Affected/water_hit_layer2.png" id="265_wti8m"] +[ext_resource type="Texture2D" uid="uid://cbei66g134fgv" path="res://src/vfx/Enemy Affected/water layer 1.png" id="266_1ueir"] [ext_resource type="Texture2D" uid="uid://dafpnwkwcukp4" path="res://src/vfx/shadow_test_1.png" id="267_evddb"] +[ext_resource type="Texture2D" uid="uid://bp6npqoco5fl3" path="res://src/vfx/Enemy Affected/curse_damage.png" id="267_qpodb"] [sub_resource type="Resource" id="Resource_f45wt"] script = ExtResource("2_yyynn") @@ -1128,6 +1136,2685 @@ animations = [{ "speed": 12.0 }] +[sub_resource type="AtlasTexture" id="AtlasTexture_4o5f2"] +atlas = ExtResource("260_vh04b") +region = Rect2(1206, 402, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r8ggx"] +atlas = ExtResource("260_vh04b") +region = Rect2(1340, 402, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xafpd"] +atlas = ExtResource("260_vh04b") +region = Rect2(1474, 402, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_73dpc"] +atlas = ExtResource("260_vh04b") +region = Rect2(0, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vppxt"] +atlas = ExtResource("260_vh04b") +region = Rect2(134, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nk562"] +atlas = ExtResource("260_vh04b") +region = Rect2(268, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dwu2q"] +atlas = ExtResource("260_vh04b") +region = Rect2(402, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w3p3j"] +atlas = ExtResource("260_vh04b") +region = Rect2(536, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ig0ip"] +atlas = ExtResource("260_vh04b") +region = Rect2(670, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r4enw"] +atlas = ExtResource("260_vh04b") +region = Rect2(804, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uy6hg"] +atlas = ExtResource("260_vh04b") +region = Rect2(938, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_85jwg"] +atlas = ExtResource("260_vh04b") +region = Rect2(1072, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ln7dl"] +atlas = ExtResource("260_vh04b") +region = Rect2(1206, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3vvgp"] +atlas = ExtResource("260_vh04b") +region = Rect2(1340, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_01f7m"] +atlas = ExtResource("260_vh04b") +region = Rect2(1474, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pp21u"] +atlas = ExtResource("260_vh04b") +region = Rect2(0, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1aldj"] +atlas = ExtResource("260_vh04b") +region = Rect2(134, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xv5pw"] +atlas = ExtResource("260_vh04b") +region = Rect2(268, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_14lh3"] +atlas = ExtResource("260_vh04b") +region = Rect2(402, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xxid6"] +atlas = ExtResource("260_vh04b") +region = Rect2(536, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y6yeo"] +atlas = ExtResource("260_vh04b") +region = Rect2(670, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2aohu"] +atlas = ExtResource("260_vh04b") +region = Rect2(804, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ebvc7"] +atlas = ExtResource("260_vh04b") +region = Rect2(938, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yd50d"] +atlas = ExtResource("260_vh04b") +region = Rect2(1072, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yimdu"] +atlas = ExtResource("260_vh04b") +region = Rect2(1206, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dync1"] +atlas = ExtResource("260_vh04b") +region = Rect2(1340, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jsjdk"] +atlas = ExtResource("260_vh04b") +region = Rect2(1474, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ueih5"] +atlas = ExtResource("260_vh04b") +region = Rect2(0, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k0hut"] +atlas = ExtResource("260_vh04b") +region = Rect2(134, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kybji"] +atlas = ExtResource("260_vh04b") +region = Rect2(268, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u5vpt"] +atlas = ExtResource("260_vh04b") +region = Rect2(402, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wko4t"] +atlas = ExtResource("260_vh04b") +region = Rect2(536, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ru86o"] +atlas = ExtResource("260_vh04b") +region = Rect2(670, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uybbj"] +atlas = ExtResource("260_vh04b") +region = Rect2(804, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s6pp8"] +atlas = ExtResource("260_vh04b") +region = Rect2(938, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a7pls"] +atlas = ExtResource("260_vh04b") +region = Rect2(1072, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_30y71"] +atlas = ExtResource("260_vh04b") +region = Rect2(1206, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dwl1c"] +atlas = ExtResource("260_vh04b") +region = Rect2(1340, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_01jp4"] +atlas = ExtResource("260_vh04b") +region = Rect2(1474, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b8ulh"] +atlas = ExtResource("260_vh04b") +region = Rect2(0, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3walv"] +atlas = ExtResource("260_vh04b") +region = Rect2(134, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_exyoj"] +atlas = ExtResource("260_vh04b") +region = Rect2(268, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kus54"] +atlas = ExtResource("260_vh04b") +region = Rect2(402, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_meauc"] +atlas = ExtResource("260_vh04b") +region = Rect2(536, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7v7xr"] +atlas = ExtResource("260_vh04b") +region = Rect2(670, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4ktea"] +atlas = ExtResource("260_vh04b") +region = Rect2(804, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l8oa1"] +atlas = ExtResource("260_vh04b") +region = Rect2(938, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3eopa"] +atlas = ExtResource("260_vh04b") +region = Rect2(1072, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ip8hv"] +atlas = ExtResource("260_vh04b") +region = Rect2(1206, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_42rbq"] +atlas = ExtResource("260_vh04b") +region = Rect2(1340, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tu0vu"] +atlas = ExtResource("260_vh04b") +region = Rect2(1474, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gbh7l"] +atlas = ExtResource("260_vh04b") +region = Rect2(0, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_733jx"] +atlas = ExtResource("260_vh04b") +region = Rect2(134, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sfa2q"] +atlas = ExtResource("260_vh04b") +region = Rect2(268, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o0nvo"] +atlas = ExtResource("260_vh04b") +region = Rect2(402, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1mv1w"] +atlas = ExtResource("260_vh04b") +region = Rect2(536, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yw8ob"] +atlas = ExtResource("260_vh04b") +region = Rect2(670, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ptkbd"] +atlas = ExtResource("260_vh04b") +region = Rect2(804, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2uoiw"] +atlas = ExtResource("260_vh04b") +region = Rect2(938, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4m684"] +atlas = ExtResource("260_vh04b") +region = Rect2(1072, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_st6fj"] +atlas = ExtResource("260_vh04b") +region = Rect2(1206, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1wana"] +atlas = ExtResource("260_vh04b") +region = Rect2(1340, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ati4e"] +atlas = ExtResource("260_vh04b") +region = Rect2(1474, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0w31q"] +atlas = ExtResource("260_vh04b") +region = Rect2(0, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uxu33"] +atlas = ExtResource("260_vh04b") +region = Rect2(134, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2ulnd"] +atlas = ExtResource("260_vh04b") +region = Rect2(268, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ddsrn"] +atlas = ExtResource("260_vh04b") +region = Rect2(402, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n1e5w"] +atlas = ExtResource("260_vh04b") +region = Rect2(536, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f4aq5"] +atlas = ExtResource("260_vh04b") +region = Rect2(670, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_er00h"] +atlas = ExtResource("260_vh04b") +region = Rect2(804, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mlf5c"] +atlas = ExtResource("260_vh04b") +region = Rect2(938, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c362w"] +atlas = ExtResource("260_vh04b") +region = Rect2(1072, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_30wb7"] +atlas = ExtResource("260_vh04b") +region = Rect2(1206, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_stb0b"] +atlas = ExtResource("260_vh04b") +region = Rect2(1340, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a64qf"] +atlas = ExtResource("260_vh04b") +region = Rect2(1474, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_52bkw"] +atlas = ExtResource("260_vh04b") +region = Rect2(0, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y0yvc"] +atlas = ExtResource("260_vh04b") +region = Rect2(134, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5h2xe"] +atlas = ExtResource("260_vh04b") +region = Rect2(268, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6hh33"] +atlas = ExtResource("260_vh04b") +region = Rect2(402, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kmk3m"] +atlas = ExtResource("260_vh04b") +region = Rect2(536, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rbtmh"] +atlas = ExtResource("260_vh04b") +region = Rect2(670, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bit6n"] +atlas = ExtResource("260_vh04b") +region = Rect2(804, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_458hw"] +atlas = ExtResource("260_vh04b") +region = Rect2(938, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4x2ea"] +atlas = ExtResource("260_vh04b") +region = Rect2(1072, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bcljt"] +atlas = ExtResource("260_vh04b") +region = Rect2(1206, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p6e34"] +atlas = ExtResource("260_vh04b") +region = Rect2(1340, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2yfi0"] +atlas = ExtResource("260_vh04b") +region = Rect2(1474, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bhoxy"] +atlas = ExtResource("260_vh04b") +region = Rect2(0, 1474, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_41wyx"] +atlas = ExtResource("260_vh04b") +region = Rect2(134, 1474, 134, 134) + +[sub_resource type="SpriteFrames" id="SpriteFrames_jfuhx"] +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("261_lsckq") +region = Rect2(1024, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pvn2l"] +atlas = ExtResource("261_lsckq") +region = Rect2(1536, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sctov"] +atlas = ExtResource("261_lsckq") +region = Rect2(2048, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_46bwa"] +atlas = ExtResource("261_lsckq") +region = Rect2(2560, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o42jv"] +atlas = ExtResource("261_lsckq") +region = Rect2(3072, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5dqsk"] +atlas = ExtResource("261_lsckq") +region = Rect2(3584, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_35l4k"] +atlas = ExtResource("261_lsckq") +region = Rect2(4096, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x0jfm"] +atlas = ExtResource("261_lsckq") +region = Rect2(4608, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fk16r"] +atlas = ExtResource("261_lsckq") +region = Rect2(5120, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ewtdr"] +atlas = ExtResource("261_lsckq") +region = Rect2(5632, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bul51"] +atlas = ExtResource("261_lsckq") +region = Rect2(6144, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vbobf"] +atlas = ExtResource("261_lsckq") +region = Rect2(6656, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_itqlk"] +atlas = ExtResource("261_lsckq") +region = Rect2(7168, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_41jjh"] +atlas = ExtResource("261_lsckq") +region = Rect2(7680, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kol03"] +atlas = ExtResource("261_lsckq") +region = Rect2(0, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ynyxy"] +atlas = ExtResource("261_lsckq") +region = Rect2(512, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ngcxk"] +atlas = ExtResource("261_lsckq") +region = Rect2(1024, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ba8fa"] +atlas = ExtResource("261_lsckq") +region = Rect2(1536, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ngitf"] +atlas = ExtResource("261_lsckq") +region = Rect2(2048, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_boovf"] +atlas = ExtResource("261_lsckq") +region = Rect2(2560, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jwkhr"] +atlas = ExtResource("261_lsckq") +region = Rect2(3072, 512, 512, 512) + +[sub_resource type="SpriteFrames" id="SpriteFrames_6508q"] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": null +}, { +"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("262_jdpl8") +region = Rect2(0, 0, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3jmy8"] +atlas = ExtResource("262_jdpl8") +region = Rect2(266, 0, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t76hk"] +atlas = ExtResource("262_jdpl8") +region = Rect2(532, 0, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_06gff"] +atlas = ExtResource("262_jdpl8") +region = Rect2(798, 0, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ssjgs"] +atlas = ExtResource("262_jdpl8") +region = Rect2(1064, 0, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_53u6k"] +atlas = ExtResource("262_jdpl8") +region = Rect2(0, 131, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_inmu7"] +atlas = ExtResource("262_jdpl8") +region = Rect2(266, 131, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bmkvg"] +atlas = ExtResource("262_jdpl8") +region = Rect2(532, 131, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oqdmj"] +atlas = ExtResource("262_jdpl8") +region = Rect2(798, 131, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bnn41"] +atlas = ExtResource("262_jdpl8") +region = Rect2(1064, 131, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p6hmn"] +atlas = ExtResource("262_jdpl8") +region = Rect2(0, 262, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s0ybe"] +atlas = ExtResource("262_jdpl8") +region = Rect2(266, 262, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y2273"] +atlas = ExtResource("262_jdpl8") +region = Rect2(532, 262, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2i87r"] +atlas = ExtResource("262_jdpl8") +region = Rect2(798, 262, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4q8o2"] +atlas = ExtResource("262_jdpl8") +region = Rect2(1064, 262, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_esxmc"] +atlas = ExtResource("262_jdpl8") +region = Rect2(0, 393, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rdsur"] +atlas = ExtResource("262_jdpl8") +region = Rect2(266, 393, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b2qt4"] +atlas = ExtResource("262_jdpl8") +region = Rect2(532, 393, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xamrr"] +atlas = ExtResource("262_jdpl8") +region = Rect2(798, 393, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0prqh"] +atlas = ExtResource("262_jdpl8") +region = Rect2(1064, 393, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dh1oc"] +atlas = ExtResource("262_jdpl8") +region = Rect2(0, 524, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ybb1w"] +atlas = ExtResource("262_jdpl8") +region = Rect2(266, 524, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2nkua"] +atlas = ExtResource("262_jdpl8") +region = Rect2(532, 524, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2gocr"] +atlas = ExtResource("262_jdpl8") +region = Rect2(798, 524, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_acsou"] +atlas = ExtResource("262_jdpl8") +region = Rect2(1064, 524, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yflou"] +atlas = ExtResource("262_jdpl8") +region = Rect2(0, 655, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_env3c"] +atlas = ExtResource("262_jdpl8") +region = Rect2(266, 655, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_74f4l"] +atlas = ExtResource("262_jdpl8") +region = Rect2(532, 655, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cbaq7"] +atlas = ExtResource("262_jdpl8") +region = Rect2(798, 655, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bc4hh"] +atlas = ExtResource("262_jdpl8") +region = Rect2(1064, 655, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5m27y"] +atlas = ExtResource("262_jdpl8") +region = Rect2(0, 786, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c2vig"] +atlas = ExtResource("262_jdpl8") +region = Rect2(266, 786, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h8qbh"] +atlas = ExtResource("262_jdpl8") +region = Rect2(532, 786, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vj2ia"] +atlas = ExtResource("262_jdpl8") +region = Rect2(798, 786, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h0bv3"] +atlas = ExtResource("262_jdpl8") +region = Rect2(1064, 786, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3xb07"] +atlas = ExtResource("262_jdpl8") +region = Rect2(0, 917, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p845e"] +atlas = ExtResource("262_jdpl8") +region = Rect2(266, 917, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nm575"] +atlas = ExtResource("262_jdpl8") +region = Rect2(532, 917, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8wvvt"] +atlas = ExtResource("262_jdpl8") +region = Rect2(798, 917, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2l45l"] +atlas = ExtResource("262_jdpl8") +region = Rect2(1064, 917, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0c6u7"] +atlas = ExtResource("262_jdpl8") +region = Rect2(0, 1048, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bo1qh"] +atlas = ExtResource("262_jdpl8") +region = Rect2(266, 1048, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4cq22"] +atlas = ExtResource("262_jdpl8") +region = Rect2(532, 1048, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d6auk"] +atlas = ExtResource("262_jdpl8") +region = Rect2(798, 1048, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4bvg3"] +atlas = ExtResource("262_jdpl8") +region = Rect2(1064, 1048, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rps4p"] +atlas = ExtResource("262_jdpl8") +region = Rect2(0, 1179, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qdy2n"] +atlas = ExtResource("262_jdpl8") +region = Rect2(266, 1179, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a63dt"] +atlas = ExtResource("262_jdpl8") +region = Rect2(532, 1179, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3alol"] +atlas = ExtResource("262_jdpl8") +region = Rect2(798, 1179, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w5y4o"] +atlas = ExtResource("262_jdpl8") +region = Rect2(1064, 1179, 133, 131) + +[sub_resource type="SpriteFrames" id="SpriteFrames_pojhh"] +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("263_002rf") +region = Rect2(200, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w5yum"] +atlas = ExtResource("263_002rf") +region = Rect2(600, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xagiq"] +atlas = ExtResource("263_002rf") +region = Rect2(1000, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iu4h2"] +atlas = ExtResource("263_002rf") +region = Rect2(100, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t6kmk"] +atlas = ExtResource("263_002rf") +region = Rect2(500, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c3c22"] +atlas = ExtResource("263_002rf") +region = Rect2(900, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_udm06"] +atlas = ExtResource("263_002rf") +region = Rect2(0, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_31shi"] +atlas = ExtResource("263_002rf") +region = Rect2(400, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i6wsf"] +atlas = ExtResource("263_002rf") +region = Rect2(800, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jhluk"] +atlas = ExtResource("263_002rf") +region = Rect2(1200, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_exq74"] +atlas = ExtResource("263_002rf") +region = Rect2(300, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k7tc1"] +atlas = ExtResource("263_002rf") +region = Rect2(700, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_456io"] +atlas = ExtResource("263_002rf") +region = Rect2(1100, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2h7ac"] +atlas = ExtResource("263_002rf") +region = Rect2(200, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dy5lo"] +atlas = ExtResource("263_002rf") +region = Rect2(500, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_biyyn"] +atlas = ExtResource("263_002rf") +region = Rect2(1000, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_flqm1"] +atlas = ExtResource("263_002rf") +region = Rect2(100, 500, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xttn8"] +atlas = ExtResource("263_002rf") +region = Rect2(500, 500, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_85rsb"] +atlas = ExtResource("263_002rf") +region = Rect2(900, 500, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oxqm1"] +atlas = ExtResource("263_002rf") +region = Rect2(0, 600, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dphle"] +atlas = ExtResource("263_002rf") +region = Rect2(400, 600, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_48bul"] +atlas = ExtResource("263_002rf") +region = Rect2(800, 600, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2d6tt"] +atlas = ExtResource("263_002rf") +region = Rect2(1200, 600, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ty41g"] +atlas = ExtResource("263_002rf") +region = Rect2(300, 700, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c5uyp"] +atlas = ExtResource("263_002rf") +region = Rect2(700, 700, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tf4dl"] +atlas = ExtResource("263_002rf") +region = Rect2(1100, 700, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cvdlu"] +atlas = ExtResource("263_002rf") +region = Rect2(200, 800, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f25l1"] +atlas = ExtResource("263_002rf") +region = Rect2(600, 800, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v033q"] +atlas = ExtResource("263_002rf") +region = Rect2(1000, 800, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xgfkn"] +atlas = ExtResource("263_002rf") +region = Rect2(100, 900, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_duxfd"] +atlas = ExtResource("263_002rf") +region = Rect2(500, 900, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5uvt0"] +atlas = ExtResource("263_002rf") +region = Rect2(900, 900, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7d05g"] +atlas = ExtResource("263_002rf") +region = Rect2(0, 1000, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x0ube"] +atlas = ExtResource("263_002rf") +region = Rect2(400, 1000, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_15y07"] +atlas = ExtResource("263_002rf") +region = Rect2(800, 1000, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_de0po"] +atlas = ExtResource("263_002rf") +region = Rect2(1200, 1000, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b3rtc"] +atlas = ExtResource("263_002rf") +region = Rect2(300, 1100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q32lt"] +atlas = ExtResource("263_002rf") +region = Rect2(700, 1100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_88hqh"] +atlas = ExtResource("263_002rf") +region = Rect2(1100, 1100, 100, 100) + +[sub_resource type="SpriteFrames" id="SpriteFrames_olmyc"] +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("264_373po") +region = Rect2(0, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0rj30"] +atlas = ExtResource("264_373po") +region = Rect2(200, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ug1a1"] +atlas = ExtResource("264_373po") +region = Rect2(400, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8eees"] +atlas = ExtResource("264_373po") +region = Rect2(600, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k2i7i"] +atlas = ExtResource("264_373po") +region = Rect2(800, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4wwo5"] +atlas = ExtResource("264_373po") +region = Rect2(0, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_418m2"] +atlas = ExtResource("264_373po") +region = Rect2(200, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6g5qj"] +atlas = ExtResource("264_373po") +region = Rect2(400, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k3sey"] +atlas = ExtResource("264_373po") +region = Rect2(600, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ms40v"] +atlas = ExtResource("264_373po") +region = Rect2(800, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2tfej"] +atlas = ExtResource("264_373po") +region = Rect2(0, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_woj7f"] +atlas = ExtResource("264_373po") +region = Rect2(200, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kg861"] +atlas = ExtResource("264_373po") +region = Rect2(400, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jtxxp"] +atlas = ExtResource("264_373po") +region = Rect2(600, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sxooa"] +atlas = ExtResource("264_373po") +region = Rect2(800, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hkj2y"] +atlas = ExtResource("264_373po") +region = Rect2(0, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wm40h"] +atlas = ExtResource("264_373po") +region = Rect2(200, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u66v8"] +atlas = ExtResource("264_373po") +region = Rect2(400, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6ip85"] +atlas = ExtResource("264_373po") +region = Rect2(600, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qad2i"] +atlas = ExtResource("264_373po") +region = Rect2(800, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nifqu"] +atlas = ExtResource("264_373po") +region = Rect2(0, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_goocc"] +atlas = ExtResource("264_373po") +region = Rect2(200, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l78ua"] +atlas = ExtResource("264_373po") +region = Rect2(400, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ybqlc"] +atlas = ExtResource("264_373po") +region = Rect2(600, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d0lry"] +atlas = ExtResource("264_373po") +region = Rect2(800, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ccb2v"] +atlas = ExtResource("264_373po") +region = Rect2(0, 500, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dcp7h"] +atlas = ExtResource("264_373po") +region = Rect2(200, 500, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3kud6"] +atlas = ExtResource("264_373po") +region = Rect2(400, 500, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0tvc2"] +atlas = ExtResource("264_373po") +region = Rect2(600, 500, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g5aky"] +atlas = ExtResource("264_373po") +region = Rect2(800, 500, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nyc7u"] +atlas = ExtResource("264_373po") +region = Rect2(0, 600, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q1yeq"] +atlas = ExtResource("264_373po") +region = Rect2(200, 600, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pupfb"] +atlas = ExtResource("264_373po") +region = Rect2(400, 600, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gfe8c"] +atlas = ExtResource("264_373po") +region = Rect2(600, 600, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_76bl1"] +atlas = ExtResource("264_373po") +region = Rect2(800, 600, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u7frn"] +atlas = ExtResource("264_373po") +region = Rect2(0, 700, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ls3an"] +atlas = ExtResource("264_373po") +region = Rect2(200, 700, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4l6e0"] +atlas = ExtResource("264_373po") +region = Rect2(400, 700, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cvlbl"] +atlas = ExtResource("264_373po") +region = Rect2(600, 700, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jkvpv"] +atlas = ExtResource("264_373po") +region = Rect2(800, 700, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lpp7o"] +atlas = ExtResource("264_373po") +region = Rect2(0, 800, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v8igx"] +atlas = ExtResource("264_373po") +region = Rect2(200, 800, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mmm0q"] +atlas = ExtResource("264_373po") +region = Rect2(400, 800, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5ukt7"] +atlas = ExtResource("264_373po") +region = Rect2(600, 800, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0pkd7"] +atlas = ExtResource("264_373po") +region = Rect2(800, 800, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n85t7"] +atlas = ExtResource("265_wti8m") +region = Rect2(0, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nb4v4"] +atlas = ExtResource("265_wti8m") +region = Rect2(100, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cl00x"] +atlas = ExtResource("265_wti8m") +region = Rect2(200, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ufcsw"] +atlas = ExtResource("265_wti8m") +region = Rect2(300, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aoisp"] +atlas = ExtResource("265_wti8m") +region = Rect2(400, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3rkdy"] +atlas = ExtResource("265_wti8m") +region = Rect2(500, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o0dym"] +atlas = ExtResource("265_wti8m") +region = Rect2(0, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vxihx"] +atlas = ExtResource("265_wti8m") +region = Rect2(100, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ofpmt"] +atlas = ExtResource("265_wti8m") +region = Rect2(200, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ux0ir"] +atlas = ExtResource("265_wti8m") +region = Rect2(300, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8dgch"] +atlas = ExtResource("265_wti8m") +region = Rect2(400, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7ixin"] +atlas = ExtResource("265_wti8m") +region = Rect2(500, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2kea0"] +atlas = ExtResource("265_wti8m") +region = Rect2(0, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kgnps"] +atlas = ExtResource("265_wti8m") +region = Rect2(100, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g2wgu"] +atlas = ExtResource("265_wti8m") +region = Rect2(200, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0oosk"] +atlas = ExtResource("265_wti8m") +region = Rect2(300, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_80k2g"] +atlas = ExtResource("265_wti8m") +region = Rect2(400, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fskx7"] +atlas = ExtResource("265_wti8m") +region = Rect2(500, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_no3pe"] +atlas = ExtResource("265_wti8m") +region = Rect2(0, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_15fnm"] +atlas = ExtResource("265_wti8m") +region = Rect2(100, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r5e73"] +atlas = ExtResource("265_wti8m") +region = Rect2(200, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2im8t"] +atlas = ExtResource("265_wti8m") +region = Rect2(300, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mxl2m"] +atlas = ExtResource("265_wti8m") +region = Rect2(400, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6dwuh"] +atlas = ExtResource("265_wti8m") +region = Rect2(500, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_53c1f"] +atlas = ExtResource("265_wti8m") +region = Rect2(0, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mmbhy"] +atlas = ExtResource("265_wti8m") +region = Rect2(100, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uwbh3"] +atlas = ExtResource("265_wti8m") +region = Rect2(200, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j6v2y"] +atlas = ExtResource("265_wti8m") +region = Rect2(300, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h5xbu"] +atlas = ExtResource("265_wti8m") +region = Rect2(400, 400, 100, 100) + +[sub_resource type="SpriteFrames" id="SpriteFrames_uuxap"] +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("266_1ueir") +region = Rect2(875, 452, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ekrqp"] +atlas = ExtResource("266_1ueir") +region = Rect2(1050, 452, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dvnic"] +atlas = ExtResource("266_1ueir") +region = Rect2(1225, 452, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rxdv7"] +atlas = ExtResource("266_1ueir") +region = Rect2(1400, 452, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0pvcp"] +atlas = ExtResource("266_1ueir") +region = Rect2(0, 678, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yga3t"] +atlas = ExtResource("266_1ueir") +region = Rect2(175, 678, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c6qrx"] +atlas = ExtResource("266_1ueir") +region = Rect2(350, 678, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fkryw"] +atlas = ExtResource("266_1ueir") +region = Rect2(525, 678, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jt7jg"] +atlas = ExtResource("266_1ueir") +region = Rect2(700, 678, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6eyjl"] +atlas = ExtResource("266_1ueir") +region = Rect2(875, 678, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tsolq"] +atlas = ExtResource("266_1ueir") +region = Rect2(1050, 678, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_opqal"] +atlas = ExtResource("266_1ueir") +region = Rect2(1225, 678, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kia47"] +atlas = ExtResource("266_1ueir") +region = Rect2(1400, 678, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6aolf"] +atlas = ExtResource("266_1ueir") +region = Rect2(0, 904, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g6jok"] +atlas = ExtResource("266_1ueir") +region = Rect2(175, 904, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_swdkn"] +atlas = ExtResource("266_1ueir") +region = Rect2(350, 904, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_edlre"] +atlas = ExtResource("266_1ueir") +region = Rect2(525, 904, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gbj32"] +atlas = ExtResource("266_1ueir") +region = Rect2(700, 904, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bstol"] +atlas = ExtResource("266_1ueir") +region = Rect2(875, 904, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_57vey"] +atlas = ExtResource("266_1ueir") +region = Rect2(1050, 904, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_31ikn"] +atlas = ExtResource("266_1ueir") +region = Rect2(1225, 904, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e1yxa"] +atlas = ExtResource("266_1ueir") +region = Rect2(1400, 904, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7a7ks"] +atlas = ExtResource("266_1ueir") +region = Rect2(0, 1130, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p2hq6"] +atlas = ExtResource("266_1ueir") +region = Rect2(175, 1130, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k3fbj"] +atlas = ExtResource("266_1ueir") +region = Rect2(350, 1130, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ylav8"] +atlas = ExtResource("266_1ueir") +region = Rect2(525, 1130, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xhgk2"] +atlas = ExtResource("266_1ueir") +region = Rect2(700, 1130, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_diucy"] +atlas = ExtResource("266_1ueir") +region = Rect2(875, 1130, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8gw5n"] +atlas = ExtResource("266_1ueir") +region = Rect2(1050, 1130, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hc5wr"] +atlas = ExtResource("266_1ueir") +region = Rect2(1225, 1130, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fugdi"] +atlas = ExtResource("266_1ueir") +region = Rect2(1400, 1130, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h222i"] +atlas = ExtResource("266_1ueir") +region = Rect2(0, 1356, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7qa4p"] +atlas = ExtResource("266_1ueir") +region = Rect2(175, 1356, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jbavk"] +atlas = ExtResource("266_1ueir") +region = Rect2(350, 1356, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ncorq"] +atlas = ExtResource("266_1ueir") +region = Rect2(525, 1356, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mdvft"] +atlas = ExtResource("266_1ueir") +region = Rect2(700, 1356, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ljrf5"] +atlas = ExtResource("266_1ueir") +region = Rect2(875, 1356, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r7ll6"] +atlas = ExtResource("266_1ueir") +region = Rect2(1050, 1356, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6vssn"] +atlas = ExtResource("266_1ueir") +region = Rect2(1225, 1356, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4lr8r"] +atlas = ExtResource("266_1ueir") +region = Rect2(1400, 1356, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xp4kq"] +atlas = ExtResource("266_1ueir") +region = Rect2(0, 1582, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_idymv"] +atlas = ExtResource("266_1ueir") +region = Rect2(175, 1582, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ujl1x"] +atlas = ExtResource("266_1ueir") +region = Rect2(350, 1582, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_37wgc"] +atlas = ExtResource("266_1ueir") +region = Rect2(525, 1582, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g5fso"] +atlas = ExtResource("266_1ueir") +region = Rect2(700, 1582, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4a47d"] +atlas = ExtResource("266_1ueir") +region = Rect2(875, 1582, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eh3iw"] +atlas = ExtResource("266_1ueir") +region = Rect2(1050, 1582, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jc54a"] +atlas = ExtResource("266_1ueir") +region = Rect2(1225, 1582, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xyo6b"] +atlas = ExtResource("266_1ueir") +region = Rect2(1400, 1582, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gnyks"] +atlas = ExtResource("266_1ueir") +region = Rect2(0, 1808, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_08lae"] +atlas = ExtResource("266_1ueir") +region = Rect2(175, 1808, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r710l"] +atlas = ExtResource("266_1ueir") +region = Rect2(350, 1808, 175, 226) + +[sub_resource type="SpriteFrames" id="SpriteFrames_irkcg"] +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("267_qpodb") +region = Rect2(134, 0, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_56ojt"] +atlas = ExtResource("267_qpodb") +region = Rect2(402, 0, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jwkdt"] +atlas = ExtResource("267_qpodb") +region = Rect2(670, 0, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tklqq"] +atlas = ExtResource("267_qpodb") +region = Rect2(938, 0, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0kd7d"] +atlas = ExtResource("267_qpodb") +region = Rect2(1206, 0, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uoo6g"] +atlas = ExtResource("267_qpodb") +region = Rect2(134, 134, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eyk0y"] +atlas = ExtResource("267_qpodb") +region = Rect2(402, 134, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0imbq"] +atlas = ExtResource("267_qpodb") +region = Rect2(670, 134, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oys1t"] +atlas = ExtResource("267_qpodb") +region = Rect2(938, 134, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_06alo"] +atlas = ExtResource("267_qpodb") +region = Rect2(1206, 134, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uoxdj"] +atlas = ExtResource("267_qpodb") +region = Rect2(134, 268, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rcb13"] +atlas = ExtResource("267_qpodb") +region = Rect2(402, 268, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pj86n"] +atlas = ExtResource("267_qpodb") +region = Rect2(670, 268, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qpw3f"] +atlas = ExtResource("267_qpodb") +region = Rect2(938, 268, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gn6h7"] +atlas = ExtResource("267_qpodb") +region = Rect2(1206, 268, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lkh03"] +atlas = ExtResource("267_qpodb") +region = Rect2(134, 402, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pdi3o"] +atlas = ExtResource("267_qpodb") +region = Rect2(402, 402, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s3ywy"] +atlas = ExtResource("267_qpodb") +region = Rect2(670, 402, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6idxu"] +atlas = ExtResource("267_qpodb") +region = Rect2(938, 402, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qndi3"] +atlas = ExtResource("267_qpodb") +region = Rect2(1206, 402, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y4ahc"] +atlas = ExtResource("267_qpodb") +region = Rect2(134, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y5c6p"] +atlas = ExtResource("267_qpodb") +region = Rect2(402, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oa8p3"] +atlas = ExtResource("267_qpodb") +region = Rect2(670, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rc08e"] +atlas = ExtResource("267_qpodb") +region = Rect2(938, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8tw6t"] +atlas = ExtResource("267_qpodb") +region = Rect2(1206, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_njvn5"] +atlas = ExtResource("267_qpodb") +region = Rect2(134, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cwp0x"] +atlas = ExtResource("267_qpodb") +region = Rect2(402, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hch5s"] +atlas = ExtResource("267_qpodb") +region = Rect2(670, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vgjuv"] +atlas = ExtResource("267_qpodb") +region = Rect2(938, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1502j"] +atlas = ExtResource("267_qpodb") +region = Rect2(1206, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5m1ra"] +atlas = ExtResource("267_qpodb") +region = Rect2(134, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l0imt"] +atlas = ExtResource("267_qpodb") +region = Rect2(402, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ywb2s"] +atlas = ExtResource("267_qpodb") +region = Rect2(670, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x5582"] +atlas = ExtResource("267_qpodb") +region = Rect2(938, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4uy6l"] +atlas = ExtResource("267_qpodb") +region = Rect2(1206, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_50esb"] +atlas = ExtResource("267_qpodb") +region = Rect2(134, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xnham"] +atlas = ExtResource("267_qpodb") +region = Rect2(402, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j1cf1"] +atlas = ExtResource("267_qpodb") +region = Rect2(670, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jvde4"] +atlas = ExtResource("267_qpodb") +region = Rect2(938, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dvkgv"] +atlas = ExtResource("267_qpodb") +region = Rect2(1206, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3ant7"] +atlas = ExtResource("267_qpodb") +region = Rect2(134, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a6f8y"] +atlas = ExtResource("267_qpodb") +region = Rect2(402, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ancbh"] +atlas = ExtResource("267_qpodb") +region = Rect2(670, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yes2c"] +atlas = ExtResource("267_qpodb") +region = Rect2(938, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cs2h2"] +atlas = ExtResource("267_qpodb") +region = Rect2(1206, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n2i2d"] +atlas = ExtResource("267_qpodb") +region = Rect2(134, 1206, 134, 134) + +[sub_resource type="SpriteFrames" id="SpriteFrames_rirr7"] +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="BoxShape3D" id="BoxShape3D_53wuj"] size = Vector3(1, 0.565, 2) @@ -2089,6 +4776,483 @@ states/Walking/node = ExtResource("263_312rt") states/Walking/position = Vector2(635, 100) transitions = ["Start", "Idle", SubResource("AnimationNodeStateMachineTransition_sroq1"), "Idle", "Walking", SubResource("AnimationNodeStateMachineTransition_dcx20"), "Walking", "Idle", SubResource("AnimationNodeStateMachineTransition_evddb"), "Idle", "Primary Attack", SubResource("AnimationNodeStateMachineTransition_lqnm4"), "Idle", "Secondary Attack", SubResource("AnimationNodeStateMachineTransition_mwcs5"), "Primary Attack", "Idle", SubResource("AnimationNodeStateMachineTransition_6v3gw"), "Secondary Attack", "Idle", SubResource("AnimationNodeStateMachineTransition_1f6b3"), "Walking", "Primary Attack", SubResource("AnimationNodeStateMachineTransition_vw1ok"), "Walking", "Secondary Attack", SubResource("AnimationNodeStateMachineTransition_nau3d")] +[sub_resource type="Animation" id="Animation_30xy4"] +resource_name = "CurseHit" +length = 1.56667 +tracks/0/type = "value" +tracks/0/imported = false +tracks/0/enabled = true +tracks/0/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Curse Hit Effect:animation") +tracks/0/interp = 1 +tracks/0/loop_wrap = true +tracks/0/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"default"] +} +tracks/1/type = "value" +tracks/1/imported = false +tracks/1/enabled = true +tracks/1/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Curse Hit Effect:frame") +tracks/1/interp = 1 +tracks/1/loop_wrap = true +tracks/1/keys = { +"times": PackedFloat32Array(0, 1.56667), +"transitions": PackedFloat32Array(1, 1), +"update": 0, +"values": [0, 47] +} + +[sub_resource type="Animation" id="Animation_3pm1j"] +resource_name = "EarthHit" +length = 1.46667 +tracks/0/type = "value" +tracks/0/imported = false +tracks/0/enabled = true +tracks/0/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Earth Hit Effect:animation") +tracks/0/interp = 1 +tracks/0/loop_wrap = true +tracks/0/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"EARTH DAMAGE"] +} +tracks/1/type = "value" +tracks/1/imported = false +tracks/1/enabled = true +tracks/1/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Earth Hit Effect:frame") +tracks/1/interp = 1 +tracks/1/loop_wrap = true +tracks/1/keys = { +"times": PackedFloat32Array(0, 1.46667), +"transitions": PackedFloat32Array(1, 1), +"update": 0, +"values": [0, 44] +} + +[sub_resource type="Animation" id="Animation_6shfu"] +resource_name = "Fire Damage" +length = 2.93334 +tracks/0/type = "value" +tracks/0/imported = false +tracks/0/enabled = true +tracks/0/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/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("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/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("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/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)] +} +tracks/3/type = "value" +tracks/3/imported = false +tracks/3/enabled = true +tracks/3/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Rust Activation Effect:animation") +tracks/3/interp = 1 +tracks/3/loop_wrap = true +tracks/3/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"default"] +} +tracks/4/type = "value" +tracks/4/imported = false +tracks/4/enabled = true +tracks/4/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Rust Activation Effect:frame") +tracks/4/interp = 1 +tracks/4/loop_wrap = true +tracks/4/keys = { +"times": PackedFloat32Array(0, 2.93333), +"transitions": PackedFloat32Array(1, 1), +"update": 0, +"values": [88, 88] +} + +[sub_resource type="Animation" id="Animation_f5cjs"] +resource_name = "HolyHit" +length = 0.700003 +tracks/0/type = "value" +tracks/0/imported = false +tracks/0/enabled = true +tracks/0/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Holy Hit Layer Effect:animation") +tracks/0/interp = 1 +tracks/0/loop_wrap = true +tracks/0/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"HOLY"] +} +tracks/1/type = "value" +tracks/1/imported = false +tracks/1/enabled = true +tracks/1/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Holy Hit Layer Effect:frame") +tracks/1/interp = 1 +tracks/1/loop_wrap = true +tracks/1/keys = { +"times": PackedFloat32Array(0, 0.7), +"transitions": PackedFloat32Array(1, 1), +"update": 0, +"values": [0, 21] +} + +[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("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/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("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/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("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/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"] +} +tracks/3/type = "value" +tracks/3/imported = false +tracks/3/enabled = true +tracks/3/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Rust Activation Effect:animation") +tracks/3/interp = 1 +tracks/3/loop_wrap = true +tracks/3/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"default"] +} +tracks/4/type = "value" +tracks/4/imported = false +tracks/4/enabled = true +tracks/4/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Rust Activation Effect:frame") +tracks/4/interp = 1 +tracks/4/loop_wrap = true +tracks/4/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [88] +} +tracks/5/type = "value" +tracks/5/imported = false +tracks/5/enabled = true +tracks/5/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Holy Hit Layer Effect:animation") +tracks/5/interp = 1 +tracks/5/loop_wrap = true +tracks/5/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"HOLY"] +} +tracks/6/type = "value" +tracks/6/imported = false +tracks/6/enabled = true +tracks/6/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Holy Hit Layer Effect:frame") +tracks/6/interp = 1 +tracks/6/loop_wrap = true +tracks/6/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [0] +} +tracks/7/type = "value" +tracks/7/imported = false +tracks/7/enabled = true +tracks/7/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Wind Hit Layer Effect:animation") +tracks/7/interp = 1 +tracks/7/loop_wrap = true +tracks/7/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"default"] +} +tracks/8/type = "value" +tracks/8/imported = false +tracks/8/enabled = true +tracks/8/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Wind Hit Layer Effect:frame") +tracks/8/interp = 1 +tracks/8/loop_wrap = true +tracks/8/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [50] +} +tracks/9/type = "value" +tracks/9/imported = false +tracks/9/enabled = true +tracks/9/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Water Hit Layer 1 Effect:animation") +tracks/9/interp = 1 +tracks/9/loop_wrap = true +tracks/9/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"WATER DAMAGE"] +} +tracks/10/type = "value" +tracks/10/imported = false +tracks/10/enabled = true +tracks/10/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Water Hit Layer 1 Effect:frame") +tracks/10/interp = 1 +tracks/10/loop_wrap = true +tracks/10/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [29] +} +tracks/11/type = "value" +tracks/11/imported = false +tracks/11/enabled = true +tracks/11/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Water Hit Layer 2Effect:animation") +tracks/11/interp = 1 +tracks/11/loop_wrap = true +tracks/11/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"WATER"] +} +tracks/12/type = "value" +tracks/12/imported = false +tracks/12/enabled = true +tracks/12/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Water Hit Layer 2Effect:frame") +tracks/12/interp = 1 +tracks/12/loop_wrap = true +tracks/12/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [51] +} +tracks/13/type = "value" +tracks/13/imported = false +tracks/13/enabled = true +tracks/13/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Curse Hit Effect:animation") +tracks/13/interp = 1 +tracks/13/loop_wrap = true +tracks/13/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"default"] +} +tracks/14/type = "value" +tracks/14/imported = false +tracks/14/enabled = true +tracks/14/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Curse Hit Effect:frame") +tracks/14/interp = 1 +tracks/14/loop_wrap = true +tracks/14/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [47] +} +tracks/15/type = "value" +tracks/15/imported = false +tracks/15/enabled = true +tracks/15/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Earth Hit Effect:animation") +tracks/15/interp = 1 +tracks/15/loop_wrap = true +tracks/15/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"WATER DAMAGE"] +} +tracks/16/type = "value" +tracks/16/imported = false +tracks/16/enabled = true +tracks/16/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Earth Hit Effect:frame") +tracks/16/interp = 1 +tracks/16/loop_wrap = true +tracks/16/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [0] +} + +[sub_resource type="Animation" id="Animation_0tqwp"] +resource_name = "RustActivate" +length = 1.46667 +step = 0.0166667 +tracks/0/type = "value" +tracks/0/imported = false +tracks/0/enabled = true +tracks/0/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Rust Activation Effect:animation") +tracks/0/interp = 1 +tracks/0/loop_wrap = true +tracks/0/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"default"] +} +tracks/1/type = "value" +tracks/1/imported = false +tracks/1/enabled = true +tracks/1/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Rust Activation Effect:frame") +tracks/1/interp = 1 +tracks/1/loop_wrap = true +tracks/1/keys = { +"times": PackedFloat32Array(0, 1.46667), +"transitions": PackedFloat32Array(1, 1), +"update": 0, +"values": [0, 88] +} + +[sub_resource type="Animation" id="Animation_q5dfb"] +resource_name = "WaterHit" +length = 1.7 +tracks/0/type = "value" +tracks/0/imported = false +tracks/0/enabled = true +tracks/0/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Water Hit Layer 1 Effect:animation") +tracks/0/interp = 1 +tracks/0/loop_wrap = true +tracks/0/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"WATER DAMAGE"] +} +tracks/1/type = "value" +tracks/1/imported = false +tracks/1/enabled = true +tracks/1/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Water Hit Layer 1 Effect:frame") +tracks/1/interp = 1 +tracks/1/loop_wrap = true +tracks/1/keys = { +"times": PackedFloat32Array(0, 1), +"transitions": PackedFloat32Array(1, 1), +"update": 0, +"values": [0, 29] +} +tracks/2/type = "value" +tracks/2/imported = false +tracks/2/enabled = true +tracks/2/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Water Hit Layer 2Effect:animation") +tracks/2/interp = 1 +tracks/2/loop_wrap = true +tracks/2/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"WATER"] +} +tracks/3/type = "value" +tracks/3/imported = false +tracks/3/enabled = true +tracks/3/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Water Hit Layer 2Effect:frame") +tracks/3/interp = 1 +tracks/3/loop_wrap = true +tracks/3/keys = { +"times": PackedFloat32Array(0, 1.7), +"transitions": PackedFloat32Array(1, 1), +"update": 0, +"values": [0, 51] +} + +[sub_resource type="Animation" id="Animation_godpv"] +resource_name = "WindHit" +length = 0.833335 +step = 0.0166667 +tracks/0/type = "value" +tracks/0/imported = false +tracks/0/enabled = true +tracks/0/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Wind Hit Layer Effect:animation") +tracks/0/interp = 1 +tracks/0/loop_wrap = true +tracks/0/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"default"] +} +tracks/1/type = "value" +tracks/1/imported = false +tracks/1/enabled = true +tracks/1/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Wind Hit Layer Effect:frame") +tracks/1/interp = 1 +tracks/1/loop_wrap = true +tracks/1/keys = { +"times": PackedFloat32Array(0, 0.833333), +"transitions": PackedFloat32Array(1, 1), +"update": 0, +"values": [0, 50] +} + +[sub_resource type="AnimationLibrary" id="AnimationLibrary_0tqwp"] +_data = { +&"CurseHit": SubResource("Animation_30xy4"), +&"EarthHit": SubResource("Animation_3pm1j"), +&"FireHit": SubResource("Animation_6shfu"), +&"HolyHit": SubResource("Animation_f5cjs"), +&"RESET": SubResource("Animation_cftgd"), +&"RustActivate": SubResource("Animation_0tqwp"), +&"WaterHit": SubResource("Animation_q5dfb"), +&"WindHit": SubResource("Animation_godpv") +} + [node name="EnemyModelView" type="Node3D"] script = ExtResource("1_h27bt") EnemyLoreInfo = SubResource("Resource_f45wt") @@ -2124,6 +5288,60 @@ scale = Vector2(0.5, 0.5) sprite_frames = SubResource("SpriteFrames_6drt6") animation = &"idle_front" +[node name="VFXSprites" type="Node2D" parent="Sprite3D/SubViewportContainer/SubViewport"] + +[node name="Rust Activation Effect" type="AnimatedSprite2D" parent="Sprite3D/SubViewportContainer/SubViewport/VFXSprites"] +position = Vector2(400, 400) +scale = Vector2(1.54, 1.54) +sprite_frames = SubResource("SpriteFrames_jfuhx") +frame = 88 + +[node name="Holy Hit Layer Effect" type="AnimatedSprite2D" parent="Sprite3D/SubViewportContainer/SubViewport/VFXSprites"] +position = Vector2(400, 400) +scale = Vector2(0.675, 0.675) +sprite_frames = SubResource("SpriteFrames_6508q") +animation = &"HOLY" + +[node name="Wind Hit Layer Effect" type="AnimatedSprite2D" parent="Sprite3D/SubViewportContainer/SubViewport/VFXSprites"] +position = Vector2(400, 400) +scale = Vector2(1.445, 1.445) +sprite_frames = SubResource("SpriteFrames_pojhh") +frame = 50 + +[node name="Flame Hit Effect" type="AnimatedSprite2D" parent="Sprite3D/SubViewportContainer/SubViewport/VFXSprites"] +position = Vector2(400, 400) +scale = Vector2(3.445, 3.445) +sprite_frames = SubResource("SpriteFrames_olmyc") +animation = &"Flame Damage" +frame = 40 + +[node name="Water Hit Layer 1 Effect" type="AnimatedSprite2D" parent="Sprite3D/SubViewportContainer/SubViewport/VFXSprites"] +position = Vector2(400, 400) +scale = Vector2(2.215, 2.215) +sprite_frames = SubResource("SpriteFrames_uuxap") +animation = &"WATER DAMAGE" +frame = 29 + +[node name="Water Hit Layer 2Effect" type="AnimatedSprite2D" parent="Sprite3D/SubViewportContainer/SubViewport/VFXSprites"] +position = Vector2(400, 400) +scale = Vector2(1.105, 0.895) +sprite_frames = SubResource("SpriteFrames_irkcg") +animation = &"WATER" +frame = 51 + +[node name="Curse Hit Effect" type="AnimatedSprite2D" parent="Sprite3D/SubViewportContainer/SubViewport/VFXSprites"] +texture_filter = 1 +position = Vector2(400, 400) +scale = Vector2(2.78, 2.78) +sprite_frames = SubResource("SpriteFrames_rirr7") +frame = 47 + +[node name="Earth Hit Effect" type="AnimatedSprite2D" parent="Sprite3D/SubViewportContainer/SubViewport/VFXSprites"] +position = Vector2(400, 400) +scale = Vector2(2.005, 2.005) +sprite_frames = SubResource("SpriteFrames_uuxap") +animation = &"WATER DAMAGE" + [node name="Hitbox" type="Area3D" parent="."] unique_name_in_owner = true transform = Transform3D(-1, 0, -8.74228e-08, 0, 1, 0, 8.74228e-08, 0, -1, -0.152949, 1.30304, 0) @@ -2163,3 +5381,51 @@ cast_shadow = 0 modulate = Color(1, 1, 1, 0.591) texture_filter = 0 texture = ExtResource("267_evddb") + +[node name="VFXAnimations" type="Node" parent="."] + +[node name="FlameHitAnimation" type="AnimationPlayer" parent="VFXAnimations"] +unique_name_in_owner = true +libraries = { +&"": SubResource("AnimationLibrary_0tqwp") +} + +[node name="RustHitAnimation" type="AnimationPlayer" parent="VFXAnimations"] +unique_name_in_owner = true +root_node = NodePath("../../Secondary Animation Player") +libraries = { +&"": SubResource("AnimationLibrary_0tqwp") +} + +[node name="HolyHitAnimation" type="AnimationPlayer" parent="VFXAnimations"] +unique_name_in_owner = true +libraries = { +&"": SubResource("AnimationLibrary_0tqwp") +} + +[node name="WindHitAnimation" type="AnimationPlayer" parent="VFXAnimations"] +unique_name_in_owner = true +libraries = { +&"": SubResource("AnimationLibrary_0tqwp") +} + +[node name="WaterHitAnimation" type="AnimationPlayer" parent="VFXAnimations"] +unique_name_in_owner = true +root_node = NodePath("../../Secondary Animation Player") +libraries = { +&"": SubResource("AnimationLibrary_0tqwp") +} + +[node name="CurseHitAnimation" type="AnimationPlayer" parent="VFXAnimations"] +unique_name_in_owner = true +root_node = NodePath("../../Secondary Animation Player") +libraries = { +&"": SubResource("AnimationLibrary_0tqwp") +} + +[node name="EarthHitAnimation" type="AnimationPlayer" parent="VFXAnimations"] +unique_name_in_owner = true +root_node = NodePath("../../Secondary Animation Player") +libraries = { +&"": SubResource("AnimationLibrary_0tqwp") +} diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/08b. Ambassador (red)/AmbassadorSmallModelView.tscn b/Zennysoft.Game.Ma/src/enemy/enemy_types/08b. Ambassador (red)/AmbassadorSmallModelView.tscn index 86d68709..3da8c3bf 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/08b. Ambassador (red)/AmbassadorSmallModelView.tscn +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/08b. Ambassador (red)/AmbassadorSmallModelView.tscn @@ -1,4 +1,4 @@ -[gd_scene load_steps=300 format=3 uid="uid://d02te8cwjistl"] +[gd_scene load_steps=695 format=3 uid="uid://d02te8cwjistl"] [ext_resource type="Script" uid="uid://cvr1qimxpignl" path="res://src/enemy/EnemyModelView2D.cs" id="1_a8qtn"] [ext_resource type="Script" uid="uid://dlsgyx4i1jmp3" path="res://src/enemy/EnemyLoreInfo.cs" id="2_xa3ug"] @@ -260,13 +260,21 @@ [ext_resource type="Texture2D" uid="uid://dmhttsdjpn1ed" path="res://src/enemy/enemy_types/08b. Ambassador (red)/animations/SIDE/0195.png" id="258_hwjgo"] [ext_resource type="Texture2D" uid="uid://dg7l1crtk7m3s" path="res://src/enemy/enemy_types/08b. Ambassador (red)/animations/SIDE/0197.png" id="259_ymdu4"] [ext_resource type="Texture2D" uid="uid://by2vqyh68egwr" path="res://src/enemy/enemy_types/08b. Ambassador (red)/animations/SIDE/0199.png" id="260_jtq5d"] +[ext_resource type="Texture2D" uid="uid://dq70aipwl1qrg" path="res://src/vfx/Enemy Affected/Rust Particles.png" id="261_7vwa6"] [ext_resource type="AudioStream" uid="uid://bgumf0x52xmby" path="res://src/audio/sfx/enemy_ambassador_kick.ogg" id="261_qerwx"] [ext_resource type="Texture2D" uid="uid://dafpnwkwcukp4" path="res://src/vfx/shadow_test_1.png" id="261_xxvov"] [ext_resource type="PackedScene" uid="uid://3ax3e5uce27d" path="res://src/enemy/TwoAttacksEnemyAnimationTree.tscn" id="262_a3dro"] +[ext_resource type="Texture2D" uid="uid://by0ehygy7bq13" path="res://src/vfx/Enemy Affected/Holy Damage.png" id="262_i3uxw"] +[ext_resource type="Texture2D" uid="uid://dqqhu0s51o3n7" path="res://src/vfx/Enemy Affected/Wind Damage.png" id="263_ig6n6"] [ext_resource type="AnimationNodeStateMachine" uid="uid://co7lshemjrro8" path="res://src/enemy/animation_state_machines/IdleStateMachine.tres" id="263_qerwx"] +[ext_resource type="Texture2D" uid="uid://dh6mk1c35nymx" path="res://src/vfx/Enemy Affected/firedamage.png" id="264_8fqp0"] [ext_resource type="AnimationNodeStateMachine" uid="uid://cbq8xog50cjjy" path="res://src/enemy/animation_state_machines/PrimaryAttackStateMachine.tres" id="264_xxvov"] +[ext_resource type="Texture2D" uid="uid://7a42df2ijrmv" path="res://src/vfx/Enemy Affected/earth damage.png" id="265_1o3cs"] [ext_resource type="AnimationNodeStateMachine" uid="uid://clybvwx3itfeo" path="res://src/enemy/animation_state_machines/SecondaryAttackStateMachine.tres" id="265_pta34"] [ext_resource type="AnimationNodeStateMachine" uid="uid://cy2ngl55c0rws" path="res://src/enemy/animation_state_machines/WalkingStateMachine.tres" id="266_0cp06"] +[ext_resource type="Texture2D" uid="uid://cot4wx5fg5pfs" path="res://src/vfx/Enemy Affected/water_hit_layer2.png" id="266_ewlwi"] +[ext_resource type="Texture2D" uid="uid://cbei66g134fgv" path="res://src/vfx/Enemy Affected/water layer 1.png" id="267_ucfs5"] +[ext_resource type="Texture2D" uid="uid://bp6npqoco5fl3" path="res://src/vfx/Enemy Affected/curse_damage.png" id="268_4it51"] [sub_resource type="Resource" id="Resource_f45wt"] script = ExtResource("2_xa3ug") @@ -1131,6 +1139,2685 @@ animations = [{ "speed": 12.0 }] +[sub_resource type="AtlasTexture" id="AtlasTexture_4o5f2"] +atlas = ExtResource("261_7vwa6") +region = Rect2(1206, 402, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r8ggx"] +atlas = ExtResource("261_7vwa6") +region = Rect2(1340, 402, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xafpd"] +atlas = ExtResource("261_7vwa6") +region = Rect2(1474, 402, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_73dpc"] +atlas = ExtResource("261_7vwa6") +region = Rect2(0, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vppxt"] +atlas = ExtResource("261_7vwa6") +region = Rect2(134, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nk562"] +atlas = ExtResource("261_7vwa6") +region = Rect2(268, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dwu2q"] +atlas = ExtResource("261_7vwa6") +region = Rect2(402, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w3p3j"] +atlas = ExtResource("261_7vwa6") +region = Rect2(536, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ig0ip"] +atlas = ExtResource("261_7vwa6") +region = Rect2(670, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r4enw"] +atlas = ExtResource("261_7vwa6") +region = Rect2(804, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uy6hg"] +atlas = ExtResource("261_7vwa6") +region = Rect2(938, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_85jwg"] +atlas = ExtResource("261_7vwa6") +region = Rect2(1072, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ln7dl"] +atlas = ExtResource("261_7vwa6") +region = Rect2(1206, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3vvgp"] +atlas = ExtResource("261_7vwa6") +region = Rect2(1340, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_01f7m"] +atlas = ExtResource("261_7vwa6") +region = Rect2(1474, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pp21u"] +atlas = ExtResource("261_7vwa6") +region = Rect2(0, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1aldj"] +atlas = ExtResource("261_7vwa6") +region = Rect2(134, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xv5pw"] +atlas = ExtResource("261_7vwa6") +region = Rect2(268, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_14lh3"] +atlas = ExtResource("261_7vwa6") +region = Rect2(402, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xxid6"] +atlas = ExtResource("261_7vwa6") +region = Rect2(536, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y6yeo"] +atlas = ExtResource("261_7vwa6") +region = Rect2(670, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2aohu"] +atlas = ExtResource("261_7vwa6") +region = Rect2(804, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ebvc7"] +atlas = ExtResource("261_7vwa6") +region = Rect2(938, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yd50d"] +atlas = ExtResource("261_7vwa6") +region = Rect2(1072, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yimdu"] +atlas = ExtResource("261_7vwa6") +region = Rect2(1206, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dync1"] +atlas = ExtResource("261_7vwa6") +region = Rect2(1340, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jsjdk"] +atlas = ExtResource("261_7vwa6") +region = Rect2(1474, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ueih5"] +atlas = ExtResource("261_7vwa6") +region = Rect2(0, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k0hut"] +atlas = ExtResource("261_7vwa6") +region = Rect2(134, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kybji"] +atlas = ExtResource("261_7vwa6") +region = Rect2(268, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u5vpt"] +atlas = ExtResource("261_7vwa6") +region = Rect2(402, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wko4t"] +atlas = ExtResource("261_7vwa6") +region = Rect2(536, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ru86o"] +atlas = ExtResource("261_7vwa6") +region = Rect2(670, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uybbj"] +atlas = ExtResource("261_7vwa6") +region = Rect2(804, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s6pp8"] +atlas = ExtResource("261_7vwa6") +region = Rect2(938, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a7pls"] +atlas = ExtResource("261_7vwa6") +region = Rect2(1072, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_30y71"] +atlas = ExtResource("261_7vwa6") +region = Rect2(1206, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dwl1c"] +atlas = ExtResource("261_7vwa6") +region = Rect2(1340, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_01jp4"] +atlas = ExtResource("261_7vwa6") +region = Rect2(1474, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b8ulh"] +atlas = ExtResource("261_7vwa6") +region = Rect2(0, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3walv"] +atlas = ExtResource("261_7vwa6") +region = Rect2(134, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_exyoj"] +atlas = ExtResource("261_7vwa6") +region = Rect2(268, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kus54"] +atlas = ExtResource("261_7vwa6") +region = Rect2(402, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_meauc"] +atlas = ExtResource("261_7vwa6") +region = Rect2(536, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7v7xr"] +atlas = ExtResource("261_7vwa6") +region = Rect2(670, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4ktea"] +atlas = ExtResource("261_7vwa6") +region = Rect2(804, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l8oa1"] +atlas = ExtResource("261_7vwa6") +region = Rect2(938, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3eopa"] +atlas = ExtResource("261_7vwa6") +region = Rect2(1072, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ip8hv"] +atlas = ExtResource("261_7vwa6") +region = Rect2(1206, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_42rbq"] +atlas = ExtResource("261_7vwa6") +region = Rect2(1340, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tu0vu"] +atlas = ExtResource("261_7vwa6") +region = Rect2(1474, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gbh7l"] +atlas = ExtResource("261_7vwa6") +region = Rect2(0, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_733jx"] +atlas = ExtResource("261_7vwa6") +region = Rect2(134, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sfa2q"] +atlas = ExtResource("261_7vwa6") +region = Rect2(268, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o0nvo"] +atlas = ExtResource("261_7vwa6") +region = Rect2(402, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1mv1w"] +atlas = ExtResource("261_7vwa6") +region = Rect2(536, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yw8ob"] +atlas = ExtResource("261_7vwa6") +region = Rect2(670, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ptkbd"] +atlas = ExtResource("261_7vwa6") +region = Rect2(804, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2uoiw"] +atlas = ExtResource("261_7vwa6") +region = Rect2(938, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4m684"] +atlas = ExtResource("261_7vwa6") +region = Rect2(1072, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_st6fj"] +atlas = ExtResource("261_7vwa6") +region = Rect2(1206, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1wana"] +atlas = ExtResource("261_7vwa6") +region = Rect2(1340, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ati4e"] +atlas = ExtResource("261_7vwa6") +region = Rect2(1474, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0w31q"] +atlas = ExtResource("261_7vwa6") +region = Rect2(0, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uxu33"] +atlas = ExtResource("261_7vwa6") +region = Rect2(134, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2ulnd"] +atlas = ExtResource("261_7vwa6") +region = Rect2(268, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ddsrn"] +atlas = ExtResource("261_7vwa6") +region = Rect2(402, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n1e5w"] +atlas = ExtResource("261_7vwa6") +region = Rect2(536, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f4aq5"] +atlas = ExtResource("261_7vwa6") +region = Rect2(670, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_er00h"] +atlas = ExtResource("261_7vwa6") +region = Rect2(804, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mlf5c"] +atlas = ExtResource("261_7vwa6") +region = Rect2(938, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c362w"] +atlas = ExtResource("261_7vwa6") +region = Rect2(1072, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_30wb7"] +atlas = ExtResource("261_7vwa6") +region = Rect2(1206, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_stb0b"] +atlas = ExtResource("261_7vwa6") +region = Rect2(1340, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a64qf"] +atlas = ExtResource("261_7vwa6") +region = Rect2(1474, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_52bkw"] +atlas = ExtResource("261_7vwa6") +region = Rect2(0, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y0yvc"] +atlas = ExtResource("261_7vwa6") +region = Rect2(134, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5h2xe"] +atlas = ExtResource("261_7vwa6") +region = Rect2(268, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6hh33"] +atlas = ExtResource("261_7vwa6") +region = Rect2(402, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kmk3m"] +atlas = ExtResource("261_7vwa6") +region = Rect2(536, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rbtmh"] +atlas = ExtResource("261_7vwa6") +region = Rect2(670, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bit6n"] +atlas = ExtResource("261_7vwa6") +region = Rect2(804, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_458hw"] +atlas = ExtResource("261_7vwa6") +region = Rect2(938, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4x2ea"] +atlas = ExtResource("261_7vwa6") +region = Rect2(1072, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bcljt"] +atlas = ExtResource("261_7vwa6") +region = Rect2(1206, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p6e34"] +atlas = ExtResource("261_7vwa6") +region = Rect2(1340, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2yfi0"] +atlas = ExtResource("261_7vwa6") +region = Rect2(1474, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bhoxy"] +atlas = ExtResource("261_7vwa6") +region = Rect2(0, 1474, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_41wyx"] +atlas = ExtResource("261_7vwa6") +region = Rect2(134, 1474, 134, 134) + +[sub_resource type="SpriteFrames" id="SpriteFrames_iqmvh"] +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("262_i3uxw") +region = Rect2(1024, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pvn2l"] +atlas = ExtResource("262_i3uxw") +region = Rect2(1536, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sctov"] +atlas = ExtResource("262_i3uxw") +region = Rect2(2048, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_46bwa"] +atlas = ExtResource("262_i3uxw") +region = Rect2(2560, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o42jv"] +atlas = ExtResource("262_i3uxw") +region = Rect2(3072, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5dqsk"] +atlas = ExtResource("262_i3uxw") +region = Rect2(3584, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_35l4k"] +atlas = ExtResource("262_i3uxw") +region = Rect2(4096, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x0jfm"] +atlas = ExtResource("262_i3uxw") +region = Rect2(4608, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fk16r"] +atlas = ExtResource("262_i3uxw") +region = Rect2(5120, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ewtdr"] +atlas = ExtResource("262_i3uxw") +region = Rect2(5632, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bul51"] +atlas = ExtResource("262_i3uxw") +region = Rect2(6144, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vbobf"] +atlas = ExtResource("262_i3uxw") +region = Rect2(6656, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_itqlk"] +atlas = ExtResource("262_i3uxw") +region = Rect2(7168, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_41jjh"] +atlas = ExtResource("262_i3uxw") +region = Rect2(7680, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kol03"] +atlas = ExtResource("262_i3uxw") +region = Rect2(0, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ynyxy"] +atlas = ExtResource("262_i3uxw") +region = Rect2(512, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ngcxk"] +atlas = ExtResource("262_i3uxw") +region = Rect2(1024, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ba8fa"] +atlas = ExtResource("262_i3uxw") +region = Rect2(1536, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ngitf"] +atlas = ExtResource("262_i3uxw") +region = Rect2(2048, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_boovf"] +atlas = ExtResource("262_i3uxw") +region = Rect2(2560, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jwkhr"] +atlas = ExtResource("262_i3uxw") +region = Rect2(3072, 512, 512, 512) + +[sub_resource type="SpriteFrames" id="SpriteFrames_5vf4o"] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": null +}, { +"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("263_ig6n6") +region = Rect2(0, 0, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3jmy8"] +atlas = ExtResource("263_ig6n6") +region = Rect2(266, 0, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t76hk"] +atlas = ExtResource("263_ig6n6") +region = Rect2(532, 0, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_06gff"] +atlas = ExtResource("263_ig6n6") +region = Rect2(798, 0, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ssjgs"] +atlas = ExtResource("263_ig6n6") +region = Rect2(1064, 0, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_53u6k"] +atlas = ExtResource("263_ig6n6") +region = Rect2(0, 131, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_inmu7"] +atlas = ExtResource("263_ig6n6") +region = Rect2(266, 131, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bmkvg"] +atlas = ExtResource("263_ig6n6") +region = Rect2(532, 131, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oqdmj"] +atlas = ExtResource("263_ig6n6") +region = Rect2(798, 131, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bnn41"] +atlas = ExtResource("263_ig6n6") +region = Rect2(1064, 131, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p6hmn"] +atlas = ExtResource("263_ig6n6") +region = Rect2(0, 262, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s0ybe"] +atlas = ExtResource("263_ig6n6") +region = Rect2(266, 262, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y2273"] +atlas = ExtResource("263_ig6n6") +region = Rect2(532, 262, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2i87r"] +atlas = ExtResource("263_ig6n6") +region = Rect2(798, 262, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4q8o2"] +atlas = ExtResource("263_ig6n6") +region = Rect2(1064, 262, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_esxmc"] +atlas = ExtResource("263_ig6n6") +region = Rect2(0, 393, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rdsur"] +atlas = ExtResource("263_ig6n6") +region = Rect2(266, 393, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b2qt4"] +atlas = ExtResource("263_ig6n6") +region = Rect2(532, 393, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xamrr"] +atlas = ExtResource("263_ig6n6") +region = Rect2(798, 393, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0prqh"] +atlas = ExtResource("263_ig6n6") +region = Rect2(1064, 393, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dh1oc"] +atlas = ExtResource("263_ig6n6") +region = Rect2(0, 524, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ybb1w"] +atlas = ExtResource("263_ig6n6") +region = Rect2(266, 524, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2nkua"] +atlas = ExtResource("263_ig6n6") +region = Rect2(532, 524, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2gocr"] +atlas = ExtResource("263_ig6n6") +region = Rect2(798, 524, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_acsou"] +atlas = ExtResource("263_ig6n6") +region = Rect2(1064, 524, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yflou"] +atlas = ExtResource("263_ig6n6") +region = Rect2(0, 655, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_env3c"] +atlas = ExtResource("263_ig6n6") +region = Rect2(266, 655, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_74f4l"] +atlas = ExtResource("263_ig6n6") +region = Rect2(532, 655, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cbaq7"] +atlas = ExtResource("263_ig6n6") +region = Rect2(798, 655, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bc4hh"] +atlas = ExtResource("263_ig6n6") +region = Rect2(1064, 655, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5m27y"] +atlas = ExtResource("263_ig6n6") +region = Rect2(0, 786, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c2vig"] +atlas = ExtResource("263_ig6n6") +region = Rect2(266, 786, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h8qbh"] +atlas = ExtResource("263_ig6n6") +region = Rect2(532, 786, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vj2ia"] +atlas = ExtResource("263_ig6n6") +region = Rect2(798, 786, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h0bv3"] +atlas = ExtResource("263_ig6n6") +region = Rect2(1064, 786, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3xb07"] +atlas = ExtResource("263_ig6n6") +region = Rect2(0, 917, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p845e"] +atlas = ExtResource("263_ig6n6") +region = Rect2(266, 917, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nm575"] +atlas = ExtResource("263_ig6n6") +region = Rect2(532, 917, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8wvvt"] +atlas = ExtResource("263_ig6n6") +region = Rect2(798, 917, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2l45l"] +atlas = ExtResource("263_ig6n6") +region = Rect2(1064, 917, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0c6u7"] +atlas = ExtResource("263_ig6n6") +region = Rect2(0, 1048, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bo1qh"] +atlas = ExtResource("263_ig6n6") +region = Rect2(266, 1048, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4cq22"] +atlas = ExtResource("263_ig6n6") +region = Rect2(532, 1048, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d6auk"] +atlas = ExtResource("263_ig6n6") +region = Rect2(798, 1048, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4bvg3"] +atlas = ExtResource("263_ig6n6") +region = Rect2(1064, 1048, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rps4p"] +atlas = ExtResource("263_ig6n6") +region = Rect2(0, 1179, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qdy2n"] +atlas = ExtResource("263_ig6n6") +region = Rect2(266, 1179, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a63dt"] +atlas = ExtResource("263_ig6n6") +region = Rect2(532, 1179, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3alol"] +atlas = ExtResource("263_ig6n6") +region = Rect2(798, 1179, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w5y4o"] +atlas = ExtResource("263_ig6n6") +region = Rect2(1064, 1179, 133, 131) + +[sub_resource type="SpriteFrames" id="SpriteFrames_7jpw7"] +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("264_8fqp0") +region = Rect2(200, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w5yum"] +atlas = ExtResource("264_8fqp0") +region = Rect2(600, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xagiq"] +atlas = ExtResource("264_8fqp0") +region = Rect2(1000, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iu4h2"] +atlas = ExtResource("264_8fqp0") +region = Rect2(100, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t6kmk"] +atlas = ExtResource("264_8fqp0") +region = Rect2(500, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c3c22"] +atlas = ExtResource("264_8fqp0") +region = Rect2(900, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_udm06"] +atlas = ExtResource("264_8fqp0") +region = Rect2(0, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_31shi"] +atlas = ExtResource("264_8fqp0") +region = Rect2(400, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i6wsf"] +atlas = ExtResource("264_8fqp0") +region = Rect2(800, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jhluk"] +atlas = ExtResource("264_8fqp0") +region = Rect2(1200, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_exq74"] +atlas = ExtResource("264_8fqp0") +region = Rect2(300, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k7tc1"] +atlas = ExtResource("264_8fqp0") +region = Rect2(700, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_456io"] +atlas = ExtResource("264_8fqp0") +region = Rect2(1100, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2h7ac"] +atlas = ExtResource("264_8fqp0") +region = Rect2(200, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dy5lo"] +atlas = ExtResource("264_8fqp0") +region = Rect2(500, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_biyyn"] +atlas = ExtResource("264_8fqp0") +region = Rect2(1000, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_flqm1"] +atlas = ExtResource("264_8fqp0") +region = Rect2(100, 500, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xttn8"] +atlas = ExtResource("264_8fqp0") +region = Rect2(500, 500, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_85rsb"] +atlas = ExtResource("264_8fqp0") +region = Rect2(900, 500, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oxqm1"] +atlas = ExtResource("264_8fqp0") +region = Rect2(0, 600, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dphle"] +atlas = ExtResource("264_8fqp0") +region = Rect2(400, 600, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_48bul"] +atlas = ExtResource("264_8fqp0") +region = Rect2(800, 600, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2d6tt"] +atlas = ExtResource("264_8fqp0") +region = Rect2(1200, 600, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ty41g"] +atlas = ExtResource("264_8fqp0") +region = Rect2(300, 700, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c5uyp"] +atlas = ExtResource("264_8fqp0") +region = Rect2(700, 700, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tf4dl"] +atlas = ExtResource("264_8fqp0") +region = Rect2(1100, 700, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cvdlu"] +atlas = ExtResource("264_8fqp0") +region = Rect2(200, 800, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f25l1"] +atlas = ExtResource("264_8fqp0") +region = Rect2(600, 800, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v033q"] +atlas = ExtResource("264_8fqp0") +region = Rect2(1000, 800, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xgfkn"] +atlas = ExtResource("264_8fqp0") +region = Rect2(100, 900, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_duxfd"] +atlas = ExtResource("264_8fqp0") +region = Rect2(500, 900, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5uvt0"] +atlas = ExtResource("264_8fqp0") +region = Rect2(900, 900, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7d05g"] +atlas = ExtResource("264_8fqp0") +region = Rect2(0, 1000, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x0ube"] +atlas = ExtResource("264_8fqp0") +region = Rect2(400, 1000, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_15y07"] +atlas = ExtResource("264_8fqp0") +region = Rect2(800, 1000, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_de0po"] +atlas = ExtResource("264_8fqp0") +region = Rect2(1200, 1000, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b3rtc"] +atlas = ExtResource("264_8fqp0") +region = Rect2(300, 1100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q32lt"] +atlas = ExtResource("264_8fqp0") +region = Rect2(700, 1100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_88hqh"] +atlas = ExtResource("264_8fqp0") +region = Rect2(1100, 1100, 100, 100) + +[sub_resource type="SpriteFrames" id="SpriteFrames_nigc4"] +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("265_1o3cs") +region = Rect2(0, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0rj30"] +atlas = ExtResource("265_1o3cs") +region = Rect2(200, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ug1a1"] +atlas = ExtResource("265_1o3cs") +region = Rect2(400, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8eees"] +atlas = ExtResource("265_1o3cs") +region = Rect2(600, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k2i7i"] +atlas = ExtResource("265_1o3cs") +region = Rect2(800, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4wwo5"] +atlas = ExtResource("265_1o3cs") +region = Rect2(0, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_418m2"] +atlas = ExtResource("265_1o3cs") +region = Rect2(200, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6g5qj"] +atlas = ExtResource("265_1o3cs") +region = Rect2(400, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k3sey"] +atlas = ExtResource("265_1o3cs") +region = Rect2(600, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ms40v"] +atlas = ExtResource("265_1o3cs") +region = Rect2(800, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2tfej"] +atlas = ExtResource("265_1o3cs") +region = Rect2(0, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_woj7f"] +atlas = ExtResource("265_1o3cs") +region = Rect2(200, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kg861"] +atlas = ExtResource("265_1o3cs") +region = Rect2(400, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jtxxp"] +atlas = ExtResource("265_1o3cs") +region = Rect2(600, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sxooa"] +atlas = ExtResource("265_1o3cs") +region = Rect2(800, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hkj2y"] +atlas = ExtResource("265_1o3cs") +region = Rect2(0, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wm40h"] +atlas = ExtResource("265_1o3cs") +region = Rect2(200, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u66v8"] +atlas = ExtResource("265_1o3cs") +region = Rect2(400, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6ip85"] +atlas = ExtResource("265_1o3cs") +region = Rect2(600, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qad2i"] +atlas = ExtResource("265_1o3cs") +region = Rect2(800, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nifqu"] +atlas = ExtResource("265_1o3cs") +region = Rect2(0, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_goocc"] +atlas = ExtResource("265_1o3cs") +region = Rect2(200, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l78ua"] +atlas = ExtResource("265_1o3cs") +region = Rect2(400, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ybqlc"] +atlas = ExtResource("265_1o3cs") +region = Rect2(600, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d0lry"] +atlas = ExtResource("265_1o3cs") +region = Rect2(800, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ccb2v"] +atlas = ExtResource("265_1o3cs") +region = Rect2(0, 500, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dcp7h"] +atlas = ExtResource("265_1o3cs") +region = Rect2(200, 500, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3kud6"] +atlas = ExtResource("265_1o3cs") +region = Rect2(400, 500, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0tvc2"] +atlas = ExtResource("265_1o3cs") +region = Rect2(600, 500, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g5aky"] +atlas = ExtResource("265_1o3cs") +region = Rect2(800, 500, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nyc7u"] +atlas = ExtResource("265_1o3cs") +region = Rect2(0, 600, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q1yeq"] +atlas = ExtResource("265_1o3cs") +region = Rect2(200, 600, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pupfb"] +atlas = ExtResource("265_1o3cs") +region = Rect2(400, 600, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gfe8c"] +atlas = ExtResource("265_1o3cs") +region = Rect2(600, 600, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_76bl1"] +atlas = ExtResource("265_1o3cs") +region = Rect2(800, 600, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u7frn"] +atlas = ExtResource("265_1o3cs") +region = Rect2(0, 700, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ls3an"] +atlas = ExtResource("265_1o3cs") +region = Rect2(200, 700, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4l6e0"] +atlas = ExtResource("265_1o3cs") +region = Rect2(400, 700, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cvlbl"] +atlas = ExtResource("265_1o3cs") +region = Rect2(600, 700, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jkvpv"] +atlas = ExtResource("265_1o3cs") +region = Rect2(800, 700, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lpp7o"] +atlas = ExtResource("265_1o3cs") +region = Rect2(0, 800, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v8igx"] +atlas = ExtResource("265_1o3cs") +region = Rect2(200, 800, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mmm0q"] +atlas = ExtResource("265_1o3cs") +region = Rect2(400, 800, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5ukt7"] +atlas = ExtResource("265_1o3cs") +region = Rect2(600, 800, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0pkd7"] +atlas = ExtResource("265_1o3cs") +region = Rect2(800, 800, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n85t7"] +atlas = ExtResource("266_ewlwi") +region = Rect2(0, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nb4v4"] +atlas = ExtResource("266_ewlwi") +region = Rect2(100, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cl00x"] +atlas = ExtResource("266_ewlwi") +region = Rect2(200, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ufcsw"] +atlas = ExtResource("266_ewlwi") +region = Rect2(300, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aoisp"] +atlas = ExtResource("266_ewlwi") +region = Rect2(400, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3rkdy"] +atlas = ExtResource("266_ewlwi") +region = Rect2(500, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o0dym"] +atlas = ExtResource("266_ewlwi") +region = Rect2(0, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vxihx"] +atlas = ExtResource("266_ewlwi") +region = Rect2(100, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ofpmt"] +atlas = ExtResource("266_ewlwi") +region = Rect2(200, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ux0ir"] +atlas = ExtResource("266_ewlwi") +region = Rect2(300, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8dgch"] +atlas = ExtResource("266_ewlwi") +region = Rect2(400, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7ixin"] +atlas = ExtResource("266_ewlwi") +region = Rect2(500, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2kea0"] +atlas = ExtResource("266_ewlwi") +region = Rect2(0, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kgnps"] +atlas = ExtResource("266_ewlwi") +region = Rect2(100, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g2wgu"] +atlas = ExtResource("266_ewlwi") +region = Rect2(200, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0oosk"] +atlas = ExtResource("266_ewlwi") +region = Rect2(300, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_80k2g"] +atlas = ExtResource("266_ewlwi") +region = Rect2(400, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fskx7"] +atlas = ExtResource("266_ewlwi") +region = Rect2(500, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_no3pe"] +atlas = ExtResource("266_ewlwi") +region = Rect2(0, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_15fnm"] +atlas = ExtResource("266_ewlwi") +region = Rect2(100, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r5e73"] +atlas = ExtResource("266_ewlwi") +region = Rect2(200, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2im8t"] +atlas = ExtResource("266_ewlwi") +region = Rect2(300, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mxl2m"] +atlas = ExtResource("266_ewlwi") +region = Rect2(400, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6dwuh"] +atlas = ExtResource("266_ewlwi") +region = Rect2(500, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_53c1f"] +atlas = ExtResource("266_ewlwi") +region = Rect2(0, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mmbhy"] +atlas = ExtResource("266_ewlwi") +region = Rect2(100, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uwbh3"] +atlas = ExtResource("266_ewlwi") +region = Rect2(200, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j6v2y"] +atlas = ExtResource("266_ewlwi") +region = Rect2(300, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h5xbu"] +atlas = ExtResource("266_ewlwi") +region = Rect2(400, 400, 100, 100) + +[sub_resource type="SpriteFrames" id="SpriteFrames_tk7hg"] +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("267_ucfs5") +region = Rect2(875, 452, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ekrqp"] +atlas = ExtResource("267_ucfs5") +region = Rect2(1050, 452, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dvnic"] +atlas = ExtResource("267_ucfs5") +region = Rect2(1225, 452, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rxdv7"] +atlas = ExtResource("267_ucfs5") +region = Rect2(1400, 452, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0pvcp"] +atlas = ExtResource("267_ucfs5") +region = Rect2(0, 678, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yga3t"] +atlas = ExtResource("267_ucfs5") +region = Rect2(175, 678, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c6qrx"] +atlas = ExtResource("267_ucfs5") +region = Rect2(350, 678, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fkryw"] +atlas = ExtResource("267_ucfs5") +region = Rect2(525, 678, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jt7jg"] +atlas = ExtResource("267_ucfs5") +region = Rect2(700, 678, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6eyjl"] +atlas = ExtResource("267_ucfs5") +region = Rect2(875, 678, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tsolq"] +atlas = ExtResource("267_ucfs5") +region = Rect2(1050, 678, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_opqal"] +atlas = ExtResource("267_ucfs5") +region = Rect2(1225, 678, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kia47"] +atlas = ExtResource("267_ucfs5") +region = Rect2(1400, 678, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6aolf"] +atlas = ExtResource("267_ucfs5") +region = Rect2(0, 904, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g6jok"] +atlas = ExtResource("267_ucfs5") +region = Rect2(175, 904, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_swdkn"] +atlas = ExtResource("267_ucfs5") +region = Rect2(350, 904, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_edlre"] +atlas = ExtResource("267_ucfs5") +region = Rect2(525, 904, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gbj32"] +atlas = ExtResource("267_ucfs5") +region = Rect2(700, 904, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bstol"] +atlas = ExtResource("267_ucfs5") +region = Rect2(875, 904, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_57vey"] +atlas = ExtResource("267_ucfs5") +region = Rect2(1050, 904, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_31ikn"] +atlas = ExtResource("267_ucfs5") +region = Rect2(1225, 904, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e1yxa"] +atlas = ExtResource("267_ucfs5") +region = Rect2(1400, 904, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7a7ks"] +atlas = ExtResource("267_ucfs5") +region = Rect2(0, 1130, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p2hq6"] +atlas = ExtResource("267_ucfs5") +region = Rect2(175, 1130, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k3fbj"] +atlas = ExtResource("267_ucfs5") +region = Rect2(350, 1130, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ylav8"] +atlas = ExtResource("267_ucfs5") +region = Rect2(525, 1130, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xhgk2"] +atlas = ExtResource("267_ucfs5") +region = Rect2(700, 1130, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_diucy"] +atlas = ExtResource("267_ucfs5") +region = Rect2(875, 1130, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8gw5n"] +atlas = ExtResource("267_ucfs5") +region = Rect2(1050, 1130, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hc5wr"] +atlas = ExtResource("267_ucfs5") +region = Rect2(1225, 1130, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fugdi"] +atlas = ExtResource("267_ucfs5") +region = Rect2(1400, 1130, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h222i"] +atlas = ExtResource("267_ucfs5") +region = Rect2(0, 1356, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7qa4p"] +atlas = ExtResource("267_ucfs5") +region = Rect2(175, 1356, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jbavk"] +atlas = ExtResource("267_ucfs5") +region = Rect2(350, 1356, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ncorq"] +atlas = ExtResource("267_ucfs5") +region = Rect2(525, 1356, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mdvft"] +atlas = ExtResource("267_ucfs5") +region = Rect2(700, 1356, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ljrf5"] +atlas = ExtResource("267_ucfs5") +region = Rect2(875, 1356, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r7ll6"] +atlas = ExtResource("267_ucfs5") +region = Rect2(1050, 1356, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6vssn"] +atlas = ExtResource("267_ucfs5") +region = Rect2(1225, 1356, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4lr8r"] +atlas = ExtResource("267_ucfs5") +region = Rect2(1400, 1356, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xp4kq"] +atlas = ExtResource("267_ucfs5") +region = Rect2(0, 1582, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_idymv"] +atlas = ExtResource("267_ucfs5") +region = Rect2(175, 1582, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ujl1x"] +atlas = ExtResource("267_ucfs5") +region = Rect2(350, 1582, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_37wgc"] +atlas = ExtResource("267_ucfs5") +region = Rect2(525, 1582, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g5fso"] +atlas = ExtResource("267_ucfs5") +region = Rect2(700, 1582, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4a47d"] +atlas = ExtResource("267_ucfs5") +region = Rect2(875, 1582, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eh3iw"] +atlas = ExtResource("267_ucfs5") +region = Rect2(1050, 1582, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jc54a"] +atlas = ExtResource("267_ucfs5") +region = Rect2(1225, 1582, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xyo6b"] +atlas = ExtResource("267_ucfs5") +region = Rect2(1400, 1582, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gnyks"] +atlas = ExtResource("267_ucfs5") +region = Rect2(0, 1808, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_08lae"] +atlas = ExtResource("267_ucfs5") +region = Rect2(175, 1808, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r710l"] +atlas = ExtResource("267_ucfs5") +region = Rect2(350, 1808, 175, 226) + +[sub_resource type="SpriteFrames" id="SpriteFrames_42alt"] +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("268_4it51") +region = Rect2(134, 0, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_56ojt"] +atlas = ExtResource("268_4it51") +region = Rect2(402, 0, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jwkdt"] +atlas = ExtResource("268_4it51") +region = Rect2(670, 0, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tklqq"] +atlas = ExtResource("268_4it51") +region = Rect2(938, 0, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0kd7d"] +atlas = ExtResource("268_4it51") +region = Rect2(1206, 0, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uoo6g"] +atlas = ExtResource("268_4it51") +region = Rect2(134, 134, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eyk0y"] +atlas = ExtResource("268_4it51") +region = Rect2(402, 134, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0imbq"] +atlas = ExtResource("268_4it51") +region = Rect2(670, 134, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oys1t"] +atlas = ExtResource("268_4it51") +region = Rect2(938, 134, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_06alo"] +atlas = ExtResource("268_4it51") +region = Rect2(1206, 134, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uoxdj"] +atlas = ExtResource("268_4it51") +region = Rect2(134, 268, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rcb13"] +atlas = ExtResource("268_4it51") +region = Rect2(402, 268, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pj86n"] +atlas = ExtResource("268_4it51") +region = Rect2(670, 268, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qpw3f"] +atlas = ExtResource("268_4it51") +region = Rect2(938, 268, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gn6h7"] +atlas = ExtResource("268_4it51") +region = Rect2(1206, 268, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lkh03"] +atlas = ExtResource("268_4it51") +region = Rect2(134, 402, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pdi3o"] +atlas = ExtResource("268_4it51") +region = Rect2(402, 402, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s3ywy"] +atlas = ExtResource("268_4it51") +region = Rect2(670, 402, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6idxu"] +atlas = ExtResource("268_4it51") +region = Rect2(938, 402, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qndi3"] +atlas = ExtResource("268_4it51") +region = Rect2(1206, 402, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y4ahc"] +atlas = ExtResource("268_4it51") +region = Rect2(134, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y5c6p"] +atlas = ExtResource("268_4it51") +region = Rect2(402, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oa8p3"] +atlas = ExtResource("268_4it51") +region = Rect2(670, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rc08e"] +atlas = ExtResource("268_4it51") +region = Rect2(938, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8tw6t"] +atlas = ExtResource("268_4it51") +region = Rect2(1206, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_njvn5"] +atlas = ExtResource("268_4it51") +region = Rect2(134, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cwp0x"] +atlas = ExtResource("268_4it51") +region = Rect2(402, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hch5s"] +atlas = ExtResource("268_4it51") +region = Rect2(670, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vgjuv"] +atlas = ExtResource("268_4it51") +region = Rect2(938, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1502j"] +atlas = ExtResource("268_4it51") +region = Rect2(1206, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5m1ra"] +atlas = ExtResource("268_4it51") +region = Rect2(134, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l0imt"] +atlas = ExtResource("268_4it51") +region = Rect2(402, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ywb2s"] +atlas = ExtResource("268_4it51") +region = Rect2(670, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x5582"] +atlas = ExtResource("268_4it51") +region = Rect2(938, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4uy6l"] +atlas = ExtResource("268_4it51") +region = Rect2(1206, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_50esb"] +atlas = ExtResource("268_4it51") +region = Rect2(134, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xnham"] +atlas = ExtResource("268_4it51") +region = Rect2(402, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j1cf1"] +atlas = ExtResource("268_4it51") +region = Rect2(670, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jvde4"] +atlas = ExtResource("268_4it51") +region = Rect2(938, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dvkgv"] +atlas = ExtResource("268_4it51") +region = Rect2(1206, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3ant7"] +atlas = ExtResource("268_4it51") +region = Rect2(134, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a6f8y"] +atlas = ExtResource("268_4it51") +region = Rect2(402, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ancbh"] +atlas = ExtResource("268_4it51") +region = Rect2(670, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yes2c"] +atlas = ExtResource("268_4it51") +region = Rect2(938, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cs2h2"] +atlas = ExtResource("268_4it51") +region = Rect2(1206, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n2i2d"] +atlas = ExtResource("268_4it51") +region = Rect2(134, 1206, 134, 134) + +[sub_resource type="SpriteFrames" id="SpriteFrames_qrayc"] +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="BoxShape3D" id="BoxShape3D_53wuj"] size = Vector3(1, 0.565, 2) @@ -2045,6 +4732,483 @@ states/Walking/position = Vector2(652, 100) transitions = ["Start", "Idle", SubResource("AnimationNodeStateMachineTransition_oceba"), "Idle", "Walking", SubResource("AnimationNodeStateMachineTransition_yqco6"), "Walking", "Idle", SubResource("AnimationNodeStateMachineTransition_ikyxn"), "Idle", "Primary Attack", SubResource("AnimationNodeStateMachineTransition_2y5m2"), "Walking", "Primary Attack", SubResource("AnimationNodeStateMachineTransition_dyptf"), "Walking", "Secondary Attack", SubResource("AnimationNodeStateMachineTransition_7vwa6"), "Idle", "Secondary Attack", SubResource("AnimationNodeStateMachineTransition_i3uxw"), "Primary Attack", "Idle", SubResource("AnimationNodeStateMachineTransition_ig6n6"), "Secondary Attack", "Idle", SubResource("AnimationNodeStateMachineTransition_8fqp0")] graph_offset = Vector2(-132, 68) +[sub_resource type="Animation" id="Animation_30xy4"] +resource_name = "CurseHit" +length = 1.56667 +tracks/0/type = "value" +tracks/0/imported = false +tracks/0/enabled = true +tracks/0/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Curse Hit Effect:animation") +tracks/0/interp = 1 +tracks/0/loop_wrap = true +tracks/0/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"default"] +} +tracks/1/type = "value" +tracks/1/imported = false +tracks/1/enabled = true +tracks/1/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Curse Hit Effect:frame") +tracks/1/interp = 1 +tracks/1/loop_wrap = true +tracks/1/keys = { +"times": PackedFloat32Array(0, 1.56667), +"transitions": PackedFloat32Array(1, 1), +"update": 0, +"values": [0, 47] +} + +[sub_resource type="Animation" id="Animation_3pm1j"] +resource_name = "EarthHit" +length = 1.46667 +tracks/0/type = "value" +tracks/0/imported = false +tracks/0/enabled = true +tracks/0/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Earth Hit Effect:animation") +tracks/0/interp = 1 +tracks/0/loop_wrap = true +tracks/0/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"EARTH DAMAGE"] +} +tracks/1/type = "value" +tracks/1/imported = false +tracks/1/enabled = true +tracks/1/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Earth Hit Effect:frame") +tracks/1/interp = 1 +tracks/1/loop_wrap = true +tracks/1/keys = { +"times": PackedFloat32Array(0, 1.46667), +"transitions": PackedFloat32Array(1, 1), +"update": 0, +"values": [0, 44] +} + +[sub_resource type="Animation" id="Animation_6shfu"] +resource_name = "Fire Damage" +length = 2.93334 +tracks/0/type = "value" +tracks/0/imported = false +tracks/0/enabled = true +tracks/0/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/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("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/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("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/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)] +} +tracks/3/type = "value" +tracks/3/imported = false +tracks/3/enabled = true +tracks/3/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Rust Activation Effect:animation") +tracks/3/interp = 1 +tracks/3/loop_wrap = true +tracks/3/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"default"] +} +tracks/4/type = "value" +tracks/4/imported = false +tracks/4/enabled = true +tracks/4/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Rust Activation Effect:frame") +tracks/4/interp = 1 +tracks/4/loop_wrap = true +tracks/4/keys = { +"times": PackedFloat32Array(0, 2.93333), +"transitions": PackedFloat32Array(1, 1), +"update": 0, +"values": [88, 88] +} + +[sub_resource type="Animation" id="Animation_f5cjs"] +resource_name = "HolyHit" +length = 0.700003 +tracks/0/type = "value" +tracks/0/imported = false +tracks/0/enabled = true +tracks/0/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Holy Hit Layer Effect:animation") +tracks/0/interp = 1 +tracks/0/loop_wrap = true +tracks/0/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"HOLY"] +} +tracks/1/type = "value" +tracks/1/imported = false +tracks/1/enabled = true +tracks/1/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Holy Hit Layer Effect:frame") +tracks/1/interp = 1 +tracks/1/loop_wrap = true +tracks/1/keys = { +"times": PackedFloat32Array(0, 0.7), +"transitions": PackedFloat32Array(1, 1), +"update": 0, +"values": [0, 21] +} + +[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("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/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("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/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("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/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"] +} +tracks/3/type = "value" +tracks/3/imported = false +tracks/3/enabled = true +tracks/3/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Rust Activation Effect:animation") +tracks/3/interp = 1 +tracks/3/loop_wrap = true +tracks/3/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"default"] +} +tracks/4/type = "value" +tracks/4/imported = false +tracks/4/enabled = true +tracks/4/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Rust Activation Effect:frame") +tracks/4/interp = 1 +tracks/4/loop_wrap = true +tracks/4/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [88] +} +tracks/5/type = "value" +tracks/5/imported = false +tracks/5/enabled = true +tracks/5/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Holy Hit Layer Effect:animation") +tracks/5/interp = 1 +tracks/5/loop_wrap = true +tracks/5/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"HOLY"] +} +tracks/6/type = "value" +tracks/6/imported = false +tracks/6/enabled = true +tracks/6/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Holy Hit Layer Effect:frame") +tracks/6/interp = 1 +tracks/6/loop_wrap = true +tracks/6/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [0] +} +tracks/7/type = "value" +tracks/7/imported = false +tracks/7/enabled = true +tracks/7/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Wind Hit Layer Effect:animation") +tracks/7/interp = 1 +tracks/7/loop_wrap = true +tracks/7/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"default"] +} +tracks/8/type = "value" +tracks/8/imported = false +tracks/8/enabled = true +tracks/8/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Wind Hit Layer Effect:frame") +tracks/8/interp = 1 +tracks/8/loop_wrap = true +tracks/8/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [50] +} +tracks/9/type = "value" +tracks/9/imported = false +tracks/9/enabled = true +tracks/9/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Water Hit Layer 1 Effect:animation") +tracks/9/interp = 1 +tracks/9/loop_wrap = true +tracks/9/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"WATER DAMAGE"] +} +tracks/10/type = "value" +tracks/10/imported = false +tracks/10/enabled = true +tracks/10/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Water Hit Layer 1 Effect:frame") +tracks/10/interp = 1 +tracks/10/loop_wrap = true +tracks/10/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [29] +} +tracks/11/type = "value" +tracks/11/imported = false +tracks/11/enabled = true +tracks/11/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Water Hit Layer 2Effect:animation") +tracks/11/interp = 1 +tracks/11/loop_wrap = true +tracks/11/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"WATER"] +} +tracks/12/type = "value" +tracks/12/imported = false +tracks/12/enabled = true +tracks/12/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Water Hit Layer 2Effect:frame") +tracks/12/interp = 1 +tracks/12/loop_wrap = true +tracks/12/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [51] +} +tracks/13/type = "value" +tracks/13/imported = false +tracks/13/enabled = true +tracks/13/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Curse Hit Effect:animation") +tracks/13/interp = 1 +tracks/13/loop_wrap = true +tracks/13/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"default"] +} +tracks/14/type = "value" +tracks/14/imported = false +tracks/14/enabled = true +tracks/14/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Curse Hit Effect:frame") +tracks/14/interp = 1 +tracks/14/loop_wrap = true +tracks/14/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [47] +} +tracks/15/type = "value" +tracks/15/imported = false +tracks/15/enabled = true +tracks/15/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Earth Hit Effect:animation") +tracks/15/interp = 1 +tracks/15/loop_wrap = true +tracks/15/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"WATER DAMAGE"] +} +tracks/16/type = "value" +tracks/16/imported = false +tracks/16/enabled = true +tracks/16/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Earth Hit Effect:frame") +tracks/16/interp = 1 +tracks/16/loop_wrap = true +tracks/16/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [0] +} + +[sub_resource type="Animation" id="Animation_0tqwp"] +resource_name = "RustActivate" +length = 1.46667 +step = 0.0166667 +tracks/0/type = "value" +tracks/0/imported = false +tracks/0/enabled = true +tracks/0/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Rust Activation Effect:animation") +tracks/0/interp = 1 +tracks/0/loop_wrap = true +tracks/0/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"default"] +} +tracks/1/type = "value" +tracks/1/imported = false +tracks/1/enabled = true +tracks/1/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Rust Activation Effect:frame") +tracks/1/interp = 1 +tracks/1/loop_wrap = true +tracks/1/keys = { +"times": PackedFloat32Array(0, 1.46667), +"transitions": PackedFloat32Array(1, 1), +"update": 0, +"values": [0, 88] +} + +[sub_resource type="Animation" id="Animation_q5dfb"] +resource_name = "WaterHit" +length = 1.7 +tracks/0/type = "value" +tracks/0/imported = false +tracks/0/enabled = true +tracks/0/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Water Hit Layer 1 Effect:animation") +tracks/0/interp = 1 +tracks/0/loop_wrap = true +tracks/0/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"WATER DAMAGE"] +} +tracks/1/type = "value" +tracks/1/imported = false +tracks/1/enabled = true +tracks/1/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Water Hit Layer 1 Effect:frame") +tracks/1/interp = 1 +tracks/1/loop_wrap = true +tracks/1/keys = { +"times": PackedFloat32Array(0, 1), +"transitions": PackedFloat32Array(1, 1), +"update": 0, +"values": [0, 29] +} +tracks/2/type = "value" +tracks/2/imported = false +tracks/2/enabled = true +tracks/2/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Water Hit Layer 2Effect:animation") +tracks/2/interp = 1 +tracks/2/loop_wrap = true +tracks/2/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"WATER"] +} +tracks/3/type = "value" +tracks/3/imported = false +tracks/3/enabled = true +tracks/3/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Water Hit Layer 2Effect:frame") +tracks/3/interp = 1 +tracks/3/loop_wrap = true +tracks/3/keys = { +"times": PackedFloat32Array(0, 1.7), +"transitions": PackedFloat32Array(1, 1), +"update": 0, +"values": [0, 51] +} + +[sub_resource type="Animation" id="Animation_godpv"] +resource_name = "WindHit" +length = 0.833335 +step = 0.0166667 +tracks/0/type = "value" +tracks/0/imported = false +tracks/0/enabled = true +tracks/0/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Wind Hit Layer Effect:animation") +tracks/0/interp = 1 +tracks/0/loop_wrap = true +tracks/0/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"default"] +} +tracks/1/type = "value" +tracks/1/imported = false +tracks/1/enabled = true +tracks/1/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Wind Hit Layer Effect:frame") +tracks/1/interp = 1 +tracks/1/loop_wrap = true +tracks/1/keys = { +"times": PackedFloat32Array(0, 0.833333), +"transitions": PackedFloat32Array(1, 1), +"update": 0, +"values": [0, 50] +} + +[sub_resource type="AnimationLibrary" id="AnimationLibrary_0tqwp"] +_data = { +&"CurseHit": SubResource("Animation_30xy4"), +&"EarthHit": SubResource("Animation_3pm1j"), +&"FireHit": SubResource("Animation_6shfu"), +&"HolyHit": SubResource("Animation_f5cjs"), +&"RESET": SubResource("Animation_cftgd"), +&"RustActivate": SubResource("Animation_0tqwp"), +&"WaterHit": SubResource("Animation_q5dfb"), +&"WindHit": SubResource("Animation_godpv") +} + [node name="EnemyModelView" type="Node3D"] script = ExtResource("1_a8qtn") EnemyLoreInfo = SubResource("Resource_f45wt") @@ -2083,6 +5247,60 @@ scale = Vector2(0.25, 0.25) sprite_frames = SubResource("SpriteFrames_6drt6") animation = &"idle_front" +[node name="VFXSprites" type="Node2D" parent="Sprite3D/SubViewportContainer/SubViewport"] + +[node name="Rust Activation Effect" type="AnimatedSprite2D" parent="Sprite3D/SubViewportContainer/SubViewport/VFXSprites"] +position = Vector2(400, 400) +scale = Vector2(1.54, 1.54) +sprite_frames = SubResource("SpriteFrames_iqmvh") +frame = 88 + +[node name="Holy Hit Layer Effect" type="AnimatedSprite2D" parent="Sprite3D/SubViewportContainer/SubViewport/VFXSprites"] +position = Vector2(400, 400) +scale = Vector2(0.675, 0.675) +sprite_frames = SubResource("SpriteFrames_5vf4o") +animation = &"HOLY" + +[node name="Wind Hit Layer Effect" type="AnimatedSprite2D" parent="Sprite3D/SubViewportContainer/SubViewport/VFXSprites"] +position = Vector2(400, 400) +scale = Vector2(1.445, 1.445) +sprite_frames = SubResource("SpriteFrames_7jpw7") +frame = 50 + +[node name="Flame Hit Effect" type="AnimatedSprite2D" parent="Sprite3D/SubViewportContainer/SubViewport/VFXSprites"] +position = Vector2(400, 400) +scale = Vector2(3.445, 3.445) +sprite_frames = SubResource("SpriteFrames_nigc4") +animation = &"Flame Damage" +frame = 40 + +[node name="Water Hit Layer 1 Effect" type="AnimatedSprite2D" parent="Sprite3D/SubViewportContainer/SubViewport/VFXSprites"] +position = Vector2(400, 400) +scale = Vector2(2.215, 2.215) +sprite_frames = SubResource("SpriteFrames_tk7hg") +animation = &"WATER DAMAGE" +frame = 29 + +[node name="Water Hit Layer 2Effect" type="AnimatedSprite2D" parent="Sprite3D/SubViewportContainer/SubViewport/VFXSprites"] +position = Vector2(400, 400) +scale = Vector2(1.105, 0.895) +sprite_frames = SubResource("SpriteFrames_42alt") +animation = &"WATER" +frame = 51 + +[node name="Curse Hit Effect" type="AnimatedSprite2D" parent="Sprite3D/SubViewportContainer/SubViewport/VFXSprites"] +texture_filter = 1 +position = Vector2(400, 400) +scale = Vector2(2.78, 2.78) +sprite_frames = SubResource("SpriteFrames_qrayc") +frame = 47 + +[node name="Earth Hit Effect" type="AnimatedSprite2D" parent="Sprite3D/SubViewportContainer/SubViewport/VFXSprites"] +position = Vector2(400, 400) +scale = Vector2(2.005, 2.005) +sprite_frames = SubResource("SpriteFrames_tk7hg") +animation = &"WATER DAMAGE" + [node name="Hitbox" type="Area3D" parent="."] unique_name_in_owner = true transform = Transform3D(-1, 0, -8.74228e-08, 0, 1, 0, 8.74228e-08, 0, -1, -0.152949, 1.11387, 0) @@ -2122,3 +5340,51 @@ cast_shadow = 0 modulate = Color(1, 1, 1, 0.591) texture_filter = 0 texture = ExtResource("261_xxvov") + +[node name="VFXAnimations" type="Node" parent="."] + +[node name="FlameHitAnimation" type="AnimationPlayer" parent="VFXAnimations"] +unique_name_in_owner = true +libraries = { +&"": SubResource("AnimationLibrary_0tqwp") +} + +[node name="RustHitAnimation" type="AnimationPlayer" parent="VFXAnimations"] +unique_name_in_owner = true +root_node = NodePath("../../Secondary Animation Player") +libraries = { +&"": SubResource("AnimationLibrary_0tqwp") +} + +[node name="HolyHitAnimation" type="AnimationPlayer" parent="VFXAnimations"] +unique_name_in_owner = true +libraries = { +&"": SubResource("AnimationLibrary_0tqwp") +} + +[node name="WindHitAnimation" type="AnimationPlayer" parent="VFXAnimations"] +unique_name_in_owner = true +libraries = { +&"": SubResource("AnimationLibrary_0tqwp") +} + +[node name="WaterHitAnimation" type="AnimationPlayer" parent="VFXAnimations"] +unique_name_in_owner = true +root_node = NodePath("../../Secondary Animation Player") +libraries = { +&"": SubResource("AnimationLibrary_0tqwp") +} + +[node name="CurseHitAnimation" type="AnimationPlayer" parent="VFXAnimations"] +unique_name_in_owner = true +root_node = NodePath("../../Secondary Animation Player") +libraries = { +&"": SubResource("AnimationLibrary_0tqwp") +} + +[node name="EarthHitAnimation" type="AnimationPlayer" parent="VFXAnimations"] +unique_name_in_owner = true +root_node = NodePath("../../Secondary Animation Player") +libraries = { +&"": SubResource("AnimationLibrary_0tqwp") +} diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/08c. Ambassador (steel)/AmbassadorSteelModelView.tscn b/Zennysoft.Game.Ma/src/enemy/enemy_types/08c. Ambassador (steel)/AmbassadorSteelModelView.tscn index 63fcd6f6..9feb4301 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/08c. Ambassador (steel)/AmbassadorSteelModelView.tscn +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/08c. Ambassador (steel)/AmbassadorSteelModelView.tscn @@ -1,4 +1,4 @@ -[gd_scene load_steps=301 format=3 uid="uid://g8km112r1lqa"] +[gd_scene load_steps=696 format=3 uid="uid://g8km112r1lqa"] [ext_resource type="Script" uid="uid://cvr1qimxpignl" path="res://src/enemy/EnemyModelView2D.cs" id="1_s0qsg"] [ext_resource type="Script" uid="uid://dlsgyx4i1jmp3" path="res://src/enemy/EnemyLoreInfo.cs" id="2_84ebe"] @@ -261,12 +261,20 @@ [ext_resource type="Texture2D" uid="uid://dq238efl5je7g" path="res://src/enemy/enemy_types/08c. Ambassador (steel)/animations/SIDE/Layer 257.png" id="259_lw74j"] [ext_resource type="Texture2D" uid="uid://biaen4nwf0tpg" path="res://src/enemy/enemy_types/08c. Ambassador (steel)/animations/SIDE/Layer 258.png" id="260_3ft46"] [ext_resource type="AudioStream" uid="uid://bgumf0x52xmby" path="res://src/audio/sfx/enemy_ambassador_kick.ogg" id="261_5tr5n"] +[ext_resource type="Texture2D" uid="uid://dq70aipwl1qrg" path="res://src/vfx/Enemy Affected/Rust Particles.png" id="261_ohtvb"] [ext_resource type="PackedScene" uid="uid://3ax3e5uce27d" path="res://src/enemy/TwoAttacksEnemyAnimationTree.tscn" id="262_47uje"] +[ext_resource type="Texture2D" uid="uid://by0ehygy7bq13" path="res://src/vfx/Enemy Affected/Holy Damage.png" id="262_rimgk"] [ext_resource type="AudioStream" uid="uid://ugc77goiwht0" path="res://src/audio/sfx/enemy_ambassador_punch.ogg" id="262_yj1cx"] [ext_resource type="AnimationNodeStateMachine" uid="uid://co7lshemjrro8" path="res://src/enemy/animation_state_machines/IdleStateMachine.tres" id="263_i2vbx"] +[ext_resource type="Texture2D" uid="uid://dqqhu0s51o3n7" path="res://src/vfx/Enemy Affected/Wind Damage.png" id="263_v1276"] [ext_resource type="AnimationNodeStateMachine" uid="uid://cbq8xog50cjjy" path="res://src/enemy/animation_state_machines/PrimaryAttackStateMachine.tres" id="264_5tr5n"] +[ext_resource type="Texture2D" uid="uid://dh6mk1c35nymx" path="res://src/vfx/Enemy Affected/firedamage.png" id="264_pjwch"] [ext_resource type="AnimationNodeStateMachine" uid="uid://clybvwx3itfeo" path="res://src/enemy/animation_state_machines/SecondaryAttackStateMachine.tres" id="265_yj1cx"] +[ext_resource type="Texture2D" uid="uid://7a42df2ijrmv" path="res://src/vfx/Enemy Affected/earth damage.png" id="265_yr8nf"] +[ext_resource type="Texture2D" uid="uid://cot4wx5fg5pfs" path="res://src/vfx/Enemy Affected/water_hit_layer2.png" id="266_ibxij"] [ext_resource type="AnimationNodeStateMachine" uid="uid://cy2ngl55c0rws" path="res://src/enemy/animation_state_machines/WalkingStateMachine.tres" id="266_jq47d"] +[ext_resource type="Texture2D" uid="uid://cbei66g134fgv" path="res://src/vfx/Enemy Affected/water layer 1.png" id="267_12oif"] +[ext_resource type="Texture2D" uid="uid://bp6npqoco5fl3" path="res://src/vfx/Enemy Affected/curse_damage.png" id="268_ly0wx"] [ext_resource type="Texture2D" uid="uid://dafpnwkwcukp4" path="res://src/vfx/shadow_test_1.png" id="268_yj1cx"] [sub_resource type="Resource" id="Resource_f45wt"] @@ -1132,6 +1140,2685 @@ animations = [{ "speed": 12.0 }] +[sub_resource type="AtlasTexture" id="AtlasTexture_4o5f2"] +atlas = ExtResource("261_ohtvb") +region = Rect2(1206, 402, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r8ggx"] +atlas = ExtResource("261_ohtvb") +region = Rect2(1340, 402, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xafpd"] +atlas = ExtResource("261_ohtvb") +region = Rect2(1474, 402, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_73dpc"] +atlas = ExtResource("261_ohtvb") +region = Rect2(0, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vppxt"] +atlas = ExtResource("261_ohtvb") +region = Rect2(134, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nk562"] +atlas = ExtResource("261_ohtvb") +region = Rect2(268, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dwu2q"] +atlas = ExtResource("261_ohtvb") +region = Rect2(402, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w3p3j"] +atlas = ExtResource("261_ohtvb") +region = Rect2(536, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ig0ip"] +atlas = ExtResource("261_ohtvb") +region = Rect2(670, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r4enw"] +atlas = ExtResource("261_ohtvb") +region = Rect2(804, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uy6hg"] +atlas = ExtResource("261_ohtvb") +region = Rect2(938, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_85jwg"] +atlas = ExtResource("261_ohtvb") +region = Rect2(1072, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ln7dl"] +atlas = ExtResource("261_ohtvb") +region = Rect2(1206, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3vvgp"] +atlas = ExtResource("261_ohtvb") +region = Rect2(1340, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_01f7m"] +atlas = ExtResource("261_ohtvb") +region = Rect2(1474, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pp21u"] +atlas = ExtResource("261_ohtvb") +region = Rect2(0, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1aldj"] +atlas = ExtResource("261_ohtvb") +region = Rect2(134, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xv5pw"] +atlas = ExtResource("261_ohtvb") +region = Rect2(268, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_14lh3"] +atlas = ExtResource("261_ohtvb") +region = Rect2(402, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xxid6"] +atlas = ExtResource("261_ohtvb") +region = Rect2(536, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y6yeo"] +atlas = ExtResource("261_ohtvb") +region = Rect2(670, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2aohu"] +atlas = ExtResource("261_ohtvb") +region = Rect2(804, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ebvc7"] +atlas = ExtResource("261_ohtvb") +region = Rect2(938, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yd50d"] +atlas = ExtResource("261_ohtvb") +region = Rect2(1072, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yimdu"] +atlas = ExtResource("261_ohtvb") +region = Rect2(1206, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dync1"] +atlas = ExtResource("261_ohtvb") +region = Rect2(1340, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jsjdk"] +atlas = ExtResource("261_ohtvb") +region = Rect2(1474, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ueih5"] +atlas = ExtResource("261_ohtvb") +region = Rect2(0, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k0hut"] +atlas = ExtResource("261_ohtvb") +region = Rect2(134, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kybji"] +atlas = ExtResource("261_ohtvb") +region = Rect2(268, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u5vpt"] +atlas = ExtResource("261_ohtvb") +region = Rect2(402, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wko4t"] +atlas = ExtResource("261_ohtvb") +region = Rect2(536, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ru86o"] +atlas = ExtResource("261_ohtvb") +region = Rect2(670, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uybbj"] +atlas = ExtResource("261_ohtvb") +region = Rect2(804, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s6pp8"] +atlas = ExtResource("261_ohtvb") +region = Rect2(938, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a7pls"] +atlas = ExtResource("261_ohtvb") +region = Rect2(1072, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_30y71"] +atlas = ExtResource("261_ohtvb") +region = Rect2(1206, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dwl1c"] +atlas = ExtResource("261_ohtvb") +region = Rect2(1340, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_01jp4"] +atlas = ExtResource("261_ohtvb") +region = Rect2(1474, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b8ulh"] +atlas = ExtResource("261_ohtvb") +region = Rect2(0, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3walv"] +atlas = ExtResource("261_ohtvb") +region = Rect2(134, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_exyoj"] +atlas = ExtResource("261_ohtvb") +region = Rect2(268, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kus54"] +atlas = ExtResource("261_ohtvb") +region = Rect2(402, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_meauc"] +atlas = ExtResource("261_ohtvb") +region = Rect2(536, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7v7xr"] +atlas = ExtResource("261_ohtvb") +region = Rect2(670, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4ktea"] +atlas = ExtResource("261_ohtvb") +region = Rect2(804, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l8oa1"] +atlas = ExtResource("261_ohtvb") +region = Rect2(938, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3eopa"] +atlas = ExtResource("261_ohtvb") +region = Rect2(1072, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ip8hv"] +atlas = ExtResource("261_ohtvb") +region = Rect2(1206, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_42rbq"] +atlas = ExtResource("261_ohtvb") +region = Rect2(1340, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tu0vu"] +atlas = ExtResource("261_ohtvb") +region = Rect2(1474, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gbh7l"] +atlas = ExtResource("261_ohtvb") +region = Rect2(0, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_733jx"] +atlas = ExtResource("261_ohtvb") +region = Rect2(134, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sfa2q"] +atlas = ExtResource("261_ohtvb") +region = Rect2(268, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o0nvo"] +atlas = ExtResource("261_ohtvb") +region = Rect2(402, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1mv1w"] +atlas = ExtResource("261_ohtvb") +region = Rect2(536, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yw8ob"] +atlas = ExtResource("261_ohtvb") +region = Rect2(670, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ptkbd"] +atlas = ExtResource("261_ohtvb") +region = Rect2(804, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2uoiw"] +atlas = ExtResource("261_ohtvb") +region = Rect2(938, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4m684"] +atlas = ExtResource("261_ohtvb") +region = Rect2(1072, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_st6fj"] +atlas = ExtResource("261_ohtvb") +region = Rect2(1206, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1wana"] +atlas = ExtResource("261_ohtvb") +region = Rect2(1340, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ati4e"] +atlas = ExtResource("261_ohtvb") +region = Rect2(1474, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0w31q"] +atlas = ExtResource("261_ohtvb") +region = Rect2(0, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uxu33"] +atlas = ExtResource("261_ohtvb") +region = Rect2(134, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2ulnd"] +atlas = ExtResource("261_ohtvb") +region = Rect2(268, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ddsrn"] +atlas = ExtResource("261_ohtvb") +region = Rect2(402, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n1e5w"] +atlas = ExtResource("261_ohtvb") +region = Rect2(536, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f4aq5"] +atlas = ExtResource("261_ohtvb") +region = Rect2(670, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_er00h"] +atlas = ExtResource("261_ohtvb") +region = Rect2(804, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mlf5c"] +atlas = ExtResource("261_ohtvb") +region = Rect2(938, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c362w"] +atlas = ExtResource("261_ohtvb") +region = Rect2(1072, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_30wb7"] +atlas = ExtResource("261_ohtvb") +region = Rect2(1206, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_stb0b"] +atlas = ExtResource("261_ohtvb") +region = Rect2(1340, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a64qf"] +atlas = ExtResource("261_ohtvb") +region = Rect2(1474, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_52bkw"] +atlas = ExtResource("261_ohtvb") +region = Rect2(0, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y0yvc"] +atlas = ExtResource("261_ohtvb") +region = Rect2(134, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5h2xe"] +atlas = ExtResource("261_ohtvb") +region = Rect2(268, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6hh33"] +atlas = ExtResource("261_ohtvb") +region = Rect2(402, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kmk3m"] +atlas = ExtResource("261_ohtvb") +region = Rect2(536, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rbtmh"] +atlas = ExtResource("261_ohtvb") +region = Rect2(670, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bit6n"] +atlas = ExtResource("261_ohtvb") +region = Rect2(804, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_458hw"] +atlas = ExtResource("261_ohtvb") +region = Rect2(938, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4x2ea"] +atlas = ExtResource("261_ohtvb") +region = Rect2(1072, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bcljt"] +atlas = ExtResource("261_ohtvb") +region = Rect2(1206, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p6e34"] +atlas = ExtResource("261_ohtvb") +region = Rect2(1340, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2yfi0"] +atlas = ExtResource("261_ohtvb") +region = Rect2(1474, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bhoxy"] +atlas = ExtResource("261_ohtvb") +region = Rect2(0, 1474, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_41wyx"] +atlas = ExtResource("261_ohtvb") +region = Rect2(134, 1474, 134, 134) + +[sub_resource type="SpriteFrames" id="SpriteFrames_g803a"] +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("262_rimgk") +region = Rect2(1024, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pvn2l"] +atlas = ExtResource("262_rimgk") +region = Rect2(1536, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sctov"] +atlas = ExtResource("262_rimgk") +region = Rect2(2048, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_46bwa"] +atlas = ExtResource("262_rimgk") +region = Rect2(2560, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o42jv"] +atlas = ExtResource("262_rimgk") +region = Rect2(3072, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5dqsk"] +atlas = ExtResource("262_rimgk") +region = Rect2(3584, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_35l4k"] +atlas = ExtResource("262_rimgk") +region = Rect2(4096, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x0jfm"] +atlas = ExtResource("262_rimgk") +region = Rect2(4608, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fk16r"] +atlas = ExtResource("262_rimgk") +region = Rect2(5120, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ewtdr"] +atlas = ExtResource("262_rimgk") +region = Rect2(5632, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bul51"] +atlas = ExtResource("262_rimgk") +region = Rect2(6144, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vbobf"] +atlas = ExtResource("262_rimgk") +region = Rect2(6656, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_itqlk"] +atlas = ExtResource("262_rimgk") +region = Rect2(7168, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_41jjh"] +atlas = ExtResource("262_rimgk") +region = Rect2(7680, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kol03"] +atlas = ExtResource("262_rimgk") +region = Rect2(0, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ynyxy"] +atlas = ExtResource("262_rimgk") +region = Rect2(512, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ngcxk"] +atlas = ExtResource("262_rimgk") +region = Rect2(1024, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ba8fa"] +atlas = ExtResource("262_rimgk") +region = Rect2(1536, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ngitf"] +atlas = ExtResource("262_rimgk") +region = Rect2(2048, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_boovf"] +atlas = ExtResource("262_rimgk") +region = Rect2(2560, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jwkhr"] +atlas = ExtResource("262_rimgk") +region = Rect2(3072, 512, 512, 512) + +[sub_resource type="SpriteFrames" id="SpriteFrames_8jdnb"] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": null +}, { +"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("263_v1276") +region = Rect2(0, 0, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3jmy8"] +atlas = ExtResource("263_v1276") +region = Rect2(266, 0, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t76hk"] +atlas = ExtResource("263_v1276") +region = Rect2(532, 0, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_06gff"] +atlas = ExtResource("263_v1276") +region = Rect2(798, 0, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ssjgs"] +atlas = ExtResource("263_v1276") +region = Rect2(1064, 0, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_53u6k"] +atlas = ExtResource("263_v1276") +region = Rect2(0, 131, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_inmu7"] +atlas = ExtResource("263_v1276") +region = Rect2(266, 131, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bmkvg"] +atlas = ExtResource("263_v1276") +region = Rect2(532, 131, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oqdmj"] +atlas = ExtResource("263_v1276") +region = Rect2(798, 131, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bnn41"] +atlas = ExtResource("263_v1276") +region = Rect2(1064, 131, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p6hmn"] +atlas = ExtResource("263_v1276") +region = Rect2(0, 262, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s0ybe"] +atlas = ExtResource("263_v1276") +region = Rect2(266, 262, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y2273"] +atlas = ExtResource("263_v1276") +region = Rect2(532, 262, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2i87r"] +atlas = ExtResource("263_v1276") +region = Rect2(798, 262, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4q8o2"] +atlas = ExtResource("263_v1276") +region = Rect2(1064, 262, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_esxmc"] +atlas = ExtResource("263_v1276") +region = Rect2(0, 393, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rdsur"] +atlas = ExtResource("263_v1276") +region = Rect2(266, 393, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b2qt4"] +atlas = ExtResource("263_v1276") +region = Rect2(532, 393, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xamrr"] +atlas = ExtResource("263_v1276") +region = Rect2(798, 393, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0prqh"] +atlas = ExtResource("263_v1276") +region = Rect2(1064, 393, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dh1oc"] +atlas = ExtResource("263_v1276") +region = Rect2(0, 524, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ybb1w"] +atlas = ExtResource("263_v1276") +region = Rect2(266, 524, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2nkua"] +atlas = ExtResource("263_v1276") +region = Rect2(532, 524, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2gocr"] +atlas = ExtResource("263_v1276") +region = Rect2(798, 524, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_acsou"] +atlas = ExtResource("263_v1276") +region = Rect2(1064, 524, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yflou"] +atlas = ExtResource("263_v1276") +region = Rect2(0, 655, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_env3c"] +atlas = ExtResource("263_v1276") +region = Rect2(266, 655, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_74f4l"] +atlas = ExtResource("263_v1276") +region = Rect2(532, 655, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cbaq7"] +atlas = ExtResource("263_v1276") +region = Rect2(798, 655, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bc4hh"] +atlas = ExtResource("263_v1276") +region = Rect2(1064, 655, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5m27y"] +atlas = ExtResource("263_v1276") +region = Rect2(0, 786, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c2vig"] +atlas = ExtResource("263_v1276") +region = Rect2(266, 786, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h8qbh"] +atlas = ExtResource("263_v1276") +region = Rect2(532, 786, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vj2ia"] +atlas = ExtResource("263_v1276") +region = Rect2(798, 786, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h0bv3"] +atlas = ExtResource("263_v1276") +region = Rect2(1064, 786, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3xb07"] +atlas = ExtResource("263_v1276") +region = Rect2(0, 917, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p845e"] +atlas = ExtResource("263_v1276") +region = Rect2(266, 917, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nm575"] +atlas = ExtResource("263_v1276") +region = Rect2(532, 917, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8wvvt"] +atlas = ExtResource("263_v1276") +region = Rect2(798, 917, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2l45l"] +atlas = ExtResource("263_v1276") +region = Rect2(1064, 917, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0c6u7"] +atlas = ExtResource("263_v1276") +region = Rect2(0, 1048, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bo1qh"] +atlas = ExtResource("263_v1276") +region = Rect2(266, 1048, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4cq22"] +atlas = ExtResource("263_v1276") +region = Rect2(532, 1048, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d6auk"] +atlas = ExtResource("263_v1276") +region = Rect2(798, 1048, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4bvg3"] +atlas = ExtResource("263_v1276") +region = Rect2(1064, 1048, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rps4p"] +atlas = ExtResource("263_v1276") +region = Rect2(0, 1179, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qdy2n"] +atlas = ExtResource("263_v1276") +region = Rect2(266, 1179, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a63dt"] +atlas = ExtResource("263_v1276") +region = Rect2(532, 1179, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3alol"] +atlas = ExtResource("263_v1276") +region = Rect2(798, 1179, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w5y4o"] +atlas = ExtResource("263_v1276") +region = Rect2(1064, 1179, 133, 131) + +[sub_resource type="SpriteFrames" id="SpriteFrames_t2ic6"] +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("264_pjwch") +region = Rect2(200, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w5yum"] +atlas = ExtResource("264_pjwch") +region = Rect2(600, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xagiq"] +atlas = ExtResource("264_pjwch") +region = Rect2(1000, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iu4h2"] +atlas = ExtResource("264_pjwch") +region = Rect2(100, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t6kmk"] +atlas = ExtResource("264_pjwch") +region = Rect2(500, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c3c22"] +atlas = ExtResource("264_pjwch") +region = Rect2(900, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_udm06"] +atlas = ExtResource("264_pjwch") +region = Rect2(0, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_31shi"] +atlas = ExtResource("264_pjwch") +region = Rect2(400, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i6wsf"] +atlas = ExtResource("264_pjwch") +region = Rect2(800, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jhluk"] +atlas = ExtResource("264_pjwch") +region = Rect2(1200, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_exq74"] +atlas = ExtResource("264_pjwch") +region = Rect2(300, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k7tc1"] +atlas = ExtResource("264_pjwch") +region = Rect2(700, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_456io"] +atlas = ExtResource("264_pjwch") +region = Rect2(1100, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2h7ac"] +atlas = ExtResource("264_pjwch") +region = Rect2(200, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dy5lo"] +atlas = ExtResource("264_pjwch") +region = Rect2(500, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_biyyn"] +atlas = ExtResource("264_pjwch") +region = Rect2(1000, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_flqm1"] +atlas = ExtResource("264_pjwch") +region = Rect2(100, 500, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xttn8"] +atlas = ExtResource("264_pjwch") +region = Rect2(500, 500, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_85rsb"] +atlas = ExtResource("264_pjwch") +region = Rect2(900, 500, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oxqm1"] +atlas = ExtResource("264_pjwch") +region = Rect2(0, 600, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dphle"] +atlas = ExtResource("264_pjwch") +region = Rect2(400, 600, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_48bul"] +atlas = ExtResource("264_pjwch") +region = Rect2(800, 600, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2d6tt"] +atlas = ExtResource("264_pjwch") +region = Rect2(1200, 600, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ty41g"] +atlas = ExtResource("264_pjwch") +region = Rect2(300, 700, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c5uyp"] +atlas = ExtResource("264_pjwch") +region = Rect2(700, 700, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tf4dl"] +atlas = ExtResource("264_pjwch") +region = Rect2(1100, 700, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cvdlu"] +atlas = ExtResource("264_pjwch") +region = Rect2(200, 800, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f25l1"] +atlas = ExtResource("264_pjwch") +region = Rect2(600, 800, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v033q"] +atlas = ExtResource("264_pjwch") +region = Rect2(1000, 800, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xgfkn"] +atlas = ExtResource("264_pjwch") +region = Rect2(100, 900, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_duxfd"] +atlas = ExtResource("264_pjwch") +region = Rect2(500, 900, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5uvt0"] +atlas = ExtResource("264_pjwch") +region = Rect2(900, 900, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7d05g"] +atlas = ExtResource("264_pjwch") +region = Rect2(0, 1000, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x0ube"] +atlas = ExtResource("264_pjwch") +region = Rect2(400, 1000, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_15y07"] +atlas = ExtResource("264_pjwch") +region = Rect2(800, 1000, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_de0po"] +atlas = ExtResource("264_pjwch") +region = Rect2(1200, 1000, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b3rtc"] +atlas = ExtResource("264_pjwch") +region = Rect2(300, 1100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q32lt"] +atlas = ExtResource("264_pjwch") +region = Rect2(700, 1100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_88hqh"] +atlas = ExtResource("264_pjwch") +region = Rect2(1100, 1100, 100, 100) + +[sub_resource type="SpriteFrames" id="SpriteFrames_ovjvy"] +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("265_yr8nf") +region = Rect2(0, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0rj30"] +atlas = ExtResource("265_yr8nf") +region = Rect2(200, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ug1a1"] +atlas = ExtResource("265_yr8nf") +region = Rect2(400, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8eees"] +atlas = ExtResource("265_yr8nf") +region = Rect2(600, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k2i7i"] +atlas = ExtResource("265_yr8nf") +region = Rect2(800, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4wwo5"] +atlas = ExtResource("265_yr8nf") +region = Rect2(0, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_418m2"] +atlas = ExtResource("265_yr8nf") +region = Rect2(200, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6g5qj"] +atlas = ExtResource("265_yr8nf") +region = Rect2(400, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k3sey"] +atlas = ExtResource("265_yr8nf") +region = Rect2(600, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ms40v"] +atlas = ExtResource("265_yr8nf") +region = Rect2(800, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2tfej"] +atlas = ExtResource("265_yr8nf") +region = Rect2(0, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_woj7f"] +atlas = ExtResource("265_yr8nf") +region = Rect2(200, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kg861"] +atlas = ExtResource("265_yr8nf") +region = Rect2(400, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jtxxp"] +atlas = ExtResource("265_yr8nf") +region = Rect2(600, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sxooa"] +atlas = ExtResource("265_yr8nf") +region = Rect2(800, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hkj2y"] +atlas = ExtResource("265_yr8nf") +region = Rect2(0, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wm40h"] +atlas = ExtResource("265_yr8nf") +region = Rect2(200, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u66v8"] +atlas = ExtResource("265_yr8nf") +region = Rect2(400, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6ip85"] +atlas = ExtResource("265_yr8nf") +region = Rect2(600, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qad2i"] +atlas = ExtResource("265_yr8nf") +region = Rect2(800, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nifqu"] +atlas = ExtResource("265_yr8nf") +region = Rect2(0, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_goocc"] +atlas = ExtResource("265_yr8nf") +region = Rect2(200, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l78ua"] +atlas = ExtResource("265_yr8nf") +region = Rect2(400, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ybqlc"] +atlas = ExtResource("265_yr8nf") +region = Rect2(600, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d0lry"] +atlas = ExtResource("265_yr8nf") +region = Rect2(800, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ccb2v"] +atlas = ExtResource("265_yr8nf") +region = Rect2(0, 500, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dcp7h"] +atlas = ExtResource("265_yr8nf") +region = Rect2(200, 500, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3kud6"] +atlas = ExtResource("265_yr8nf") +region = Rect2(400, 500, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0tvc2"] +atlas = ExtResource("265_yr8nf") +region = Rect2(600, 500, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g5aky"] +atlas = ExtResource("265_yr8nf") +region = Rect2(800, 500, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nyc7u"] +atlas = ExtResource("265_yr8nf") +region = Rect2(0, 600, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q1yeq"] +atlas = ExtResource("265_yr8nf") +region = Rect2(200, 600, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pupfb"] +atlas = ExtResource("265_yr8nf") +region = Rect2(400, 600, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gfe8c"] +atlas = ExtResource("265_yr8nf") +region = Rect2(600, 600, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_76bl1"] +atlas = ExtResource("265_yr8nf") +region = Rect2(800, 600, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u7frn"] +atlas = ExtResource("265_yr8nf") +region = Rect2(0, 700, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ls3an"] +atlas = ExtResource("265_yr8nf") +region = Rect2(200, 700, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4l6e0"] +atlas = ExtResource("265_yr8nf") +region = Rect2(400, 700, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cvlbl"] +atlas = ExtResource("265_yr8nf") +region = Rect2(600, 700, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jkvpv"] +atlas = ExtResource("265_yr8nf") +region = Rect2(800, 700, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lpp7o"] +atlas = ExtResource("265_yr8nf") +region = Rect2(0, 800, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v8igx"] +atlas = ExtResource("265_yr8nf") +region = Rect2(200, 800, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mmm0q"] +atlas = ExtResource("265_yr8nf") +region = Rect2(400, 800, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5ukt7"] +atlas = ExtResource("265_yr8nf") +region = Rect2(600, 800, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0pkd7"] +atlas = ExtResource("265_yr8nf") +region = Rect2(800, 800, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n85t7"] +atlas = ExtResource("266_ibxij") +region = Rect2(0, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nb4v4"] +atlas = ExtResource("266_ibxij") +region = Rect2(100, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cl00x"] +atlas = ExtResource("266_ibxij") +region = Rect2(200, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ufcsw"] +atlas = ExtResource("266_ibxij") +region = Rect2(300, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aoisp"] +atlas = ExtResource("266_ibxij") +region = Rect2(400, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3rkdy"] +atlas = ExtResource("266_ibxij") +region = Rect2(500, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o0dym"] +atlas = ExtResource("266_ibxij") +region = Rect2(0, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vxihx"] +atlas = ExtResource("266_ibxij") +region = Rect2(100, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ofpmt"] +atlas = ExtResource("266_ibxij") +region = Rect2(200, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ux0ir"] +atlas = ExtResource("266_ibxij") +region = Rect2(300, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8dgch"] +atlas = ExtResource("266_ibxij") +region = Rect2(400, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7ixin"] +atlas = ExtResource("266_ibxij") +region = Rect2(500, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2kea0"] +atlas = ExtResource("266_ibxij") +region = Rect2(0, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kgnps"] +atlas = ExtResource("266_ibxij") +region = Rect2(100, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g2wgu"] +atlas = ExtResource("266_ibxij") +region = Rect2(200, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0oosk"] +atlas = ExtResource("266_ibxij") +region = Rect2(300, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_80k2g"] +atlas = ExtResource("266_ibxij") +region = Rect2(400, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fskx7"] +atlas = ExtResource("266_ibxij") +region = Rect2(500, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_no3pe"] +atlas = ExtResource("266_ibxij") +region = Rect2(0, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_15fnm"] +atlas = ExtResource("266_ibxij") +region = Rect2(100, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r5e73"] +atlas = ExtResource("266_ibxij") +region = Rect2(200, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2im8t"] +atlas = ExtResource("266_ibxij") +region = Rect2(300, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mxl2m"] +atlas = ExtResource("266_ibxij") +region = Rect2(400, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6dwuh"] +atlas = ExtResource("266_ibxij") +region = Rect2(500, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_53c1f"] +atlas = ExtResource("266_ibxij") +region = Rect2(0, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mmbhy"] +atlas = ExtResource("266_ibxij") +region = Rect2(100, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uwbh3"] +atlas = ExtResource("266_ibxij") +region = Rect2(200, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j6v2y"] +atlas = ExtResource("266_ibxij") +region = Rect2(300, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h5xbu"] +atlas = ExtResource("266_ibxij") +region = Rect2(400, 400, 100, 100) + +[sub_resource type="SpriteFrames" id="SpriteFrames_wm1r6"] +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("267_12oif") +region = Rect2(875, 452, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ekrqp"] +atlas = ExtResource("267_12oif") +region = Rect2(1050, 452, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dvnic"] +atlas = ExtResource("267_12oif") +region = Rect2(1225, 452, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rxdv7"] +atlas = ExtResource("267_12oif") +region = Rect2(1400, 452, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0pvcp"] +atlas = ExtResource("267_12oif") +region = Rect2(0, 678, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yga3t"] +atlas = ExtResource("267_12oif") +region = Rect2(175, 678, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c6qrx"] +atlas = ExtResource("267_12oif") +region = Rect2(350, 678, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fkryw"] +atlas = ExtResource("267_12oif") +region = Rect2(525, 678, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jt7jg"] +atlas = ExtResource("267_12oif") +region = Rect2(700, 678, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6eyjl"] +atlas = ExtResource("267_12oif") +region = Rect2(875, 678, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tsolq"] +atlas = ExtResource("267_12oif") +region = Rect2(1050, 678, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_opqal"] +atlas = ExtResource("267_12oif") +region = Rect2(1225, 678, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kia47"] +atlas = ExtResource("267_12oif") +region = Rect2(1400, 678, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6aolf"] +atlas = ExtResource("267_12oif") +region = Rect2(0, 904, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g6jok"] +atlas = ExtResource("267_12oif") +region = Rect2(175, 904, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_swdkn"] +atlas = ExtResource("267_12oif") +region = Rect2(350, 904, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_edlre"] +atlas = ExtResource("267_12oif") +region = Rect2(525, 904, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gbj32"] +atlas = ExtResource("267_12oif") +region = Rect2(700, 904, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bstol"] +atlas = ExtResource("267_12oif") +region = Rect2(875, 904, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_57vey"] +atlas = ExtResource("267_12oif") +region = Rect2(1050, 904, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_31ikn"] +atlas = ExtResource("267_12oif") +region = Rect2(1225, 904, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e1yxa"] +atlas = ExtResource("267_12oif") +region = Rect2(1400, 904, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7a7ks"] +atlas = ExtResource("267_12oif") +region = Rect2(0, 1130, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p2hq6"] +atlas = ExtResource("267_12oif") +region = Rect2(175, 1130, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k3fbj"] +atlas = ExtResource("267_12oif") +region = Rect2(350, 1130, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ylav8"] +atlas = ExtResource("267_12oif") +region = Rect2(525, 1130, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xhgk2"] +atlas = ExtResource("267_12oif") +region = Rect2(700, 1130, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_diucy"] +atlas = ExtResource("267_12oif") +region = Rect2(875, 1130, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8gw5n"] +atlas = ExtResource("267_12oif") +region = Rect2(1050, 1130, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hc5wr"] +atlas = ExtResource("267_12oif") +region = Rect2(1225, 1130, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fugdi"] +atlas = ExtResource("267_12oif") +region = Rect2(1400, 1130, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h222i"] +atlas = ExtResource("267_12oif") +region = Rect2(0, 1356, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7qa4p"] +atlas = ExtResource("267_12oif") +region = Rect2(175, 1356, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jbavk"] +atlas = ExtResource("267_12oif") +region = Rect2(350, 1356, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ncorq"] +atlas = ExtResource("267_12oif") +region = Rect2(525, 1356, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mdvft"] +atlas = ExtResource("267_12oif") +region = Rect2(700, 1356, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ljrf5"] +atlas = ExtResource("267_12oif") +region = Rect2(875, 1356, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r7ll6"] +atlas = ExtResource("267_12oif") +region = Rect2(1050, 1356, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6vssn"] +atlas = ExtResource("267_12oif") +region = Rect2(1225, 1356, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4lr8r"] +atlas = ExtResource("267_12oif") +region = Rect2(1400, 1356, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xp4kq"] +atlas = ExtResource("267_12oif") +region = Rect2(0, 1582, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_idymv"] +atlas = ExtResource("267_12oif") +region = Rect2(175, 1582, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ujl1x"] +atlas = ExtResource("267_12oif") +region = Rect2(350, 1582, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_37wgc"] +atlas = ExtResource("267_12oif") +region = Rect2(525, 1582, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g5fso"] +atlas = ExtResource("267_12oif") +region = Rect2(700, 1582, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4a47d"] +atlas = ExtResource("267_12oif") +region = Rect2(875, 1582, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eh3iw"] +atlas = ExtResource("267_12oif") +region = Rect2(1050, 1582, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jc54a"] +atlas = ExtResource("267_12oif") +region = Rect2(1225, 1582, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xyo6b"] +atlas = ExtResource("267_12oif") +region = Rect2(1400, 1582, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gnyks"] +atlas = ExtResource("267_12oif") +region = Rect2(0, 1808, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_08lae"] +atlas = ExtResource("267_12oif") +region = Rect2(175, 1808, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r710l"] +atlas = ExtResource("267_12oif") +region = Rect2(350, 1808, 175, 226) + +[sub_resource type="SpriteFrames" id="SpriteFrames_sq74q"] +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("268_ly0wx") +region = Rect2(134, 0, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_56ojt"] +atlas = ExtResource("268_ly0wx") +region = Rect2(402, 0, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jwkdt"] +atlas = ExtResource("268_ly0wx") +region = Rect2(670, 0, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tklqq"] +atlas = ExtResource("268_ly0wx") +region = Rect2(938, 0, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0kd7d"] +atlas = ExtResource("268_ly0wx") +region = Rect2(1206, 0, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uoo6g"] +atlas = ExtResource("268_ly0wx") +region = Rect2(134, 134, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eyk0y"] +atlas = ExtResource("268_ly0wx") +region = Rect2(402, 134, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0imbq"] +atlas = ExtResource("268_ly0wx") +region = Rect2(670, 134, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oys1t"] +atlas = ExtResource("268_ly0wx") +region = Rect2(938, 134, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_06alo"] +atlas = ExtResource("268_ly0wx") +region = Rect2(1206, 134, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uoxdj"] +atlas = ExtResource("268_ly0wx") +region = Rect2(134, 268, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rcb13"] +atlas = ExtResource("268_ly0wx") +region = Rect2(402, 268, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pj86n"] +atlas = ExtResource("268_ly0wx") +region = Rect2(670, 268, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qpw3f"] +atlas = ExtResource("268_ly0wx") +region = Rect2(938, 268, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gn6h7"] +atlas = ExtResource("268_ly0wx") +region = Rect2(1206, 268, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lkh03"] +atlas = ExtResource("268_ly0wx") +region = Rect2(134, 402, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pdi3o"] +atlas = ExtResource("268_ly0wx") +region = Rect2(402, 402, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s3ywy"] +atlas = ExtResource("268_ly0wx") +region = Rect2(670, 402, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6idxu"] +atlas = ExtResource("268_ly0wx") +region = Rect2(938, 402, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qndi3"] +atlas = ExtResource("268_ly0wx") +region = Rect2(1206, 402, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y4ahc"] +atlas = ExtResource("268_ly0wx") +region = Rect2(134, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y5c6p"] +atlas = ExtResource("268_ly0wx") +region = Rect2(402, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oa8p3"] +atlas = ExtResource("268_ly0wx") +region = Rect2(670, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rc08e"] +atlas = ExtResource("268_ly0wx") +region = Rect2(938, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8tw6t"] +atlas = ExtResource("268_ly0wx") +region = Rect2(1206, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_njvn5"] +atlas = ExtResource("268_ly0wx") +region = Rect2(134, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cwp0x"] +atlas = ExtResource("268_ly0wx") +region = Rect2(402, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hch5s"] +atlas = ExtResource("268_ly0wx") +region = Rect2(670, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vgjuv"] +atlas = ExtResource("268_ly0wx") +region = Rect2(938, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1502j"] +atlas = ExtResource("268_ly0wx") +region = Rect2(1206, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5m1ra"] +atlas = ExtResource("268_ly0wx") +region = Rect2(134, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l0imt"] +atlas = ExtResource("268_ly0wx") +region = Rect2(402, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ywb2s"] +atlas = ExtResource("268_ly0wx") +region = Rect2(670, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x5582"] +atlas = ExtResource("268_ly0wx") +region = Rect2(938, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4uy6l"] +atlas = ExtResource("268_ly0wx") +region = Rect2(1206, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_50esb"] +atlas = ExtResource("268_ly0wx") +region = Rect2(134, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xnham"] +atlas = ExtResource("268_ly0wx") +region = Rect2(402, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j1cf1"] +atlas = ExtResource("268_ly0wx") +region = Rect2(670, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jvde4"] +atlas = ExtResource("268_ly0wx") +region = Rect2(938, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dvkgv"] +atlas = ExtResource("268_ly0wx") +region = Rect2(1206, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3ant7"] +atlas = ExtResource("268_ly0wx") +region = Rect2(134, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a6f8y"] +atlas = ExtResource("268_ly0wx") +region = Rect2(402, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ancbh"] +atlas = ExtResource("268_ly0wx") +region = Rect2(670, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yes2c"] +atlas = ExtResource("268_ly0wx") +region = Rect2(938, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cs2h2"] +atlas = ExtResource("268_ly0wx") +region = Rect2(1206, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n2i2d"] +atlas = ExtResource("268_ly0wx") +region = Rect2(134, 1206, 134, 134) + +[sub_resource type="SpriteFrames" id="SpriteFrames_rn27a"] +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="BoxShape3D" id="BoxShape3D_53wuj"] size = Vector3(1, 0.565, 2) @@ -2165,6 +4852,483 @@ states/Walking/node = ExtResource("266_jq47d") states/Walking/position = Vector2(635, 100) transitions = ["Start", "Idle", SubResource("AnimationNodeStateMachineTransition_e2v6u"), "Idle", "Walking", SubResource("AnimationNodeStateMachineTransition_elcn4"), "Walking", "Idle", SubResource("AnimationNodeStateMachineTransition_jiwbc"), "Walking", "Primary Attack", SubResource("AnimationNodeStateMachineTransition_7w85o"), "Walking", "Secondary Attack", SubResource("AnimationNodeStateMachineTransition_13xt0"), "Idle", "Primary Attack", SubResource("AnimationNodeStateMachineTransition_pn6rj"), "Idle", "Secondary Attack", SubResource("AnimationNodeStateMachineTransition_ohtvb"), "Primary Attack", "Idle", SubResource("AnimationNodeStateMachineTransition_rimgk"), "Secondary Attack", "Idle", SubResource("AnimationNodeStateMachineTransition_v1276")] +[sub_resource type="Animation" id="Animation_30xy4"] +resource_name = "CurseHit" +length = 1.56667 +tracks/0/type = "value" +tracks/0/imported = false +tracks/0/enabled = true +tracks/0/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Curse Hit Effect:animation") +tracks/0/interp = 1 +tracks/0/loop_wrap = true +tracks/0/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"default"] +} +tracks/1/type = "value" +tracks/1/imported = false +tracks/1/enabled = true +tracks/1/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Curse Hit Effect:frame") +tracks/1/interp = 1 +tracks/1/loop_wrap = true +tracks/1/keys = { +"times": PackedFloat32Array(0, 1.56667), +"transitions": PackedFloat32Array(1, 1), +"update": 0, +"values": [0, 47] +} + +[sub_resource type="Animation" id="Animation_3pm1j"] +resource_name = "EarthHit" +length = 1.46667 +tracks/0/type = "value" +tracks/0/imported = false +tracks/0/enabled = true +tracks/0/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Earth Hit Effect:animation") +tracks/0/interp = 1 +tracks/0/loop_wrap = true +tracks/0/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"EARTH DAMAGE"] +} +tracks/1/type = "value" +tracks/1/imported = false +tracks/1/enabled = true +tracks/1/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Earth Hit Effect:frame") +tracks/1/interp = 1 +tracks/1/loop_wrap = true +tracks/1/keys = { +"times": PackedFloat32Array(0, 1.46667), +"transitions": PackedFloat32Array(1, 1), +"update": 0, +"values": [0, 44] +} + +[sub_resource type="Animation" id="Animation_6shfu"] +resource_name = "Fire Damage" +length = 2.93334 +tracks/0/type = "value" +tracks/0/imported = false +tracks/0/enabled = true +tracks/0/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/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("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/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("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/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)] +} +tracks/3/type = "value" +tracks/3/imported = false +tracks/3/enabled = true +tracks/3/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Rust Activation Effect:animation") +tracks/3/interp = 1 +tracks/3/loop_wrap = true +tracks/3/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"default"] +} +tracks/4/type = "value" +tracks/4/imported = false +tracks/4/enabled = true +tracks/4/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Rust Activation Effect:frame") +tracks/4/interp = 1 +tracks/4/loop_wrap = true +tracks/4/keys = { +"times": PackedFloat32Array(0, 2.93333), +"transitions": PackedFloat32Array(1, 1), +"update": 0, +"values": [88, 88] +} + +[sub_resource type="Animation" id="Animation_f5cjs"] +resource_name = "HolyHit" +length = 0.700003 +tracks/0/type = "value" +tracks/0/imported = false +tracks/0/enabled = true +tracks/0/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Holy Hit Layer Effect:frame") +tracks/0/interp = 1 +tracks/0/loop_wrap = true +tracks/0/keys = { +"times": PackedFloat32Array(0, 0.7), +"transitions": PackedFloat32Array(1, 1), +"update": 0, +"values": [0, 21] +} +tracks/1/type = "value" +tracks/1/imported = false +tracks/1/enabled = true +tracks/1/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Holy Hit Layer Effect:animation") +tracks/1/interp = 1 +tracks/1/loop_wrap = true +tracks/1/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 0, +"values": [&"HOLY"] +} + +[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("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/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("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/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": [0] +} +tracks/2/type = "value" +tracks/2/imported = false +tracks/2/enabled = true +tracks/2/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/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"] +} +tracks/3/type = "value" +tracks/3/imported = false +tracks/3/enabled = true +tracks/3/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Rust Activation Effect:animation") +tracks/3/interp = 1 +tracks/3/loop_wrap = true +tracks/3/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"default"] +} +tracks/4/type = "value" +tracks/4/imported = false +tracks/4/enabled = true +tracks/4/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Rust Activation Effect:frame") +tracks/4/interp = 1 +tracks/4/loop_wrap = true +tracks/4/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [0] +} +tracks/5/type = "value" +tracks/5/imported = false +tracks/5/enabled = true +tracks/5/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Wind Hit Layer Effect:animation") +tracks/5/interp = 1 +tracks/5/loop_wrap = true +tracks/5/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"default"] +} +tracks/6/type = "value" +tracks/6/imported = false +tracks/6/enabled = true +tracks/6/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Wind Hit Layer Effect:frame") +tracks/6/interp = 1 +tracks/6/loop_wrap = true +tracks/6/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [0] +} +tracks/7/type = "value" +tracks/7/imported = false +tracks/7/enabled = true +tracks/7/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Water Hit Layer 1 Effect:animation") +tracks/7/interp = 1 +tracks/7/loop_wrap = true +tracks/7/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"WATER DAMAGE"] +} +tracks/8/type = "value" +tracks/8/imported = false +tracks/8/enabled = true +tracks/8/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Water Hit Layer 1 Effect:frame") +tracks/8/interp = 1 +tracks/8/loop_wrap = true +tracks/8/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [0] +} +tracks/9/type = "value" +tracks/9/imported = false +tracks/9/enabled = true +tracks/9/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Water Hit Layer 2Effect:animation") +tracks/9/interp = 1 +tracks/9/loop_wrap = true +tracks/9/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"WATER"] +} +tracks/10/type = "value" +tracks/10/imported = false +tracks/10/enabled = true +tracks/10/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Water Hit Layer 2Effect:frame") +tracks/10/interp = 1 +tracks/10/loop_wrap = true +tracks/10/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [0] +} +tracks/11/type = "value" +tracks/11/imported = false +tracks/11/enabled = true +tracks/11/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Curse Hit Effect:animation") +tracks/11/interp = 1 +tracks/11/loop_wrap = true +tracks/11/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"default"] +} +tracks/12/type = "value" +tracks/12/imported = false +tracks/12/enabled = true +tracks/12/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Curse Hit Effect:frame") +tracks/12/interp = 1 +tracks/12/loop_wrap = true +tracks/12/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [0] +} +tracks/13/type = "value" +tracks/13/imported = false +tracks/13/enabled = true +tracks/13/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Earth Hit Effect:animation") +tracks/13/interp = 1 +tracks/13/loop_wrap = true +tracks/13/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"WATER DAMAGE"] +} +tracks/14/type = "value" +tracks/14/imported = false +tracks/14/enabled = true +tracks/14/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Earth Hit Effect:frame") +tracks/14/interp = 1 +tracks/14/loop_wrap = true +tracks/14/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [0] +} +tracks/15/type = "value" +tracks/15/imported = false +tracks/15/enabled = true +tracks/15/path = NodePath("%Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Holy Hit Layer Effect:frame") +tracks/15/interp = 1 +tracks/15/loop_wrap = true +tracks/15/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 0, +"values": [0] +} +tracks/16/type = "value" +tracks/16/imported = false +tracks/16/enabled = true +tracks/16/path = NodePath("%Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Holy Hit Layer Effect:animation") +tracks/16/interp = 1 +tracks/16/loop_wrap = true +tracks/16/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"HOLY"] +} + +[sub_resource type="Animation" id="Animation_0tqwp"] +resource_name = "RustActivate" +length = 1.46667 +step = 0.0166667 +tracks/0/type = "value" +tracks/0/imported = false +tracks/0/enabled = true +tracks/0/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Rust Activation Effect:animation") +tracks/0/interp = 1 +tracks/0/loop_wrap = true +tracks/0/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"default"] +} +tracks/1/type = "value" +tracks/1/imported = false +tracks/1/enabled = true +tracks/1/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Rust Activation Effect:frame") +tracks/1/interp = 1 +tracks/1/loop_wrap = true +tracks/1/keys = { +"times": PackedFloat32Array(0, 1.46667), +"transitions": PackedFloat32Array(1, 1), +"update": 0, +"values": [0, 88] +} + +[sub_resource type="Animation" id="Animation_q5dfb"] +resource_name = "WaterHit" +length = 1.7 +tracks/0/type = "value" +tracks/0/imported = false +tracks/0/enabled = true +tracks/0/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Water Hit Layer 1 Effect:animation") +tracks/0/interp = 1 +tracks/0/loop_wrap = true +tracks/0/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"WATER DAMAGE"] +} +tracks/1/type = "value" +tracks/1/imported = false +tracks/1/enabled = true +tracks/1/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Water Hit Layer 1 Effect:frame") +tracks/1/interp = 1 +tracks/1/loop_wrap = true +tracks/1/keys = { +"times": PackedFloat32Array(0, 1), +"transitions": PackedFloat32Array(1, 1), +"update": 0, +"values": [0, 29] +} +tracks/2/type = "value" +tracks/2/imported = false +tracks/2/enabled = true +tracks/2/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Water Hit Layer 2Effect:animation") +tracks/2/interp = 1 +tracks/2/loop_wrap = true +tracks/2/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"WATER"] +} +tracks/3/type = "value" +tracks/3/imported = false +tracks/3/enabled = true +tracks/3/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Water Hit Layer 2Effect:frame") +tracks/3/interp = 1 +tracks/3/loop_wrap = true +tracks/3/keys = { +"times": PackedFloat32Array(0, 1.7), +"transitions": PackedFloat32Array(1, 1), +"update": 0, +"values": [0, 51] +} + +[sub_resource type="Animation" id="Animation_godpv"] +resource_name = "WindHit" +length = 0.833335 +step = 0.0166667 +tracks/0/type = "value" +tracks/0/imported = false +tracks/0/enabled = true +tracks/0/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Wind Hit Layer Effect:animation") +tracks/0/interp = 1 +tracks/0/loop_wrap = true +tracks/0/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"default"] +} +tracks/1/type = "value" +tracks/1/imported = false +tracks/1/enabled = true +tracks/1/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Wind Hit Layer Effect:frame") +tracks/1/interp = 1 +tracks/1/loop_wrap = true +tracks/1/keys = { +"times": PackedFloat32Array(0, 0.833333), +"transitions": PackedFloat32Array(1, 1), +"update": 0, +"values": [0, 50] +} + +[sub_resource type="AnimationLibrary" id="AnimationLibrary_0tqwp"] +_data = { +&"CurseHit": SubResource("Animation_30xy4"), +&"EarthHit": SubResource("Animation_3pm1j"), +&"FireHit": SubResource("Animation_6shfu"), +&"HolyHit": SubResource("Animation_f5cjs"), +&"RESET": SubResource("Animation_cftgd"), +&"RustActivate": SubResource("Animation_0tqwp"), +&"WaterHit": SubResource("Animation_q5dfb"), +&"WindHit": SubResource("Animation_godpv") +} + [node name="EnemyModelView" type="Node3D"] script = ExtResource("1_s0qsg") EnemyLoreInfo = SubResource("Resource_f45wt") @@ -2199,6 +5363,54 @@ scale = Vector2(0.5, 0.5) sprite_frames = SubResource("SpriteFrames_6drt6") animation = &"idle_front" +[node name="VFXSprites" type="Node2D" parent="Sprite3D/SubViewportContainer/SubViewport"] + +[node name="Rust Activation Effect" type="AnimatedSprite2D" parent="Sprite3D/SubViewportContainer/SubViewport/VFXSprites"] +position = Vector2(400, 400) +scale = Vector2(1.54, 1.54) +sprite_frames = SubResource("SpriteFrames_g803a") + +[node name="Holy Hit Layer Effect" type="AnimatedSprite2D" parent="Sprite3D/SubViewportContainer/SubViewport/VFXSprites"] +position = Vector2(400, 400) +scale = Vector2(0.675, 0.675) +sprite_frames = SubResource("SpriteFrames_8jdnb") +animation = &"HOLY" + +[node name="Wind Hit Layer Effect" type="AnimatedSprite2D" parent="Sprite3D/SubViewportContainer/SubViewport/VFXSprites"] +position = Vector2(400, 400) +scale = Vector2(1.445, 1.445) +sprite_frames = SubResource("SpriteFrames_t2ic6") + +[node name="Flame Hit Effect" type="AnimatedSprite2D" parent="Sprite3D/SubViewportContainer/SubViewport/VFXSprites"] +position = Vector2(400, 400) +scale = Vector2(3.445, 3.445) +sprite_frames = SubResource("SpriteFrames_ovjvy") +animation = &"Flame Damage" + +[node name="Water Hit Layer 1 Effect" type="AnimatedSprite2D" parent="Sprite3D/SubViewportContainer/SubViewport/VFXSprites"] +position = Vector2(400, 400) +scale = Vector2(2.215, 2.215) +sprite_frames = SubResource("SpriteFrames_wm1r6") +animation = &"WATER DAMAGE" + +[node name="Water Hit Layer 2Effect" type="AnimatedSprite2D" parent="Sprite3D/SubViewportContainer/SubViewport/VFXSprites"] +position = Vector2(400, 400) +scale = Vector2(1.105, 0.895) +sprite_frames = SubResource("SpriteFrames_sq74q") +animation = &"WATER" + +[node name="Curse Hit Effect" type="AnimatedSprite2D" parent="Sprite3D/SubViewportContainer/SubViewport/VFXSprites"] +texture_filter = 1 +position = Vector2(400, 400) +scale = Vector2(2.78, 2.78) +sprite_frames = SubResource("SpriteFrames_rn27a") + +[node name="Earth Hit Effect" type="AnimatedSprite2D" parent="Sprite3D/SubViewportContainer/SubViewport/VFXSprites"] +position = Vector2(400, 400) +scale = Vector2(2.005, 2.005) +sprite_frames = SubResource("SpriteFrames_wm1r6") +animation = &"WATER DAMAGE" + [node name="Hitbox" type="Area3D" parent="."] unique_name_in_owner = true transform = Transform3D(-1, 0, -8.74228e-08, 0, 1, 0, 8.74228e-08, 0, -1, -0.152949, 1.2867, 0) @@ -2238,3 +5450,51 @@ cast_shadow = 0 modulate = Color(1, 1, 1, 0.591) texture_filter = 0 texture = ExtResource("268_yj1cx") + +[node name="VFXAnimations" type="Node" parent="."] + +[node name="FlameHitAnimation" type="AnimationPlayer" parent="VFXAnimations"] +unique_name_in_owner = true +libraries = { +&"": SubResource("AnimationLibrary_0tqwp") +} + +[node name="RustHitAnimation" type="AnimationPlayer" parent="VFXAnimations"] +unique_name_in_owner = true +root_node = NodePath("../../Secondary Animation Player") +libraries = { +&"": SubResource("AnimationLibrary_0tqwp") +} + +[node name="HolyHitAnimation" type="AnimationPlayer" parent="VFXAnimations"] +unique_name_in_owner = true +libraries = { +&"": SubResource("AnimationLibrary_0tqwp") +} + +[node name="WindHitAnimation" type="AnimationPlayer" parent="VFXAnimations"] +unique_name_in_owner = true +root_node = NodePath("../../Secondary Animation Player") +libraries = { +&"": SubResource("AnimationLibrary_0tqwp") +} + +[node name="WaterHitAnimation" type="AnimationPlayer" parent="VFXAnimations"] +unique_name_in_owner = true +root_node = NodePath("../../Secondary Animation Player") +libraries = { +&"": SubResource("AnimationLibrary_0tqwp") +} + +[node name="CurseHitAnimation" type="AnimationPlayer" parent="VFXAnimations"] +unique_name_in_owner = true +libraries = { +&"": SubResource("AnimationLibrary_0tqwp") +} + +[node name="EarthHitAnimation" type="AnimationPlayer" parent="VFXAnimations"] +unique_name_in_owner = true +root_node = NodePath("../../Secondary Animation Player") +libraries = { +&"": SubResource("AnimationLibrary_0tqwp") +} diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/AgniDemonModelView.tscn b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/AgniDemonModelView.tscn index 74589af2..8561dd82 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/AgniDemonModelView.tscn +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/AgniDemonModelView.tscn @@ -1,4 +1,4 @@ -[gd_scene load_steps=368 format=3 uid="uid://uynf2cg7wtqo"] +[gd_scene load_steps=763 format=3 uid="uid://uynf2cg7wtqo"] [ext_resource type="Script" uid="uid://cvr1qimxpignl" path="res://src/enemy/EnemyModelView2D.cs" id="1_wl7dh"] [ext_resource type="Texture2D" uid="uid://dsu48b5hf48xl" path="res://src/enemy/enemy_types/09. Agni/animations/B/frame_000_delay-0.01s.png" id="2_pt8gl"] @@ -332,9 +332,17 @@ [ext_resource type="Texture2D" uid="uid://5f115symdsmg" path="res://src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_327_delay-0.01s.png" id="329_72hkg"] [ext_resource type="Texture2D" uid="uid://b6swecrctxcgy" path="res://src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_328_delay-0.01s.png" id="330_at3qg"] [ext_resource type="Texture2D" uid="uid://b6batijegfqfe" path="res://src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_329_delay-0.01s.png" id="331_610d6"] +[ext_resource type="Texture2D" uid="uid://dq70aipwl1qrg" path="res://src/vfx/Enemy Affected/Rust Particles.png" id="333_mosnb"] +[ext_resource type="Texture2D" uid="uid://by0ehygy7bq13" path="res://src/vfx/Enemy Affected/Holy Damage.png" id="334_830os"] [ext_resource type="AnimationNodeStateMachine" uid="uid://co7lshemjrro8" path="res://src/enemy/animation_state_machines/IdleStateMachine.tres" id="334_kp6fv"] [ext_resource type="AnimationNodeStateMachine" uid="uid://cbq8xog50cjjy" path="res://src/enemy/animation_state_machines/PrimaryAttackStateMachine.tres" id="335_3ax4w"] +[ext_resource type="Texture2D" uid="uid://dqqhu0s51o3n7" path="res://src/vfx/Enemy Affected/Wind Damage.png" id="335_ypc6s"] [ext_resource type="AnimationNodeStateMachine" uid="uid://clybvwx3itfeo" path="res://src/enemy/animation_state_machines/SecondaryAttackStateMachine.tres" id="336_7fjet"] +[ext_resource type="Texture2D" uid="uid://dh6mk1c35nymx" path="res://src/vfx/Enemy Affected/firedamage.png" id="336_q4052"] +[ext_resource type="Texture2D" uid="uid://7a42df2ijrmv" path="res://src/vfx/Enemy Affected/earth damage.png" id="337_8lj7w"] +[ext_resource type="Texture2D" uid="uid://cot4wx5fg5pfs" path="res://src/vfx/Enemy Affected/water_hit_layer2.png" id="338_k1hu4"] +[ext_resource type="Texture2D" uid="uid://cbei66g134fgv" path="res://src/vfx/Enemy Affected/water layer 1.png" id="339_m1js6"] +[ext_resource type="Texture2D" uid="uid://bp6npqoco5fl3" path="res://src/vfx/Enemy Affected/curse_damage.png" id="340_ll8af"] [sub_resource type="Resource" id="Resource_f45wt"] script = ExtResource("2_y6p5p") @@ -1414,6 +1422,2685 @@ animations = [{ "speed": 5.0 }] +[sub_resource type="AtlasTexture" id="AtlasTexture_4o5f2"] +atlas = ExtResource("333_mosnb") +region = Rect2(1206, 402, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r8ggx"] +atlas = ExtResource("333_mosnb") +region = Rect2(1340, 402, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xafpd"] +atlas = ExtResource("333_mosnb") +region = Rect2(1474, 402, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_73dpc"] +atlas = ExtResource("333_mosnb") +region = Rect2(0, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vppxt"] +atlas = ExtResource("333_mosnb") +region = Rect2(134, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nk562"] +atlas = ExtResource("333_mosnb") +region = Rect2(268, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dwu2q"] +atlas = ExtResource("333_mosnb") +region = Rect2(402, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w3p3j"] +atlas = ExtResource("333_mosnb") +region = Rect2(536, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ig0ip"] +atlas = ExtResource("333_mosnb") +region = Rect2(670, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r4enw"] +atlas = ExtResource("333_mosnb") +region = Rect2(804, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uy6hg"] +atlas = ExtResource("333_mosnb") +region = Rect2(938, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_85jwg"] +atlas = ExtResource("333_mosnb") +region = Rect2(1072, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ln7dl"] +atlas = ExtResource("333_mosnb") +region = Rect2(1206, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3vvgp"] +atlas = ExtResource("333_mosnb") +region = Rect2(1340, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_01f7m"] +atlas = ExtResource("333_mosnb") +region = Rect2(1474, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pp21u"] +atlas = ExtResource("333_mosnb") +region = Rect2(0, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1aldj"] +atlas = ExtResource("333_mosnb") +region = Rect2(134, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xv5pw"] +atlas = ExtResource("333_mosnb") +region = Rect2(268, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_14lh3"] +atlas = ExtResource("333_mosnb") +region = Rect2(402, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xxid6"] +atlas = ExtResource("333_mosnb") +region = Rect2(536, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y6yeo"] +atlas = ExtResource("333_mosnb") +region = Rect2(670, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2aohu"] +atlas = ExtResource("333_mosnb") +region = Rect2(804, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ebvc7"] +atlas = ExtResource("333_mosnb") +region = Rect2(938, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yd50d"] +atlas = ExtResource("333_mosnb") +region = Rect2(1072, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yimdu"] +atlas = ExtResource("333_mosnb") +region = Rect2(1206, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dync1"] +atlas = ExtResource("333_mosnb") +region = Rect2(1340, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jsjdk"] +atlas = ExtResource("333_mosnb") +region = Rect2(1474, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ueih5"] +atlas = ExtResource("333_mosnb") +region = Rect2(0, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k0hut"] +atlas = ExtResource("333_mosnb") +region = Rect2(134, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kybji"] +atlas = ExtResource("333_mosnb") +region = Rect2(268, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u5vpt"] +atlas = ExtResource("333_mosnb") +region = Rect2(402, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wko4t"] +atlas = ExtResource("333_mosnb") +region = Rect2(536, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ru86o"] +atlas = ExtResource("333_mosnb") +region = Rect2(670, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uybbj"] +atlas = ExtResource("333_mosnb") +region = Rect2(804, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s6pp8"] +atlas = ExtResource("333_mosnb") +region = Rect2(938, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a7pls"] +atlas = ExtResource("333_mosnb") +region = Rect2(1072, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_30y71"] +atlas = ExtResource("333_mosnb") +region = Rect2(1206, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dwl1c"] +atlas = ExtResource("333_mosnb") +region = Rect2(1340, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_01jp4"] +atlas = ExtResource("333_mosnb") +region = Rect2(1474, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b8ulh"] +atlas = ExtResource("333_mosnb") +region = Rect2(0, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3walv"] +atlas = ExtResource("333_mosnb") +region = Rect2(134, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_exyoj"] +atlas = ExtResource("333_mosnb") +region = Rect2(268, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kus54"] +atlas = ExtResource("333_mosnb") +region = Rect2(402, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_meauc"] +atlas = ExtResource("333_mosnb") +region = Rect2(536, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7v7xr"] +atlas = ExtResource("333_mosnb") +region = Rect2(670, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4ktea"] +atlas = ExtResource("333_mosnb") +region = Rect2(804, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l8oa1"] +atlas = ExtResource("333_mosnb") +region = Rect2(938, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3eopa"] +atlas = ExtResource("333_mosnb") +region = Rect2(1072, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ip8hv"] +atlas = ExtResource("333_mosnb") +region = Rect2(1206, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_42rbq"] +atlas = ExtResource("333_mosnb") +region = Rect2(1340, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tu0vu"] +atlas = ExtResource("333_mosnb") +region = Rect2(1474, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gbh7l"] +atlas = ExtResource("333_mosnb") +region = Rect2(0, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_733jx"] +atlas = ExtResource("333_mosnb") +region = Rect2(134, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sfa2q"] +atlas = ExtResource("333_mosnb") +region = Rect2(268, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o0nvo"] +atlas = ExtResource("333_mosnb") +region = Rect2(402, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1mv1w"] +atlas = ExtResource("333_mosnb") +region = Rect2(536, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yw8ob"] +atlas = ExtResource("333_mosnb") +region = Rect2(670, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ptkbd"] +atlas = ExtResource("333_mosnb") +region = Rect2(804, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2uoiw"] +atlas = ExtResource("333_mosnb") +region = Rect2(938, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4m684"] +atlas = ExtResource("333_mosnb") +region = Rect2(1072, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_st6fj"] +atlas = ExtResource("333_mosnb") +region = Rect2(1206, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1wana"] +atlas = ExtResource("333_mosnb") +region = Rect2(1340, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ati4e"] +atlas = ExtResource("333_mosnb") +region = Rect2(1474, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0w31q"] +atlas = ExtResource("333_mosnb") +region = Rect2(0, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uxu33"] +atlas = ExtResource("333_mosnb") +region = Rect2(134, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2ulnd"] +atlas = ExtResource("333_mosnb") +region = Rect2(268, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ddsrn"] +atlas = ExtResource("333_mosnb") +region = Rect2(402, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n1e5w"] +atlas = ExtResource("333_mosnb") +region = Rect2(536, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f4aq5"] +atlas = ExtResource("333_mosnb") +region = Rect2(670, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_er00h"] +atlas = ExtResource("333_mosnb") +region = Rect2(804, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mlf5c"] +atlas = ExtResource("333_mosnb") +region = Rect2(938, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c362w"] +atlas = ExtResource("333_mosnb") +region = Rect2(1072, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_30wb7"] +atlas = ExtResource("333_mosnb") +region = Rect2(1206, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_stb0b"] +atlas = ExtResource("333_mosnb") +region = Rect2(1340, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a64qf"] +atlas = ExtResource("333_mosnb") +region = Rect2(1474, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_52bkw"] +atlas = ExtResource("333_mosnb") +region = Rect2(0, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y0yvc"] +atlas = ExtResource("333_mosnb") +region = Rect2(134, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5h2xe"] +atlas = ExtResource("333_mosnb") +region = Rect2(268, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6hh33"] +atlas = ExtResource("333_mosnb") +region = Rect2(402, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kmk3m"] +atlas = ExtResource("333_mosnb") +region = Rect2(536, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rbtmh"] +atlas = ExtResource("333_mosnb") +region = Rect2(670, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bit6n"] +atlas = ExtResource("333_mosnb") +region = Rect2(804, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_458hw"] +atlas = ExtResource("333_mosnb") +region = Rect2(938, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4x2ea"] +atlas = ExtResource("333_mosnb") +region = Rect2(1072, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bcljt"] +atlas = ExtResource("333_mosnb") +region = Rect2(1206, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p6e34"] +atlas = ExtResource("333_mosnb") +region = Rect2(1340, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2yfi0"] +atlas = ExtResource("333_mosnb") +region = Rect2(1474, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bhoxy"] +atlas = ExtResource("333_mosnb") +region = Rect2(0, 1474, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_41wyx"] +atlas = ExtResource("333_mosnb") +region = Rect2(134, 1474, 134, 134) + +[sub_resource type="SpriteFrames" id="SpriteFrames_705ek"] +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("334_830os") +region = Rect2(1024, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pvn2l"] +atlas = ExtResource("334_830os") +region = Rect2(1536, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sctov"] +atlas = ExtResource("334_830os") +region = Rect2(2048, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_46bwa"] +atlas = ExtResource("334_830os") +region = Rect2(2560, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o42jv"] +atlas = ExtResource("334_830os") +region = Rect2(3072, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5dqsk"] +atlas = ExtResource("334_830os") +region = Rect2(3584, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_35l4k"] +atlas = ExtResource("334_830os") +region = Rect2(4096, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x0jfm"] +atlas = ExtResource("334_830os") +region = Rect2(4608, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fk16r"] +atlas = ExtResource("334_830os") +region = Rect2(5120, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ewtdr"] +atlas = ExtResource("334_830os") +region = Rect2(5632, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bul51"] +atlas = ExtResource("334_830os") +region = Rect2(6144, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vbobf"] +atlas = ExtResource("334_830os") +region = Rect2(6656, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_itqlk"] +atlas = ExtResource("334_830os") +region = Rect2(7168, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_41jjh"] +atlas = ExtResource("334_830os") +region = Rect2(7680, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kol03"] +atlas = ExtResource("334_830os") +region = Rect2(0, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ynyxy"] +atlas = ExtResource("334_830os") +region = Rect2(512, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ngcxk"] +atlas = ExtResource("334_830os") +region = Rect2(1024, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ba8fa"] +atlas = ExtResource("334_830os") +region = Rect2(1536, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ngitf"] +atlas = ExtResource("334_830os") +region = Rect2(2048, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_boovf"] +atlas = ExtResource("334_830os") +region = Rect2(2560, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jwkhr"] +atlas = ExtResource("334_830os") +region = Rect2(3072, 512, 512, 512) + +[sub_resource type="SpriteFrames" id="SpriteFrames_mnqb5"] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": null +}, { +"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("335_ypc6s") +region = Rect2(0, 0, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3jmy8"] +atlas = ExtResource("335_ypc6s") +region = Rect2(266, 0, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t76hk"] +atlas = ExtResource("335_ypc6s") +region = Rect2(532, 0, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_06gff"] +atlas = ExtResource("335_ypc6s") +region = Rect2(798, 0, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ssjgs"] +atlas = ExtResource("335_ypc6s") +region = Rect2(1064, 0, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_53u6k"] +atlas = ExtResource("335_ypc6s") +region = Rect2(0, 131, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_inmu7"] +atlas = ExtResource("335_ypc6s") +region = Rect2(266, 131, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bmkvg"] +atlas = ExtResource("335_ypc6s") +region = Rect2(532, 131, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oqdmj"] +atlas = ExtResource("335_ypc6s") +region = Rect2(798, 131, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bnn41"] +atlas = ExtResource("335_ypc6s") +region = Rect2(1064, 131, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p6hmn"] +atlas = ExtResource("335_ypc6s") +region = Rect2(0, 262, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s0ybe"] +atlas = ExtResource("335_ypc6s") +region = Rect2(266, 262, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y2273"] +atlas = ExtResource("335_ypc6s") +region = Rect2(532, 262, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2i87r"] +atlas = ExtResource("335_ypc6s") +region = Rect2(798, 262, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4q8o2"] +atlas = ExtResource("335_ypc6s") +region = Rect2(1064, 262, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_esxmc"] +atlas = ExtResource("335_ypc6s") +region = Rect2(0, 393, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rdsur"] +atlas = ExtResource("335_ypc6s") +region = Rect2(266, 393, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b2qt4"] +atlas = ExtResource("335_ypc6s") +region = Rect2(532, 393, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xamrr"] +atlas = ExtResource("335_ypc6s") +region = Rect2(798, 393, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0prqh"] +atlas = ExtResource("335_ypc6s") +region = Rect2(1064, 393, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dh1oc"] +atlas = ExtResource("335_ypc6s") +region = Rect2(0, 524, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ybb1w"] +atlas = ExtResource("335_ypc6s") +region = Rect2(266, 524, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2nkua"] +atlas = ExtResource("335_ypc6s") +region = Rect2(532, 524, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2gocr"] +atlas = ExtResource("335_ypc6s") +region = Rect2(798, 524, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_acsou"] +atlas = ExtResource("335_ypc6s") +region = Rect2(1064, 524, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yflou"] +atlas = ExtResource("335_ypc6s") +region = Rect2(0, 655, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_env3c"] +atlas = ExtResource("335_ypc6s") +region = Rect2(266, 655, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_74f4l"] +atlas = ExtResource("335_ypc6s") +region = Rect2(532, 655, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cbaq7"] +atlas = ExtResource("335_ypc6s") +region = Rect2(798, 655, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bc4hh"] +atlas = ExtResource("335_ypc6s") +region = Rect2(1064, 655, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5m27y"] +atlas = ExtResource("335_ypc6s") +region = Rect2(0, 786, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c2vig"] +atlas = ExtResource("335_ypc6s") +region = Rect2(266, 786, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h8qbh"] +atlas = ExtResource("335_ypc6s") +region = Rect2(532, 786, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vj2ia"] +atlas = ExtResource("335_ypc6s") +region = Rect2(798, 786, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h0bv3"] +atlas = ExtResource("335_ypc6s") +region = Rect2(1064, 786, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3xb07"] +atlas = ExtResource("335_ypc6s") +region = Rect2(0, 917, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p845e"] +atlas = ExtResource("335_ypc6s") +region = Rect2(266, 917, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nm575"] +atlas = ExtResource("335_ypc6s") +region = Rect2(532, 917, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8wvvt"] +atlas = ExtResource("335_ypc6s") +region = Rect2(798, 917, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2l45l"] +atlas = ExtResource("335_ypc6s") +region = Rect2(1064, 917, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0c6u7"] +atlas = ExtResource("335_ypc6s") +region = Rect2(0, 1048, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bo1qh"] +atlas = ExtResource("335_ypc6s") +region = Rect2(266, 1048, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4cq22"] +atlas = ExtResource("335_ypc6s") +region = Rect2(532, 1048, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d6auk"] +atlas = ExtResource("335_ypc6s") +region = Rect2(798, 1048, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4bvg3"] +atlas = ExtResource("335_ypc6s") +region = Rect2(1064, 1048, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rps4p"] +atlas = ExtResource("335_ypc6s") +region = Rect2(0, 1179, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qdy2n"] +atlas = ExtResource("335_ypc6s") +region = Rect2(266, 1179, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a63dt"] +atlas = ExtResource("335_ypc6s") +region = Rect2(532, 1179, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3alol"] +atlas = ExtResource("335_ypc6s") +region = Rect2(798, 1179, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w5y4o"] +atlas = ExtResource("335_ypc6s") +region = Rect2(1064, 1179, 133, 131) + +[sub_resource type="SpriteFrames" id="SpriteFrames_vfgt0"] +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("336_q4052") +region = Rect2(200, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w5yum"] +atlas = ExtResource("336_q4052") +region = Rect2(600, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xagiq"] +atlas = ExtResource("336_q4052") +region = Rect2(1000, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iu4h2"] +atlas = ExtResource("336_q4052") +region = Rect2(100, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t6kmk"] +atlas = ExtResource("336_q4052") +region = Rect2(500, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c3c22"] +atlas = ExtResource("336_q4052") +region = Rect2(900, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_udm06"] +atlas = ExtResource("336_q4052") +region = Rect2(0, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_31shi"] +atlas = ExtResource("336_q4052") +region = Rect2(400, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i6wsf"] +atlas = ExtResource("336_q4052") +region = Rect2(800, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jhluk"] +atlas = ExtResource("336_q4052") +region = Rect2(1200, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_exq74"] +atlas = ExtResource("336_q4052") +region = Rect2(300, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k7tc1"] +atlas = ExtResource("336_q4052") +region = Rect2(700, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_456io"] +atlas = ExtResource("336_q4052") +region = Rect2(1100, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2h7ac"] +atlas = ExtResource("336_q4052") +region = Rect2(200, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dy5lo"] +atlas = ExtResource("336_q4052") +region = Rect2(500, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_biyyn"] +atlas = ExtResource("336_q4052") +region = Rect2(1000, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_flqm1"] +atlas = ExtResource("336_q4052") +region = Rect2(100, 500, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xttn8"] +atlas = ExtResource("336_q4052") +region = Rect2(500, 500, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_85rsb"] +atlas = ExtResource("336_q4052") +region = Rect2(900, 500, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oxqm1"] +atlas = ExtResource("336_q4052") +region = Rect2(0, 600, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dphle"] +atlas = ExtResource("336_q4052") +region = Rect2(400, 600, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_48bul"] +atlas = ExtResource("336_q4052") +region = Rect2(800, 600, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2d6tt"] +atlas = ExtResource("336_q4052") +region = Rect2(1200, 600, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ty41g"] +atlas = ExtResource("336_q4052") +region = Rect2(300, 700, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c5uyp"] +atlas = ExtResource("336_q4052") +region = Rect2(700, 700, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tf4dl"] +atlas = ExtResource("336_q4052") +region = Rect2(1100, 700, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cvdlu"] +atlas = ExtResource("336_q4052") +region = Rect2(200, 800, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f25l1"] +atlas = ExtResource("336_q4052") +region = Rect2(600, 800, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v033q"] +atlas = ExtResource("336_q4052") +region = Rect2(1000, 800, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xgfkn"] +atlas = ExtResource("336_q4052") +region = Rect2(100, 900, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_duxfd"] +atlas = ExtResource("336_q4052") +region = Rect2(500, 900, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5uvt0"] +atlas = ExtResource("336_q4052") +region = Rect2(900, 900, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7d05g"] +atlas = ExtResource("336_q4052") +region = Rect2(0, 1000, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x0ube"] +atlas = ExtResource("336_q4052") +region = Rect2(400, 1000, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_15y07"] +atlas = ExtResource("336_q4052") +region = Rect2(800, 1000, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_de0po"] +atlas = ExtResource("336_q4052") +region = Rect2(1200, 1000, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b3rtc"] +atlas = ExtResource("336_q4052") +region = Rect2(300, 1100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q32lt"] +atlas = ExtResource("336_q4052") +region = Rect2(700, 1100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_88hqh"] +atlas = ExtResource("336_q4052") +region = Rect2(1100, 1100, 100, 100) + +[sub_resource type="SpriteFrames" id="SpriteFrames_4tw0v"] +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("337_8lj7w") +region = Rect2(0, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0rj30"] +atlas = ExtResource("337_8lj7w") +region = Rect2(200, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ug1a1"] +atlas = ExtResource("337_8lj7w") +region = Rect2(400, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8eees"] +atlas = ExtResource("337_8lj7w") +region = Rect2(600, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k2i7i"] +atlas = ExtResource("337_8lj7w") +region = Rect2(800, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4wwo5"] +atlas = ExtResource("337_8lj7w") +region = Rect2(0, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_418m2"] +atlas = ExtResource("337_8lj7w") +region = Rect2(200, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6g5qj"] +atlas = ExtResource("337_8lj7w") +region = Rect2(400, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k3sey"] +atlas = ExtResource("337_8lj7w") +region = Rect2(600, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ms40v"] +atlas = ExtResource("337_8lj7w") +region = Rect2(800, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2tfej"] +atlas = ExtResource("337_8lj7w") +region = Rect2(0, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_woj7f"] +atlas = ExtResource("337_8lj7w") +region = Rect2(200, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kg861"] +atlas = ExtResource("337_8lj7w") +region = Rect2(400, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jtxxp"] +atlas = ExtResource("337_8lj7w") +region = Rect2(600, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sxooa"] +atlas = ExtResource("337_8lj7w") +region = Rect2(800, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hkj2y"] +atlas = ExtResource("337_8lj7w") +region = Rect2(0, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wm40h"] +atlas = ExtResource("337_8lj7w") +region = Rect2(200, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u66v8"] +atlas = ExtResource("337_8lj7w") +region = Rect2(400, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6ip85"] +atlas = ExtResource("337_8lj7w") +region = Rect2(600, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qad2i"] +atlas = ExtResource("337_8lj7w") +region = Rect2(800, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nifqu"] +atlas = ExtResource("337_8lj7w") +region = Rect2(0, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_goocc"] +atlas = ExtResource("337_8lj7w") +region = Rect2(200, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l78ua"] +atlas = ExtResource("337_8lj7w") +region = Rect2(400, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ybqlc"] +atlas = ExtResource("337_8lj7w") +region = Rect2(600, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d0lry"] +atlas = ExtResource("337_8lj7w") +region = Rect2(800, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ccb2v"] +atlas = ExtResource("337_8lj7w") +region = Rect2(0, 500, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dcp7h"] +atlas = ExtResource("337_8lj7w") +region = Rect2(200, 500, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3kud6"] +atlas = ExtResource("337_8lj7w") +region = Rect2(400, 500, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0tvc2"] +atlas = ExtResource("337_8lj7w") +region = Rect2(600, 500, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g5aky"] +atlas = ExtResource("337_8lj7w") +region = Rect2(800, 500, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nyc7u"] +atlas = ExtResource("337_8lj7w") +region = Rect2(0, 600, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q1yeq"] +atlas = ExtResource("337_8lj7w") +region = Rect2(200, 600, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pupfb"] +atlas = ExtResource("337_8lj7w") +region = Rect2(400, 600, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gfe8c"] +atlas = ExtResource("337_8lj7w") +region = Rect2(600, 600, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_76bl1"] +atlas = ExtResource("337_8lj7w") +region = Rect2(800, 600, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u7frn"] +atlas = ExtResource("337_8lj7w") +region = Rect2(0, 700, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ls3an"] +atlas = ExtResource("337_8lj7w") +region = Rect2(200, 700, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4l6e0"] +atlas = ExtResource("337_8lj7w") +region = Rect2(400, 700, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cvlbl"] +atlas = ExtResource("337_8lj7w") +region = Rect2(600, 700, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jkvpv"] +atlas = ExtResource("337_8lj7w") +region = Rect2(800, 700, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lpp7o"] +atlas = ExtResource("337_8lj7w") +region = Rect2(0, 800, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v8igx"] +atlas = ExtResource("337_8lj7w") +region = Rect2(200, 800, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mmm0q"] +atlas = ExtResource("337_8lj7w") +region = Rect2(400, 800, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5ukt7"] +atlas = ExtResource("337_8lj7w") +region = Rect2(600, 800, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0pkd7"] +atlas = ExtResource("337_8lj7w") +region = Rect2(800, 800, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n85t7"] +atlas = ExtResource("338_k1hu4") +region = Rect2(0, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nb4v4"] +atlas = ExtResource("338_k1hu4") +region = Rect2(100, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cl00x"] +atlas = ExtResource("338_k1hu4") +region = Rect2(200, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ufcsw"] +atlas = ExtResource("338_k1hu4") +region = Rect2(300, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aoisp"] +atlas = ExtResource("338_k1hu4") +region = Rect2(400, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3rkdy"] +atlas = ExtResource("338_k1hu4") +region = Rect2(500, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o0dym"] +atlas = ExtResource("338_k1hu4") +region = Rect2(0, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vxihx"] +atlas = ExtResource("338_k1hu4") +region = Rect2(100, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ofpmt"] +atlas = ExtResource("338_k1hu4") +region = Rect2(200, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ux0ir"] +atlas = ExtResource("338_k1hu4") +region = Rect2(300, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8dgch"] +atlas = ExtResource("338_k1hu4") +region = Rect2(400, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7ixin"] +atlas = ExtResource("338_k1hu4") +region = Rect2(500, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2kea0"] +atlas = ExtResource("338_k1hu4") +region = Rect2(0, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kgnps"] +atlas = ExtResource("338_k1hu4") +region = Rect2(100, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g2wgu"] +atlas = ExtResource("338_k1hu4") +region = Rect2(200, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0oosk"] +atlas = ExtResource("338_k1hu4") +region = Rect2(300, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_80k2g"] +atlas = ExtResource("338_k1hu4") +region = Rect2(400, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fskx7"] +atlas = ExtResource("338_k1hu4") +region = Rect2(500, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_no3pe"] +atlas = ExtResource("338_k1hu4") +region = Rect2(0, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_15fnm"] +atlas = ExtResource("338_k1hu4") +region = Rect2(100, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r5e73"] +atlas = ExtResource("338_k1hu4") +region = Rect2(200, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2im8t"] +atlas = ExtResource("338_k1hu4") +region = Rect2(300, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mxl2m"] +atlas = ExtResource("338_k1hu4") +region = Rect2(400, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6dwuh"] +atlas = ExtResource("338_k1hu4") +region = Rect2(500, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_53c1f"] +atlas = ExtResource("338_k1hu4") +region = Rect2(0, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mmbhy"] +atlas = ExtResource("338_k1hu4") +region = Rect2(100, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uwbh3"] +atlas = ExtResource("338_k1hu4") +region = Rect2(200, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j6v2y"] +atlas = ExtResource("338_k1hu4") +region = Rect2(300, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h5xbu"] +atlas = ExtResource("338_k1hu4") +region = Rect2(400, 400, 100, 100) + +[sub_resource type="SpriteFrames" id="SpriteFrames_rvkyf"] +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("339_m1js6") +region = Rect2(875, 452, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ekrqp"] +atlas = ExtResource("339_m1js6") +region = Rect2(1050, 452, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dvnic"] +atlas = ExtResource("339_m1js6") +region = Rect2(1225, 452, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rxdv7"] +atlas = ExtResource("339_m1js6") +region = Rect2(1400, 452, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0pvcp"] +atlas = ExtResource("339_m1js6") +region = Rect2(0, 678, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yga3t"] +atlas = ExtResource("339_m1js6") +region = Rect2(175, 678, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c6qrx"] +atlas = ExtResource("339_m1js6") +region = Rect2(350, 678, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fkryw"] +atlas = ExtResource("339_m1js6") +region = Rect2(525, 678, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jt7jg"] +atlas = ExtResource("339_m1js6") +region = Rect2(700, 678, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6eyjl"] +atlas = ExtResource("339_m1js6") +region = Rect2(875, 678, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tsolq"] +atlas = ExtResource("339_m1js6") +region = Rect2(1050, 678, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_opqal"] +atlas = ExtResource("339_m1js6") +region = Rect2(1225, 678, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kia47"] +atlas = ExtResource("339_m1js6") +region = Rect2(1400, 678, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6aolf"] +atlas = ExtResource("339_m1js6") +region = Rect2(0, 904, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g6jok"] +atlas = ExtResource("339_m1js6") +region = Rect2(175, 904, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_swdkn"] +atlas = ExtResource("339_m1js6") +region = Rect2(350, 904, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_edlre"] +atlas = ExtResource("339_m1js6") +region = Rect2(525, 904, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gbj32"] +atlas = ExtResource("339_m1js6") +region = Rect2(700, 904, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bstol"] +atlas = ExtResource("339_m1js6") +region = Rect2(875, 904, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_57vey"] +atlas = ExtResource("339_m1js6") +region = Rect2(1050, 904, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_31ikn"] +atlas = ExtResource("339_m1js6") +region = Rect2(1225, 904, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e1yxa"] +atlas = ExtResource("339_m1js6") +region = Rect2(1400, 904, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7a7ks"] +atlas = ExtResource("339_m1js6") +region = Rect2(0, 1130, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p2hq6"] +atlas = ExtResource("339_m1js6") +region = Rect2(175, 1130, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k3fbj"] +atlas = ExtResource("339_m1js6") +region = Rect2(350, 1130, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ylav8"] +atlas = ExtResource("339_m1js6") +region = Rect2(525, 1130, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xhgk2"] +atlas = ExtResource("339_m1js6") +region = Rect2(700, 1130, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_diucy"] +atlas = ExtResource("339_m1js6") +region = Rect2(875, 1130, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8gw5n"] +atlas = ExtResource("339_m1js6") +region = Rect2(1050, 1130, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hc5wr"] +atlas = ExtResource("339_m1js6") +region = Rect2(1225, 1130, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fugdi"] +atlas = ExtResource("339_m1js6") +region = Rect2(1400, 1130, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h222i"] +atlas = ExtResource("339_m1js6") +region = Rect2(0, 1356, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7qa4p"] +atlas = ExtResource("339_m1js6") +region = Rect2(175, 1356, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jbavk"] +atlas = ExtResource("339_m1js6") +region = Rect2(350, 1356, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ncorq"] +atlas = ExtResource("339_m1js6") +region = Rect2(525, 1356, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mdvft"] +atlas = ExtResource("339_m1js6") +region = Rect2(700, 1356, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ljrf5"] +atlas = ExtResource("339_m1js6") +region = Rect2(875, 1356, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r7ll6"] +atlas = ExtResource("339_m1js6") +region = Rect2(1050, 1356, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6vssn"] +atlas = ExtResource("339_m1js6") +region = Rect2(1225, 1356, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4lr8r"] +atlas = ExtResource("339_m1js6") +region = Rect2(1400, 1356, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xp4kq"] +atlas = ExtResource("339_m1js6") +region = Rect2(0, 1582, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_idymv"] +atlas = ExtResource("339_m1js6") +region = Rect2(175, 1582, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ujl1x"] +atlas = ExtResource("339_m1js6") +region = Rect2(350, 1582, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_37wgc"] +atlas = ExtResource("339_m1js6") +region = Rect2(525, 1582, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g5fso"] +atlas = ExtResource("339_m1js6") +region = Rect2(700, 1582, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4a47d"] +atlas = ExtResource("339_m1js6") +region = Rect2(875, 1582, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eh3iw"] +atlas = ExtResource("339_m1js6") +region = Rect2(1050, 1582, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jc54a"] +atlas = ExtResource("339_m1js6") +region = Rect2(1225, 1582, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xyo6b"] +atlas = ExtResource("339_m1js6") +region = Rect2(1400, 1582, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gnyks"] +atlas = ExtResource("339_m1js6") +region = Rect2(0, 1808, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_08lae"] +atlas = ExtResource("339_m1js6") +region = Rect2(175, 1808, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r710l"] +atlas = ExtResource("339_m1js6") +region = Rect2(350, 1808, 175, 226) + +[sub_resource type="SpriteFrames" id="SpriteFrames_oe72c"] +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("340_ll8af") +region = Rect2(134, 0, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_56ojt"] +atlas = ExtResource("340_ll8af") +region = Rect2(402, 0, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jwkdt"] +atlas = ExtResource("340_ll8af") +region = Rect2(670, 0, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tklqq"] +atlas = ExtResource("340_ll8af") +region = Rect2(938, 0, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0kd7d"] +atlas = ExtResource("340_ll8af") +region = Rect2(1206, 0, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uoo6g"] +atlas = ExtResource("340_ll8af") +region = Rect2(134, 134, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eyk0y"] +atlas = ExtResource("340_ll8af") +region = Rect2(402, 134, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0imbq"] +atlas = ExtResource("340_ll8af") +region = Rect2(670, 134, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oys1t"] +atlas = ExtResource("340_ll8af") +region = Rect2(938, 134, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_06alo"] +atlas = ExtResource("340_ll8af") +region = Rect2(1206, 134, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uoxdj"] +atlas = ExtResource("340_ll8af") +region = Rect2(134, 268, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rcb13"] +atlas = ExtResource("340_ll8af") +region = Rect2(402, 268, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pj86n"] +atlas = ExtResource("340_ll8af") +region = Rect2(670, 268, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qpw3f"] +atlas = ExtResource("340_ll8af") +region = Rect2(938, 268, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gn6h7"] +atlas = ExtResource("340_ll8af") +region = Rect2(1206, 268, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lkh03"] +atlas = ExtResource("340_ll8af") +region = Rect2(134, 402, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pdi3o"] +atlas = ExtResource("340_ll8af") +region = Rect2(402, 402, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s3ywy"] +atlas = ExtResource("340_ll8af") +region = Rect2(670, 402, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6idxu"] +atlas = ExtResource("340_ll8af") +region = Rect2(938, 402, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qndi3"] +atlas = ExtResource("340_ll8af") +region = Rect2(1206, 402, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y4ahc"] +atlas = ExtResource("340_ll8af") +region = Rect2(134, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y5c6p"] +atlas = ExtResource("340_ll8af") +region = Rect2(402, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oa8p3"] +atlas = ExtResource("340_ll8af") +region = Rect2(670, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rc08e"] +atlas = ExtResource("340_ll8af") +region = Rect2(938, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8tw6t"] +atlas = ExtResource("340_ll8af") +region = Rect2(1206, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_njvn5"] +atlas = ExtResource("340_ll8af") +region = Rect2(134, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cwp0x"] +atlas = ExtResource("340_ll8af") +region = Rect2(402, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hch5s"] +atlas = ExtResource("340_ll8af") +region = Rect2(670, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vgjuv"] +atlas = ExtResource("340_ll8af") +region = Rect2(938, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1502j"] +atlas = ExtResource("340_ll8af") +region = Rect2(1206, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5m1ra"] +atlas = ExtResource("340_ll8af") +region = Rect2(134, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l0imt"] +atlas = ExtResource("340_ll8af") +region = Rect2(402, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ywb2s"] +atlas = ExtResource("340_ll8af") +region = Rect2(670, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x5582"] +atlas = ExtResource("340_ll8af") +region = Rect2(938, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4uy6l"] +atlas = ExtResource("340_ll8af") +region = Rect2(1206, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_50esb"] +atlas = ExtResource("340_ll8af") +region = Rect2(134, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xnham"] +atlas = ExtResource("340_ll8af") +region = Rect2(402, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j1cf1"] +atlas = ExtResource("340_ll8af") +region = Rect2(670, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jvde4"] +atlas = ExtResource("340_ll8af") +region = Rect2(938, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dvkgv"] +atlas = ExtResource("340_ll8af") +region = Rect2(1206, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3ant7"] +atlas = ExtResource("340_ll8af") +region = Rect2(134, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a6f8y"] +atlas = ExtResource("340_ll8af") +region = Rect2(402, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ancbh"] +atlas = ExtResource("340_ll8af") +region = Rect2(670, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yes2c"] +atlas = ExtResource("340_ll8af") +region = Rect2(938, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cs2h2"] +atlas = ExtResource("340_ll8af") +region = Rect2(1206, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n2i2d"] +atlas = ExtResource("340_ll8af") +region = Rect2(134, 1206, 134, 134) + +[sub_resource type="SpriteFrames" id="SpriteFrames_u5vgn"] +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="BoxShape3D" id="BoxShape3D_53wuj"] size = Vector3(1, 0.565, 2) @@ -2120,6 +4807,483 @@ _data = { &"default": SubResource("Animation_b8jed") } +[sub_resource type="Animation" id="Animation_30xy4"] +resource_name = "CurseHit" +length = 1.56667 +tracks/0/type = "value" +tracks/0/imported = false +tracks/0/enabled = true +tracks/0/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Curse Hit Effect:animation") +tracks/0/interp = 1 +tracks/0/loop_wrap = true +tracks/0/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"default"] +} +tracks/1/type = "value" +tracks/1/imported = false +tracks/1/enabled = true +tracks/1/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Curse Hit Effect:frame") +tracks/1/interp = 1 +tracks/1/loop_wrap = true +tracks/1/keys = { +"times": PackedFloat32Array(0, 1.56667), +"transitions": PackedFloat32Array(1, 1), +"update": 0, +"values": [0, 47] +} + +[sub_resource type="Animation" id="Animation_3pm1j"] +resource_name = "EarthHit" +length = 1.46667 +tracks/0/type = "value" +tracks/0/imported = false +tracks/0/enabled = true +tracks/0/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Earth Hit Effect:animation") +tracks/0/interp = 1 +tracks/0/loop_wrap = true +tracks/0/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"EARTH DAMAGE"] +} +tracks/1/type = "value" +tracks/1/imported = false +tracks/1/enabled = true +tracks/1/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Earth Hit Effect:frame") +tracks/1/interp = 1 +tracks/1/loop_wrap = true +tracks/1/keys = { +"times": PackedFloat32Array(0, 1.46667), +"transitions": PackedFloat32Array(1, 1), +"update": 0, +"values": [0, 44] +} + +[sub_resource type="Animation" id="Animation_6shfu"] +resource_name = "Fire Damage" +length = 2.93334 +tracks/0/type = "value" +tracks/0/imported = false +tracks/0/enabled = true +tracks/0/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/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("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/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("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/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)] +} +tracks/3/type = "value" +tracks/3/imported = false +tracks/3/enabled = true +tracks/3/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Rust Activation Effect:animation") +tracks/3/interp = 1 +tracks/3/loop_wrap = true +tracks/3/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"default"] +} +tracks/4/type = "value" +tracks/4/imported = false +tracks/4/enabled = true +tracks/4/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Rust Activation Effect:frame") +tracks/4/interp = 1 +tracks/4/loop_wrap = true +tracks/4/keys = { +"times": PackedFloat32Array(0, 2.93333), +"transitions": PackedFloat32Array(1, 1), +"update": 0, +"values": [88, 88] +} + +[sub_resource type="Animation" id="Animation_f5cjs"] +resource_name = "HolyHit" +length = 0.700003 +tracks/0/type = "value" +tracks/0/imported = false +tracks/0/enabled = true +tracks/0/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Holy Hit Layer Effect:animation") +tracks/0/interp = 1 +tracks/0/loop_wrap = true +tracks/0/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"HOLY"] +} +tracks/1/type = "value" +tracks/1/imported = false +tracks/1/enabled = true +tracks/1/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Holy Hit Layer Effect:frame") +tracks/1/interp = 1 +tracks/1/loop_wrap = true +tracks/1/keys = { +"times": PackedFloat32Array(0, 0.7), +"transitions": PackedFloat32Array(1, 1), +"update": 0, +"values": [0, 21] +} + +[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("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/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("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/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("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/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"] +} +tracks/3/type = "value" +tracks/3/imported = false +tracks/3/enabled = true +tracks/3/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Rust Activation Effect:animation") +tracks/3/interp = 1 +tracks/3/loop_wrap = true +tracks/3/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"default"] +} +tracks/4/type = "value" +tracks/4/imported = false +tracks/4/enabled = true +tracks/4/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Rust Activation Effect:frame") +tracks/4/interp = 1 +tracks/4/loop_wrap = true +tracks/4/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [88] +} +tracks/5/type = "value" +tracks/5/imported = false +tracks/5/enabled = true +tracks/5/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Holy Hit Layer Effect:animation") +tracks/5/interp = 1 +tracks/5/loop_wrap = true +tracks/5/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"HOLY"] +} +tracks/6/type = "value" +tracks/6/imported = false +tracks/6/enabled = true +tracks/6/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Holy Hit Layer Effect:frame") +tracks/6/interp = 1 +tracks/6/loop_wrap = true +tracks/6/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [0] +} +tracks/7/type = "value" +tracks/7/imported = false +tracks/7/enabled = true +tracks/7/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Wind Hit Layer Effect:animation") +tracks/7/interp = 1 +tracks/7/loop_wrap = true +tracks/7/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"default"] +} +tracks/8/type = "value" +tracks/8/imported = false +tracks/8/enabled = true +tracks/8/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Wind Hit Layer Effect:frame") +tracks/8/interp = 1 +tracks/8/loop_wrap = true +tracks/8/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [50] +} +tracks/9/type = "value" +tracks/9/imported = false +tracks/9/enabled = true +tracks/9/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Water Hit Layer 1 Effect:animation") +tracks/9/interp = 1 +tracks/9/loop_wrap = true +tracks/9/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"WATER DAMAGE"] +} +tracks/10/type = "value" +tracks/10/imported = false +tracks/10/enabled = true +tracks/10/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Water Hit Layer 1 Effect:frame") +tracks/10/interp = 1 +tracks/10/loop_wrap = true +tracks/10/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [29] +} +tracks/11/type = "value" +tracks/11/imported = false +tracks/11/enabled = true +tracks/11/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Water Hit Layer 2Effect:animation") +tracks/11/interp = 1 +tracks/11/loop_wrap = true +tracks/11/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"WATER"] +} +tracks/12/type = "value" +tracks/12/imported = false +tracks/12/enabled = true +tracks/12/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Water Hit Layer 2Effect:frame") +tracks/12/interp = 1 +tracks/12/loop_wrap = true +tracks/12/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [51] +} +tracks/13/type = "value" +tracks/13/imported = false +tracks/13/enabled = true +tracks/13/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Curse Hit Effect:animation") +tracks/13/interp = 1 +tracks/13/loop_wrap = true +tracks/13/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"default"] +} +tracks/14/type = "value" +tracks/14/imported = false +tracks/14/enabled = true +tracks/14/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Curse Hit Effect:frame") +tracks/14/interp = 1 +tracks/14/loop_wrap = true +tracks/14/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [47] +} +tracks/15/type = "value" +tracks/15/imported = false +tracks/15/enabled = true +tracks/15/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Earth Hit Effect:animation") +tracks/15/interp = 1 +tracks/15/loop_wrap = true +tracks/15/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"WATER DAMAGE"] +} +tracks/16/type = "value" +tracks/16/imported = false +tracks/16/enabled = true +tracks/16/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Earth Hit Effect:frame") +tracks/16/interp = 1 +tracks/16/loop_wrap = true +tracks/16/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [0] +} + +[sub_resource type="Animation" id="Animation_0tqwp"] +resource_name = "RustActivate" +length = 1.46667 +step = 0.0166667 +tracks/0/type = "value" +tracks/0/imported = false +tracks/0/enabled = true +tracks/0/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Rust Activation Effect:animation") +tracks/0/interp = 1 +tracks/0/loop_wrap = true +tracks/0/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"default"] +} +tracks/1/type = "value" +tracks/1/imported = false +tracks/1/enabled = true +tracks/1/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Rust Activation Effect:frame") +tracks/1/interp = 1 +tracks/1/loop_wrap = true +tracks/1/keys = { +"times": PackedFloat32Array(0, 1.46667), +"transitions": PackedFloat32Array(1, 1), +"update": 0, +"values": [0, 88] +} + +[sub_resource type="Animation" id="Animation_q5dfb"] +resource_name = "WaterHit" +length = 1.7 +tracks/0/type = "value" +tracks/0/imported = false +tracks/0/enabled = true +tracks/0/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Water Hit Layer 1 Effect:animation") +tracks/0/interp = 1 +tracks/0/loop_wrap = true +tracks/0/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"WATER DAMAGE"] +} +tracks/1/type = "value" +tracks/1/imported = false +tracks/1/enabled = true +tracks/1/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Water Hit Layer 1 Effect:frame") +tracks/1/interp = 1 +tracks/1/loop_wrap = true +tracks/1/keys = { +"times": PackedFloat32Array(0, 1), +"transitions": PackedFloat32Array(1, 1), +"update": 0, +"values": [0, 29] +} +tracks/2/type = "value" +tracks/2/imported = false +tracks/2/enabled = true +tracks/2/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Water Hit Layer 2Effect:animation") +tracks/2/interp = 1 +tracks/2/loop_wrap = true +tracks/2/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"WATER"] +} +tracks/3/type = "value" +tracks/3/imported = false +tracks/3/enabled = true +tracks/3/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Water Hit Layer 2Effect:frame") +tracks/3/interp = 1 +tracks/3/loop_wrap = true +tracks/3/keys = { +"times": PackedFloat32Array(0, 1.7), +"transitions": PackedFloat32Array(1, 1), +"update": 0, +"values": [0, 51] +} + +[sub_resource type="Animation" id="Animation_godpv"] +resource_name = "WindHit" +length = 0.833335 +step = 0.0166667 +tracks/0/type = "value" +tracks/0/imported = false +tracks/0/enabled = true +tracks/0/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Wind Hit Layer Effect:animation") +tracks/0/interp = 1 +tracks/0/loop_wrap = true +tracks/0/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"default"] +} +tracks/1/type = "value" +tracks/1/imported = false +tracks/1/enabled = true +tracks/1/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Wind Hit Layer Effect:frame") +tracks/1/interp = 1 +tracks/1/loop_wrap = true +tracks/1/keys = { +"times": PackedFloat32Array(0, 0.833333), +"transitions": PackedFloat32Array(1, 1), +"update": 0, +"values": [0, 50] +} + +[sub_resource type="AnimationLibrary" id="AnimationLibrary_0tqwp"] +_data = { +&"CurseHit": SubResource("Animation_30xy4"), +&"EarthHit": SubResource("Animation_3pm1j"), +&"FireHit": SubResource("Animation_6shfu"), +&"HolyHit": SubResource("Animation_f5cjs"), +&"RESET": SubResource("Animation_cftgd"), +&"RustActivate": SubResource("Animation_0tqwp"), +&"WaterHit": SubResource("Animation_q5dfb"), +&"WindHit": SubResource("Animation_godpv") +} + [node name="EnemyModelView" type="Node3D"] script = ExtResource("1_wl7dh") EnemyLoreInfo = SubResource("Resource_f45wt") @@ -2156,6 +5320,60 @@ offset = Vector2(400, 375) sprite_frames = SubResource("SpriteFrames_d844v") offset = Vector2(400, 375) +[node name="VFXSprites" type="Node2D" parent="Sprite3D/SubViewportContainer/SubViewport"] + +[node name="Rust Activation Effect" type="AnimatedSprite2D" parent="Sprite3D/SubViewportContainer/SubViewport/VFXSprites"] +position = Vector2(400, 400) +scale = Vector2(1.54, 1.54) +sprite_frames = SubResource("SpriteFrames_705ek") +frame = 88 + +[node name="Holy Hit Layer Effect" type="AnimatedSprite2D" parent="Sprite3D/SubViewportContainer/SubViewport/VFXSprites"] +position = Vector2(400, 400) +scale = Vector2(0.675, 0.675) +sprite_frames = SubResource("SpriteFrames_mnqb5") +animation = &"HOLY" + +[node name="Wind Hit Layer Effect" type="AnimatedSprite2D" parent="Sprite3D/SubViewportContainer/SubViewport/VFXSprites"] +position = Vector2(400, 400) +scale = Vector2(1.445, 1.445) +sprite_frames = SubResource("SpriteFrames_vfgt0") +frame = 50 + +[node name="Flame Hit Effect" type="AnimatedSprite2D" parent="Sprite3D/SubViewportContainer/SubViewport/VFXSprites"] +position = Vector2(400, 400) +scale = Vector2(3.445, 3.445) +sprite_frames = SubResource("SpriteFrames_4tw0v") +animation = &"Flame Damage" +frame = 40 + +[node name="Water Hit Layer 1 Effect" type="AnimatedSprite2D" parent="Sprite3D/SubViewportContainer/SubViewport/VFXSprites"] +position = Vector2(400, 400) +scale = Vector2(2.215, 2.215) +sprite_frames = SubResource("SpriteFrames_rvkyf") +animation = &"WATER DAMAGE" +frame = 29 + +[node name="Water Hit Layer 2Effect" type="AnimatedSprite2D" parent="Sprite3D/SubViewportContainer/SubViewport/VFXSprites"] +position = Vector2(400, 400) +scale = Vector2(1.105, 0.895) +sprite_frames = SubResource("SpriteFrames_oe72c") +animation = &"WATER" +frame = 51 + +[node name="Curse Hit Effect" type="AnimatedSprite2D" parent="Sprite3D/SubViewportContainer/SubViewport/VFXSprites"] +texture_filter = 1 +position = Vector2(400, 400) +scale = Vector2(2.78, 2.78) +sprite_frames = SubResource("SpriteFrames_u5vgn") +frame = 47 + +[node name="Earth Hit Effect" type="AnimatedSprite2D" parent="Sprite3D/SubViewportContainer/SubViewport/VFXSprites"] +position = Vector2(400, 400) +scale = Vector2(2.005, 2.005) +sprite_frames = SubResource("SpriteFrames_rvkyf") +animation = &"WATER DAMAGE" + [node name="Hitbox" type="Area3D" parent="."] unique_name_in_owner = true transform = Transform3D(-1, 0, -8.74228e-08, 0, 1, 0, 8.74228e-08, 0, -1, -0.152949, 1.34728, 0) @@ -2205,3 +5423,51 @@ unique_name_in_owner = true transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1.48862, 0) autoplay = true bus = &"SFX" + +[node name="VFXAnimations" type="Node" parent="."] + +[node name="FlameHitAnimation" type="AnimationPlayer" parent="VFXAnimations"] +unique_name_in_owner = true +libraries = { +&"": SubResource("AnimationLibrary_0tqwp") +} + +[node name="RustHitAnimation" type="AnimationPlayer" parent="VFXAnimations"] +unique_name_in_owner = true +root_node = NodePath("../../Secondary Animation Player") +libraries = { +&"": SubResource("AnimationLibrary_0tqwp") +} + +[node name="HolyHitAnimation" type="AnimationPlayer" parent="VFXAnimations"] +unique_name_in_owner = true +libraries = { +&"": SubResource("AnimationLibrary_0tqwp") +} + +[node name="WindHitAnimation" type="AnimationPlayer" parent="VFXAnimations"] +unique_name_in_owner = true +libraries = { +&"": SubResource("AnimationLibrary_0tqwp") +} + +[node name="WaterHitAnimation" type="AnimationPlayer" parent="VFXAnimations"] +unique_name_in_owner = true +root_node = NodePath("../../Secondary Animation Player") +libraries = { +&"": SubResource("AnimationLibrary_0tqwp") +} + +[node name="CurseHitAnimation" type="AnimationPlayer" parent="VFXAnimations"] +unique_name_in_owner = true +root_node = NodePath("../../Secondary Animation Player") +libraries = { +&"": SubResource("AnimationLibrary_0tqwp") +} + +[node name="EarthHitAnimation" type="AnimationPlayer" parent="VFXAnimations"] +unique_name_in_owner = true +root_node = NodePath("../../Secondary Animation Player") +libraries = { +&"": SubResource("AnimationLibrary_0tqwp") +} diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/11. Palan/PalanModelView.tscn b/Zennysoft.Game.Ma/src/enemy/enemy_types/11. Palan/PalanModelView.tscn index 1d0b3efe..47af6659 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/11. Palan/PalanModelView.tscn +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/11. Palan/PalanModelView.tscn @@ -1,4 +1,4 @@ -[gd_scene load_steps=324 format=3 uid="uid://cuar5bbhxie4r"] +[gd_scene load_steps=719 format=3 uid="uid://cuar5bbhxie4r"] [ext_resource type="Script" uid="uid://cvr1qimxpignl" path="res://src/enemy/EnemyModelView2D.cs" id="1_yke7o"] [ext_resource type="Texture2D" uid="uid://cob5mo4lrbkrp" path="res://src/enemy/enemy_types/11. Palan/animations/B/frame_000_delay-0.01s.png" id="2_lf0wi"] @@ -202,13 +202,21 @@ [ext_resource type="Texture2D" uid="uid://ckuymrppoajnk" path="res://src/enemy/enemy_types/11. Palan/animations/R/frame_179_delay-0.01s.png" id="97_83iec"] [ext_resource type="Texture2D" uid="uid://bq85jeydr4li8" path="res://src/enemy/enemy_types/11. Palan/animations/R/frame_180_delay-0.01s.png" id="98_jwe14"] [ext_resource type="AudioStream" uid="uid://u0mgeqh3omgg" path="res://src/audio/sfx/enemy_palan_sunspear.ogg" id="202_1bumx"] +[ext_resource type="Texture2D" uid="uid://dq70aipwl1qrg" path="res://src/vfx/Enemy Affected/Rust Particles.png" id="202_u6rpl"] [ext_resource type="AudioStream" uid="uid://broxiumcyyt4m" path="res://src/audio/sfx/ENEMY_palan_magic2.ogg" id="203_0yqqu"] [ext_resource type="AnimationNodeStateMachine" uid="uid://co7lshemjrro8" path="res://src/enemy/animation_state_machines/IdleStateMachine.tres" id="203_krcdq"] +[ext_resource type="Texture2D" uid="uid://by0ehygy7bq13" path="res://src/vfx/Enemy Affected/Holy Damage.png" id="203_xmbum"] +[ext_resource type="Texture2D" uid="uid://dqqhu0s51o3n7" path="res://src/vfx/Enemy Affected/Wind Damage.png" id="204_5etdo"] [ext_resource type="AnimationNodeStateMachine" uid="uid://cbq8xog50cjjy" path="res://src/enemy/animation_state_machines/PrimaryAttackStateMachine.tres" id="204_vaycn"] [ext_resource type="AnimationNodeStateMachine" uid="uid://clybvwx3itfeo" path="res://src/enemy/animation_state_machines/SecondaryAttackStateMachine.tres" id="205_klhid"] +[ext_resource type="Texture2D" uid="uid://dh6mk1c35nymx" path="res://src/vfx/Enemy Affected/firedamage.png" id="205_l2yl1"] [ext_resource type="AnimationNodeStateMachine" uid="uid://cy2ngl55c0rws" path="res://src/enemy/animation_state_machines/WalkingStateMachine.tres" id="206_1bumx"] +[ext_resource type="Texture2D" uid="uid://7a42df2ijrmv" path="res://src/vfx/Enemy Affected/earth damage.png" id="206_xldvr"] +[ext_resource type="Texture2D" uid="uid://cot4wx5fg5pfs" path="res://src/vfx/Enemy Affected/water_hit_layer2.png" id="207_73ixp"] [ext_resource type="Texture2D" uid="uid://cmgw55dygbvqj" path="res://src/vfx/Enemy/sunblast.png" id="207_klhid"] [ext_resource type="Texture2D" uid="uid://bn83xiolaxr6j" path="res://src/vfx/Enemy/PALANQUIN ATTACK 1.png" id="208_1bumx"] +[ext_resource type="Texture2D" uid="uid://cbei66g134fgv" path="res://src/vfx/Enemy Affected/water layer 1.png" id="208_yn1iw"] +[ext_resource type="Texture2D" uid="uid://bp6npqoco5fl3" path="res://src/vfx/Enemy Affected/curse_damage.png" id="209_vyvum"] [ext_resource type="PackedScene" uid="uid://dmyi1egj1veaw" path="res://src/enemy/enemy_types/11. Palan/PalanProjectile.tscn" id="210_lid5r"] [ext_resource type="Texture2D" uid="uid://dafpnwkwcukp4" path="res://src/vfx/shadow_test_1.png" id="212_lid5r"] [ext_resource type="Script" uid="uid://chxka5g7yvcg" path="res://src/projectile/ProjectileSystem.cs" id="213_au0i1"] @@ -911,6 +919,2685 @@ animations = [{ "speed": 5.0 }] +[sub_resource type="AtlasTexture" id="AtlasTexture_4o5f2"] +atlas = ExtResource("202_u6rpl") +region = Rect2(1206, 402, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r8ggx"] +atlas = ExtResource("202_u6rpl") +region = Rect2(1340, 402, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xafpd"] +atlas = ExtResource("202_u6rpl") +region = Rect2(1474, 402, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_73dpc"] +atlas = ExtResource("202_u6rpl") +region = Rect2(0, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vppxt"] +atlas = ExtResource("202_u6rpl") +region = Rect2(134, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nk562"] +atlas = ExtResource("202_u6rpl") +region = Rect2(268, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dwu2q"] +atlas = ExtResource("202_u6rpl") +region = Rect2(402, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w3p3j"] +atlas = ExtResource("202_u6rpl") +region = Rect2(536, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ig0ip"] +atlas = ExtResource("202_u6rpl") +region = Rect2(670, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r4enw"] +atlas = ExtResource("202_u6rpl") +region = Rect2(804, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uy6hg"] +atlas = ExtResource("202_u6rpl") +region = Rect2(938, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_85jwg"] +atlas = ExtResource("202_u6rpl") +region = Rect2(1072, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ln7dl"] +atlas = ExtResource("202_u6rpl") +region = Rect2(1206, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3vvgp"] +atlas = ExtResource("202_u6rpl") +region = Rect2(1340, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_01f7m"] +atlas = ExtResource("202_u6rpl") +region = Rect2(1474, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pp21u"] +atlas = ExtResource("202_u6rpl") +region = Rect2(0, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1aldj"] +atlas = ExtResource("202_u6rpl") +region = Rect2(134, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xv5pw"] +atlas = ExtResource("202_u6rpl") +region = Rect2(268, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_14lh3"] +atlas = ExtResource("202_u6rpl") +region = Rect2(402, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xxid6"] +atlas = ExtResource("202_u6rpl") +region = Rect2(536, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y6yeo"] +atlas = ExtResource("202_u6rpl") +region = Rect2(670, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2aohu"] +atlas = ExtResource("202_u6rpl") +region = Rect2(804, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ebvc7"] +atlas = ExtResource("202_u6rpl") +region = Rect2(938, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yd50d"] +atlas = ExtResource("202_u6rpl") +region = Rect2(1072, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yimdu"] +atlas = ExtResource("202_u6rpl") +region = Rect2(1206, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dync1"] +atlas = ExtResource("202_u6rpl") +region = Rect2(1340, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jsjdk"] +atlas = ExtResource("202_u6rpl") +region = Rect2(1474, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ueih5"] +atlas = ExtResource("202_u6rpl") +region = Rect2(0, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k0hut"] +atlas = ExtResource("202_u6rpl") +region = Rect2(134, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kybji"] +atlas = ExtResource("202_u6rpl") +region = Rect2(268, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u5vpt"] +atlas = ExtResource("202_u6rpl") +region = Rect2(402, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wko4t"] +atlas = ExtResource("202_u6rpl") +region = Rect2(536, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ru86o"] +atlas = ExtResource("202_u6rpl") +region = Rect2(670, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uybbj"] +atlas = ExtResource("202_u6rpl") +region = Rect2(804, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s6pp8"] +atlas = ExtResource("202_u6rpl") +region = Rect2(938, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a7pls"] +atlas = ExtResource("202_u6rpl") +region = Rect2(1072, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_30y71"] +atlas = ExtResource("202_u6rpl") +region = Rect2(1206, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dwl1c"] +atlas = ExtResource("202_u6rpl") +region = Rect2(1340, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_01jp4"] +atlas = ExtResource("202_u6rpl") +region = Rect2(1474, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b8ulh"] +atlas = ExtResource("202_u6rpl") +region = Rect2(0, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3walv"] +atlas = ExtResource("202_u6rpl") +region = Rect2(134, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_exyoj"] +atlas = ExtResource("202_u6rpl") +region = Rect2(268, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kus54"] +atlas = ExtResource("202_u6rpl") +region = Rect2(402, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_meauc"] +atlas = ExtResource("202_u6rpl") +region = Rect2(536, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7v7xr"] +atlas = ExtResource("202_u6rpl") +region = Rect2(670, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4ktea"] +atlas = ExtResource("202_u6rpl") +region = Rect2(804, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l8oa1"] +atlas = ExtResource("202_u6rpl") +region = Rect2(938, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3eopa"] +atlas = ExtResource("202_u6rpl") +region = Rect2(1072, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ip8hv"] +atlas = ExtResource("202_u6rpl") +region = Rect2(1206, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_42rbq"] +atlas = ExtResource("202_u6rpl") +region = Rect2(1340, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tu0vu"] +atlas = ExtResource("202_u6rpl") +region = Rect2(1474, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gbh7l"] +atlas = ExtResource("202_u6rpl") +region = Rect2(0, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_733jx"] +atlas = ExtResource("202_u6rpl") +region = Rect2(134, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sfa2q"] +atlas = ExtResource("202_u6rpl") +region = Rect2(268, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o0nvo"] +atlas = ExtResource("202_u6rpl") +region = Rect2(402, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1mv1w"] +atlas = ExtResource("202_u6rpl") +region = Rect2(536, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yw8ob"] +atlas = ExtResource("202_u6rpl") +region = Rect2(670, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ptkbd"] +atlas = ExtResource("202_u6rpl") +region = Rect2(804, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2uoiw"] +atlas = ExtResource("202_u6rpl") +region = Rect2(938, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4m684"] +atlas = ExtResource("202_u6rpl") +region = Rect2(1072, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_st6fj"] +atlas = ExtResource("202_u6rpl") +region = Rect2(1206, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1wana"] +atlas = ExtResource("202_u6rpl") +region = Rect2(1340, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ati4e"] +atlas = ExtResource("202_u6rpl") +region = Rect2(1474, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0w31q"] +atlas = ExtResource("202_u6rpl") +region = Rect2(0, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uxu33"] +atlas = ExtResource("202_u6rpl") +region = Rect2(134, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2ulnd"] +atlas = ExtResource("202_u6rpl") +region = Rect2(268, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ddsrn"] +atlas = ExtResource("202_u6rpl") +region = Rect2(402, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n1e5w"] +atlas = ExtResource("202_u6rpl") +region = Rect2(536, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f4aq5"] +atlas = ExtResource("202_u6rpl") +region = Rect2(670, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_er00h"] +atlas = ExtResource("202_u6rpl") +region = Rect2(804, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mlf5c"] +atlas = ExtResource("202_u6rpl") +region = Rect2(938, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c362w"] +atlas = ExtResource("202_u6rpl") +region = Rect2(1072, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_30wb7"] +atlas = ExtResource("202_u6rpl") +region = Rect2(1206, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_stb0b"] +atlas = ExtResource("202_u6rpl") +region = Rect2(1340, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a64qf"] +atlas = ExtResource("202_u6rpl") +region = Rect2(1474, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_52bkw"] +atlas = ExtResource("202_u6rpl") +region = Rect2(0, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y0yvc"] +atlas = ExtResource("202_u6rpl") +region = Rect2(134, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5h2xe"] +atlas = ExtResource("202_u6rpl") +region = Rect2(268, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6hh33"] +atlas = ExtResource("202_u6rpl") +region = Rect2(402, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kmk3m"] +atlas = ExtResource("202_u6rpl") +region = Rect2(536, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rbtmh"] +atlas = ExtResource("202_u6rpl") +region = Rect2(670, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bit6n"] +atlas = ExtResource("202_u6rpl") +region = Rect2(804, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_458hw"] +atlas = ExtResource("202_u6rpl") +region = Rect2(938, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4x2ea"] +atlas = ExtResource("202_u6rpl") +region = Rect2(1072, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bcljt"] +atlas = ExtResource("202_u6rpl") +region = Rect2(1206, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p6e34"] +atlas = ExtResource("202_u6rpl") +region = Rect2(1340, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2yfi0"] +atlas = ExtResource("202_u6rpl") +region = Rect2(1474, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bhoxy"] +atlas = ExtResource("202_u6rpl") +region = Rect2(0, 1474, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_41wyx"] +atlas = ExtResource("202_u6rpl") +region = Rect2(134, 1474, 134, 134) + +[sub_resource type="SpriteFrames" id="SpriteFrames_r8nxd"] +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("203_xmbum") +region = Rect2(1024, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pvn2l"] +atlas = ExtResource("203_xmbum") +region = Rect2(1536, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sctov"] +atlas = ExtResource("203_xmbum") +region = Rect2(2048, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_46bwa"] +atlas = ExtResource("203_xmbum") +region = Rect2(2560, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o42jv"] +atlas = ExtResource("203_xmbum") +region = Rect2(3072, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5dqsk"] +atlas = ExtResource("203_xmbum") +region = Rect2(3584, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_35l4k"] +atlas = ExtResource("203_xmbum") +region = Rect2(4096, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x0jfm"] +atlas = ExtResource("203_xmbum") +region = Rect2(4608, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fk16r"] +atlas = ExtResource("203_xmbum") +region = Rect2(5120, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ewtdr"] +atlas = ExtResource("203_xmbum") +region = Rect2(5632, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bul51"] +atlas = ExtResource("203_xmbum") +region = Rect2(6144, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vbobf"] +atlas = ExtResource("203_xmbum") +region = Rect2(6656, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_itqlk"] +atlas = ExtResource("203_xmbum") +region = Rect2(7168, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_41jjh"] +atlas = ExtResource("203_xmbum") +region = Rect2(7680, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kol03"] +atlas = ExtResource("203_xmbum") +region = Rect2(0, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ynyxy"] +atlas = ExtResource("203_xmbum") +region = Rect2(512, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ngcxk"] +atlas = ExtResource("203_xmbum") +region = Rect2(1024, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ba8fa"] +atlas = ExtResource("203_xmbum") +region = Rect2(1536, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ngitf"] +atlas = ExtResource("203_xmbum") +region = Rect2(2048, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_boovf"] +atlas = ExtResource("203_xmbum") +region = Rect2(2560, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jwkhr"] +atlas = ExtResource("203_xmbum") +region = Rect2(3072, 512, 512, 512) + +[sub_resource type="SpriteFrames" id="SpriteFrames_3t1w7"] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": null +}, { +"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("204_5etdo") +region = Rect2(0, 0, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3jmy8"] +atlas = ExtResource("204_5etdo") +region = Rect2(266, 0, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t76hk"] +atlas = ExtResource("204_5etdo") +region = Rect2(532, 0, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_06gff"] +atlas = ExtResource("204_5etdo") +region = Rect2(798, 0, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ssjgs"] +atlas = ExtResource("204_5etdo") +region = Rect2(1064, 0, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_53u6k"] +atlas = ExtResource("204_5etdo") +region = Rect2(0, 131, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_inmu7"] +atlas = ExtResource("204_5etdo") +region = Rect2(266, 131, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bmkvg"] +atlas = ExtResource("204_5etdo") +region = Rect2(532, 131, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oqdmj"] +atlas = ExtResource("204_5etdo") +region = Rect2(798, 131, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bnn41"] +atlas = ExtResource("204_5etdo") +region = Rect2(1064, 131, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p6hmn"] +atlas = ExtResource("204_5etdo") +region = Rect2(0, 262, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s0ybe"] +atlas = ExtResource("204_5etdo") +region = Rect2(266, 262, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y2273"] +atlas = ExtResource("204_5etdo") +region = Rect2(532, 262, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2i87r"] +atlas = ExtResource("204_5etdo") +region = Rect2(798, 262, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4q8o2"] +atlas = ExtResource("204_5etdo") +region = Rect2(1064, 262, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_esxmc"] +atlas = ExtResource("204_5etdo") +region = Rect2(0, 393, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rdsur"] +atlas = ExtResource("204_5etdo") +region = Rect2(266, 393, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b2qt4"] +atlas = ExtResource("204_5etdo") +region = Rect2(532, 393, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xamrr"] +atlas = ExtResource("204_5etdo") +region = Rect2(798, 393, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0prqh"] +atlas = ExtResource("204_5etdo") +region = Rect2(1064, 393, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dh1oc"] +atlas = ExtResource("204_5etdo") +region = Rect2(0, 524, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ybb1w"] +atlas = ExtResource("204_5etdo") +region = Rect2(266, 524, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2nkua"] +atlas = ExtResource("204_5etdo") +region = Rect2(532, 524, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2gocr"] +atlas = ExtResource("204_5etdo") +region = Rect2(798, 524, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_acsou"] +atlas = ExtResource("204_5etdo") +region = Rect2(1064, 524, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yflou"] +atlas = ExtResource("204_5etdo") +region = Rect2(0, 655, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_env3c"] +atlas = ExtResource("204_5etdo") +region = Rect2(266, 655, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_74f4l"] +atlas = ExtResource("204_5etdo") +region = Rect2(532, 655, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cbaq7"] +atlas = ExtResource("204_5etdo") +region = Rect2(798, 655, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bc4hh"] +atlas = ExtResource("204_5etdo") +region = Rect2(1064, 655, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5m27y"] +atlas = ExtResource("204_5etdo") +region = Rect2(0, 786, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c2vig"] +atlas = ExtResource("204_5etdo") +region = Rect2(266, 786, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h8qbh"] +atlas = ExtResource("204_5etdo") +region = Rect2(532, 786, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vj2ia"] +atlas = ExtResource("204_5etdo") +region = Rect2(798, 786, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h0bv3"] +atlas = ExtResource("204_5etdo") +region = Rect2(1064, 786, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3xb07"] +atlas = ExtResource("204_5etdo") +region = Rect2(0, 917, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p845e"] +atlas = ExtResource("204_5etdo") +region = Rect2(266, 917, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nm575"] +atlas = ExtResource("204_5etdo") +region = Rect2(532, 917, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8wvvt"] +atlas = ExtResource("204_5etdo") +region = Rect2(798, 917, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2l45l"] +atlas = ExtResource("204_5etdo") +region = Rect2(1064, 917, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0c6u7"] +atlas = ExtResource("204_5etdo") +region = Rect2(0, 1048, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bo1qh"] +atlas = ExtResource("204_5etdo") +region = Rect2(266, 1048, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4cq22"] +atlas = ExtResource("204_5etdo") +region = Rect2(532, 1048, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d6auk"] +atlas = ExtResource("204_5etdo") +region = Rect2(798, 1048, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4bvg3"] +atlas = ExtResource("204_5etdo") +region = Rect2(1064, 1048, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rps4p"] +atlas = ExtResource("204_5etdo") +region = Rect2(0, 1179, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qdy2n"] +atlas = ExtResource("204_5etdo") +region = Rect2(266, 1179, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a63dt"] +atlas = ExtResource("204_5etdo") +region = Rect2(532, 1179, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3alol"] +atlas = ExtResource("204_5etdo") +region = Rect2(798, 1179, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w5y4o"] +atlas = ExtResource("204_5etdo") +region = Rect2(1064, 1179, 133, 131) + +[sub_resource type="SpriteFrames" id="SpriteFrames_wfs0y"] +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("205_l2yl1") +region = Rect2(200, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w5yum"] +atlas = ExtResource("205_l2yl1") +region = Rect2(600, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xagiq"] +atlas = ExtResource("205_l2yl1") +region = Rect2(1000, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iu4h2"] +atlas = ExtResource("205_l2yl1") +region = Rect2(100, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t6kmk"] +atlas = ExtResource("205_l2yl1") +region = Rect2(500, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c3c22"] +atlas = ExtResource("205_l2yl1") +region = Rect2(900, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_udm06"] +atlas = ExtResource("205_l2yl1") +region = Rect2(0, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_31shi"] +atlas = ExtResource("205_l2yl1") +region = Rect2(400, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i6wsf"] +atlas = ExtResource("205_l2yl1") +region = Rect2(800, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jhluk"] +atlas = ExtResource("205_l2yl1") +region = Rect2(1200, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_exq74"] +atlas = ExtResource("205_l2yl1") +region = Rect2(300, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k7tc1"] +atlas = ExtResource("205_l2yl1") +region = Rect2(700, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_456io"] +atlas = ExtResource("205_l2yl1") +region = Rect2(1100, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2h7ac"] +atlas = ExtResource("205_l2yl1") +region = Rect2(200, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dy5lo"] +atlas = ExtResource("205_l2yl1") +region = Rect2(500, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_biyyn"] +atlas = ExtResource("205_l2yl1") +region = Rect2(1000, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_flqm1"] +atlas = ExtResource("205_l2yl1") +region = Rect2(100, 500, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xttn8"] +atlas = ExtResource("205_l2yl1") +region = Rect2(500, 500, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_85rsb"] +atlas = ExtResource("205_l2yl1") +region = Rect2(900, 500, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oxqm1"] +atlas = ExtResource("205_l2yl1") +region = Rect2(0, 600, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dphle"] +atlas = ExtResource("205_l2yl1") +region = Rect2(400, 600, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_48bul"] +atlas = ExtResource("205_l2yl1") +region = Rect2(800, 600, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2d6tt"] +atlas = ExtResource("205_l2yl1") +region = Rect2(1200, 600, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ty41g"] +atlas = ExtResource("205_l2yl1") +region = Rect2(300, 700, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c5uyp"] +atlas = ExtResource("205_l2yl1") +region = Rect2(700, 700, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tf4dl"] +atlas = ExtResource("205_l2yl1") +region = Rect2(1100, 700, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cvdlu"] +atlas = ExtResource("205_l2yl1") +region = Rect2(200, 800, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f25l1"] +atlas = ExtResource("205_l2yl1") +region = Rect2(600, 800, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v033q"] +atlas = ExtResource("205_l2yl1") +region = Rect2(1000, 800, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xgfkn"] +atlas = ExtResource("205_l2yl1") +region = Rect2(100, 900, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_duxfd"] +atlas = ExtResource("205_l2yl1") +region = Rect2(500, 900, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5uvt0"] +atlas = ExtResource("205_l2yl1") +region = Rect2(900, 900, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7d05g"] +atlas = ExtResource("205_l2yl1") +region = Rect2(0, 1000, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x0ube"] +atlas = ExtResource("205_l2yl1") +region = Rect2(400, 1000, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_15y07"] +atlas = ExtResource("205_l2yl1") +region = Rect2(800, 1000, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_de0po"] +atlas = ExtResource("205_l2yl1") +region = Rect2(1200, 1000, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b3rtc"] +atlas = ExtResource("205_l2yl1") +region = Rect2(300, 1100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q32lt"] +atlas = ExtResource("205_l2yl1") +region = Rect2(700, 1100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_88hqh"] +atlas = ExtResource("205_l2yl1") +region = Rect2(1100, 1100, 100, 100) + +[sub_resource type="SpriteFrames" id="SpriteFrames_ucayo"] +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("206_xldvr") +region = Rect2(0, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0rj30"] +atlas = ExtResource("206_xldvr") +region = Rect2(200, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ug1a1"] +atlas = ExtResource("206_xldvr") +region = Rect2(400, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8eees"] +atlas = ExtResource("206_xldvr") +region = Rect2(600, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k2i7i"] +atlas = ExtResource("206_xldvr") +region = Rect2(800, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4wwo5"] +atlas = ExtResource("206_xldvr") +region = Rect2(0, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_418m2"] +atlas = ExtResource("206_xldvr") +region = Rect2(200, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6g5qj"] +atlas = ExtResource("206_xldvr") +region = Rect2(400, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k3sey"] +atlas = ExtResource("206_xldvr") +region = Rect2(600, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ms40v"] +atlas = ExtResource("206_xldvr") +region = Rect2(800, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2tfej"] +atlas = ExtResource("206_xldvr") +region = Rect2(0, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_woj7f"] +atlas = ExtResource("206_xldvr") +region = Rect2(200, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kg861"] +atlas = ExtResource("206_xldvr") +region = Rect2(400, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jtxxp"] +atlas = ExtResource("206_xldvr") +region = Rect2(600, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sxooa"] +atlas = ExtResource("206_xldvr") +region = Rect2(800, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hkj2y"] +atlas = ExtResource("206_xldvr") +region = Rect2(0, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wm40h"] +atlas = ExtResource("206_xldvr") +region = Rect2(200, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u66v8"] +atlas = ExtResource("206_xldvr") +region = Rect2(400, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6ip85"] +atlas = ExtResource("206_xldvr") +region = Rect2(600, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qad2i"] +atlas = ExtResource("206_xldvr") +region = Rect2(800, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nifqu"] +atlas = ExtResource("206_xldvr") +region = Rect2(0, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_goocc"] +atlas = ExtResource("206_xldvr") +region = Rect2(200, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l78ua"] +atlas = ExtResource("206_xldvr") +region = Rect2(400, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ybqlc"] +atlas = ExtResource("206_xldvr") +region = Rect2(600, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d0lry"] +atlas = ExtResource("206_xldvr") +region = Rect2(800, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ccb2v"] +atlas = ExtResource("206_xldvr") +region = Rect2(0, 500, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dcp7h"] +atlas = ExtResource("206_xldvr") +region = Rect2(200, 500, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3kud6"] +atlas = ExtResource("206_xldvr") +region = Rect2(400, 500, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0tvc2"] +atlas = ExtResource("206_xldvr") +region = Rect2(600, 500, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g5aky"] +atlas = ExtResource("206_xldvr") +region = Rect2(800, 500, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nyc7u"] +atlas = ExtResource("206_xldvr") +region = Rect2(0, 600, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q1yeq"] +atlas = ExtResource("206_xldvr") +region = Rect2(200, 600, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pupfb"] +atlas = ExtResource("206_xldvr") +region = Rect2(400, 600, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gfe8c"] +atlas = ExtResource("206_xldvr") +region = Rect2(600, 600, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_76bl1"] +atlas = ExtResource("206_xldvr") +region = Rect2(800, 600, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u7frn"] +atlas = ExtResource("206_xldvr") +region = Rect2(0, 700, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ls3an"] +atlas = ExtResource("206_xldvr") +region = Rect2(200, 700, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4l6e0"] +atlas = ExtResource("206_xldvr") +region = Rect2(400, 700, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cvlbl"] +atlas = ExtResource("206_xldvr") +region = Rect2(600, 700, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jkvpv"] +atlas = ExtResource("206_xldvr") +region = Rect2(800, 700, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lpp7o"] +atlas = ExtResource("206_xldvr") +region = Rect2(0, 800, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v8igx"] +atlas = ExtResource("206_xldvr") +region = Rect2(200, 800, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mmm0q"] +atlas = ExtResource("206_xldvr") +region = Rect2(400, 800, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5ukt7"] +atlas = ExtResource("206_xldvr") +region = Rect2(600, 800, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0pkd7"] +atlas = ExtResource("206_xldvr") +region = Rect2(800, 800, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n85t7"] +atlas = ExtResource("207_73ixp") +region = Rect2(0, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nb4v4"] +atlas = ExtResource("207_73ixp") +region = Rect2(100, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cl00x"] +atlas = ExtResource("207_73ixp") +region = Rect2(200, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ufcsw"] +atlas = ExtResource("207_73ixp") +region = Rect2(300, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aoisp"] +atlas = ExtResource("207_73ixp") +region = Rect2(400, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3rkdy"] +atlas = ExtResource("207_73ixp") +region = Rect2(500, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o0dym"] +atlas = ExtResource("207_73ixp") +region = Rect2(0, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vxihx"] +atlas = ExtResource("207_73ixp") +region = Rect2(100, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ofpmt"] +atlas = ExtResource("207_73ixp") +region = Rect2(200, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ux0ir"] +atlas = ExtResource("207_73ixp") +region = Rect2(300, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8dgch"] +atlas = ExtResource("207_73ixp") +region = Rect2(400, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7ixin"] +atlas = ExtResource("207_73ixp") +region = Rect2(500, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2kea0"] +atlas = ExtResource("207_73ixp") +region = Rect2(0, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kgnps"] +atlas = ExtResource("207_73ixp") +region = Rect2(100, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g2wgu"] +atlas = ExtResource("207_73ixp") +region = Rect2(200, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0oosk"] +atlas = ExtResource("207_73ixp") +region = Rect2(300, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_80k2g"] +atlas = ExtResource("207_73ixp") +region = Rect2(400, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fskx7"] +atlas = ExtResource("207_73ixp") +region = Rect2(500, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_no3pe"] +atlas = ExtResource("207_73ixp") +region = Rect2(0, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_15fnm"] +atlas = ExtResource("207_73ixp") +region = Rect2(100, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r5e73"] +atlas = ExtResource("207_73ixp") +region = Rect2(200, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2im8t"] +atlas = ExtResource("207_73ixp") +region = Rect2(300, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mxl2m"] +atlas = ExtResource("207_73ixp") +region = Rect2(400, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6dwuh"] +atlas = ExtResource("207_73ixp") +region = Rect2(500, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_53c1f"] +atlas = ExtResource("207_73ixp") +region = Rect2(0, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mmbhy"] +atlas = ExtResource("207_73ixp") +region = Rect2(100, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uwbh3"] +atlas = ExtResource("207_73ixp") +region = Rect2(200, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j6v2y"] +atlas = ExtResource("207_73ixp") +region = Rect2(300, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h5xbu"] +atlas = ExtResource("207_73ixp") +region = Rect2(400, 400, 100, 100) + +[sub_resource type="SpriteFrames" id="SpriteFrames_7pkyy"] +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("208_yn1iw") +region = Rect2(875, 452, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ekrqp"] +atlas = ExtResource("208_yn1iw") +region = Rect2(1050, 452, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dvnic"] +atlas = ExtResource("208_yn1iw") +region = Rect2(1225, 452, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rxdv7"] +atlas = ExtResource("208_yn1iw") +region = Rect2(1400, 452, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0pvcp"] +atlas = ExtResource("208_yn1iw") +region = Rect2(0, 678, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yga3t"] +atlas = ExtResource("208_yn1iw") +region = Rect2(175, 678, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c6qrx"] +atlas = ExtResource("208_yn1iw") +region = Rect2(350, 678, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fkryw"] +atlas = ExtResource("208_yn1iw") +region = Rect2(525, 678, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jt7jg"] +atlas = ExtResource("208_yn1iw") +region = Rect2(700, 678, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6eyjl"] +atlas = ExtResource("208_yn1iw") +region = Rect2(875, 678, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tsolq"] +atlas = ExtResource("208_yn1iw") +region = Rect2(1050, 678, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_opqal"] +atlas = ExtResource("208_yn1iw") +region = Rect2(1225, 678, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kia47"] +atlas = ExtResource("208_yn1iw") +region = Rect2(1400, 678, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6aolf"] +atlas = ExtResource("208_yn1iw") +region = Rect2(0, 904, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g6jok"] +atlas = ExtResource("208_yn1iw") +region = Rect2(175, 904, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_swdkn"] +atlas = ExtResource("208_yn1iw") +region = Rect2(350, 904, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_edlre"] +atlas = ExtResource("208_yn1iw") +region = Rect2(525, 904, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gbj32"] +atlas = ExtResource("208_yn1iw") +region = Rect2(700, 904, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bstol"] +atlas = ExtResource("208_yn1iw") +region = Rect2(875, 904, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_57vey"] +atlas = ExtResource("208_yn1iw") +region = Rect2(1050, 904, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_31ikn"] +atlas = ExtResource("208_yn1iw") +region = Rect2(1225, 904, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e1yxa"] +atlas = ExtResource("208_yn1iw") +region = Rect2(1400, 904, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7a7ks"] +atlas = ExtResource("208_yn1iw") +region = Rect2(0, 1130, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p2hq6"] +atlas = ExtResource("208_yn1iw") +region = Rect2(175, 1130, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k3fbj"] +atlas = ExtResource("208_yn1iw") +region = Rect2(350, 1130, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ylav8"] +atlas = ExtResource("208_yn1iw") +region = Rect2(525, 1130, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xhgk2"] +atlas = ExtResource("208_yn1iw") +region = Rect2(700, 1130, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_diucy"] +atlas = ExtResource("208_yn1iw") +region = Rect2(875, 1130, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8gw5n"] +atlas = ExtResource("208_yn1iw") +region = Rect2(1050, 1130, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hc5wr"] +atlas = ExtResource("208_yn1iw") +region = Rect2(1225, 1130, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fugdi"] +atlas = ExtResource("208_yn1iw") +region = Rect2(1400, 1130, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h222i"] +atlas = ExtResource("208_yn1iw") +region = Rect2(0, 1356, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7qa4p"] +atlas = ExtResource("208_yn1iw") +region = Rect2(175, 1356, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jbavk"] +atlas = ExtResource("208_yn1iw") +region = Rect2(350, 1356, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ncorq"] +atlas = ExtResource("208_yn1iw") +region = Rect2(525, 1356, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mdvft"] +atlas = ExtResource("208_yn1iw") +region = Rect2(700, 1356, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ljrf5"] +atlas = ExtResource("208_yn1iw") +region = Rect2(875, 1356, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r7ll6"] +atlas = ExtResource("208_yn1iw") +region = Rect2(1050, 1356, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6vssn"] +atlas = ExtResource("208_yn1iw") +region = Rect2(1225, 1356, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4lr8r"] +atlas = ExtResource("208_yn1iw") +region = Rect2(1400, 1356, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xp4kq"] +atlas = ExtResource("208_yn1iw") +region = Rect2(0, 1582, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_idymv"] +atlas = ExtResource("208_yn1iw") +region = Rect2(175, 1582, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ujl1x"] +atlas = ExtResource("208_yn1iw") +region = Rect2(350, 1582, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_37wgc"] +atlas = ExtResource("208_yn1iw") +region = Rect2(525, 1582, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g5fso"] +atlas = ExtResource("208_yn1iw") +region = Rect2(700, 1582, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4a47d"] +atlas = ExtResource("208_yn1iw") +region = Rect2(875, 1582, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eh3iw"] +atlas = ExtResource("208_yn1iw") +region = Rect2(1050, 1582, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jc54a"] +atlas = ExtResource("208_yn1iw") +region = Rect2(1225, 1582, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xyo6b"] +atlas = ExtResource("208_yn1iw") +region = Rect2(1400, 1582, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gnyks"] +atlas = ExtResource("208_yn1iw") +region = Rect2(0, 1808, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_08lae"] +atlas = ExtResource("208_yn1iw") +region = Rect2(175, 1808, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r710l"] +atlas = ExtResource("208_yn1iw") +region = Rect2(350, 1808, 175, 226) + +[sub_resource type="SpriteFrames" id="SpriteFrames_hp2cu"] +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("209_vyvum") +region = Rect2(134, 0, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_56ojt"] +atlas = ExtResource("209_vyvum") +region = Rect2(402, 0, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jwkdt"] +atlas = ExtResource("209_vyvum") +region = Rect2(670, 0, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tklqq"] +atlas = ExtResource("209_vyvum") +region = Rect2(938, 0, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0kd7d"] +atlas = ExtResource("209_vyvum") +region = Rect2(1206, 0, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uoo6g"] +atlas = ExtResource("209_vyvum") +region = Rect2(134, 134, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eyk0y"] +atlas = ExtResource("209_vyvum") +region = Rect2(402, 134, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0imbq"] +atlas = ExtResource("209_vyvum") +region = Rect2(670, 134, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oys1t"] +atlas = ExtResource("209_vyvum") +region = Rect2(938, 134, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_06alo"] +atlas = ExtResource("209_vyvum") +region = Rect2(1206, 134, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uoxdj"] +atlas = ExtResource("209_vyvum") +region = Rect2(134, 268, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rcb13"] +atlas = ExtResource("209_vyvum") +region = Rect2(402, 268, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pj86n"] +atlas = ExtResource("209_vyvum") +region = Rect2(670, 268, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qpw3f"] +atlas = ExtResource("209_vyvum") +region = Rect2(938, 268, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gn6h7"] +atlas = ExtResource("209_vyvum") +region = Rect2(1206, 268, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lkh03"] +atlas = ExtResource("209_vyvum") +region = Rect2(134, 402, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pdi3o"] +atlas = ExtResource("209_vyvum") +region = Rect2(402, 402, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s3ywy"] +atlas = ExtResource("209_vyvum") +region = Rect2(670, 402, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6idxu"] +atlas = ExtResource("209_vyvum") +region = Rect2(938, 402, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qndi3"] +atlas = ExtResource("209_vyvum") +region = Rect2(1206, 402, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y4ahc"] +atlas = ExtResource("209_vyvum") +region = Rect2(134, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y5c6p"] +atlas = ExtResource("209_vyvum") +region = Rect2(402, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oa8p3"] +atlas = ExtResource("209_vyvum") +region = Rect2(670, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rc08e"] +atlas = ExtResource("209_vyvum") +region = Rect2(938, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8tw6t"] +atlas = ExtResource("209_vyvum") +region = Rect2(1206, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_njvn5"] +atlas = ExtResource("209_vyvum") +region = Rect2(134, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cwp0x"] +atlas = ExtResource("209_vyvum") +region = Rect2(402, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hch5s"] +atlas = ExtResource("209_vyvum") +region = Rect2(670, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vgjuv"] +atlas = ExtResource("209_vyvum") +region = Rect2(938, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1502j"] +atlas = ExtResource("209_vyvum") +region = Rect2(1206, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5m1ra"] +atlas = ExtResource("209_vyvum") +region = Rect2(134, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l0imt"] +atlas = ExtResource("209_vyvum") +region = Rect2(402, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ywb2s"] +atlas = ExtResource("209_vyvum") +region = Rect2(670, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x5582"] +atlas = ExtResource("209_vyvum") +region = Rect2(938, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4uy6l"] +atlas = ExtResource("209_vyvum") +region = Rect2(1206, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_50esb"] +atlas = ExtResource("209_vyvum") +region = Rect2(134, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xnham"] +atlas = ExtResource("209_vyvum") +region = Rect2(402, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j1cf1"] +atlas = ExtResource("209_vyvum") +region = Rect2(670, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jvde4"] +atlas = ExtResource("209_vyvum") +region = Rect2(938, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dvkgv"] +atlas = ExtResource("209_vyvum") +region = Rect2(1206, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3ant7"] +atlas = ExtResource("209_vyvum") +region = Rect2(134, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a6f8y"] +atlas = ExtResource("209_vyvum") +region = Rect2(402, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ancbh"] +atlas = ExtResource("209_vyvum") +region = Rect2(670, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yes2c"] +atlas = ExtResource("209_vyvum") +region = Rect2(938, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cs2h2"] +atlas = ExtResource("209_vyvum") +region = Rect2(1206, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n2i2d"] +atlas = ExtResource("209_vyvum") +region = Rect2(134, 1206, 134, 134) + +[sub_resource type="SpriteFrames" id="SpriteFrames_36022"] +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_h2ml5"] resource_name = "Primary Attack" length = 1.03334 @@ -2302,6 +4989,483 @@ animations = [{ "speed": 30.0 }] +[sub_resource type="Animation" id="Animation_30xy4"] +resource_name = "CurseHit" +length = 1.56667 +tracks/0/type = "value" +tracks/0/imported = false +tracks/0/enabled = true +tracks/0/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Curse Hit Effect:animation") +tracks/0/interp = 1 +tracks/0/loop_wrap = true +tracks/0/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"default"] +} +tracks/1/type = "value" +tracks/1/imported = false +tracks/1/enabled = true +tracks/1/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Curse Hit Effect:frame") +tracks/1/interp = 1 +tracks/1/loop_wrap = true +tracks/1/keys = { +"times": PackedFloat32Array(0, 1.56667), +"transitions": PackedFloat32Array(1, 1), +"update": 0, +"values": [0, 47] +} + +[sub_resource type="Animation" id="Animation_3pm1j"] +resource_name = "EarthHit" +length = 1.46667 +tracks/0/type = "value" +tracks/0/imported = false +tracks/0/enabled = true +tracks/0/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Earth Hit Effect:animation") +tracks/0/interp = 1 +tracks/0/loop_wrap = true +tracks/0/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"EARTH DAMAGE"] +} +tracks/1/type = "value" +tracks/1/imported = false +tracks/1/enabled = true +tracks/1/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Earth Hit Effect:frame") +tracks/1/interp = 1 +tracks/1/loop_wrap = true +tracks/1/keys = { +"times": PackedFloat32Array(0, 1.46667), +"transitions": PackedFloat32Array(1, 1), +"update": 0, +"values": [0, 44] +} + +[sub_resource type="Animation" id="Animation_6shfu"] +resource_name = "Fire Damage" +length = 2.93334 +tracks/0/type = "value" +tracks/0/imported = false +tracks/0/enabled = true +tracks/0/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/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("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/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("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/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)] +} +tracks/3/type = "value" +tracks/3/imported = false +tracks/3/enabled = true +tracks/3/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Rust Activation Effect:animation") +tracks/3/interp = 1 +tracks/3/loop_wrap = true +tracks/3/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"default"] +} +tracks/4/type = "value" +tracks/4/imported = false +tracks/4/enabled = true +tracks/4/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Rust Activation Effect:frame") +tracks/4/interp = 1 +tracks/4/loop_wrap = true +tracks/4/keys = { +"times": PackedFloat32Array(0, 2.93333), +"transitions": PackedFloat32Array(1, 1), +"update": 0, +"values": [88, 88] +} + +[sub_resource type="Animation" id="Animation_f5cjs"] +resource_name = "HolyHit" +length = 0.700003 +tracks/0/type = "value" +tracks/0/imported = false +tracks/0/enabled = true +tracks/0/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Holy Hit Layer Effect:animation") +tracks/0/interp = 1 +tracks/0/loop_wrap = true +tracks/0/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"HOLY"] +} +tracks/1/type = "value" +tracks/1/imported = false +tracks/1/enabled = true +tracks/1/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Holy Hit Layer Effect:frame") +tracks/1/interp = 1 +tracks/1/loop_wrap = true +tracks/1/keys = { +"times": PackedFloat32Array(0, 0.7), +"transitions": PackedFloat32Array(1, 1), +"update": 0, +"values": [0, 21] +} + +[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("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/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("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/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("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/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"] +} +tracks/3/type = "value" +tracks/3/imported = false +tracks/3/enabled = true +tracks/3/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Rust Activation Effect:animation") +tracks/3/interp = 1 +tracks/3/loop_wrap = true +tracks/3/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"default"] +} +tracks/4/type = "value" +tracks/4/imported = false +tracks/4/enabled = true +tracks/4/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Rust Activation Effect:frame") +tracks/4/interp = 1 +tracks/4/loop_wrap = true +tracks/4/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [88] +} +tracks/5/type = "value" +tracks/5/imported = false +tracks/5/enabled = true +tracks/5/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Holy Hit Layer Effect:animation") +tracks/5/interp = 1 +tracks/5/loop_wrap = true +tracks/5/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"HOLY"] +} +tracks/6/type = "value" +tracks/6/imported = false +tracks/6/enabled = true +tracks/6/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Holy Hit Layer Effect:frame") +tracks/6/interp = 1 +tracks/6/loop_wrap = true +tracks/6/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [0] +} +tracks/7/type = "value" +tracks/7/imported = false +tracks/7/enabled = true +tracks/7/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Wind Hit Layer Effect:animation") +tracks/7/interp = 1 +tracks/7/loop_wrap = true +tracks/7/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"default"] +} +tracks/8/type = "value" +tracks/8/imported = false +tracks/8/enabled = true +tracks/8/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Wind Hit Layer Effect:frame") +tracks/8/interp = 1 +tracks/8/loop_wrap = true +tracks/8/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [50] +} +tracks/9/type = "value" +tracks/9/imported = false +tracks/9/enabled = true +tracks/9/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Water Hit Layer 1 Effect:animation") +tracks/9/interp = 1 +tracks/9/loop_wrap = true +tracks/9/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"WATER DAMAGE"] +} +tracks/10/type = "value" +tracks/10/imported = false +tracks/10/enabled = true +tracks/10/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Water Hit Layer 1 Effect:frame") +tracks/10/interp = 1 +tracks/10/loop_wrap = true +tracks/10/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [29] +} +tracks/11/type = "value" +tracks/11/imported = false +tracks/11/enabled = true +tracks/11/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Water Hit Layer 2Effect:animation") +tracks/11/interp = 1 +tracks/11/loop_wrap = true +tracks/11/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"WATER"] +} +tracks/12/type = "value" +tracks/12/imported = false +tracks/12/enabled = true +tracks/12/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Water Hit Layer 2Effect:frame") +tracks/12/interp = 1 +tracks/12/loop_wrap = true +tracks/12/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [51] +} +tracks/13/type = "value" +tracks/13/imported = false +tracks/13/enabled = true +tracks/13/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Curse Hit Effect:animation") +tracks/13/interp = 1 +tracks/13/loop_wrap = true +tracks/13/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"default"] +} +tracks/14/type = "value" +tracks/14/imported = false +tracks/14/enabled = true +tracks/14/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Curse Hit Effect:frame") +tracks/14/interp = 1 +tracks/14/loop_wrap = true +tracks/14/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [47] +} +tracks/15/type = "value" +tracks/15/imported = false +tracks/15/enabled = true +tracks/15/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Earth Hit Effect:animation") +tracks/15/interp = 1 +tracks/15/loop_wrap = true +tracks/15/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"WATER DAMAGE"] +} +tracks/16/type = "value" +tracks/16/imported = false +tracks/16/enabled = true +tracks/16/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Earth Hit Effect:frame") +tracks/16/interp = 1 +tracks/16/loop_wrap = true +tracks/16/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [0] +} + +[sub_resource type="Animation" id="Animation_0tqwp"] +resource_name = "RustActivate" +length = 1.46667 +step = 0.0166667 +tracks/0/type = "value" +tracks/0/imported = false +tracks/0/enabled = true +tracks/0/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Rust Activation Effect:animation") +tracks/0/interp = 1 +tracks/0/loop_wrap = true +tracks/0/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"default"] +} +tracks/1/type = "value" +tracks/1/imported = false +tracks/1/enabled = true +tracks/1/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Rust Activation Effect:frame") +tracks/1/interp = 1 +tracks/1/loop_wrap = true +tracks/1/keys = { +"times": PackedFloat32Array(0, 1.46667), +"transitions": PackedFloat32Array(1, 1), +"update": 0, +"values": [0, 88] +} + +[sub_resource type="Animation" id="Animation_q5dfb"] +resource_name = "WaterHit" +length = 1.7 +tracks/0/type = "value" +tracks/0/imported = false +tracks/0/enabled = true +tracks/0/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Water Hit Layer 1 Effect:animation") +tracks/0/interp = 1 +tracks/0/loop_wrap = true +tracks/0/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"WATER DAMAGE"] +} +tracks/1/type = "value" +tracks/1/imported = false +tracks/1/enabled = true +tracks/1/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Water Hit Layer 1 Effect:frame") +tracks/1/interp = 1 +tracks/1/loop_wrap = true +tracks/1/keys = { +"times": PackedFloat32Array(0, 1), +"transitions": PackedFloat32Array(1, 1), +"update": 0, +"values": [0, 29] +} +tracks/2/type = "value" +tracks/2/imported = false +tracks/2/enabled = true +tracks/2/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Water Hit Layer 2Effect:animation") +tracks/2/interp = 1 +tracks/2/loop_wrap = true +tracks/2/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"WATER"] +} +tracks/3/type = "value" +tracks/3/imported = false +tracks/3/enabled = true +tracks/3/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Water Hit Layer 2Effect:frame") +tracks/3/interp = 1 +tracks/3/loop_wrap = true +tracks/3/keys = { +"times": PackedFloat32Array(0, 1.7), +"transitions": PackedFloat32Array(1, 1), +"update": 0, +"values": [0, 51] +} + +[sub_resource type="Animation" id="Animation_godpv"] +resource_name = "WindHit" +length = 0.833335 +step = 0.0166667 +tracks/0/type = "value" +tracks/0/imported = false +tracks/0/enabled = true +tracks/0/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Wind Hit Layer Effect:animation") +tracks/0/interp = 1 +tracks/0/loop_wrap = true +tracks/0/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"default"] +} +tracks/1/type = "value" +tracks/1/imported = false +tracks/1/enabled = true +tracks/1/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Wind Hit Layer Effect:frame") +tracks/1/interp = 1 +tracks/1/loop_wrap = true +tracks/1/keys = { +"times": PackedFloat32Array(0, 0.833333), +"transitions": PackedFloat32Array(1, 1), +"update": 0, +"values": [0, 50] +} + +[sub_resource type="AnimationLibrary" id="AnimationLibrary_0tqwp"] +_data = { +&"CurseHit": SubResource("Animation_30xy4"), +&"EarthHit": SubResource("Animation_3pm1j"), +&"FireHit": SubResource("Animation_6shfu"), +&"HolyHit": SubResource("Animation_f5cjs"), +&"RESET": SubResource("Animation_cftgd"), +&"RustActivate": SubResource("Animation_0tqwp"), +&"WaterHit": SubResource("Animation_q5dfb"), +&"WindHit": SubResource("Animation_godpv") +} + [node name="EnemyModelView" type="Node3D"] script = ExtResource("1_yke7o") @@ -2334,6 +5498,60 @@ position = Vector2(500, 500) sprite_frames = SubResource("SpriteFrames_sobol") animation = &"idle_front" +[node name="VFXSprites" type="Node2D" parent="Sprite3D/SubViewportContainer/SubViewport"] + +[node name="Rust Activation Effect" type="AnimatedSprite2D" parent="Sprite3D/SubViewportContainer/SubViewport/VFXSprites"] +position = Vector2(400, 400) +scale = Vector2(1.54, 1.54) +sprite_frames = SubResource("SpriteFrames_r8nxd") +frame = 88 + +[node name="Holy Hit Layer Effect" type="AnimatedSprite2D" parent="Sprite3D/SubViewportContainer/SubViewport/VFXSprites"] +position = Vector2(400, 400) +scale = Vector2(0.675, 0.675) +sprite_frames = SubResource("SpriteFrames_3t1w7") +animation = &"HOLY" + +[node name="Wind Hit Layer Effect" type="AnimatedSprite2D" parent="Sprite3D/SubViewportContainer/SubViewport/VFXSprites"] +position = Vector2(400, 400) +scale = Vector2(1.445, 1.445) +sprite_frames = SubResource("SpriteFrames_wfs0y") +frame = 50 + +[node name="Flame Hit Effect" type="AnimatedSprite2D" parent="Sprite3D/SubViewportContainer/SubViewport/VFXSprites"] +position = Vector2(400, 400) +scale = Vector2(3.445, 3.445) +sprite_frames = SubResource("SpriteFrames_ucayo") +animation = &"Flame Damage" +frame = 40 + +[node name="Water Hit Layer 1 Effect" type="AnimatedSprite2D" parent="Sprite3D/SubViewportContainer/SubViewport/VFXSprites"] +position = Vector2(400, 400) +scale = Vector2(2.215, 2.215) +sprite_frames = SubResource("SpriteFrames_7pkyy") +animation = &"WATER DAMAGE" +frame = 29 + +[node name="Water Hit Layer 2Effect" type="AnimatedSprite2D" parent="Sprite3D/SubViewportContainer/SubViewport/VFXSprites"] +position = Vector2(400, 400) +scale = Vector2(1.105, 0.895) +sprite_frames = SubResource("SpriteFrames_hp2cu") +animation = &"WATER" +frame = 51 + +[node name="Curse Hit Effect" type="AnimatedSprite2D" parent="Sprite3D/SubViewportContainer/SubViewport/VFXSprites"] +texture_filter = 1 +position = Vector2(400, 400) +scale = Vector2(2.78, 2.78) +sprite_frames = SubResource("SpriteFrames_36022") +frame = 47 + +[node name="Earth Hit Effect" type="AnimatedSprite2D" parent="Sprite3D/SubViewportContainer/SubViewport/VFXSprites"] +position = Vector2(400, 400) +scale = Vector2(2.005, 2.005) +sprite_frames = SubResource("SpriteFrames_7pkyy") +animation = &"WATER DAMAGE" + [node name="AnimationPlayer2" type="AnimationPlayer" parent="Sprite3D"] root_node = NodePath("../../Sunblast") libraries = { @@ -2388,6 +5606,7 @@ transform = Transform3D(0.335, 0, 0, 0, 0.335, 0, 0, 0, 0.335, -0.200015, 0.6492 offset = Vector2(150, 400) pixel_size = 0.0085 sprite_frames = SubResource("SpriteFrames_skutu") +frame = 15 [node name="Primary Attack" type="AnimatedSprite3D" parent="."] transform = Transform3D(0.275, 0, 0, 0, 0.275, 0, 0, 0, 0.275, 0, 2.39178, -0.317864) @@ -2400,3 +5619,51 @@ sprite_frames = SubResource("SpriteFrames_j3g1o") transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0.0619747, 1.93219, 0.684851) script = ExtResource("213_au0i1") ProjectileScene = ExtResource("210_lid5r") + +[node name="VFXAnimations" type="Node" parent="."] + +[node name="FlameHitAnimation" type="AnimationPlayer" parent="VFXAnimations"] +unique_name_in_owner = true +libraries = { +&"": SubResource("AnimationLibrary_0tqwp") +} + +[node name="RustHitAnimation" type="AnimationPlayer" parent="VFXAnimations"] +unique_name_in_owner = true +root_node = NodePath("../../Secondary Animation Player") +libraries = { +&"": SubResource("AnimationLibrary_0tqwp") +} + +[node name="HolyHitAnimation" type="AnimationPlayer" parent="VFXAnimations"] +unique_name_in_owner = true +libraries = { +&"": SubResource("AnimationLibrary_0tqwp") +} + +[node name="WindHitAnimation" type="AnimationPlayer" parent="VFXAnimations"] +unique_name_in_owner = true +libraries = { +&"": SubResource("AnimationLibrary_0tqwp") +} + +[node name="WaterHitAnimation" type="AnimationPlayer" parent="VFXAnimations"] +unique_name_in_owner = true +root_node = NodePath("../../Secondary Animation Player") +libraries = { +&"": SubResource("AnimationLibrary_0tqwp") +} + +[node name="CurseHitAnimation" type="AnimationPlayer" parent="VFXAnimations"] +unique_name_in_owner = true +root_node = NodePath("../../Secondary Animation Player") +libraries = { +&"": SubResource("AnimationLibrary_0tqwp") +} + +[node name="EarthHitAnimation" type="AnimationPlayer" parent="VFXAnimations"] +unique_name_in_owner = true +root_node = NodePath("../../Secondary Animation Player") +libraries = { +&"": SubResource("AnimationLibrary_0tqwp") +} diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/12. Shield of Heaven/ShieldModelView.tscn b/Zennysoft.Game.Ma/src/enemy/enemy_types/12. Shield of Heaven/ShieldModelView.tscn index 64012a66..63c4c76d 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/12. Shield of Heaven/ShieldModelView.tscn +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/12. Shield of Heaven/ShieldModelView.tscn @@ -1,4 +1,4 @@ -[gd_scene load_steps=584 format=3 uid="uid://bochx2nfql67q"] +[gd_scene load_steps=979 format=3 uid="uid://bochx2nfql67q"] [ext_resource type="Script" uid="uid://cvr1qimxpignl" path="res://src/enemy/EnemyModelView2D.cs" id="1_h8pla"] [ext_resource type="Texture2D" uid="uid://clwj6yknpw74n" path="res://src/enemy/enemy_types/12. Shield of Heaven/animations/New/Idle Back/0001.png" id="2_2eclh"] @@ -516,8 +516,16 @@ [ext_resource type="Texture2D" uid="uid://65waqa5didi3" path="res://src/enemy/enemy_types/12. Shield of Heaven/animations/New/Attack 2 Side/0216.png" id="510_y0rel"] [ext_resource type="Texture2D" uid="uid://1rwwabqj0mms" path="res://src/enemy/enemy_types/12. Shield of Heaven/animations/New/Attack 2 Side/0219.png" id="511_vbtxj"] [ext_resource type="AudioStream" uid="uid://emskqv582ckv" path="res://src/audio/sfx/ENEMY_SHIELD_A.ogg" id="512_0pum8"] +[ext_resource type="Texture2D" uid="uid://dq70aipwl1qrg" path="res://src/vfx/Enemy Affected/Rust Particles.png" id="512_w38pl"] +[ext_resource type="Texture2D" uid="uid://by0ehygy7bq13" path="res://src/vfx/Enemy Affected/Holy Damage.png" id="513_428gt"] [ext_resource type="AudioStream" uid="uid://bap5n32ruwuhe" path="res://src/audio/sfx/enemy_shield_thwip.ogg" id="513_vwlpl"] [ext_resource type="AudioStream" uid="uid://d1ad3pp1icy5b" path="res://src/audio/sfx/enemy_shield_ATK2.ogg" id="514_l1ir8"] +[ext_resource type="Texture2D" uid="uid://dqqhu0s51o3n7" path="res://src/vfx/Enemy Affected/Wind Damage.png" id="514_q066v"] +[ext_resource type="Texture2D" uid="uid://dh6mk1c35nymx" path="res://src/vfx/Enemy Affected/firedamage.png" id="515_vsbtg"] +[ext_resource type="Texture2D" uid="uid://7a42df2ijrmv" path="res://src/vfx/Enemy Affected/earth damage.png" id="516_gt24l"] +[ext_resource type="Texture2D" uid="uid://cot4wx5fg5pfs" path="res://src/vfx/Enemy Affected/water_hit_layer2.png" id="517_pjr2h"] +[ext_resource type="Texture2D" uid="uid://cbei66g134fgv" path="res://src/vfx/Enemy Affected/water layer 1.png" id="518_hlh43"] +[ext_resource type="Texture2D" uid="uid://bp6npqoco5fl3" path="res://src/vfx/Enemy Affected/curse_damage.png" id="519_10f6n"] [sub_resource type="ViewportTexture" id="ViewportTexture_h1kaf"] viewport_path = NodePath("Sprite3D/SubViewportContainer/SubViewport") @@ -2115,6 +2123,2685 @@ animations = [{ "speed": 12.0 }] +[sub_resource type="AtlasTexture" id="AtlasTexture_4o5f2"] +atlas = ExtResource("512_w38pl") +region = Rect2(1206, 402, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r8ggx"] +atlas = ExtResource("512_w38pl") +region = Rect2(1340, 402, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xafpd"] +atlas = ExtResource("512_w38pl") +region = Rect2(1474, 402, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_73dpc"] +atlas = ExtResource("512_w38pl") +region = Rect2(0, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vppxt"] +atlas = ExtResource("512_w38pl") +region = Rect2(134, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nk562"] +atlas = ExtResource("512_w38pl") +region = Rect2(268, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dwu2q"] +atlas = ExtResource("512_w38pl") +region = Rect2(402, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w3p3j"] +atlas = ExtResource("512_w38pl") +region = Rect2(536, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ig0ip"] +atlas = ExtResource("512_w38pl") +region = Rect2(670, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r4enw"] +atlas = ExtResource("512_w38pl") +region = Rect2(804, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uy6hg"] +atlas = ExtResource("512_w38pl") +region = Rect2(938, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_85jwg"] +atlas = ExtResource("512_w38pl") +region = Rect2(1072, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ln7dl"] +atlas = ExtResource("512_w38pl") +region = Rect2(1206, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3vvgp"] +atlas = ExtResource("512_w38pl") +region = Rect2(1340, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_01f7m"] +atlas = ExtResource("512_w38pl") +region = Rect2(1474, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pp21u"] +atlas = ExtResource("512_w38pl") +region = Rect2(0, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1aldj"] +atlas = ExtResource("512_w38pl") +region = Rect2(134, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xv5pw"] +atlas = ExtResource("512_w38pl") +region = Rect2(268, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_14lh3"] +atlas = ExtResource("512_w38pl") +region = Rect2(402, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xxid6"] +atlas = ExtResource("512_w38pl") +region = Rect2(536, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y6yeo"] +atlas = ExtResource("512_w38pl") +region = Rect2(670, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2aohu"] +atlas = ExtResource("512_w38pl") +region = Rect2(804, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ebvc7"] +atlas = ExtResource("512_w38pl") +region = Rect2(938, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yd50d"] +atlas = ExtResource("512_w38pl") +region = Rect2(1072, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yimdu"] +atlas = ExtResource("512_w38pl") +region = Rect2(1206, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dync1"] +atlas = ExtResource("512_w38pl") +region = Rect2(1340, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jsjdk"] +atlas = ExtResource("512_w38pl") +region = Rect2(1474, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ueih5"] +atlas = ExtResource("512_w38pl") +region = Rect2(0, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k0hut"] +atlas = ExtResource("512_w38pl") +region = Rect2(134, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kybji"] +atlas = ExtResource("512_w38pl") +region = Rect2(268, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u5vpt"] +atlas = ExtResource("512_w38pl") +region = Rect2(402, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wko4t"] +atlas = ExtResource("512_w38pl") +region = Rect2(536, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ru86o"] +atlas = ExtResource("512_w38pl") +region = Rect2(670, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uybbj"] +atlas = ExtResource("512_w38pl") +region = Rect2(804, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s6pp8"] +atlas = ExtResource("512_w38pl") +region = Rect2(938, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a7pls"] +atlas = ExtResource("512_w38pl") +region = Rect2(1072, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_30y71"] +atlas = ExtResource("512_w38pl") +region = Rect2(1206, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dwl1c"] +atlas = ExtResource("512_w38pl") +region = Rect2(1340, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_01jp4"] +atlas = ExtResource("512_w38pl") +region = Rect2(1474, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b8ulh"] +atlas = ExtResource("512_w38pl") +region = Rect2(0, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3walv"] +atlas = ExtResource("512_w38pl") +region = Rect2(134, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_exyoj"] +atlas = ExtResource("512_w38pl") +region = Rect2(268, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kus54"] +atlas = ExtResource("512_w38pl") +region = Rect2(402, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_meauc"] +atlas = ExtResource("512_w38pl") +region = Rect2(536, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7v7xr"] +atlas = ExtResource("512_w38pl") +region = Rect2(670, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4ktea"] +atlas = ExtResource("512_w38pl") +region = Rect2(804, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l8oa1"] +atlas = ExtResource("512_w38pl") +region = Rect2(938, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3eopa"] +atlas = ExtResource("512_w38pl") +region = Rect2(1072, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ip8hv"] +atlas = ExtResource("512_w38pl") +region = Rect2(1206, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_42rbq"] +atlas = ExtResource("512_w38pl") +region = Rect2(1340, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tu0vu"] +atlas = ExtResource("512_w38pl") +region = Rect2(1474, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gbh7l"] +atlas = ExtResource("512_w38pl") +region = Rect2(0, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_733jx"] +atlas = ExtResource("512_w38pl") +region = Rect2(134, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sfa2q"] +atlas = ExtResource("512_w38pl") +region = Rect2(268, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o0nvo"] +atlas = ExtResource("512_w38pl") +region = Rect2(402, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1mv1w"] +atlas = ExtResource("512_w38pl") +region = Rect2(536, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yw8ob"] +atlas = ExtResource("512_w38pl") +region = Rect2(670, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ptkbd"] +atlas = ExtResource("512_w38pl") +region = Rect2(804, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2uoiw"] +atlas = ExtResource("512_w38pl") +region = Rect2(938, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4m684"] +atlas = ExtResource("512_w38pl") +region = Rect2(1072, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_st6fj"] +atlas = ExtResource("512_w38pl") +region = Rect2(1206, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1wana"] +atlas = ExtResource("512_w38pl") +region = Rect2(1340, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ati4e"] +atlas = ExtResource("512_w38pl") +region = Rect2(1474, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0w31q"] +atlas = ExtResource("512_w38pl") +region = Rect2(0, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uxu33"] +atlas = ExtResource("512_w38pl") +region = Rect2(134, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2ulnd"] +atlas = ExtResource("512_w38pl") +region = Rect2(268, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ddsrn"] +atlas = ExtResource("512_w38pl") +region = Rect2(402, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n1e5w"] +atlas = ExtResource("512_w38pl") +region = Rect2(536, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f4aq5"] +atlas = ExtResource("512_w38pl") +region = Rect2(670, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_er00h"] +atlas = ExtResource("512_w38pl") +region = Rect2(804, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mlf5c"] +atlas = ExtResource("512_w38pl") +region = Rect2(938, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c362w"] +atlas = ExtResource("512_w38pl") +region = Rect2(1072, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_30wb7"] +atlas = ExtResource("512_w38pl") +region = Rect2(1206, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_stb0b"] +atlas = ExtResource("512_w38pl") +region = Rect2(1340, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a64qf"] +atlas = ExtResource("512_w38pl") +region = Rect2(1474, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_52bkw"] +atlas = ExtResource("512_w38pl") +region = Rect2(0, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y0yvc"] +atlas = ExtResource("512_w38pl") +region = Rect2(134, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5h2xe"] +atlas = ExtResource("512_w38pl") +region = Rect2(268, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6hh33"] +atlas = ExtResource("512_w38pl") +region = Rect2(402, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kmk3m"] +atlas = ExtResource("512_w38pl") +region = Rect2(536, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rbtmh"] +atlas = ExtResource("512_w38pl") +region = Rect2(670, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bit6n"] +atlas = ExtResource("512_w38pl") +region = Rect2(804, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_458hw"] +atlas = ExtResource("512_w38pl") +region = Rect2(938, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4x2ea"] +atlas = ExtResource("512_w38pl") +region = Rect2(1072, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bcljt"] +atlas = ExtResource("512_w38pl") +region = Rect2(1206, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p6e34"] +atlas = ExtResource("512_w38pl") +region = Rect2(1340, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2yfi0"] +atlas = ExtResource("512_w38pl") +region = Rect2(1474, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bhoxy"] +atlas = ExtResource("512_w38pl") +region = Rect2(0, 1474, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_41wyx"] +atlas = ExtResource("512_w38pl") +region = Rect2(134, 1474, 134, 134) + +[sub_resource type="SpriteFrames" id="SpriteFrames_tnkq4"] +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("513_428gt") +region = Rect2(1024, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pvn2l"] +atlas = ExtResource("513_428gt") +region = Rect2(1536, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sctov"] +atlas = ExtResource("513_428gt") +region = Rect2(2048, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_46bwa"] +atlas = ExtResource("513_428gt") +region = Rect2(2560, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o42jv"] +atlas = ExtResource("513_428gt") +region = Rect2(3072, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5dqsk"] +atlas = ExtResource("513_428gt") +region = Rect2(3584, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_35l4k"] +atlas = ExtResource("513_428gt") +region = Rect2(4096, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x0jfm"] +atlas = ExtResource("513_428gt") +region = Rect2(4608, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fk16r"] +atlas = ExtResource("513_428gt") +region = Rect2(5120, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ewtdr"] +atlas = ExtResource("513_428gt") +region = Rect2(5632, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bul51"] +atlas = ExtResource("513_428gt") +region = Rect2(6144, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vbobf"] +atlas = ExtResource("513_428gt") +region = Rect2(6656, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_itqlk"] +atlas = ExtResource("513_428gt") +region = Rect2(7168, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_41jjh"] +atlas = ExtResource("513_428gt") +region = Rect2(7680, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kol03"] +atlas = ExtResource("513_428gt") +region = Rect2(0, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ynyxy"] +atlas = ExtResource("513_428gt") +region = Rect2(512, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ngcxk"] +atlas = ExtResource("513_428gt") +region = Rect2(1024, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ba8fa"] +atlas = ExtResource("513_428gt") +region = Rect2(1536, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ngitf"] +atlas = ExtResource("513_428gt") +region = Rect2(2048, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_boovf"] +atlas = ExtResource("513_428gt") +region = Rect2(2560, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jwkhr"] +atlas = ExtResource("513_428gt") +region = Rect2(3072, 512, 512, 512) + +[sub_resource type="SpriteFrames" id="SpriteFrames_kwnpp"] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": null +}, { +"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("514_q066v") +region = Rect2(0, 0, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3jmy8"] +atlas = ExtResource("514_q066v") +region = Rect2(266, 0, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t76hk"] +atlas = ExtResource("514_q066v") +region = Rect2(532, 0, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_06gff"] +atlas = ExtResource("514_q066v") +region = Rect2(798, 0, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ssjgs"] +atlas = ExtResource("514_q066v") +region = Rect2(1064, 0, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_53u6k"] +atlas = ExtResource("514_q066v") +region = Rect2(0, 131, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_inmu7"] +atlas = ExtResource("514_q066v") +region = Rect2(266, 131, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bmkvg"] +atlas = ExtResource("514_q066v") +region = Rect2(532, 131, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oqdmj"] +atlas = ExtResource("514_q066v") +region = Rect2(798, 131, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bnn41"] +atlas = ExtResource("514_q066v") +region = Rect2(1064, 131, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p6hmn"] +atlas = ExtResource("514_q066v") +region = Rect2(0, 262, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s0ybe"] +atlas = ExtResource("514_q066v") +region = Rect2(266, 262, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y2273"] +atlas = ExtResource("514_q066v") +region = Rect2(532, 262, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2i87r"] +atlas = ExtResource("514_q066v") +region = Rect2(798, 262, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4q8o2"] +atlas = ExtResource("514_q066v") +region = Rect2(1064, 262, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_esxmc"] +atlas = ExtResource("514_q066v") +region = Rect2(0, 393, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rdsur"] +atlas = ExtResource("514_q066v") +region = Rect2(266, 393, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b2qt4"] +atlas = ExtResource("514_q066v") +region = Rect2(532, 393, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xamrr"] +atlas = ExtResource("514_q066v") +region = Rect2(798, 393, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0prqh"] +atlas = ExtResource("514_q066v") +region = Rect2(1064, 393, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dh1oc"] +atlas = ExtResource("514_q066v") +region = Rect2(0, 524, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ybb1w"] +atlas = ExtResource("514_q066v") +region = Rect2(266, 524, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2nkua"] +atlas = ExtResource("514_q066v") +region = Rect2(532, 524, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2gocr"] +atlas = ExtResource("514_q066v") +region = Rect2(798, 524, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_acsou"] +atlas = ExtResource("514_q066v") +region = Rect2(1064, 524, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yflou"] +atlas = ExtResource("514_q066v") +region = Rect2(0, 655, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_env3c"] +atlas = ExtResource("514_q066v") +region = Rect2(266, 655, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_74f4l"] +atlas = ExtResource("514_q066v") +region = Rect2(532, 655, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cbaq7"] +atlas = ExtResource("514_q066v") +region = Rect2(798, 655, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bc4hh"] +atlas = ExtResource("514_q066v") +region = Rect2(1064, 655, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5m27y"] +atlas = ExtResource("514_q066v") +region = Rect2(0, 786, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c2vig"] +atlas = ExtResource("514_q066v") +region = Rect2(266, 786, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h8qbh"] +atlas = ExtResource("514_q066v") +region = Rect2(532, 786, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vj2ia"] +atlas = ExtResource("514_q066v") +region = Rect2(798, 786, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h0bv3"] +atlas = ExtResource("514_q066v") +region = Rect2(1064, 786, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3xb07"] +atlas = ExtResource("514_q066v") +region = Rect2(0, 917, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p845e"] +atlas = ExtResource("514_q066v") +region = Rect2(266, 917, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nm575"] +atlas = ExtResource("514_q066v") +region = Rect2(532, 917, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8wvvt"] +atlas = ExtResource("514_q066v") +region = Rect2(798, 917, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2l45l"] +atlas = ExtResource("514_q066v") +region = Rect2(1064, 917, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0c6u7"] +atlas = ExtResource("514_q066v") +region = Rect2(0, 1048, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bo1qh"] +atlas = ExtResource("514_q066v") +region = Rect2(266, 1048, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4cq22"] +atlas = ExtResource("514_q066v") +region = Rect2(532, 1048, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d6auk"] +atlas = ExtResource("514_q066v") +region = Rect2(798, 1048, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4bvg3"] +atlas = ExtResource("514_q066v") +region = Rect2(1064, 1048, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rps4p"] +atlas = ExtResource("514_q066v") +region = Rect2(0, 1179, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qdy2n"] +atlas = ExtResource("514_q066v") +region = Rect2(266, 1179, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a63dt"] +atlas = ExtResource("514_q066v") +region = Rect2(532, 1179, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3alol"] +atlas = ExtResource("514_q066v") +region = Rect2(798, 1179, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w5y4o"] +atlas = ExtResource("514_q066v") +region = Rect2(1064, 1179, 133, 131) + +[sub_resource type="SpriteFrames" id="SpriteFrames_8twok"] +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("515_vsbtg") +region = Rect2(200, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w5yum"] +atlas = ExtResource("515_vsbtg") +region = Rect2(600, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xagiq"] +atlas = ExtResource("515_vsbtg") +region = Rect2(1000, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iu4h2"] +atlas = ExtResource("515_vsbtg") +region = Rect2(100, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t6kmk"] +atlas = ExtResource("515_vsbtg") +region = Rect2(500, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c3c22"] +atlas = ExtResource("515_vsbtg") +region = Rect2(900, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_udm06"] +atlas = ExtResource("515_vsbtg") +region = Rect2(0, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_31shi"] +atlas = ExtResource("515_vsbtg") +region = Rect2(400, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i6wsf"] +atlas = ExtResource("515_vsbtg") +region = Rect2(800, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jhluk"] +atlas = ExtResource("515_vsbtg") +region = Rect2(1200, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_exq74"] +atlas = ExtResource("515_vsbtg") +region = Rect2(300, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k7tc1"] +atlas = ExtResource("515_vsbtg") +region = Rect2(700, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_456io"] +atlas = ExtResource("515_vsbtg") +region = Rect2(1100, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2h7ac"] +atlas = ExtResource("515_vsbtg") +region = Rect2(200, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dy5lo"] +atlas = ExtResource("515_vsbtg") +region = Rect2(500, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_biyyn"] +atlas = ExtResource("515_vsbtg") +region = Rect2(1000, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_flqm1"] +atlas = ExtResource("515_vsbtg") +region = Rect2(100, 500, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xttn8"] +atlas = ExtResource("515_vsbtg") +region = Rect2(500, 500, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_85rsb"] +atlas = ExtResource("515_vsbtg") +region = Rect2(900, 500, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oxqm1"] +atlas = ExtResource("515_vsbtg") +region = Rect2(0, 600, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dphle"] +atlas = ExtResource("515_vsbtg") +region = Rect2(400, 600, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_48bul"] +atlas = ExtResource("515_vsbtg") +region = Rect2(800, 600, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2d6tt"] +atlas = ExtResource("515_vsbtg") +region = Rect2(1200, 600, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ty41g"] +atlas = ExtResource("515_vsbtg") +region = Rect2(300, 700, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c5uyp"] +atlas = ExtResource("515_vsbtg") +region = Rect2(700, 700, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tf4dl"] +atlas = ExtResource("515_vsbtg") +region = Rect2(1100, 700, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cvdlu"] +atlas = ExtResource("515_vsbtg") +region = Rect2(200, 800, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f25l1"] +atlas = ExtResource("515_vsbtg") +region = Rect2(600, 800, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v033q"] +atlas = ExtResource("515_vsbtg") +region = Rect2(1000, 800, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xgfkn"] +atlas = ExtResource("515_vsbtg") +region = Rect2(100, 900, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_duxfd"] +atlas = ExtResource("515_vsbtg") +region = Rect2(500, 900, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5uvt0"] +atlas = ExtResource("515_vsbtg") +region = Rect2(900, 900, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7d05g"] +atlas = ExtResource("515_vsbtg") +region = Rect2(0, 1000, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x0ube"] +atlas = ExtResource("515_vsbtg") +region = Rect2(400, 1000, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_15y07"] +atlas = ExtResource("515_vsbtg") +region = Rect2(800, 1000, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_de0po"] +atlas = ExtResource("515_vsbtg") +region = Rect2(1200, 1000, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b3rtc"] +atlas = ExtResource("515_vsbtg") +region = Rect2(300, 1100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q32lt"] +atlas = ExtResource("515_vsbtg") +region = Rect2(700, 1100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_88hqh"] +atlas = ExtResource("515_vsbtg") +region = Rect2(1100, 1100, 100, 100) + +[sub_resource type="SpriteFrames" id="SpriteFrames_ty4do"] +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("516_gt24l") +region = Rect2(0, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0rj30"] +atlas = ExtResource("516_gt24l") +region = Rect2(200, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ug1a1"] +atlas = ExtResource("516_gt24l") +region = Rect2(400, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8eees"] +atlas = ExtResource("516_gt24l") +region = Rect2(600, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k2i7i"] +atlas = ExtResource("516_gt24l") +region = Rect2(800, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4wwo5"] +atlas = ExtResource("516_gt24l") +region = Rect2(0, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_418m2"] +atlas = ExtResource("516_gt24l") +region = Rect2(200, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6g5qj"] +atlas = ExtResource("516_gt24l") +region = Rect2(400, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k3sey"] +atlas = ExtResource("516_gt24l") +region = Rect2(600, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ms40v"] +atlas = ExtResource("516_gt24l") +region = Rect2(800, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2tfej"] +atlas = ExtResource("516_gt24l") +region = Rect2(0, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_woj7f"] +atlas = ExtResource("516_gt24l") +region = Rect2(200, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kg861"] +atlas = ExtResource("516_gt24l") +region = Rect2(400, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jtxxp"] +atlas = ExtResource("516_gt24l") +region = Rect2(600, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sxooa"] +atlas = ExtResource("516_gt24l") +region = Rect2(800, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hkj2y"] +atlas = ExtResource("516_gt24l") +region = Rect2(0, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wm40h"] +atlas = ExtResource("516_gt24l") +region = Rect2(200, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u66v8"] +atlas = ExtResource("516_gt24l") +region = Rect2(400, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6ip85"] +atlas = ExtResource("516_gt24l") +region = Rect2(600, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qad2i"] +atlas = ExtResource("516_gt24l") +region = Rect2(800, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nifqu"] +atlas = ExtResource("516_gt24l") +region = Rect2(0, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_goocc"] +atlas = ExtResource("516_gt24l") +region = Rect2(200, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l78ua"] +atlas = ExtResource("516_gt24l") +region = Rect2(400, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ybqlc"] +atlas = ExtResource("516_gt24l") +region = Rect2(600, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d0lry"] +atlas = ExtResource("516_gt24l") +region = Rect2(800, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ccb2v"] +atlas = ExtResource("516_gt24l") +region = Rect2(0, 500, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dcp7h"] +atlas = ExtResource("516_gt24l") +region = Rect2(200, 500, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3kud6"] +atlas = ExtResource("516_gt24l") +region = Rect2(400, 500, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0tvc2"] +atlas = ExtResource("516_gt24l") +region = Rect2(600, 500, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g5aky"] +atlas = ExtResource("516_gt24l") +region = Rect2(800, 500, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nyc7u"] +atlas = ExtResource("516_gt24l") +region = Rect2(0, 600, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q1yeq"] +atlas = ExtResource("516_gt24l") +region = Rect2(200, 600, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pupfb"] +atlas = ExtResource("516_gt24l") +region = Rect2(400, 600, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gfe8c"] +atlas = ExtResource("516_gt24l") +region = Rect2(600, 600, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_76bl1"] +atlas = ExtResource("516_gt24l") +region = Rect2(800, 600, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u7frn"] +atlas = ExtResource("516_gt24l") +region = Rect2(0, 700, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ls3an"] +atlas = ExtResource("516_gt24l") +region = Rect2(200, 700, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4l6e0"] +atlas = ExtResource("516_gt24l") +region = Rect2(400, 700, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cvlbl"] +atlas = ExtResource("516_gt24l") +region = Rect2(600, 700, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jkvpv"] +atlas = ExtResource("516_gt24l") +region = Rect2(800, 700, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lpp7o"] +atlas = ExtResource("516_gt24l") +region = Rect2(0, 800, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v8igx"] +atlas = ExtResource("516_gt24l") +region = Rect2(200, 800, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mmm0q"] +atlas = ExtResource("516_gt24l") +region = Rect2(400, 800, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5ukt7"] +atlas = ExtResource("516_gt24l") +region = Rect2(600, 800, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0pkd7"] +atlas = ExtResource("516_gt24l") +region = Rect2(800, 800, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n85t7"] +atlas = ExtResource("517_pjr2h") +region = Rect2(0, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nb4v4"] +atlas = ExtResource("517_pjr2h") +region = Rect2(100, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cl00x"] +atlas = ExtResource("517_pjr2h") +region = Rect2(200, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ufcsw"] +atlas = ExtResource("517_pjr2h") +region = Rect2(300, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aoisp"] +atlas = ExtResource("517_pjr2h") +region = Rect2(400, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3rkdy"] +atlas = ExtResource("517_pjr2h") +region = Rect2(500, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o0dym"] +atlas = ExtResource("517_pjr2h") +region = Rect2(0, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vxihx"] +atlas = ExtResource("517_pjr2h") +region = Rect2(100, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ofpmt"] +atlas = ExtResource("517_pjr2h") +region = Rect2(200, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ux0ir"] +atlas = ExtResource("517_pjr2h") +region = Rect2(300, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8dgch"] +atlas = ExtResource("517_pjr2h") +region = Rect2(400, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7ixin"] +atlas = ExtResource("517_pjr2h") +region = Rect2(500, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2kea0"] +atlas = ExtResource("517_pjr2h") +region = Rect2(0, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kgnps"] +atlas = ExtResource("517_pjr2h") +region = Rect2(100, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g2wgu"] +atlas = ExtResource("517_pjr2h") +region = Rect2(200, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0oosk"] +atlas = ExtResource("517_pjr2h") +region = Rect2(300, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_80k2g"] +atlas = ExtResource("517_pjr2h") +region = Rect2(400, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fskx7"] +atlas = ExtResource("517_pjr2h") +region = Rect2(500, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_no3pe"] +atlas = ExtResource("517_pjr2h") +region = Rect2(0, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_15fnm"] +atlas = ExtResource("517_pjr2h") +region = Rect2(100, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r5e73"] +atlas = ExtResource("517_pjr2h") +region = Rect2(200, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2im8t"] +atlas = ExtResource("517_pjr2h") +region = Rect2(300, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mxl2m"] +atlas = ExtResource("517_pjr2h") +region = Rect2(400, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6dwuh"] +atlas = ExtResource("517_pjr2h") +region = Rect2(500, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_53c1f"] +atlas = ExtResource("517_pjr2h") +region = Rect2(0, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mmbhy"] +atlas = ExtResource("517_pjr2h") +region = Rect2(100, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uwbh3"] +atlas = ExtResource("517_pjr2h") +region = Rect2(200, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j6v2y"] +atlas = ExtResource("517_pjr2h") +region = Rect2(300, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h5xbu"] +atlas = ExtResource("517_pjr2h") +region = Rect2(400, 400, 100, 100) + +[sub_resource type="SpriteFrames" id="SpriteFrames_doobi"] +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("518_hlh43") +region = Rect2(875, 452, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ekrqp"] +atlas = ExtResource("518_hlh43") +region = Rect2(1050, 452, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dvnic"] +atlas = ExtResource("518_hlh43") +region = Rect2(1225, 452, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rxdv7"] +atlas = ExtResource("518_hlh43") +region = Rect2(1400, 452, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0pvcp"] +atlas = ExtResource("518_hlh43") +region = Rect2(0, 678, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yga3t"] +atlas = ExtResource("518_hlh43") +region = Rect2(175, 678, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c6qrx"] +atlas = ExtResource("518_hlh43") +region = Rect2(350, 678, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fkryw"] +atlas = ExtResource("518_hlh43") +region = Rect2(525, 678, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jt7jg"] +atlas = ExtResource("518_hlh43") +region = Rect2(700, 678, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6eyjl"] +atlas = ExtResource("518_hlh43") +region = Rect2(875, 678, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tsolq"] +atlas = ExtResource("518_hlh43") +region = Rect2(1050, 678, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_opqal"] +atlas = ExtResource("518_hlh43") +region = Rect2(1225, 678, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kia47"] +atlas = ExtResource("518_hlh43") +region = Rect2(1400, 678, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6aolf"] +atlas = ExtResource("518_hlh43") +region = Rect2(0, 904, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g6jok"] +atlas = ExtResource("518_hlh43") +region = Rect2(175, 904, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_swdkn"] +atlas = ExtResource("518_hlh43") +region = Rect2(350, 904, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_edlre"] +atlas = ExtResource("518_hlh43") +region = Rect2(525, 904, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gbj32"] +atlas = ExtResource("518_hlh43") +region = Rect2(700, 904, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bstol"] +atlas = ExtResource("518_hlh43") +region = Rect2(875, 904, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_57vey"] +atlas = ExtResource("518_hlh43") +region = Rect2(1050, 904, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_31ikn"] +atlas = ExtResource("518_hlh43") +region = Rect2(1225, 904, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e1yxa"] +atlas = ExtResource("518_hlh43") +region = Rect2(1400, 904, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7a7ks"] +atlas = ExtResource("518_hlh43") +region = Rect2(0, 1130, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p2hq6"] +atlas = ExtResource("518_hlh43") +region = Rect2(175, 1130, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k3fbj"] +atlas = ExtResource("518_hlh43") +region = Rect2(350, 1130, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ylav8"] +atlas = ExtResource("518_hlh43") +region = Rect2(525, 1130, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xhgk2"] +atlas = ExtResource("518_hlh43") +region = Rect2(700, 1130, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_diucy"] +atlas = ExtResource("518_hlh43") +region = Rect2(875, 1130, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8gw5n"] +atlas = ExtResource("518_hlh43") +region = Rect2(1050, 1130, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hc5wr"] +atlas = ExtResource("518_hlh43") +region = Rect2(1225, 1130, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fugdi"] +atlas = ExtResource("518_hlh43") +region = Rect2(1400, 1130, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h222i"] +atlas = ExtResource("518_hlh43") +region = Rect2(0, 1356, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7qa4p"] +atlas = ExtResource("518_hlh43") +region = Rect2(175, 1356, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jbavk"] +atlas = ExtResource("518_hlh43") +region = Rect2(350, 1356, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ncorq"] +atlas = ExtResource("518_hlh43") +region = Rect2(525, 1356, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mdvft"] +atlas = ExtResource("518_hlh43") +region = Rect2(700, 1356, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ljrf5"] +atlas = ExtResource("518_hlh43") +region = Rect2(875, 1356, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r7ll6"] +atlas = ExtResource("518_hlh43") +region = Rect2(1050, 1356, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6vssn"] +atlas = ExtResource("518_hlh43") +region = Rect2(1225, 1356, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4lr8r"] +atlas = ExtResource("518_hlh43") +region = Rect2(1400, 1356, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xp4kq"] +atlas = ExtResource("518_hlh43") +region = Rect2(0, 1582, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_idymv"] +atlas = ExtResource("518_hlh43") +region = Rect2(175, 1582, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ujl1x"] +atlas = ExtResource("518_hlh43") +region = Rect2(350, 1582, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_37wgc"] +atlas = ExtResource("518_hlh43") +region = Rect2(525, 1582, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g5fso"] +atlas = ExtResource("518_hlh43") +region = Rect2(700, 1582, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4a47d"] +atlas = ExtResource("518_hlh43") +region = Rect2(875, 1582, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eh3iw"] +atlas = ExtResource("518_hlh43") +region = Rect2(1050, 1582, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jc54a"] +atlas = ExtResource("518_hlh43") +region = Rect2(1225, 1582, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xyo6b"] +atlas = ExtResource("518_hlh43") +region = Rect2(1400, 1582, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gnyks"] +atlas = ExtResource("518_hlh43") +region = Rect2(0, 1808, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_08lae"] +atlas = ExtResource("518_hlh43") +region = Rect2(175, 1808, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r710l"] +atlas = ExtResource("518_hlh43") +region = Rect2(350, 1808, 175, 226) + +[sub_resource type="SpriteFrames" id="SpriteFrames_xgpec"] +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("519_10f6n") +region = Rect2(134, 0, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_56ojt"] +atlas = ExtResource("519_10f6n") +region = Rect2(402, 0, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jwkdt"] +atlas = ExtResource("519_10f6n") +region = Rect2(670, 0, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tklqq"] +atlas = ExtResource("519_10f6n") +region = Rect2(938, 0, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0kd7d"] +atlas = ExtResource("519_10f6n") +region = Rect2(1206, 0, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uoo6g"] +atlas = ExtResource("519_10f6n") +region = Rect2(134, 134, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eyk0y"] +atlas = ExtResource("519_10f6n") +region = Rect2(402, 134, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0imbq"] +atlas = ExtResource("519_10f6n") +region = Rect2(670, 134, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oys1t"] +atlas = ExtResource("519_10f6n") +region = Rect2(938, 134, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_06alo"] +atlas = ExtResource("519_10f6n") +region = Rect2(1206, 134, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uoxdj"] +atlas = ExtResource("519_10f6n") +region = Rect2(134, 268, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rcb13"] +atlas = ExtResource("519_10f6n") +region = Rect2(402, 268, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pj86n"] +atlas = ExtResource("519_10f6n") +region = Rect2(670, 268, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qpw3f"] +atlas = ExtResource("519_10f6n") +region = Rect2(938, 268, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gn6h7"] +atlas = ExtResource("519_10f6n") +region = Rect2(1206, 268, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lkh03"] +atlas = ExtResource("519_10f6n") +region = Rect2(134, 402, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pdi3o"] +atlas = ExtResource("519_10f6n") +region = Rect2(402, 402, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s3ywy"] +atlas = ExtResource("519_10f6n") +region = Rect2(670, 402, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6idxu"] +atlas = ExtResource("519_10f6n") +region = Rect2(938, 402, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qndi3"] +atlas = ExtResource("519_10f6n") +region = Rect2(1206, 402, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y4ahc"] +atlas = ExtResource("519_10f6n") +region = Rect2(134, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y5c6p"] +atlas = ExtResource("519_10f6n") +region = Rect2(402, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oa8p3"] +atlas = ExtResource("519_10f6n") +region = Rect2(670, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rc08e"] +atlas = ExtResource("519_10f6n") +region = Rect2(938, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8tw6t"] +atlas = ExtResource("519_10f6n") +region = Rect2(1206, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_njvn5"] +atlas = ExtResource("519_10f6n") +region = Rect2(134, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cwp0x"] +atlas = ExtResource("519_10f6n") +region = Rect2(402, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hch5s"] +atlas = ExtResource("519_10f6n") +region = Rect2(670, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vgjuv"] +atlas = ExtResource("519_10f6n") +region = Rect2(938, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1502j"] +atlas = ExtResource("519_10f6n") +region = Rect2(1206, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5m1ra"] +atlas = ExtResource("519_10f6n") +region = Rect2(134, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l0imt"] +atlas = ExtResource("519_10f6n") +region = Rect2(402, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ywb2s"] +atlas = ExtResource("519_10f6n") +region = Rect2(670, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x5582"] +atlas = ExtResource("519_10f6n") +region = Rect2(938, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4uy6l"] +atlas = ExtResource("519_10f6n") +region = Rect2(1206, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_50esb"] +atlas = ExtResource("519_10f6n") +region = Rect2(134, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xnham"] +atlas = ExtResource("519_10f6n") +region = Rect2(402, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j1cf1"] +atlas = ExtResource("519_10f6n") +region = Rect2(670, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jvde4"] +atlas = ExtResource("519_10f6n") +region = Rect2(938, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dvkgv"] +atlas = ExtResource("519_10f6n") +region = Rect2(1206, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3ant7"] +atlas = ExtResource("519_10f6n") +region = Rect2(134, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a6f8y"] +atlas = ExtResource("519_10f6n") +region = Rect2(402, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ancbh"] +atlas = ExtResource("519_10f6n") +region = Rect2(670, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yes2c"] +atlas = ExtResource("519_10f6n") +region = Rect2(938, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cs2h2"] +atlas = ExtResource("519_10f6n") +region = Rect2(1206, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n2i2d"] +atlas = ExtResource("519_10f6n") +region = Rect2(134, 1206, 134, 134) + +[sub_resource type="SpriteFrames" id="SpriteFrames_kuq7w"] +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="BoxShape3D" id="BoxShape3D_l4fpo"] size = Vector3(2, 1, 2) @@ -3434,6 +6121,483 @@ _data = { &"RESET": SubResource("Animation_jd3bx") } +[sub_resource type="Animation" id="Animation_30xy4"] +resource_name = "CurseHit" +length = 1.56667 +tracks/0/type = "value" +tracks/0/imported = false +tracks/0/enabled = true +tracks/0/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Curse Hit Effect:animation") +tracks/0/interp = 1 +tracks/0/loop_wrap = true +tracks/0/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"default"] +} +tracks/1/type = "value" +tracks/1/imported = false +tracks/1/enabled = true +tracks/1/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Curse Hit Effect:frame") +tracks/1/interp = 1 +tracks/1/loop_wrap = true +tracks/1/keys = { +"times": PackedFloat32Array(0, 1.56667), +"transitions": PackedFloat32Array(1, 1), +"update": 0, +"values": [0, 47] +} + +[sub_resource type="Animation" id="Animation_3pm1j"] +resource_name = "EarthHit" +length = 1.46667 +tracks/0/type = "value" +tracks/0/imported = false +tracks/0/enabled = true +tracks/0/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Earth Hit Effect:animation") +tracks/0/interp = 1 +tracks/0/loop_wrap = true +tracks/0/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"EARTH DAMAGE"] +} +tracks/1/type = "value" +tracks/1/imported = false +tracks/1/enabled = true +tracks/1/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Earth Hit Effect:frame") +tracks/1/interp = 1 +tracks/1/loop_wrap = true +tracks/1/keys = { +"times": PackedFloat32Array(0, 1.46667), +"transitions": PackedFloat32Array(1, 1), +"update": 0, +"values": [0, 44] +} + +[sub_resource type="Animation" id="Animation_6shfu"] +resource_name = "Fire Damage" +length = 2.93334 +tracks/0/type = "value" +tracks/0/imported = false +tracks/0/enabled = true +tracks/0/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/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("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/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("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/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)] +} +tracks/3/type = "value" +tracks/3/imported = false +tracks/3/enabled = true +tracks/3/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Rust Activation Effect:animation") +tracks/3/interp = 1 +tracks/3/loop_wrap = true +tracks/3/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"default"] +} +tracks/4/type = "value" +tracks/4/imported = false +tracks/4/enabled = true +tracks/4/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Rust Activation Effect:frame") +tracks/4/interp = 1 +tracks/4/loop_wrap = true +tracks/4/keys = { +"times": PackedFloat32Array(0, 2.93333), +"transitions": PackedFloat32Array(1, 1), +"update": 0, +"values": [88, 88] +} + +[sub_resource type="Animation" id="Animation_f5cjs"] +resource_name = "HolyHit" +length = 0.700003 +tracks/0/type = "value" +tracks/0/imported = false +tracks/0/enabled = true +tracks/0/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Holy Hit Layer Effect:animation") +tracks/0/interp = 1 +tracks/0/loop_wrap = true +tracks/0/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"HOLY"] +} +tracks/1/type = "value" +tracks/1/imported = false +tracks/1/enabled = true +tracks/1/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Holy Hit Layer Effect:frame") +tracks/1/interp = 1 +tracks/1/loop_wrap = true +tracks/1/keys = { +"times": PackedFloat32Array(0, 0.7), +"transitions": PackedFloat32Array(1, 1), +"update": 0, +"values": [0, 21] +} + +[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("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/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("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/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("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/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"] +} +tracks/3/type = "value" +tracks/3/imported = false +tracks/3/enabled = true +tracks/3/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Rust Activation Effect:animation") +tracks/3/interp = 1 +tracks/3/loop_wrap = true +tracks/3/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"default"] +} +tracks/4/type = "value" +tracks/4/imported = false +tracks/4/enabled = true +tracks/4/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Rust Activation Effect:frame") +tracks/4/interp = 1 +tracks/4/loop_wrap = true +tracks/4/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [88] +} +tracks/5/type = "value" +tracks/5/imported = false +tracks/5/enabled = true +tracks/5/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Holy Hit Layer Effect:animation") +tracks/5/interp = 1 +tracks/5/loop_wrap = true +tracks/5/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"HOLY"] +} +tracks/6/type = "value" +tracks/6/imported = false +tracks/6/enabled = true +tracks/6/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Holy Hit Layer Effect:frame") +tracks/6/interp = 1 +tracks/6/loop_wrap = true +tracks/6/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [0] +} +tracks/7/type = "value" +tracks/7/imported = false +tracks/7/enabled = true +tracks/7/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Wind Hit Layer Effect:animation") +tracks/7/interp = 1 +tracks/7/loop_wrap = true +tracks/7/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"default"] +} +tracks/8/type = "value" +tracks/8/imported = false +tracks/8/enabled = true +tracks/8/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Wind Hit Layer Effect:frame") +tracks/8/interp = 1 +tracks/8/loop_wrap = true +tracks/8/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [50] +} +tracks/9/type = "value" +tracks/9/imported = false +tracks/9/enabled = true +tracks/9/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Water Hit Layer 1 Effect:animation") +tracks/9/interp = 1 +tracks/9/loop_wrap = true +tracks/9/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"WATER DAMAGE"] +} +tracks/10/type = "value" +tracks/10/imported = false +tracks/10/enabled = true +tracks/10/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Water Hit Layer 1 Effect:frame") +tracks/10/interp = 1 +tracks/10/loop_wrap = true +tracks/10/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [29] +} +tracks/11/type = "value" +tracks/11/imported = false +tracks/11/enabled = true +tracks/11/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Water Hit Layer 2Effect:animation") +tracks/11/interp = 1 +tracks/11/loop_wrap = true +tracks/11/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"WATER"] +} +tracks/12/type = "value" +tracks/12/imported = false +tracks/12/enabled = true +tracks/12/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Water Hit Layer 2Effect:frame") +tracks/12/interp = 1 +tracks/12/loop_wrap = true +tracks/12/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [51] +} +tracks/13/type = "value" +tracks/13/imported = false +tracks/13/enabled = true +tracks/13/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Curse Hit Effect:animation") +tracks/13/interp = 1 +tracks/13/loop_wrap = true +tracks/13/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"default"] +} +tracks/14/type = "value" +tracks/14/imported = false +tracks/14/enabled = true +tracks/14/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Curse Hit Effect:frame") +tracks/14/interp = 1 +tracks/14/loop_wrap = true +tracks/14/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [47] +} +tracks/15/type = "value" +tracks/15/imported = false +tracks/15/enabled = true +tracks/15/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Earth Hit Effect:animation") +tracks/15/interp = 1 +tracks/15/loop_wrap = true +tracks/15/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"WATER DAMAGE"] +} +tracks/16/type = "value" +tracks/16/imported = false +tracks/16/enabled = true +tracks/16/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Earth Hit Effect:frame") +tracks/16/interp = 1 +tracks/16/loop_wrap = true +tracks/16/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [0] +} + +[sub_resource type="Animation" id="Animation_0tqwp"] +resource_name = "RustActivate" +length = 1.46667 +step = 0.0166667 +tracks/0/type = "value" +tracks/0/imported = false +tracks/0/enabled = true +tracks/0/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Rust Activation Effect:animation") +tracks/0/interp = 1 +tracks/0/loop_wrap = true +tracks/0/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"default"] +} +tracks/1/type = "value" +tracks/1/imported = false +tracks/1/enabled = true +tracks/1/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Rust Activation Effect:frame") +tracks/1/interp = 1 +tracks/1/loop_wrap = true +tracks/1/keys = { +"times": PackedFloat32Array(0, 1.46667), +"transitions": PackedFloat32Array(1, 1), +"update": 0, +"values": [0, 88] +} + +[sub_resource type="Animation" id="Animation_q5dfb"] +resource_name = "WaterHit" +length = 1.7 +tracks/0/type = "value" +tracks/0/imported = false +tracks/0/enabled = true +tracks/0/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Water Hit Layer 1 Effect:animation") +tracks/0/interp = 1 +tracks/0/loop_wrap = true +tracks/0/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"WATER DAMAGE"] +} +tracks/1/type = "value" +tracks/1/imported = false +tracks/1/enabled = true +tracks/1/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Water Hit Layer 1 Effect:frame") +tracks/1/interp = 1 +tracks/1/loop_wrap = true +tracks/1/keys = { +"times": PackedFloat32Array(0, 1), +"transitions": PackedFloat32Array(1, 1), +"update": 0, +"values": [0, 29] +} +tracks/2/type = "value" +tracks/2/imported = false +tracks/2/enabled = true +tracks/2/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Water Hit Layer 2Effect:animation") +tracks/2/interp = 1 +tracks/2/loop_wrap = true +tracks/2/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"WATER"] +} +tracks/3/type = "value" +tracks/3/imported = false +tracks/3/enabled = true +tracks/3/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Water Hit Layer 2Effect:frame") +tracks/3/interp = 1 +tracks/3/loop_wrap = true +tracks/3/keys = { +"times": PackedFloat32Array(0, 1.7), +"transitions": PackedFloat32Array(1, 1), +"update": 0, +"values": [0, 51] +} + +[sub_resource type="Animation" id="Animation_godpv"] +resource_name = "WindHit" +length = 0.833335 +step = 0.0166667 +tracks/0/type = "value" +tracks/0/imported = false +tracks/0/enabled = true +tracks/0/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Wind Hit Layer Effect:animation") +tracks/0/interp = 1 +tracks/0/loop_wrap = true +tracks/0/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"default"] +} +tracks/1/type = "value" +tracks/1/imported = false +tracks/1/enabled = true +tracks/1/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Wind Hit Layer Effect:frame") +tracks/1/interp = 1 +tracks/1/loop_wrap = true +tracks/1/keys = { +"times": PackedFloat32Array(0, 0.833333), +"transitions": PackedFloat32Array(1, 1), +"update": 0, +"values": [0, 50] +} + +[sub_resource type="AnimationLibrary" id="AnimationLibrary_0tqwp"] +_data = { +&"CurseHit": SubResource("Animation_30xy4"), +&"EarthHit": SubResource("Animation_3pm1j"), +&"FireHit": SubResource("Animation_6shfu"), +&"HolyHit": SubResource("Animation_f5cjs"), +&"RESET": SubResource("Animation_cftgd"), +&"RustActivate": SubResource("Animation_0tqwp"), +&"WaterHit": SubResource("Animation_q5dfb"), +&"WindHit": SubResource("Animation_godpv") +} + [node name="EnemyModelView" type="Node3D"] script = ExtResource("1_h8pla") @@ -3465,6 +6629,60 @@ sprite_frames = SubResource("SpriteFrames_mlptn") animation = &"idle_front" offset = Vector2(200, 200) +[node name="VFXSprites" type="Node2D" parent="Sprite3D/SubViewportContainer/SubViewport"] + +[node name="Rust Activation Effect" type="AnimatedSprite2D" parent="Sprite3D/SubViewportContainer/SubViewport/VFXSprites"] +position = Vector2(400, 400) +scale = Vector2(1.54, 1.54) +sprite_frames = SubResource("SpriteFrames_tnkq4") +frame = 88 + +[node name="Holy Hit Layer Effect" type="AnimatedSprite2D" parent="Sprite3D/SubViewportContainer/SubViewport/VFXSprites"] +position = Vector2(400, 400) +scale = Vector2(0.675, 0.675) +sprite_frames = SubResource("SpriteFrames_kwnpp") +animation = &"HOLY" + +[node name="Wind Hit Layer Effect" type="AnimatedSprite2D" parent="Sprite3D/SubViewportContainer/SubViewport/VFXSprites"] +position = Vector2(400, 400) +scale = Vector2(1.445, 1.445) +sprite_frames = SubResource("SpriteFrames_8twok") +frame = 50 + +[node name="Flame Hit Effect" type="AnimatedSprite2D" parent="Sprite3D/SubViewportContainer/SubViewport/VFXSprites"] +position = Vector2(400, 400) +scale = Vector2(3.445, 3.445) +sprite_frames = SubResource("SpriteFrames_ty4do") +animation = &"Flame Damage" +frame = 40 + +[node name="Water Hit Layer 1 Effect" type="AnimatedSprite2D" parent="Sprite3D/SubViewportContainer/SubViewport/VFXSprites"] +position = Vector2(400, 400) +scale = Vector2(2.215, 2.215) +sprite_frames = SubResource("SpriteFrames_doobi") +animation = &"WATER DAMAGE" +frame = 29 + +[node name="Water Hit Layer 2Effect" type="AnimatedSprite2D" parent="Sprite3D/SubViewportContainer/SubViewport/VFXSprites"] +position = Vector2(400, 400) +scale = Vector2(1.105, 0.895) +sprite_frames = SubResource("SpriteFrames_xgpec") +animation = &"WATER" +frame = 51 + +[node name="Curse Hit Effect" type="AnimatedSprite2D" parent="Sprite3D/SubViewportContainer/SubViewport/VFXSprites"] +texture_filter = 1 +position = Vector2(400, 400) +scale = Vector2(2.78, 2.78) +sprite_frames = SubResource("SpriteFrames_kuq7w") +frame = 47 + +[node name="Earth Hit Effect" type="AnimatedSprite2D" parent="Sprite3D/SubViewportContainer/SubViewport/VFXSprites"] +position = Vector2(400, 400) +scale = Vector2(2.005, 2.005) +sprite_frames = SubResource("SpriteFrames_doobi") +animation = &"WATER DAMAGE" + [node name="Hitbox" type="Area3D" parent="."] unique_name_in_owner = true transform = Transform3D(-1, 0, -8.74228e-08, 0, 1, 0, 8.74228e-08, 0, -1, -0.152949, 0.581165, 0) @@ -3513,3 +6731,52 @@ unique_name_in_owner = true transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.581165, 0) autoplay = true bus = &"SFX" + +[node name="VFXAnimations" type="Node" parent="."] + +[node name="FlameHitAnimation" type="AnimationPlayer" parent="VFXAnimations"] +unique_name_in_owner = true +libraries = { +&"": SubResource("AnimationLibrary_0tqwp") +} + +[node name="RustHitAnimation" type="AnimationPlayer" parent="VFXAnimations"] +unique_name_in_owner = true +root_node = NodePath("../../Secondary Animation Player") +libraries = { +&"": SubResource("AnimationLibrary_0tqwp") +} + +[node name="HolyHitAnimation" type="AnimationPlayer" parent="VFXAnimations"] +unique_name_in_owner = true +libraries = { +&"": SubResource("AnimationLibrary_0tqwp") +} + +[node name="WindHitAnimation" type="AnimationPlayer" parent="VFXAnimations"] +unique_name_in_owner = true +root_node = NodePath("../../Secondary Animation Player") +libraries = { +&"": SubResource("AnimationLibrary_0tqwp") +} + +[node name="WaterHitAnimation" type="AnimationPlayer" parent="VFXAnimations"] +unique_name_in_owner = true +root_node = NodePath("../../Secondary Animation Player") +libraries = { +&"": SubResource("AnimationLibrary_0tqwp") +} + +[node name="CurseHitAnimation" type="AnimationPlayer" parent="VFXAnimations"] +unique_name_in_owner = true +root_node = NodePath("../../Secondary Animation Player") +libraries = { +&"": SubResource("AnimationLibrary_0tqwp") +} + +[node name="EarthHitAnimation" type="AnimationPlayer" parent="VFXAnimations"] +unique_name_in_owner = true +root_node = NodePath("../../Secondary Animation Player") +libraries = { +&"": SubResource("AnimationLibrary_0tqwp") +} diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/13. gold sproingy/GoldSproingyModelView.tscn b/Zennysoft.Game.Ma/src/enemy/enemy_types/13. gold sproingy/GoldSproingyModelView.tscn index ad00ef9c..2d072a8d 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/13. gold sproingy/GoldSproingyModelView.tscn +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/13. gold sproingy/GoldSproingyModelView.tscn @@ -1,4 +1,4 @@ -[gd_scene load_steps=67 format=3 uid="uid://dw7fyurv4vkd5"] +[gd_scene load_steps=462 format=3 uid="uid://dw7fyurv4vkd5"] [ext_resource type="Script" uid="uid://cvr1qimxpignl" path="res://src/enemy/EnemyModelView2D.cs" id="1_7w22e"] [ext_resource type="Script" uid="uid://dlsgyx4i1jmp3" path="res://src/enemy/EnemyLoreInfo.cs" id="2_ca1o5"] @@ -48,7 +48,15 @@ [ext_resource type="Texture2D" uid="uid://cssrkfehdhgp5" path="res://src/enemy/enemy_types/13. gold sproingy/animations/GOLD_SPROING_SIDE/Layer 13.png" id="30_lcdw8"] [ext_resource type="Texture2D" uid="uid://dl12u2wcp0fkb" path="res://src/enemy/enemy_types/13. gold sproingy/animations/GOLD_SPROING_SIDE/Layer 14.png" id="31_ie1nt"] [ext_resource type="Texture2D" uid="uid://bcu6ei8kbcv2w" path="res://src/enemy/enemy_types/13. gold sproingy/animations/GOLD_SPROING_SIDE/Layer 15.png" id="32_u2p8a"] +[ext_resource type="Texture2D" uid="uid://dq70aipwl1qrg" path="res://src/vfx/Enemy Affected/Rust Particles.png" id="49_ofrux"] +[ext_resource type="Texture2D" uid="uid://by0ehygy7bq13" path="res://src/vfx/Enemy Affected/Holy Damage.png" id="50_dson0"] +[ext_resource type="Texture2D" uid="uid://dqqhu0s51o3n7" path="res://src/vfx/Enemy Affected/Wind Damage.png" id="51_n6dfj"] [ext_resource type="Texture2D" uid="uid://dafpnwkwcukp4" path="res://src/vfx/shadow_test_1.png" id="51_smvnd"] +[ext_resource type="Texture2D" uid="uid://dh6mk1c35nymx" path="res://src/vfx/Enemy Affected/firedamage.png" id="52_etb7g"] +[ext_resource type="Texture2D" uid="uid://7a42df2ijrmv" path="res://src/vfx/Enemy Affected/earth damage.png" id="53_1rte7"] +[ext_resource type="Texture2D" uid="uid://cot4wx5fg5pfs" path="res://src/vfx/Enemy Affected/water_hit_layer2.png" id="54_kddwa"] +[ext_resource type="Texture2D" uid="uid://cbei66g134fgv" path="res://src/vfx/Enemy Affected/water layer 1.png" id="55_cnghk"] +[ext_resource type="Texture2D" uid="uid://bp6npqoco5fl3" path="res://src/vfx/Enemy Affected/curse_damage.png" id="56_vj77s"] [ext_resource type="AnimationNodeStateMachine" uid="uid://co7lshemjrro8" path="res://src/enemy/animation_state_machines/IdleStateMachine.tres" id="60_uwoec"] [sub_resource type="Resource" id="Resource_ivy74"] @@ -220,6 +228,2685 @@ animations = [{ "speed": 12.0 }] +[sub_resource type="AtlasTexture" id="AtlasTexture_4o5f2"] +atlas = ExtResource("49_ofrux") +region = Rect2(1206, 402, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r8ggx"] +atlas = ExtResource("49_ofrux") +region = Rect2(1340, 402, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xafpd"] +atlas = ExtResource("49_ofrux") +region = Rect2(1474, 402, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_73dpc"] +atlas = ExtResource("49_ofrux") +region = Rect2(0, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vppxt"] +atlas = ExtResource("49_ofrux") +region = Rect2(134, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nk562"] +atlas = ExtResource("49_ofrux") +region = Rect2(268, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dwu2q"] +atlas = ExtResource("49_ofrux") +region = Rect2(402, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w3p3j"] +atlas = ExtResource("49_ofrux") +region = Rect2(536, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ig0ip"] +atlas = ExtResource("49_ofrux") +region = Rect2(670, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r4enw"] +atlas = ExtResource("49_ofrux") +region = Rect2(804, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uy6hg"] +atlas = ExtResource("49_ofrux") +region = Rect2(938, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_85jwg"] +atlas = ExtResource("49_ofrux") +region = Rect2(1072, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ln7dl"] +atlas = ExtResource("49_ofrux") +region = Rect2(1206, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3vvgp"] +atlas = ExtResource("49_ofrux") +region = Rect2(1340, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_01f7m"] +atlas = ExtResource("49_ofrux") +region = Rect2(1474, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pp21u"] +atlas = ExtResource("49_ofrux") +region = Rect2(0, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1aldj"] +atlas = ExtResource("49_ofrux") +region = Rect2(134, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xv5pw"] +atlas = ExtResource("49_ofrux") +region = Rect2(268, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_14lh3"] +atlas = ExtResource("49_ofrux") +region = Rect2(402, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xxid6"] +atlas = ExtResource("49_ofrux") +region = Rect2(536, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y6yeo"] +atlas = ExtResource("49_ofrux") +region = Rect2(670, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2aohu"] +atlas = ExtResource("49_ofrux") +region = Rect2(804, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ebvc7"] +atlas = ExtResource("49_ofrux") +region = Rect2(938, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yd50d"] +atlas = ExtResource("49_ofrux") +region = Rect2(1072, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yimdu"] +atlas = ExtResource("49_ofrux") +region = Rect2(1206, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dync1"] +atlas = ExtResource("49_ofrux") +region = Rect2(1340, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jsjdk"] +atlas = ExtResource("49_ofrux") +region = Rect2(1474, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ueih5"] +atlas = ExtResource("49_ofrux") +region = Rect2(0, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k0hut"] +atlas = ExtResource("49_ofrux") +region = Rect2(134, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kybji"] +atlas = ExtResource("49_ofrux") +region = Rect2(268, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u5vpt"] +atlas = ExtResource("49_ofrux") +region = Rect2(402, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wko4t"] +atlas = ExtResource("49_ofrux") +region = Rect2(536, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ru86o"] +atlas = ExtResource("49_ofrux") +region = Rect2(670, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uybbj"] +atlas = ExtResource("49_ofrux") +region = Rect2(804, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s6pp8"] +atlas = ExtResource("49_ofrux") +region = Rect2(938, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a7pls"] +atlas = ExtResource("49_ofrux") +region = Rect2(1072, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_30y71"] +atlas = ExtResource("49_ofrux") +region = Rect2(1206, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dwl1c"] +atlas = ExtResource("49_ofrux") +region = Rect2(1340, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_01jp4"] +atlas = ExtResource("49_ofrux") +region = Rect2(1474, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b8ulh"] +atlas = ExtResource("49_ofrux") +region = Rect2(0, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3walv"] +atlas = ExtResource("49_ofrux") +region = Rect2(134, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_exyoj"] +atlas = ExtResource("49_ofrux") +region = Rect2(268, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kus54"] +atlas = ExtResource("49_ofrux") +region = Rect2(402, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_meauc"] +atlas = ExtResource("49_ofrux") +region = Rect2(536, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7v7xr"] +atlas = ExtResource("49_ofrux") +region = Rect2(670, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4ktea"] +atlas = ExtResource("49_ofrux") +region = Rect2(804, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l8oa1"] +atlas = ExtResource("49_ofrux") +region = Rect2(938, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3eopa"] +atlas = ExtResource("49_ofrux") +region = Rect2(1072, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ip8hv"] +atlas = ExtResource("49_ofrux") +region = Rect2(1206, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_42rbq"] +atlas = ExtResource("49_ofrux") +region = Rect2(1340, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tu0vu"] +atlas = ExtResource("49_ofrux") +region = Rect2(1474, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gbh7l"] +atlas = ExtResource("49_ofrux") +region = Rect2(0, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_733jx"] +atlas = ExtResource("49_ofrux") +region = Rect2(134, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sfa2q"] +atlas = ExtResource("49_ofrux") +region = Rect2(268, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o0nvo"] +atlas = ExtResource("49_ofrux") +region = Rect2(402, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1mv1w"] +atlas = ExtResource("49_ofrux") +region = Rect2(536, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yw8ob"] +atlas = ExtResource("49_ofrux") +region = Rect2(670, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ptkbd"] +atlas = ExtResource("49_ofrux") +region = Rect2(804, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2uoiw"] +atlas = ExtResource("49_ofrux") +region = Rect2(938, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4m684"] +atlas = ExtResource("49_ofrux") +region = Rect2(1072, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_st6fj"] +atlas = ExtResource("49_ofrux") +region = Rect2(1206, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1wana"] +atlas = ExtResource("49_ofrux") +region = Rect2(1340, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ati4e"] +atlas = ExtResource("49_ofrux") +region = Rect2(1474, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0w31q"] +atlas = ExtResource("49_ofrux") +region = Rect2(0, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uxu33"] +atlas = ExtResource("49_ofrux") +region = Rect2(134, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2ulnd"] +atlas = ExtResource("49_ofrux") +region = Rect2(268, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ddsrn"] +atlas = ExtResource("49_ofrux") +region = Rect2(402, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n1e5w"] +atlas = ExtResource("49_ofrux") +region = Rect2(536, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f4aq5"] +atlas = ExtResource("49_ofrux") +region = Rect2(670, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_er00h"] +atlas = ExtResource("49_ofrux") +region = Rect2(804, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mlf5c"] +atlas = ExtResource("49_ofrux") +region = Rect2(938, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c362w"] +atlas = ExtResource("49_ofrux") +region = Rect2(1072, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_30wb7"] +atlas = ExtResource("49_ofrux") +region = Rect2(1206, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_stb0b"] +atlas = ExtResource("49_ofrux") +region = Rect2(1340, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a64qf"] +atlas = ExtResource("49_ofrux") +region = Rect2(1474, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_52bkw"] +atlas = ExtResource("49_ofrux") +region = Rect2(0, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y0yvc"] +atlas = ExtResource("49_ofrux") +region = Rect2(134, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5h2xe"] +atlas = ExtResource("49_ofrux") +region = Rect2(268, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6hh33"] +atlas = ExtResource("49_ofrux") +region = Rect2(402, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kmk3m"] +atlas = ExtResource("49_ofrux") +region = Rect2(536, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rbtmh"] +atlas = ExtResource("49_ofrux") +region = Rect2(670, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bit6n"] +atlas = ExtResource("49_ofrux") +region = Rect2(804, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_458hw"] +atlas = ExtResource("49_ofrux") +region = Rect2(938, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4x2ea"] +atlas = ExtResource("49_ofrux") +region = Rect2(1072, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bcljt"] +atlas = ExtResource("49_ofrux") +region = Rect2(1206, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p6e34"] +atlas = ExtResource("49_ofrux") +region = Rect2(1340, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2yfi0"] +atlas = ExtResource("49_ofrux") +region = Rect2(1474, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bhoxy"] +atlas = ExtResource("49_ofrux") +region = Rect2(0, 1474, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_41wyx"] +atlas = ExtResource("49_ofrux") +region = Rect2(134, 1474, 134, 134) + +[sub_resource type="SpriteFrames" id="SpriteFrames_fks4e"] +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("50_dson0") +region = Rect2(1024, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pvn2l"] +atlas = ExtResource("50_dson0") +region = Rect2(1536, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sctov"] +atlas = ExtResource("50_dson0") +region = Rect2(2048, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_46bwa"] +atlas = ExtResource("50_dson0") +region = Rect2(2560, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o42jv"] +atlas = ExtResource("50_dson0") +region = Rect2(3072, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5dqsk"] +atlas = ExtResource("50_dson0") +region = Rect2(3584, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_35l4k"] +atlas = ExtResource("50_dson0") +region = Rect2(4096, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x0jfm"] +atlas = ExtResource("50_dson0") +region = Rect2(4608, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fk16r"] +atlas = ExtResource("50_dson0") +region = Rect2(5120, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ewtdr"] +atlas = ExtResource("50_dson0") +region = Rect2(5632, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bul51"] +atlas = ExtResource("50_dson0") +region = Rect2(6144, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vbobf"] +atlas = ExtResource("50_dson0") +region = Rect2(6656, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_itqlk"] +atlas = ExtResource("50_dson0") +region = Rect2(7168, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_41jjh"] +atlas = ExtResource("50_dson0") +region = Rect2(7680, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kol03"] +atlas = ExtResource("50_dson0") +region = Rect2(0, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ynyxy"] +atlas = ExtResource("50_dson0") +region = Rect2(512, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ngcxk"] +atlas = ExtResource("50_dson0") +region = Rect2(1024, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ba8fa"] +atlas = ExtResource("50_dson0") +region = Rect2(1536, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ngitf"] +atlas = ExtResource("50_dson0") +region = Rect2(2048, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_boovf"] +atlas = ExtResource("50_dson0") +region = Rect2(2560, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jwkhr"] +atlas = ExtResource("50_dson0") +region = Rect2(3072, 512, 512, 512) + +[sub_resource type="SpriteFrames" id="SpriteFrames_hxvdw"] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": null +}, { +"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("51_n6dfj") +region = Rect2(0, 0, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3jmy8"] +atlas = ExtResource("51_n6dfj") +region = Rect2(266, 0, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t76hk"] +atlas = ExtResource("51_n6dfj") +region = Rect2(532, 0, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_06gff"] +atlas = ExtResource("51_n6dfj") +region = Rect2(798, 0, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ssjgs"] +atlas = ExtResource("51_n6dfj") +region = Rect2(1064, 0, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_53u6k"] +atlas = ExtResource("51_n6dfj") +region = Rect2(0, 131, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_inmu7"] +atlas = ExtResource("51_n6dfj") +region = Rect2(266, 131, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bmkvg"] +atlas = ExtResource("51_n6dfj") +region = Rect2(532, 131, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oqdmj"] +atlas = ExtResource("51_n6dfj") +region = Rect2(798, 131, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bnn41"] +atlas = ExtResource("51_n6dfj") +region = Rect2(1064, 131, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p6hmn"] +atlas = ExtResource("51_n6dfj") +region = Rect2(0, 262, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s0ybe"] +atlas = ExtResource("51_n6dfj") +region = Rect2(266, 262, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y2273"] +atlas = ExtResource("51_n6dfj") +region = Rect2(532, 262, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2i87r"] +atlas = ExtResource("51_n6dfj") +region = Rect2(798, 262, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4q8o2"] +atlas = ExtResource("51_n6dfj") +region = Rect2(1064, 262, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_esxmc"] +atlas = ExtResource("51_n6dfj") +region = Rect2(0, 393, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rdsur"] +atlas = ExtResource("51_n6dfj") +region = Rect2(266, 393, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b2qt4"] +atlas = ExtResource("51_n6dfj") +region = Rect2(532, 393, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xamrr"] +atlas = ExtResource("51_n6dfj") +region = Rect2(798, 393, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0prqh"] +atlas = ExtResource("51_n6dfj") +region = Rect2(1064, 393, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dh1oc"] +atlas = ExtResource("51_n6dfj") +region = Rect2(0, 524, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ybb1w"] +atlas = ExtResource("51_n6dfj") +region = Rect2(266, 524, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2nkua"] +atlas = ExtResource("51_n6dfj") +region = Rect2(532, 524, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2gocr"] +atlas = ExtResource("51_n6dfj") +region = Rect2(798, 524, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_acsou"] +atlas = ExtResource("51_n6dfj") +region = Rect2(1064, 524, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yflou"] +atlas = ExtResource("51_n6dfj") +region = Rect2(0, 655, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_env3c"] +atlas = ExtResource("51_n6dfj") +region = Rect2(266, 655, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_74f4l"] +atlas = ExtResource("51_n6dfj") +region = Rect2(532, 655, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cbaq7"] +atlas = ExtResource("51_n6dfj") +region = Rect2(798, 655, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bc4hh"] +atlas = ExtResource("51_n6dfj") +region = Rect2(1064, 655, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5m27y"] +atlas = ExtResource("51_n6dfj") +region = Rect2(0, 786, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c2vig"] +atlas = ExtResource("51_n6dfj") +region = Rect2(266, 786, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h8qbh"] +atlas = ExtResource("51_n6dfj") +region = Rect2(532, 786, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vj2ia"] +atlas = ExtResource("51_n6dfj") +region = Rect2(798, 786, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h0bv3"] +atlas = ExtResource("51_n6dfj") +region = Rect2(1064, 786, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3xb07"] +atlas = ExtResource("51_n6dfj") +region = Rect2(0, 917, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p845e"] +atlas = ExtResource("51_n6dfj") +region = Rect2(266, 917, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nm575"] +atlas = ExtResource("51_n6dfj") +region = Rect2(532, 917, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8wvvt"] +atlas = ExtResource("51_n6dfj") +region = Rect2(798, 917, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2l45l"] +atlas = ExtResource("51_n6dfj") +region = Rect2(1064, 917, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0c6u7"] +atlas = ExtResource("51_n6dfj") +region = Rect2(0, 1048, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bo1qh"] +atlas = ExtResource("51_n6dfj") +region = Rect2(266, 1048, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4cq22"] +atlas = ExtResource("51_n6dfj") +region = Rect2(532, 1048, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d6auk"] +atlas = ExtResource("51_n6dfj") +region = Rect2(798, 1048, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4bvg3"] +atlas = ExtResource("51_n6dfj") +region = Rect2(1064, 1048, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rps4p"] +atlas = ExtResource("51_n6dfj") +region = Rect2(0, 1179, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qdy2n"] +atlas = ExtResource("51_n6dfj") +region = Rect2(266, 1179, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a63dt"] +atlas = ExtResource("51_n6dfj") +region = Rect2(532, 1179, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3alol"] +atlas = ExtResource("51_n6dfj") +region = Rect2(798, 1179, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w5y4o"] +atlas = ExtResource("51_n6dfj") +region = Rect2(1064, 1179, 133, 131) + +[sub_resource type="SpriteFrames" id="SpriteFrames_apil1"] +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("52_etb7g") +region = Rect2(200, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w5yum"] +atlas = ExtResource("52_etb7g") +region = Rect2(600, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xagiq"] +atlas = ExtResource("52_etb7g") +region = Rect2(1000, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iu4h2"] +atlas = ExtResource("52_etb7g") +region = Rect2(100, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t6kmk"] +atlas = ExtResource("52_etb7g") +region = Rect2(500, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c3c22"] +atlas = ExtResource("52_etb7g") +region = Rect2(900, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_udm06"] +atlas = ExtResource("52_etb7g") +region = Rect2(0, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_31shi"] +atlas = ExtResource("52_etb7g") +region = Rect2(400, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i6wsf"] +atlas = ExtResource("52_etb7g") +region = Rect2(800, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jhluk"] +atlas = ExtResource("52_etb7g") +region = Rect2(1200, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_exq74"] +atlas = ExtResource("52_etb7g") +region = Rect2(300, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k7tc1"] +atlas = ExtResource("52_etb7g") +region = Rect2(700, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_456io"] +atlas = ExtResource("52_etb7g") +region = Rect2(1100, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2h7ac"] +atlas = ExtResource("52_etb7g") +region = Rect2(200, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dy5lo"] +atlas = ExtResource("52_etb7g") +region = Rect2(500, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_biyyn"] +atlas = ExtResource("52_etb7g") +region = Rect2(1000, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_flqm1"] +atlas = ExtResource("52_etb7g") +region = Rect2(100, 500, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xttn8"] +atlas = ExtResource("52_etb7g") +region = Rect2(500, 500, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_85rsb"] +atlas = ExtResource("52_etb7g") +region = Rect2(900, 500, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oxqm1"] +atlas = ExtResource("52_etb7g") +region = Rect2(0, 600, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dphle"] +atlas = ExtResource("52_etb7g") +region = Rect2(400, 600, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_48bul"] +atlas = ExtResource("52_etb7g") +region = Rect2(800, 600, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2d6tt"] +atlas = ExtResource("52_etb7g") +region = Rect2(1200, 600, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ty41g"] +atlas = ExtResource("52_etb7g") +region = Rect2(300, 700, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c5uyp"] +atlas = ExtResource("52_etb7g") +region = Rect2(700, 700, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tf4dl"] +atlas = ExtResource("52_etb7g") +region = Rect2(1100, 700, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cvdlu"] +atlas = ExtResource("52_etb7g") +region = Rect2(200, 800, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f25l1"] +atlas = ExtResource("52_etb7g") +region = Rect2(600, 800, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v033q"] +atlas = ExtResource("52_etb7g") +region = Rect2(1000, 800, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xgfkn"] +atlas = ExtResource("52_etb7g") +region = Rect2(100, 900, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_duxfd"] +atlas = ExtResource("52_etb7g") +region = Rect2(500, 900, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5uvt0"] +atlas = ExtResource("52_etb7g") +region = Rect2(900, 900, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7d05g"] +atlas = ExtResource("52_etb7g") +region = Rect2(0, 1000, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x0ube"] +atlas = ExtResource("52_etb7g") +region = Rect2(400, 1000, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_15y07"] +atlas = ExtResource("52_etb7g") +region = Rect2(800, 1000, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_de0po"] +atlas = ExtResource("52_etb7g") +region = Rect2(1200, 1000, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b3rtc"] +atlas = ExtResource("52_etb7g") +region = Rect2(300, 1100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q32lt"] +atlas = ExtResource("52_etb7g") +region = Rect2(700, 1100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_88hqh"] +atlas = ExtResource("52_etb7g") +region = Rect2(1100, 1100, 100, 100) + +[sub_resource type="SpriteFrames" id="SpriteFrames_3om1d"] +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("53_1rte7") +region = Rect2(0, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0rj30"] +atlas = ExtResource("53_1rte7") +region = Rect2(200, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ug1a1"] +atlas = ExtResource("53_1rte7") +region = Rect2(400, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8eees"] +atlas = ExtResource("53_1rte7") +region = Rect2(600, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k2i7i"] +atlas = ExtResource("53_1rte7") +region = Rect2(800, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4wwo5"] +atlas = ExtResource("53_1rte7") +region = Rect2(0, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_418m2"] +atlas = ExtResource("53_1rte7") +region = Rect2(200, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6g5qj"] +atlas = ExtResource("53_1rte7") +region = Rect2(400, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k3sey"] +atlas = ExtResource("53_1rte7") +region = Rect2(600, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ms40v"] +atlas = ExtResource("53_1rte7") +region = Rect2(800, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2tfej"] +atlas = ExtResource("53_1rte7") +region = Rect2(0, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_woj7f"] +atlas = ExtResource("53_1rte7") +region = Rect2(200, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kg861"] +atlas = ExtResource("53_1rte7") +region = Rect2(400, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jtxxp"] +atlas = ExtResource("53_1rte7") +region = Rect2(600, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sxooa"] +atlas = ExtResource("53_1rte7") +region = Rect2(800, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hkj2y"] +atlas = ExtResource("53_1rte7") +region = Rect2(0, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wm40h"] +atlas = ExtResource("53_1rte7") +region = Rect2(200, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u66v8"] +atlas = ExtResource("53_1rte7") +region = Rect2(400, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6ip85"] +atlas = ExtResource("53_1rte7") +region = Rect2(600, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qad2i"] +atlas = ExtResource("53_1rte7") +region = Rect2(800, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nifqu"] +atlas = ExtResource("53_1rte7") +region = Rect2(0, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_goocc"] +atlas = ExtResource("53_1rte7") +region = Rect2(200, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l78ua"] +atlas = ExtResource("53_1rte7") +region = Rect2(400, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ybqlc"] +atlas = ExtResource("53_1rte7") +region = Rect2(600, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d0lry"] +atlas = ExtResource("53_1rte7") +region = Rect2(800, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ccb2v"] +atlas = ExtResource("53_1rte7") +region = Rect2(0, 500, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dcp7h"] +atlas = ExtResource("53_1rte7") +region = Rect2(200, 500, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3kud6"] +atlas = ExtResource("53_1rte7") +region = Rect2(400, 500, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0tvc2"] +atlas = ExtResource("53_1rte7") +region = Rect2(600, 500, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g5aky"] +atlas = ExtResource("53_1rte7") +region = Rect2(800, 500, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nyc7u"] +atlas = ExtResource("53_1rte7") +region = Rect2(0, 600, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q1yeq"] +atlas = ExtResource("53_1rte7") +region = Rect2(200, 600, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pupfb"] +atlas = ExtResource("53_1rte7") +region = Rect2(400, 600, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gfe8c"] +atlas = ExtResource("53_1rte7") +region = Rect2(600, 600, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_76bl1"] +atlas = ExtResource("53_1rte7") +region = Rect2(800, 600, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u7frn"] +atlas = ExtResource("53_1rte7") +region = Rect2(0, 700, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ls3an"] +atlas = ExtResource("53_1rte7") +region = Rect2(200, 700, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4l6e0"] +atlas = ExtResource("53_1rte7") +region = Rect2(400, 700, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cvlbl"] +atlas = ExtResource("53_1rte7") +region = Rect2(600, 700, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jkvpv"] +atlas = ExtResource("53_1rte7") +region = Rect2(800, 700, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lpp7o"] +atlas = ExtResource("53_1rte7") +region = Rect2(0, 800, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v8igx"] +atlas = ExtResource("53_1rte7") +region = Rect2(200, 800, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mmm0q"] +atlas = ExtResource("53_1rte7") +region = Rect2(400, 800, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5ukt7"] +atlas = ExtResource("53_1rte7") +region = Rect2(600, 800, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0pkd7"] +atlas = ExtResource("53_1rte7") +region = Rect2(800, 800, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n85t7"] +atlas = ExtResource("54_kddwa") +region = Rect2(0, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nb4v4"] +atlas = ExtResource("54_kddwa") +region = Rect2(100, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cl00x"] +atlas = ExtResource("54_kddwa") +region = Rect2(200, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ufcsw"] +atlas = ExtResource("54_kddwa") +region = Rect2(300, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aoisp"] +atlas = ExtResource("54_kddwa") +region = Rect2(400, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3rkdy"] +atlas = ExtResource("54_kddwa") +region = Rect2(500, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o0dym"] +atlas = ExtResource("54_kddwa") +region = Rect2(0, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vxihx"] +atlas = ExtResource("54_kddwa") +region = Rect2(100, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ofpmt"] +atlas = ExtResource("54_kddwa") +region = Rect2(200, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ux0ir"] +atlas = ExtResource("54_kddwa") +region = Rect2(300, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8dgch"] +atlas = ExtResource("54_kddwa") +region = Rect2(400, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7ixin"] +atlas = ExtResource("54_kddwa") +region = Rect2(500, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2kea0"] +atlas = ExtResource("54_kddwa") +region = Rect2(0, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kgnps"] +atlas = ExtResource("54_kddwa") +region = Rect2(100, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g2wgu"] +atlas = ExtResource("54_kddwa") +region = Rect2(200, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0oosk"] +atlas = ExtResource("54_kddwa") +region = Rect2(300, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_80k2g"] +atlas = ExtResource("54_kddwa") +region = Rect2(400, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fskx7"] +atlas = ExtResource("54_kddwa") +region = Rect2(500, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_no3pe"] +atlas = ExtResource("54_kddwa") +region = Rect2(0, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_15fnm"] +atlas = ExtResource("54_kddwa") +region = Rect2(100, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r5e73"] +atlas = ExtResource("54_kddwa") +region = Rect2(200, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2im8t"] +atlas = ExtResource("54_kddwa") +region = Rect2(300, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mxl2m"] +atlas = ExtResource("54_kddwa") +region = Rect2(400, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6dwuh"] +atlas = ExtResource("54_kddwa") +region = Rect2(500, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_53c1f"] +atlas = ExtResource("54_kddwa") +region = Rect2(0, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mmbhy"] +atlas = ExtResource("54_kddwa") +region = Rect2(100, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uwbh3"] +atlas = ExtResource("54_kddwa") +region = Rect2(200, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j6v2y"] +atlas = ExtResource("54_kddwa") +region = Rect2(300, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h5xbu"] +atlas = ExtResource("54_kddwa") +region = Rect2(400, 400, 100, 100) + +[sub_resource type="SpriteFrames" id="SpriteFrames_0uq77"] +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("55_cnghk") +region = Rect2(875, 452, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ekrqp"] +atlas = ExtResource("55_cnghk") +region = Rect2(1050, 452, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dvnic"] +atlas = ExtResource("55_cnghk") +region = Rect2(1225, 452, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rxdv7"] +atlas = ExtResource("55_cnghk") +region = Rect2(1400, 452, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0pvcp"] +atlas = ExtResource("55_cnghk") +region = Rect2(0, 678, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yga3t"] +atlas = ExtResource("55_cnghk") +region = Rect2(175, 678, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c6qrx"] +atlas = ExtResource("55_cnghk") +region = Rect2(350, 678, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fkryw"] +atlas = ExtResource("55_cnghk") +region = Rect2(525, 678, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jt7jg"] +atlas = ExtResource("55_cnghk") +region = Rect2(700, 678, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6eyjl"] +atlas = ExtResource("55_cnghk") +region = Rect2(875, 678, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tsolq"] +atlas = ExtResource("55_cnghk") +region = Rect2(1050, 678, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_opqal"] +atlas = ExtResource("55_cnghk") +region = Rect2(1225, 678, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kia47"] +atlas = ExtResource("55_cnghk") +region = Rect2(1400, 678, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6aolf"] +atlas = ExtResource("55_cnghk") +region = Rect2(0, 904, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g6jok"] +atlas = ExtResource("55_cnghk") +region = Rect2(175, 904, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_swdkn"] +atlas = ExtResource("55_cnghk") +region = Rect2(350, 904, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_edlre"] +atlas = ExtResource("55_cnghk") +region = Rect2(525, 904, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gbj32"] +atlas = ExtResource("55_cnghk") +region = Rect2(700, 904, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bstol"] +atlas = ExtResource("55_cnghk") +region = Rect2(875, 904, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_57vey"] +atlas = ExtResource("55_cnghk") +region = Rect2(1050, 904, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_31ikn"] +atlas = ExtResource("55_cnghk") +region = Rect2(1225, 904, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e1yxa"] +atlas = ExtResource("55_cnghk") +region = Rect2(1400, 904, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7a7ks"] +atlas = ExtResource("55_cnghk") +region = Rect2(0, 1130, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p2hq6"] +atlas = ExtResource("55_cnghk") +region = Rect2(175, 1130, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k3fbj"] +atlas = ExtResource("55_cnghk") +region = Rect2(350, 1130, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ylav8"] +atlas = ExtResource("55_cnghk") +region = Rect2(525, 1130, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xhgk2"] +atlas = ExtResource("55_cnghk") +region = Rect2(700, 1130, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_diucy"] +atlas = ExtResource("55_cnghk") +region = Rect2(875, 1130, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8gw5n"] +atlas = ExtResource("55_cnghk") +region = Rect2(1050, 1130, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hc5wr"] +atlas = ExtResource("55_cnghk") +region = Rect2(1225, 1130, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fugdi"] +atlas = ExtResource("55_cnghk") +region = Rect2(1400, 1130, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h222i"] +atlas = ExtResource("55_cnghk") +region = Rect2(0, 1356, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7qa4p"] +atlas = ExtResource("55_cnghk") +region = Rect2(175, 1356, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jbavk"] +atlas = ExtResource("55_cnghk") +region = Rect2(350, 1356, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ncorq"] +atlas = ExtResource("55_cnghk") +region = Rect2(525, 1356, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mdvft"] +atlas = ExtResource("55_cnghk") +region = Rect2(700, 1356, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ljrf5"] +atlas = ExtResource("55_cnghk") +region = Rect2(875, 1356, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r7ll6"] +atlas = ExtResource("55_cnghk") +region = Rect2(1050, 1356, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6vssn"] +atlas = ExtResource("55_cnghk") +region = Rect2(1225, 1356, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4lr8r"] +atlas = ExtResource("55_cnghk") +region = Rect2(1400, 1356, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xp4kq"] +atlas = ExtResource("55_cnghk") +region = Rect2(0, 1582, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_idymv"] +atlas = ExtResource("55_cnghk") +region = Rect2(175, 1582, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ujl1x"] +atlas = ExtResource("55_cnghk") +region = Rect2(350, 1582, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_37wgc"] +atlas = ExtResource("55_cnghk") +region = Rect2(525, 1582, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g5fso"] +atlas = ExtResource("55_cnghk") +region = Rect2(700, 1582, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4a47d"] +atlas = ExtResource("55_cnghk") +region = Rect2(875, 1582, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eh3iw"] +atlas = ExtResource("55_cnghk") +region = Rect2(1050, 1582, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jc54a"] +atlas = ExtResource("55_cnghk") +region = Rect2(1225, 1582, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xyo6b"] +atlas = ExtResource("55_cnghk") +region = Rect2(1400, 1582, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gnyks"] +atlas = ExtResource("55_cnghk") +region = Rect2(0, 1808, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_08lae"] +atlas = ExtResource("55_cnghk") +region = Rect2(175, 1808, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r710l"] +atlas = ExtResource("55_cnghk") +region = Rect2(350, 1808, 175, 226) + +[sub_resource type="SpriteFrames" id="SpriteFrames_xbmia"] +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("56_vj77s") +region = Rect2(134, 0, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_56ojt"] +atlas = ExtResource("56_vj77s") +region = Rect2(402, 0, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jwkdt"] +atlas = ExtResource("56_vj77s") +region = Rect2(670, 0, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tklqq"] +atlas = ExtResource("56_vj77s") +region = Rect2(938, 0, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0kd7d"] +atlas = ExtResource("56_vj77s") +region = Rect2(1206, 0, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uoo6g"] +atlas = ExtResource("56_vj77s") +region = Rect2(134, 134, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eyk0y"] +atlas = ExtResource("56_vj77s") +region = Rect2(402, 134, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0imbq"] +atlas = ExtResource("56_vj77s") +region = Rect2(670, 134, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oys1t"] +atlas = ExtResource("56_vj77s") +region = Rect2(938, 134, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_06alo"] +atlas = ExtResource("56_vj77s") +region = Rect2(1206, 134, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uoxdj"] +atlas = ExtResource("56_vj77s") +region = Rect2(134, 268, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rcb13"] +atlas = ExtResource("56_vj77s") +region = Rect2(402, 268, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pj86n"] +atlas = ExtResource("56_vj77s") +region = Rect2(670, 268, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qpw3f"] +atlas = ExtResource("56_vj77s") +region = Rect2(938, 268, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gn6h7"] +atlas = ExtResource("56_vj77s") +region = Rect2(1206, 268, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lkh03"] +atlas = ExtResource("56_vj77s") +region = Rect2(134, 402, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pdi3o"] +atlas = ExtResource("56_vj77s") +region = Rect2(402, 402, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s3ywy"] +atlas = ExtResource("56_vj77s") +region = Rect2(670, 402, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6idxu"] +atlas = ExtResource("56_vj77s") +region = Rect2(938, 402, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qndi3"] +atlas = ExtResource("56_vj77s") +region = Rect2(1206, 402, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y4ahc"] +atlas = ExtResource("56_vj77s") +region = Rect2(134, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y5c6p"] +atlas = ExtResource("56_vj77s") +region = Rect2(402, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oa8p3"] +atlas = ExtResource("56_vj77s") +region = Rect2(670, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rc08e"] +atlas = ExtResource("56_vj77s") +region = Rect2(938, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8tw6t"] +atlas = ExtResource("56_vj77s") +region = Rect2(1206, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_njvn5"] +atlas = ExtResource("56_vj77s") +region = Rect2(134, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cwp0x"] +atlas = ExtResource("56_vj77s") +region = Rect2(402, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hch5s"] +atlas = ExtResource("56_vj77s") +region = Rect2(670, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vgjuv"] +atlas = ExtResource("56_vj77s") +region = Rect2(938, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1502j"] +atlas = ExtResource("56_vj77s") +region = Rect2(1206, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5m1ra"] +atlas = ExtResource("56_vj77s") +region = Rect2(134, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l0imt"] +atlas = ExtResource("56_vj77s") +region = Rect2(402, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ywb2s"] +atlas = ExtResource("56_vj77s") +region = Rect2(670, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x5582"] +atlas = ExtResource("56_vj77s") +region = Rect2(938, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4uy6l"] +atlas = ExtResource("56_vj77s") +region = Rect2(1206, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_50esb"] +atlas = ExtResource("56_vj77s") +region = Rect2(134, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xnham"] +atlas = ExtResource("56_vj77s") +region = Rect2(402, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j1cf1"] +atlas = ExtResource("56_vj77s") +region = Rect2(670, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jvde4"] +atlas = ExtResource("56_vj77s") +region = Rect2(938, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dvkgv"] +atlas = ExtResource("56_vj77s") +region = Rect2(1206, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3ant7"] +atlas = ExtResource("56_vj77s") +region = Rect2(134, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a6f8y"] +atlas = ExtResource("56_vj77s") +region = Rect2(402, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ancbh"] +atlas = ExtResource("56_vj77s") +region = Rect2(670, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yes2c"] +atlas = ExtResource("56_vj77s") +region = Rect2(938, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cs2h2"] +atlas = ExtResource("56_vj77s") +region = Rect2(1206, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n2i2d"] +atlas = ExtResource("56_vj77s") +region = Rect2(134, 1206, 134, 134) + +[sub_resource type="SpriteFrames" id="SpriteFrames_slakp"] +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="BoxShape3D" id="BoxShape3D_53wuj"] size = Vector3(1, 0.565, 2) @@ -605,6 +3292,483 @@ states/Idle/position = Vector2(453, 100) states/Start/position = Vector2(201, 100) transitions = ["Start", "Idle", SubResource("AnimationNodeStateMachineTransition_djeua")] +[sub_resource type="Animation" id="Animation_30xy4"] +resource_name = "CurseHit" +length = 1.56667 +tracks/0/type = "value" +tracks/0/imported = false +tracks/0/enabled = true +tracks/0/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Curse Hit Effect:animation") +tracks/0/interp = 1 +tracks/0/loop_wrap = true +tracks/0/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"default"] +} +tracks/1/type = "value" +tracks/1/imported = false +tracks/1/enabled = true +tracks/1/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Curse Hit Effect:frame") +tracks/1/interp = 1 +tracks/1/loop_wrap = true +tracks/1/keys = { +"times": PackedFloat32Array(0, 1.56667), +"transitions": PackedFloat32Array(1, 1), +"update": 0, +"values": [0, 47] +} + +[sub_resource type="Animation" id="Animation_3pm1j"] +resource_name = "EarthHit" +length = 1.46667 +tracks/0/type = "value" +tracks/0/imported = false +tracks/0/enabled = true +tracks/0/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Earth Hit Effect:animation") +tracks/0/interp = 1 +tracks/0/loop_wrap = true +tracks/0/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"EARTH DAMAGE"] +} +tracks/1/type = "value" +tracks/1/imported = false +tracks/1/enabled = true +tracks/1/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Earth Hit Effect:frame") +tracks/1/interp = 1 +tracks/1/loop_wrap = true +tracks/1/keys = { +"times": PackedFloat32Array(0, 1.46667), +"transitions": PackedFloat32Array(1, 1), +"update": 0, +"values": [0, 44] +} + +[sub_resource type="Animation" id="Animation_6shfu"] +resource_name = "Fire Damage" +length = 2.93334 +tracks/0/type = "value" +tracks/0/imported = false +tracks/0/enabled = true +tracks/0/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/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("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/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("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/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)] +} +tracks/3/type = "value" +tracks/3/imported = false +tracks/3/enabled = true +tracks/3/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Rust Activation Effect:animation") +tracks/3/interp = 1 +tracks/3/loop_wrap = true +tracks/3/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"default"] +} +tracks/4/type = "value" +tracks/4/imported = false +tracks/4/enabled = true +tracks/4/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Rust Activation Effect:frame") +tracks/4/interp = 1 +tracks/4/loop_wrap = true +tracks/4/keys = { +"times": PackedFloat32Array(0, 2.93333), +"transitions": PackedFloat32Array(1, 1), +"update": 0, +"values": [88, 88] +} + +[sub_resource type="Animation" id="Animation_f5cjs"] +resource_name = "HolyHit" +length = 0.700003 +tracks/0/type = "value" +tracks/0/imported = false +tracks/0/enabled = true +tracks/0/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Holy Hit Layer Effect:animation") +tracks/0/interp = 1 +tracks/0/loop_wrap = true +tracks/0/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"HOLY"] +} +tracks/1/type = "value" +tracks/1/imported = false +tracks/1/enabled = true +tracks/1/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Holy Hit Layer Effect:frame") +tracks/1/interp = 1 +tracks/1/loop_wrap = true +tracks/1/keys = { +"times": PackedFloat32Array(0, 0.7), +"transitions": PackedFloat32Array(1, 1), +"update": 0, +"values": [0, 21] +} + +[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("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/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("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/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("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/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"] +} +tracks/3/type = "value" +tracks/3/imported = false +tracks/3/enabled = true +tracks/3/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Rust Activation Effect:animation") +tracks/3/interp = 1 +tracks/3/loop_wrap = true +tracks/3/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"default"] +} +tracks/4/type = "value" +tracks/4/imported = false +tracks/4/enabled = true +tracks/4/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Rust Activation Effect:frame") +tracks/4/interp = 1 +tracks/4/loop_wrap = true +tracks/4/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [88] +} +tracks/5/type = "value" +tracks/5/imported = false +tracks/5/enabled = true +tracks/5/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Holy Hit Layer Effect:animation") +tracks/5/interp = 1 +tracks/5/loop_wrap = true +tracks/5/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"HOLY"] +} +tracks/6/type = "value" +tracks/6/imported = false +tracks/6/enabled = true +tracks/6/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Holy Hit Layer Effect:frame") +tracks/6/interp = 1 +tracks/6/loop_wrap = true +tracks/6/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [0] +} +tracks/7/type = "value" +tracks/7/imported = false +tracks/7/enabled = true +tracks/7/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Wind Hit Layer Effect:animation") +tracks/7/interp = 1 +tracks/7/loop_wrap = true +tracks/7/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"default"] +} +tracks/8/type = "value" +tracks/8/imported = false +tracks/8/enabled = true +tracks/8/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Wind Hit Layer Effect:frame") +tracks/8/interp = 1 +tracks/8/loop_wrap = true +tracks/8/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [50] +} +tracks/9/type = "value" +tracks/9/imported = false +tracks/9/enabled = true +tracks/9/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Water Hit Layer 1 Effect:animation") +tracks/9/interp = 1 +tracks/9/loop_wrap = true +tracks/9/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"WATER DAMAGE"] +} +tracks/10/type = "value" +tracks/10/imported = false +tracks/10/enabled = true +tracks/10/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Water Hit Layer 1 Effect:frame") +tracks/10/interp = 1 +tracks/10/loop_wrap = true +tracks/10/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [29] +} +tracks/11/type = "value" +tracks/11/imported = false +tracks/11/enabled = true +tracks/11/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Water Hit Layer 2Effect:animation") +tracks/11/interp = 1 +tracks/11/loop_wrap = true +tracks/11/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"WATER"] +} +tracks/12/type = "value" +tracks/12/imported = false +tracks/12/enabled = true +tracks/12/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Water Hit Layer 2Effect:frame") +tracks/12/interp = 1 +tracks/12/loop_wrap = true +tracks/12/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [51] +} +tracks/13/type = "value" +tracks/13/imported = false +tracks/13/enabled = true +tracks/13/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Curse Hit Effect:animation") +tracks/13/interp = 1 +tracks/13/loop_wrap = true +tracks/13/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"default"] +} +tracks/14/type = "value" +tracks/14/imported = false +tracks/14/enabled = true +tracks/14/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Curse Hit Effect:frame") +tracks/14/interp = 1 +tracks/14/loop_wrap = true +tracks/14/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [47] +} +tracks/15/type = "value" +tracks/15/imported = false +tracks/15/enabled = true +tracks/15/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Earth Hit Effect:animation") +tracks/15/interp = 1 +tracks/15/loop_wrap = true +tracks/15/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"WATER DAMAGE"] +} +tracks/16/type = "value" +tracks/16/imported = false +tracks/16/enabled = true +tracks/16/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Earth Hit Effect:frame") +tracks/16/interp = 1 +tracks/16/loop_wrap = true +tracks/16/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [0] +} + +[sub_resource type="Animation" id="Animation_0tqwp"] +resource_name = "RustActivate" +length = 1.46667 +step = 0.0166667 +tracks/0/type = "value" +tracks/0/imported = false +tracks/0/enabled = true +tracks/0/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Rust Activation Effect:animation") +tracks/0/interp = 1 +tracks/0/loop_wrap = true +tracks/0/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"default"] +} +tracks/1/type = "value" +tracks/1/imported = false +tracks/1/enabled = true +tracks/1/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Rust Activation Effect:frame") +tracks/1/interp = 1 +tracks/1/loop_wrap = true +tracks/1/keys = { +"times": PackedFloat32Array(0, 1.46667), +"transitions": PackedFloat32Array(1, 1), +"update": 0, +"values": [0, 88] +} + +[sub_resource type="Animation" id="Animation_q5dfb"] +resource_name = "WaterHit" +length = 1.7 +tracks/0/type = "value" +tracks/0/imported = false +tracks/0/enabled = true +tracks/0/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Water Hit Layer 1 Effect:animation") +tracks/0/interp = 1 +tracks/0/loop_wrap = true +tracks/0/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"WATER DAMAGE"] +} +tracks/1/type = "value" +tracks/1/imported = false +tracks/1/enabled = true +tracks/1/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Water Hit Layer 1 Effect:frame") +tracks/1/interp = 1 +tracks/1/loop_wrap = true +tracks/1/keys = { +"times": PackedFloat32Array(0, 1), +"transitions": PackedFloat32Array(1, 1), +"update": 0, +"values": [0, 29] +} +tracks/2/type = "value" +tracks/2/imported = false +tracks/2/enabled = true +tracks/2/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Water Hit Layer 2Effect:animation") +tracks/2/interp = 1 +tracks/2/loop_wrap = true +tracks/2/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"WATER"] +} +tracks/3/type = "value" +tracks/3/imported = false +tracks/3/enabled = true +tracks/3/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Water Hit Layer 2Effect:frame") +tracks/3/interp = 1 +tracks/3/loop_wrap = true +tracks/3/keys = { +"times": PackedFloat32Array(0, 1.7), +"transitions": PackedFloat32Array(1, 1), +"update": 0, +"values": [0, 51] +} + +[sub_resource type="Animation" id="Animation_godpv"] +resource_name = "WindHit" +length = 0.833335 +step = 0.0166667 +tracks/0/type = "value" +tracks/0/imported = false +tracks/0/enabled = true +tracks/0/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Wind Hit Layer Effect:animation") +tracks/0/interp = 1 +tracks/0/loop_wrap = true +tracks/0/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"default"] +} +tracks/1/type = "value" +tracks/1/imported = false +tracks/1/enabled = true +tracks/1/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Wind Hit Layer Effect:frame") +tracks/1/interp = 1 +tracks/1/loop_wrap = true +tracks/1/keys = { +"times": PackedFloat32Array(0, 0.833333), +"transitions": PackedFloat32Array(1, 1), +"update": 0, +"values": [0, 50] +} + +[sub_resource type="AnimationLibrary" id="AnimationLibrary_0tqwp"] +_data = { +&"CurseHit": SubResource("Animation_30xy4"), +&"EarthHit": SubResource("Animation_3pm1j"), +&"FireHit": SubResource("Animation_6shfu"), +&"HolyHit": SubResource("Animation_f5cjs"), +&"RESET": SubResource("Animation_cftgd"), +&"RustActivate": SubResource("Animation_0tqwp"), +&"WaterHit": SubResource("Animation_q5dfb"), +&"WindHit": SubResource("Animation_godpv") +} + [node name="EnemyModelView" type="Node3D"] script = ExtResource("1_7w22e") EnemyLoreInfo = SubResource("Resource_ivy74") @@ -640,6 +3804,60 @@ position = Vector2(400, 400) sprite_frames = SubResource("SpriteFrames_hypby") animation = &"idle_left_walk" +[node name="VFXSprites" type="Node2D" parent="Sprite3D/SubViewportContainer/SubViewport"] + +[node name="Rust Activation Effect" type="AnimatedSprite2D" parent="Sprite3D/SubViewportContainer/SubViewport/VFXSprites"] +position = Vector2(400, 400) +scale = Vector2(1.54, 1.54) +sprite_frames = SubResource("SpriteFrames_fks4e") +frame = 88 + +[node name="Holy Hit Layer Effect" type="AnimatedSprite2D" parent="Sprite3D/SubViewportContainer/SubViewport/VFXSprites"] +position = Vector2(400, 400) +scale = Vector2(0.675, 0.675) +sprite_frames = SubResource("SpriteFrames_hxvdw") +animation = &"HOLY" + +[node name="Wind Hit Layer Effect" type="AnimatedSprite2D" parent="Sprite3D/SubViewportContainer/SubViewport/VFXSprites"] +position = Vector2(400, 400) +scale = Vector2(1.445, 1.445) +sprite_frames = SubResource("SpriteFrames_apil1") +frame = 50 + +[node name="Flame Hit Effect" type="AnimatedSprite2D" parent="Sprite3D/SubViewportContainer/SubViewport/VFXSprites"] +position = Vector2(400, 400) +scale = Vector2(3.445, 3.445) +sprite_frames = SubResource("SpriteFrames_3om1d") +animation = &"Flame Damage" +frame = 40 + +[node name="Water Hit Layer 1 Effect" type="AnimatedSprite2D" parent="Sprite3D/SubViewportContainer/SubViewport/VFXSprites"] +position = Vector2(400, 400) +scale = Vector2(2.215, 2.215) +sprite_frames = SubResource("SpriteFrames_0uq77") +animation = &"WATER DAMAGE" +frame = 29 + +[node name="Water Hit Layer 2Effect" type="AnimatedSprite2D" parent="Sprite3D/SubViewportContainer/SubViewport/VFXSprites"] +position = Vector2(400, 400) +scale = Vector2(1.105, 0.895) +sprite_frames = SubResource("SpriteFrames_xbmia") +animation = &"WATER" +frame = 51 + +[node name="Curse Hit Effect" type="AnimatedSprite2D" parent="Sprite3D/SubViewportContainer/SubViewport/VFXSprites"] +texture_filter = 1 +position = Vector2(400, 400) +scale = Vector2(2.78, 2.78) +sprite_frames = SubResource("SpriteFrames_slakp") +frame = 47 + +[node name="Earth Hit Effect" type="AnimatedSprite2D" parent="Sprite3D/SubViewportContainer/SubViewport/VFXSprites"] +position = Vector2(400, 400) +scale = Vector2(2.005, 2.005) +sprite_frames = SubResource("SpriteFrames_0uq77") +animation = &"WATER DAMAGE" + [node name="Hitbox" type="Area3D" parent="."] unique_name_in_owner = true transform = Transform3D(-1, 0, -8.74228e-08, 0, 1, 0, 8.74228e-08, 0, -1, -0.152949, 1.95606, 0) @@ -678,3 +3896,50 @@ cast_shadow = 0 modulate = Color(1, 1, 1, 0.591) texture_filter = 0 texture = ExtResource("51_smvnd") + +[node name="VFXAnimations" type="Node" parent="."] + +[node name="FlameHitAnimation" type="AnimationPlayer" parent="VFXAnimations"] +unique_name_in_owner = true +libraries = { +&"": SubResource("AnimationLibrary_0tqwp") +} + +[node name="RustHitAnimation" type="AnimationPlayer" parent="VFXAnimations"] +unique_name_in_owner = true +libraries = { +&"": SubResource("AnimationLibrary_0tqwp") +} + +[node name="HolyHitAnimation" type="AnimationPlayer" parent="VFXAnimations"] +unique_name_in_owner = true +libraries = { +&"": SubResource("AnimationLibrary_0tqwp") +} + +[node name="WindHitAnimation" type="AnimationPlayer" parent="VFXAnimations"] +unique_name_in_owner = true +libraries = { +&"": SubResource("AnimationLibrary_0tqwp") +} + +[node name="WaterHitAnimation" type="AnimationPlayer" parent="VFXAnimations"] +unique_name_in_owner = true +root_node = NodePath("../../Secondary Animation Player") +libraries = { +&"": SubResource("AnimationLibrary_0tqwp") +} + +[node name="CurseHitAnimation" type="AnimationPlayer" parent="VFXAnimations"] +unique_name_in_owner = true +root_node = NodePath("../../Secondary Animation Player") +libraries = { +&"": SubResource("AnimationLibrary_0tqwp") +} + +[node name="EarthHitAnimation" type="AnimationPlayer" parent="VFXAnimations"] +unique_name_in_owner = true +root_node = NodePath("../../Secondary Animation Player") +libraries = { +&"": SubResource("AnimationLibrary_0tqwp") +} diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/16. demon wall/DemonWallArm.cs b/Zennysoft.Game.Ma/src/enemy/enemy_types/16. demon wall/DemonWallArm.cs index b23d5840..7a88ec61 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/16. demon wall/DemonWallArm.cs +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/16. demon wall/DemonWallArm.cs @@ -55,6 +55,11 @@ public partial class DemonWallArm : EnemyModelView } } + public override void PlayElementalDamageAnimation(ElementType elementType) + { + + } + public void OnExitTree() { Hitbox.AreaEntered -= Hitbox_AreaEntered; diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/9b. Aqueos Demon/AqueosModelView.tscn b/Zennysoft.Game.Ma/src/enemy/enemy_types/9b. Aqueos Demon/AqueosModelView.tscn index 9d52f0f1..a3fd7207 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/9b. Aqueos Demon/AqueosModelView.tscn +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/9b. Aqueos Demon/AqueosModelView.tscn @@ -1,4 +1,4 @@ -[gd_scene load_steps=368 format=3 uid="uid://omkas04o46rq"] +[gd_scene load_steps=763 format=3 uid="uid://omkas04o46rq"] [ext_resource type="Script" uid="uid://cvr1qimxpignl" path="res://src/enemy/EnemyModelView2D.cs" id="1_vf7er"] [ext_resource type="Resource" uid="uid://co0eq5nl2ai24" path="res://src/enemy/enemy_types/9b. Aqueos Demon/AqueosDemonInfo.tres" id="2_ejhrk"] @@ -332,10 +332,18 @@ [ext_resource type="Texture2D" uid="uid://ywccbgt3bao8" path="res://src/enemy/enemy_types/9b. Aqueos Demon/animations/WATER LOOP/0186.png" id="330_cmwvy"] [ext_resource type="Texture2D" uid="uid://daos4dnmaq6xx" path="res://src/enemy/enemy_types/9b. Aqueos Demon/animations/WATER LOOP/0188.png" id="331_p8xq6"] [ext_resource type="Texture2D" uid="uid://c311su0a86yii" path="res://src/enemy/enemy_types/9b. Aqueos Demon/animations/WATER LOOP/0190.png" id="332_8j4qa"] +[ext_resource type="Texture2D" uid="uid://dq70aipwl1qrg" path="res://src/vfx/Enemy Affected/Rust Particles.png" id="333_o2grh"] +[ext_resource type="Texture2D" uid="uid://by0ehygy7bq13" path="res://src/vfx/Enemy Affected/Holy Damage.png" id="334_m6wfs"] [ext_resource type="AnimationNodeStateMachine" uid="uid://co7lshemjrro8" path="res://src/enemy/animation_state_machines/IdleStateMachine.tres" id="334_sm161"] [ext_resource type="AnimationNodeStateMachine" uid="uid://cbq8xog50cjjy" path="res://src/enemy/animation_state_machines/PrimaryAttackStateMachine.tres" id="335_6g4mi"] +[ext_resource type="Texture2D" uid="uid://dqqhu0s51o3n7" path="res://src/vfx/Enemy Affected/Wind Damage.png" id="335_bm8cm"] +[ext_resource type="Texture2D" uid="uid://dh6mk1c35nymx" path="res://src/vfx/Enemy Affected/firedamage.png" id="336_lcl8v"] [ext_resource type="AnimationNodeStateMachine" uid="uid://clybvwx3itfeo" path="res://src/enemy/animation_state_machines/SecondaryAttackStateMachine.tres" id="336_oklrx"] [ext_resource type="AudioStream" uid="uid://ddcyb2ni2aisr" path="res://src/audio/sfx/ENEMY_AQUEOS_LOOP.ogg" id="336_sm161"] +[ext_resource type="Texture2D" uid="uid://7a42df2ijrmv" path="res://src/vfx/Enemy Affected/earth damage.png" id="337_2v6ek"] +[ext_resource type="Texture2D" uid="uid://cot4wx5fg5pfs" path="res://src/vfx/Enemy Affected/water_hit_layer2.png" id="338_mh670"] +[ext_resource type="Texture2D" uid="uid://cbei66g134fgv" path="res://src/vfx/Enemy Affected/water layer 1.png" id="339_wp6o0"] +[ext_resource type="Texture2D" uid="uid://bp6npqoco5fl3" path="res://src/vfx/Enemy Affected/curse_damage.png" id="340_t15yy"] [sub_resource type="ViewportTexture" id="ViewportTexture_h1kaf"] viewport_path = NodePath("Sprite3D/SubViewportContainer/SubViewport") @@ -1402,6 +1410,2685 @@ animations = [{ "speed": 26.0 }] +[sub_resource type="AtlasTexture" id="AtlasTexture_4o5f2"] +atlas = ExtResource("333_o2grh") +region = Rect2(1206, 402, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r8ggx"] +atlas = ExtResource("333_o2grh") +region = Rect2(1340, 402, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xafpd"] +atlas = ExtResource("333_o2grh") +region = Rect2(1474, 402, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_73dpc"] +atlas = ExtResource("333_o2grh") +region = Rect2(0, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vppxt"] +atlas = ExtResource("333_o2grh") +region = Rect2(134, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nk562"] +atlas = ExtResource("333_o2grh") +region = Rect2(268, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dwu2q"] +atlas = ExtResource("333_o2grh") +region = Rect2(402, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w3p3j"] +atlas = ExtResource("333_o2grh") +region = Rect2(536, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ig0ip"] +atlas = ExtResource("333_o2grh") +region = Rect2(670, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r4enw"] +atlas = ExtResource("333_o2grh") +region = Rect2(804, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uy6hg"] +atlas = ExtResource("333_o2grh") +region = Rect2(938, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_85jwg"] +atlas = ExtResource("333_o2grh") +region = Rect2(1072, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ln7dl"] +atlas = ExtResource("333_o2grh") +region = Rect2(1206, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3vvgp"] +atlas = ExtResource("333_o2grh") +region = Rect2(1340, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_01f7m"] +atlas = ExtResource("333_o2grh") +region = Rect2(1474, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pp21u"] +atlas = ExtResource("333_o2grh") +region = Rect2(0, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1aldj"] +atlas = ExtResource("333_o2grh") +region = Rect2(134, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xv5pw"] +atlas = ExtResource("333_o2grh") +region = Rect2(268, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_14lh3"] +atlas = ExtResource("333_o2grh") +region = Rect2(402, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xxid6"] +atlas = ExtResource("333_o2grh") +region = Rect2(536, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y6yeo"] +atlas = ExtResource("333_o2grh") +region = Rect2(670, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2aohu"] +atlas = ExtResource("333_o2grh") +region = Rect2(804, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ebvc7"] +atlas = ExtResource("333_o2grh") +region = Rect2(938, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yd50d"] +atlas = ExtResource("333_o2grh") +region = Rect2(1072, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yimdu"] +atlas = ExtResource("333_o2grh") +region = Rect2(1206, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dync1"] +atlas = ExtResource("333_o2grh") +region = Rect2(1340, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jsjdk"] +atlas = ExtResource("333_o2grh") +region = Rect2(1474, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ueih5"] +atlas = ExtResource("333_o2grh") +region = Rect2(0, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k0hut"] +atlas = ExtResource("333_o2grh") +region = Rect2(134, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kybji"] +atlas = ExtResource("333_o2grh") +region = Rect2(268, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u5vpt"] +atlas = ExtResource("333_o2grh") +region = Rect2(402, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wko4t"] +atlas = ExtResource("333_o2grh") +region = Rect2(536, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ru86o"] +atlas = ExtResource("333_o2grh") +region = Rect2(670, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uybbj"] +atlas = ExtResource("333_o2grh") +region = Rect2(804, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s6pp8"] +atlas = ExtResource("333_o2grh") +region = Rect2(938, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a7pls"] +atlas = ExtResource("333_o2grh") +region = Rect2(1072, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_30y71"] +atlas = ExtResource("333_o2grh") +region = Rect2(1206, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dwl1c"] +atlas = ExtResource("333_o2grh") +region = Rect2(1340, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_01jp4"] +atlas = ExtResource("333_o2grh") +region = Rect2(1474, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b8ulh"] +atlas = ExtResource("333_o2grh") +region = Rect2(0, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3walv"] +atlas = ExtResource("333_o2grh") +region = Rect2(134, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_exyoj"] +atlas = ExtResource("333_o2grh") +region = Rect2(268, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kus54"] +atlas = ExtResource("333_o2grh") +region = Rect2(402, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_meauc"] +atlas = ExtResource("333_o2grh") +region = Rect2(536, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7v7xr"] +atlas = ExtResource("333_o2grh") +region = Rect2(670, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4ktea"] +atlas = ExtResource("333_o2grh") +region = Rect2(804, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l8oa1"] +atlas = ExtResource("333_o2grh") +region = Rect2(938, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3eopa"] +atlas = ExtResource("333_o2grh") +region = Rect2(1072, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ip8hv"] +atlas = ExtResource("333_o2grh") +region = Rect2(1206, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_42rbq"] +atlas = ExtResource("333_o2grh") +region = Rect2(1340, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tu0vu"] +atlas = ExtResource("333_o2grh") +region = Rect2(1474, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gbh7l"] +atlas = ExtResource("333_o2grh") +region = Rect2(0, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_733jx"] +atlas = ExtResource("333_o2grh") +region = Rect2(134, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sfa2q"] +atlas = ExtResource("333_o2grh") +region = Rect2(268, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o0nvo"] +atlas = ExtResource("333_o2grh") +region = Rect2(402, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1mv1w"] +atlas = ExtResource("333_o2grh") +region = Rect2(536, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yw8ob"] +atlas = ExtResource("333_o2grh") +region = Rect2(670, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ptkbd"] +atlas = ExtResource("333_o2grh") +region = Rect2(804, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2uoiw"] +atlas = ExtResource("333_o2grh") +region = Rect2(938, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4m684"] +atlas = ExtResource("333_o2grh") +region = Rect2(1072, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_st6fj"] +atlas = ExtResource("333_o2grh") +region = Rect2(1206, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1wana"] +atlas = ExtResource("333_o2grh") +region = Rect2(1340, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ati4e"] +atlas = ExtResource("333_o2grh") +region = Rect2(1474, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0w31q"] +atlas = ExtResource("333_o2grh") +region = Rect2(0, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uxu33"] +atlas = ExtResource("333_o2grh") +region = Rect2(134, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2ulnd"] +atlas = ExtResource("333_o2grh") +region = Rect2(268, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ddsrn"] +atlas = ExtResource("333_o2grh") +region = Rect2(402, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n1e5w"] +atlas = ExtResource("333_o2grh") +region = Rect2(536, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f4aq5"] +atlas = ExtResource("333_o2grh") +region = Rect2(670, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_er00h"] +atlas = ExtResource("333_o2grh") +region = Rect2(804, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mlf5c"] +atlas = ExtResource("333_o2grh") +region = Rect2(938, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c362w"] +atlas = ExtResource("333_o2grh") +region = Rect2(1072, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_30wb7"] +atlas = ExtResource("333_o2grh") +region = Rect2(1206, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_stb0b"] +atlas = ExtResource("333_o2grh") +region = Rect2(1340, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a64qf"] +atlas = ExtResource("333_o2grh") +region = Rect2(1474, 1206, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_52bkw"] +atlas = ExtResource("333_o2grh") +region = Rect2(0, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y0yvc"] +atlas = ExtResource("333_o2grh") +region = Rect2(134, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5h2xe"] +atlas = ExtResource("333_o2grh") +region = Rect2(268, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6hh33"] +atlas = ExtResource("333_o2grh") +region = Rect2(402, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kmk3m"] +atlas = ExtResource("333_o2grh") +region = Rect2(536, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rbtmh"] +atlas = ExtResource("333_o2grh") +region = Rect2(670, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bit6n"] +atlas = ExtResource("333_o2grh") +region = Rect2(804, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_458hw"] +atlas = ExtResource("333_o2grh") +region = Rect2(938, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4x2ea"] +atlas = ExtResource("333_o2grh") +region = Rect2(1072, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bcljt"] +atlas = ExtResource("333_o2grh") +region = Rect2(1206, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p6e34"] +atlas = ExtResource("333_o2grh") +region = Rect2(1340, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2yfi0"] +atlas = ExtResource("333_o2grh") +region = Rect2(1474, 1340, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bhoxy"] +atlas = ExtResource("333_o2grh") +region = Rect2(0, 1474, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_41wyx"] +atlas = ExtResource("333_o2grh") +region = Rect2(134, 1474, 134, 134) + +[sub_resource type="SpriteFrames" id="SpriteFrames_woc45"] +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("334_m6wfs") +region = Rect2(1024, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pvn2l"] +atlas = ExtResource("334_m6wfs") +region = Rect2(1536, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sctov"] +atlas = ExtResource("334_m6wfs") +region = Rect2(2048, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_46bwa"] +atlas = ExtResource("334_m6wfs") +region = Rect2(2560, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o42jv"] +atlas = ExtResource("334_m6wfs") +region = Rect2(3072, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5dqsk"] +atlas = ExtResource("334_m6wfs") +region = Rect2(3584, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_35l4k"] +atlas = ExtResource("334_m6wfs") +region = Rect2(4096, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x0jfm"] +atlas = ExtResource("334_m6wfs") +region = Rect2(4608, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fk16r"] +atlas = ExtResource("334_m6wfs") +region = Rect2(5120, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ewtdr"] +atlas = ExtResource("334_m6wfs") +region = Rect2(5632, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bul51"] +atlas = ExtResource("334_m6wfs") +region = Rect2(6144, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vbobf"] +atlas = ExtResource("334_m6wfs") +region = Rect2(6656, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_itqlk"] +atlas = ExtResource("334_m6wfs") +region = Rect2(7168, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_41jjh"] +atlas = ExtResource("334_m6wfs") +region = Rect2(7680, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kol03"] +atlas = ExtResource("334_m6wfs") +region = Rect2(0, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ynyxy"] +atlas = ExtResource("334_m6wfs") +region = Rect2(512, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ngcxk"] +atlas = ExtResource("334_m6wfs") +region = Rect2(1024, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ba8fa"] +atlas = ExtResource("334_m6wfs") +region = Rect2(1536, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ngitf"] +atlas = ExtResource("334_m6wfs") +region = Rect2(2048, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_boovf"] +atlas = ExtResource("334_m6wfs") +region = Rect2(2560, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jwkhr"] +atlas = ExtResource("334_m6wfs") +region = Rect2(3072, 512, 512, 512) + +[sub_resource type="SpriteFrames" id="SpriteFrames_4dwm4"] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": null +}, { +"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("335_bm8cm") +region = Rect2(0, 0, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3jmy8"] +atlas = ExtResource("335_bm8cm") +region = Rect2(266, 0, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t76hk"] +atlas = ExtResource("335_bm8cm") +region = Rect2(532, 0, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_06gff"] +atlas = ExtResource("335_bm8cm") +region = Rect2(798, 0, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ssjgs"] +atlas = ExtResource("335_bm8cm") +region = Rect2(1064, 0, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_53u6k"] +atlas = ExtResource("335_bm8cm") +region = Rect2(0, 131, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_inmu7"] +atlas = ExtResource("335_bm8cm") +region = Rect2(266, 131, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bmkvg"] +atlas = ExtResource("335_bm8cm") +region = Rect2(532, 131, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oqdmj"] +atlas = ExtResource("335_bm8cm") +region = Rect2(798, 131, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bnn41"] +atlas = ExtResource("335_bm8cm") +region = Rect2(1064, 131, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p6hmn"] +atlas = ExtResource("335_bm8cm") +region = Rect2(0, 262, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s0ybe"] +atlas = ExtResource("335_bm8cm") +region = Rect2(266, 262, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y2273"] +atlas = ExtResource("335_bm8cm") +region = Rect2(532, 262, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2i87r"] +atlas = ExtResource("335_bm8cm") +region = Rect2(798, 262, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4q8o2"] +atlas = ExtResource("335_bm8cm") +region = Rect2(1064, 262, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_esxmc"] +atlas = ExtResource("335_bm8cm") +region = Rect2(0, 393, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rdsur"] +atlas = ExtResource("335_bm8cm") +region = Rect2(266, 393, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b2qt4"] +atlas = ExtResource("335_bm8cm") +region = Rect2(532, 393, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xamrr"] +atlas = ExtResource("335_bm8cm") +region = Rect2(798, 393, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0prqh"] +atlas = ExtResource("335_bm8cm") +region = Rect2(1064, 393, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dh1oc"] +atlas = ExtResource("335_bm8cm") +region = Rect2(0, 524, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ybb1w"] +atlas = ExtResource("335_bm8cm") +region = Rect2(266, 524, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2nkua"] +atlas = ExtResource("335_bm8cm") +region = Rect2(532, 524, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2gocr"] +atlas = ExtResource("335_bm8cm") +region = Rect2(798, 524, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_acsou"] +atlas = ExtResource("335_bm8cm") +region = Rect2(1064, 524, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yflou"] +atlas = ExtResource("335_bm8cm") +region = Rect2(0, 655, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_env3c"] +atlas = ExtResource("335_bm8cm") +region = Rect2(266, 655, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_74f4l"] +atlas = ExtResource("335_bm8cm") +region = Rect2(532, 655, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cbaq7"] +atlas = ExtResource("335_bm8cm") +region = Rect2(798, 655, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bc4hh"] +atlas = ExtResource("335_bm8cm") +region = Rect2(1064, 655, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5m27y"] +atlas = ExtResource("335_bm8cm") +region = Rect2(0, 786, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c2vig"] +atlas = ExtResource("335_bm8cm") +region = Rect2(266, 786, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h8qbh"] +atlas = ExtResource("335_bm8cm") +region = Rect2(532, 786, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vj2ia"] +atlas = ExtResource("335_bm8cm") +region = Rect2(798, 786, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h0bv3"] +atlas = ExtResource("335_bm8cm") +region = Rect2(1064, 786, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3xb07"] +atlas = ExtResource("335_bm8cm") +region = Rect2(0, 917, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p845e"] +atlas = ExtResource("335_bm8cm") +region = Rect2(266, 917, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nm575"] +atlas = ExtResource("335_bm8cm") +region = Rect2(532, 917, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8wvvt"] +atlas = ExtResource("335_bm8cm") +region = Rect2(798, 917, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2l45l"] +atlas = ExtResource("335_bm8cm") +region = Rect2(1064, 917, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0c6u7"] +atlas = ExtResource("335_bm8cm") +region = Rect2(0, 1048, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bo1qh"] +atlas = ExtResource("335_bm8cm") +region = Rect2(266, 1048, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4cq22"] +atlas = ExtResource("335_bm8cm") +region = Rect2(532, 1048, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d6auk"] +atlas = ExtResource("335_bm8cm") +region = Rect2(798, 1048, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4bvg3"] +atlas = ExtResource("335_bm8cm") +region = Rect2(1064, 1048, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rps4p"] +atlas = ExtResource("335_bm8cm") +region = Rect2(0, 1179, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qdy2n"] +atlas = ExtResource("335_bm8cm") +region = Rect2(266, 1179, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a63dt"] +atlas = ExtResource("335_bm8cm") +region = Rect2(532, 1179, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3alol"] +atlas = ExtResource("335_bm8cm") +region = Rect2(798, 1179, 133, 131) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w5y4o"] +atlas = ExtResource("335_bm8cm") +region = Rect2(1064, 1179, 133, 131) + +[sub_resource type="SpriteFrames" id="SpriteFrames_bsoya"] +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("336_lcl8v") +region = Rect2(200, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w5yum"] +atlas = ExtResource("336_lcl8v") +region = Rect2(600, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xagiq"] +atlas = ExtResource("336_lcl8v") +region = Rect2(1000, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iu4h2"] +atlas = ExtResource("336_lcl8v") +region = Rect2(100, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t6kmk"] +atlas = ExtResource("336_lcl8v") +region = Rect2(500, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c3c22"] +atlas = ExtResource("336_lcl8v") +region = Rect2(900, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_udm06"] +atlas = ExtResource("336_lcl8v") +region = Rect2(0, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_31shi"] +atlas = ExtResource("336_lcl8v") +region = Rect2(400, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i6wsf"] +atlas = ExtResource("336_lcl8v") +region = Rect2(800, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jhluk"] +atlas = ExtResource("336_lcl8v") +region = Rect2(1200, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_exq74"] +atlas = ExtResource("336_lcl8v") +region = Rect2(300, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k7tc1"] +atlas = ExtResource("336_lcl8v") +region = Rect2(700, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_456io"] +atlas = ExtResource("336_lcl8v") +region = Rect2(1100, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2h7ac"] +atlas = ExtResource("336_lcl8v") +region = Rect2(200, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dy5lo"] +atlas = ExtResource("336_lcl8v") +region = Rect2(500, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_biyyn"] +atlas = ExtResource("336_lcl8v") +region = Rect2(1000, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_flqm1"] +atlas = ExtResource("336_lcl8v") +region = Rect2(100, 500, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xttn8"] +atlas = ExtResource("336_lcl8v") +region = Rect2(500, 500, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_85rsb"] +atlas = ExtResource("336_lcl8v") +region = Rect2(900, 500, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oxqm1"] +atlas = ExtResource("336_lcl8v") +region = Rect2(0, 600, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dphle"] +atlas = ExtResource("336_lcl8v") +region = Rect2(400, 600, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_48bul"] +atlas = ExtResource("336_lcl8v") +region = Rect2(800, 600, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2d6tt"] +atlas = ExtResource("336_lcl8v") +region = Rect2(1200, 600, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ty41g"] +atlas = ExtResource("336_lcl8v") +region = Rect2(300, 700, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c5uyp"] +atlas = ExtResource("336_lcl8v") +region = Rect2(700, 700, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tf4dl"] +atlas = ExtResource("336_lcl8v") +region = Rect2(1100, 700, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cvdlu"] +atlas = ExtResource("336_lcl8v") +region = Rect2(200, 800, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f25l1"] +atlas = ExtResource("336_lcl8v") +region = Rect2(600, 800, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v033q"] +atlas = ExtResource("336_lcl8v") +region = Rect2(1000, 800, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xgfkn"] +atlas = ExtResource("336_lcl8v") +region = Rect2(100, 900, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_duxfd"] +atlas = ExtResource("336_lcl8v") +region = Rect2(500, 900, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5uvt0"] +atlas = ExtResource("336_lcl8v") +region = Rect2(900, 900, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7d05g"] +atlas = ExtResource("336_lcl8v") +region = Rect2(0, 1000, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x0ube"] +atlas = ExtResource("336_lcl8v") +region = Rect2(400, 1000, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_15y07"] +atlas = ExtResource("336_lcl8v") +region = Rect2(800, 1000, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_de0po"] +atlas = ExtResource("336_lcl8v") +region = Rect2(1200, 1000, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b3rtc"] +atlas = ExtResource("336_lcl8v") +region = Rect2(300, 1100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q32lt"] +atlas = ExtResource("336_lcl8v") +region = Rect2(700, 1100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_88hqh"] +atlas = ExtResource("336_lcl8v") +region = Rect2(1100, 1100, 100, 100) + +[sub_resource type="SpriteFrames" id="SpriteFrames_mxgiu"] +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("337_2v6ek") +region = Rect2(0, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0rj30"] +atlas = ExtResource("337_2v6ek") +region = Rect2(200, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ug1a1"] +atlas = ExtResource("337_2v6ek") +region = Rect2(400, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8eees"] +atlas = ExtResource("337_2v6ek") +region = Rect2(600, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k2i7i"] +atlas = ExtResource("337_2v6ek") +region = Rect2(800, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4wwo5"] +atlas = ExtResource("337_2v6ek") +region = Rect2(0, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_418m2"] +atlas = ExtResource("337_2v6ek") +region = Rect2(200, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6g5qj"] +atlas = ExtResource("337_2v6ek") +region = Rect2(400, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k3sey"] +atlas = ExtResource("337_2v6ek") +region = Rect2(600, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ms40v"] +atlas = ExtResource("337_2v6ek") +region = Rect2(800, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2tfej"] +atlas = ExtResource("337_2v6ek") +region = Rect2(0, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_woj7f"] +atlas = ExtResource("337_2v6ek") +region = Rect2(200, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kg861"] +atlas = ExtResource("337_2v6ek") +region = Rect2(400, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jtxxp"] +atlas = ExtResource("337_2v6ek") +region = Rect2(600, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sxooa"] +atlas = ExtResource("337_2v6ek") +region = Rect2(800, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hkj2y"] +atlas = ExtResource("337_2v6ek") +region = Rect2(0, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wm40h"] +atlas = ExtResource("337_2v6ek") +region = Rect2(200, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u66v8"] +atlas = ExtResource("337_2v6ek") +region = Rect2(400, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6ip85"] +atlas = ExtResource("337_2v6ek") +region = Rect2(600, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qad2i"] +atlas = ExtResource("337_2v6ek") +region = Rect2(800, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nifqu"] +atlas = ExtResource("337_2v6ek") +region = Rect2(0, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_goocc"] +atlas = ExtResource("337_2v6ek") +region = Rect2(200, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l78ua"] +atlas = ExtResource("337_2v6ek") +region = Rect2(400, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ybqlc"] +atlas = ExtResource("337_2v6ek") +region = Rect2(600, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d0lry"] +atlas = ExtResource("337_2v6ek") +region = Rect2(800, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ccb2v"] +atlas = ExtResource("337_2v6ek") +region = Rect2(0, 500, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dcp7h"] +atlas = ExtResource("337_2v6ek") +region = Rect2(200, 500, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3kud6"] +atlas = ExtResource("337_2v6ek") +region = Rect2(400, 500, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0tvc2"] +atlas = ExtResource("337_2v6ek") +region = Rect2(600, 500, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g5aky"] +atlas = ExtResource("337_2v6ek") +region = Rect2(800, 500, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nyc7u"] +atlas = ExtResource("337_2v6ek") +region = Rect2(0, 600, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q1yeq"] +atlas = ExtResource("337_2v6ek") +region = Rect2(200, 600, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pupfb"] +atlas = ExtResource("337_2v6ek") +region = Rect2(400, 600, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gfe8c"] +atlas = ExtResource("337_2v6ek") +region = Rect2(600, 600, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_76bl1"] +atlas = ExtResource("337_2v6ek") +region = Rect2(800, 600, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u7frn"] +atlas = ExtResource("337_2v6ek") +region = Rect2(0, 700, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ls3an"] +atlas = ExtResource("337_2v6ek") +region = Rect2(200, 700, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4l6e0"] +atlas = ExtResource("337_2v6ek") +region = Rect2(400, 700, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cvlbl"] +atlas = ExtResource("337_2v6ek") +region = Rect2(600, 700, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jkvpv"] +atlas = ExtResource("337_2v6ek") +region = Rect2(800, 700, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lpp7o"] +atlas = ExtResource("337_2v6ek") +region = Rect2(0, 800, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v8igx"] +atlas = ExtResource("337_2v6ek") +region = Rect2(200, 800, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mmm0q"] +atlas = ExtResource("337_2v6ek") +region = Rect2(400, 800, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5ukt7"] +atlas = ExtResource("337_2v6ek") +region = Rect2(600, 800, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0pkd7"] +atlas = ExtResource("337_2v6ek") +region = Rect2(800, 800, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n85t7"] +atlas = ExtResource("338_mh670") +region = Rect2(0, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nb4v4"] +atlas = ExtResource("338_mh670") +region = Rect2(100, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cl00x"] +atlas = ExtResource("338_mh670") +region = Rect2(200, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ufcsw"] +atlas = ExtResource("338_mh670") +region = Rect2(300, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aoisp"] +atlas = ExtResource("338_mh670") +region = Rect2(400, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3rkdy"] +atlas = ExtResource("338_mh670") +region = Rect2(500, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o0dym"] +atlas = ExtResource("338_mh670") +region = Rect2(0, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vxihx"] +atlas = ExtResource("338_mh670") +region = Rect2(100, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ofpmt"] +atlas = ExtResource("338_mh670") +region = Rect2(200, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ux0ir"] +atlas = ExtResource("338_mh670") +region = Rect2(300, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8dgch"] +atlas = ExtResource("338_mh670") +region = Rect2(400, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7ixin"] +atlas = ExtResource("338_mh670") +region = Rect2(500, 100, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2kea0"] +atlas = ExtResource("338_mh670") +region = Rect2(0, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kgnps"] +atlas = ExtResource("338_mh670") +region = Rect2(100, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g2wgu"] +atlas = ExtResource("338_mh670") +region = Rect2(200, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0oosk"] +atlas = ExtResource("338_mh670") +region = Rect2(300, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_80k2g"] +atlas = ExtResource("338_mh670") +region = Rect2(400, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fskx7"] +atlas = ExtResource("338_mh670") +region = Rect2(500, 200, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_no3pe"] +atlas = ExtResource("338_mh670") +region = Rect2(0, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_15fnm"] +atlas = ExtResource("338_mh670") +region = Rect2(100, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r5e73"] +atlas = ExtResource("338_mh670") +region = Rect2(200, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2im8t"] +atlas = ExtResource("338_mh670") +region = Rect2(300, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mxl2m"] +atlas = ExtResource("338_mh670") +region = Rect2(400, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6dwuh"] +atlas = ExtResource("338_mh670") +region = Rect2(500, 300, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_53c1f"] +atlas = ExtResource("338_mh670") +region = Rect2(0, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mmbhy"] +atlas = ExtResource("338_mh670") +region = Rect2(100, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uwbh3"] +atlas = ExtResource("338_mh670") +region = Rect2(200, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j6v2y"] +atlas = ExtResource("338_mh670") +region = Rect2(300, 400, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h5xbu"] +atlas = ExtResource("338_mh670") +region = Rect2(400, 400, 100, 100) + +[sub_resource type="SpriteFrames" id="SpriteFrames_dt0y4"] +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("339_wp6o0") +region = Rect2(875, 452, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ekrqp"] +atlas = ExtResource("339_wp6o0") +region = Rect2(1050, 452, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dvnic"] +atlas = ExtResource("339_wp6o0") +region = Rect2(1225, 452, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rxdv7"] +atlas = ExtResource("339_wp6o0") +region = Rect2(1400, 452, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0pvcp"] +atlas = ExtResource("339_wp6o0") +region = Rect2(0, 678, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yga3t"] +atlas = ExtResource("339_wp6o0") +region = Rect2(175, 678, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c6qrx"] +atlas = ExtResource("339_wp6o0") +region = Rect2(350, 678, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fkryw"] +atlas = ExtResource("339_wp6o0") +region = Rect2(525, 678, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jt7jg"] +atlas = ExtResource("339_wp6o0") +region = Rect2(700, 678, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6eyjl"] +atlas = ExtResource("339_wp6o0") +region = Rect2(875, 678, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tsolq"] +atlas = ExtResource("339_wp6o0") +region = Rect2(1050, 678, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_opqal"] +atlas = ExtResource("339_wp6o0") +region = Rect2(1225, 678, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kia47"] +atlas = ExtResource("339_wp6o0") +region = Rect2(1400, 678, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6aolf"] +atlas = ExtResource("339_wp6o0") +region = Rect2(0, 904, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g6jok"] +atlas = ExtResource("339_wp6o0") +region = Rect2(175, 904, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_swdkn"] +atlas = ExtResource("339_wp6o0") +region = Rect2(350, 904, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_edlre"] +atlas = ExtResource("339_wp6o0") +region = Rect2(525, 904, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gbj32"] +atlas = ExtResource("339_wp6o0") +region = Rect2(700, 904, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bstol"] +atlas = ExtResource("339_wp6o0") +region = Rect2(875, 904, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_57vey"] +atlas = ExtResource("339_wp6o0") +region = Rect2(1050, 904, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_31ikn"] +atlas = ExtResource("339_wp6o0") +region = Rect2(1225, 904, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e1yxa"] +atlas = ExtResource("339_wp6o0") +region = Rect2(1400, 904, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7a7ks"] +atlas = ExtResource("339_wp6o0") +region = Rect2(0, 1130, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p2hq6"] +atlas = ExtResource("339_wp6o0") +region = Rect2(175, 1130, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k3fbj"] +atlas = ExtResource("339_wp6o0") +region = Rect2(350, 1130, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ylav8"] +atlas = ExtResource("339_wp6o0") +region = Rect2(525, 1130, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xhgk2"] +atlas = ExtResource("339_wp6o0") +region = Rect2(700, 1130, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_diucy"] +atlas = ExtResource("339_wp6o0") +region = Rect2(875, 1130, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8gw5n"] +atlas = ExtResource("339_wp6o0") +region = Rect2(1050, 1130, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hc5wr"] +atlas = ExtResource("339_wp6o0") +region = Rect2(1225, 1130, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fugdi"] +atlas = ExtResource("339_wp6o0") +region = Rect2(1400, 1130, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h222i"] +atlas = ExtResource("339_wp6o0") +region = Rect2(0, 1356, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7qa4p"] +atlas = ExtResource("339_wp6o0") +region = Rect2(175, 1356, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jbavk"] +atlas = ExtResource("339_wp6o0") +region = Rect2(350, 1356, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ncorq"] +atlas = ExtResource("339_wp6o0") +region = Rect2(525, 1356, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mdvft"] +atlas = ExtResource("339_wp6o0") +region = Rect2(700, 1356, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ljrf5"] +atlas = ExtResource("339_wp6o0") +region = Rect2(875, 1356, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r7ll6"] +atlas = ExtResource("339_wp6o0") +region = Rect2(1050, 1356, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6vssn"] +atlas = ExtResource("339_wp6o0") +region = Rect2(1225, 1356, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4lr8r"] +atlas = ExtResource("339_wp6o0") +region = Rect2(1400, 1356, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xp4kq"] +atlas = ExtResource("339_wp6o0") +region = Rect2(0, 1582, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_idymv"] +atlas = ExtResource("339_wp6o0") +region = Rect2(175, 1582, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ujl1x"] +atlas = ExtResource("339_wp6o0") +region = Rect2(350, 1582, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_37wgc"] +atlas = ExtResource("339_wp6o0") +region = Rect2(525, 1582, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g5fso"] +atlas = ExtResource("339_wp6o0") +region = Rect2(700, 1582, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4a47d"] +atlas = ExtResource("339_wp6o0") +region = Rect2(875, 1582, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eh3iw"] +atlas = ExtResource("339_wp6o0") +region = Rect2(1050, 1582, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jc54a"] +atlas = ExtResource("339_wp6o0") +region = Rect2(1225, 1582, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xyo6b"] +atlas = ExtResource("339_wp6o0") +region = Rect2(1400, 1582, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gnyks"] +atlas = ExtResource("339_wp6o0") +region = Rect2(0, 1808, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_08lae"] +atlas = ExtResource("339_wp6o0") +region = Rect2(175, 1808, 175, 226) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r710l"] +atlas = ExtResource("339_wp6o0") +region = Rect2(350, 1808, 175, 226) + +[sub_resource type="SpriteFrames" id="SpriteFrames_myf6k"] +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("340_t15yy") +region = Rect2(134, 0, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_56ojt"] +atlas = ExtResource("340_t15yy") +region = Rect2(402, 0, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jwkdt"] +atlas = ExtResource("340_t15yy") +region = Rect2(670, 0, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tklqq"] +atlas = ExtResource("340_t15yy") +region = Rect2(938, 0, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0kd7d"] +atlas = ExtResource("340_t15yy") +region = Rect2(1206, 0, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uoo6g"] +atlas = ExtResource("340_t15yy") +region = Rect2(134, 134, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eyk0y"] +atlas = ExtResource("340_t15yy") +region = Rect2(402, 134, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0imbq"] +atlas = ExtResource("340_t15yy") +region = Rect2(670, 134, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oys1t"] +atlas = ExtResource("340_t15yy") +region = Rect2(938, 134, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_06alo"] +atlas = ExtResource("340_t15yy") +region = Rect2(1206, 134, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uoxdj"] +atlas = ExtResource("340_t15yy") +region = Rect2(134, 268, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rcb13"] +atlas = ExtResource("340_t15yy") +region = Rect2(402, 268, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pj86n"] +atlas = ExtResource("340_t15yy") +region = Rect2(670, 268, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qpw3f"] +atlas = ExtResource("340_t15yy") +region = Rect2(938, 268, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gn6h7"] +atlas = ExtResource("340_t15yy") +region = Rect2(1206, 268, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lkh03"] +atlas = ExtResource("340_t15yy") +region = Rect2(134, 402, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pdi3o"] +atlas = ExtResource("340_t15yy") +region = Rect2(402, 402, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s3ywy"] +atlas = ExtResource("340_t15yy") +region = Rect2(670, 402, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6idxu"] +atlas = ExtResource("340_t15yy") +region = Rect2(938, 402, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qndi3"] +atlas = ExtResource("340_t15yy") +region = Rect2(1206, 402, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y4ahc"] +atlas = ExtResource("340_t15yy") +region = Rect2(134, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y5c6p"] +atlas = ExtResource("340_t15yy") +region = Rect2(402, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oa8p3"] +atlas = ExtResource("340_t15yy") +region = Rect2(670, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rc08e"] +atlas = ExtResource("340_t15yy") +region = Rect2(938, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8tw6t"] +atlas = ExtResource("340_t15yy") +region = Rect2(1206, 536, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_njvn5"] +atlas = ExtResource("340_t15yy") +region = Rect2(134, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cwp0x"] +atlas = ExtResource("340_t15yy") +region = Rect2(402, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hch5s"] +atlas = ExtResource("340_t15yy") +region = Rect2(670, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vgjuv"] +atlas = ExtResource("340_t15yy") +region = Rect2(938, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1502j"] +atlas = ExtResource("340_t15yy") +region = Rect2(1206, 670, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5m1ra"] +atlas = ExtResource("340_t15yy") +region = Rect2(134, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l0imt"] +atlas = ExtResource("340_t15yy") +region = Rect2(402, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ywb2s"] +atlas = ExtResource("340_t15yy") +region = Rect2(670, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x5582"] +atlas = ExtResource("340_t15yy") +region = Rect2(938, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4uy6l"] +atlas = ExtResource("340_t15yy") +region = Rect2(1206, 804, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_50esb"] +atlas = ExtResource("340_t15yy") +region = Rect2(134, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xnham"] +atlas = ExtResource("340_t15yy") +region = Rect2(402, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j1cf1"] +atlas = ExtResource("340_t15yy") +region = Rect2(670, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jvde4"] +atlas = ExtResource("340_t15yy") +region = Rect2(938, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dvkgv"] +atlas = ExtResource("340_t15yy") +region = Rect2(1206, 938, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3ant7"] +atlas = ExtResource("340_t15yy") +region = Rect2(134, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a6f8y"] +atlas = ExtResource("340_t15yy") +region = Rect2(402, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ancbh"] +atlas = ExtResource("340_t15yy") +region = Rect2(670, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yes2c"] +atlas = ExtResource("340_t15yy") +region = Rect2(938, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cs2h2"] +atlas = ExtResource("340_t15yy") +region = Rect2(1206, 1072, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n2i2d"] +atlas = ExtResource("340_t15yy") +region = Rect2(134, 1206, 134, 134) + +[sub_resource type="SpriteFrames" id="SpriteFrames_vot43"] +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="BoxShape3D" id="BoxShape3D_53wuj"] size = Vector3(1, 0.565, 2) @@ -2061,6 +4748,483 @@ _data = { &"default": SubResource("Animation_b8jed") } +[sub_resource type="Animation" id="Animation_30xy4"] +resource_name = "CurseHit" +length = 1.56667 +tracks/0/type = "value" +tracks/0/imported = false +tracks/0/enabled = true +tracks/0/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Curse Hit Effect:animation") +tracks/0/interp = 1 +tracks/0/loop_wrap = true +tracks/0/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"default"] +} +tracks/1/type = "value" +tracks/1/imported = false +tracks/1/enabled = true +tracks/1/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Curse Hit Effect:frame") +tracks/1/interp = 1 +tracks/1/loop_wrap = true +tracks/1/keys = { +"times": PackedFloat32Array(0, 1.56667), +"transitions": PackedFloat32Array(1, 1), +"update": 0, +"values": [0, 47] +} + +[sub_resource type="Animation" id="Animation_3pm1j"] +resource_name = "EarthHit" +length = 1.46667 +tracks/0/type = "value" +tracks/0/imported = false +tracks/0/enabled = true +tracks/0/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Earth Hit Effect:animation") +tracks/0/interp = 1 +tracks/0/loop_wrap = true +tracks/0/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"EARTH DAMAGE"] +} +tracks/1/type = "value" +tracks/1/imported = false +tracks/1/enabled = true +tracks/1/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Earth Hit Effect:frame") +tracks/1/interp = 1 +tracks/1/loop_wrap = true +tracks/1/keys = { +"times": PackedFloat32Array(0, 1.46667), +"transitions": PackedFloat32Array(1, 1), +"update": 0, +"values": [0, 44] +} + +[sub_resource type="Animation" id="Animation_6shfu"] +resource_name = "Fire Damage" +length = 2.93334 +tracks/0/type = "value" +tracks/0/imported = false +tracks/0/enabled = true +tracks/0/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/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("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/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("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/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)] +} +tracks/3/type = "value" +tracks/3/imported = false +tracks/3/enabled = true +tracks/3/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Rust Activation Effect:animation") +tracks/3/interp = 1 +tracks/3/loop_wrap = true +tracks/3/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"default"] +} +tracks/4/type = "value" +tracks/4/imported = false +tracks/4/enabled = true +tracks/4/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Rust Activation Effect:frame") +tracks/4/interp = 1 +tracks/4/loop_wrap = true +tracks/4/keys = { +"times": PackedFloat32Array(0, 2.93333), +"transitions": PackedFloat32Array(1, 1), +"update": 0, +"values": [88, 88] +} + +[sub_resource type="Animation" id="Animation_f5cjs"] +resource_name = "HolyHit" +length = 0.700003 +tracks/0/type = "value" +tracks/0/imported = false +tracks/0/enabled = true +tracks/0/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Holy Hit Layer Effect:animation") +tracks/0/interp = 1 +tracks/0/loop_wrap = true +tracks/0/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"HOLY"] +} +tracks/1/type = "value" +tracks/1/imported = false +tracks/1/enabled = true +tracks/1/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Holy Hit Layer Effect:frame") +tracks/1/interp = 1 +tracks/1/loop_wrap = true +tracks/1/keys = { +"times": PackedFloat32Array(0, 0.7), +"transitions": PackedFloat32Array(1, 1), +"update": 0, +"values": [0, 21] +} + +[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("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/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("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/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("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/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"] +} +tracks/3/type = "value" +tracks/3/imported = false +tracks/3/enabled = true +tracks/3/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Rust Activation Effect:animation") +tracks/3/interp = 1 +tracks/3/loop_wrap = true +tracks/3/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"default"] +} +tracks/4/type = "value" +tracks/4/imported = false +tracks/4/enabled = true +tracks/4/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Rust Activation Effect:frame") +tracks/4/interp = 1 +tracks/4/loop_wrap = true +tracks/4/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [88] +} +tracks/5/type = "value" +tracks/5/imported = false +tracks/5/enabled = true +tracks/5/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Holy Hit Layer Effect:animation") +tracks/5/interp = 1 +tracks/5/loop_wrap = true +tracks/5/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"HOLY"] +} +tracks/6/type = "value" +tracks/6/imported = false +tracks/6/enabled = true +tracks/6/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Holy Hit Layer Effect:frame") +tracks/6/interp = 1 +tracks/6/loop_wrap = true +tracks/6/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [0] +} +tracks/7/type = "value" +tracks/7/imported = false +tracks/7/enabled = true +tracks/7/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Wind Hit Layer Effect:animation") +tracks/7/interp = 1 +tracks/7/loop_wrap = true +tracks/7/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"default"] +} +tracks/8/type = "value" +tracks/8/imported = false +tracks/8/enabled = true +tracks/8/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Wind Hit Layer Effect:frame") +tracks/8/interp = 1 +tracks/8/loop_wrap = true +tracks/8/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [50] +} +tracks/9/type = "value" +tracks/9/imported = false +tracks/9/enabled = true +tracks/9/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Water Hit Layer 1 Effect:animation") +tracks/9/interp = 1 +tracks/9/loop_wrap = true +tracks/9/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"WATER DAMAGE"] +} +tracks/10/type = "value" +tracks/10/imported = false +tracks/10/enabled = true +tracks/10/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Water Hit Layer 1 Effect:frame") +tracks/10/interp = 1 +tracks/10/loop_wrap = true +tracks/10/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [29] +} +tracks/11/type = "value" +tracks/11/imported = false +tracks/11/enabled = true +tracks/11/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Water Hit Layer 2Effect:animation") +tracks/11/interp = 1 +tracks/11/loop_wrap = true +tracks/11/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"WATER"] +} +tracks/12/type = "value" +tracks/12/imported = false +tracks/12/enabled = true +tracks/12/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Water Hit Layer 2Effect:frame") +tracks/12/interp = 1 +tracks/12/loop_wrap = true +tracks/12/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [51] +} +tracks/13/type = "value" +tracks/13/imported = false +tracks/13/enabled = true +tracks/13/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Curse Hit Effect:animation") +tracks/13/interp = 1 +tracks/13/loop_wrap = true +tracks/13/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"default"] +} +tracks/14/type = "value" +tracks/14/imported = false +tracks/14/enabled = true +tracks/14/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Curse Hit Effect:frame") +tracks/14/interp = 1 +tracks/14/loop_wrap = true +tracks/14/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [47] +} +tracks/15/type = "value" +tracks/15/imported = false +tracks/15/enabled = true +tracks/15/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Earth Hit Effect:animation") +tracks/15/interp = 1 +tracks/15/loop_wrap = true +tracks/15/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"WATER DAMAGE"] +} +tracks/16/type = "value" +tracks/16/imported = false +tracks/16/enabled = true +tracks/16/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Earth Hit Effect:frame") +tracks/16/interp = 1 +tracks/16/loop_wrap = true +tracks/16/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [0] +} + +[sub_resource type="Animation" id="Animation_0tqwp"] +resource_name = "RustActivate" +length = 1.46667 +step = 0.0166667 +tracks/0/type = "value" +tracks/0/imported = false +tracks/0/enabled = true +tracks/0/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Rust Activation Effect:animation") +tracks/0/interp = 1 +tracks/0/loop_wrap = true +tracks/0/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"default"] +} +tracks/1/type = "value" +tracks/1/imported = false +tracks/1/enabled = true +tracks/1/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Rust Activation Effect:frame") +tracks/1/interp = 1 +tracks/1/loop_wrap = true +tracks/1/keys = { +"times": PackedFloat32Array(0, 1.46667), +"transitions": PackedFloat32Array(1, 1), +"update": 0, +"values": [0, 88] +} + +[sub_resource type="Animation" id="Animation_q5dfb"] +resource_name = "WaterHit" +length = 1.7 +tracks/0/type = "value" +tracks/0/imported = false +tracks/0/enabled = true +tracks/0/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Water Hit Layer 1 Effect:animation") +tracks/0/interp = 1 +tracks/0/loop_wrap = true +tracks/0/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"WATER DAMAGE"] +} +tracks/1/type = "value" +tracks/1/imported = false +tracks/1/enabled = true +tracks/1/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Water Hit Layer 1 Effect:frame") +tracks/1/interp = 1 +tracks/1/loop_wrap = true +tracks/1/keys = { +"times": PackedFloat32Array(0, 1), +"transitions": PackedFloat32Array(1, 1), +"update": 0, +"values": [0, 29] +} +tracks/2/type = "value" +tracks/2/imported = false +tracks/2/enabled = true +tracks/2/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Water Hit Layer 2Effect:animation") +tracks/2/interp = 1 +tracks/2/loop_wrap = true +tracks/2/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"WATER"] +} +tracks/3/type = "value" +tracks/3/imported = false +tracks/3/enabled = true +tracks/3/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Water Hit Layer 2Effect:frame") +tracks/3/interp = 1 +tracks/3/loop_wrap = true +tracks/3/keys = { +"times": PackedFloat32Array(0, 1.7), +"transitions": PackedFloat32Array(1, 1), +"update": 0, +"values": [0, 51] +} + +[sub_resource type="Animation" id="Animation_godpv"] +resource_name = "WindHit" +length = 0.833335 +step = 0.0166667 +tracks/0/type = "value" +tracks/0/imported = false +tracks/0/enabled = true +tracks/0/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Wind Hit Layer Effect:animation") +tracks/0/interp = 1 +tracks/0/loop_wrap = true +tracks/0/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"default"] +} +tracks/1/type = "value" +tracks/1/imported = false +tracks/1/enabled = true +tracks/1/path = NodePath("../Sprite3D/SubViewportContainer/SubViewport/VFXSprites/Wind Hit Layer Effect:frame") +tracks/1/interp = 1 +tracks/1/loop_wrap = true +tracks/1/keys = { +"times": PackedFloat32Array(0, 0.833333), +"transitions": PackedFloat32Array(1, 1), +"update": 0, +"values": [0, 50] +} + +[sub_resource type="AnimationLibrary" id="AnimationLibrary_0tqwp"] +_data = { +&"CurseHit": SubResource("Animation_30xy4"), +&"EarthHit": SubResource("Animation_3pm1j"), +&"FireHit": SubResource("Animation_6shfu"), +&"HolyHit": SubResource("Animation_f5cjs"), +&"RESET": SubResource("Animation_cftgd"), +&"RustActivate": SubResource("Animation_0tqwp"), +&"WaterHit": SubResource("Animation_q5dfb"), +&"WindHit": SubResource("Animation_godpv") +} + [node name="EnemyModelView" type="Node3D"] script = ExtResource("1_vf7er") EnemyLoreInfo = ExtResource("2_ejhrk") @@ -2096,6 +5260,60 @@ offset = Vector2(400, 375) sprite_frames = SubResource("SpriteFrames_d844v") offset = Vector2(400, 375) +[node name="VFXSprites" type="Node2D" parent="Sprite3D/SubViewportContainer/SubViewport"] + +[node name="Rust Activation Effect" type="AnimatedSprite2D" parent="Sprite3D/SubViewportContainer/SubViewport/VFXSprites"] +position = Vector2(400, 400) +scale = Vector2(1.54, 1.54) +sprite_frames = SubResource("SpriteFrames_woc45") +frame = 88 + +[node name="Holy Hit Layer Effect" type="AnimatedSprite2D" parent="Sprite3D/SubViewportContainer/SubViewport/VFXSprites"] +position = Vector2(400, 400) +scale = Vector2(0.675, 0.675) +sprite_frames = SubResource("SpriteFrames_4dwm4") +animation = &"HOLY" + +[node name="Wind Hit Layer Effect" type="AnimatedSprite2D" parent="Sprite3D/SubViewportContainer/SubViewport/VFXSprites"] +position = Vector2(400, 400) +scale = Vector2(1.445, 1.445) +sprite_frames = SubResource("SpriteFrames_bsoya") +frame = 50 + +[node name="Flame Hit Effect" type="AnimatedSprite2D" parent="Sprite3D/SubViewportContainer/SubViewport/VFXSprites"] +position = Vector2(400, 400) +scale = Vector2(3.445, 3.445) +sprite_frames = SubResource("SpriteFrames_mxgiu") +animation = &"Flame Damage" +frame = 40 + +[node name="Water Hit Layer 1 Effect" type="AnimatedSprite2D" parent="Sprite3D/SubViewportContainer/SubViewport/VFXSprites"] +position = Vector2(400, 400) +scale = Vector2(2.215, 2.215) +sprite_frames = SubResource("SpriteFrames_dt0y4") +animation = &"WATER DAMAGE" +frame = 29 + +[node name="Water Hit Layer 2Effect" type="AnimatedSprite2D" parent="Sprite3D/SubViewportContainer/SubViewport/VFXSprites"] +position = Vector2(400, 400) +scale = Vector2(1.105, 0.895) +sprite_frames = SubResource("SpriteFrames_myf6k") +animation = &"WATER" +frame = 51 + +[node name="Curse Hit Effect" type="AnimatedSprite2D" parent="Sprite3D/SubViewportContainer/SubViewport/VFXSprites"] +texture_filter = 1 +position = Vector2(400, 400) +scale = Vector2(2.78, 2.78) +sprite_frames = SubResource("SpriteFrames_vot43") +frame = 47 + +[node name="Earth Hit Effect" type="AnimatedSprite2D" parent="Sprite3D/SubViewportContainer/SubViewport/VFXSprites"] +position = Vector2(400, 400) +scale = Vector2(2.005, 2.005) +sprite_frames = SubResource("SpriteFrames_dt0y4") +animation = &"WATER DAMAGE" + [node name="Hitbox" type="Area3D" parent="."] unique_name_in_owner = true transform = Transform3D(-1, 0, -8.74228e-08, 0, 1, 0, 8.74228e-08, 0, -1, -0.152949, 1.6405, 0) @@ -2142,3 +5360,51 @@ unique_name_in_owner = true transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1.6405, 0) autoplay = true bus = &"SFX" + +[node name="VFXAnimations" type="Node" parent="."] + +[node name="FlameHitAnimation" type="AnimationPlayer" parent="VFXAnimations"] +unique_name_in_owner = true +libraries = { +&"": SubResource("AnimationLibrary_0tqwp") +} + +[node name="RustHitAnimation" type="AnimationPlayer" parent="VFXAnimations"] +unique_name_in_owner = true +root_node = NodePath("../../Secondary Animation Player") +libraries = { +&"": SubResource("AnimationLibrary_0tqwp") +} + +[node name="HolyHitAnimation" type="AnimationPlayer" parent="VFXAnimations"] +unique_name_in_owner = true +libraries = { +&"": SubResource("AnimationLibrary_0tqwp") +} + +[node name="WindHitAnimation" type="AnimationPlayer" parent="VFXAnimations"] +unique_name_in_owner = true +libraries = { +&"": SubResource("AnimationLibrary_0tqwp") +} + +[node name="WaterHitAnimation" type="AnimationPlayer" parent="VFXAnimations"] +unique_name_in_owner = true +root_node = NodePath("../../Secondary Animation Player") +libraries = { +&"": SubResource("AnimationLibrary_0tqwp") +} + +[node name="CurseHitAnimation" type="AnimationPlayer" parent="VFXAnimations"] +unique_name_in_owner = true +root_node = NodePath("../../Secondary Animation Player") +libraries = { +&"": SubResource("AnimationLibrary_0tqwp") +} + +[node name="EarthHitAnimation" type="AnimationPlayer" parent="VFXAnimations"] +unique_name_in_owner = true +root_node = NodePath("../../Secondary Animation Player") +libraries = { +&"": SubResource("AnimationLibrary_0tqwp") +} diff --git a/Zennysoft.Game.Ma/src/game/Game.cs b/Zennysoft.Game.Ma/src/game/Game.cs index 2893da21..efd44b0b 100644 --- a/Zennysoft.Game.Ma/src/game/Game.cs +++ b/Zennysoft.Game.Ma/src/game/Game.cs @@ -879,7 +879,7 @@ public partial class Game : Node3D, IGame private void RustTimeout() { - _player.HealthComponent.Damage(3); + _player.HealthComponent.Damage(3, ElementType.Ferrum); } private void RustWoreOff() => _player.StatusEffectComponent.Rust.OnNext(false); diff --git a/Zennysoft.Game.Ma/src/items/EffectService.cs b/Zennysoft.Game.Ma/src/items/EffectService.cs index 3c975ee3..777395ca 100644 --- a/Zennysoft.Game.Ma/src/items/EffectService.cs +++ b/Zennysoft.Game.Ma/src/items/EffectService.cs @@ -100,7 +100,7 @@ public class EffectService foreach (var enemy in currentEnemies) { var absorbAmount = enemy.HealthComponent.CurrentHP.Value * 0.25; - enemy.HealthComponent.Damage((int)absorbAmount); + enemy.HealthComponent.Damage((int)absorbAmount, ElementType.None); hpToAbsorb += absorbAmount; enemy.OnAbsorb(); } @@ -118,7 +118,7 @@ public class EffectService foreach (var enemy in currentEnemies) { var damageDealt = DamageCalculator.CalculateDamage(new AttackData(20, elementType), 10, enemy.ElementalResistanceSet); - enemy.HealthComponent.Damage(damageDealt); + enemy.HealthComponent.Damage(damageDealt, elementType); } } diff --git a/Zennysoft.Game.Ma/src/items/misc/SetItem.cs b/Zennysoft.Game.Ma/src/items/misc/SetItem.cs index 6bf0c568..6248d679 100644 --- a/Zennysoft.Game.Ma/src/items/misc/SetItem.cs +++ b/Zennysoft.Game.Ma/src/items/misc/SetItem.cs @@ -38,7 +38,7 @@ public partial class SetItem : RigidBody3D if (area.GetOwner() is ExplodableWall wall) wall.Demolish(); if (area.GetOwner() is IEnemy enemy) - enemy.HealthComponent.Damage(10); + enemy.HealthComponent.Damage(10, ElementType.Igneous); } public async void Set() diff --git a/Zennysoft.Game.Ma/src/items/thrown/ThrownItem.cs b/Zennysoft.Game.Ma/src/items/thrown/ThrownItem.cs index 5f3a966a..7d6ae4ef 100644 --- a/Zennysoft.Game.Ma/src/items/thrown/ThrownItem.cs +++ b/Zennysoft.Game.Ma/src/items/thrown/ThrownItem.cs @@ -148,14 +148,14 @@ public partial class ThrownItem : RigidBody3D, IThrownItem break; default: var damageDealt = DamageCalculator.CalculateDamage(new AttackData(usableItem.ThrowDamage, ElementType.None), enemy.DefenseComponent.CurrentDefense.Value, enemy.ElementalResistanceSet); - enemy.HealthComponent.Damage(damageDealt); + enemy.HealthComponent.Damage(damageDealt, ElementType.None); break; } } else { var damageDealt = DamageCalculator.CalculateDamage(new AttackData(ItemThatIsThrown.ThrowDamage, ElementType.None), enemy.DefenseComponent.CurrentDefense.Value, enemy.ElementalResistanceSet); - enemy.HealthComponent.Damage(damageDealt); + enemy.HealthComponent.Damage(damageDealt, ElementType.None); } } diff --git a/Zennysoft.Game.Ma/src/items/weapons/textures/PALM OF HEAVEN.PNG.import b/Zennysoft.Game.Ma/src/items/weapons/textures/PALM OF HEAVEN.PNG.import index f0e8993d..f47030e9 100644 --- a/Zennysoft.Game.Ma/src/items/weapons/textures/PALM OF HEAVEN.PNG.import +++ b/Zennysoft.Game.Ma/src/items/weapons/textures/PALM OF HEAVEN.PNG.import @@ -3,7 +3,7 @@ importer="texture" type="CompressedTexture2D" uid="uid://bl4xempufmgr5" -path.bptc="res://.godot/imported/PALM OF HEAVEN.PNG-35554a412a9c4bc09647efa86e6b581e.bptc.ctex" +path.bptc="res://.godot/imported/palm of heaven.png-8afcb54f797720ff29f3c00c68c0f579.bptc.ctex" metadata={ "imported_formats": ["s3tc_bptc"], "vram_texture": true @@ -11,8 +11,8 @@ metadata={ [deps] -source_file="res://src/items/weapons/textures/PALM OF HEAVEN.PNG" -dest_files=["res://.godot/imported/PALM OF HEAVEN.PNG-35554a412a9c4bc09647efa86e6b581e.bptc.ctex"] +source_file="res://src/items/weapons/textures/palm of heaven.png" +dest_files=["res://.godot/imported/palm of heaven.png-8afcb54f797720ff29f3c00c68c0f579.bptc.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Area 2/Puer/A2-Puer_AREA_2_MAIN_222STONE.png.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Area 2/Puer/A2-Puer_AREA_2_MAIN_222STONE.png.import index 495df45d..32e69d62 100644 --- a/Zennysoft.Game.Ma/src/map/dungeon/models/Area 2/Puer/A2-Puer_AREA_2_MAIN_222STONE.png.import +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Area 2/Puer/A2-Puer_AREA_2_MAIN_222STONE.png.import @@ -3,7 +3,7 @@ importer="texture" type="CompressedTexture2D" uid="uid://cp0er3xxxjkr5" -path="res://.godot/imported/a2-puer_AREA_2_MAIN_222STONE.png-139f243ac630853348798dfe584da1e0.ctex" +path="res://.godot/imported/A2-Puer_AREA_2_MAIN_222STONE.png-992459ef9849c39922a9b9e0c7774a4a.ctex" metadata={ "vram_texture": false } @@ -13,8 +13,8 @@ generator_parameters={ [deps] -source_file="res://src/map/dungeon/models/Area 2/Puer/a2-puer_AREA_2_MAIN_222STONE.png" -dest_files=["res://.godot/imported/a2-puer_AREA_2_MAIN_222STONE.png-139f243ac630853348798dfe584da1e0.ctex"] +source_file="res://src/map/dungeon/models/Area 2/Puer/A2-Puer_AREA_2_MAIN_222STONE.png" +dest_files=["res://.godot/imported/A2-Puer_AREA_2_MAIN_222STONE.png-992459ef9849c39922a9b9e0c7774a4a.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Area 2/Puer/A2-Puer_AREA_2_MAIN_STONE.png.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Area 2/Puer/A2-Puer_AREA_2_MAIN_STONE.png.import index 21e6e0d9..6b7d90a6 100644 --- a/Zennysoft.Game.Ma/src/map/dungeon/models/Area 2/Puer/A2-Puer_AREA_2_MAIN_STONE.png.import +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Area 2/Puer/A2-Puer_AREA_2_MAIN_STONE.png.import @@ -3,7 +3,7 @@ importer="texture" type="CompressedTexture2D" uid="uid://5r16swvuqjjg" -path="res://.godot/imported/a2-puer_AREA_2_MAIN_STONE.png-986249227e569ea1e40b4825b7f05c47.ctex" +path="res://.godot/imported/A2-Puer_AREA_2_MAIN_STONE.png-2267bd7e464cdc2e03c8954de01941bf.ctex" metadata={ "vram_texture": false } @@ -13,8 +13,8 @@ generator_parameters={ [deps] -source_file="res://src/map/dungeon/models/Area 2/Puer/a2-puer_AREA_2_MAIN_STONE.png" -dest_files=["res://.godot/imported/a2-puer_AREA_2_MAIN_STONE.png-986249227e569ea1e40b4825b7f05c47.ctex"] +source_file="res://src/map/dungeon/models/Area 2/Puer/A2-Puer_AREA_2_MAIN_STONE.png" +dest_files=["res://.godot/imported/A2-Puer_AREA_2_MAIN_STONE.png-2267bd7e464cdc2e03c8954de01941bf.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Area 2/Puer/A2-Puer_COLUMN_WHITE.png.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Area 2/Puer/A2-Puer_COLUMN_WHITE.png.import index 04bb9e3d..e762e21b 100644 --- a/Zennysoft.Game.Ma/src/map/dungeon/models/Area 2/Puer/A2-Puer_COLUMN_WHITE.png.import +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Area 2/Puer/A2-Puer_COLUMN_WHITE.png.import @@ -3,7 +3,7 @@ importer="texture" type="CompressedTexture2D" uid="uid://cvnpxln2mmtkp" -path="res://.godot/imported/a2-puer_COLUMN_WHITE.png-0b80d510851319464b2ef729d8868892.ctex" +path="res://.godot/imported/A2-Puer_COLUMN_WHITE.png-18037c22b966bb159d05cb7acac1bc53.ctex" metadata={ "vram_texture": false } @@ -13,8 +13,8 @@ generator_parameters={ [deps] -source_file="res://src/map/dungeon/models/Area 2/Puer/a2-puer_COLUMN_WHITE.png" -dest_files=["res://.godot/imported/a2-puer_COLUMN_WHITE.png-0b80d510851319464b2ef729d8868892.ctex"] +source_file="res://src/map/dungeon/models/Area 2/Puer/A2-Puer_COLUMN_WHITE.png" +dest_files=["res://.godot/imported/A2-Puer_COLUMN_WHITE.png-18037c22b966bb159d05cb7acac1bc53.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Area 2/Puer/A2-Puer_GREENBIT.png.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Area 2/Puer/A2-Puer_GREENBIT.png.import index 180e2856..9e3842f7 100644 --- a/Zennysoft.Game.Ma/src/map/dungeon/models/Area 2/Puer/A2-Puer_GREENBIT.png.import +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Area 2/Puer/A2-Puer_GREENBIT.png.import @@ -3,7 +3,7 @@ importer="texture" type="CompressedTexture2D" uid="uid://tjtjbktl51kd" -path="res://.godot/imported/a2-puer_GREENBIT.png-e1ed395f917a2fe57ed6288185af0729.ctex" +path="res://.godot/imported/A2-Puer_GREENBIT.png-40a9ca6a0efc569a5f329f19b3c3e572.ctex" metadata={ "vram_texture": false } @@ -13,8 +13,8 @@ generator_parameters={ [deps] -source_file="res://src/map/dungeon/models/Area 2/Puer/a2-puer_GREENBIT.png" -dest_files=["res://.godot/imported/a2-puer_GREENBIT.png-e1ed395f917a2fe57ed6288185af0729.ctex"] +source_file="res://src/map/dungeon/models/Area 2/Puer/A2-Puer_GREENBIT.png" +dest_files=["res://.godot/imported/A2-Puer_GREENBIT.png-40a9ca6a0efc569a5f329f19b3c3e572.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Area 2/Puer/A2-Puer_M13_14.png.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Area 2/Puer/A2-Puer_M13_14.png.import index 3ebf2724..9338c9fc 100644 --- a/Zennysoft.Game.Ma/src/map/dungeon/models/Area 2/Puer/A2-Puer_M13_14.png.import +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Area 2/Puer/A2-Puer_M13_14.png.import @@ -3,7 +3,7 @@ importer="texture" type="CompressedTexture2D" uid="uid://dqfdyguq83bhs" -path="res://.godot/imported/a2-puer_M13_14.png-ed8b29b0af1c2b973bfaee62e57cab14.ctex" +path="res://.godot/imported/A2-Puer_M13_14.png-e781478f15895763a566a64ff37db311.ctex" metadata={ "vram_texture": false } @@ -13,8 +13,8 @@ generator_parameters={ [deps] -source_file="res://src/map/dungeon/models/Area 2/Puer/a2-puer_M13_14.png" -dest_files=["res://.godot/imported/a2-puer_M13_14.png-ed8b29b0af1c2b973bfaee62e57cab14.ctex"] +source_file="res://src/map/dungeon/models/Area 2/Puer/A2-Puer_M13_14.png" +dest_files=["res://.godot/imported/A2-Puer_M13_14.png-e781478f15895763a566a64ff37db311.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Area 2/Puer/A2-Puer_M13_49.png.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Area 2/Puer/A2-Puer_M13_49.png.import index 4508979c..80697846 100644 --- a/Zennysoft.Game.Ma/src/map/dungeon/models/Area 2/Puer/A2-Puer_M13_49.png.import +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Area 2/Puer/A2-Puer_M13_49.png.import @@ -3,7 +3,7 @@ importer="texture" type="CompressedTexture2D" uid="uid://dorqwrqy03rim" -path="res://.godot/imported/a2-puer_M13_49.png-86429b5a3cd80a9159f32ded99a631bc.ctex" +path="res://.godot/imported/A2-Puer_M13_49.png-44faadb5ae300e9ecea145cfe1949536.ctex" metadata={ "vram_texture": false } @@ -13,8 +13,8 @@ generator_parameters={ [deps] -source_file="res://src/map/dungeon/models/Area 2/Puer/a2-puer_M13_49.png" -dest_files=["res://.godot/imported/a2-puer_M13_49.png-86429b5a3cd80a9159f32ded99a631bc.ctex"] +source_file="res://src/map/dungeon/models/Area 2/Puer/A2-Puer_M13_49.png" +dest_files=["res://.godot/imported/A2-Puer_M13_49.png-44faadb5ae300e9ecea145cfe1949536.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Area 2/Puer/A2-Puer_RUBBLE_1.png.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Area 2/Puer/A2-Puer_RUBBLE_1.png.import index db04979b..1d382c04 100644 --- a/Zennysoft.Game.Ma/src/map/dungeon/models/Area 2/Puer/A2-Puer_RUBBLE_1.png.import +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Area 2/Puer/A2-Puer_RUBBLE_1.png.import @@ -3,7 +3,7 @@ importer="texture" type="CompressedTexture2D" uid="uid://nl3bwenfa8fi" -path="res://.godot/imported/a2-puer_RUBBLE_1.png-c7185e2aad2613007d1951f1515ef882.ctex" +path="res://.godot/imported/A2-Puer_RUBBLE_1.png-72d7ff861d1df58d800502546da8d607.ctex" metadata={ "vram_texture": false } @@ -13,8 +13,8 @@ generator_parameters={ [deps] -source_file="res://src/map/dungeon/models/Area 2/Puer/a2-puer_RUBBLE_1.png" -dest_files=["res://.godot/imported/a2-puer_RUBBLE_1.png-c7185e2aad2613007d1951f1515ef882.ctex"] +source_file="res://src/map/dungeon/models/Area 2/Puer/A2-Puer_RUBBLE_1.png" +dest_files=["res://.godot/imported/A2-Puer_RUBBLE_1.png-72d7ff861d1df58d800502546da8d607.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Area 2/Puer/A2-Puer_STUCCO_DECAL_BIG.png.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Area 2/Puer/A2-Puer_STUCCO_DECAL_BIG.png.import index f0fbaffe..09c9a2ea 100644 --- a/Zennysoft.Game.Ma/src/map/dungeon/models/Area 2/Puer/A2-Puer_STUCCO_DECAL_BIG.png.import +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Area 2/Puer/A2-Puer_STUCCO_DECAL_BIG.png.import @@ -3,7 +3,7 @@ importer="texture" type="CompressedTexture2D" uid="uid://0p6suo7fpxum" -path="res://.godot/imported/a2-puer_STUCCO_DECAL_BIG.png-882b477f490f6ddbf5bffb3a6f8904e1.ctex" +path="res://.godot/imported/A2-Puer_STUCCO_DECAL_BIG.png-015d9f8dd06372231a1f422979d3604e.ctex" metadata={ "vram_texture": false } @@ -13,8 +13,8 @@ generator_parameters={ [deps] -source_file="res://src/map/dungeon/models/Area 2/Puer/a2-puer_STUCCO_DECAL_BIG.png" -dest_files=["res://.godot/imported/a2-puer_STUCCO_DECAL_BIG.png-882b477f490f6ddbf5bffb3a6f8904e1.ctex"] +source_file="res://src/map/dungeon/models/Area 2/Puer/A2-Puer_STUCCO_DECAL_BIG.png" +dest_files=["res://.godot/imported/A2-Puer_STUCCO_DECAL_BIG.png-015d9f8dd06372231a1f422979d3604e.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Area 2/Puer/A2-Puer_Tile 4.png.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Area 2/Puer/A2-Puer_Tile 4.png.import index 19980632..24318b1e 100644 --- a/Zennysoft.Game.Ma/src/map/dungeon/models/Area 2/Puer/A2-Puer_Tile 4.png.import +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Area 2/Puer/A2-Puer_Tile 4.png.import @@ -3,7 +3,7 @@ importer="texture" type="CompressedTexture2D" uid="uid://ct3mkni0v0y3g" -path="res://.godot/imported/a2-puer_Tile 4.png-9d089a32db3fc38a0c5dee6cdb6d3495.ctex" +path="res://.godot/imported/A2-Puer_Tile 4.png-0cfd085ec5fcea35eb2d1373e4717f77.ctex" metadata={ "vram_texture": false } @@ -13,8 +13,8 @@ generator_parameters={ [deps] -source_file="res://src/map/dungeon/models/Area 2/Puer/a2-puer_Tile 4.png" -dest_files=["res://.godot/imported/a2-puer_Tile 4.png-9d089a32db3fc38a0c5dee6cdb6d3495.ctex"] +source_file="res://src/map/dungeon/models/Area 2/Puer/A2-Puer_Tile 4.png" +dest_files=["res://.godot/imported/A2-Puer_Tile 4.png-0cfd085ec5fcea35eb2d1373e4717f77.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Area 2/Puer/A2-Puer_imag2esnormal.jpg.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Area 2/Puer/A2-Puer_imag2esnormal.jpg.import index 64b96d31..a2a510b2 100644 --- a/Zennysoft.Game.Ma/src/map/dungeon/models/Area 2/Puer/A2-Puer_imag2esnormal.jpg.import +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Area 2/Puer/A2-Puer_imag2esnormal.jpg.import @@ -3,7 +3,7 @@ importer="texture" type="CompressedTexture2D" uid="uid://b40fbcriycpp5" -path="res://.godot/imported/a2-puer_imag2esnormal.jpg-d6e063b2785344af34fa3bb45d47aa2f.ctex" +path="res://.godot/imported/A2-Puer_imag2esnormal.jpg-be023c8af9ff59eedfb3ede232c75195.ctex" metadata={ "vram_texture": false } @@ -13,8 +13,8 @@ generator_parameters={ [deps] -source_file="res://src/map/dungeon/models/Area 2/Puer/a2-puer_imag2esnormal.jpg" -dest_files=["res://.godot/imported/a2-puer_imag2esnormal.jpg-d6e063b2785344af34fa3bb45d47aa2f.ctex"] +source_file="res://src/map/dungeon/models/Area 2/Puer/A2-Puer_imag2esnormal.jpg" +dest_files=["res://.godot/imported/A2-Puer_imag2esnormal.jpg-be023c8af9ff59eedfb3ede232c75195.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Area 2/Puer/A2-Puer_inner_rock2.png.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Area 2/Puer/A2-Puer_inner_rock2.png.import index b8a78e4a..98a06282 100644 --- a/Zennysoft.Game.Ma/src/map/dungeon/models/Area 2/Puer/A2-Puer_inner_rock2.png.import +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Area 2/Puer/A2-Puer_inner_rock2.png.import @@ -3,7 +3,7 @@ importer="texture" type="CompressedTexture2D" uid="uid://b25r6gysyhu3e" -path="res://.godot/imported/a2-puer_inner_rock2.png-943622742770f7b55d1e40645d07d057.ctex" +path="res://.godot/imported/A2-Puer_inner_rock2.png-7c99975de214e5dddd3507f87212b910.ctex" metadata={ "vram_texture": false } @@ -13,8 +13,8 @@ generator_parameters={ [deps] -source_file="res://src/map/dungeon/models/Area 2/Puer/a2-puer_inner_rock2.png" -dest_files=["res://.godot/imported/a2-puer_inner_rock2.png-943622742770f7b55d1e40645d07d057.ctex"] +source_file="res://src/map/dungeon/models/Area 2/Puer/A2-Puer_inner_rock2.png" +dest_files=["res://.godot/imported/A2-Puer_inner_rock2.png-7c99975de214e5dddd3507f87212b910.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Area 2/Puer/A2-Puer_lime_hand_relief.png.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Area 2/Puer/A2-Puer_lime_hand_relief.png.import index c74c8b3f..652b4507 100644 --- a/Zennysoft.Game.Ma/src/map/dungeon/models/Area 2/Puer/A2-Puer_lime_hand_relief.png.import +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Area 2/Puer/A2-Puer_lime_hand_relief.png.import @@ -3,7 +3,7 @@ importer="texture" type="CompressedTexture2D" uid="uid://cw4hq3kofjowa" -path="res://.godot/imported/a2-puer_lime_hand_relief.png-85b73e808337e8b8841453cbda0e78cd.ctex" +path="res://.godot/imported/A2-Puer_lime_hand_relief.png-825857ea33249fe0361c829ba37bbfdb.ctex" metadata={ "vram_texture": false } @@ -13,8 +13,8 @@ generator_parameters={ [deps] -source_file="res://src/map/dungeon/models/Area 2/Puer/a2-puer_lime_hand_relief.png" -dest_files=["res://.godot/imported/a2-puer_lime_hand_relief.png-85b73e808337e8b8841453cbda0e78cd.ctex"] +source_file="res://src/map/dungeon/models/Area 2/Puer/A2-Puer_lime_hand_relief.png" +dest_files=["res://.godot/imported/A2-Puer_lime_hand_relief.png-825857ea33249fe0361c829ba37bbfdb.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Area 2/Puer/A2-Puer_mother_GREEN.png.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Area 2/Puer/A2-Puer_mother_GREEN.png.import index 225a80ba..daa0c845 100644 --- a/Zennysoft.Game.Ma/src/map/dungeon/models/Area 2/Puer/A2-Puer_mother_GREEN.png.import +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Area 2/Puer/A2-Puer_mother_GREEN.png.import @@ -3,7 +3,7 @@ importer="texture" type="CompressedTexture2D" uid="uid://bqrsde28o867s" -path="res://.godot/imported/a2-puer_mother_GREEN.png-7bb7d8dd57027953ba1e08ed0c256c8b.ctex" +path="res://.godot/imported/A2-Puer_mother_GREEN.png-ba1f3d21981ed19fc5cc87868e04808c.ctex" metadata={ "vram_texture": false } @@ -13,8 +13,8 @@ generator_parameters={ [deps] -source_file="res://src/map/dungeon/models/Area 2/Puer/a2-puer_mother_GREEN.png" -dest_files=["res://.godot/imported/a2-puer_mother_GREEN.png-7bb7d8dd57027953ba1e08ed0c256c8b.ctex"] +source_file="res://src/map/dungeon/models/Area 2/Puer/A2-Puer_mother_GREEN.png" +dest_files=["res://.godot/imported/A2-Puer_mother_GREEN.png-ba1f3d21981ed19fc5cc87868e04808c.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Area 2/Puer/A2-Puer_swirled_column _AREA222.png.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Area 2/Puer/A2-Puer_swirled_column _AREA222.png.import index d34c6994..54793d5e 100644 --- a/Zennysoft.Game.Ma/src/map/dungeon/models/Area 2/Puer/A2-Puer_swirled_column _AREA222.png.import +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Area 2/Puer/A2-Puer_swirled_column _AREA222.png.import @@ -3,7 +3,7 @@ importer="texture" type="CompressedTexture2D" uid="uid://4aq3a26dliyg" -path="res://.godot/imported/a2-puer_swirled_column _AREA222.png-6f90c188eae5b7e81110f39984d5d43f.ctex" +path="res://.godot/imported/A2-Puer_swirled_column _AREA222.png-4842b180cffdbc0274ecb9cbbbbc8221.ctex" metadata={ "vram_texture": false } @@ -13,8 +13,8 @@ generator_parameters={ [deps] -source_file="res://src/map/dungeon/models/Area 2/Puer/a2-puer_swirled_column _AREA222.png" -dest_files=["res://.godot/imported/a2-puer_swirled_column _AREA222.png-6f90c188eae5b7e81110f39984d5d43f.ctex"] +source_file="res://src/map/dungeon/models/Area 2/Puer/A2-Puer_swirled_column _AREA222.png" +dest_files=["res://.godot/imported/A2-Puer_swirled_column _AREA222.png-4842b180cffdbc0274ecb9cbbbbc8221.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/npc/Npc.cs b/Zennysoft.Game.Ma/src/npc/Npc.cs index 4d6c5b98..f93bbf05 100644 --- a/Zennysoft.Game.Ma/src/npc/Npc.cs +++ b/Zennysoft.Game.Ma/src/npc/Npc.cs @@ -22,50 +22,50 @@ public partial class Npc : Node3D public void OnReady() { - SetPhysicsProcess(true); - DialogueZone.BodyEntered += DialogueZone_BodyEntered; - DialogueZone.BodyExited += DialogueZone_BodyExited; - DialogueExitZone.BodyExited += DialogueExitZone_BodyExited; - Hitbox.AreaEntered += Hitbox_AreaEntered; + SetPhysicsProcess(true); + DialogueZone.BodyEntered += DialogueZone_BodyEntered; + DialogueZone.BodyExited += DialogueZone_BodyExited; + DialogueExitZone.BodyExited += DialogueExitZone_BodyExited; + Hitbox.AreaEntered += Hitbox_AreaEntered; } private void Hitbox_AreaEntered(Area3D area) { - if (area.GetOwner() is ThrownItem thrownItem) - { - DialogueController.ShowDialogue(Dialogue, "get_item"); - thrownItem.QueueFree(); - } + if (area.GetOwner() is ThrownItem thrownItem) + { + DialogueController.ShowDialogue(Dialogue, "get_item"); + thrownItem.QueueFree(); + } } private void DialogueZone_BodyExited(Node3D body) { - _isInDialogueZone = false; + _isInDialogueZone = false; } private void DialogueExitZone_BodyExited(Node3D body) { - DialogueController.Interrupt(); + DialogueController.Interrupt(); } private void DialogueZone_BodyEntered(Node3D body) { - _isInDialogueZone = true; + _isInDialogueZone = true; } - public override void _UnhandledInput(InputEvent @event) + public override void _Input(InputEvent @event) { - if (@event.IsActionPressed(GameInputs.Interact) && _isInDialogueZone) - { - DialogueController.ShowDialogue(Dialogue, "general"); - } + if (@event.IsActionPressed(GameInputs.Interact) && _isInDialogueZone) + { + DialogueController.ShowDialogue(Dialogue, "general"); + } } public void OnExitTree() { - DialogueZone.BodyEntered -= DialogueZone_BodyEntered; - DialogueZone.BodyExited -= DialogueZone_BodyExited; - DialogueExitZone.BodyExited -= DialogueExitZone_BodyExited; - Hitbox.AreaEntered -= Hitbox_AreaEntered; + DialogueZone.BodyEntered -= DialogueZone_BodyEntered; + DialogueZone.BodyExited -= DialogueZone_BodyExited; + DialogueExitZone.BodyExited -= DialogueExitZone_BodyExited; + Hitbox.AreaEntered -= Hitbox_AreaEntered; } } diff --git a/Zennysoft.Game.Ma/src/player/Player.cs b/Zennysoft.Game.Ma/src/player/Player.cs index 23e7d732..bd46c2f4 100644 --- a/Zennysoft.Game.Ma/src/player/Player.cs +++ b/Zennysoft.Game.Ma/src/player/Player.cs @@ -141,115 +141,115 @@ public partial class Player : CharacterBody3D, IPlayer, IProvide public void Initialize() { - var container = new SimpleInjector.Container(); - container.Register(Lifestyle.Singleton); + var container = new SimpleInjector.Container(); + container.Register(Lifestyle.Singleton); - PlayerLogic = container.GetInstance(); - PlayerLogic.Set(this as IPlayer); - PlayerLogic.Set(Settings); + PlayerLogic = container.GetInstance(); + PlayerLogic.Set(this as IPlayer); + PlayerLogic.Set(Settings); - Inventory = new Inventory(); - Inventory.InventoryChanged += Inventory_InventoryChanged; - HealthComponent = new HealthComponent(InitialHP); - VTComponent = new VTComponent(InitialVT); - AttackComponent = new AttackComponent(InitialAttack); - DefenseComponent = new DefenseComponent(InitialDefense); - ExperiencePointsComponent = new ExperiencePointsComponent(); - LuckComponent = new LuckComponent(InitialLuck); - EquipmentComponent = new EquipmentComponent(); - StatusEffectComponent = new StatusEffectComponent(RustDuration); + Inventory = new Inventory(); + Inventory.InventoryChanged += Inventory_InventoryChanged; + HealthComponent = new HealthComponent(InitialHP); + VTComponent = new VTComponent(InitialVT); + AttackComponent = new AttackComponent(InitialAttack); + DefenseComponent = new DefenseComponent(InitialDefense); + ExperiencePointsComponent = new ExperiencePointsComponent(); + LuckComponent = new LuckComponent(InitialLuck); + EquipmentComponent = new EquipmentComponent(); + StatusEffectComponent = new StatusEffectComponent(RustDuration); - _itemReroller = new ItemReroller(ItemDatabase.Instance); - _playerEffectService = new PlayerEffectService(this); + _itemReroller = new ItemReroller(ItemDatabase.Instance); + _playerEffectService = new PlayerEffectService(this); - Settings = new PlayerLogic.Settings() { RotationSpeed = RotationSpeed, MoveSpeed = MoveSpeed, Acceleration = Acceleration }; + Settings = new PlayerLogic.Settings() { RotationSpeed = RotationSpeed, MoveSpeed = MoveSpeed, Acceleration = Acceleration }; - PlayerBinding = PlayerLogic.Bind(); + PlayerBinding = PlayerLogic.Bind(); - PlayerBinding - .Handle((in PlayerLogic.Output.ThrowItem output) => - { - }) - .Handle((in PlayerLogic.Output.Move output) => - { - Move(output.delta); - }); + PlayerBinding + .Handle((in PlayerLogic.Output.ThrowItem output) => + { + }) + .Handle((in PlayerLogic.Output.Move output) => + { + Move(output.delta); + }); - PlayerLogic.Start(); - this.Provide(); + PlayerLogic.Start(); + this.Provide(); } public void ResetPlayerData() { - PlayerFXAnimations.Play("RESET"); + PlayerFXAnimations.Play("RESET"); - Inventory.Items.Clear(); - HealthComponent.Reset(); - VTComponent.Reset(); - AttackComponent.Reset(); - DefenseComponent.Reset(); - ExperiencePointsComponent.Reset(); - LuckComponent.Reset(); - EquipmentComponent.Reset(); + Inventory.Items.Clear(); + HealthComponent.Reset(); + VTComponent.Reset(); + AttackComponent.Reset(); + DefenseComponent.Reset(); + ExperiencePointsComponent.Reset(); + LuckComponent.Reset(); + EquipmentComponent.Reset(); - HealthTimer.Timeout += OnHealthTimerTimeout; + HealthTimer.Timeout += OnHealthTimerTimeout; } #region Initialization public void OnReady() { - Hitbox.AreaEntered += Hitbox_AreaEntered; - CollisionDetector.AreaEntered += CollisionDetector_AreaEntered; - HealthComponent.CurrentHP.Changed += InverseHPToAttackPowerSync; - HealthComponent.HealthReachedZero += Die; - ExperiencePointsComponent.PlayerLevelUp += OnLevelUp; - ExperiencePointsComponent.PlayerLevelDown += OnLevelDown; - PlayerFXAnimations.AnimationFinished += PlayerFXAnimations_AnimationFinished; - HealthTimer.WaitTime = _healthTimerWaitTime; + Hitbox.AreaEntered += Hitbox_AreaEntered; + CollisionDetector.AreaEntered += CollisionDetector_AreaEntered; + HealthComponent.CurrentHP.Changed += InverseHPToAttackPowerSync; + HealthComponent.HealthReachedZero += Die; + ExperiencePointsComponent.PlayerLevelUp += OnLevelUp; + ExperiencePointsComponent.PlayerLevelDown += OnLevelDown; + PlayerFXAnimations.AnimationFinished += PlayerFXAnimations_AnimationFinished; + HealthTimer.WaitTime = _healthTimerWaitTime; - _projectileCooldownTimer = new Timer(); - AddChild(_projectileCooldownTimer); - _projectileCooldownTimer.WaitTime = 1.8f; - _projectileCooldownTimer.Timeout += ProjectileCooldown; + _projectileCooldownTimer = new Timer(); + AddChild(_projectileCooldownTimer); + _projectileCooldownTimer.WaitTime = 1.8f; + _projectileCooldownTimer.Timeout += ProjectileCooldown; - SetProcessInput(false); - SetPhysicsProcess(false); + SetProcessInput(false); + SetPhysicsProcess(false); } #endregion public void Activate() { - SetProcessInput(true); - SetPhysicsProcess(true); - SetHealthTimerStatus(HealthTimerIsActive); - Hitbox.SetDeferred(Area3D.PropertyName.Monitoring, true); - Hitbox.SetDeferred(Area3D.PropertyName.Monitorable, true); + SetProcessInput(true); + SetPhysicsProcess(true); + SetHealthTimerStatus(HealthTimerIsActive); + Hitbox.SetDeferred(Area3D.PropertyName.Monitoring, true); + Hitbox.SetDeferred(Area3D.PropertyName.Monitorable, true); } public void Deactivate() { - Velocity = Vector3.Zero; - SetProcessInput(false); - SetPhysicsProcess(false); - SetHealthTimerStatus(false); - Hitbox.SetDeferred(Area3D.PropertyName.Monitoring, false); - Hitbox.SetDeferred(Area3D.PropertyName.Monitorable, false); + Velocity = Vector3.Zero; + SetProcessInput(false); + SetPhysicsProcess(false); + SetHealthTimerStatus(false); + Hitbox.SetDeferred(Area3D.PropertyName.Monitoring, false); + Hitbox.SetDeferred(Area3D.PropertyName.Monitorable, false); } public void SetHealthTimerStatus(bool isActive) { - if (isActive) - HealthTimer.Start(); - else - HealthTimer.Stop(); + if (isActive) + HealthTimer.Start(); + else + HealthTimer.Stop(); } public void ModifyHealthTimerSpeed(float newSpeed) { - HealthTimerSpeedModifier = newSpeed; - HealthTimer.Stop(); - HealthTimer.WaitTime = _healthTimerWaitTime * newSpeed; - HealthTimer.Start(); + HealthTimerSpeedModifier = newSpeed; + HealthTimer.Stop(); + HealthTimer.WaitTime = _healthTimerWaitTime * newSpeed; + HealthTimer.Start(); } public void ModifyHealthRecoveryAmount(int newAmount) @@ -259,30 +259,30 @@ public partial class Player : CharacterBody3D, IPlayer, IProvide public void TeleportPlayer((Vector3 Rotation, Vector3 Position) newTransform) { - Rotation = newTransform.Rotation; - Position = newTransform.Position; - ResetPhysicsInterpolation(); + Rotation = newTransform.Rotation; + Position = newTransform.Position; + ResetPhysicsInterpolation(); } public void TakeDamage(AttackData damage) { - _camera3D.AddShake(1.0f); - TakeDamageAnimationPlayer.Play("take_damage"); - var damageReceived = DamageCalculator.CalculateDamage(damage, TotalDefense, EquipmentComponent.ElementalResistance); - HealthComponent.Damage(damageReceived); - SfxDatabase.Instance.Play(SoundEffect.TakeDamage); + _camera3D.AddShake(1.0f); + TakeDamageAnimationPlayer.Play("take_damage"); + var damageReceived = DamageCalculator.CalculateDamage(damage, TotalDefense, EquipmentComponent.ElementalResistance); + HealthComponent.Damage(damageReceived, damage.ElementType); + SfxDatabase.Instance.Play(SoundEffect.TakeDamage); - if (EquipmentComponent.EquippedArmor.Value.ArmorTag == ArmorTag.DegradeOnHit) - { - EquipmentComponent.EquippedArmor.Value.DecreaseArmorDefense(1); - EquipmentComponent.UpdateEquipment(EquipmentComponent.EquippedArmor.Value); - } + if (EquipmentComponent.EquippedArmor.Value.ArmorTag == ArmorTag.DegradeOnHit) + { + EquipmentComponent.EquippedArmor.Value.DecreaseArmorDefense(1); + EquipmentComponent.UpdateEquipment(EquipmentComponent.EquippedArmor.Value); + } } public void Knockback(float impulse) { - _knockbackStrength = impulse; - _knockbackDirection = GlobalBasis.Z.Normalized(); + _knockbackStrength = impulse; + _knockbackDirection = GlobalBasis.Z.Normalized(); } public void PlayJumpScareAnimation() => PlayerFXAnimations.Play("jump_scare"); @@ -298,355 +298,355 @@ public partial class Player : CharacterBody3D, IPlayer, IProvide public void LevelUp() { - ExperiencePointsComponent.LevelUp(); + ExperiencePointsComponent.LevelUp(); } public void Die() { - PlayerFXAnimations.Play("death"); + PlayerFXAnimations.Play("death"); - if (AutoRevive) - return; + if (AutoRevive) + return; - HealthTimer.WaitTime = _healthTimerWaitTime; - HealthTimer.Timeout -= OnHealthTimerTimeout; - SetProcessInput(false); - SetPhysicsProcess(false); + HealthTimer.WaitTime = _healthTimerWaitTime; + HealthTimer.Timeout -= OnHealthTimerTimeout; + SetProcessInput(false); + SetPhysicsProcess(false); } public override void _Input(InputEvent @event) { - if (GetTree().Paused) - return; + if (GetTree().Paused) + return; - if (@event.IsActionPressed(GameInputs.Attack)) - Attack(); - if (@event.IsActionPressed(GameInputs.Sprint)) - _debugSprint = true; - else if (@event.IsActionReleased(GameInputs.Sprint)) - _debugSprint = false; + if (@event.IsActionPressed(GameInputs.Attack)) + Attack(); + if (@event.IsActionPressed(GameInputs.Sprint)) + _debugSprint = true; + else if (@event.IsActionReleased(GameInputs.Sprint)) + _debugSprint = false; } public void OnPhysicsProcess(double delta) { - PlayerLogic.Input(new PlayerLogic.Input.PhysicsTick(delta)); + PlayerLogic.Input(new PlayerLogic.Input.PhysicsTick(delta)); } public void Equip(IEquipableItem equipable) { - if (equipable.ItemTag == ItemTag.MysteryItem) - { - var rerolledItem = _itemReroller.RerollItem(equipable, Inventory); - Equip(rerolledItem); - return; - } + if (equipable.ItemTag == ItemTag.MysteryItem) + { + var rerolledItem = _itemReroller.RerollItem(equipable, Inventory); + Equip(rerolledItem); + return; + } - if (equipable is Weapon && EquipmentComponent.EquippedWeapon.Value != null && !EquipmentComponent.EquippedWeapon.Value.Glued) - Unequip(EquipmentComponent.EquippedWeapon.Value); - if (equipable is Armor && EquipmentComponent.EquippedArmor.Value != null && !EquipmentComponent.EquippedArmor.Value.Glued) - Unequip(EquipmentComponent.EquippedArmor.Value); - if (equipable is Accessory && EquipmentComponent.EquippedAccessory.Value != null && !EquipmentComponent.EquippedAccessory.Value.Glued) - Unequip(EquipmentComponent.EquippedAccessory.Value); - if (equipable is Ammo && EquipmentComponent.EquippedAmmo.Value != null && !EquipmentComponent.EquippedAmmo.Value.Glued) - Unequip(EquipmentComponent.EquippedAmmo.Value); + if (equipable is Weapon && EquipmentComponent.EquippedWeapon.Value != null && !EquipmentComponent.EquippedWeapon.Value.Glued) + Unequip(EquipmentComponent.EquippedWeapon.Value); + if (equipable is Armor && EquipmentComponent.EquippedArmor.Value != null && !EquipmentComponent.EquippedArmor.Value.Glued) + Unequip(EquipmentComponent.EquippedArmor.Value); + if (equipable is Accessory && EquipmentComponent.EquippedAccessory.Value != null && !EquipmentComponent.EquippedAccessory.Value.Glued) + Unequip(EquipmentComponent.EquippedAccessory.Value); + if (equipable is Ammo && EquipmentComponent.EquippedAmmo.Value != null && !EquipmentComponent.EquippedAmmo.Value.Glued) + Unequip(EquipmentComponent.EquippedAmmo.Value); - if (equipable.ItemTag == ItemTag.GlueOnEquip) - equipable.Glued = true; + if (equipable.ItemTag == ItemTag.GlueOnEquip) + equipable.Glued = true; - HealthComponent.RaiseMaximumHP(equipable.BonusHP, false); - VTComponent.RaiseMaximumVT(equipable.BonusVT, false); - LuckComponent.IncreaseLuck(equipable.BonusLuck); + HealthComponent.RaiseMaximumHP(equipable.BonusHP, false); + VTComponent.RaiseMaximumVT(equipable.BonusVT, false); + LuckComponent.IncreaseLuck(equipable.BonusLuck); - if (equipable is IAugmentableItem augmentable) - if (augmentable.Augment != null) - augmentable.Augment.AugmentType.Apply(); + if (equipable is IAugmentableItem augmentable) + if (augmentable.Augment != null) + augmentable.Augment.AugmentType.Apply(); - EquipmentComponent.Equip(equipable); + EquipmentComponent.Equip(equipable); - if (equipable is Weapon weapon) - { - if (weapon.WeaponTag == WeaponTag.KineticProjectile) - PersuaderCrosshair.Show(); - if (weapon.WeaponTag == WeaponTag.InverseHPAttackPower) - InverseHPToAttackPowerSync(HealthComponent.CurrentHP.Value); - } + if (equipable is Weapon weapon) + { + if (weapon.WeaponTag == WeaponTag.KineticProjectile) + PersuaderCrosshair.Show(); + if (weapon.WeaponTag == WeaponTag.InverseHPAttackPower) + InverseHPToAttackPowerSync(HealthComponent.CurrentHP.Value); + } - if (equipable is Accessory accessory) - { - if (accessory.AccessoryTag == AccessoryTag.BoostEXPGainRate) - ExperiencePointsComponent.ModifyExpGainRate(ExperiencePointsComponent.ExpGainRate.Value + 0.2f); - } - _game.NotifyInventory($"{equipable.ItemName} equipped."); + if (equipable is Accessory accessory) + { + if (accessory.AccessoryTag == AccessoryTag.BoostEXPGainRate) + ExperiencePointsComponent.ModifyExpGainRate(ExperiencePointsComponent.ExpGainRate.Value + 0.2f); + } + _game.NotifyInventory($"{equipable.ItemName} equipped."); } public void Unequip(IEquipableItem equipable) { - HealthComponent.SetMaximumHealth(HealthComponent.MaximumHP.Value - equipable.BonusHP); - VTComponent.SetMaximumVT(VTComponent.MaximumVT.Value - equipable.BonusVT); - LuckComponent.DecreaseLuck(equipable.BonusLuck); + HealthComponent.SetMaximumHealth(HealthComponent.MaximumHP.Value - equipable.BonusHP); + VTComponent.SetMaximumVT(VTComponent.MaximumVT.Value - equipable.BonusVT); + LuckComponent.DecreaseLuck(equipable.BonusLuck); - if (equipable is IAugmentableItem augmentItem && augmentItem.Augment != null) - augmentItem.Augment.AugmentType.Remove(); + if (equipable is IAugmentableItem augmentItem && augmentItem.Augment != null) + augmentItem.Augment.AugmentType.Remove(); - EquipmentComponent.Unequip(equipable); + EquipmentComponent.Unequip(equipable); - if (equipable is Weapon weapon) - { - if (weapon.WeaponTag == WeaponTag.KineticProjectile) - PersuaderCrosshair.Hide(); - } - if (equipable is Accessory accessory) - { - if (accessory.AccessoryTag == AccessoryTag.BoostEXPGainRate) - ExperiencePointsComponent.ModifyExpGainRate(ExperiencePointsComponent.ExpGainRate.Value - 0.2f); - } - _game.NotifyInventory($"{equipable.ItemName} unequipped."); + if (equipable is Weapon weapon) + { + if (weapon.WeaponTag == WeaponTag.KineticProjectile) + PersuaderCrosshair.Hide(); + } + if (equipable is Accessory accessory) + { + if (accessory.AccessoryTag == AccessoryTag.BoostEXPGainRate) + ExperiencePointsComponent.ModifyExpGainRate(ExperiencePointsComponent.ExpGainRate.Value - 0.2f); + } + _game.NotifyInventory($"{equipable.ItemName} unequipped."); } public void ApplyNewAugment(IAugmentItem jewel, IAugmentableItem augmentableItem) { - Inventory.Remove(jewel); + Inventory.Remove(jewel); - ApplyNewAugment((dynamic)augmentableItem, jewel as Jewel); + ApplyNewAugment((dynamic)augmentableItem, jewel as Jewel); - if (augmentableItem.Augment != null && augmentableItem is IEquipableItem equipable && EquipmentComponent.IsItemEquipped(equipable)) - augmentableItem.Augment.AugmentType.Apply(); + if (augmentableItem.Augment != null && augmentableItem is IEquipableItem equipable && EquipmentComponent.IsItemEquipped(equipable)) + augmentableItem.Augment.AugmentType.Apply(); - _game.NotifyInventory($"{((IBaseInventoryItem)augmentableItem).ItemName} augmented with {jewel.ItemName}."); + _game.NotifyInventory($"{((IBaseInventoryItem)augmentableItem).ItemName} augmented with {jewel.ItemName}."); } private void ApplyNewAugment(Weapon weapon, Jewel jewel) { - switch (jewel.Stats.JewelTag) - { - case JewelTags.AeolicElement: - weapon.Stats.WeaponElement = ElementType.Aeolic; - weapon.Augment = new Augment(JewelTags.AeolicElement, new BasicAugment(), jewel.ItemName, jewel.StatDescription, jewel.GetTexture()); - break; - case JewelTags.HydricElement: - weapon.Stats.WeaponElement = ElementType.Hydric; - weapon.Augment = new Augment(JewelTags.HydricElement, new BasicAugment(), jewel.ItemName, jewel.StatDescription, jewel.GetTexture()); - break; - case JewelTags.SlowVTReduction: - weapon.Augment = new Augment(JewelTags.SlowVTReduction, new SlowVTReductionAugment(this), jewel.ItemName, jewel.StatDescription, jewel.GetTexture()); - break; - case JewelTags.HastenVT: - weapon.Augment = new Augment(JewelTags.HastenVT, new HastenVTAugment(this), jewel.ItemName, jewel.StatDescription, jewel.GetTexture()); - break; - case JewelTags.ReviveUserOnce: - weapon.Augment = new Augment(JewelTags.ReviveUserOnce, new RevivePlayerAugment(this), jewel.ItemName, jewel.StatDescription, jewel.GetTexture()); - break; - case JewelTags.IncreaseHPRecovery: - weapon.Augment = new Augment(JewelTags.IncreaseHPRecovery, new HPRecoverySpeedAugment(this), jewel.ItemName, jewel.StatDescription, jewel.GetTexture()); - break; - case JewelTags.LowerEXPGain: - weapon.Augment = new Augment(JewelTags.LowerEXPGain, new LowerEXPRateAugment(this), jewel.ItemName, jewel.StatDescription, jewel.GetTexture()); - break; - case JewelTags.ItemRescue: - if (!_game.RescuedItems.TryAdd(weapon)) - break; - if (EquipmentComponent.IsItemEquipped(weapon)) - Unequip(weapon); - Inventory.Remove(weapon); - SfxDatabase.Instance.Play(SoundEffect.Transfer); - break; - case JewelTags.Glue: - if (!EquipmentComponent.IsItemEquipped(weapon)) - break; - weapon.Glued = true; - weapon.Augment = new Augment(JewelTags.Glue, new BasicAugment(), jewel.ItemName, jewel.StatDescription, jewel.GetTexture()); - break; - case JewelTags.TelluricElement: - weapon.Stats.WeaponElement = ElementType.Telluric; - weapon.Augment = new Augment(JewelTags.TelluricElement, new BasicAugment(), jewel.ItemName, jewel.StatDescription, jewel.GetTexture()); - break; - case JewelTags.AutoIdentifyAllItems: - weapon.Augment = new Augment(JewelTags.AutoIdentifyAllItems, new IdentifyAllItemsAugment(this), jewel.ItemName, jewel.StatDescription, jewel.GetTexture()); - break; - case JewelTags.IncreaseAtkDefLuck: - weapon.IncreaseAttack(jewel.Stats.BonusAttack); - weapon.IncreaseDefense(jewel.Stats.BonusDefense); - weapon.IncreaseLuck(jewel.Stats.BonusLuck); - weapon.Augment = new Augment(JewelTags.IncreaseAtkDefLuck, new BasicAugment(), jewel.ItemName, jewel.StatDescription, jewel.GetTexture()); - break; - case JewelTags.IncreaseLuck: - weapon.IncreaseLuck(25); - weapon.Augment = new Augment(JewelTags.IncreaseLuck, new BasicAugment(), jewel.ItemName, jewel.StatDescription, jewel.GetTexture()); - break; - } - EquipmentComponent.UpdateEquipment(weapon); + switch (jewel.Stats.JewelTag) + { + case JewelTags.AeolicElement: + weapon.Stats.WeaponElement = ElementType.Aeolic; + weapon.Augment = new Augment(JewelTags.AeolicElement, new BasicAugment(), jewel.ItemName, jewel.StatDescription, jewel.GetTexture()); + break; + case JewelTags.HydricElement: + weapon.Stats.WeaponElement = ElementType.Hydric; + weapon.Augment = new Augment(JewelTags.HydricElement, new BasicAugment(), jewel.ItemName, jewel.StatDescription, jewel.GetTexture()); + break; + case JewelTags.SlowVTReduction: + weapon.Augment = new Augment(JewelTags.SlowVTReduction, new SlowVTReductionAugment(this), jewel.ItemName, jewel.StatDescription, jewel.GetTexture()); + break; + case JewelTags.HastenVT: + weapon.Augment = new Augment(JewelTags.HastenVT, new HastenVTAugment(this), jewel.ItemName, jewel.StatDescription, jewel.GetTexture()); + break; + case JewelTags.ReviveUserOnce: + weapon.Augment = new Augment(JewelTags.ReviveUserOnce, new RevivePlayerAugment(this), jewel.ItemName, jewel.StatDescription, jewel.GetTexture()); + break; + case JewelTags.IncreaseHPRecovery: + weapon.Augment = new Augment(JewelTags.IncreaseHPRecovery, new HPRecoverySpeedAugment(this), jewel.ItemName, jewel.StatDescription, jewel.GetTexture()); + break; + case JewelTags.LowerEXPGain: + weapon.Augment = new Augment(JewelTags.LowerEXPGain, new LowerEXPRateAugment(this), jewel.ItemName, jewel.StatDescription, jewel.GetTexture()); + break; + case JewelTags.ItemRescue: + if (!_game.RescuedItems.TryAdd(weapon)) + break; + if (EquipmentComponent.IsItemEquipped(weapon)) + Unequip(weapon); + Inventory.Remove(weapon); + SfxDatabase.Instance.Play(SoundEffect.Transfer); + break; + case JewelTags.Glue: + if (!EquipmentComponent.IsItemEquipped(weapon)) + break; + weapon.Glued = true; + weapon.Augment = new Augment(JewelTags.Glue, new BasicAugment(), jewel.ItemName, jewel.StatDescription, jewel.GetTexture()); + break; + case JewelTags.TelluricElement: + weapon.Stats.WeaponElement = ElementType.Telluric; + weapon.Augment = new Augment(JewelTags.TelluricElement, new BasicAugment(), jewel.ItemName, jewel.StatDescription, jewel.GetTexture()); + break; + case JewelTags.AutoIdentifyAllItems: + weapon.Augment = new Augment(JewelTags.AutoIdentifyAllItems, new IdentifyAllItemsAugment(this), jewel.ItemName, jewel.StatDescription, jewel.GetTexture()); + break; + case JewelTags.IncreaseAtkDefLuck: + weapon.IncreaseAttack(jewel.Stats.BonusAttack); + weapon.IncreaseDefense(jewel.Stats.BonusDefense); + weapon.IncreaseLuck(jewel.Stats.BonusLuck); + weapon.Augment = new Augment(JewelTags.IncreaseAtkDefLuck, new BasicAugment(), jewel.ItemName, jewel.StatDescription, jewel.GetTexture()); + break; + case JewelTags.IncreaseLuck: + weapon.IncreaseLuck(25); + weapon.Augment = new Augment(JewelTags.IncreaseLuck, new BasicAugment(), jewel.ItemName, jewel.StatDescription, jewel.GetTexture()); + break; + } + EquipmentComponent.UpdateEquipment(weapon); } private void ApplyNewAugment(Armor armor, Jewel jewel) { - switch (jewel.Stats.JewelTag) - { - case JewelTags.AeolicElement: - armor.Stats.AeolicResistance += jewel.Stats.AeolicResistance; - armor.Augment = new Augment(JewelTags.AeolicElement, new BasicAugment(), jewel.ItemName, jewel.StatDescription, jewel.GetTexture()); - break; - case JewelTags.HydricElement: - armor.Stats.HydricResistance += jewel.Stats.HydricResistance; - armor.Augment = new Augment(JewelTags.HydricElement, new BasicAugment(), jewel.ItemName, jewel.StatDescription, jewel.GetTexture()); - break; - case JewelTags.SlowVTReduction: - armor.Augment = new Augment(JewelTags.SlowVTReduction, new SlowVTReductionAugment(this), jewel.ItemName, jewel.StatDescription, jewel.GetTexture()); - break; - case JewelTags.HastenVT: - armor.Augment = new Augment(JewelTags.HastenVT, new HastenVTAugment(this), jewel.ItemName, jewel.StatDescription, jewel.GetTexture()); - break; - case JewelTags.ReviveUserOnce: - armor.Augment = new Augment(JewelTags.ReviveUserOnce, new RevivePlayerAugment(this), jewel.ItemName, jewel.StatDescription, jewel.GetTexture()); - break; - case JewelTags.IncreaseHPRecovery: - armor.Augment = new Augment(JewelTags.IncreaseHPRecovery, new HPRecoverySpeedAugment(this), jewel.ItemName, jewel.StatDescription, jewel.GetTexture()); - break; - case JewelTags.LowerEXPGain: - armor.Augment = new Augment(JewelTags.LowerEXPGain, new LowerEXPRateAugment(this), jewel.ItemName, jewel.StatDescription, jewel.GetTexture()); - break; - case JewelTags.ItemRescue: - if (!_game.RescuedItems.TryAdd(armor)) - break; - if (EquipmentComponent.IsItemEquipped(armor)) - Unequip(armor); - Inventory.Remove(armor); - SfxDatabase.Instance.Play(SoundEffect.Transfer); - break; - case JewelTags.Glue: - if (!EquipmentComponent.IsItemEquipped(armor)) - break; - armor.Glued = true; - armor.Augment = new Augment(JewelTags.Glue, new BasicAugment(), jewel.ItemName, jewel.StatDescription, jewel.GetTexture()); - break; - case JewelTags.TelluricElement: - armor.Stats.TelluricResistance += jewel.Stats.TelluricResistance; - armor.Augment = new Augment(JewelTags.TelluricElement, new BasicAugment(), jewel.ItemName, jewel.StatDescription, jewel.GetTexture()); - break; - case JewelTags.AutoIdentifyAllItems: - armor.Augment = new Augment(JewelTags.AutoIdentifyAllItems, new IdentifyAllItemsAugment(this), jewel.ItemName, jewel.StatDescription, jewel.GetTexture()); - break; - case JewelTags.IncreaseAtkDefLuck: - armor.IncreaseAttack(jewel.Stats.BonusAttack); - armor.IncreaseDefense(jewel.Stats.BonusDefense); - armor.IncreaseLuck(jewel.Stats.BonusLuck); - armor.Augment = new Augment(JewelTags.IncreaseAtkDefLuck, new BasicAugment(), jewel.ItemName, jewel.StatDescription, jewel.GetTexture()); - break; - case JewelTags.IncreaseLuck: - armor.IncreaseLuck(jewel.Stats.BonusLuck); - armor.Augment = new Augment(JewelTags.IncreaseLuck, new BasicAugment(), jewel.ItemName, jewel.StatDescription, jewel.GetTexture()); - break; - } - EquipmentComponent.UpdateEquipment(armor); + switch (jewel.Stats.JewelTag) + { + case JewelTags.AeolicElement: + armor.Stats.AeolicResistance += jewel.Stats.AeolicResistance; + armor.Augment = new Augment(JewelTags.AeolicElement, new BasicAugment(), jewel.ItemName, jewel.StatDescription, jewel.GetTexture()); + break; + case JewelTags.HydricElement: + armor.Stats.HydricResistance += jewel.Stats.HydricResistance; + armor.Augment = new Augment(JewelTags.HydricElement, new BasicAugment(), jewel.ItemName, jewel.StatDescription, jewel.GetTexture()); + break; + case JewelTags.SlowVTReduction: + armor.Augment = new Augment(JewelTags.SlowVTReduction, new SlowVTReductionAugment(this), jewel.ItemName, jewel.StatDescription, jewel.GetTexture()); + break; + case JewelTags.HastenVT: + armor.Augment = new Augment(JewelTags.HastenVT, new HastenVTAugment(this), jewel.ItemName, jewel.StatDescription, jewel.GetTexture()); + break; + case JewelTags.ReviveUserOnce: + armor.Augment = new Augment(JewelTags.ReviveUserOnce, new RevivePlayerAugment(this), jewel.ItemName, jewel.StatDescription, jewel.GetTexture()); + break; + case JewelTags.IncreaseHPRecovery: + armor.Augment = new Augment(JewelTags.IncreaseHPRecovery, new HPRecoverySpeedAugment(this), jewel.ItemName, jewel.StatDescription, jewel.GetTexture()); + break; + case JewelTags.LowerEXPGain: + armor.Augment = new Augment(JewelTags.LowerEXPGain, new LowerEXPRateAugment(this), jewel.ItemName, jewel.StatDescription, jewel.GetTexture()); + break; + case JewelTags.ItemRescue: + if (!_game.RescuedItems.TryAdd(armor)) + break; + if (EquipmentComponent.IsItemEquipped(armor)) + Unequip(armor); + Inventory.Remove(armor); + SfxDatabase.Instance.Play(SoundEffect.Transfer); + break; + case JewelTags.Glue: + if (!EquipmentComponent.IsItemEquipped(armor)) + break; + armor.Glued = true; + armor.Augment = new Augment(JewelTags.Glue, new BasicAugment(), jewel.ItemName, jewel.StatDescription, jewel.GetTexture()); + break; + case JewelTags.TelluricElement: + armor.Stats.TelluricResistance += jewel.Stats.TelluricResistance; + armor.Augment = new Augment(JewelTags.TelluricElement, new BasicAugment(), jewel.ItemName, jewel.StatDescription, jewel.GetTexture()); + break; + case JewelTags.AutoIdentifyAllItems: + armor.Augment = new Augment(JewelTags.AutoIdentifyAllItems, new IdentifyAllItemsAugment(this), jewel.ItemName, jewel.StatDescription, jewel.GetTexture()); + break; + case JewelTags.IncreaseAtkDefLuck: + armor.IncreaseAttack(jewel.Stats.BonusAttack); + armor.IncreaseDefense(jewel.Stats.BonusDefense); + armor.IncreaseLuck(jewel.Stats.BonusLuck); + armor.Augment = new Augment(JewelTags.IncreaseAtkDefLuck, new BasicAugment(), jewel.ItemName, jewel.StatDescription, jewel.GetTexture()); + break; + case JewelTags.IncreaseLuck: + armor.IncreaseLuck(jewel.Stats.BonusLuck); + armor.Augment = new Augment(JewelTags.IncreaseLuck, new BasicAugment(), jewel.ItemName, jewel.StatDescription, jewel.GetTexture()); + break; + } + EquipmentComponent.UpdateEquipment(armor); } private void ApplyNewAugment(Accessory accessory, Jewel jewel) { - switch (jewel.Stats.JewelTag) - { - case JewelTags.AeolicElement: - accessory.Stats.AeolicResistance += jewel.Stats.AeolicResistance; - accessory.Augment = new Augment(JewelTags.AeolicElement, new BasicAugment(), jewel.ItemName, jewel.StatDescription, jewel.GetTexture()); - break; - case JewelTags.HydricElement: - accessory.Stats.HydricResistance += jewel.Stats.HydricResistance; - accessory.Augment = new Augment(JewelTags.HydricElement, new BasicAugment(), jewel.ItemName, jewel.StatDescription, jewel.GetTexture()); - break; - case JewelTags.SlowVTReduction: - accessory.Augment = new Augment(JewelTags.SlowVTReduction, new SlowVTReductionAugment(this), jewel.ItemName, jewel.StatDescription, jewel.GetTexture()); - break; - case JewelTags.HastenVT: - accessory.Augment = new Augment(JewelTags.HastenVT, new HastenVTAugment(this), jewel.ItemName, jewel.StatDescription, jewel.GetTexture()); - break; - case JewelTags.ReviveUserOnce: - accessory.Augment = new Augment(JewelTags.ReviveUserOnce, new RevivePlayerAugment(this), jewel.ItemName, jewel.StatDescription, jewel.GetTexture()); - break; - case JewelTags.IncreaseHPRecovery: - accessory.Augment = new Augment(JewelTags.IncreaseHPRecovery, new HPRecoverySpeedAugment(this), jewel.ItemName, jewel.StatDescription, jewel.GetTexture()); - break; - case JewelTags.LowerEXPGain: - accessory.Augment = new Augment(JewelTags.LowerEXPGain, new LowerEXPRateAugment(this), jewel.ItemName, jewel.StatDescription, jewel.GetTexture()); - break; - case JewelTags.ItemRescue: - if (!_game.RescuedItems.TryAdd(accessory)) - break; - if (EquipmentComponent.IsItemEquipped(accessory)) - Unequip(accessory); - Inventory.Remove(accessory); - SfxDatabase.Instance.Play(SoundEffect.Transfer); - break; - case JewelTags.Glue: - if (!EquipmentComponent.IsItemEquipped(accessory)) - break; - accessory.Glued = true; - accessory.Augment = new Augment(JewelTags.Glue, new BasicAugment(), jewel.ItemName, jewel.StatDescription, jewel.GetTexture()); - break; - case JewelTags.TelluricElement: - accessory.Stats.TelluricResistance += jewel.Stats.TelluricResistance; - accessory.Augment = new Augment(JewelTags.TelluricElement, new BasicAugment(), jewel.ItemName, jewel.StatDescription, jewel.GetTexture()); - break; - case JewelTags.AutoIdentifyAllItems: - accessory.Augment = new Augment(JewelTags.AutoIdentifyAllItems, new IdentifyAllItemsAugment(this), jewel.ItemName, jewel.StatDescription, jewel.GetTexture()); - break; - case JewelTags.IncreaseAtkDefLuck: - accessory.IncreaseAttack(jewel.Stats.BonusAttack); - accessory.IncreaseDefense(jewel.Stats.BonusDefense); - accessory.IncreaseLuck(jewel.Stats.BonusLuck); - accessory.Augment = new Augment(JewelTags.IncreaseAtkDefLuck, new BasicAugment(), jewel.ItemName, jewel.StatDescription, jewel.GetTexture()); - break; - case JewelTags.IncreaseLuck: - accessory.IncreaseLuck(jewel.Stats.BonusLuck); - accessory.Augment = new Augment(JewelTags.IncreaseLuck, new BasicAugment(), jewel.ItemName, jewel.StatDescription, jewel.GetTexture()); - break; - } - EquipmentComponent.UpdateEquipment(accessory); + switch (jewel.Stats.JewelTag) + { + case JewelTags.AeolicElement: + accessory.Stats.AeolicResistance += jewel.Stats.AeolicResistance; + accessory.Augment = new Augment(JewelTags.AeolicElement, new BasicAugment(), jewel.ItemName, jewel.StatDescription, jewel.GetTexture()); + break; + case JewelTags.HydricElement: + accessory.Stats.HydricResistance += jewel.Stats.HydricResistance; + accessory.Augment = new Augment(JewelTags.HydricElement, new BasicAugment(), jewel.ItemName, jewel.StatDescription, jewel.GetTexture()); + break; + case JewelTags.SlowVTReduction: + accessory.Augment = new Augment(JewelTags.SlowVTReduction, new SlowVTReductionAugment(this), jewel.ItemName, jewel.StatDescription, jewel.GetTexture()); + break; + case JewelTags.HastenVT: + accessory.Augment = new Augment(JewelTags.HastenVT, new HastenVTAugment(this), jewel.ItemName, jewel.StatDescription, jewel.GetTexture()); + break; + case JewelTags.ReviveUserOnce: + accessory.Augment = new Augment(JewelTags.ReviveUserOnce, new RevivePlayerAugment(this), jewel.ItemName, jewel.StatDescription, jewel.GetTexture()); + break; + case JewelTags.IncreaseHPRecovery: + accessory.Augment = new Augment(JewelTags.IncreaseHPRecovery, new HPRecoverySpeedAugment(this), jewel.ItemName, jewel.StatDescription, jewel.GetTexture()); + break; + case JewelTags.LowerEXPGain: + accessory.Augment = new Augment(JewelTags.LowerEXPGain, new LowerEXPRateAugment(this), jewel.ItemName, jewel.StatDescription, jewel.GetTexture()); + break; + case JewelTags.ItemRescue: + if (!_game.RescuedItems.TryAdd(accessory)) + break; + if (EquipmentComponent.IsItemEquipped(accessory)) + Unequip(accessory); + Inventory.Remove(accessory); + SfxDatabase.Instance.Play(SoundEffect.Transfer); + break; + case JewelTags.Glue: + if (!EquipmentComponent.IsItemEquipped(accessory)) + break; + accessory.Glued = true; + accessory.Augment = new Augment(JewelTags.Glue, new BasicAugment(), jewel.ItemName, jewel.StatDescription, jewel.GetTexture()); + break; + case JewelTags.TelluricElement: + accessory.Stats.TelluricResistance += jewel.Stats.TelluricResistance; + accessory.Augment = new Augment(JewelTags.TelluricElement, new BasicAugment(), jewel.ItemName, jewel.StatDescription, jewel.GetTexture()); + break; + case JewelTags.AutoIdentifyAllItems: + accessory.Augment = new Augment(JewelTags.AutoIdentifyAllItems, new IdentifyAllItemsAugment(this), jewel.ItemName, jewel.StatDescription, jewel.GetTexture()); + break; + case JewelTags.IncreaseAtkDefLuck: + accessory.IncreaseAttack(jewel.Stats.BonusAttack); + accessory.IncreaseDefense(jewel.Stats.BonusDefense); + accessory.IncreaseLuck(jewel.Stats.BonusLuck); + accessory.Augment = new Augment(JewelTags.IncreaseAtkDefLuck, new BasicAugment(), jewel.ItemName, jewel.StatDescription, jewel.GetTexture()); + break; + case JewelTags.IncreaseLuck: + accessory.IncreaseLuck(jewel.Stats.BonusLuck); + accessory.Augment = new Augment(JewelTags.IncreaseLuck, new BasicAugment(), jewel.ItemName, jewel.StatDescription, jewel.GetTexture()); + break; + } + EquipmentComponent.UpdateEquipment(accessory); } private void ProjectileCooldown() => _fired = false; private static Vector3 GlobalInputVector { - get - { - var rawInput = Godot.Input.GetVector(GameInputs.MoveLeft, GameInputs.MoveRight, GameInputs.MoveUp, GameInputs.MoveDown); - var input = new Vector3 - { - X = rawInput.X, - Z = rawInput.Y - }; - return input with { Y = 0f }; - } + get + { + var rawInput = Godot.Input.GetVector(GameInputs.MoveLeft, GameInputs.MoveRight, GameInputs.MoveUp, GameInputs.MoveDown); + var input = new Vector3 + { + X = rawInput.X, + Z = rawInput.Y + }; + return input with { Y = 0f }; + } } public void PlaySpellFX(SpellFXEnum spellEnum) { - SpellFXAnimations.Stop(); - SpellFXAnimations.Play(spellEnum.ToString()); + SpellFXAnimations.Stop(); + SpellFXAnimations.Play(spellEnum.ToString()); } private void OnLevelUp() { - BoostPlayerHPFromLevelUp(); + BoostPlayerHPFromLevelUp(); } private void OnLevelDown() { - LowerPlayerHPFromLevelDown(); + LowerPlayerHPFromLevelDown(); } private void BoostPlayerHPFromLevelUp() { - var rng = new RandomNumberGenerator(); - rng.Randomize(); - var hpIncrease = rng.RandiRange(3, 6); - HealthComponent.RaiseMaximumHP(hpIncrease); + var rng = new RandomNumberGenerator(); + rng.Randomize(); + var hpIncrease = rng.RandiRange(3, 6); + HealthComponent.RaiseMaximumHP(hpIncrease); } private void LowerPlayerHPFromLevelDown() { - var rng = new RandomNumberGenerator(); - rng.Randomize(); - var hpIncrease = rng.RandiRange(3, 6); - HealthComponent.LowerMaximumHP(hpIncrease); + var rng = new RandomNumberGenerator(); + rng.Randomize(); + var hpIncrease = rng.RandiRange(3, 6); + HealthComponent.LowerMaximumHP(hpIncrease); } private static float LeftStrafeInputVector => Godot.Input.GetActionStrength(GameInputs.StrafeLeft); @@ -655,299 +655,299 @@ public partial class Player : CharacterBody3D, IPlayer, IProvide private async void Attack() { - var weapon = EquipmentComponent.EquippedWeapon.Value as Weapon; - if (weapon.WeaponTag == WeaponTag.ElementalProjectile || weapon.WeaponTag == WeaponTag.KineticProjectile) - { - HandleProjectile(weapon); - return; - } - if (WeaponAnimations.IsPlaying()) - return; + var weapon = EquipmentComponent.EquippedWeapon.Value as Weapon; + if (weapon.WeaponTag == WeaponTag.ElementalProjectile || weapon.WeaponTag == WeaponTag.KineticProjectile) + { + HandleProjectile(weapon); + return; + } + if (WeaponAnimations.IsPlaying()) + return; - PlayAttackAnimation(); + PlayAttackAnimation(); - if (weapon.WeaponTag == WeaponTag.DegradeOnSwing) - _playerEffectService.Degrade(); - else if (weapon.WeaponTag == WeaponTag.SelfDamage) - _playerEffectService.TakeSelfDamage(5); + if (weapon.WeaponTag == WeaponTag.DegradeOnSwing) + _playerEffectService.Degrade(); + else if (weapon.WeaponTag == WeaponTag.SelfDamage) + _playerEffectService.TakeSelfDamage(5); } private void HandleProjectile(Weapon weapon) { - if (_fired) - return; + if (_fired) + return; - var ammo = EquipmentComponent.EquippedAmmo.Value as Ammo; - if (ammo.Count == null || ammo.Count?.Value <= 0) - return; + var ammo = EquipmentComponent.EquippedAmmo.Value as Ammo; + if (ammo.Count == null || ammo.Count?.Value <= 0) + return; - if (weapon.WeaponTag == WeaponTag.ElementalProjectile) - { - if (ammo.AmmoElement == ElementType.Aeolic) - _airReactorProjectileSystem.Fire(); - if (ammo.AmmoElement == ElementType.Igneous) - _fireReactorProjectileSystem.Fire(); - if (ammo.AmmoElement == ElementType.Hydric) - _waterReactorProjectileSystem.Fire(); - } + if (weapon.WeaponTag == WeaponTag.ElementalProjectile) + { + if (ammo.AmmoElement == ElementType.Aeolic) + _airReactorProjectileSystem.Fire(); + if (ammo.AmmoElement == ElementType.Igneous) + _fireReactorProjectileSystem.Fire(); + if (ammo.AmmoElement == ElementType.Hydric) + _waterReactorProjectileSystem.Fire(); + } - if (weapon.WeaponTag == WeaponTag.KineticProjectile) - { - PlayAttackAnimation(); - _kineticProjectileSystem.Fire(); - } + if (weapon.WeaponTag == WeaponTag.KineticProjectile) + { + PlayAttackAnimation(); + _kineticProjectileSystem.Fire(); + } - ammo.SetCount(ammo.Count.Value - 1); - EquipmentComponent.UpdateEquipment(ammo); - if (ammo.Count.Value <= 0) - { - EquipmentComponent.Unequip(ammo); - Inventory.Remove(ammo); - } + ammo.SetCount(ammo.Count.Value - 1); + EquipmentComponent.UpdateEquipment(ammo); + if (ammo.Count.Value <= 0) + { + EquipmentComponent.Unequip(ammo); + Inventory.Remove(ammo); + } - _fired = true; - _projectileCooldownTimer.Start(); + _fired = true; + _projectileCooldownTimer.Start(); } private void ThrowItem() { - var itemScene = GD.Load("res://src/items/throwable/ThrowableItem.tscn"); - var throwItem = itemScene.Instantiate(); - GetTree().Root.AddChildEx(throwItem); - throwItem.GlobalPosition = CurrentPosition; - throwItem.GlobalRotation = GlobalRotation; + var itemScene = GD.Load("res://src/items/throwable/ThrowableItem.tscn"); + var throwItem = itemScene.Instantiate(); + GetTree().Root.AddChildEx(throwItem); + throwItem.GlobalPosition = CurrentPosition; + throwItem.GlobalRotation = GlobalRotation; } private void PlayAttackAnimation() { - var weapon = (Weapon)EquipmentComponent.EquippedWeapon.Value; - SfxDatabase.Instance.Play(weapon.SoundEffect); - WeaponAnimations.SetSpeedScale((float)weapon.AttackSpeed); - var potentialAnimName = weapon.Stats.Name; - if (WeaponAnimations.HasAnimation(potentialAnimName)) - WeaponAnimations.Play(potentialAnimName); - else if (weapon.WeaponElement == ElementType.Aeolic) - WeaponAnimations.Play("Air Slash"); - else if (weapon.WeaponElement == ElementType.Hydric) - WeaponAnimations.Play("Water Slash"); - else if (weapon.WeaponElement == ElementType.Igneous) - WeaponAnimations.Play("Fire Slash"); - else if (weapon.WeaponElement == ElementType.Telluric) - WeaponAnimations.Play("Earth Slash"); - else if (string.IsNullOrWhiteSpace(potentialAnimName)) - WeaponAnimations.Play("Unarmed"); - else - WeaponAnimations.Play("Normal Slash"); + var weapon = (Weapon)EquipmentComponent.EquippedWeapon.Value; + SfxDatabase.Instance.Play(weapon.SoundEffect); + WeaponAnimations.SetSpeedScale((float)weapon.AttackSpeed); + var potentialAnimName = weapon.Stats.Name; + if (WeaponAnimations.HasAnimation(potentialAnimName)) + WeaponAnimations.Play(potentialAnimName); + else if (weapon.WeaponElement == ElementType.Aeolic) + WeaponAnimations.Play("Air Slash"); + else if (weapon.WeaponElement == ElementType.Hydric) + WeaponAnimations.Play("Water Slash"); + else if (weapon.WeaponElement == ElementType.Igneous) + WeaponAnimations.Play("Fire Slash"); + else if (weapon.WeaponElement == ElementType.Telluric) + WeaponAnimations.Play("Earth Slash"); + else if (string.IsNullOrWhiteSpace(potentialAnimName)) + WeaponAnimations.Play("Unarmed"); + else + WeaponAnimations.Play("Normal Slash"); } private void PlayerFXAnimations_AnimationFinished(StringName animName) { - if (animName == "death") - { - if (AutoRevive) - PlayerFXAnimations.PlayBackwards("revive"); - else - PlayerDied?.Invoke(); - } - if (animName == "revive") - { - Revive(); - } + if (animName == "death") + { + if (AutoRevive) + PlayerFXAnimations.PlayBackwards("revive"); + else + PlayerDied?.Invoke(); + } + if (animName == "revive") + { + Revive(); + } } private void Revive() { - HealthComponent.SetCurrentHealth(HealthComponent.MaximumHP.Value); - VTComponent.SetVT(VTComponent.MaximumVT.Value); - if (EquipmentComponent.EquippedAccessory.Value.Augment?.AugmentTag == JewelTags.ReviveUserOnce) - { - var itemToBreak = EquipmentComponent.EquippedAccessory.Value; - Unequip(EquipmentComponent.EquippedAccessory.Value); - Inventory.Remove(itemToBreak); - } - else if (EquipmentComponent.EquippedArmor.Value.Augment?.AugmentTag == JewelTags.ReviveUserOnce) - { - var itemToBreak = EquipmentComponent.EquippedArmor.Value; - Unequip(EquipmentComponent.EquippedArmor.Value); - Inventory.Remove(itemToBreak); - } - else if (EquipmentComponent.EquippedWeapon.Value.Augment?.AugmentTag == JewelTags.ReviveUserOnce) - { - var itemToBreak = EquipmentComponent.EquippedWeapon.Value; - Unequip(EquipmentComponent.EquippedWeapon.Value); - Inventory.Remove(itemToBreak); - } - else - PlayJumpScareAnimation(); + HealthComponent.SetCurrentHealth(HealthComponent.MaximumHP.Value); + VTComponent.SetVT(VTComponent.MaximumVT.Value); + if (EquipmentComponent.EquippedAccessory.Value.Augment?.AugmentTag == JewelTags.ReviveUserOnce) + { + var itemToBreak = EquipmentComponent.EquippedAccessory.Value; + Unequip(EquipmentComponent.EquippedAccessory.Value); + Inventory.Remove(itemToBreak); + } + else if (EquipmentComponent.EquippedArmor.Value.Augment?.AugmentTag == JewelTags.ReviveUserOnce) + { + var itemToBreak = EquipmentComponent.EquippedArmor.Value; + Unequip(EquipmentComponent.EquippedArmor.Value); + Inventory.Remove(itemToBreak); + } + else if (EquipmentComponent.EquippedWeapon.Value.Augment?.AugmentTag == JewelTags.ReviveUserOnce) + { + var itemToBreak = EquipmentComponent.EquippedWeapon.Value; + Unequip(EquipmentComponent.EquippedWeapon.Value); + Inventory.Remove(itemToBreak); + } + else + PlayJumpScareAnimation(); } private void InverseHPToAttackPowerSync(int obj) { - var weapon = (Weapon)EquipmentComponent.EquippedWeapon.Value; - if (weapon.WeaponTag == WeaponTag.InverseHPAttackPower) - { - var healthPercentage = (HealthComponent.CurrentHP.Value * 10) / HealthComponent.MaximumHP.Value; - weapon.SetAttack(10 - healthPercentage); - EquipmentComponent.Equip(weapon); - } + var weapon = (Weapon)EquipmentComponent.EquippedWeapon.Value; + if (weapon.WeaponTag == WeaponTag.InverseHPAttackPower) + { + var healthPercentage = (HealthComponent.CurrentHP.Value * 10) / HealthComponent.MaximumHP.Value; + weapon.SetAttack(10 - healthPercentage); + EquipmentComponent.Equip(weapon); + } } private void OnExitTree() { - PlayerLogic.Stop(); - PlayerBinding.Dispose(); - Hitbox.AreaEntered -= Hitbox_AreaEntered; - CollisionDetector.AreaEntered -= CollisionDetector_AreaEntered; - HealthTimer.Timeout -= OnHealthTimerTimeout; - HealthComponent.CurrentHP.Changed -= InverseHPToAttackPowerSync; - HealthComponent.HealthReachedZero -= Die; - ExperiencePointsComponent.PlayerLevelUp -= OnLevelUp; - PlayerFXAnimations.AnimationFinished -= PlayerFXAnimations_AnimationFinished; + PlayerLogic.Stop(); + PlayerBinding.Dispose(); + Hitbox.AreaEntered -= Hitbox_AreaEntered; + CollisionDetector.AreaEntered -= CollisionDetector_AreaEntered; + HealthTimer.Timeout -= OnHealthTimerTimeout; + HealthComponent.CurrentHP.Changed -= InverseHPToAttackPowerSync; + HealthComponent.HealthReachedZero -= Die; + ExperiencePointsComponent.PlayerLevelUp -= OnLevelUp; + PlayerFXAnimations.AnimationFinished -= PlayerFXAnimations_AnimationFinished; } private void Move(float delta) { - var rawInput = GlobalInputVector; - var strafeLeftInput = LeftStrafeInputVector; - var strafeRightInput = RightStrafeInputVector; + var rawInput = GlobalInputVector; + var strafeLeftInput = LeftStrafeInputVector; + var strafeRightInput = RightStrafeInputVector; - var transform = Transform; - transform.Basis = new Basis(Vector3.Up, Settings.RotationSpeed * -rawInput.X * delta) * transform.Basis; - var moveDirection = new Vector3(strafeRightInput - strafeLeftInput, 0, rawInput.Z).Normalized(); + var transform = Transform; + transform.Basis = new Basis(Vector3.Up, Settings.RotationSpeed * -rawInput.X * delta) * transform.Basis; + var moveDirection = new Vector3(strafeRightInput - strafeLeftInput, 0, rawInput.Z).Normalized(); - if (moveDirection.Length() > 0.25f) - { - var rng = new RandomNumberGenerator(); - rng.Randomize(); - WalkSFX.PitchScale = rng.RandfRange(0.5f, 1.5f); - if (!WalkSFX.Playing) - WalkSFX.Play(); - } - else if (WalkSFX.Playing) - WalkSFX.Stop(); + if (moveDirection.Length() > 0.25f) + { + var rng = new RandomNumberGenerator(); + rng.Randomize(); + WalkSFX.PitchScale = rng.RandfRange(0.5f, 1.5f); + if (!WalkSFX.Playing) + WalkSFX.Play(); + } + else if (WalkSFX.Playing) + WalkSFX.Stop(); - var velocity = (Basis * moveDirection * Settings.MoveSpeed * Settings.Acceleration); - if (_debugSprint) - velocity *= 2; - _knockbackStrength *= 0.9f; - Transform = Transform with { Basis = transform.Basis }; - Velocity = velocity + (_knockbackDirection * _knockbackStrength); + var velocity = (Basis * moveDirection * Settings.MoveSpeed * Settings.Acceleration); + if (_debugSprint) + velocity *= 2; + _knockbackStrength *= 0.9f; + Transform = Transform with { Basis = transform.Basis }; + Velocity = velocity + (_knockbackDirection * _knockbackStrength); - MoveAndSlide(); + MoveAndSlide(); } private void OnPlayerPositionUpdated(Vector3 globalPosition) => GlobalPosition = globalPosition; private void OnHealthTimerTimeout() { - if (VTComponent.CurrentVT.Value > 0) - { - if (((Accessory)EquipmentComponent.EquippedAccessory.Value).AccessoryTag == AccessoryTag.HalfVTConsumption) - _healthTimerActive = !_healthTimerActive; + if (VTComponent.CurrentVT.Value > 0) + { + if (((Accessory)EquipmentComponent.EquippedAccessory.Value).AccessoryTag == AccessoryTag.HalfVTConsumption) + _healthTimerActive = !_healthTimerActive; - HealthComponent.Heal(HealthTimerHPRate); + HealthComponent.Heal(HealthTimerHPRate); - if (_healthTimerActive) - VTComponent.Reduce(1); - } - else - HealthComponent.Damage(1); + if (_healthTimerActive) + VTComponent.Reduce(1); + } + else + HealthComponent.Damage(1, ElementType.None); } private void Hitbox_AreaEntered(Area3D area) { - var target = area.GetOwner(); - if (target is IEnemy enemy) - HitEnemy(enemy); + var target = area.GetOwner(); + if (target is IEnemy enemy) + HitEnemy(enemy); } private void HitEnemy(IEnemy enemy) { - var weapon = EquipmentComponent.EquippedWeapon.Value as Weapon; - var isCriticalHit = BattleExtensions.IsCriticalHit(TotalLuck); - var totalDamage = TotalAttack; + var weapon = EquipmentComponent.EquippedWeapon.Value as Weapon; + var isCriticalHit = BattleExtensions.IsCriticalHit(TotalLuck); + var totalDamage = TotalAttack; - if (isCriticalHit) - { - totalDamage += (int)(totalDamage * 0.5f); - SfxDatabase.Instance.Play(SoundEffect.Crit); - } + if (isCriticalHit) + { + totalDamage += (int)(totalDamage * 0.5f); + SfxDatabase.Instance.Play(SoundEffect.Crit); + } - var baseAttack = new AttackData(totalDamage, weapon.WeaponElement, weapon.WeaponTag == WeaponTag.IgnoreDefense, weapon.WeaponTag == WeaponTag.IgnoreAffinity); - var damageDealt = DamageCalculator.CalculateDamage(baseAttack, enemy.DefenseComponent.CurrentDefense.Value, enemy.ElementalResistanceSet); - enemy.HealthComponent.Damage(damageDealt); + var baseAttack = new AttackData(totalDamage, weapon.WeaponElement, weapon.WeaponTag == WeaponTag.IgnoreDefense, weapon.WeaponTag == WeaponTag.IgnoreAffinity); + var damageDealt = DamageCalculator.CalculateDamage(baseAttack, enemy.DefenseComponent.CurrentDefense.Value, enemy.ElementalResistanceSet); + enemy.HealthComponent.Damage(damageDealt, weapon.WeaponElement); - if (weapon.WeaponTag == WeaponTag.Knockback && enemy is IKnockbackable knockbackable) - knockbackable.Knockback(0.3f, -CurrentBasis.Z.Normalized()); - if (weapon.WeaponTag == WeaponTag.SelfDamage) - _playerEffectService.TakeSelfDamage(weapon.Stats.SelfDamage); - if (weapon.WeaponTag == WeaponTag.Instakill) - _playerEffectService.Instakill(enemy); - if (weapon.WeaponTag == WeaponTag.RustChanceSelfAndEnemy) - { - var rustChance = 0.15f; - var rng = new RandomNumberGenerator(); - rng.Randomize(); - if (rng.Randf() <= rustChance) - { - if (rng.Randf() >= 0.5f && ((Accessory)EquipmentComponent.EquippedAccessory.Value).AccessoryTag != AccessoryTag.StatusEffectImmunity) - StatusEffectComponent.Rust.OnNext(true); - else - enemy.StatusEffectComponent.Rust.OnNext(true); - } - } + if (weapon.WeaponTag == WeaponTag.Knockback && enemy is IKnockbackable knockbackable) + knockbackable.Knockback(0.3f, -CurrentBasis.Z.Normalized()); + if (weapon.WeaponTag == WeaponTag.SelfDamage) + _playerEffectService.TakeSelfDamage(weapon.Stats.SelfDamage); + if (weapon.WeaponTag == WeaponTag.Instakill) + _playerEffectService.Instakill(enemy); + if (weapon.WeaponTag == WeaponTag.RustChanceSelfAndEnemy) + { + var rustChance = 0.15f; + var rng = new RandomNumberGenerator(); + rng.Randomize(); + if (rng.Randf() <= rustChance) + { + if (rng.Randf() >= 0.5f && ((Accessory)EquipmentComponent.EquippedAccessory.Value).AccessoryTag != AccessoryTag.StatusEffectImmunity) + StatusEffectComponent.Rust.OnNext(true); + else + enemy.StatusEffectComponent.Rust.OnNext(true); + } + } } private async void CollisionDetector_AreaEntered(Area3D area) { - if (area.GetParent() is IBaseInventoryItem inventoryItem) - { - var isAdded = Inventory.PickUpItem(inventoryItem); - if (isAdded) - ((Node3D)inventoryItem).QueueFree(); - } - if (area.GetParent() is DroppedItem droppedItem) - { - var isAdded = Inventory.PickUpItem(droppedItem.Item); - if (isAdded) - droppedItem.QueueFree(); - } - if (area.GetParent() is ThrownItem thrownItem) - { - var isAdded = Inventory.PickUpItem(thrownItem.ItemThatIsThrown); - if (isAdded) - thrownItem.QueueFree(); - } - if (area.GetParent() is Restorative restorative) - { - await ToSignal(GetTree().CreateTimer(0.2f), "timeout"); - VTComponent.Restore(restorative.RestoreAmount); - SfxDatabase.Instance.Play(SoundEffect.HealVT); - restorative.QueueFree(); - } + if (area.GetParent() is IBaseInventoryItem inventoryItem) + { + var isAdded = Inventory.PickUpItem(inventoryItem); + if (isAdded) + ((Node3D)inventoryItem).QueueFree(); + } + if (area.GetParent() is DroppedItem droppedItem) + { + var isAdded = Inventory.PickUpItem(droppedItem.Item); + if (isAdded) + droppedItem.QueueFree(); + } + if (area.GetParent() is ThrownItem thrownItem) + { + var isAdded = Inventory.PickUpItem(thrownItem.ItemThatIsThrown); + if (isAdded) + thrownItem.QueueFree(); + } + if (area.GetParent() is Restorative restorative) + { + await ToSignal(GetTree().CreateTimer(0.2f), "timeout"); + VTComponent.Restore(restorative.RestoreAmount); + SfxDatabase.Instance.Play(SoundEffect.HealVT); + restorative.QueueFree(); + } } private bool PlayerIsHittingGeometry() { - var collisions = WallCheck.GetCollidingBodies(); - return collisions.Count > 0; + var collisions = WallCheck.GetCollidingBodies(); + return collisions.Count > 0; } private void WallCheck_BodyEntered(Node body) { - GD.Print("Hit wall"); - WeaponAnimations.Stop(); + GD.Print("Hit wall"); + WeaponAnimations.Stop(); } private void Inventory_InventoryChanged() { - if (AutoIdentifyItems) - { - foreach (var item in Inventory.Items.ToList()) - { - if (item.ItemTag == ItemTag.MysteryItem) - IdentifyItem(item); - } - } + if (AutoIdentifyItems) + { + foreach (var item in Inventory.Items.ToList()) + { + if (item.ItemTag == ItemTag.MysteryItem) + IdentifyItem(item); + } + } } } diff --git a/Zennysoft.Game.Ma/src/system/PlayerProjectile.cs b/Zennysoft.Game.Ma/src/system/PlayerProjectile.cs index 432613c2..bc830807 100644 --- a/Zennysoft.Game.Ma/src/system/PlayerProjectile.cs +++ b/Zennysoft.Game.Ma/src/system/PlayerProjectile.cs @@ -36,7 +36,7 @@ public partial class PlayerProjectile : RigidBody3D { var projectileDamage = new AttackData(AttackData.Damage, AttackData.ElementType, false, false); var damageDealt = DamageCalculator.CalculateDamage(projectileDamage, enemy.DefenseComponent.CurrentDefense.Value, enemy.ElementalResistanceSet); - enemy.HealthComponent.Damage(damageDealt); + enemy.HealthComponent.Damage(damageDealt, AttackData.ElementType); CallDeferred(MethodName.QueueFree); } }