diff --git a/Zennysoft.Game.Ma/src/player/Player.cs b/Zennysoft.Game.Ma/src/player/Player.cs index 83d369e1..8e9ebdd0 100644 --- a/Zennysoft.Game.Ma/src/player/Player.cs +++ b/Zennysoft.Game.Ma/src/player/Player.cs @@ -108,189 +108,189 @@ 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(); - 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(); + Inventory = new Inventory(); + 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(); - _itemReroller = new ItemReroller(ItemDatabase.Instance); + _itemReroller = new ItemReroller(ItemDatabase.Instance); - 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"); - foreach (var item in Inventory.Items) - Inventory.Remove(item); + foreach (var item in Inventory.Items) + Inventory.Remove(item); - HealthComponent.Reset(); - VTComponent.Reset(); - AttackComponent.Reset(); - DefenseComponent.Reset(); - ExperiencePointsComponent.Reset(); - LuckComponent.Reset(); - EquipmentComponent.Reset(); + 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.HealthReachedZero += Die; - PlayerFXAnimations.AnimationFinished += PlayerFXAnimations_AnimationFinished; - HealthTimer.WaitTime = _healthTimerWaitTime; - SetProcessInput(false); - SetPhysicsProcess(false); + Hitbox.AreaEntered += Hitbox_AreaEntered; + CollisionDetector.AreaEntered += CollisionDetector_AreaEntered; + HealthComponent.HealthReachedZero += Die; + PlayerFXAnimations.AnimationFinished += PlayerFXAnimations_AnimationFinished; + HealthTimer.WaitTime = _healthTimerWaitTime; + SetProcessInput(false); + SetPhysicsProcess(false); } #endregion public void Activate() { - SetProcessInput(true); - SetPhysicsProcess(true); - SetHealthTimerStatus(HealthTimerIsActive); + SetProcessInput(true); + SetPhysicsProcess(true); + SetHealthTimerStatus(HealthTimerIsActive); } public void Deactivate() { - Velocity = Vector3.Zero; - SetProcessInput(false); - SetPhysicsProcess(false); - SetHealthTimerStatus(false); + Velocity = Vector3.Zero; + SetProcessInput(false); + SetPhysicsProcess(false); + SetHealthTimerStatus(false); } public void SetHealthTimerStatus(bool isActive) { - if (isActive) - HealthTimer.Start(); - else - HealthTimer.Stop(); + if (isActive) + HealthTimer.Start(); + else + HealthTimer.Stop(); } public void TeleportPlayer(Transform3D newTransform) { - Transform = newTransform; + Transform = newTransform; } public void TakeDamage(AttackData damage) { - _camera3D.AddShake(1.0f); - TakeDamageAnimationPlayer.Play("take_damage"); - var damageReceived = DamageCalculator.CalculateDamage(damage, DefenseComponent.CurrentDefense.Value + EquipmentComponent.BonusDefense, EquipmentComponent.ElementalResistance); - HealthComponent.Damage(damageReceived); - SfxDatabase.Instance.Play(SoundEffect.TakeDamage); + _camera3D.AddShake(1.0f); + TakeDamageAnimationPlayer.Play("take_damage"); + var damageReceived = DamageCalculator.CalculateDamage(damage, DefenseComponent.CurrentDefense.Value + EquipmentComponent.BonusDefense, EquipmentComponent.ElementalResistance); + HealthComponent.Damage(damageReceived); + SfxDatabase.Instance.Play(SoundEffect.TakeDamage); } public void Knockback(float impulse) { - _knockbackStrength = impulse; - _knockbackDirection = GlobalBasis.Z.Normalized(); + _knockbackStrength = impulse; + _knockbackDirection = GlobalBasis.Z.Normalized(); } public void LevelUp() { - var rng = new RandomNumberGenerator(); - rng.Randomize(); - var hpIncrease = rng.RandiRange(3, 6); - HealthComponent.RaiseMaximumHP(hpIncrease); - ExperiencePointsComponent.LevelUp(); + var rng = new RandomNumberGenerator(); + rng.Randomize(); + var hpIncrease = rng.RandiRange(3, 6); + HealthComponent.RaiseMaximumHP(hpIncrease); + ExperiencePointsComponent.LevelUp(); } public void Die() { - PlayerFXAnimations.Play("death"); - HealthTimer.WaitTime = _healthTimerWaitTime; - HealthTimer.Timeout -= OnHealthTimerTimeout; - SetProcessInput(false); - SetPhysicsProcess(false); + PlayerFXAnimations.Play("death"); + HealthTimer.WaitTime = _healthTimerWaitTime; + HealthTimer.Timeout -= OnHealthTimerTimeout; + SetProcessInput(false); + SetPhysicsProcess(false); } public override void _Input(InputEvent @event) { - if (@event.IsActionPressed(GameInputs.Attack)) - Attack(); - if (@event.IsActionPressed(GameInputs.Sprint)) - Settings.MoveSpeed *= 2; - if (@event.IsActionReleased(GameInputs.Sprint)) - Settings.MoveSpeed /= 2; + if (@event.IsActionPressed(GameInputs.Attack)) + Attack(); + if (@event.IsActionPressed(GameInputs.Sprint)) + Settings.MoveSpeed *= 2; + if (@event.IsActionReleased(GameInputs.Sprint)) + Settings.MoveSpeed /= 2; } public void PlayTestAnimation() { - PlayerFXAnimations.Play("test_animation"); + PlayerFXAnimations.Play("test_animation"); } public void OnPhysicsProcess(double delta) { - PlayerLogic.Input(new PlayerLogic.Input.PhysicsTick(delta)); - PlayerLogic.Input(new PlayerLogic.Input.Moved(GlobalPosition, GlobalTransform)); + PlayerLogic.Input(new PlayerLogic.Input.PhysicsTick(delta)); + PlayerLogic.Input(new PlayerLogic.Input.Moved(GlobalPosition, GlobalTransform)); } public void Equip(EquipableItem 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; + } - HealthComponent.RaiseMaximumHP(equipable.BonusHP, false); - VTComponent.RaiseMaximumVT(equipable.BonusVT, false); + HealthComponent.RaiseMaximumHP(equipable.BonusHP, false); + VTComponent.RaiseMaximumVT(equipable.BonusVT, false); - EquipmentComponent.Equip(equipable); + EquipmentComponent.Equip(equipable); } public void Unequip(EquipableItem equipable) { - HealthComponent.SetMaximumHealth(HealthComponent.MaximumHP.Value - equipable.BonusHP); - VTComponent.SetMaximumVT(VTComponent.MaximumVT.Value - equipable.BonusVT); + HealthComponent.SetMaximumHealth(HealthComponent.MaximumHP.Value - equipable.BonusHP); + VTComponent.SetMaximumVT(VTComponent.MaximumVT.Value - equipable.BonusVT); - EquipmentComponent.Unequip(equipable); + EquipmentComponent.Unequip(equipable); } private static Vector3 GlobalInputVector { - get - { - var rawInput = 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 = 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 }; + } } private static float LeftStrafeInputVector => Input.GetActionStrength(GameInputs.StrafeLeft); @@ -299,149 +299,149 @@ public partial class Player : CharacterBody3D, IPlayer, IProvide private void Attack() { - if (PlayerIsHittingGeometry()) - AnimationPlayer.Play("hit_wall"); - else if (!AnimationPlayer.IsPlaying()) - PlayAttackAnimation(); + if (PlayerIsHittingGeometry()) + AnimationPlayer.Play("hit_wall"); + else if (!AnimationPlayer.IsPlaying()) + PlayAttackAnimation(); } private void ThrowItem() { - var itemScene = GD.Load("res://src/items/throwable/ThrowableItem.tscn"); - var throwItem = itemScene.Instantiate(); - GetTree().Root.AddChildEx(throwItem); - throwItem.GlobalPosition = CurrentPosition + new Vector3(0, 3.5f, 0); - throwItem.GlobalRotation = GlobalRotation; + var itemScene = GD.Load("res://src/items/throwable/ThrowableItem.tscn"); + var throwItem = itemScene.Instantiate(); + GetTree().Root.AddChildEx(throwItem); + throwItem.GlobalPosition = CurrentPosition + new Vector3(0, 3.5f, 0); + throwItem.GlobalRotation = GlobalRotation; } private void PlayAttackAnimation() { - SfxDatabase.Instance.Play(((Weapon)EquipmentComponent.EquippedWeapon.Value).SoundEffect); - var attackSpeed = ((Weapon)EquipmentComponent.EquippedWeapon.Value).AttackSpeed; - AnimationPlayer.SetSpeedScale((float)attackSpeed); - AnimationPlayer.Play("attack"); + SfxDatabase.Instance.Play(((Weapon)EquipmentComponent.EquippedWeapon.Value).SoundEffect); + var attackSpeed = ((Weapon)EquipmentComponent.EquippedWeapon.Value).AttackSpeed; + AnimationPlayer.SetSpeedScale((float)attackSpeed); + AnimationPlayer.Play("attack"); } private void PlayerFXAnimations_AnimationFinished(StringName animName) { - if (animName == "death") - PlayerDied?.Invoke(); + if (animName == "death") + PlayerDied?.Invoke(); } private void OnExitTree() { - PlayerLogic.Stop(); - PlayerBinding.Dispose(); - Hitbox.AreaEntered -= Hitbox_AreaEntered; - CollisionDetector.AreaEntered -= CollisionDetector_AreaEntered; - HealthComponent.HealthReachedZero -= Die; - HealthTimer.Timeout -= OnHealthTimerTimeout; + PlayerLogic.Stop(); + PlayerBinding.Dispose(); + Hitbox.AreaEntered -= Hitbox_AreaEntered; + CollisionDetector.AreaEntered -= CollisionDetector_AreaEntered; + HealthComponent.HealthReachedZero -= Die; + HealthTimer.Timeout -= OnHealthTimerTimeout; } 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 velocity = Basis * moveDirection * Settings.MoveSpeed * Settings.Acceleration; - _knockbackStrength *= 0.9f; - Transform = Transform with { Basis = transform.Basis }; - Velocity = velocity + (_knockbackDirection * _knockbackStrength); - if (!WalkSFX.Playing && !Velocity.IsZeroApprox()) - WalkSFX.Play(); - else if (Velocity.IsZeroApprox()) - WalkSFX.Stop(); - MoveAndSlide(); + 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 velocity = Basis * moveDirection * Settings.MoveSpeed * Settings.Acceleration; + _knockbackStrength *= 0.9f; + Transform = Transform with { Basis = transform.Basis }; + Velocity = velocity + (_knockbackDirection * _knockbackStrength); + if (!WalkSFX.Playing && !Velocity.IsZeroApprox()) + WalkSFX.Play(); + else if (Velocity.IsZeroApprox()) + WalkSFX.Stop(); + 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(1); + HealthComponent.Heal(1); - if (_healthTimerActive) - VTComponent.Reduce(1); - } - else - HealthComponent.Damage(1); + if (_healthTimerActive) + VTComponent.Reduce(1); + } + else + HealthComponent.Damage(1); } 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 ignoreElementalResistance = (EquipmentComponent.EquippedWeapon.Value as Weapon).WeaponTag == WeaponTag.IgnoreAffinity; - var ignoreDefense = (EquipmentComponent.EquippedWeapon.Value as Weapon).WeaponTag == WeaponTag.IgnoreDefense; - var isCriticalHit = BattleExtensions.IsCriticalHit(LuckComponent.Luck.Value + EquipmentComponent.BonusLuck); - var totalDamage = AttackComponent.CurrentAttack.Value + EquipmentComponent.BonusAttack; - var element = (EquipmentComponent.EquippedWeapon.Value as Weapon).WeaponElement; + var ignoreElementalResistance = (EquipmentComponent.EquippedWeapon.Value as Weapon).WeaponTag == WeaponTag.IgnoreAffinity; + var ignoreDefense = (EquipmentComponent.EquippedWeapon.Value as Weapon).WeaponTag == WeaponTag.IgnoreDefense; + var isCriticalHit = BattleExtensions.IsCriticalHit(LuckComponent.Luck.Value + EquipmentComponent.BonusLuck); + var totalDamage = AttackComponent.CurrentAttack.Value + EquipmentComponent.BonusAttack; + var element = (EquipmentComponent.EquippedWeapon.Value as Weapon).WeaponElement; - 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, element, ignoreDefense, ignoreElementalResistance); - var damageDealt = DamageCalculator.CalculateDamage(baseAttack, enemy.DefenseComponent.CurrentDefense.Value, enemy.ElementalResistanceSet); - enemy.HealthComponent.Damage(damageDealt); + var baseAttack = new AttackData(totalDamage, element, ignoreDefense, ignoreElementalResistance); + var damageDealt = DamageCalculator.CalculateDamage(baseAttack, enemy.DefenseComponent.CurrentDefense.Value, enemy.ElementalResistanceSet); + enemy.HealthComponent.Damage(damageDealt); - if (((Weapon)EquipmentComponent.EquippedWeapon.Value).WeaponTag == WeaponTag.Knockback && enemy is IKnockbackable knockbackable) - knockbackable.Knockback(0.3f, -CurrentBasis.Z.Normalized()); - if (((Weapon)EquipmentComponent.EquippedWeapon.Value).WeaponTag == WeaponTag.SelfDamage) - HealthComponent.Damage(5); + if (((Weapon)EquipmentComponent.EquippedWeapon.Value).WeaponTag == WeaponTag.Knockback && enemy is IKnockbackable knockbackable) + knockbackable.Knockback(0.3f, -CurrentBasis.Z.Normalized()); + if (((Weapon)EquipmentComponent.EquippedWeapon.Value).WeaponTag == WeaponTag.SelfDamage) + HealthComponent.Damage(5); } private void CollisionDetector_AreaEntered(Area3D area) { - if (area.GetParent() is InventoryItem inventoryItem) - { - var isAdded = Inventory.PickUpItem(inventoryItem); - if (isAdded) - 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) - { - restorative.QueueFree(); - } + if (area.GetParent() is InventoryItem inventoryItem) + { + var isAdded = Inventory.PickUpItem(inventoryItem); + if (isAdded) + 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) + { + 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"); - AnimationPlayer.Stop(); + GD.Print("Hit wall"); + AnimationPlayer.Stop(); } } diff --git a/Zennysoft.Game.Ma/src/player/Player.tscn b/Zennysoft.Game.Ma/src/player/Player.tscn index db8a1ad7..6d8708a9 100644 --- a/Zennysoft.Game.Ma/src/player/Player.tscn +++ b/Zennysoft.Game.Ma/src/player/Player.tscn @@ -1,4 +1,4 @@ -[gd_scene load_steps=1730 format=3 uid="uid://cfecvvav8kkp6"] +[gd_scene load_steps=1694 format=3 uid="uid://cfecvvav8kkp6"] [ext_resource type="Script" uid="uid://yxmiqy7i0t7r" path="res://src/player/Player.cs" id="1_xcol5"] [ext_resource type="PackedScene" uid="uid://didc6vnf5ftlg" path="res://src/camera/ShakeCamera.tscn" id="2_jtmj1"] @@ -164,1176 +164,32 @@ _data = { &"hit_wall": SubResource("Animation_qgbg1") } -[sub_resource type="AtlasTexture" id="AtlasTexture_eu047"] -atlas = ExtResource("6_ct55r") -region = Rect2(0, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_h7sjr"] -atlas = ExtResource("6_ct55r") -region = Rect2(512, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_bqkjw"] -atlas = ExtResource("6_ct55r") -region = Rect2(1024, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_41ac8"] -atlas = ExtResource("6_ct55r") -region = Rect2(1536, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_xh3q8"] -atlas = ExtResource("6_ct55r") -region = Rect2(2048, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_c22uk"] -atlas = ExtResource("6_ct55r") -region = Rect2(2560, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_klw70"] -atlas = ExtResource("6_ct55r") -region = Rect2(3072, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_vta8l"] -atlas = ExtResource("6_ct55r") -region = Rect2(3584, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_kqdlc"] -atlas = ExtResource("6_ct55r") -region = Rect2(4096, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_72rv6"] -atlas = ExtResource("6_ct55r") -region = Rect2(4608, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_aoc6b"] -atlas = ExtResource("6_ct55r") -region = Rect2(5120, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_otw2v"] -atlas = ExtResource("6_ct55r") -region = Rect2(5632, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_5a3hy"] -atlas = ExtResource("6_ct55r") -region = Rect2(6144, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_pd5yn"] -atlas = ExtResource("6_ct55r") -region = Rect2(6656, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_t824t"] -atlas = ExtResource("6_ct55r") -region = Rect2(7168, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_acn55"] -atlas = ExtResource("6_ct55r") -region = Rect2(7680, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_yooul"] -atlas = ExtResource("6_ct55r") -region = Rect2(8192, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_ik124"] -atlas = ExtResource("6_ct55r") -region = Rect2(8704, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_rowo1"] -atlas = ExtResource("6_ct55r") -region = Rect2(9216, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_4b46x"] -atlas = ExtResource("6_ct55r") -region = Rect2(9728, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_djbgf"] -atlas = ExtResource("6_ct55r") -region = Rect2(10240, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_kohda"] -atlas = ExtResource("6_ct55r") -region = Rect2(10752, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_p3ggc"] -atlas = ExtResource("6_ct55r") -region = Rect2(11264, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_m6if5"] -atlas = ExtResource("6_ct55r") -region = Rect2(11776, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_pay7o"] -atlas = ExtResource("6_ct55r") -region = Rect2(12288, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_wd3hy"] -atlas = ExtResource("6_ct55r") -region = Rect2(12800, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_sp1be"] -atlas = ExtResource("6_ct55r") -region = Rect2(13312, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_6hicy"] -atlas = ExtResource("6_ct55r") -region = Rect2(13824, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_jdy3m"] -atlas = ExtResource("6_ct55r") -region = Rect2(14336, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_8c84b"] -atlas = ExtResource("6_ct55r") -region = Rect2(14848, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_cfdwb"] -atlas = ExtResource("6_ct55r") -region = Rect2(15360, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_iq4yq"] -atlas = ExtResource("6_ct55r") -region = Rect2(15872, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_ciyfc"] -atlas = ExtResource("6_ct55r") -region = Rect2(0, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_fkumg"] -atlas = ExtResource("6_ct55r") -region = Rect2(512, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_1mqjn"] -atlas = ExtResource("6_ct55r") -region = Rect2(1024, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_472fd"] -atlas = ExtResource("6_ct55r") -region = Rect2(1536, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_drjw3"] -atlas = ExtResource("6_ct55r") -region = Rect2(2048, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_majw8"] -atlas = ExtResource("6_ct55r") -region = Rect2(2560, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_3ol0a"] -atlas = ExtResource("6_ct55r") -region = Rect2(3072, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_eo78l"] -atlas = ExtResource("6_ct55r") -region = Rect2(3584, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_6w1cs"] -atlas = ExtResource("6_ct55r") -region = Rect2(4096, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_q1vex"] -atlas = ExtResource("6_ct55r") -region = Rect2(4608, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_ma4v4"] -atlas = ExtResource("6_ct55r") -region = Rect2(5120, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_lb80b"] -atlas = ExtResource("6_ct55r") -region = Rect2(5632, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_bxp7j"] -atlas = ExtResource("6_ct55r") -region = Rect2(6144, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_an18o"] -atlas = ExtResource("6_ct55r") -region = Rect2(6656, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_3b8aw"] -atlas = ExtResource("6_ct55r") -region = Rect2(7168, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_xxan3"] -atlas = ExtResource("6_ct55r") -region = Rect2(7680, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_f4nvu"] -atlas = ExtResource("6_ct55r") -region = Rect2(8192, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_vd3cb"] -atlas = ExtResource("6_ct55r") -region = Rect2(8704, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_xd226"] -atlas = ExtResource("6_ct55r") -region = Rect2(9216, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_qjjux"] -atlas = ExtResource("6_ct55r") -region = Rect2(9728, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_6tf7i"] -atlas = ExtResource("6_ct55r") -region = Rect2(10240, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_oe2xt"] -atlas = ExtResource("6_ct55r") -region = Rect2(10752, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_ouspn"] -atlas = ExtResource("6_ct55r") -region = Rect2(11264, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_nyfyc"] -atlas = ExtResource("6_ct55r") -region = Rect2(11776, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_obvu5"] -atlas = ExtResource("6_ct55r") -region = Rect2(12288, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_lrr4w"] -atlas = ExtResource("6_ct55r") -region = Rect2(12800, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_jsibr"] -atlas = ExtResource("6_ct55r") -region = Rect2(13312, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_fc4nu"] -atlas = ExtResource("6_ct55r") -region = Rect2(13824, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_r1de4"] -atlas = ExtResource("6_ct55r") -region = Rect2(14336, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_v20g7"] -atlas = ExtResource("6_ct55r") -region = Rect2(14848, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_sg1lj"] -atlas = ExtResource("6_ct55r") -region = Rect2(15360, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_npfnd"] -atlas = ExtResource("6_ct55r") -region = Rect2(15872, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_ob8y1"] -atlas = ExtResource("6_ct55r") -region = Rect2(0, 1024, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_mdjr1"] -atlas = ExtResource("6_ct55r") -region = Rect2(512, 1024, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_101vw"] -atlas = ExtResource("6_ct55r") -region = Rect2(1024, 1024, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_eh3ia"] -atlas = ExtResource("6_ct55r") -region = Rect2(1536, 1024, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_jxubn"] -atlas = ExtResource("6_ct55r") -region = Rect2(2048, 1024, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_4xb27"] -atlas = ExtResource("6_ct55r") -region = Rect2(2560, 1024, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_ao4b5"] -atlas = ExtResource("6_ct55r") -region = Rect2(3072, 1024, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_7kx2t"] -atlas = ExtResource("6_ct55r") -region = Rect2(3584, 1024, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_8ick8"] -atlas = ExtResource("6_ct55r") -region = Rect2(4096, 1024, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_1nbsb"] -atlas = ExtResource("6_ct55r") -region = Rect2(4608, 1024, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_ana2x"] -atlas = ExtResource("6_ct55r") -region = Rect2(5120, 1024, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_cg2jm"] -atlas = ExtResource("6_ct55r") -region = Rect2(5632, 1024, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_hbd3a"] -atlas = ExtResource("6_ct55r") -region = Rect2(6144, 1024, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_5afox"] -atlas = ExtResource("6_ct55r") -region = Rect2(6656, 1024, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_0uoep"] -atlas = ExtResource("6_ct55r") -region = Rect2(7168, 1024, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_pxik2"] -atlas = ExtResource("6_ct55r") -region = Rect2(7680, 1024, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_b7evm"] -atlas = ExtResource("6_ct55r") -region = Rect2(8192, 1024, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_erwam"] -atlas = ExtResource("6_ct55r") -region = Rect2(8704, 1024, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_8ipxg"] -atlas = ExtResource("6_ct55r") -region = Rect2(9216, 1024, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_xc8dh"] -atlas = ExtResource("6_ct55r") -region = Rect2(9728, 1024, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_e7xex"] -atlas = ExtResource("6_ct55r") -region = Rect2(10240, 1024, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_5r0vv"] -atlas = ExtResource("6_ct55r") -region = Rect2(10752, 1024, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_q3u2t"] -atlas = ExtResource("6_ct55r") -region = Rect2(11264, 1024, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_xabkh"] -atlas = ExtResource("6_ct55r") -region = Rect2(11776, 1024, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_myll6"] -atlas = ExtResource("6_ct55r") -region = Rect2(12288, 1024, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_xka1h"] -atlas = ExtResource("6_ct55r") -region = Rect2(12800, 1024, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_fgd0h"] -atlas = ExtResource("6_ct55r") -region = Rect2(13312, 1024, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_pqgst"] -atlas = ExtResource("6_ct55r") -region = Rect2(13824, 1024, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_efs5x"] -atlas = ExtResource("6_ct55r") -region = Rect2(14336, 1024, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_mrho0"] -atlas = ExtResource("6_ct55r") -region = Rect2(14848, 1024, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_72kyt"] -atlas = ExtResource("6_ct55r") -region = Rect2(15360, 1024, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_kbg4l"] -atlas = ExtResource("6_ct55r") -region = Rect2(15872, 1024, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_8savx"] -atlas = ExtResource("6_ct55r") -region = Rect2(0, 1536, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_3ejk8"] -atlas = ExtResource("6_ct55r") -region = Rect2(512, 1536, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_2vife"] -atlas = ExtResource("6_ct55r") -region = Rect2(1024, 1536, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_llhdh"] -atlas = ExtResource("6_ct55r") -region = Rect2(1536, 1536, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_dvoxb"] -atlas = ExtResource("6_ct55r") -region = Rect2(2048, 1536, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_fq7mj"] -atlas = ExtResource("6_ct55r") -region = Rect2(2560, 1536, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_milxy"] -atlas = ExtResource("6_ct55r") -region = Rect2(3072, 1536, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_b2a65"] -atlas = ExtResource("6_ct55r") -region = Rect2(3584, 1536, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_0lh37"] -atlas = ExtResource("6_ct55r") -region = Rect2(4096, 1536, 512, 512) - -[sub_resource type="SpriteFrames" id="SpriteFrames_xtuex"] -animations = [{ -"frames": [{ -"duration": 1.0, -"texture": SubResource("AtlasTexture_eu047") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_h7sjr") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_bqkjw") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_41ac8") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_xh3q8") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_c22uk") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_klw70") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_vta8l") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_kqdlc") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_72rv6") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_aoc6b") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_otw2v") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_5a3hy") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_pd5yn") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_t824t") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_acn55") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_yooul") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_ik124") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_rowo1") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_4b46x") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_djbgf") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_kohda") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_p3ggc") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_m6if5") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_pay7o") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_wd3hy") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_sp1be") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_6hicy") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_jdy3m") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_8c84b") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_cfdwb") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_iq4yq") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_ciyfc") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_fkumg") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_1mqjn") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_472fd") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_drjw3") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_majw8") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_3ol0a") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_eo78l") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_6w1cs") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_q1vex") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_ma4v4") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_lb80b") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_bxp7j") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_an18o") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_3b8aw") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_xxan3") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_f4nvu") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_vd3cb") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_xd226") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_qjjux") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_6tf7i") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_oe2xt") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_ouspn") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_nyfyc") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_obvu5") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_lrr4w") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_jsibr") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_fc4nu") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_r1de4") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_v20g7") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_sg1lj") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_npfnd") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_ob8y1") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_mdjr1") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_101vw") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_eh3ia") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_jxubn") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_4xb27") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_ao4b5") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_7kx2t") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_8ick8") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_1nbsb") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_ana2x") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_cg2jm") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_hbd3a") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_5afox") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_0uoep") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_pxik2") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_b7evm") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_erwam") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_8ipxg") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_xc8dh") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_e7xex") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_5r0vv") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_q3u2t") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_xabkh") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_myll6") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_xka1h") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_fgd0h") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_pqgst") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_efs5x") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_mrho0") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_72kyt") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_kbg4l") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_8savx") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_3ejk8") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_2vife") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_llhdh") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_dvoxb") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_fq7mj") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_milxy") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_b2a65") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_0lh37") -}], -"loop": false, -"name": &"default", -"speed": 32.0 -}] - [sub_resource type="Animation" id="Animation_j5wmh"] resource_name = "Divinity_Recall" length = 3.46667 tracks/0/type = "value" tracks/0/imported = false tracks/0/enabled = true -tracks/0/path = NodePath("SubViewportContainer/SubViewport/Divinity Recall:sprite_frames") +tracks/0/path = NodePath("SubViewportContainer/SubViewport/ColorRect:color") tracks/0/interp = 1 tracks/0/loop_wrap = true tracks/0/keys = { -"times": PackedFloat32Array(0, 3.46667), -"transitions": PackedFloat32Array(1, 1), -"update": 1, -"values": [SubResource("SpriteFrames_xtuex"), SubResource("SpriteFrames_xtuex")] -} -tracks/1/type = "value" -tracks/1/imported = false -tracks/1/enabled = true -tracks/1/path = NodePath("SubViewportContainer/SubViewport/Divinity Recall:modulate") -tracks/1/interp = 1 -tracks/1/loop_wrap = true -tracks/1/keys = { -"times": PackedFloat32Array(0.0333333, 1.06667, 2.7), -"transitions": PackedFloat32Array(1, 1, 1), -"update": 0, -"values": [Color(1, 1, 1, 1), Color(1, 1, 1, 1), Color(1, 1, 1, 0)] -} -tracks/2/type = "value" -tracks/2/imported = false -tracks/2/enabled = true -tracks/2/path = NodePath("SubViewportContainer/SubViewport/ColorRect:color") -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), "transitions": PackedFloat32Array(1, 1, 1, 1, 1, 1, 1, 1, 1), "update": 0, "values": [Color(1, 1, 1, 0), Color(1, 1, 1, 0.623529), Color(1, 1, 1, 0), Color(1, 1, 1, 0), Color(1, 1, 1, 0.623529), Color(1, 1, 1, 0), Color(1, 1, 1, 0), Color(1, 1, 1, 0.623529), Color(1, 1, 1, 0)] } -[sub_resource type="AtlasTexture" id="AtlasTexture_gx6yx"] -atlas = ExtResource("5_bngr8") -region = Rect2(0, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_5gt6s"] -atlas = ExtResource("5_bngr8") -region = Rect2(512, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_syglp"] -atlas = ExtResource("5_bngr8") -region = Rect2(1024, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_o81wv"] -atlas = ExtResource("5_bngr8") -region = Rect2(1536, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_uc14s"] -atlas = ExtResource("5_bngr8") -region = Rect2(2048, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_84vg4"] -atlas = ExtResource("5_bngr8") -region = Rect2(2560, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_18gts"] -atlas = ExtResource("5_bngr8") -region = Rect2(3072, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_sq31b"] -atlas = ExtResource("5_bngr8") -region = Rect2(3584, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_ucph0"] -atlas = ExtResource("5_bngr8") -region = Rect2(4096, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_5pe5a"] -atlas = ExtResource("5_bngr8") -region = Rect2(4608, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_iqf1f"] -atlas = ExtResource("5_bngr8") -region = Rect2(5120, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_58hdl"] -atlas = ExtResource("5_bngr8") -region = Rect2(5632, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_3dk5l"] -atlas = ExtResource("5_bngr8") -region = Rect2(6144, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_pmdkx"] -atlas = ExtResource("5_bngr8") -region = Rect2(6656, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_delwj"] -atlas = ExtResource("5_bngr8") -region = Rect2(7168, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_c0hrp"] -atlas = ExtResource("5_bngr8") -region = Rect2(7680, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_nm3ps"] -atlas = ExtResource("5_bngr8") -region = Rect2(8192, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_ax7gm"] -atlas = ExtResource("5_bngr8") -region = Rect2(8704, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_xdngf"] -atlas = ExtResource("5_bngr8") -region = Rect2(9216, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_qjoth"] -atlas = ExtResource("5_bngr8") -region = Rect2(9728, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_ir6la"] -atlas = ExtResource("5_bngr8") -region = Rect2(10240, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_kvy4v"] -atlas = ExtResource("5_bngr8") -region = Rect2(10752, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_6y4ab"] -atlas = ExtResource("5_bngr8") -region = Rect2(11264, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_hhwgf"] -atlas = ExtResource("5_bngr8") -region = Rect2(11776, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_l178f"] -atlas = ExtResource("5_bngr8") -region = Rect2(12288, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_0npj3"] -atlas = ExtResource("5_bngr8") -region = Rect2(12800, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_dcc3e"] -atlas = ExtResource("5_bngr8") -region = Rect2(13312, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_iqcna"] -atlas = ExtResource("5_bngr8") -region = Rect2(13824, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_0u5oq"] -atlas = ExtResource("5_bngr8") -region = Rect2(14336, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_qninq"] -atlas = ExtResource("5_bngr8") -region = Rect2(14848, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_5vt5r"] -atlas = ExtResource("5_bngr8") -region = Rect2(15360, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_a3n34"] -atlas = ExtResource("5_bngr8") -region = Rect2(15872, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_hh1fj"] -atlas = ExtResource("5_bngr8") -region = Rect2(0, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_4ldcx"] -atlas = ExtResource("5_bngr8") -region = Rect2(512, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_07bvn"] -atlas = ExtResource("5_bngr8") -region = Rect2(1024, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_rqdqm"] -atlas = ExtResource("5_bngr8") -region = Rect2(1536, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_mjb05"] -atlas = ExtResource("5_bngr8") -region = Rect2(2048, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_r0mys"] -atlas = ExtResource("5_bngr8") -region = Rect2(2560, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_ro8ch"] -atlas = ExtResource("5_bngr8") -region = Rect2(3072, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_c5lge"] -atlas = ExtResource("5_bngr8") -region = Rect2(3584, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_o0af2"] -atlas = ExtResource("5_bngr8") -region = Rect2(4096, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_ht5qq"] -atlas = ExtResource("5_bngr8") -region = Rect2(4608, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_spm6q"] -atlas = ExtResource("5_bngr8") -region = Rect2(5120, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_baipy"] -atlas = ExtResource("5_bngr8") -region = Rect2(5632, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_i0amg"] -atlas = ExtResource("5_bngr8") -region = Rect2(6144, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_xpptc"] -atlas = ExtResource("5_bngr8") -region = Rect2(6656, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_bxeg4"] -atlas = ExtResource("5_bngr8") -region = Rect2(7168, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_xgu6y"] -atlas = ExtResource("5_bngr8") -region = Rect2(7680, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_53n88"] -atlas = ExtResource("5_bngr8") -region = Rect2(8192, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_gwmts"] -atlas = ExtResource("5_bngr8") -region = Rect2(8704, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_7wi2f"] -atlas = ExtResource("5_bngr8") -region = Rect2(9216, 512, 512, 512) - -[sub_resource type="SpriteFrames" id="SpriteFrames_xbcdg"] -animations = [{ -"frames": [{ -"duration": 1.0, -"texture": SubResource("AtlasTexture_gx6yx") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_5gt6s") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_syglp") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_o81wv") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_uc14s") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_84vg4") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_18gts") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_sq31b") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_ucph0") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_5pe5a") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_iqf1f") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_58hdl") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_3dk5l") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_pmdkx") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_delwj") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_c0hrp") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_nm3ps") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_ax7gm") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_xdngf") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_qjoth") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_ir6la") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_kvy4v") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_6y4ab") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_hhwgf") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_l178f") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_0npj3") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_dcc3e") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_iqcna") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_0u5oq") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_qninq") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_5vt5r") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_a3n34") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_hh1fj") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_4ldcx") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_07bvn") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_rqdqm") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_mjb05") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_r0mys") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_ro8ch") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_c5lge") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_o0af2") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_ht5qq") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_spm6q") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_baipy") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_i0amg") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_xpptc") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_bxeg4") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_xgu6y") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_53n88") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_gwmts") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_7wi2f") -}], -"loop": false, -"name": &"default", -"speed": 64.0 -}] - [sub_resource type="Animation" id="Animation_rxepx"] resource_name = "GeoReactor Air" length = 1.66667 tracks/0/type = "value" tracks/0/imported = false tracks/0/enabled = true -tracks/0/path = NodePath("SubViewportContainer/SubViewport/Geomantic Reactor Air:sprite_frames") +tracks/0/path = NodePath("SubViewportContainer/SubViewport/ColorRect:color") tracks/0/interp = 1 tracks/0/loop_wrap = true tracks/0/keys = { -"times": PackedFloat32Array(0, 1.66667), -"transitions": PackedFloat32Array(1, 1), -"update": 0, -"values": [SubResource("SpriteFrames_xbcdg"), SubResource("SpriteFrames_xbcdg")] -} -tracks/1/type = "value" -tracks/1/imported = false -tracks/1/enabled = true -tracks/1/path = NodePath("SubViewportContainer/SubViewport/ColorRect:color") -tracks/1/interp = 1 -tracks/1/loop_wrap = true -tracks/1/keys = { "times": PackedFloat32Array(0, 0.0333333, 0.0666667), "transitions": PackedFloat32Array(1, 1, 1), "update": 0, @@ -1444,48 +300,12 @@ tracks/7/keys = { tracks/8/type = "value" tracks/8/imported = false tracks/8/enabled = true -tracks/8/path = NodePath("SubViewportContainer/SubViewport/Divinity Recall:sprite_frames") +tracks/8/path = NodePath("%Camera3D:position") tracks/8/interp = 1 tracks/8/loop_wrap = true tracks/8/keys = { "times": PackedFloat32Array(0), "transitions": PackedFloat32Array(1), -"update": 1, -"values": [SubResource("SpriteFrames_xtuex")] -} -tracks/9/type = "value" -tracks/9/imported = false -tracks/9/enabled = true -tracks/9/path = NodePath("SubViewportContainer/SubViewport/Divinity Recall:modulate") -tracks/9/interp = 1 -tracks/9/loop_wrap = true -tracks/9/keys = { -"times": PackedFloat32Array(0), -"transitions": PackedFloat32Array(1), -"update": 0, -"values": [Color(1, 1, 1, 1)] -} -tracks/10/type = "value" -tracks/10/imported = false -tracks/10/enabled = true -tracks/10/path = NodePath("SubViewportContainer/SubViewport/Geomantic Reactor Air:sprite_frames") -tracks/10/interp = 1 -tracks/10/loop_wrap = true -tracks/10/keys = { -"times": PackedFloat32Array(0), -"transitions": PackedFloat32Array(1), -"update": 1, -"values": [SubResource("SpriteFrames_xbcdg")] -} -tracks/11/type = "value" -tracks/11/imported = false -tracks/11/enabled = true -tracks/11/path = NodePath("%Camera3D:position") -tracks/11/interp = 1 -tracks/11/loop_wrap = true -tracks/11/keys = { -"times": PackedFloat32Array(0), -"transitions": PackedFloat32Array(1), "update": 0, "values": [Vector3(0.003, 2.1, -0.01)] } @@ -2333,3131 +1153,426 @@ region = Rect2(15360, 2048, 512, 512) atlas = ExtResource("9_hkhu1") region = Rect2(15872, 2048, 512, 512) -[sub_resource type="SpriteFrames" id="SpriteFrames_cdih5"] -animations = [{ -"frames": [{ -"duration": 1.0, -"texture": SubResource("AtlasTexture_34ew5") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_lubbs") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_xwx03") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_jcjp2") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_kbohi") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_a73rr") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_alfyq") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_30ovq") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_tiaol") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_s2lqj") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_yus6s") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_c8ayk") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_47kvk") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_j3n21") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_qvwgf") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_1wmf2") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_hns7m") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_v2bll") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_nywm3") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_ty6f8") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_gonms") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_ikt00") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_i3brb") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_qdo00") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_nkblr") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_0s36m") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_m6n0b") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_hrkfx") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_tea1s") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_i4gd4") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_rs53g") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_3miyd") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_l8k4d") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_p5y4w") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_ccumw") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_gisxk") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_tvl51") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_6n813") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_4wbhf") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_sbksr") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_auygt") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_qgwn0") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_kuqlc") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_4cgil") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_y6awi") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_xq7f4") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_jwtwf") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_pbqtn") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_jv1wl") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_eqri4") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_sopnf") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_bjmlk") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_np0wk") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_cslkm") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_0xsma") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_ju7ra") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_5xrtn") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_cvu8n") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_4pqcw") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_w67m4") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_0qir6") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_bc1se") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_u6k7b") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_wrn46") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_kpcxo") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_7vdo2") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_efg1q") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_sef0r") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_w2ff4") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_imi5f") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_y1k5q") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_lig6t") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_c5vdy") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_oduka") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_qx0sc") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_tyif7") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_1fl2b") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_qlwio") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_nskmi") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_cxhec") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_7jkvs") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_pl8s7") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_316ag") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_68jb8") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_rmwaq") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_t3nc1") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_124uj") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_oaelx") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_8jt6t") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_k3wgp") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_ooo52") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_7wicg") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_gpbpi") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_7wd4v") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_tokek") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_x1sux") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_rk23o") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_5ovem") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_pyrex") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_brhxu") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_615d6") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_ma3hf") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_u0lx7") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_yowtu") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_61r7h") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_abr5v") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_83udd") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_6n322") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_u7e82") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_s70gh") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_51of3") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_ksayt") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_wg6sj") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_2r7fs") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_7hs80") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_5t6bd") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_s1cgm") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_3uevs") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_bput3") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_vcps6") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_txb53") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_w6i7m") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_s5c8e") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_moi3c") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_6etv1") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_d7uqy") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_ol14s") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_jex0j") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_yx8jj") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_iqv65") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_2u7f3") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_ls1g4") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_f7m6k") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_34tyb") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_3cp8x") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_p63yo") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_i4nci") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_1on4w") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_vi1pk") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_h3xvw") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_ekxxp") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_gvirs") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_ujffs") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_otw0t") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_aeo2c") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_ek7vt") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_oovgc") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_f5akt") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_a2y5f") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_6es3c") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_ok63c") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_yymor") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_tkrun") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_j33ad") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_41x22") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_fl64p") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_xgkwm") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_o3512") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_ywo1c") -}, { -"duration": 1.0, -"texture": null -}], -"loop": false, -"name": &"default", -"speed": 64.0 -}] - -[sub_resource type="AtlasTexture" id="AtlasTexture_x5pja"] -atlas = ExtResource("10_2njrj") +[sub_resource type="AtlasTexture" id="AtlasTexture_eu047"] +atlas = ExtResource("6_ct55r") region = Rect2(0, 0, 512, 512) -[sub_resource type="AtlasTexture" id="AtlasTexture_47aoo"] -atlas = ExtResource("10_2njrj") +[sub_resource type="AtlasTexture" id="AtlasTexture_h7sjr"] +atlas = ExtResource("6_ct55r") region = Rect2(512, 0, 512, 512) -[sub_resource type="AtlasTexture" id="AtlasTexture_lh0hw"] -atlas = ExtResource("10_2njrj") +[sub_resource type="AtlasTexture" id="AtlasTexture_bqkjw"] +atlas = ExtResource("6_ct55r") region = Rect2(1024, 0, 512, 512) -[sub_resource type="AtlasTexture" id="AtlasTexture_jwo4s"] -atlas = ExtResource("10_2njrj") +[sub_resource type="AtlasTexture" id="AtlasTexture_41ac8"] +atlas = ExtResource("6_ct55r") region = Rect2(1536, 0, 512, 512) -[sub_resource type="AtlasTexture" id="AtlasTexture_1gvns"] -atlas = ExtResource("10_2njrj") +[sub_resource type="AtlasTexture" id="AtlasTexture_xh3q8"] +atlas = ExtResource("6_ct55r") region = Rect2(2048, 0, 512, 512) -[sub_resource type="AtlasTexture" id="AtlasTexture_a8r0k"] -atlas = ExtResource("10_2njrj") +[sub_resource type="AtlasTexture" id="AtlasTexture_c22uk"] +atlas = ExtResource("6_ct55r") region = Rect2(2560, 0, 512, 512) -[sub_resource type="AtlasTexture" id="AtlasTexture_lel0q"] -atlas = ExtResource("10_2njrj") +[sub_resource type="AtlasTexture" id="AtlasTexture_klw70"] +atlas = ExtResource("6_ct55r") region = Rect2(3072, 0, 512, 512) -[sub_resource type="AtlasTexture" id="AtlasTexture_2r2g5"] -atlas = ExtResource("10_2njrj") +[sub_resource type="AtlasTexture" id="AtlasTexture_vta8l"] +atlas = ExtResource("6_ct55r") region = Rect2(3584, 0, 512, 512) -[sub_resource type="AtlasTexture" id="AtlasTexture_na483"] -atlas = ExtResource("10_2njrj") +[sub_resource type="AtlasTexture" id="AtlasTexture_kqdlc"] +atlas = ExtResource("6_ct55r") region = Rect2(4096, 0, 512, 512) -[sub_resource type="AtlasTexture" id="AtlasTexture_vc6qm"] -atlas = ExtResource("10_2njrj") +[sub_resource type="AtlasTexture" id="AtlasTexture_72rv6"] +atlas = ExtResource("6_ct55r") region = Rect2(4608, 0, 512, 512) -[sub_resource type="AtlasTexture" id="AtlasTexture_ejbn4"] -atlas = ExtResource("10_2njrj") +[sub_resource type="AtlasTexture" id="AtlasTexture_aoc6b"] +atlas = ExtResource("6_ct55r") region = Rect2(5120, 0, 512, 512) -[sub_resource type="AtlasTexture" id="AtlasTexture_lysy5"] -atlas = ExtResource("10_2njrj") +[sub_resource type="AtlasTexture" id="AtlasTexture_otw2v"] +atlas = ExtResource("6_ct55r") region = Rect2(5632, 0, 512, 512) -[sub_resource type="AtlasTexture" id="AtlasTexture_kbe1o"] -atlas = ExtResource("10_2njrj") +[sub_resource type="AtlasTexture" id="AtlasTexture_5a3hy"] +atlas = ExtResource("6_ct55r") region = Rect2(6144, 0, 512, 512) -[sub_resource type="AtlasTexture" id="AtlasTexture_wt6a3"] -atlas = ExtResource("10_2njrj") +[sub_resource type="AtlasTexture" id="AtlasTexture_pd5yn"] +atlas = ExtResource("6_ct55r") region = Rect2(6656, 0, 512, 512) -[sub_resource type="AtlasTexture" id="AtlasTexture_4llcp"] -atlas = ExtResource("10_2njrj") +[sub_resource type="AtlasTexture" id="AtlasTexture_t824t"] +atlas = ExtResource("6_ct55r") region = Rect2(7168, 0, 512, 512) -[sub_resource type="AtlasTexture" id="AtlasTexture_7auqt"] -atlas = ExtResource("10_2njrj") +[sub_resource type="AtlasTexture" id="AtlasTexture_acn55"] +atlas = ExtResource("6_ct55r") region = Rect2(7680, 0, 512, 512) -[sub_resource type="AtlasTexture" id="AtlasTexture_b0whh"] -atlas = ExtResource("10_2njrj") +[sub_resource type="AtlasTexture" id="AtlasTexture_yooul"] +atlas = ExtResource("6_ct55r") region = Rect2(8192, 0, 512, 512) -[sub_resource type="AtlasTexture" id="AtlasTexture_g6nk6"] -atlas = ExtResource("10_2njrj") +[sub_resource type="AtlasTexture" id="AtlasTexture_ik124"] +atlas = ExtResource("6_ct55r") region = Rect2(8704, 0, 512, 512) -[sub_resource type="AtlasTexture" id="AtlasTexture_rvnij"] -atlas = ExtResource("10_2njrj") +[sub_resource type="AtlasTexture" id="AtlasTexture_rowo1"] +atlas = ExtResource("6_ct55r") region = Rect2(9216, 0, 512, 512) -[sub_resource type="AtlasTexture" id="AtlasTexture_bjd72"] -atlas = ExtResource("10_2njrj") +[sub_resource type="AtlasTexture" id="AtlasTexture_4b46x"] +atlas = ExtResource("6_ct55r") region = Rect2(9728, 0, 512, 512) -[sub_resource type="AtlasTexture" id="AtlasTexture_6tho6"] -atlas = ExtResource("10_2njrj") +[sub_resource type="AtlasTexture" id="AtlasTexture_djbgf"] +atlas = ExtResource("6_ct55r") region = Rect2(10240, 0, 512, 512) -[sub_resource type="AtlasTexture" id="AtlasTexture_s3hb6"] -atlas = ExtResource("10_2njrj") +[sub_resource type="AtlasTexture" id="AtlasTexture_kohda"] +atlas = ExtResource("6_ct55r") region = Rect2(10752, 0, 512, 512) -[sub_resource type="AtlasTexture" id="AtlasTexture_1mboa"] -atlas = ExtResource("10_2njrj") +[sub_resource type="AtlasTexture" id="AtlasTexture_p3ggc"] +atlas = ExtResource("6_ct55r") region = Rect2(11264, 0, 512, 512) -[sub_resource type="AtlasTexture" id="AtlasTexture_r4pii"] -atlas = ExtResource("10_2njrj") +[sub_resource type="AtlasTexture" id="AtlasTexture_m6if5"] +atlas = ExtResource("6_ct55r") region = Rect2(11776, 0, 512, 512) -[sub_resource type="AtlasTexture" id="AtlasTexture_c86oc"] -atlas = ExtResource("10_2njrj") +[sub_resource type="AtlasTexture" id="AtlasTexture_pay7o"] +atlas = ExtResource("6_ct55r") region = Rect2(12288, 0, 512, 512) -[sub_resource type="AtlasTexture" id="AtlasTexture_gr1iv"] -atlas = ExtResource("10_2njrj") +[sub_resource type="AtlasTexture" id="AtlasTexture_wd3hy"] +atlas = ExtResource("6_ct55r") region = Rect2(12800, 0, 512, 512) -[sub_resource type="AtlasTexture" id="AtlasTexture_tiqds"] -atlas = ExtResource("10_2njrj") +[sub_resource type="AtlasTexture" id="AtlasTexture_sp1be"] +atlas = ExtResource("6_ct55r") region = Rect2(13312, 0, 512, 512) -[sub_resource type="AtlasTexture" id="AtlasTexture_pqof4"] -atlas = ExtResource("10_2njrj") +[sub_resource type="AtlasTexture" id="AtlasTexture_6hicy"] +atlas = ExtResource("6_ct55r") region = Rect2(13824, 0, 512, 512) -[sub_resource type="AtlasTexture" id="AtlasTexture_vwiyj"] -atlas = ExtResource("10_2njrj") +[sub_resource type="AtlasTexture" id="AtlasTexture_jdy3m"] +atlas = ExtResource("6_ct55r") region = Rect2(14336, 0, 512, 512) -[sub_resource type="AtlasTexture" id="AtlasTexture_0vfrk"] -atlas = ExtResource("10_2njrj") +[sub_resource type="AtlasTexture" id="AtlasTexture_8c84b"] +atlas = ExtResource("6_ct55r") region = Rect2(14848, 0, 512, 512) -[sub_resource type="AtlasTexture" id="AtlasTexture_foua5"] -atlas = ExtResource("10_2njrj") +[sub_resource type="AtlasTexture" id="AtlasTexture_cfdwb"] +atlas = ExtResource("6_ct55r") region = Rect2(15360, 0, 512, 512) -[sub_resource type="AtlasTexture" id="AtlasTexture_iwap5"] -atlas = ExtResource("10_2njrj") +[sub_resource type="AtlasTexture" id="AtlasTexture_iq4yq"] +atlas = ExtResource("6_ct55r") region = Rect2(15872, 0, 512, 512) -[sub_resource type="AtlasTexture" id="AtlasTexture_ybjbd"] -atlas = ExtResource("10_2njrj") +[sub_resource type="AtlasTexture" id="AtlasTexture_ciyfc"] +atlas = ExtResource("6_ct55r") region = Rect2(0, 512, 512, 512) -[sub_resource type="AtlasTexture" id="AtlasTexture_6gbi3"] -atlas = ExtResource("10_2njrj") +[sub_resource type="AtlasTexture" id="AtlasTexture_fkumg"] +atlas = ExtResource("6_ct55r") region = Rect2(512, 512, 512, 512) -[sub_resource type="AtlasTexture" id="AtlasTexture_5icts"] -atlas = ExtResource("10_2njrj") +[sub_resource type="AtlasTexture" id="AtlasTexture_1mqjn"] +atlas = ExtResource("6_ct55r") region = Rect2(1024, 512, 512, 512) -[sub_resource type="AtlasTexture" id="AtlasTexture_wmaou"] -atlas = ExtResource("10_2njrj") +[sub_resource type="AtlasTexture" id="AtlasTexture_472fd"] +atlas = ExtResource("6_ct55r") region = Rect2(1536, 512, 512, 512) -[sub_resource type="AtlasTexture" id="AtlasTexture_nhouy"] -atlas = ExtResource("10_2njrj") +[sub_resource type="AtlasTexture" id="AtlasTexture_drjw3"] +atlas = ExtResource("6_ct55r") region = Rect2(2048, 512, 512, 512) -[sub_resource type="AtlasTexture" id="AtlasTexture_kbbg1"] -atlas = ExtResource("10_2njrj") +[sub_resource type="AtlasTexture" id="AtlasTexture_majw8"] +atlas = ExtResource("6_ct55r") region = Rect2(2560, 512, 512, 512) -[sub_resource type="AtlasTexture" id="AtlasTexture_y2rv8"] -atlas = ExtResource("10_2njrj") +[sub_resource type="AtlasTexture" id="AtlasTexture_3ol0a"] +atlas = ExtResource("6_ct55r") region = Rect2(3072, 512, 512, 512) -[sub_resource type="AtlasTexture" id="AtlasTexture_c2m2o"] -atlas = ExtResource("10_2njrj") +[sub_resource type="AtlasTexture" id="AtlasTexture_eo78l"] +atlas = ExtResource("6_ct55r") region = Rect2(3584, 512, 512, 512) -[sub_resource type="AtlasTexture" id="AtlasTexture_3g2k0"] -atlas = ExtResource("10_2njrj") +[sub_resource type="AtlasTexture" id="AtlasTexture_6w1cs"] +atlas = ExtResource("6_ct55r") region = Rect2(4096, 512, 512, 512) -[sub_resource type="AtlasTexture" id="AtlasTexture_xs4ps"] -atlas = ExtResource("10_2njrj") +[sub_resource type="AtlasTexture" id="AtlasTexture_q1vex"] +atlas = ExtResource("6_ct55r") region = Rect2(4608, 512, 512, 512) -[sub_resource type="AtlasTexture" id="AtlasTexture_5h4w3"] -atlas = ExtResource("10_2njrj") +[sub_resource type="AtlasTexture" id="AtlasTexture_ma4v4"] +atlas = ExtResource("6_ct55r") region = Rect2(5120, 512, 512, 512) -[sub_resource type="SpriteFrames" id="SpriteFrames_pbcxe"] -animations = [{ -"frames": [{ -"duration": 1.0, -"texture": SubResource("AtlasTexture_x5pja") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_47aoo") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_lh0hw") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_jwo4s") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_1gvns") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_a8r0k") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_lel0q") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_2r2g5") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_na483") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_vc6qm") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_ejbn4") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_lysy5") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_kbe1o") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_wt6a3") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_4llcp") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_7auqt") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_b0whh") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_g6nk6") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_rvnij") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_bjd72") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_6tho6") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_s3hb6") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_1mboa") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_r4pii") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_c86oc") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_gr1iv") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_tiqds") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_pqof4") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_vwiyj") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_0vfrk") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_foua5") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_iwap5") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_ybjbd") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_6gbi3") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_5icts") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_wmaou") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_nhouy") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_kbbg1") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_y2rv8") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_c2m2o") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_3g2k0") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_xs4ps") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_5h4w3") -}], -"loop": false, -"name": &"default", -"speed": 64.0 -}] - -[sub_resource type="AtlasTexture" id="AtlasTexture_evogj"] -atlas = ExtResource("11_f0ff4") -region = Rect2(512, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_vvc4q"] -atlas = ExtResource("11_f0ff4") -region = Rect2(1024, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_otxug"] -atlas = ExtResource("11_f0ff4") -region = Rect2(1536, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_08hfb"] -atlas = ExtResource("11_f0ff4") -region = Rect2(2048, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_0odsj"] -atlas = ExtResource("11_f0ff4") -region = Rect2(2560, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_5uluj"] -atlas = ExtResource("11_f0ff4") -region = Rect2(3072, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_k0o4y"] -atlas = ExtResource("11_f0ff4") -region = Rect2(3584, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_78cwo"] -atlas = ExtResource("11_f0ff4") -region = Rect2(4096, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_67h2r"] -atlas = ExtResource("11_f0ff4") -region = Rect2(4608, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_ucygo"] -atlas = ExtResource("11_f0ff4") -region = Rect2(5120, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_2lhef"] -atlas = ExtResource("11_f0ff4") -region = Rect2(5632, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_6ne3h"] -atlas = ExtResource("11_f0ff4") -region = Rect2(6144, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_tbg4l"] -atlas = ExtResource("11_f0ff4") -region = Rect2(6656, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_0fipv"] -atlas = ExtResource("11_f0ff4") -region = Rect2(7168, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_hh38x"] -atlas = ExtResource("11_f0ff4") -region = Rect2(7680, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_uyy48"] -atlas = ExtResource("11_f0ff4") -region = Rect2(8192, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_egvhq"] -atlas = ExtResource("11_f0ff4") -region = Rect2(8704, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_pbg5s"] -atlas = ExtResource("11_f0ff4") -region = Rect2(9216, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_ykwvj"] -atlas = ExtResource("11_f0ff4") -region = Rect2(9728, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_qo4cr"] -atlas = ExtResource("11_f0ff4") -region = Rect2(10240, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_ldo8t"] -atlas = ExtResource("11_f0ff4") -region = Rect2(10752, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_yu6r6"] -atlas = ExtResource("11_f0ff4") -region = Rect2(11264, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_to2k5"] -atlas = ExtResource("11_f0ff4") -region = Rect2(11776, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_l4s8g"] -atlas = ExtResource("11_f0ff4") -region = Rect2(12288, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_82h1f"] -atlas = ExtResource("11_f0ff4") -region = Rect2(12800, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_07n87"] -atlas = ExtResource("11_f0ff4") -region = Rect2(13312, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_0mxbk"] -atlas = ExtResource("11_f0ff4") -region = Rect2(13824, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_tmuj7"] -atlas = ExtResource("11_f0ff4") -region = Rect2(14336, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_8mcnl"] -atlas = ExtResource("11_f0ff4") -region = Rect2(14848, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_7x048"] -atlas = ExtResource("11_f0ff4") -region = Rect2(15360, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_5mmh7"] -atlas = ExtResource("11_f0ff4") -region = Rect2(15872, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_jp6gm"] -atlas = ExtResource("11_f0ff4") -region = Rect2(0, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_sutix"] -atlas = ExtResource("11_f0ff4") -region = Rect2(512, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_kj5l8"] -atlas = ExtResource("11_f0ff4") -region = Rect2(1024, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_2awj8"] -atlas = ExtResource("11_f0ff4") -region = Rect2(1536, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_j7fre"] -atlas = ExtResource("11_f0ff4") -region = Rect2(2048, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_h5gwo"] -atlas = ExtResource("11_f0ff4") -region = Rect2(2560, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_w8sto"] -atlas = ExtResource("11_f0ff4") -region = Rect2(3072, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_ke2jd"] -atlas = ExtResource("11_f0ff4") -region = Rect2(3584, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_slrju"] -atlas = ExtResource("11_f0ff4") -region = Rect2(4096, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_bieoj"] -atlas = ExtResource("11_f0ff4") -region = Rect2(4608, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_srppj"] -atlas = ExtResource("11_f0ff4") -region = Rect2(5120, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_agmyl"] -atlas = ExtResource("11_f0ff4") +[sub_resource type="AtlasTexture" id="AtlasTexture_lb80b"] +atlas = ExtResource("6_ct55r") region = Rect2(5632, 512, 512, 512) -[sub_resource type="AtlasTexture" id="AtlasTexture_wpi42"] -atlas = ExtResource("11_f0ff4") +[sub_resource type="AtlasTexture" id="AtlasTexture_bxp7j"] +atlas = ExtResource("6_ct55r") region = Rect2(6144, 512, 512, 512) -[sub_resource type="AtlasTexture" id="AtlasTexture_a4hye"] -atlas = ExtResource("11_f0ff4") +[sub_resource type="AtlasTexture" id="AtlasTexture_an18o"] +atlas = ExtResource("6_ct55r") region = Rect2(6656, 512, 512, 512) -[sub_resource type="AtlasTexture" id="AtlasTexture_77c84"] -atlas = ExtResource("11_f0ff4") +[sub_resource type="AtlasTexture" id="AtlasTexture_3b8aw"] +atlas = ExtResource("6_ct55r") region = Rect2(7168, 512, 512, 512) -[sub_resource type="AtlasTexture" id="AtlasTexture_jg465"] -atlas = ExtResource("11_f0ff4") +[sub_resource type="AtlasTexture" id="AtlasTexture_xxan3"] +atlas = ExtResource("6_ct55r") region = Rect2(7680, 512, 512, 512) -[sub_resource type="AtlasTexture" id="AtlasTexture_pojne"] -atlas = ExtResource("11_f0ff4") +[sub_resource type="AtlasTexture" id="AtlasTexture_f4nvu"] +atlas = ExtResource("6_ct55r") region = Rect2(8192, 512, 512, 512) -[sub_resource type="AtlasTexture" id="AtlasTexture_8u60h"] -atlas = ExtResource("11_f0ff4") +[sub_resource type="AtlasTexture" id="AtlasTexture_vd3cb"] +atlas = ExtResource("6_ct55r") region = Rect2(8704, 512, 512, 512) -[sub_resource type="AtlasTexture" id="AtlasTexture_xmnoy"] -atlas = ExtResource("11_f0ff4") +[sub_resource type="AtlasTexture" id="AtlasTexture_xd226"] +atlas = ExtResource("6_ct55r") region = Rect2(9216, 512, 512, 512) -[sub_resource type="AtlasTexture" id="AtlasTexture_4xasd"] -atlas = ExtResource("11_f0ff4") +[sub_resource type="AtlasTexture" id="AtlasTexture_qjjux"] +atlas = ExtResource("6_ct55r") region = Rect2(9728, 512, 512, 512) -[sub_resource type="AtlasTexture" id="AtlasTexture_ow2jb"] -atlas = ExtResource("11_f0ff4") +[sub_resource type="AtlasTexture" id="AtlasTexture_6tf7i"] +atlas = ExtResource("6_ct55r") region = Rect2(10240, 512, 512, 512) -[sub_resource type="AtlasTexture" id="AtlasTexture_ddsso"] -atlas = ExtResource("11_f0ff4") +[sub_resource type="AtlasTexture" id="AtlasTexture_oe2xt"] +atlas = ExtResource("6_ct55r") region = Rect2(10752, 512, 512, 512) -[sub_resource type="AtlasTexture" id="AtlasTexture_6i831"] -atlas = ExtResource("11_f0ff4") +[sub_resource type="AtlasTexture" id="AtlasTexture_ouspn"] +atlas = ExtResource("6_ct55r") region = Rect2(11264, 512, 512, 512) -[sub_resource type="AtlasTexture" id="AtlasTexture_ej8lx"] -atlas = ExtResource("11_f0ff4") +[sub_resource type="AtlasTexture" id="AtlasTexture_nyfyc"] +atlas = ExtResource("6_ct55r") region = Rect2(11776, 512, 512, 512) -[sub_resource type="AtlasTexture" id="AtlasTexture_k6ixp"] -atlas = ExtResource("11_f0ff4") +[sub_resource type="AtlasTexture" id="AtlasTexture_obvu5"] +atlas = ExtResource("6_ct55r") region = Rect2(12288, 512, 512, 512) -[sub_resource type="AtlasTexture" id="AtlasTexture_dwcgt"] -atlas = ExtResource("11_f0ff4") +[sub_resource type="AtlasTexture" id="AtlasTexture_lrr4w"] +atlas = ExtResource("6_ct55r") region = Rect2(12800, 512, 512, 512) -[sub_resource type="AtlasTexture" id="AtlasTexture_ogett"] -atlas = ExtResource("11_f0ff4") +[sub_resource type="AtlasTexture" id="AtlasTexture_jsibr"] +atlas = ExtResource("6_ct55r") region = Rect2(13312, 512, 512, 512) -[sub_resource type="AtlasTexture" id="AtlasTexture_2un7h"] -atlas = ExtResource("11_f0ff4") +[sub_resource type="AtlasTexture" id="AtlasTexture_fc4nu"] +atlas = ExtResource("6_ct55r") region = Rect2(13824, 512, 512, 512) -[sub_resource type="AtlasTexture" id="AtlasTexture_ryf4k"] -atlas = ExtResource("11_f0ff4") +[sub_resource type="AtlasTexture" id="AtlasTexture_r1de4"] +atlas = ExtResource("6_ct55r") region = Rect2(14336, 512, 512, 512) -[sub_resource type="AtlasTexture" id="AtlasTexture_6cf18"] -atlas = ExtResource("11_f0ff4") +[sub_resource type="AtlasTexture" id="AtlasTexture_v20g7"] +atlas = ExtResource("6_ct55r") region = Rect2(14848, 512, 512, 512) -[sub_resource type="AtlasTexture" id="AtlasTexture_n1i7b"] -atlas = ExtResource("11_f0ff4") +[sub_resource type="AtlasTexture" id="AtlasTexture_sg1lj"] +atlas = ExtResource("6_ct55r") region = Rect2(15360, 512, 512, 512) -[sub_resource type="AtlasTexture" id="AtlasTexture_vxrxh"] -atlas = ExtResource("11_f0ff4") +[sub_resource type="AtlasTexture" id="AtlasTexture_npfnd"] +atlas = ExtResource("6_ct55r") region = Rect2(15872, 512, 512, 512) -[sub_resource type="AtlasTexture" id="AtlasTexture_87se0"] -atlas = ExtResource("11_f0ff4") +[sub_resource type="AtlasTexture" id="AtlasTexture_ob8y1"] +atlas = ExtResource("6_ct55r") region = Rect2(0, 1024, 512, 512) -[sub_resource type="AtlasTexture" id="AtlasTexture_qal4r"] -atlas = ExtResource("11_f0ff4") +[sub_resource type="AtlasTexture" id="AtlasTexture_mdjr1"] +atlas = ExtResource("6_ct55r") region = Rect2(512, 1024, 512, 512) -[sub_resource type="AtlasTexture" id="AtlasTexture_ev83m"] -atlas = ExtResource("11_f0ff4") +[sub_resource type="AtlasTexture" id="AtlasTexture_101vw"] +atlas = ExtResource("6_ct55r") region = Rect2(1024, 1024, 512, 512) -[sub_resource type="AtlasTexture" id="AtlasTexture_lgoen"] -atlas = ExtResource("11_f0ff4") +[sub_resource type="AtlasTexture" id="AtlasTexture_eh3ia"] +atlas = ExtResource("6_ct55r") region = Rect2(1536, 1024, 512, 512) -[sub_resource type="AtlasTexture" id="AtlasTexture_o1bhw"] -atlas = ExtResource("11_f0ff4") +[sub_resource type="AtlasTexture" id="AtlasTexture_jxubn"] +atlas = ExtResource("6_ct55r") region = Rect2(2048, 1024, 512, 512) -[sub_resource type="AtlasTexture" id="AtlasTexture_ul0o3"] -atlas = ExtResource("11_f0ff4") +[sub_resource type="AtlasTexture" id="AtlasTexture_4xb27"] +atlas = ExtResource("6_ct55r") region = Rect2(2560, 1024, 512, 512) -[sub_resource type="AtlasTexture" id="AtlasTexture_kocca"] -atlas = ExtResource("11_f0ff4") +[sub_resource type="AtlasTexture" id="AtlasTexture_ao4b5"] +atlas = ExtResource("6_ct55r") region = Rect2(3072, 1024, 512, 512) -[sub_resource type="AtlasTexture" id="AtlasTexture_5jj4v"] -atlas = ExtResource("11_f0ff4") +[sub_resource type="AtlasTexture" id="AtlasTexture_7kx2t"] +atlas = ExtResource("6_ct55r") region = Rect2(3584, 1024, 512, 512) -[sub_resource type="AtlasTexture" id="AtlasTexture_74hfd"] -atlas = ExtResource("11_f0ff4") +[sub_resource type="AtlasTexture" id="AtlasTexture_8ick8"] +atlas = ExtResource("6_ct55r") region = Rect2(4096, 1024, 512, 512) -[sub_resource type="AtlasTexture" id="AtlasTexture_2yjsl"] -atlas = ExtResource("11_f0ff4") +[sub_resource type="AtlasTexture" id="AtlasTexture_1nbsb"] +atlas = ExtResource("6_ct55r") region = Rect2(4608, 1024, 512, 512) -[sub_resource type="AtlasTexture" id="AtlasTexture_l0jva"] -atlas = ExtResource("11_f0ff4") +[sub_resource type="AtlasTexture" id="AtlasTexture_ana2x"] +atlas = ExtResource("6_ct55r") region = Rect2(5120, 1024, 512, 512) -[sub_resource type="AtlasTexture" id="AtlasTexture_rtx3c"] -atlas = ExtResource("11_f0ff4") +[sub_resource type="AtlasTexture" id="AtlasTexture_cg2jm"] +atlas = ExtResource("6_ct55r") region = Rect2(5632, 1024, 512, 512) -[sub_resource type="AtlasTexture" id="AtlasTexture_pn6ep"] -atlas = ExtResource("11_f0ff4") +[sub_resource type="AtlasTexture" id="AtlasTexture_hbd3a"] +atlas = ExtResource("6_ct55r") region = Rect2(6144, 1024, 512, 512) -[sub_resource type="AtlasTexture" id="AtlasTexture_jhp22"] -atlas = ExtResource("11_f0ff4") +[sub_resource type="AtlasTexture" id="AtlasTexture_5afox"] +atlas = ExtResource("6_ct55r") region = Rect2(6656, 1024, 512, 512) -[sub_resource type="AtlasTexture" id="AtlasTexture_gh4ly"] -atlas = ExtResource("11_f0ff4") +[sub_resource type="AtlasTexture" id="AtlasTexture_0uoep"] +atlas = ExtResource("6_ct55r") region = Rect2(7168, 1024, 512, 512) -[sub_resource type="AtlasTexture" id="AtlasTexture_1stf5"] -atlas = ExtResource("11_f0ff4") +[sub_resource type="AtlasTexture" id="AtlasTexture_pxik2"] +atlas = ExtResource("6_ct55r") region = Rect2(7680, 1024, 512, 512) -[sub_resource type="AtlasTexture" id="AtlasTexture_22gs6"] -atlas = ExtResource("11_f0ff4") +[sub_resource type="AtlasTexture" id="AtlasTexture_b7evm"] +atlas = ExtResource("6_ct55r") region = Rect2(8192, 1024, 512, 512) -[sub_resource type="AtlasTexture" id="AtlasTexture_dkggu"] -atlas = ExtResource("11_f0ff4") +[sub_resource type="AtlasTexture" id="AtlasTexture_erwam"] +atlas = ExtResource("6_ct55r") region = Rect2(8704, 1024, 512, 512) -[sub_resource type="SpriteFrames" id="SpriteFrames_nfb16"] -animations = [{ -"frames": [{ -"duration": 1.0, -"texture": SubResource("AtlasTexture_evogj") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_vvc4q") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_otxug") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_08hfb") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_0odsj") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_5uluj") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_k0o4y") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_78cwo") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_67h2r") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_ucygo") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_2lhef") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_6ne3h") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_tbg4l") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_0fipv") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_hh38x") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_uyy48") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_egvhq") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_pbg5s") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_ykwvj") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_qo4cr") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_ldo8t") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_yu6r6") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_to2k5") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_l4s8g") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_82h1f") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_07n87") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_0mxbk") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_tmuj7") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_8mcnl") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_7x048") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_5mmh7") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_jp6gm") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_sutix") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_kj5l8") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_2awj8") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_j7fre") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_h5gwo") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_w8sto") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_ke2jd") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_slrju") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_bieoj") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_srppj") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_agmyl") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_wpi42") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_a4hye") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_77c84") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_jg465") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_pojne") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_8u60h") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_xmnoy") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_4xasd") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_ow2jb") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_ddsso") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_6i831") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_ej8lx") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_k6ixp") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_dwcgt") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_ogett") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_2un7h") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_ryf4k") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_6cf18") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_n1i7b") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_vxrxh") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_87se0") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_qal4r") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_ev83m") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_lgoen") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_o1bhw") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_ul0o3") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_kocca") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_5jj4v") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_74hfd") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_2yjsl") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_l0jva") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_rtx3c") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_pn6ep") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_jhp22") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_gh4ly") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_1stf5") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_22gs6") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_dkggu") -}], -"loop": false, -"name": &"default", -"speed": 64.0 -}] - -[sub_resource type="AtlasTexture" id="AtlasTexture_jfyyi"] -atlas = ExtResource("12_74hqa") -region = Rect2(0, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_73n15"] -atlas = ExtResource("12_74hqa") -region = Rect2(512, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_46poj"] -atlas = ExtResource("12_74hqa") -region = Rect2(1024, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_ua0fy"] -atlas = ExtResource("12_74hqa") -region = Rect2(1536, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_ucsgn"] -atlas = ExtResource("12_74hqa") -region = Rect2(2048, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_c70d3"] -atlas = ExtResource("12_74hqa") -region = Rect2(2560, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_8cv7j"] -atlas = ExtResource("12_74hqa") -region = Rect2(3072, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_bi5dq"] -atlas = ExtResource("12_74hqa") -region = Rect2(3584, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_fuwfv"] -atlas = ExtResource("12_74hqa") -region = Rect2(4096, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_oevub"] -atlas = ExtResource("12_74hqa") -region = Rect2(4608, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_kcnxw"] -atlas = ExtResource("12_74hqa") -region = Rect2(5120, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_14f5p"] -atlas = ExtResource("12_74hqa") -region = Rect2(5632, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_k6pkx"] -atlas = ExtResource("12_74hqa") -region = Rect2(6144, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_sq73w"] -atlas = ExtResource("12_74hqa") -region = Rect2(6656, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_p4t0c"] -atlas = ExtResource("12_74hqa") -region = Rect2(7168, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_ya1bk"] -atlas = ExtResource("12_74hqa") -region = Rect2(7680, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_7lr30"] -atlas = ExtResource("12_74hqa") -region = Rect2(8192, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_imnuj"] -atlas = ExtResource("12_74hqa") -region = Rect2(8704, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_12h30"] -atlas = ExtResource("12_74hqa") -region = Rect2(9216, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_8vwdk"] -atlas = ExtResource("12_74hqa") -region = Rect2(9728, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_bij44"] -atlas = ExtResource("12_74hqa") -region = Rect2(10240, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_dpstp"] -atlas = ExtResource("12_74hqa") -region = Rect2(10752, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_4bmlc"] -atlas = ExtResource("12_74hqa") -region = Rect2(11264, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_5bkom"] -atlas = ExtResource("12_74hqa") -region = Rect2(11776, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_jjlvt"] -atlas = ExtResource("12_74hqa") -region = Rect2(12288, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_sqwil"] -atlas = ExtResource("12_74hqa") -region = Rect2(12800, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_16eo6"] -atlas = ExtResource("12_74hqa") -region = Rect2(13312, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_ox45j"] -atlas = ExtResource("12_74hqa") -region = Rect2(13824, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_vbgjx"] -atlas = ExtResource("12_74hqa") -region = Rect2(14336, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_42ty6"] -atlas = ExtResource("12_74hqa") -region = Rect2(14848, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_37ge7"] -atlas = ExtResource("12_74hqa") -region = Rect2(15360, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_fyylb"] -atlas = ExtResource("12_74hqa") -region = Rect2(15872, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_h7lkw"] -atlas = ExtResource("12_74hqa") -region = Rect2(0, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_5g8op"] -atlas = ExtResource("12_74hqa") -region = Rect2(512, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_7a1xg"] -atlas = ExtResource("12_74hqa") -region = Rect2(1024, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_02gys"] -atlas = ExtResource("12_74hqa") -region = Rect2(1536, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_rhpvh"] -atlas = ExtResource("12_74hqa") -region = Rect2(2048, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_p1un1"] -atlas = ExtResource("12_74hqa") -region = Rect2(2560, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_nb4cq"] -atlas = ExtResource("12_74hqa") -region = Rect2(3072, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_cnyix"] -atlas = ExtResource("12_74hqa") -region = Rect2(3584, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_58m70"] -atlas = ExtResource("12_74hqa") -region = Rect2(4096, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_l7c4m"] -atlas = ExtResource("12_74hqa") -region = Rect2(4608, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_04cm7"] -atlas = ExtResource("12_74hqa") -region = Rect2(5120, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_cqsul"] -atlas = ExtResource("12_74hqa") -region = Rect2(5632, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_ajbah"] -atlas = ExtResource("12_74hqa") -region = Rect2(6144, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_7rguc"] -atlas = ExtResource("12_74hqa") -region = Rect2(6656, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_w5dir"] -atlas = ExtResource("12_74hqa") -region = Rect2(7168, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_34gm2"] -atlas = ExtResource("12_74hqa") -region = Rect2(7680, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_fsw4h"] -atlas = ExtResource("12_74hqa") -region = Rect2(8192, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_aodty"] -atlas = ExtResource("12_74hqa") -region = Rect2(8704, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_pyqdk"] -atlas = ExtResource("12_74hqa") -region = Rect2(9216, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_en41m"] -atlas = ExtResource("12_74hqa") -region = Rect2(9728, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_a0pdj"] -atlas = ExtResource("12_74hqa") -region = Rect2(10240, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_vgc4w"] -atlas = ExtResource("12_74hqa") -region = Rect2(10752, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_2gki5"] -atlas = ExtResource("12_74hqa") -region = Rect2(11264, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_dbr2j"] -atlas = ExtResource("12_74hqa") -region = Rect2(11776, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_k8fmf"] -atlas = ExtResource("12_74hqa") -region = Rect2(12288, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_1mpss"] -atlas = ExtResource("12_74hqa") -region = Rect2(12800, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_53c8b"] -atlas = ExtResource("12_74hqa") -region = Rect2(13312, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_rcq5i"] -atlas = ExtResource("12_74hqa") -region = Rect2(13824, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_as0fu"] -atlas = ExtResource("12_74hqa") -region = Rect2(14336, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_bvvuv"] -atlas = ExtResource("12_74hqa") -region = Rect2(14848, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_owbt5"] -atlas = ExtResource("12_74hqa") -region = Rect2(15360, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_nilvr"] -atlas = ExtResource("12_74hqa") -region = Rect2(15872, 512, 512, 512) - -[sub_resource type="SpriteFrames" id="SpriteFrames_ynv1q"] -animations = [{ -"frames": [{ -"duration": 1.0, -"texture": SubResource("AtlasTexture_jfyyi") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_73n15") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_46poj") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_ua0fy") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_ucsgn") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_c70d3") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_8cv7j") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_bi5dq") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_fuwfv") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_oevub") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_kcnxw") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_14f5p") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_k6pkx") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_sq73w") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_p4t0c") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_ya1bk") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_7lr30") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_imnuj") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_12h30") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_8vwdk") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_bij44") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_dpstp") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_4bmlc") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_5bkom") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_jjlvt") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_sqwil") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_16eo6") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_ox45j") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_vbgjx") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_42ty6") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_37ge7") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_fyylb") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_h7lkw") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_5g8op") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_7a1xg") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_02gys") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_rhpvh") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_p1un1") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_nb4cq") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_cnyix") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_58m70") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_l7c4m") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_04cm7") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_cqsul") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_ajbah") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_7rguc") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_w5dir") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_34gm2") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_fsw4h") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_aodty") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_pyqdk") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_en41m") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_a0pdj") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_vgc4w") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_2gki5") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_dbr2j") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_k8fmf") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_1mpss") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_53c8b") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_rcq5i") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_as0fu") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_bvvuv") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_owbt5") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_nilvr") -}], -"loop": false, -"name": &"default", -"speed": 64.0 -}] - -[sub_resource type="AtlasTexture" id="AtlasTexture_3e7br"] -atlas = ExtResource("13_pbthl") -region = Rect2(0, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_wqm76"] -atlas = ExtResource("13_pbthl") -region = Rect2(512, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_i5xew"] -atlas = ExtResource("13_pbthl") -region = Rect2(1024, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_yjj4w"] -atlas = ExtResource("13_pbthl") -region = Rect2(1536, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_j5skl"] -atlas = ExtResource("13_pbthl") -region = Rect2(2048, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_vowp7"] -atlas = ExtResource("13_pbthl") -region = Rect2(2560, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_ulb0d"] -atlas = ExtResource("13_pbthl") -region = Rect2(3072, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_p447u"] -atlas = ExtResource("13_pbthl") -region = Rect2(3584, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_m6dij"] -atlas = ExtResource("13_pbthl") -region = Rect2(4096, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_phict"] -atlas = ExtResource("13_pbthl") -region = Rect2(4608, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_2ghxf"] -atlas = ExtResource("13_pbthl") -region = Rect2(5120, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_5rptd"] -atlas = ExtResource("13_pbthl") -region = Rect2(5632, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_4xvys"] -atlas = ExtResource("13_pbthl") -region = Rect2(6144, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_x4hsv"] -atlas = ExtResource("13_pbthl") -region = Rect2(6656, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_b6y5s"] -atlas = ExtResource("13_pbthl") -region = Rect2(7168, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_x1v2p"] -atlas = ExtResource("13_pbthl") -region = Rect2(7680, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_nfhw0"] -atlas = ExtResource("13_pbthl") -region = Rect2(8192, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_6mgro"] -atlas = ExtResource("13_pbthl") -region = Rect2(8704, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_hcnwb"] -atlas = ExtResource("13_pbthl") -region = Rect2(9216, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_xjqsy"] -atlas = ExtResource("13_pbthl") -region = Rect2(9728, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_5vsbb"] -atlas = ExtResource("13_pbthl") -region = Rect2(10240, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_sytsi"] -atlas = ExtResource("13_pbthl") -region = Rect2(10752, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_dkkmv"] -atlas = ExtResource("13_pbthl") -region = Rect2(11264, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_c1hbx"] -atlas = ExtResource("13_pbthl") -region = Rect2(11776, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_ohl26"] -atlas = ExtResource("13_pbthl") -region = Rect2(12288, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_0tycb"] -atlas = ExtResource("13_pbthl") -region = Rect2(12800, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_hg63x"] -atlas = ExtResource("13_pbthl") -region = Rect2(13312, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_3i6a6"] -atlas = ExtResource("13_pbthl") -region = Rect2(13824, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_6dk4x"] -atlas = ExtResource("13_pbthl") -region = Rect2(14336, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_ed5se"] -atlas = ExtResource("13_pbthl") -region = Rect2(14848, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_mabh3"] -atlas = ExtResource("13_pbthl") -region = Rect2(15360, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_c18vw"] -atlas = ExtResource("13_pbthl") -region = Rect2(15872, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_55you"] -atlas = ExtResource("13_pbthl") -region = Rect2(0, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_45v63"] -atlas = ExtResource("13_pbthl") -region = Rect2(512, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_1r363"] -atlas = ExtResource("13_pbthl") -region = Rect2(1024, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_ii2fs"] -atlas = ExtResource("13_pbthl") -region = Rect2(1536, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_sg5je"] -atlas = ExtResource("13_pbthl") -region = Rect2(2048, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_wk5e7"] -atlas = ExtResource("13_pbthl") -region = Rect2(2560, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_44drx"] -atlas = ExtResource("13_pbthl") -region = Rect2(3072, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_qk73h"] -atlas = ExtResource("13_pbthl") -region = Rect2(3584, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_j1oc8"] -atlas = ExtResource("13_pbthl") -region = Rect2(4096, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_d35wp"] -atlas = ExtResource("13_pbthl") -region = Rect2(4608, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_ihp45"] -atlas = ExtResource("13_pbthl") -region = Rect2(5120, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_3ecr7"] -atlas = ExtResource("13_pbthl") -region = Rect2(5632, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_2v6x8"] -atlas = ExtResource("13_pbthl") -region = Rect2(6144, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_xbups"] -atlas = ExtResource("13_pbthl") -region = Rect2(6656, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_coh2q"] -atlas = ExtResource("13_pbthl") -region = Rect2(7168, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_yw62j"] -atlas = ExtResource("13_pbthl") -region = Rect2(7680, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_cfcfo"] -atlas = ExtResource("13_pbthl") -region = Rect2(8192, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_tql8k"] -atlas = ExtResource("13_pbthl") -region = Rect2(8704, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_p6qdr"] -atlas = ExtResource("13_pbthl") -region = Rect2(9216, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_3ewss"] -atlas = ExtResource("13_pbthl") -region = Rect2(9728, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_skvf1"] -atlas = ExtResource("13_pbthl") -region = Rect2(10240, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_k0pu0"] -atlas = ExtResource("13_pbthl") -region = Rect2(10752, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_gbwma"] -atlas = ExtResource("13_pbthl") -region = Rect2(11264, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_7i3tm"] -atlas = ExtResource("13_pbthl") -region = Rect2(11776, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_f0i48"] -atlas = ExtResource("13_pbthl") -region = Rect2(12288, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_qnkhr"] -atlas = ExtResource("13_pbthl") -region = Rect2(12800, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_6qp6k"] -atlas = ExtResource("13_pbthl") -region = Rect2(13312, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_xu0q2"] -atlas = ExtResource("13_pbthl") -region = Rect2(13824, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_usml2"] -atlas = ExtResource("13_pbthl") -region = Rect2(14336, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_5o4r4"] -atlas = ExtResource("13_pbthl") -region = Rect2(14848, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_a3ffi"] -atlas = ExtResource("13_pbthl") -region = Rect2(15360, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_mlsem"] -atlas = ExtResource("13_pbthl") -region = Rect2(15872, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_64njb"] -atlas = ExtResource("13_pbthl") -region = Rect2(0, 1024, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_0ucll"] -atlas = ExtResource("13_pbthl") -region = Rect2(512, 1024, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_5f8wp"] -atlas = ExtResource("13_pbthl") -region = Rect2(1024, 1024, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_4cvk5"] -atlas = ExtResource("13_pbthl") -region = Rect2(1536, 1024, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_b1hpb"] -atlas = ExtResource("13_pbthl") -region = Rect2(2048, 1024, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_nmop6"] -atlas = ExtResource("13_pbthl") -region = Rect2(2560, 1024, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_28ame"] -atlas = ExtResource("13_pbthl") -region = Rect2(3072, 1024, 512, 512) - -[sub_resource type="SpriteFrames" id="SpriteFrames_5jq5w"] -animations = [{ -"frames": [{ -"duration": 1.0, -"texture": SubResource("AtlasTexture_3e7br") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_wqm76") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_i5xew") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_yjj4w") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_j5skl") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_vowp7") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_ulb0d") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_p447u") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_m6dij") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_phict") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_2ghxf") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_5rptd") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_4xvys") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_x4hsv") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_b6y5s") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_x1v2p") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_nfhw0") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_6mgro") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_hcnwb") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_xjqsy") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_5vsbb") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_sytsi") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_dkkmv") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_c1hbx") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_ohl26") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_0tycb") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_hg63x") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_3i6a6") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_6dk4x") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_ed5se") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_mabh3") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_c18vw") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_55you") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_45v63") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_1r363") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_ii2fs") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_sg5je") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_wk5e7") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_44drx") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_qk73h") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_j1oc8") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_d35wp") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_ihp45") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_3ecr7") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_2v6x8") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_xbups") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_coh2q") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_yw62j") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_cfcfo") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_tql8k") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_p6qdr") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_3ewss") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_skvf1") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_k0pu0") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_gbwma") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_7i3tm") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_f0i48") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_qnkhr") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_6qp6k") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_xu0q2") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_usml2") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_5o4r4") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_a3ffi") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_mlsem") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_64njb") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_0ucll") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_5f8wp") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_4cvk5") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_b1hpb") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_nmop6") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_28ame") -}], -"loop": false, -"name": &"default", -"speed": 32.0 -}] - -[sub_resource type="AtlasTexture" id="AtlasTexture_ws3eh"] -atlas = ExtResource("14_f0ff4") -region = Rect2(0, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_qhbok"] -atlas = ExtResource("14_f0ff4") -region = Rect2(512, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_krly2"] -atlas = ExtResource("14_f0ff4") -region = Rect2(1024, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_wueqi"] -atlas = ExtResource("14_f0ff4") -region = Rect2(1536, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_0niia"] -atlas = ExtResource("14_f0ff4") -region = Rect2(2048, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_ib7e8"] -atlas = ExtResource("14_f0ff4") -region = Rect2(2560, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_j3w6f"] -atlas = ExtResource("14_f0ff4") -region = Rect2(3072, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_jmu2p"] -atlas = ExtResource("14_f0ff4") -region = Rect2(3584, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_5x7i6"] -atlas = ExtResource("14_f0ff4") -region = Rect2(4096, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_1bguh"] -atlas = ExtResource("14_f0ff4") -region = Rect2(4608, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_boc08"] -atlas = ExtResource("14_f0ff4") -region = Rect2(5120, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_gv68p"] -atlas = ExtResource("14_f0ff4") -region = Rect2(5632, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_d8s2q"] -atlas = ExtResource("14_f0ff4") -region = Rect2(6144, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_khths"] -atlas = ExtResource("14_f0ff4") -region = Rect2(6656, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_d5jgv"] -atlas = ExtResource("14_f0ff4") -region = Rect2(7168, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_myihr"] -atlas = ExtResource("14_f0ff4") -region = Rect2(7680, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_6xmdi"] -atlas = ExtResource("14_f0ff4") -region = Rect2(8192, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_twhoc"] -atlas = ExtResource("14_f0ff4") -region = Rect2(8704, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_hmx2a"] -atlas = ExtResource("14_f0ff4") -region = Rect2(9216, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_73xdf"] -atlas = ExtResource("14_f0ff4") -region = Rect2(9728, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_2gajw"] -atlas = ExtResource("14_f0ff4") -region = Rect2(10240, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_haavv"] -atlas = ExtResource("14_f0ff4") -region = Rect2(10752, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_3icew"] -atlas = ExtResource("14_f0ff4") -region = Rect2(11264, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_m01s8"] -atlas = ExtResource("14_f0ff4") -region = Rect2(11776, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_54a4w"] -atlas = ExtResource("14_f0ff4") -region = Rect2(12288, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_cn6jd"] -atlas = ExtResource("14_f0ff4") -region = Rect2(12800, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_px7bo"] -atlas = ExtResource("14_f0ff4") -region = Rect2(13312, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_ravoj"] -atlas = ExtResource("14_f0ff4") -region = Rect2(13824, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_q73bg"] -atlas = ExtResource("14_f0ff4") -region = Rect2(14336, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_8n8yu"] -atlas = ExtResource("14_f0ff4") -region = Rect2(14848, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_imh7b"] -atlas = ExtResource("14_f0ff4") -region = Rect2(15360, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_rrx8l"] -atlas = ExtResource("14_f0ff4") -region = Rect2(15872, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_n4ji3"] -atlas = ExtResource("14_f0ff4") -region = Rect2(0, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_nod1d"] -atlas = ExtResource("14_f0ff4") -region = Rect2(512, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_7ebjd"] -atlas = ExtResource("14_f0ff4") -region = Rect2(1024, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_8e6at"] -atlas = ExtResource("14_f0ff4") -region = Rect2(1536, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_24ds5"] -atlas = ExtResource("14_f0ff4") -region = Rect2(2048, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_yqvyn"] -atlas = ExtResource("14_f0ff4") -region = Rect2(2560, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_n36q5"] -atlas = ExtResource("14_f0ff4") -region = Rect2(3072, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_vbl3d"] -atlas = ExtResource("14_f0ff4") -region = Rect2(3584, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_g4lvy"] -atlas = ExtResource("14_f0ff4") -region = Rect2(4096, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_artwg"] -atlas = ExtResource("14_f0ff4") -region = Rect2(4608, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_5ghsm"] -atlas = ExtResource("14_f0ff4") -region = Rect2(5120, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_txoo3"] -atlas = ExtResource("14_f0ff4") -region = Rect2(5632, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_vewmg"] -atlas = ExtResource("14_f0ff4") -region = Rect2(6144, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_extih"] -atlas = ExtResource("14_f0ff4") -region = Rect2(6656, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_ip0tr"] -atlas = ExtResource("14_f0ff4") -region = Rect2(7168, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_jgpn6"] -atlas = ExtResource("14_f0ff4") -region = Rect2(7680, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_cpv4r"] -atlas = ExtResource("14_f0ff4") -region = Rect2(8192, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_cm0ru"] -atlas = ExtResource("14_f0ff4") -region = Rect2(8704, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_y02k6"] -atlas = ExtResource("14_f0ff4") -region = Rect2(9216, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_c041o"] -atlas = ExtResource("14_f0ff4") -region = Rect2(9728, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_dfijc"] -atlas = ExtResource("14_f0ff4") -region = Rect2(10240, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_gqvyf"] -atlas = ExtResource("14_f0ff4") -region = Rect2(10752, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_2wour"] -atlas = ExtResource("14_f0ff4") -region = Rect2(11264, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_0prlq"] -atlas = ExtResource("14_f0ff4") -region = Rect2(11776, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_k5ump"] -atlas = ExtResource("14_f0ff4") -region = Rect2(12288, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_djrbv"] -atlas = ExtResource("14_f0ff4") -region = Rect2(12800, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_w2ff6"] -atlas = ExtResource("14_f0ff4") -region = Rect2(13312, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_i458d"] -atlas = ExtResource("14_f0ff4") -region = Rect2(13824, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_tc6mi"] -atlas = ExtResource("14_f0ff4") -region = Rect2(14336, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_w61n0"] -atlas = ExtResource("14_f0ff4") -region = Rect2(14848, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_cxlnx"] -atlas = ExtResource("14_f0ff4") -region = Rect2(15360, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_khqdf"] -atlas = ExtResource("14_f0ff4") -region = Rect2(15872, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_jkgp7"] -atlas = ExtResource("14_f0ff4") -region = Rect2(0, 1024, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_2k6uw"] -atlas = ExtResource("14_f0ff4") -region = Rect2(512, 1024, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_5n01t"] -atlas = ExtResource("14_f0ff4") -region = Rect2(1024, 1024, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_iwoqm"] -atlas = ExtResource("14_f0ff4") -region = Rect2(1536, 1024, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_xouyf"] -atlas = ExtResource("14_f0ff4") -region = Rect2(2048, 1024, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_xbbu5"] -atlas = ExtResource("14_f0ff4") -region = Rect2(2560, 1024, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_b66b3"] -atlas = ExtResource("14_f0ff4") -region = Rect2(3072, 1024, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_qc8wy"] -atlas = ExtResource("14_f0ff4") -region = Rect2(3584, 1024, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_tx7kv"] -atlas = ExtResource("14_f0ff4") -region = Rect2(4096, 1024, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_12du8"] -atlas = ExtResource("14_f0ff4") -region = Rect2(4608, 1024, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_47e7w"] -atlas = ExtResource("14_f0ff4") -region = Rect2(5120, 1024, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_d20vq"] -atlas = ExtResource("14_f0ff4") -region = Rect2(5632, 1024, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_fvk0y"] -atlas = ExtResource("14_f0ff4") -region = Rect2(6144, 1024, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_s76hw"] -atlas = ExtResource("14_f0ff4") -region = Rect2(6656, 1024, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_3vv2p"] -atlas = ExtResource("14_f0ff4") -region = Rect2(7168, 1024, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_54kko"] -atlas = ExtResource("14_f0ff4") -region = Rect2(7680, 1024, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_i5fap"] -atlas = ExtResource("14_f0ff4") -region = Rect2(8192, 1024, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_uydj7"] -atlas = ExtResource("14_f0ff4") -region = Rect2(8704, 1024, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_vv1ho"] -atlas = ExtResource("14_f0ff4") +[sub_resource type="AtlasTexture" id="AtlasTexture_8ipxg"] +atlas = ExtResource("6_ct55r") region = Rect2(9216, 1024, 512, 512) -[sub_resource type="AtlasTexture" id="AtlasTexture_6k6qf"] -atlas = ExtResource("14_f0ff4") +[sub_resource type="AtlasTexture" id="AtlasTexture_xc8dh"] +atlas = ExtResource("6_ct55r") region = Rect2(9728, 1024, 512, 512) -[sub_resource type="AtlasTexture" id="AtlasTexture_st1wt"] -atlas = ExtResource("14_f0ff4") +[sub_resource type="AtlasTexture" id="AtlasTexture_e7xex"] +atlas = ExtResource("6_ct55r") region = Rect2(10240, 1024, 512, 512) -[sub_resource type="AtlasTexture" id="AtlasTexture_t1xli"] -atlas = ExtResource("14_f0ff4") +[sub_resource type="AtlasTexture" id="AtlasTexture_5r0vv"] +atlas = ExtResource("6_ct55r") region = Rect2(10752, 1024, 512, 512) -[sub_resource type="AtlasTexture" id="AtlasTexture_ifuap"] -atlas = ExtResource("14_f0ff4") +[sub_resource type="AtlasTexture" id="AtlasTexture_q3u2t"] +atlas = ExtResource("6_ct55r") region = Rect2(11264, 1024, 512, 512) -[sub_resource type="AtlasTexture" id="AtlasTexture_1n7jb"] -atlas = ExtResource("14_f0ff4") +[sub_resource type="AtlasTexture" id="AtlasTexture_xabkh"] +atlas = ExtResource("6_ct55r") region = Rect2(11776, 1024, 512, 512) -[sub_resource type="AtlasTexture" id="AtlasTexture_a2fwv"] -atlas = ExtResource("14_f0ff4") +[sub_resource type="AtlasTexture" id="AtlasTexture_myll6"] +atlas = ExtResource("6_ct55r") region = Rect2(12288, 1024, 512, 512) -[sub_resource type="AtlasTexture" id="AtlasTexture_jnpqf"] -atlas = ExtResource("14_f0ff4") +[sub_resource type="AtlasTexture" id="AtlasTexture_xka1h"] +atlas = ExtResource("6_ct55r") region = Rect2(12800, 1024, 512, 512) -[sub_resource type="AtlasTexture" id="AtlasTexture_4tv33"] -atlas = ExtResource("14_f0ff4") +[sub_resource type="AtlasTexture" id="AtlasTexture_fgd0h"] +atlas = ExtResource("6_ct55r") region = Rect2(13312, 1024, 512, 512) -[sub_resource type="AtlasTexture" id="AtlasTexture_8fc6m"] -atlas = ExtResource("14_f0ff4") +[sub_resource type="AtlasTexture" id="AtlasTexture_pqgst"] +atlas = ExtResource("6_ct55r") region = Rect2(13824, 1024, 512, 512) -[sub_resource type="AtlasTexture" id="AtlasTexture_lgi0k"] -atlas = ExtResource("14_f0ff4") +[sub_resource type="AtlasTexture" id="AtlasTexture_efs5x"] +atlas = ExtResource("6_ct55r") region = Rect2(14336, 1024, 512, 512) -[sub_resource type="AtlasTexture" id="AtlasTexture_y7l0p"] -atlas = ExtResource("14_f0ff4") +[sub_resource type="AtlasTexture" id="AtlasTexture_mrho0"] +atlas = ExtResource("6_ct55r") region = Rect2(14848, 1024, 512, 512) -[sub_resource type="AtlasTexture" id="AtlasTexture_ob8qt"] -atlas = ExtResource("14_f0ff4") +[sub_resource type="AtlasTexture" id="AtlasTexture_72kyt"] +atlas = ExtResource("6_ct55r") region = Rect2(15360, 1024, 512, 512) -[sub_resource type="AtlasTexture" id="AtlasTexture_qje21"] -atlas = ExtResource("14_f0ff4") +[sub_resource type="AtlasTexture" id="AtlasTexture_kbg4l"] +atlas = ExtResource("6_ct55r") region = Rect2(15872, 1024, 512, 512) -[sub_resource type="AtlasTexture" id="AtlasTexture_02i6d"] -atlas = ExtResource("14_f0ff4") +[sub_resource type="AtlasTexture" id="AtlasTexture_8savx"] +atlas = ExtResource("6_ct55r") region = Rect2(0, 1536, 512, 512) -[sub_resource type="AtlasTexture" id="AtlasTexture_q2mew"] -atlas = ExtResource("14_f0ff4") +[sub_resource type="AtlasTexture" id="AtlasTexture_3ejk8"] +atlas = ExtResource("6_ct55r") region = Rect2(512, 1536, 512, 512) -[sub_resource type="AtlasTexture" id="AtlasTexture_k8jh7"] -atlas = ExtResource("14_f0ff4") +[sub_resource type="AtlasTexture" id="AtlasTexture_2vife"] +atlas = ExtResource("6_ct55r") region = Rect2(1024, 1536, 512, 512) -[sub_resource type="AtlasTexture" id="AtlasTexture_4g8km"] -atlas = ExtResource("14_f0ff4") +[sub_resource type="AtlasTexture" id="AtlasTexture_llhdh"] +atlas = ExtResource("6_ct55r") region = Rect2(1536, 1536, 512, 512) -[sub_resource type="AtlasTexture" id="AtlasTexture_l6xp2"] -atlas = ExtResource("14_f0ff4") +[sub_resource type="AtlasTexture" id="AtlasTexture_dvoxb"] +atlas = ExtResource("6_ct55r") region = Rect2(2048, 1536, 512, 512) -[sub_resource type="AtlasTexture" id="AtlasTexture_k3a12"] -atlas = ExtResource("14_f0ff4") +[sub_resource type="AtlasTexture" id="AtlasTexture_fq7mj"] +atlas = ExtResource("6_ct55r") region = Rect2(2560, 1536, 512, 512) -[sub_resource type="AtlasTexture" id="AtlasTexture_ijhp2"] -atlas = ExtResource("14_f0ff4") +[sub_resource type="AtlasTexture" id="AtlasTexture_milxy"] +atlas = ExtResource("6_ct55r") region = Rect2(3072, 1536, 512, 512) -[sub_resource type="AtlasTexture" id="AtlasTexture_vd7a6"] -atlas = ExtResource("14_f0ff4") +[sub_resource type="AtlasTexture" id="AtlasTexture_b2a65"] +atlas = ExtResource("6_ct55r") region = Rect2(3584, 1536, 512, 512) -[sub_resource type="AtlasTexture" id="AtlasTexture_psk6r"] -atlas = ExtResource("14_f0ff4") +[sub_resource type="AtlasTexture" id="AtlasTexture_0lh37"] +atlas = ExtResource("6_ct55r") region = Rect2(4096, 1536, 512, 512) -[sub_resource type="AtlasTexture" id="AtlasTexture_yi0p8"] -atlas = ExtResource("14_f0ff4") -region = Rect2(4608, 1536, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_klhaa"] -atlas = ExtResource("14_f0ff4") -region = Rect2(5120, 1536, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_f01qw"] -atlas = ExtResource("14_f0ff4") -region = Rect2(5632, 1536, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_ema0p"] -atlas = ExtResource("14_f0ff4") -region = Rect2(6144, 1536, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_v4g00"] -atlas = ExtResource("14_f0ff4") -region = Rect2(6656, 1536, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_f2tij"] -atlas = ExtResource("14_f0ff4") -region = Rect2(7168, 1536, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_ytfw0"] -atlas = ExtResource("14_f0ff4") -region = Rect2(7680, 1536, 512, 512) - -[sub_resource type="SpriteFrames" id="SpriteFrames_15ffm"] -animations = [{ -"frames": [{ -"duration": 1.0, -"texture": SubResource("AtlasTexture_ws3eh") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_qhbok") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_krly2") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_wueqi") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_0niia") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_ib7e8") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_j3w6f") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_jmu2p") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_5x7i6") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_1bguh") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_boc08") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_gv68p") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_d8s2q") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_khths") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_d5jgv") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_myihr") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_6xmdi") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_twhoc") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_hmx2a") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_73xdf") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_2gajw") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_haavv") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_3icew") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_m01s8") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_54a4w") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_cn6jd") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_px7bo") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_ravoj") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_q73bg") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_8n8yu") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_imh7b") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_rrx8l") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_n4ji3") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_nod1d") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_7ebjd") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_8e6at") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_24ds5") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_yqvyn") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_n36q5") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_vbl3d") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_g4lvy") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_artwg") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_5ghsm") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_txoo3") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_vewmg") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_extih") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_ip0tr") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_jgpn6") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_cpv4r") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_cm0ru") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_y02k6") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_c041o") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_dfijc") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_gqvyf") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_2wour") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_0prlq") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_k5ump") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_djrbv") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_w2ff6") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_i458d") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_tc6mi") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_w61n0") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_cxlnx") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_khqdf") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_jkgp7") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_2k6uw") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_5n01t") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_iwoqm") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_xouyf") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_xbbu5") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_b66b3") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_qc8wy") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_tx7kv") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_12du8") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_47e7w") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_d20vq") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_fvk0y") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_s76hw") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_3vv2p") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_54kko") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_i5fap") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_uydj7") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_vv1ho") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_6k6qf") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_st1wt") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_t1xli") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_ifuap") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_1n7jb") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_a2fwv") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_jnpqf") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_4tv33") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_8fc6m") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_lgi0k") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_y7l0p") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_ob8qt") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_qje21") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_02i6d") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_q2mew") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_k8jh7") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_4g8km") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_l6xp2") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_k3a12") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_ijhp2") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_vd7a6") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_psk6r") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_yi0p8") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_klhaa") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_f01qw") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_ema0p") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_v4g00") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_f2tij") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_ytfw0") -}], -"loop": true, -"name": &"default", -"speed": 64.0 -}] - [sub_resource type="AtlasTexture" id="AtlasTexture_ewjim"] atlas = ExtResource("14_jhq84") region = Rect2(0, 0, 512, 512) @@ -5618,134 +1733,6 @@ region = Rect2(13312, 512, 512, 512) atlas = ExtResource("14_jhq84") region = Rect2(13824, 512, 512, 512) -[sub_resource type="SpriteFrames" id="SpriteFrames_5mgfr"] -animations = [{ -"frames": [{ -"duration": 1.0, -"texture": SubResource("AtlasTexture_ewjim") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_q18k0") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_jwr5o") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_g1jys") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_1rqae") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_2r6k8") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_7fgw7") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_tl8u8") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_nv5mb") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_k4whq") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_gyyxf") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_63d8j") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_cssh4") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_1ym8e") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_qhaml") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_5hmf1") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_b3vow") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_avb8w") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_28l1m") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_hcw2b") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_0ugjo") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_4tm2o") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_4h287") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_dxbr7") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_7c43c") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_q5mg0") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_06x64") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_e31pm") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_ux4fx") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_i6nps") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_qf2ud") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_7ixxm") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_ky6ro") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_6uh4b") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_xwawv") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_g5er7") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_pmxfe") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_5jyev") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_n0jau") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_lbio7") -}], -"loop": false, -"name": &"default", -"speed": 64.0 -}] - [sub_resource type="AtlasTexture" id="AtlasTexture_na8n6"] atlas = ExtResource("15_flmxu") region = Rect2(0, 0, 512, 512) @@ -6606,10 +2593,1283 @@ region = Rect2(15360, 1024, 512, 512) atlas = ExtResource("16_ymsks") region = Rect2(15872, 1024, 512, 512) -[sub_resource type="SpriteFrames" id="SpriteFrames_my0pc"] +[sub_resource type="AtlasTexture" id="AtlasTexture_nopn5"] +atlas = ExtResource("23_2652b") +region = Rect2(0, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8744j"] +atlas = ExtResource("23_2652b") +region = Rect2(512, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_73itp"] +atlas = ExtResource("23_2652b") +region = Rect2(1024, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_udknf"] +atlas = ExtResource("23_2652b") +region = Rect2(1536, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4cn3c"] +atlas = ExtResource("23_2652b") +region = Rect2(2048, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t2q0r"] +atlas = ExtResource("23_2652b") +region = Rect2(2560, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ktcn0"] +atlas = ExtResource("23_2652b") +region = Rect2(3072, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1t7ua"] +atlas = ExtResource("23_2652b") +region = Rect2(3584, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_de11d"] +atlas = ExtResource("23_2652b") +region = Rect2(4096, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uiup0"] +atlas = ExtResource("23_2652b") +region = Rect2(4608, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h2y2x"] +atlas = ExtResource("23_2652b") +region = Rect2(5120, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w87tc"] +atlas = ExtResource("23_2652b") +region = Rect2(5632, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3uvd6"] +atlas = ExtResource("23_2652b") +region = Rect2(6144, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o0k2a"] +atlas = ExtResource("23_2652b") +region = Rect2(6656, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5w451"] +atlas = ExtResource("23_2652b") +region = Rect2(7168, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nw4v5"] +atlas = ExtResource("23_2652b") +region = Rect2(7680, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vlw8a"] +atlas = ExtResource("23_2652b") +region = Rect2(8192, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lokei"] +atlas = ExtResource("23_2652b") +region = Rect2(8704, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_217y4"] +atlas = ExtResource("23_2652b") +region = Rect2(9216, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_skejj"] +atlas = ExtResource("23_2652b") +region = Rect2(9728, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4a6k6"] +atlas = ExtResource("23_2652b") +region = Rect2(10240, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jqmwl"] +atlas = ExtResource("23_2652b") +region = Rect2(10752, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0gcsk"] +atlas = ExtResource("23_2652b") +region = Rect2(11264, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xrquc"] +atlas = ExtResource("23_2652b") +region = Rect2(11776, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qlerd"] +atlas = ExtResource("23_2652b") +region = Rect2(12288, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hyd01"] +atlas = ExtResource("23_2652b") +region = Rect2(12800, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_onylb"] +atlas = ExtResource("23_2652b") +region = Rect2(13312, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o8i4i"] +atlas = ExtResource("23_2652b") +region = Rect2(13824, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4mb1r"] +atlas = ExtResource("23_2652b") +region = Rect2(14336, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l80om"] +atlas = ExtResource("23_2652b") +region = Rect2(14848, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vfp4e"] +atlas = ExtResource("23_2652b") +region = Rect2(15360, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x2fx3"] +atlas = ExtResource("23_2652b") +region = Rect2(15872, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wycjd"] +atlas = ExtResource("23_2652b") +region = Rect2(0, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_osl5w"] +atlas = ExtResource("23_2652b") +region = Rect2(512, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wfmlc"] +atlas = ExtResource("23_2652b") +region = Rect2(1024, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nyonv"] +atlas = ExtResource("23_2652b") +region = Rect2(1536, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7ddxf"] +atlas = ExtResource("23_2652b") +region = Rect2(2048, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n0kog"] +atlas = ExtResource("23_2652b") +region = Rect2(2560, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j1mi2"] +atlas = ExtResource("23_2652b") +region = Rect2(3072, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j67jj"] +atlas = ExtResource("23_2652b") +region = Rect2(3584, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1ugv6"] +atlas = ExtResource("23_2652b") +region = Rect2(4096, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1p6jy"] +atlas = ExtResource("23_2652b") +region = Rect2(4608, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mmcuw"] +atlas = ExtResource("23_2652b") +region = Rect2(5120, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8x1i4"] +atlas = ExtResource("23_2652b") +region = Rect2(5632, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_undhx"] +atlas = ExtResource("23_2652b") +region = Rect2(6144, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rbcef"] +atlas = ExtResource("23_2652b") +region = Rect2(6656, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_av6uk"] +atlas = ExtResource("23_2652b") +region = Rect2(7168, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sgymg"] +atlas = ExtResource("23_2652b") +region = Rect2(7680, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_awcsm"] +atlas = ExtResource("23_2652b") +region = Rect2(8192, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v45v5"] +atlas = ExtResource("23_2652b") +region = Rect2(8704, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jjys1"] +atlas = ExtResource("23_2652b") +region = Rect2(9216, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_06gqo"] +atlas = ExtResource("23_2652b") +region = Rect2(9728, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qv5kj"] +atlas = ExtResource("23_2652b") +region = Rect2(10240, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sjk64"] +atlas = ExtResource("23_2652b") +region = Rect2(10752, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tmxyu"] +atlas = ExtResource("23_2652b") +region = Rect2(11264, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tuarh"] +atlas = ExtResource("23_2652b") +region = Rect2(11776, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2t1p8"] +atlas = ExtResource("23_2652b") +region = Rect2(12288, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ihmoq"] +atlas = ExtResource("23_2652b") +region = Rect2(12800, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kn7jf"] +atlas = ExtResource("23_2652b") +region = Rect2(13312, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w3r22"] +atlas = ExtResource("23_2652b") +region = Rect2(13824, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2gmht"] +atlas = ExtResource("23_2652b") +region = Rect2(14336, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_btlqd"] +atlas = ExtResource("23_2652b") +region = Rect2(14848, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3i0yp"] +atlas = ExtResource("23_2652b") +region = Rect2(15360, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_attmn"] +atlas = ExtResource("23_2652b") +region = Rect2(15872, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2i8hi"] +atlas = ExtResource("23_2652b") +region = Rect2(0, 1024, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fxw0h"] +atlas = ExtResource("23_2652b") +region = Rect2(512, 1024, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_okh71"] +atlas = ExtResource("23_2652b") +region = Rect2(1024, 1024, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ruyng"] +atlas = ExtResource("23_2652b") +region = Rect2(1536, 1024, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2l36d"] +atlas = ExtResource("23_2652b") +region = Rect2(2048, 1024, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5l03w"] +atlas = ExtResource("23_2652b") +region = Rect2(2560, 1024, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bod1o"] +atlas = ExtResource("23_2652b") +region = Rect2(3072, 1024, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yoom6"] +atlas = ExtResource("23_2652b") +region = Rect2(3584, 1024, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_icnyh"] +atlas = ExtResource("23_2652b") +region = Rect2(4096, 1024, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_um82f"] +atlas = ExtResource("23_2652b") +region = Rect2(4608, 1024, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wveq7"] +atlas = ExtResource("23_2652b") +region = Rect2(5120, 1024, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ecdot"] +atlas = ExtResource("23_2652b") +region = Rect2(5632, 1024, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_42rbi"] +atlas = ExtResource("23_2652b") +region = Rect2(6144, 1024, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s17pp"] +atlas = ExtResource("23_2652b") +region = Rect2(6656, 1024, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nqulb"] +atlas = ExtResource("23_2652b") +region = Rect2(7168, 1024, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4epey"] +atlas = ExtResource("23_2652b") +region = Rect2(7680, 1024, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m2my2"] +atlas = ExtResource("23_2652b") +region = Rect2(8192, 1024, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gxhf0"] +atlas = ExtResource("23_2652b") +region = Rect2(8704, 1024, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bweox"] +atlas = ExtResource("23_2652b") +region = Rect2(9216, 1024, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a5cr0"] +atlas = ExtResource("23_2652b") +region = Rect2(9728, 1024, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wwqjb"] +atlas = ExtResource("23_2652b") +region = Rect2(10240, 1024, 512, 512) + +[sub_resource type="SpriteFrames" id="SpriteFrames_cdih5"] animations = [{ "frames": [{ "duration": 1.0, +"texture": SubResource("AtlasTexture_34ew5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lubbs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xwx03") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jcjp2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kbohi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a73rr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_alfyq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_30ovq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tiaol") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s2lqj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yus6s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c8ayk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_47kvk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j3n21") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qvwgf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1wmf2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hns7m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v2bll") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nywm3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ty6f8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gonms") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ikt00") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i3brb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qdo00") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nkblr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0s36m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m6n0b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hrkfx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tea1s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i4gd4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rs53g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3miyd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l8k4d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p5y4w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ccumw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gisxk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tvl51") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6n813") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4wbhf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sbksr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_auygt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qgwn0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kuqlc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4cgil") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y6awi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xq7f4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jwtwf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pbqtn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jv1wl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eqri4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sopnf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bjmlk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_np0wk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cslkm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0xsma") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ju7ra") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5xrtn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cvu8n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4pqcw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w67m4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0qir6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bc1se") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u6k7b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wrn46") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kpcxo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7vdo2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_efg1q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sef0r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w2ff4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_imi5f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y1k5q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lig6t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c5vdy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oduka") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qx0sc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tyif7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1fl2b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qlwio") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nskmi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cxhec") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7jkvs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pl8s7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_316ag") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_68jb8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rmwaq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t3nc1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_124uj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oaelx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8jt6t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k3wgp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ooo52") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7wicg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gpbpi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7wd4v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tokek") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x1sux") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rk23o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5ovem") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pyrex") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_brhxu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_615d6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ma3hf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u0lx7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yowtu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_61r7h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_abr5v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_83udd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6n322") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u7e82") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s70gh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_51of3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ksayt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wg6sj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2r7fs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7hs80") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5t6bd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s1cgm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3uevs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bput3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vcps6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_txb53") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w6i7m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s5c8e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_moi3c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6etv1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d7uqy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ol14s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jex0j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yx8jj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iqv65") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2u7f3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ls1g4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f7m6k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_34tyb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3cp8x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p63yo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i4nci") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1on4w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vi1pk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h3xvw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ekxxp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gvirs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ujffs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_otw0t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aeo2c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ek7vt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oovgc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f5akt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a2y5f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6es3c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ok63c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yymor") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tkrun") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j33ad") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_41x22") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fl64p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xgkwm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o3512") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ywo1c") +}, { +"duration": 1.0, +"texture": null +}], +"loop": false, +"name": &"An Bradan", +"speed": 64.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_eu047") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h7sjr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bqkjw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_41ac8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xh3q8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c22uk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_klw70") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vta8l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kqdlc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_72rv6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aoc6b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_otw2v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5a3hy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pd5yn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t824t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_acn55") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yooul") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ik124") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rowo1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4b46x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_djbgf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kohda") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p3ggc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m6if5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pay7o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wd3hy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sp1be") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6hicy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jdy3m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8c84b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cfdwb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iq4yq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ciyfc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fkumg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1mqjn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_472fd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_drjw3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_majw8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3ol0a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eo78l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6w1cs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q1vex") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ma4v4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lb80b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bxp7j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_an18o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3b8aw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xxan3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f4nvu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vd3cb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xd226") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qjjux") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6tf7i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oe2xt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ouspn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nyfyc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_obvu5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lrr4w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jsibr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fc4nu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r1de4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v20g7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sg1lj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_npfnd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ob8y1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mdjr1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_101vw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eh3ia") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jxubn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4xb27") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ao4b5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7kx2t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8ick8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1nbsb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ana2x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cg2jm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hbd3a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5afox") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0uoep") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pxik2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b7evm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_erwam") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8ipxg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xc8dh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e7xex") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5r0vv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q3u2t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xabkh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_myll6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xka1h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fgd0h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pqgst") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_efs5x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mrho0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_72kyt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kbg4l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8savx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3ejk8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2vife") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_llhdh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dvoxb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fq7mj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_milxy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b2a65") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0lh37") +}, { +"duration": 1.0, +"texture": null +}], +"loop": false, +"name": &"Divinity Recall", +"speed": 32.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ewjim") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q18k0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jwr5o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g1jys") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1rqae") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2r6k8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7fgw7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tl8u8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nv5mb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k4whq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gyyxf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_63d8j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cssh4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1ym8e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qhaml") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5hmf1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b3vow") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_avb8w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_28l1m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hcw2b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0ugjo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4tm2o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4h287") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dxbr7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7c43c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q5mg0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_06x64") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e31pm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ux4fx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i6nps") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qf2ud") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7ixxm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ky6ro") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6uh4b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xwawv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g5er7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pmxfe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5jyev") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n0jau") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lbio7") +}], +"loop": false, +"name": &"Kyuuketsuki", +"speed": 42.0 +}, { +"frames": [{ +"duration": 1.0, "texture": SubResource("AtlasTexture_na8n6") }, { "duration": 1.0, @@ -7255,8 +4515,3264 @@ animations = [{ "texture": SubResource("AtlasTexture_c5mu7") }], "loop": false, -"name": &"default", -"speed": 64.01 +"name": &"Persiko", +"speed": 41.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_nopn5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8744j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_73itp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_udknf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4cn3c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t2q0r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ktcn0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1t7ua") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_de11d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uiup0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h2y2x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w87tc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3uvd6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o0k2a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5w451") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nw4v5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vlw8a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lokei") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_217y4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_skejj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4a6k6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jqmwl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0gcsk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xrquc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qlerd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hyd01") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_onylb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o8i4i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4mb1r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l80om") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vfp4e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x2fx3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wycjd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_osl5w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wfmlc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nyonv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7ddxf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n0kog") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j1mi2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j67jj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1ugv6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1p6jy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mmcuw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8x1i4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_undhx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rbcef") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_av6uk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sgymg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_awcsm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v45v5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jjys1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_06gqo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qv5kj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sjk64") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tmxyu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tuarh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2t1p8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ihmoq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kn7jf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w3r22") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2gmht") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_btlqd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3i0yp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_attmn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2i8hi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fxw0h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_okh71") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ruyng") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2l36d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5l03w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bod1o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yoom6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_icnyh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_um82f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wveq7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ecdot") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_42rbi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s17pp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nqulb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4epey") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m2my2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gxhf0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bweox") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a5cr0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wwqjb") +}], +"loop": false, +"name": &"Radial", +"speed": 64.0 +}] + +[sub_resource type="AtlasTexture" id="AtlasTexture_gx6yx"] +atlas = ExtResource("5_bngr8") +region = Rect2(0, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5gt6s"] +atlas = ExtResource("5_bngr8") +region = Rect2(512, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_syglp"] +atlas = ExtResource("5_bngr8") +region = Rect2(1024, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o81wv"] +atlas = ExtResource("5_bngr8") +region = Rect2(1536, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uc14s"] +atlas = ExtResource("5_bngr8") +region = Rect2(2048, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_84vg4"] +atlas = ExtResource("5_bngr8") +region = Rect2(2560, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_18gts"] +atlas = ExtResource("5_bngr8") +region = Rect2(3072, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sq31b"] +atlas = ExtResource("5_bngr8") +region = Rect2(3584, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ucph0"] +atlas = ExtResource("5_bngr8") +region = Rect2(4096, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5pe5a"] +atlas = ExtResource("5_bngr8") +region = Rect2(4608, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iqf1f"] +atlas = ExtResource("5_bngr8") +region = Rect2(5120, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_58hdl"] +atlas = ExtResource("5_bngr8") +region = Rect2(5632, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3dk5l"] +atlas = ExtResource("5_bngr8") +region = Rect2(6144, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pmdkx"] +atlas = ExtResource("5_bngr8") +region = Rect2(6656, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_delwj"] +atlas = ExtResource("5_bngr8") +region = Rect2(7168, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c0hrp"] +atlas = ExtResource("5_bngr8") +region = Rect2(7680, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nm3ps"] +atlas = ExtResource("5_bngr8") +region = Rect2(8192, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ax7gm"] +atlas = ExtResource("5_bngr8") +region = Rect2(8704, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xdngf"] +atlas = ExtResource("5_bngr8") +region = Rect2(9216, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qjoth"] +atlas = ExtResource("5_bngr8") +region = Rect2(9728, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ir6la"] +atlas = ExtResource("5_bngr8") +region = Rect2(10240, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kvy4v"] +atlas = ExtResource("5_bngr8") +region = Rect2(10752, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6y4ab"] +atlas = ExtResource("5_bngr8") +region = Rect2(11264, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hhwgf"] +atlas = ExtResource("5_bngr8") +region = Rect2(11776, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l178f"] +atlas = ExtResource("5_bngr8") +region = Rect2(12288, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0npj3"] +atlas = ExtResource("5_bngr8") +region = Rect2(12800, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dcc3e"] +atlas = ExtResource("5_bngr8") +region = Rect2(13312, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iqcna"] +atlas = ExtResource("5_bngr8") +region = Rect2(13824, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0u5oq"] +atlas = ExtResource("5_bngr8") +region = Rect2(14336, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qninq"] +atlas = ExtResource("5_bngr8") +region = Rect2(14848, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5vt5r"] +atlas = ExtResource("5_bngr8") +region = Rect2(15360, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a3n34"] +atlas = ExtResource("5_bngr8") +region = Rect2(15872, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hh1fj"] +atlas = ExtResource("5_bngr8") +region = Rect2(0, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4ldcx"] +atlas = ExtResource("5_bngr8") +region = Rect2(512, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_07bvn"] +atlas = ExtResource("5_bngr8") +region = Rect2(1024, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rqdqm"] +atlas = ExtResource("5_bngr8") +region = Rect2(1536, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mjb05"] +atlas = ExtResource("5_bngr8") +region = Rect2(2048, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r0mys"] +atlas = ExtResource("5_bngr8") +region = Rect2(2560, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ro8ch"] +atlas = ExtResource("5_bngr8") +region = Rect2(3072, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c5lge"] +atlas = ExtResource("5_bngr8") +region = Rect2(3584, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o0af2"] +atlas = ExtResource("5_bngr8") +region = Rect2(4096, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ht5qq"] +atlas = ExtResource("5_bngr8") +region = Rect2(4608, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_spm6q"] +atlas = ExtResource("5_bngr8") +region = Rect2(5120, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_baipy"] +atlas = ExtResource("5_bngr8") +region = Rect2(5632, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i0amg"] +atlas = ExtResource("5_bngr8") +region = Rect2(6144, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xpptc"] +atlas = ExtResource("5_bngr8") +region = Rect2(6656, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bxeg4"] +atlas = ExtResource("5_bngr8") +region = Rect2(7168, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xgu6y"] +atlas = ExtResource("5_bngr8") +region = Rect2(7680, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_53n88"] +atlas = ExtResource("5_bngr8") +region = Rect2(8192, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gwmts"] +atlas = ExtResource("5_bngr8") +region = Rect2(8704, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7wi2f"] +atlas = ExtResource("5_bngr8") +region = Rect2(9216, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jfyyi"] +atlas = ExtResource("12_74hqa") +region = Rect2(0, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_73n15"] +atlas = ExtResource("12_74hqa") +region = Rect2(512, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_46poj"] +atlas = ExtResource("12_74hqa") +region = Rect2(1024, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ua0fy"] +atlas = ExtResource("12_74hqa") +region = Rect2(1536, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ucsgn"] +atlas = ExtResource("12_74hqa") +region = Rect2(2048, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c70d3"] +atlas = ExtResource("12_74hqa") +region = Rect2(2560, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8cv7j"] +atlas = ExtResource("12_74hqa") +region = Rect2(3072, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bi5dq"] +atlas = ExtResource("12_74hqa") +region = Rect2(3584, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fuwfv"] +atlas = ExtResource("12_74hqa") +region = Rect2(4096, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oevub"] +atlas = ExtResource("12_74hqa") +region = Rect2(4608, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kcnxw"] +atlas = ExtResource("12_74hqa") +region = Rect2(5120, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_14f5p"] +atlas = ExtResource("12_74hqa") +region = Rect2(5632, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k6pkx"] +atlas = ExtResource("12_74hqa") +region = Rect2(6144, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sq73w"] +atlas = ExtResource("12_74hqa") +region = Rect2(6656, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p4t0c"] +atlas = ExtResource("12_74hqa") +region = Rect2(7168, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ya1bk"] +atlas = ExtResource("12_74hqa") +region = Rect2(7680, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7lr30"] +atlas = ExtResource("12_74hqa") +region = Rect2(8192, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_imnuj"] +atlas = ExtResource("12_74hqa") +region = Rect2(8704, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_12h30"] +atlas = ExtResource("12_74hqa") +region = Rect2(9216, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8vwdk"] +atlas = ExtResource("12_74hqa") +region = Rect2(9728, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bij44"] +atlas = ExtResource("12_74hqa") +region = Rect2(10240, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dpstp"] +atlas = ExtResource("12_74hqa") +region = Rect2(10752, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4bmlc"] +atlas = ExtResource("12_74hqa") +region = Rect2(11264, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5bkom"] +atlas = ExtResource("12_74hqa") +region = Rect2(11776, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jjlvt"] +atlas = ExtResource("12_74hqa") +region = Rect2(12288, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sqwil"] +atlas = ExtResource("12_74hqa") +region = Rect2(12800, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_16eo6"] +atlas = ExtResource("12_74hqa") +region = Rect2(13312, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ox45j"] +atlas = ExtResource("12_74hqa") +region = Rect2(13824, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vbgjx"] +atlas = ExtResource("12_74hqa") +region = Rect2(14336, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_42ty6"] +atlas = ExtResource("12_74hqa") +region = Rect2(14848, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_37ge7"] +atlas = ExtResource("12_74hqa") +region = Rect2(15360, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fyylb"] +atlas = ExtResource("12_74hqa") +region = Rect2(15872, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h7lkw"] +atlas = ExtResource("12_74hqa") +region = Rect2(0, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5g8op"] +atlas = ExtResource("12_74hqa") +region = Rect2(512, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7a1xg"] +atlas = ExtResource("12_74hqa") +region = Rect2(1024, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_02gys"] +atlas = ExtResource("12_74hqa") +region = Rect2(1536, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rhpvh"] +atlas = ExtResource("12_74hqa") +region = Rect2(2048, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p1un1"] +atlas = ExtResource("12_74hqa") +region = Rect2(2560, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nb4cq"] +atlas = ExtResource("12_74hqa") +region = Rect2(3072, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cnyix"] +atlas = ExtResource("12_74hqa") +region = Rect2(3584, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_58m70"] +atlas = ExtResource("12_74hqa") +region = Rect2(4096, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l7c4m"] +atlas = ExtResource("12_74hqa") +region = Rect2(4608, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_04cm7"] +atlas = ExtResource("12_74hqa") +region = Rect2(5120, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cqsul"] +atlas = ExtResource("12_74hqa") +region = Rect2(5632, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ajbah"] +atlas = ExtResource("12_74hqa") +region = Rect2(6144, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7rguc"] +atlas = ExtResource("12_74hqa") +region = Rect2(6656, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w5dir"] +atlas = ExtResource("12_74hqa") +region = Rect2(7168, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_34gm2"] +atlas = ExtResource("12_74hqa") +region = Rect2(7680, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fsw4h"] +atlas = ExtResource("12_74hqa") +region = Rect2(8192, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aodty"] +atlas = ExtResource("12_74hqa") +region = Rect2(8704, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pyqdk"] +atlas = ExtResource("12_74hqa") +region = Rect2(9216, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_en41m"] +atlas = ExtResource("12_74hqa") +region = Rect2(9728, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a0pdj"] +atlas = ExtResource("12_74hqa") +region = Rect2(10240, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vgc4w"] +atlas = ExtResource("12_74hqa") +region = Rect2(10752, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2gki5"] +atlas = ExtResource("12_74hqa") +region = Rect2(11264, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dbr2j"] +atlas = ExtResource("12_74hqa") +region = Rect2(11776, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k8fmf"] +atlas = ExtResource("12_74hqa") +region = Rect2(12288, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1mpss"] +atlas = ExtResource("12_74hqa") +region = Rect2(12800, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_53c8b"] +atlas = ExtResource("12_74hqa") +region = Rect2(13312, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rcq5i"] +atlas = ExtResource("12_74hqa") +region = Rect2(13824, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_as0fu"] +atlas = ExtResource("12_74hqa") +region = Rect2(14336, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bvvuv"] +atlas = ExtResource("12_74hqa") +region = Rect2(14848, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_owbt5"] +atlas = ExtResource("12_74hqa") +region = Rect2(15360, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nilvr"] +atlas = ExtResource("12_74hqa") +region = Rect2(15872, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x5pja"] +atlas = ExtResource("10_2njrj") +region = Rect2(0, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_47aoo"] +atlas = ExtResource("10_2njrj") +region = Rect2(512, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lh0hw"] +atlas = ExtResource("10_2njrj") +region = Rect2(1024, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jwo4s"] +atlas = ExtResource("10_2njrj") +region = Rect2(1536, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1gvns"] +atlas = ExtResource("10_2njrj") +region = Rect2(2048, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a8r0k"] +atlas = ExtResource("10_2njrj") +region = Rect2(2560, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lel0q"] +atlas = ExtResource("10_2njrj") +region = Rect2(3072, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2r2g5"] +atlas = ExtResource("10_2njrj") +region = Rect2(3584, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_na483"] +atlas = ExtResource("10_2njrj") +region = Rect2(4096, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vc6qm"] +atlas = ExtResource("10_2njrj") +region = Rect2(4608, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ejbn4"] +atlas = ExtResource("10_2njrj") +region = Rect2(5120, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lysy5"] +atlas = ExtResource("10_2njrj") +region = Rect2(5632, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kbe1o"] +atlas = ExtResource("10_2njrj") +region = Rect2(6144, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wt6a3"] +atlas = ExtResource("10_2njrj") +region = Rect2(6656, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4llcp"] +atlas = ExtResource("10_2njrj") +region = Rect2(7168, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7auqt"] +atlas = ExtResource("10_2njrj") +region = Rect2(7680, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b0whh"] +atlas = ExtResource("10_2njrj") +region = Rect2(8192, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g6nk6"] +atlas = ExtResource("10_2njrj") +region = Rect2(8704, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rvnij"] +atlas = ExtResource("10_2njrj") +region = Rect2(9216, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bjd72"] +atlas = ExtResource("10_2njrj") +region = Rect2(9728, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6tho6"] +atlas = ExtResource("10_2njrj") +region = Rect2(10240, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s3hb6"] +atlas = ExtResource("10_2njrj") +region = Rect2(10752, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1mboa"] +atlas = ExtResource("10_2njrj") +region = Rect2(11264, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r4pii"] +atlas = ExtResource("10_2njrj") +region = Rect2(11776, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c86oc"] +atlas = ExtResource("10_2njrj") +region = Rect2(12288, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gr1iv"] +atlas = ExtResource("10_2njrj") +region = Rect2(12800, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tiqds"] +atlas = ExtResource("10_2njrj") +region = Rect2(13312, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pqof4"] +atlas = ExtResource("10_2njrj") +region = Rect2(13824, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vwiyj"] +atlas = ExtResource("10_2njrj") +region = Rect2(14336, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0vfrk"] +atlas = ExtResource("10_2njrj") +region = Rect2(14848, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_foua5"] +atlas = ExtResource("10_2njrj") +region = Rect2(15360, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iwap5"] +atlas = ExtResource("10_2njrj") +region = Rect2(15872, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ybjbd"] +atlas = ExtResource("10_2njrj") +region = Rect2(0, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6gbi3"] +atlas = ExtResource("10_2njrj") +region = Rect2(512, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5icts"] +atlas = ExtResource("10_2njrj") +region = Rect2(1024, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wmaou"] +atlas = ExtResource("10_2njrj") +region = Rect2(1536, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nhouy"] +atlas = ExtResource("10_2njrj") +region = Rect2(2048, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kbbg1"] +atlas = ExtResource("10_2njrj") +region = Rect2(2560, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y2rv8"] +atlas = ExtResource("10_2njrj") +region = Rect2(3072, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c2m2o"] +atlas = ExtResource("10_2njrj") +region = Rect2(3584, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3g2k0"] +atlas = ExtResource("10_2njrj") +region = Rect2(4096, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xs4ps"] +atlas = ExtResource("10_2njrj") +region = Rect2(4608, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5h4w3"] +atlas = ExtResource("10_2njrj") +region = Rect2(5120, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3e7br"] +atlas = ExtResource("13_pbthl") +region = Rect2(0, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wqm76"] +atlas = ExtResource("13_pbthl") +region = Rect2(512, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i5xew"] +atlas = ExtResource("13_pbthl") +region = Rect2(1024, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yjj4w"] +atlas = ExtResource("13_pbthl") +region = Rect2(1536, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j5skl"] +atlas = ExtResource("13_pbthl") +region = Rect2(2048, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vowp7"] +atlas = ExtResource("13_pbthl") +region = Rect2(2560, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ulb0d"] +atlas = ExtResource("13_pbthl") +region = Rect2(3072, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p447u"] +atlas = ExtResource("13_pbthl") +region = Rect2(3584, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m6dij"] +atlas = ExtResource("13_pbthl") +region = Rect2(4096, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_phict"] +atlas = ExtResource("13_pbthl") +region = Rect2(4608, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2ghxf"] +atlas = ExtResource("13_pbthl") +region = Rect2(5120, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5rptd"] +atlas = ExtResource("13_pbthl") +region = Rect2(5632, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4xvys"] +atlas = ExtResource("13_pbthl") +region = Rect2(6144, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x4hsv"] +atlas = ExtResource("13_pbthl") +region = Rect2(6656, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b6y5s"] +atlas = ExtResource("13_pbthl") +region = Rect2(7168, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x1v2p"] +atlas = ExtResource("13_pbthl") +region = Rect2(7680, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nfhw0"] +atlas = ExtResource("13_pbthl") +region = Rect2(8192, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6mgro"] +atlas = ExtResource("13_pbthl") +region = Rect2(8704, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hcnwb"] +atlas = ExtResource("13_pbthl") +region = Rect2(9216, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xjqsy"] +atlas = ExtResource("13_pbthl") +region = Rect2(9728, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5vsbb"] +atlas = ExtResource("13_pbthl") +region = Rect2(10240, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sytsi"] +atlas = ExtResource("13_pbthl") +region = Rect2(10752, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dkkmv"] +atlas = ExtResource("13_pbthl") +region = Rect2(11264, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c1hbx"] +atlas = ExtResource("13_pbthl") +region = Rect2(11776, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ohl26"] +atlas = ExtResource("13_pbthl") +region = Rect2(12288, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0tycb"] +atlas = ExtResource("13_pbthl") +region = Rect2(12800, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hg63x"] +atlas = ExtResource("13_pbthl") +region = Rect2(13312, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3i6a6"] +atlas = ExtResource("13_pbthl") +region = Rect2(13824, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6dk4x"] +atlas = ExtResource("13_pbthl") +region = Rect2(14336, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ed5se"] +atlas = ExtResource("13_pbthl") +region = Rect2(14848, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mabh3"] +atlas = ExtResource("13_pbthl") +region = Rect2(15360, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c18vw"] +atlas = ExtResource("13_pbthl") +region = Rect2(15872, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_55you"] +atlas = ExtResource("13_pbthl") +region = Rect2(0, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_45v63"] +atlas = ExtResource("13_pbthl") +region = Rect2(512, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1r363"] +atlas = ExtResource("13_pbthl") +region = Rect2(1024, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ii2fs"] +atlas = ExtResource("13_pbthl") +region = Rect2(1536, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sg5je"] +atlas = ExtResource("13_pbthl") +region = Rect2(2048, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wk5e7"] +atlas = ExtResource("13_pbthl") +region = Rect2(2560, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_44drx"] +atlas = ExtResource("13_pbthl") +region = Rect2(3072, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qk73h"] +atlas = ExtResource("13_pbthl") +region = Rect2(3584, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j1oc8"] +atlas = ExtResource("13_pbthl") +region = Rect2(4096, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d35wp"] +atlas = ExtResource("13_pbthl") +region = Rect2(4608, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ihp45"] +atlas = ExtResource("13_pbthl") +region = Rect2(5120, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3ecr7"] +atlas = ExtResource("13_pbthl") +region = Rect2(5632, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2v6x8"] +atlas = ExtResource("13_pbthl") +region = Rect2(6144, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xbups"] +atlas = ExtResource("13_pbthl") +region = Rect2(6656, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_coh2q"] +atlas = ExtResource("13_pbthl") +region = Rect2(7168, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yw62j"] +atlas = ExtResource("13_pbthl") +region = Rect2(7680, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cfcfo"] +atlas = ExtResource("13_pbthl") +region = Rect2(8192, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tql8k"] +atlas = ExtResource("13_pbthl") +region = Rect2(8704, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p6qdr"] +atlas = ExtResource("13_pbthl") +region = Rect2(9216, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3ewss"] +atlas = ExtResource("13_pbthl") +region = Rect2(9728, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_skvf1"] +atlas = ExtResource("13_pbthl") +region = Rect2(10240, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k0pu0"] +atlas = ExtResource("13_pbthl") +region = Rect2(10752, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gbwma"] +atlas = ExtResource("13_pbthl") +region = Rect2(11264, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7i3tm"] +atlas = ExtResource("13_pbthl") +region = Rect2(11776, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f0i48"] +atlas = ExtResource("13_pbthl") +region = Rect2(12288, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qnkhr"] +atlas = ExtResource("13_pbthl") +region = Rect2(12800, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6qp6k"] +atlas = ExtResource("13_pbthl") +region = Rect2(13312, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xu0q2"] +atlas = ExtResource("13_pbthl") +region = Rect2(13824, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_usml2"] +atlas = ExtResource("13_pbthl") +region = Rect2(14336, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5o4r4"] +atlas = ExtResource("13_pbthl") +region = Rect2(14848, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a3ffi"] +atlas = ExtResource("13_pbthl") +region = Rect2(15360, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mlsem"] +atlas = ExtResource("13_pbthl") +region = Rect2(15872, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_64njb"] +atlas = ExtResource("13_pbthl") +region = Rect2(0, 1024, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0ucll"] +atlas = ExtResource("13_pbthl") +region = Rect2(512, 1024, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5f8wp"] +atlas = ExtResource("13_pbthl") +region = Rect2(1024, 1024, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4cvk5"] +atlas = ExtResource("13_pbthl") +region = Rect2(1536, 1024, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b1hpb"] +atlas = ExtResource("13_pbthl") +region = Rect2(2048, 1024, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nmop6"] +atlas = ExtResource("13_pbthl") +region = Rect2(2560, 1024, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_28ame"] +atlas = ExtResource("13_pbthl") +region = Rect2(3072, 1024, 512, 512) + +[sub_resource type="SpriteFrames" id="SpriteFrames_pbcxe"] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_gx6yx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5gt6s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_syglp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o81wv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uc14s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_84vg4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_18gts") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sq31b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ucph0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5pe5a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iqf1f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_58hdl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3dk5l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pmdkx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_delwj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c0hrp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nm3ps") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ax7gm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xdngf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qjoth") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ir6la") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kvy4v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6y4ab") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hhwgf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l178f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0npj3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dcc3e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iqcna") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0u5oq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qninq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5vt5r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a3n34") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hh1fj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4ldcx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_07bvn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rqdqm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mjb05") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r0mys") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ro8ch") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c5lge") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o0af2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ht5qq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_spm6q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_baipy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i0amg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xpptc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bxeg4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xgu6y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_53n88") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gwmts") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7wi2f") +}, { +"duration": 1.0, +"texture": null +}], +"loop": false, +"name": &"G-Reactor Air", +"speed": 62.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_jfyyi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_73n15") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_46poj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ua0fy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ucsgn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c70d3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8cv7j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bi5dq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fuwfv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oevub") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kcnxw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_14f5p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k6pkx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sq73w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p4t0c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ya1bk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7lr30") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_imnuj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_12h30") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8vwdk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bij44") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dpstp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4bmlc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5bkom") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jjlvt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sqwil") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_16eo6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ox45j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vbgjx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_42ty6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_37ge7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fyylb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h7lkw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5g8op") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7a1xg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_02gys") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rhpvh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p1un1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nb4cq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cnyix") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_58m70") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l7c4m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_04cm7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cqsul") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ajbah") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7rguc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w5dir") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_34gm2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fsw4h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aodty") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pyqdk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_en41m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a0pdj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vgc4w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2gki5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dbr2j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k8fmf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1mpss") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_53c8b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rcq5i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_as0fu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bvvuv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_owbt5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nilvr") +}], +"loop": true, +"name": &"G-Reactor Earth", +"speed": 41.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_x5pja") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_47aoo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lh0hw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jwo4s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1gvns") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a8r0k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lel0q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2r2g5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_na483") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vc6qm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ejbn4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lysy5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kbe1o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wt6a3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4llcp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7auqt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b0whh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g6nk6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rvnij") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bjd72") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6tho6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s3hb6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1mboa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r4pii") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c86oc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gr1iv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tiqds") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pqof4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vwiyj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0vfrk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_foua5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iwap5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ybjbd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6gbi3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5icts") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wmaou") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nhouy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kbbg1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y2rv8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c2m2o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3g2k0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xs4ps") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5h4w3") +}], +"loop": false, +"name": &"G-Reactor Fire L1", +"speed": 64.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_3e7br") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wqm76") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i5xew") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yjj4w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j5skl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vowp7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ulb0d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p447u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m6dij") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_phict") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2ghxf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5rptd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4xvys") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x4hsv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b6y5s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x1v2p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nfhw0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6mgro") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hcnwb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xjqsy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5vsbb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sytsi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dkkmv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c1hbx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ohl26") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0tycb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hg63x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3i6a6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6dk4x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ed5se") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mabh3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c18vw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_55you") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_45v63") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1r363") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ii2fs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sg5je") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wk5e7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_44drx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qk73h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j1oc8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d35wp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ihp45") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3ecr7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2v6x8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xbups") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_coh2q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yw62j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cfcfo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tql8k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p6qdr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3ewss") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_skvf1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k0pu0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gbwma") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7i3tm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f0i48") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qnkhr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6qp6k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xu0q2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_usml2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5o4r4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a3ffi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mlsem") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_64njb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0ucll") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5f8wp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4cvk5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b1hpb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nmop6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_28ame") +}], +"loop": true, +"name": &"G-Reactor Water", +"speed": 41.0 +}] + +[sub_resource type="AtlasTexture" id="AtlasTexture_evogj"] +atlas = ExtResource("11_f0ff4") +region = Rect2(512, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vvc4q"] +atlas = ExtResource("11_f0ff4") +region = Rect2(1024, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_otxug"] +atlas = ExtResource("11_f0ff4") +region = Rect2(1536, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_08hfb"] +atlas = ExtResource("11_f0ff4") +region = Rect2(2048, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0odsj"] +atlas = ExtResource("11_f0ff4") +region = Rect2(2560, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5uluj"] +atlas = ExtResource("11_f0ff4") +region = Rect2(3072, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k0o4y"] +atlas = ExtResource("11_f0ff4") +region = Rect2(3584, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_78cwo"] +atlas = ExtResource("11_f0ff4") +region = Rect2(4096, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_67h2r"] +atlas = ExtResource("11_f0ff4") +region = Rect2(4608, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ucygo"] +atlas = ExtResource("11_f0ff4") +region = Rect2(5120, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2lhef"] +atlas = ExtResource("11_f0ff4") +region = Rect2(5632, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6ne3h"] +atlas = ExtResource("11_f0ff4") +region = Rect2(6144, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tbg4l"] +atlas = ExtResource("11_f0ff4") +region = Rect2(6656, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0fipv"] +atlas = ExtResource("11_f0ff4") +region = Rect2(7168, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hh38x"] +atlas = ExtResource("11_f0ff4") +region = Rect2(7680, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uyy48"] +atlas = ExtResource("11_f0ff4") +region = Rect2(8192, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_egvhq"] +atlas = ExtResource("11_f0ff4") +region = Rect2(8704, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pbg5s"] +atlas = ExtResource("11_f0ff4") +region = Rect2(9216, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ykwvj"] +atlas = ExtResource("11_f0ff4") +region = Rect2(9728, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qo4cr"] +atlas = ExtResource("11_f0ff4") +region = Rect2(10240, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ldo8t"] +atlas = ExtResource("11_f0ff4") +region = Rect2(10752, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yu6r6"] +atlas = ExtResource("11_f0ff4") +region = Rect2(11264, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_to2k5"] +atlas = ExtResource("11_f0ff4") +region = Rect2(11776, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l4s8g"] +atlas = ExtResource("11_f0ff4") +region = Rect2(12288, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_82h1f"] +atlas = ExtResource("11_f0ff4") +region = Rect2(12800, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_07n87"] +atlas = ExtResource("11_f0ff4") +region = Rect2(13312, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0mxbk"] +atlas = ExtResource("11_f0ff4") +region = Rect2(13824, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tmuj7"] +atlas = ExtResource("11_f0ff4") +region = Rect2(14336, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8mcnl"] +atlas = ExtResource("11_f0ff4") +region = Rect2(14848, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7x048"] +atlas = ExtResource("11_f0ff4") +region = Rect2(15360, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5mmh7"] +atlas = ExtResource("11_f0ff4") +region = Rect2(15872, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jp6gm"] +atlas = ExtResource("11_f0ff4") +region = Rect2(0, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sutix"] +atlas = ExtResource("11_f0ff4") +region = Rect2(512, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kj5l8"] +atlas = ExtResource("11_f0ff4") +region = Rect2(1024, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2awj8"] +atlas = ExtResource("11_f0ff4") +region = Rect2(1536, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j7fre"] +atlas = ExtResource("11_f0ff4") +region = Rect2(2048, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h5gwo"] +atlas = ExtResource("11_f0ff4") +region = Rect2(2560, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w8sto"] +atlas = ExtResource("11_f0ff4") +region = Rect2(3072, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ke2jd"] +atlas = ExtResource("11_f0ff4") +region = Rect2(3584, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_slrju"] +atlas = ExtResource("11_f0ff4") +region = Rect2(4096, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bieoj"] +atlas = ExtResource("11_f0ff4") +region = Rect2(4608, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_srppj"] +atlas = ExtResource("11_f0ff4") +region = Rect2(5120, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_agmyl"] +atlas = ExtResource("11_f0ff4") +region = Rect2(5632, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wpi42"] +atlas = ExtResource("11_f0ff4") +region = Rect2(6144, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a4hye"] +atlas = ExtResource("11_f0ff4") +region = Rect2(6656, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_77c84"] +atlas = ExtResource("11_f0ff4") +region = Rect2(7168, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jg465"] +atlas = ExtResource("11_f0ff4") +region = Rect2(7680, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pojne"] +atlas = ExtResource("11_f0ff4") +region = Rect2(8192, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8u60h"] +atlas = ExtResource("11_f0ff4") +region = Rect2(8704, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xmnoy"] +atlas = ExtResource("11_f0ff4") +region = Rect2(9216, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4xasd"] +atlas = ExtResource("11_f0ff4") +region = Rect2(9728, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ow2jb"] +atlas = ExtResource("11_f0ff4") +region = Rect2(10240, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ddsso"] +atlas = ExtResource("11_f0ff4") +region = Rect2(10752, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6i831"] +atlas = ExtResource("11_f0ff4") +region = Rect2(11264, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ej8lx"] +atlas = ExtResource("11_f0ff4") +region = Rect2(11776, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k6ixp"] +atlas = ExtResource("11_f0ff4") +region = Rect2(12288, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dwcgt"] +atlas = ExtResource("11_f0ff4") +region = Rect2(12800, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ogett"] +atlas = ExtResource("11_f0ff4") +region = Rect2(13312, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2un7h"] +atlas = ExtResource("11_f0ff4") +region = Rect2(13824, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ryf4k"] +atlas = ExtResource("11_f0ff4") +region = Rect2(14336, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6cf18"] +atlas = ExtResource("11_f0ff4") +region = Rect2(14848, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n1i7b"] +atlas = ExtResource("11_f0ff4") +region = Rect2(15360, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vxrxh"] +atlas = ExtResource("11_f0ff4") +region = Rect2(15872, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_87se0"] +atlas = ExtResource("11_f0ff4") +region = Rect2(0, 1024, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qal4r"] +atlas = ExtResource("11_f0ff4") +region = Rect2(512, 1024, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ev83m"] +atlas = ExtResource("11_f0ff4") +region = Rect2(1024, 1024, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lgoen"] +atlas = ExtResource("11_f0ff4") +region = Rect2(1536, 1024, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o1bhw"] +atlas = ExtResource("11_f0ff4") +region = Rect2(2048, 1024, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ul0o3"] +atlas = ExtResource("11_f0ff4") +region = Rect2(2560, 1024, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kocca"] +atlas = ExtResource("11_f0ff4") +region = Rect2(3072, 1024, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5jj4v"] +atlas = ExtResource("11_f0ff4") +region = Rect2(3584, 1024, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_74hfd"] +atlas = ExtResource("11_f0ff4") +region = Rect2(4096, 1024, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2yjsl"] +atlas = ExtResource("11_f0ff4") +region = Rect2(4608, 1024, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l0jva"] +atlas = ExtResource("11_f0ff4") +region = Rect2(5120, 1024, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rtx3c"] +atlas = ExtResource("11_f0ff4") +region = Rect2(5632, 1024, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pn6ep"] +atlas = ExtResource("11_f0ff4") +region = Rect2(6144, 1024, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jhp22"] +atlas = ExtResource("11_f0ff4") +region = Rect2(6656, 1024, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gh4ly"] +atlas = ExtResource("11_f0ff4") +region = Rect2(7168, 1024, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1stf5"] +atlas = ExtResource("11_f0ff4") +region = Rect2(7680, 1024, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_22gs6"] +atlas = ExtResource("11_f0ff4") +region = Rect2(8192, 1024, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dkggu"] +atlas = ExtResource("11_f0ff4") +region = Rect2(8704, 1024, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ws3eh"] +atlas = ExtResource("14_f0ff4") +region = Rect2(0, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qhbok"] +atlas = ExtResource("14_f0ff4") +region = Rect2(512, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_krly2"] +atlas = ExtResource("14_f0ff4") +region = Rect2(1024, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wueqi"] +atlas = ExtResource("14_f0ff4") +region = Rect2(1536, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0niia"] +atlas = ExtResource("14_f0ff4") +region = Rect2(2048, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ib7e8"] +atlas = ExtResource("14_f0ff4") +region = Rect2(2560, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j3w6f"] +atlas = ExtResource("14_f0ff4") +region = Rect2(3072, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jmu2p"] +atlas = ExtResource("14_f0ff4") +region = Rect2(3584, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5x7i6"] +atlas = ExtResource("14_f0ff4") +region = Rect2(4096, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1bguh"] +atlas = ExtResource("14_f0ff4") +region = Rect2(4608, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_boc08"] +atlas = ExtResource("14_f0ff4") +region = Rect2(5120, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gv68p"] +atlas = ExtResource("14_f0ff4") +region = Rect2(5632, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d8s2q"] +atlas = ExtResource("14_f0ff4") +region = Rect2(6144, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_khths"] +atlas = ExtResource("14_f0ff4") +region = Rect2(6656, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d5jgv"] +atlas = ExtResource("14_f0ff4") +region = Rect2(7168, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_myihr"] +atlas = ExtResource("14_f0ff4") +region = Rect2(7680, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6xmdi"] +atlas = ExtResource("14_f0ff4") +region = Rect2(8192, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_twhoc"] +atlas = ExtResource("14_f0ff4") +region = Rect2(8704, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hmx2a"] +atlas = ExtResource("14_f0ff4") +region = Rect2(9216, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_73xdf"] +atlas = ExtResource("14_f0ff4") +region = Rect2(9728, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2gajw"] +atlas = ExtResource("14_f0ff4") +region = Rect2(10240, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_haavv"] +atlas = ExtResource("14_f0ff4") +region = Rect2(10752, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3icew"] +atlas = ExtResource("14_f0ff4") +region = Rect2(11264, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m01s8"] +atlas = ExtResource("14_f0ff4") +region = Rect2(11776, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_54a4w"] +atlas = ExtResource("14_f0ff4") +region = Rect2(12288, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cn6jd"] +atlas = ExtResource("14_f0ff4") +region = Rect2(12800, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_px7bo"] +atlas = ExtResource("14_f0ff4") +region = Rect2(13312, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ravoj"] +atlas = ExtResource("14_f0ff4") +region = Rect2(13824, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q73bg"] +atlas = ExtResource("14_f0ff4") +region = Rect2(14336, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8n8yu"] +atlas = ExtResource("14_f0ff4") +region = Rect2(14848, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_imh7b"] +atlas = ExtResource("14_f0ff4") +region = Rect2(15360, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rrx8l"] +atlas = ExtResource("14_f0ff4") +region = Rect2(15872, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n4ji3"] +atlas = ExtResource("14_f0ff4") +region = Rect2(0, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nod1d"] +atlas = ExtResource("14_f0ff4") +region = Rect2(512, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7ebjd"] +atlas = ExtResource("14_f0ff4") +region = Rect2(1024, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8e6at"] +atlas = ExtResource("14_f0ff4") +region = Rect2(1536, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_24ds5"] +atlas = ExtResource("14_f0ff4") +region = Rect2(2048, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yqvyn"] +atlas = ExtResource("14_f0ff4") +region = Rect2(2560, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n36q5"] +atlas = ExtResource("14_f0ff4") +region = Rect2(3072, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vbl3d"] +atlas = ExtResource("14_f0ff4") +region = Rect2(3584, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g4lvy"] +atlas = ExtResource("14_f0ff4") +region = Rect2(4096, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_artwg"] +atlas = ExtResource("14_f0ff4") +region = Rect2(4608, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5ghsm"] +atlas = ExtResource("14_f0ff4") +region = Rect2(5120, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_txoo3"] +atlas = ExtResource("14_f0ff4") +region = Rect2(5632, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vewmg"] +atlas = ExtResource("14_f0ff4") +region = Rect2(6144, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_extih"] +atlas = ExtResource("14_f0ff4") +region = Rect2(6656, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ip0tr"] +atlas = ExtResource("14_f0ff4") +region = Rect2(7168, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jgpn6"] +atlas = ExtResource("14_f0ff4") +region = Rect2(7680, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cpv4r"] +atlas = ExtResource("14_f0ff4") +region = Rect2(8192, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cm0ru"] +atlas = ExtResource("14_f0ff4") +region = Rect2(8704, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y02k6"] +atlas = ExtResource("14_f0ff4") +region = Rect2(9216, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c041o"] +atlas = ExtResource("14_f0ff4") +region = Rect2(9728, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dfijc"] +atlas = ExtResource("14_f0ff4") +region = Rect2(10240, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gqvyf"] +atlas = ExtResource("14_f0ff4") +region = Rect2(10752, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2wour"] +atlas = ExtResource("14_f0ff4") +region = Rect2(11264, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0prlq"] +atlas = ExtResource("14_f0ff4") +region = Rect2(11776, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k5ump"] +atlas = ExtResource("14_f0ff4") +region = Rect2(12288, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_djrbv"] +atlas = ExtResource("14_f0ff4") +region = Rect2(12800, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w2ff6"] +atlas = ExtResource("14_f0ff4") +region = Rect2(13312, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i458d"] +atlas = ExtResource("14_f0ff4") +region = Rect2(13824, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tc6mi"] +atlas = ExtResource("14_f0ff4") +region = Rect2(14336, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w61n0"] +atlas = ExtResource("14_f0ff4") +region = Rect2(14848, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cxlnx"] +atlas = ExtResource("14_f0ff4") +region = Rect2(15360, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_khqdf"] +atlas = ExtResource("14_f0ff4") +region = Rect2(15872, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jkgp7"] +atlas = ExtResource("14_f0ff4") +region = Rect2(0, 1024, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2k6uw"] +atlas = ExtResource("14_f0ff4") +region = Rect2(512, 1024, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5n01t"] +atlas = ExtResource("14_f0ff4") +region = Rect2(1024, 1024, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iwoqm"] +atlas = ExtResource("14_f0ff4") +region = Rect2(1536, 1024, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xouyf"] +atlas = ExtResource("14_f0ff4") +region = Rect2(2048, 1024, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xbbu5"] +atlas = ExtResource("14_f0ff4") +region = Rect2(2560, 1024, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b66b3"] +atlas = ExtResource("14_f0ff4") +region = Rect2(3072, 1024, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qc8wy"] +atlas = ExtResource("14_f0ff4") +region = Rect2(3584, 1024, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tx7kv"] +atlas = ExtResource("14_f0ff4") +region = Rect2(4096, 1024, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_12du8"] +atlas = ExtResource("14_f0ff4") +region = Rect2(4608, 1024, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_47e7w"] +atlas = ExtResource("14_f0ff4") +region = Rect2(5120, 1024, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d20vq"] +atlas = ExtResource("14_f0ff4") +region = Rect2(5632, 1024, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fvk0y"] +atlas = ExtResource("14_f0ff4") +region = Rect2(6144, 1024, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s76hw"] +atlas = ExtResource("14_f0ff4") +region = Rect2(6656, 1024, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3vv2p"] +atlas = ExtResource("14_f0ff4") +region = Rect2(7168, 1024, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_54kko"] +atlas = ExtResource("14_f0ff4") +region = Rect2(7680, 1024, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i5fap"] +atlas = ExtResource("14_f0ff4") +region = Rect2(8192, 1024, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uydj7"] +atlas = ExtResource("14_f0ff4") +region = Rect2(8704, 1024, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vv1ho"] +atlas = ExtResource("14_f0ff4") +region = Rect2(9216, 1024, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6k6qf"] +atlas = ExtResource("14_f0ff4") +region = Rect2(9728, 1024, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_st1wt"] +atlas = ExtResource("14_f0ff4") +region = Rect2(10240, 1024, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t1xli"] +atlas = ExtResource("14_f0ff4") +region = Rect2(10752, 1024, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ifuap"] +atlas = ExtResource("14_f0ff4") +region = Rect2(11264, 1024, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1n7jb"] +atlas = ExtResource("14_f0ff4") +region = Rect2(11776, 1024, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a2fwv"] +atlas = ExtResource("14_f0ff4") +region = Rect2(12288, 1024, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jnpqf"] +atlas = ExtResource("14_f0ff4") +region = Rect2(12800, 1024, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4tv33"] +atlas = ExtResource("14_f0ff4") +region = Rect2(13312, 1024, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8fc6m"] +atlas = ExtResource("14_f0ff4") +region = Rect2(13824, 1024, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lgi0k"] +atlas = ExtResource("14_f0ff4") +region = Rect2(14336, 1024, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y7l0p"] +atlas = ExtResource("14_f0ff4") +region = Rect2(14848, 1024, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ob8qt"] +atlas = ExtResource("14_f0ff4") +region = Rect2(15360, 1024, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qje21"] +atlas = ExtResource("14_f0ff4") +region = Rect2(15872, 1024, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_02i6d"] +atlas = ExtResource("14_f0ff4") +region = Rect2(0, 1536, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q2mew"] +atlas = ExtResource("14_f0ff4") +region = Rect2(512, 1536, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k8jh7"] +atlas = ExtResource("14_f0ff4") +region = Rect2(1024, 1536, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4g8km"] +atlas = ExtResource("14_f0ff4") +region = Rect2(1536, 1536, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l6xp2"] +atlas = ExtResource("14_f0ff4") +region = Rect2(2048, 1536, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k3a12"] +atlas = ExtResource("14_f0ff4") +region = Rect2(2560, 1536, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ijhp2"] +atlas = ExtResource("14_f0ff4") +region = Rect2(3072, 1536, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vd7a6"] +atlas = ExtResource("14_f0ff4") +region = Rect2(3584, 1536, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_psk6r"] +atlas = ExtResource("14_f0ff4") +region = Rect2(4096, 1536, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yi0p8"] +atlas = ExtResource("14_f0ff4") +region = Rect2(4608, 1536, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_klhaa"] +atlas = ExtResource("14_f0ff4") +region = Rect2(5120, 1536, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f01qw"] +atlas = ExtResource("14_f0ff4") +region = Rect2(5632, 1536, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ema0p"] +atlas = ExtResource("14_f0ff4") +region = Rect2(6144, 1536, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v4g00"] +atlas = ExtResource("14_f0ff4") +region = Rect2(6656, 1536, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f2tij"] +atlas = ExtResource("14_f0ff4") +region = Rect2(7168, 1536, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ytfw0"] +atlas = ExtResource("14_f0ff4") +region = Rect2(7680, 1536, 512, 512) + +[sub_resource type="SpriteFrames" id="SpriteFrames_nfb16"] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_evogj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vvc4q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_otxug") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_08hfb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0odsj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5uluj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k0o4y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_78cwo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_67h2r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ucygo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2lhef") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6ne3h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tbg4l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0fipv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hh38x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uyy48") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_egvhq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pbg5s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ykwvj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qo4cr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ldo8t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yu6r6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_to2k5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l4s8g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_82h1f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_07n87") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0mxbk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tmuj7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8mcnl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7x048") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5mmh7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jp6gm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sutix") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kj5l8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2awj8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j7fre") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h5gwo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w8sto") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ke2jd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_slrju") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bieoj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_srppj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_agmyl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wpi42") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a4hye") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_77c84") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jg465") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pojne") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8u60h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xmnoy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4xasd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ow2jb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ddsso") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6i831") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ej8lx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k6ixp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dwcgt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ogett") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2un7h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ryf4k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6cf18") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n1i7b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vxrxh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_87se0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qal4r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ev83m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lgoen") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o1bhw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ul0o3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kocca") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5jj4v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_74hfd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2yjsl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l0jva") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rtx3c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pn6ep") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jhp22") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gh4ly") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1stf5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_22gs6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dkggu") +}, { +"duration": 1.0, +"texture": null +}], +"loop": false, +"name": &"G-Reactor Fire L2", +"speed": 64.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ws3eh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qhbok") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_krly2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wueqi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0niia") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ib7e8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j3w6f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jmu2p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5x7i6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1bguh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_boc08") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gv68p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d8s2q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_khths") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d5jgv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_myihr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6xmdi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_twhoc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hmx2a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_73xdf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2gajw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_haavv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3icew") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m01s8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_54a4w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cn6jd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_px7bo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ravoj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q73bg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8n8yu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_imh7b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rrx8l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n4ji3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nod1d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7ebjd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8e6at") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_24ds5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yqvyn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n36q5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vbl3d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g4lvy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_artwg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5ghsm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_txoo3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vewmg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_extih") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ip0tr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jgpn6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cpv4r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cm0ru") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y02k6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c041o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dfijc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gqvyf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2wour") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0prlq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k5ump") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_djrbv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w2ff6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i458d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tc6mi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w61n0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cxlnx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_khqdf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jkgp7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2k6uw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5n01t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iwoqm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xouyf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xbbu5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b66b3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qc8wy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tx7kv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_12du8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_47e7w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d20vq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fvk0y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s76hw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3vv2p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_54kko") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i5fap") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uydj7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vv1ho") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6k6qf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_st1wt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t1xli") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ifuap") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1n7jb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a2fwv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jnpqf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4tv33") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8fc6m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lgi0k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y7l0p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ob8qt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qje21") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_02i6d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q2mew") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k8jh7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4g8km") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l6xp2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k3a12") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ijhp2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vd7a6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_psk6r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yi0p8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_klhaa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f01qw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ema0p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v4g00") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f2tij") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ytfw0") +}], +"loop": true, +"name": &"G-Reactor Water L2", +"speed": 32.0 }] [sub_resource type="FastNoiseLite" id="FastNoiseLite_bj1ma"] @@ -7276,255 +7792,161 @@ shader_parameter/strength = 0.164 shader_parameter/fps = 17.445 shader_parameter/noise = SubResource("NoiseTexture2D_es4xk") -[sub_resource type="AtlasTexture" id="AtlasTexture_v5qoq"] -atlas = ExtResource("4_v7rlw") +[sub_resource type="AtlasTexture" id="AtlasTexture_wmyys"] +atlas = ExtResource("26_2q4xc") region = Rect2(0, 0, 512, 512) -[sub_resource type="AtlasTexture" id="AtlasTexture_jtmj1"] -atlas = ExtResource("4_v7rlw") +[sub_resource type="AtlasTexture" id="AtlasTexture_4v5jq"] +atlas = ExtResource("26_2q4xc") region = Rect2(512, 0, 512, 512) -[sub_resource type="AtlasTexture" id="AtlasTexture_lnh6v"] -atlas = ExtResource("4_v7rlw") +[sub_resource type="AtlasTexture" id="AtlasTexture_p11af"] +atlas = ExtResource("26_2q4xc") region = Rect2(1024, 0, 512, 512) -[sub_resource type="AtlasTexture" id="AtlasTexture_bmp5p"] -atlas = ExtResource("4_v7rlw") +[sub_resource type="AtlasTexture" id="AtlasTexture_uxmjg"] +atlas = ExtResource("26_2q4xc") region = Rect2(1536, 0, 512, 512) -[sub_resource type="AtlasTexture" id="AtlasTexture_1wxdb"] -atlas = ExtResource("4_v7rlw") +[sub_resource type="AtlasTexture" id="AtlasTexture_7ne78"] +atlas = ExtResource("26_2q4xc") region = Rect2(2048, 0, 512, 512) -[sub_resource type="AtlasTexture" id="AtlasTexture_tm4vc"] -atlas = ExtResource("4_v7rlw") +[sub_resource type="AtlasTexture" id="AtlasTexture_pwhgk"] +atlas = ExtResource("26_2q4xc") region = Rect2(2560, 0, 512, 512) -[sub_resource type="AtlasTexture" id="AtlasTexture_ledjb"] -atlas = ExtResource("4_v7rlw") +[sub_resource type="AtlasTexture" id="AtlasTexture_0xc37"] +atlas = ExtResource("26_2q4xc") region = Rect2(3072, 0, 512, 512) -[sub_resource type="AtlasTexture" id="AtlasTexture_jsrl5"] -atlas = ExtResource("4_v7rlw") +[sub_resource type="AtlasTexture" id="AtlasTexture_ricnn"] +atlas = ExtResource("26_2q4xc") region = Rect2(3584, 0, 512, 512) -[sub_resource type="AtlasTexture" id="AtlasTexture_v32vt"] -atlas = ExtResource("4_v7rlw") +[sub_resource type="AtlasTexture" id="AtlasTexture_d7qyp"] +atlas = ExtResource("26_2q4xc") region = Rect2(4096, 0, 512, 512) -[sub_resource type="AtlasTexture" id="AtlasTexture_scfvx"] -atlas = ExtResource("4_v7rlw") +[sub_resource type="AtlasTexture" id="AtlasTexture_5ult4"] +atlas = ExtResource("26_2q4xc") region = Rect2(4608, 0, 512, 512) -[sub_resource type="AtlasTexture" id="AtlasTexture_po5jt"] -atlas = ExtResource("4_v7rlw") +[sub_resource type="AtlasTexture" id="AtlasTexture_ev4rp"] +atlas = ExtResource("26_2q4xc") region = Rect2(5120, 0, 512, 512) -[sub_resource type="AtlasTexture" id="AtlasTexture_jj045"] -atlas = ExtResource("4_v7rlw") +[sub_resource type="AtlasTexture" id="AtlasTexture_n3itj"] +atlas = ExtResource("26_2q4xc") region = Rect2(5632, 0, 512, 512) -[sub_resource type="AtlasTexture" id="AtlasTexture_7wf8o"] -atlas = ExtResource("4_v7rlw") +[sub_resource type="AtlasTexture" id="AtlasTexture_6hif5"] +atlas = ExtResource("26_2q4xc") region = Rect2(6144, 0, 512, 512) -[sub_resource type="AtlasTexture" id="AtlasTexture_afsxn"] -atlas = ExtResource("4_v7rlw") +[sub_resource type="AtlasTexture" id="AtlasTexture_j6as1"] +atlas = ExtResource("26_2q4xc") region = Rect2(6656, 0, 512, 512) -[sub_resource type="AtlasTexture" id="AtlasTexture_b1ckw"] -atlas = ExtResource("4_v7rlw") +[sub_resource type="AtlasTexture" id="AtlasTexture_kiuq8"] +atlas = ExtResource("26_2q4xc") region = Rect2(7168, 0, 512, 512) -[sub_resource type="AtlasTexture" id="AtlasTexture_3vieb"] -atlas = ExtResource("4_v7rlw") +[sub_resource type="AtlasTexture" id="AtlasTexture_sl6xr"] +atlas = ExtResource("26_2q4xc") region = Rect2(7680, 0, 512, 512) -[sub_resource type="AtlasTexture" id="AtlasTexture_imkep"] -atlas = ExtResource("4_v7rlw") +[sub_resource type="AtlasTexture" id="AtlasTexture_8cf5r"] +atlas = ExtResource("26_2q4xc") region = Rect2(8192, 0, 512, 512) -[sub_resource type="AtlasTexture" id="AtlasTexture_bngr8"] -atlas = ExtResource("4_v7rlw") +[sub_resource type="AtlasTexture" id="AtlasTexture_lbhlt"] +atlas = ExtResource("26_2q4xc") region = Rect2(8704, 0, 512, 512) -[sub_resource type="AtlasTexture" id="AtlasTexture_ct55r"] -atlas = ExtResource("4_v7rlw") +[sub_resource type="AtlasTexture" id="AtlasTexture_3b8p1"] +atlas = ExtResource("26_2q4xc") region = Rect2(9216, 0, 512, 512) -[sub_resource type="AtlasTexture" id="AtlasTexture_hkhu1"] -atlas = ExtResource("4_v7rlw") +[sub_resource type="AtlasTexture" id="AtlasTexture_p4gd5"] +atlas = ExtResource("26_2q4xc") region = Rect2(9728, 0, 512, 512) -[sub_resource type="AtlasTexture" id="AtlasTexture_2njrj"] -atlas = ExtResource("4_v7rlw") -region = Rect2(10240, 0, 512, 512) +[sub_resource type="AtlasTexture" id="AtlasTexture_2tcuj"] +atlas = ExtResource("33_74hqa") +region = Rect2(0, 0, 425, 425) -[sub_resource type="AtlasTexture" id="AtlasTexture_f0ff4"] -atlas = ExtResource("4_v7rlw") -region = Rect2(10752, 0, 512, 512) +[sub_resource type="AtlasTexture" id="AtlasTexture_77cqk"] +atlas = ExtResource("33_74hqa") +region = Rect2(425, 0, 425, 425) -[sub_resource type="AtlasTexture" id="AtlasTexture_74hqa"] -atlas = ExtResource("4_v7rlw") -region = Rect2(11264, 0, 512, 512) +[sub_resource type="AtlasTexture" id="AtlasTexture_th76d"] +atlas = ExtResource("33_74hqa") +region = Rect2(850, 0, 425, 425) -[sub_resource type="AtlasTexture" id="AtlasTexture_pbthl"] -atlas = ExtResource("4_v7rlw") -region = Rect2(11776, 0, 512, 512) +[sub_resource type="AtlasTexture" id="AtlasTexture_sfycl"] +atlas = ExtResource("33_74hqa") +region = Rect2(1275, 0, 425, 425) -[sub_resource type="AtlasTexture" id="AtlasTexture_jhq84"] -atlas = ExtResource("4_v7rlw") -region = Rect2(12288, 0, 512, 512) +[sub_resource type="AtlasTexture" id="AtlasTexture_b741k"] +atlas = ExtResource("33_74hqa") +region = Rect2(1700, 0, 425, 425) -[sub_resource type="AtlasTexture" id="AtlasTexture_flmxu"] -atlas = ExtResource("4_v7rlw") -region = Rect2(12800, 0, 512, 512) +[sub_resource type="AtlasTexture" id="AtlasTexture_jswex"] +atlas = ExtResource("33_74hqa") +region = Rect2(2125, 0, 425, 425) -[sub_resource type="AtlasTexture" id="AtlasTexture_ymsks"] -atlas = ExtResource("4_v7rlw") -region = Rect2(13312, 0, 512, 512) +[sub_resource type="AtlasTexture" id="AtlasTexture_v32co"] +atlas = ExtResource("33_74hqa") +region = Rect2(2550, 0, 425, 425) -[sub_resource type="AtlasTexture" id="AtlasTexture_cssau"] -atlas = ExtResource("4_v7rlw") -region = Rect2(13824, 0, 512, 512) +[sub_resource type="AtlasTexture" id="AtlasTexture_np2iq"] +atlas = ExtResource("33_74hqa") +region = Rect2(2975, 0, 425, 425) -[sub_resource type="AtlasTexture" id="AtlasTexture_bjon0"] -atlas = ExtResource("4_v7rlw") -region = Rect2(14336, 0, 512, 512) +[sub_resource type="AtlasTexture" id="AtlasTexture_68n28"] +atlas = ExtResource("33_74hqa") +region = Rect2(3400, 0, 425, 425) -[sub_resource type="AtlasTexture" id="AtlasTexture_toqbu"] -atlas = ExtResource("4_v7rlw") -region = Rect2(14848, 0, 512, 512) +[sub_resource type="AtlasTexture" id="AtlasTexture_auvl8"] +atlas = ExtResource("33_74hqa") +region = Rect2(3825, 0, 425, 425) -[sub_resource type="SpriteFrames" id="SpriteFrames_jtmj1"] -animations = [{ -"frames": [{ -"duration": 1.0, -"texture": SubResource("AtlasTexture_v5qoq") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_jtmj1") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_lnh6v") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_bmp5p") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_1wxdb") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_tm4vc") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_ledjb") -}, { -"duration": 1.0, -"texture": null -}], -"loop": false, -"name": &"hit_wall", -"speed": 12.0 -}, { -"frames": [{ -"duration": 1.0, -"texture": SubResource("AtlasTexture_v5qoq") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_jtmj1") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_lnh6v") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_bmp5p") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_1wxdb") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_tm4vc") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_ledjb") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_jsrl5") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_v32vt") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_scfvx") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_po5jt") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_jj045") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_7wf8o") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_afsxn") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_b1ckw") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_3vieb") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_imkep") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_bngr8") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_ct55r") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_hkhu1") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_2njrj") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_f0ff4") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_74hqa") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_pbthl") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_jhq84") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_flmxu") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_ymsks") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_cssau") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_bjon0") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_toqbu") -}, { -"duration": 1.0, -"texture": null -}], -"loop": false, -"name": &"normal_slash", -"speed": 45.0 -}] +[sub_resource type="AtlasTexture" id="AtlasTexture_e0lid"] +atlas = ExtResource("33_74hqa") +region = Rect2(4250, 0, 425, 425) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n2kv8"] +atlas = ExtResource("33_74hqa") +region = Rect2(4675, 0, 425, 425) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s2mu3"] +atlas = ExtResource("33_74hqa") +region = Rect2(5100, 0, 425, 425) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ob28g"] +atlas = ExtResource("33_74hqa") +region = Rect2(5525, 0, 425, 425) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vyvxi"] +atlas = ExtResource("33_74hqa") +region = Rect2(5950, 0, 425, 425) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f8yts"] +atlas = ExtResource("33_74hqa") +region = Rect2(6375, 0, 425, 425) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c4qcr"] +atlas = ExtResource("33_74hqa") +region = Rect2(6800, 0, 425, 425) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0mu4b"] +atlas = ExtResource("33_74hqa") +region = Rect2(7225, 0, 425, 425) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pdkmw"] +atlas = ExtResource("33_74hqa") +region = Rect2(7650, 0, 425, 425) [sub_resource type="AtlasTexture" id="AtlasTexture_ngao6"] atlas = ExtResource("19_cssau") @@ -7646,10 +8068,861 @@ region = Rect2(14336, 0, 512, 512) atlas = ExtResource("19_cssau") region = Rect2(14848, 0, 512, 512) -[sub_resource type="SpriteFrames" id="SpriteFrames_3e14i"] +[sub_resource type="AtlasTexture" id="AtlasTexture_v5qoq"] +atlas = ExtResource("4_v7rlw") +region = Rect2(0, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jtmj1"] +atlas = ExtResource("4_v7rlw") +region = Rect2(512, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lnh6v"] +atlas = ExtResource("4_v7rlw") +region = Rect2(1024, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bmp5p"] +atlas = ExtResource("4_v7rlw") +region = Rect2(1536, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1wxdb"] +atlas = ExtResource("4_v7rlw") +region = Rect2(2048, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tm4vc"] +atlas = ExtResource("4_v7rlw") +region = Rect2(2560, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ledjb"] +atlas = ExtResource("4_v7rlw") +region = Rect2(3072, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kcb6w"] +atlas = ExtResource("27_3yow4") +region = Rect2(0, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d8kdm"] +atlas = ExtResource("27_3yow4") +region = Rect2(512, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hxipc"] +atlas = ExtResource("27_3yow4") +region = Rect2(1024, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oqo4u"] +atlas = ExtResource("27_3yow4") +region = Rect2(1536, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_16i0h"] +atlas = ExtResource("27_3yow4") +region = Rect2(2048, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a5x7g"] +atlas = ExtResource("27_3yow4") +region = Rect2(2560, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_alrmx"] +atlas = ExtResource("27_3yow4") +region = Rect2(3072, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xmdye"] +atlas = ExtResource("27_3yow4") +region = Rect2(3584, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lkhbj"] +atlas = ExtResource("27_3yow4") +region = Rect2(4096, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mexas"] +atlas = ExtResource("27_3yow4") +region = Rect2(4608, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7j400"] +atlas = ExtResource("27_3yow4") +region = Rect2(5120, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4ms00"] +atlas = ExtResource("27_3yow4") +region = Rect2(5632, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7lgsy"] +atlas = ExtResource("27_3yow4") +region = Rect2(6144, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_60ybr"] +atlas = ExtResource("27_3yow4") +region = Rect2(6656, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xc4x4"] +atlas = ExtResource("27_3yow4") +region = Rect2(7168, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cyukq"] +atlas = ExtResource("27_3yow4") +region = Rect2(7680, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v0lf8"] +atlas = ExtResource("27_3yow4") +region = Rect2(8192, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qi4av"] +atlas = ExtResource("27_3yow4") +region = Rect2(8704, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_an7ya"] +atlas = ExtResource("27_3yow4") +region = Rect2(9216, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8pjgr"] +atlas = ExtResource("27_3yow4") +region = Rect2(9728, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w6y2h"] +atlas = ExtResource("27_3yow4") +region = Rect2(10240, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6qsdb"] +atlas = ExtResource("27_3yow4") +region = Rect2(10752, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4525e"] +atlas = ExtResource("27_3yow4") +region = Rect2(11264, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_226qt"] +atlas = ExtResource("27_3yow4") +region = Rect2(11776, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nbjul"] +atlas = ExtResource("27_3yow4") +region = Rect2(12288, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i3gpb"] +atlas = ExtResource("27_3yow4") +region = Rect2(12800, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kl0b1"] +atlas = ExtResource("27_3yow4") +region = Rect2(13312, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8rtyd"] +atlas = ExtResource("27_3yow4") +region = Rect2(13824, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jsrl5"] +atlas = ExtResource("4_v7rlw") +region = Rect2(3584, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v32vt"] +atlas = ExtResource("4_v7rlw") +region = Rect2(4096, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_scfvx"] +atlas = ExtResource("4_v7rlw") +region = Rect2(4608, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_po5jt"] +atlas = ExtResource("4_v7rlw") +region = Rect2(5120, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jj045"] +atlas = ExtResource("4_v7rlw") +region = Rect2(5632, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7wf8o"] +atlas = ExtResource("4_v7rlw") +region = Rect2(6144, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_afsxn"] +atlas = ExtResource("4_v7rlw") +region = Rect2(6656, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b1ckw"] +atlas = ExtResource("4_v7rlw") +region = Rect2(7168, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3vieb"] +atlas = ExtResource("4_v7rlw") +region = Rect2(7680, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_imkep"] +atlas = ExtResource("4_v7rlw") +region = Rect2(8192, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bngr8"] +atlas = ExtResource("4_v7rlw") +region = Rect2(8704, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ct55r"] +atlas = ExtResource("4_v7rlw") +region = Rect2(9216, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hkhu1"] +atlas = ExtResource("4_v7rlw") +region = Rect2(9728, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2njrj"] +atlas = ExtResource("4_v7rlw") +region = Rect2(10240, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f0ff4"] +atlas = ExtResource("4_v7rlw") +region = Rect2(10752, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_74hqa"] +atlas = ExtResource("4_v7rlw") +region = Rect2(11264, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pbthl"] +atlas = ExtResource("4_v7rlw") +region = Rect2(11776, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jhq84"] +atlas = ExtResource("4_v7rlw") +region = Rect2(12288, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_flmxu"] +atlas = ExtResource("4_v7rlw") +region = Rect2(12800, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ymsks"] +atlas = ExtResource("4_v7rlw") +region = Rect2(13312, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cssau"] +atlas = ExtResource("4_v7rlw") +region = Rect2(13824, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bjon0"] +atlas = ExtResource("4_v7rlw") +region = Rect2(14336, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_toqbu"] +atlas = ExtResource("4_v7rlw") +region = Rect2(14848, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xmq72"] +atlas = ExtResource("28_oujy1") +region = Rect2(0, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mq4ru"] +atlas = ExtResource("28_oujy1") +region = Rect2(512, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_63pv8"] +atlas = ExtResource("28_oujy1") +region = Rect2(1024, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_81omh"] +atlas = ExtResource("28_oujy1") +region = Rect2(1536, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oshxc"] +atlas = ExtResource("28_oujy1") +region = Rect2(2048, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f051i"] +atlas = ExtResource("28_oujy1") +region = Rect2(2560, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kiwjx"] +atlas = ExtResource("28_oujy1") +region = Rect2(3072, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tra6u"] +atlas = ExtResource("28_oujy1") +region = Rect2(3584, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qrkej"] +atlas = ExtResource("28_oujy1") +region = Rect2(4096, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q6k75"] +atlas = ExtResource("28_oujy1") +region = Rect2(4608, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bdqse"] +atlas = ExtResource("28_oujy1") +region = Rect2(5120, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_482wh"] +atlas = ExtResource("28_oujy1") +region = Rect2(5632, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xu0x4"] +atlas = ExtResource("28_oujy1") +region = Rect2(6144, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n0ndj"] +atlas = ExtResource("28_oujy1") +region = Rect2(6656, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_blwf7"] +atlas = ExtResource("28_oujy1") +region = Rect2(7168, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_40liv"] +atlas = ExtResource("28_oujy1") +region = Rect2(7680, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bpyyx"] +atlas = ExtResource("28_oujy1") +region = Rect2(8192, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1q4di"] +atlas = ExtResource("28_oujy1") +region = Rect2(8704, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k4prd"] +atlas = ExtResource("28_oujy1") +region = Rect2(9216, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1r2vo"] +atlas = ExtResource("28_oujy1") +region = Rect2(9728, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0nb7q"] +atlas = ExtResource("28_oujy1") +region = Rect2(10240, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4pi58"] +atlas = ExtResource("28_oujy1") +region = Rect2(10752, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4g55r"] +atlas = ExtResource("28_oujy1") +region = Rect2(11264, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_isyxq"] +atlas = ExtResource("28_oujy1") +region = Rect2(11776, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nx8x7"] +atlas = ExtResource("28_oujy1") +region = Rect2(12288, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mcfc5"] +atlas = ExtResource("28_oujy1") +region = Rect2(12800, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n318m"] +atlas = ExtResource("28_oujy1") +region = Rect2(13312, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cvph7"] +atlas = ExtResource("28_oujy1") +region = Rect2(13824, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qonub"] +atlas = ExtResource("28_oujy1") +region = Rect2(14336, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_47wep"] +atlas = ExtResource("28_oujy1") +region = Rect2(14848, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wxg7g"] +atlas = ExtResource("28_oujy1") +region = Rect2(15360, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_37a1c"] +atlas = ExtResource("28_oujy1") +region = Rect2(15872, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a8ke0"] +atlas = ExtResource("28_oujy1") +region = Rect2(0, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rt73e"] +atlas = ExtResource("28_oujy1") +region = Rect2(512, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nlx4y"] +atlas = ExtResource("28_oujy1") +region = Rect2(1024, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tqvaa"] +atlas = ExtResource("28_oujy1") +region = Rect2(1536, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_usbdf"] +atlas = ExtResource("22_0qr2r") +region = Rect2(0, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3d6w1"] +atlas = ExtResource("22_0qr2r") +region = Rect2(512, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_negdy"] +atlas = ExtResource("22_0qr2r") +region = Rect2(1024, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mlpmd"] +atlas = ExtResource("22_0qr2r") +region = Rect2(1536, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6amug"] +atlas = ExtResource("22_0qr2r") +region = Rect2(2048, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mjiiw"] +atlas = ExtResource("22_0qr2r") +region = Rect2(2560, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7cdqr"] +atlas = ExtResource("22_0qr2r") +region = Rect2(3072, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nhn71"] +atlas = ExtResource("22_0qr2r") +region = Rect2(3584, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pj1bu"] +atlas = ExtResource("22_0qr2r") +region = Rect2(4096, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4gd5b"] +atlas = ExtResource("22_0qr2r") +region = Rect2(4608, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nm3iu"] +atlas = ExtResource("22_0qr2r") +region = Rect2(5120, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y6ydj"] +atlas = ExtResource("22_0qr2r") +region = Rect2(5632, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1ahca"] +atlas = ExtResource("22_0qr2r") +region = Rect2(6144, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1kesl"] +atlas = ExtResource("22_0qr2r") +region = Rect2(6656, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ee281"] +atlas = ExtResource("22_0qr2r") +region = Rect2(7168, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bv16y"] +atlas = ExtResource("22_0qr2r") +region = Rect2(7680, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4mifj"] +atlas = ExtResource("22_0qr2r") +region = Rect2(8192, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bndwh"] +atlas = ExtResource("22_0qr2r") +region = Rect2(8704, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ft2u1"] +atlas = ExtResource("22_0qr2r") +region = Rect2(9216, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8l3am"] +atlas = ExtResource("22_0qr2r") +region = Rect2(9728, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_13rdk"] +atlas = ExtResource("22_0qr2r") +region = Rect2(10240, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cep86"] +atlas = ExtResource("22_0qr2r") +region = Rect2(10752, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3yjbu"] +atlas = ExtResource("22_0qr2r") +region = Rect2(11264, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hnja0"] +atlas = ExtResource("22_0qr2r") +region = Rect2(11776, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u2nig"] +atlas = ExtResource("22_0qr2r") +region = Rect2(12288, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_71wpn"] +atlas = ExtResource("22_0qr2r") +region = Rect2(12800, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cdgr3"] +atlas = ExtResource("22_0qr2r") +region = Rect2(13312, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ddqq8"] +atlas = ExtResource("22_0qr2r") +region = Rect2(13824, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s2g0i"] +atlas = ExtResource("22_0qr2r") +region = Rect2(14336, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iuq02"] +atlas = ExtResource("22_0qr2r") +region = Rect2(14848, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s37mo"] +atlas = ExtResource("22_0qr2r") +region = Rect2(15360, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8usxh"] +atlas = ExtResource("22_0qr2r") +region = Rect2(15872, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g2lky"] +atlas = ExtResource("22_0qr2r") +region = Rect2(0, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5g1dv"] +atlas = ExtResource("22_0qr2r") +region = Rect2(512, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4h88r"] +atlas = ExtResource("22_0qr2r") +region = Rect2(1024, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s15f5"] +atlas = ExtResource("22_0qr2r") +region = Rect2(1536, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ujgbw"] +atlas = ExtResource("22_0qr2r") +region = Rect2(2048, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y8v4x"] +atlas = ExtResource("22_0qr2r") +region = Rect2(2560, 512, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jkm8c"] +atlas = ExtResource("29_ysfuc") +region = Rect2(0, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ovlij"] +atlas = ExtResource("29_ysfuc") +region = Rect2(512, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f634n"] +atlas = ExtResource("29_ysfuc") +region = Rect2(1024, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_56jvv"] +atlas = ExtResource("29_ysfuc") +region = Rect2(1536, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tguxe"] +atlas = ExtResource("29_ysfuc") +region = Rect2(2048, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8a1br"] +atlas = ExtResource("29_ysfuc") +region = Rect2(2560, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_treje"] +atlas = ExtResource("29_ysfuc") +region = Rect2(3072, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ucopf"] +atlas = ExtResource("29_ysfuc") +region = Rect2(3584, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_06pau"] +atlas = ExtResource("29_ysfuc") +region = Rect2(4096, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yut7s"] +atlas = ExtResource("29_ysfuc") +region = Rect2(4608, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7ct6q"] +atlas = ExtResource("29_ysfuc") +region = Rect2(5120, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_apbil"] +atlas = ExtResource("29_ysfuc") +region = Rect2(5632, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g6lek"] +atlas = ExtResource("29_ysfuc") +region = Rect2(6144, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i055y"] +atlas = ExtResource("29_ysfuc") +region = Rect2(6656, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p00oj"] +atlas = ExtResource("29_ysfuc") +region = Rect2(7168, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_db7t0"] +atlas = ExtResource("29_ysfuc") +region = Rect2(7680, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p1sai"] +atlas = ExtResource("29_ysfuc") +region = Rect2(8192, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0yuwb"] +atlas = ExtResource("29_ysfuc") +region = Rect2(8704, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wcgn0"] +atlas = ExtResource("29_ysfuc") +region = Rect2(9216, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k5hgl"] +atlas = ExtResource("29_ysfuc") +region = Rect2(9728, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ji08h"] +atlas = ExtResource("29_ysfuc") +region = Rect2(10240, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7lfvv"] +atlas = ExtResource("29_ysfuc") +region = Rect2(10752, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_emn3u"] +atlas = ExtResource("29_ysfuc") +region = Rect2(11264, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gr6sd"] +atlas = ExtResource("29_ysfuc") +region = Rect2(11776, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ge6u4"] +atlas = ExtResource("29_ysfuc") +region = Rect2(12288, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xlxqt"] +atlas = ExtResource("29_ysfuc") +region = Rect2(12800, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r2dkq"] +atlas = ExtResource("29_ysfuc") +region = Rect2(13312, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_us17c"] +atlas = ExtResource("29_ysfuc") +region = Rect2(13824, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jwjoi"] +atlas = ExtResource("29_ysfuc") +region = Rect2(14336, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ag6w4"] +atlas = ExtResource("29_ysfuc") +region = Rect2(14848, 0, 512, 512) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pvxw0"] +atlas = ExtResource("25_y8imw") +region = Rect2(0, 0, 350, 350) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h780i"] +atlas = ExtResource("25_y8imw") +region = Rect2(350, 0, 350, 350) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eucyw"] +atlas = ExtResource("25_y8imw") +region = Rect2(700, 0, 350, 350) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fk61c"] +atlas = ExtResource("25_y8imw") +region = Rect2(1050, 0, 350, 350) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t418h"] +atlas = ExtResource("25_y8imw") +region = Rect2(1400, 0, 350, 350) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3hluk"] +atlas = ExtResource("25_y8imw") +region = Rect2(1750, 0, 350, 350) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rcxrp"] +atlas = ExtResource("25_y8imw") +region = Rect2(2100, 0, 350, 350) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qv04j"] +atlas = ExtResource("25_y8imw") +region = Rect2(2450, 0, 350, 350) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fcmgb"] +atlas = ExtResource("25_y8imw") +region = Rect2(2800, 0, 350, 350) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7yhn4"] +atlas = ExtResource("25_y8imw") +region = Rect2(3150, 0, 350, 350) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wc5hd"] +atlas = ExtResource("25_y8imw") +region = Rect2(3500, 0, 350, 350) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pwpaa"] +atlas = ExtResource("25_y8imw") +region = Rect2(3850, 0, 350, 350) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rwn0a"] +atlas = ExtResource("25_y8imw") +region = Rect2(4200, 0, 350, 350) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4dt1x"] +atlas = ExtResource("25_y8imw") +region = Rect2(4550, 0, 350, 350) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0ooq7"] +atlas = ExtResource("25_y8imw") +region = Rect2(4900, 0, 350, 350) + +[sub_resource type="AtlasTexture" id="AtlasTexture_slqt4"] +atlas = ExtResource("25_y8imw") +region = Rect2(5250, 0, 350, 350) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0mg2x"] +atlas = ExtResource("25_y8imw") +region = Rect2(5600, 0, 350, 350) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dk8i1"] +atlas = ExtResource("25_y8imw") +region = Rect2(5950, 0, 350, 350) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gnwol"] +atlas = ExtResource("25_y8imw") +region = Rect2(6300, 0, 350, 350) + +[sub_resource type="SpriteFrames" id="SpriteFrames_jtmj1"] animations = [{ "frames": [{ "duration": 1.0, +"texture": SubResource("AtlasTexture_wmyys") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4v5jq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p11af") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uxmjg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7ne78") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pwhgk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0xc37") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ricnn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d7qyp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5ult4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ev4rp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n3itj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6hif5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j6as1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kiuq8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sl6xr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8cf5r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lbhlt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3b8p1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p4gd5") +}], +"loop": true, +"name": &"Air Slash", +"speed": 32.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_2tcuj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_77cqk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_th76d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sfycl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b741k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jswex") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v32co") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_np2iq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_68n28") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_auvl8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e0lid") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n2kv8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s2mu3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ob28g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vyvxi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f8yts") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c4qcr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0mu4b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pdkmw") +}], +"loop": false, +"name": &"Earth Slash", +"speed": 32.0 +}, { +"frames": [{ +"duration": 1.0, "texture": SubResource("AtlasTexture_ngao6") }, { "duration": 1.0, @@ -7739,8 +9012,619 @@ animations = [{ "duration": 1.0, "texture": SubResource("AtlasTexture_r7yno") }], +"loop": true, +"name": &"Fire Slash", +"speed": 32.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_v5qoq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jtmj1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lnh6v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bmp5p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1wxdb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tm4vc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ledjb") +}, { +"duration": 1.0, +"texture": null +}], "loop": false, -"name": &"default", +"name": &"Hit Wall", +"speed": 32.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_kcb6w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d8kdm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hxipc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oqo4u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_16i0h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a5x7g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_alrmx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xmdye") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lkhbj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mexas") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7j400") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4ms00") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7lgsy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_60ybr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xc4x4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cyukq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v0lf8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qi4av") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_an7ya") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8pjgr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w6y2h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6qsdb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4525e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_226qt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nbjul") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i3gpb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kl0b1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8rtyd") +}], +"loop": false, +"name": &"Love Judgement", +"speed": 45.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_v5qoq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jtmj1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lnh6v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bmp5p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1wxdb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tm4vc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ledjb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jsrl5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v32vt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_scfvx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_po5jt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jj045") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7wf8o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_afsxn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b1ckw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3vieb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_imkep") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bngr8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ct55r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hkhu1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2njrj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f0ff4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_74hqa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pbthl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jhq84") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_flmxu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ymsks") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cssau") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bjon0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_toqbu") +}, { +"duration": 1.0, +"texture": null +}], +"loop": false, +"name": &"Normal Slash 1", +"speed": 45.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_xmq72") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mq4ru") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_63pv8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_81omh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oshxc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f051i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kiwjx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tra6u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qrkej") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q6k75") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bdqse") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_482wh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xu0x4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n0ndj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_blwf7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_40liv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bpyyx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1q4di") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k4prd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1r2vo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0nb7q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4pi58") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4g55r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_isyxq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nx8x7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mcfc5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n318m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cvph7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qonub") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_47wep") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wxg7g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_37a1c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a8ke0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rt73e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nlx4y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tqvaa") +}], +"loop": false, +"name": &"Plasma Sword", +"speed": 71.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_usbdf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3d6w1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_negdy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mlpmd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6amug") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mjiiw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7cdqr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nhn71") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pj1bu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4gd5b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nm3iu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y6ydj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1ahca") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1kesl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ee281") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bv16y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4mifj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bndwh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ft2u1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8l3am") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_13rdk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cep86") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3yjbu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hnja0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u2nig") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_71wpn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cdgr3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ddqq8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s2g0i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iuq02") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s37mo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8usxh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g2lky") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5g1dv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4h88r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s15f5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ujgbw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y8v4x") +}], +"loop": false, +"name": &"Rondo", +"speed": 62.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_jkm8c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ovlij") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f634n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_56jvv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tguxe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8a1br") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_treje") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ucopf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_06pau") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yut7s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7ct6q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_apbil") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g6lek") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i055y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p00oj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_db7t0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p1sai") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0yuwb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wcgn0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k5hgl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ji08h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7lfvv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_emn3u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gr6sd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ge6u4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xlxqt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r2dkq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_us17c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jwjoi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ag6w4") +}, { +"duration": 1.0, +"texture": null +}], +"loop": false, +"name": &"Unarmed", +"speed": 56.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_pvxw0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h780i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eucyw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fk61c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t418h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3hluk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rcxrp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qv04j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fcmgb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7yhn4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wc5hd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pwpaa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rwn0a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4dt1x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0ooq7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_slqt4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0mg2x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dk8i1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gnwol") +}, { +"duration": 1.0, +"texture": null +}], +"loop": false, +"name": &"Water Slash", "speed": 32.0 }] @@ -8400,883 +10284,6 @@ animations = [{ "speed": 64.0 }] -[sub_resource type="AtlasTexture" id="AtlasTexture_usbdf"] -atlas = ExtResource("22_0qr2r") -region = Rect2(0, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_3d6w1"] -atlas = ExtResource("22_0qr2r") -region = Rect2(512, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_negdy"] -atlas = ExtResource("22_0qr2r") -region = Rect2(1024, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_mlpmd"] -atlas = ExtResource("22_0qr2r") -region = Rect2(1536, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_6amug"] -atlas = ExtResource("22_0qr2r") -region = Rect2(2048, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_mjiiw"] -atlas = ExtResource("22_0qr2r") -region = Rect2(2560, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_7cdqr"] -atlas = ExtResource("22_0qr2r") -region = Rect2(3072, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_nhn71"] -atlas = ExtResource("22_0qr2r") -region = Rect2(3584, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_pj1bu"] -atlas = ExtResource("22_0qr2r") -region = Rect2(4096, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_4gd5b"] -atlas = ExtResource("22_0qr2r") -region = Rect2(4608, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_nm3iu"] -atlas = ExtResource("22_0qr2r") -region = Rect2(5120, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_y6ydj"] -atlas = ExtResource("22_0qr2r") -region = Rect2(5632, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_1ahca"] -atlas = ExtResource("22_0qr2r") -region = Rect2(6144, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_1kesl"] -atlas = ExtResource("22_0qr2r") -region = Rect2(6656, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_ee281"] -atlas = ExtResource("22_0qr2r") -region = Rect2(7168, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_bv16y"] -atlas = ExtResource("22_0qr2r") -region = Rect2(7680, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_4mifj"] -atlas = ExtResource("22_0qr2r") -region = Rect2(8192, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_bndwh"] -atlas = ExtResource("22_0qr2r") -region = Rect2(8704, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_ft2u1"] -atlas = ExtResource("22_0qr2r") -region = Rect2(9216, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_8l3am"] -atlas = ExtResource("22_0qr2r") -region = Rect2(9728, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_13rdk"] -atlas = ExtResource("22_0qr2r") -region = Rect2(10240, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_cep86"] -atlas = ExtResource("22_0qr2r") -region = Rect2(10752, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_3yjbu"] -atlas = ExtResource("22_0qr2r") -region = Rect2(11264, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_hnja0"] -atlas = ExtResource("22_0qr2r") -region = Rect2(11776, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_u2nig"] -atlas = ExtResource("22_0qr2r") -region = Rect2(12288, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_71wpn"] -atlas = ExtResource("22_0qr2r") -region = Rect2(12800, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_cdgr3"] -atlas = ExtResource("22_0qr2r") -region = Rect2(13312, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_ddqq8"] -atlas = ExtResource("22_0qr2r") -region = Rect2(13824, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_s2g0i"] -atlas = ExtResource("22_0qr2r") -region = Rect2(14336, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_iuq02"] -atlas = ExtResource("22_0qr2r") -region = Rect2(14848, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_s37mo"] -atlas = ExtResource("22_0qr2r") -region = Rect2(15360, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_8usxh"] -atlas = ExtResource("22_0qr2r") -region = Rect2(15872, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_g2lky"] -atlas = ExtResource("22_0qr2r") -region = Rect2(0, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_5g1dv"] -atlas = ExtResource("22_0qr2r") -region = Rect2(512, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_4h88r"] -atlas = ExtResource("22_0qr2r") -region = Rect2(1024, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_s15f5"] -atlas = ExtResource("22_0qr2r") -region = Rect2(1536, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_ujgbw"] -atlas = ExtResource("22_0qr2r") -region = Rect2(2048, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_y8v4x"] -atlas = ExtResource("22_0qr2r") -region = Rect2(2560, 512, 512, 512) - -[sub_resource type="SpriteFrames" id="SpriteFrames_a3r4p"] -animations = [{ -"frames": [{ -"duration": 1.0, -"texture": SubResource("AtlasTexture_usbdf") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_3d6w1") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_negdy") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_mlpmd") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_6amug") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_mjiiw") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_7cdqr") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_nhn71") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_pj1bu") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_4gd5b") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_nm3iu") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_y6ydj") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_1ahca") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_1kesl") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_ee281") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_bv16y") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_4mifj") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_bndwh") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_ft2u1") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_8l3am") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_13rdk") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_cep86") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_3yjbu") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_hnja0") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_u2nig") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_71wpn") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_cdgr3") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_ddqq8") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_s2g0i") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_iuq02") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_s37mo") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_8usxh") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_g2lky") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_5g1dv") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_4h88r") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_s15f5") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_ujgbw") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_y8v4x") -}], -"loop": false, -"name": &"default", -"speed": 64.0 -}] - -[sub_resource type="AtlasTexture" id="AtlasTexture_nopn5"] -atlas = ExtResource("23_2652b") -region = Rect2(0, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_8744j"] -atlas = ExtResource("23_2652b") -region = Rect2(512, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_73itp"] -atlas = ExtResource("23_2652b") -region = Rect2(1024, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_udknf"] -atlas = ExtResource("23_2652b") -region = Rect2(1536, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_4cn3c"] -atlas = ExtResource("23_2652b") -region = Rect2(2048, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_t2q0r"] -atlas = ExtResource("23_2652b") -region = Rect2(2560, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_ktcn0"] -atlas = ExtResource("23_2652b") -region = Rect2(3072, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_1t7ua"] -atlas = ExtResource("23_2652b") -region = Rect2(3584, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_de11d"] -atlas = ExtResource("23_2652b") -region = Rect2(4096, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_uiup0"] -atlas = ExtResource("23_2652b") -region = Rect2(4608, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_h2y2x"] -atlas = ExtResource("23_2652b") -region = Rect2(5120, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_w87tc"] -atlas = ExtResource("23_2652b") -region = Rect2(5632, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_3uvd6"] -atlas = ExtResource("23_2652b") -region = Rect2(6144, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_o0k2a"] -atlas = ExtResource("23_2652b") -region = Rect2(6656, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_5w451"] -atlas = ExtResource("23_2652b") -region = Rect2(7168, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_nw4v5"] -atlas = ExtResource("23_2652b") -region = Rect2(7680, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_vlw8a"] -atlas = ExtResource("23_2652b") -region = Rect2(8192, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_lokei"] -atlas = ExtResource("23_2652b") -region = Rect2(8704, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_217y4"] -atlas = ExtResource("23_2652b") -region = Rect2(9216, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_skejj"] -atlas = ExtResource("23_2652b") -region = Rect2(9728, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_4a6k6"] -atlas = ExtResource("23_2652b") -region = Rect2(10240, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_jqmwl"] -atlas = ExtResource("23_2652b") -region = Rect2(10752, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_0gcsk"] -atlas = ExtResource("23_2652b") -region = Rect2(11264, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_xrquc"] -atlas = ExtResource("23_2652b") -region = Rect2(11776, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_qlerd"] -atlas = ExtResource("23_2652b") -region = Rect2(12288, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_hyd01"] -atlas = ExtResource("23_2652b") -region = Rect2(12800, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_onylb"] -atlas = ExtResource("23_2652b") -region = Rect2(13312, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_o8i4i"] -atlas = ExtResource("23_2652b") -region = Rect2(13824, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_4mb1r"] -atlas = ExtResource("23_2652b") -region = Rect2(14336, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_l80om"] -atlas = ExtResource("23_2652b") -region = Rect2(14848, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_vfp4e"] -atlas = ExtResource("23_2652b") -region = Rect2(15360, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_x2fx3"] -atlas = ExtResource("23_2652b") -region = Rect2(15872, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_wycjd"] -atlas = ExtResource("23_2652b") -region = Rect2(0, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_osl5w"] -atlas = ExtResource("23_2652b") -region = Rect2(512, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_wfmlc"] -atlas = ExtResource("23_2652b") -region = Rect2(1024, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_nyonv"] -atlas = ExtResource("23_2652b") -region = Rect2(1536, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_7ddxf"] -atlas = ExtResource("23_2652b") -region = Rect2(2048, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_n0kog"] -atlas = ExtResource("23_2652b") -region = Rect2(2560, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_j1mi2"] -atlas = ExtResource("23_2652b") -region = Rect2(3072, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_j67jj"] -atlas = ExtResource("23_2652b") -region = Rect2(3584, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_1ugv6"] -atlas = ExtResource("23_2652b") -region = Rect2(4096, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_1p6jy"] -atlas = ExtResource("23_2652b") -region = Rect2(4608, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_mmcuw"] -atlas = ExtResource("23_2652b") -region = Rect2(5120, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_8x1i4"] -atlas = ExtResource("23_2652b") -region = Rect2(5632, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_undhx"] -atlas = ExtResource("23_2652b") -region = Rect2(6144, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_rbcef"] -atlas = ExtResource("23_2652b") -region = Rect2(6656, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_av6uk"] -atlas = ExtResource("23_2652b") -region = Rect2(7168, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_sgymg"] -atlas = ExtResource("23_2652b") -region = Rect2(7680, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_awcsm"] -atlas = ExtResource("23_2652b") -region = Rect2(8192, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_v45v5"] -atlas = ExtResource("23_2652b") -region = Rect2(8704, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_jjys1"] -atlas = ExtResource("23_2652b") -region = Rect2(9216, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_06gqo"] -atlas = ExtResource("23_2652b") -region = Rect2(9728, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_qv5kj"] -atlas = ExtResource("23_2652b") -region = Rect2(10240, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_sjk64"] -atlas = ExtResource("23_2652b") -region = Rect2(10752, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_tmxyu"] -atlas = ExtResource("23_2652b") -region = Rect2(11264, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_tuarh"] -atlas = ExtResource("23_2652b") -region = Rect2(11776, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_2t1p8"] -atlas = ExtResource("23_2652b") -region = Rect2(12288, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_ihmoq"] -atlas = ExtResource("23_2652b") -region = Rect2(12800, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_kn7jf"] -atlas = ExtResource("23_2652b") -region = Rect2(13312, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_w3r22"] -atlas = ExtResource("23_2652b") -region = Rect2(13824, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_2gmht"] -atlas = ExtResource("23_2652b") -region = Rect2(14336, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_btlqd"] -atlas = ExtResource("23_2652b") -region = Rect2(14848, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_3i0yp"] -atlas = ExtResource("23_2652b") -region = Rect2(15360, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_attmn"] -atlas = ExtResource("23_2652b") -region = Rect2(15872, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_2i8hi"] -atlas = ExtResource("23_2652b") -region = Rect2(0, 1024, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_fxw0h"] -atlas = ExtResource("23_2652b") -region = Rect2(512, 1024, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_okh71"] -atlas = ExtResource("23_2652b") -region = Rect2(1024, 1024, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_ruyng"] -atlas = ExtResource("23_2652b") -region = Rect2(1536, 1024, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_2l36d"] -atlas = ExtResource("23_2652b") -region = Rect2(2048, 1024, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_5l03w"] -atlas = ExtResource("23_2652b") -region = Rect2(2560, 1024, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_bod1o"] -atlas = ExtResource("23_2652b") -region = Rect2(3072, 1024, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_yoom6"] -atlas = ExtResource("23_2652b") -region = Rect2(3584, 1024, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_icnyh"] -atlas = ExtResource("23_2652b") -region = Rect2(4096, 1024, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_um82f"] -atlas = ExtResource("23_2652b") -region = Rect2(4608, 1024, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_wveq7"] -atlas = ExtResource("23_2652b") -region = Rect2(5120, 1024, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_ecdot"] -atlas = ExtResource("23_2652b") -region = Rect2(5632, 1024, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_42rbi"] -atlas = ExtResource("23_2652b") -region = Rect2(6144, 1024, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_s17pp"] -atlas = ExtResource("23_2652b") -region = Rect2(6656, 1024, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_nqulb"] -atlas = ExtResource("23_2652b") -region = Rect2(7168, 1024, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_4epey"] -atlas = ExtResource("23_2652b") -region = Rect2(7680, 1024, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_m2my2"] -atlas = ExtResource("23_2652b") -region = Rect2(8192, 1024, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_gxhf0"] -atlas = ExtResource("23_2652b") -region = Rect2(8704, 1024, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_bweox"] -atlas = ExtResource("23_2652b") -region = Rect2(9216, 1024, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_a5cr0"] -atlas = ExtResource("23_2652b") -region = Rect2(9728, 1024, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_wwqjb"] -atlas = ExtResource("23_2652b") -region = Rect2(10240, 1024, 512, 512) - -[sub_resource type="SpriteFrames" id="SpriteFrames_woqwc"] -animations = [{ -"frames": [{ -"duration": 1.0, -"texture": SubResource("AtlasTexture_nopn5") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_8744j") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_73itp") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_udknf") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_4cn3c") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_t2q0r") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_ktcn0") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_1t7ua") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_de11d") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_uiup0") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_h2y2x") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_w87tc") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_3uvd6") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_o0k2a") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_5w451") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_nw4v5") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_vlw8a") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_lokei") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_217y4") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_skejj") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_4a6k6") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_jqmwl") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_0gcsk") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_xrquc") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_qlerd") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_hyd01") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_onylb") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_o8i4i") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_4mb1r") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_l80om") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_vfp4e") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_x2fx3") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_wycjd") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_osl5w") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_wfmlc") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_nyonv") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_7ddxf") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_n0kog") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_j1mi2") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_j67jj") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_1ugv6") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_1p6jy") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_mmcuw") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_8x1i4") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_undhx") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_rbcef") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_av6uk") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_sgymg") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_awcsm") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_v45v5") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_jjys1") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_06gqo") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_qv5kj") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_sjk64") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_tmxyu") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_tuarh") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_2t1p8") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_ihmoq") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_kn7jf") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_w3r22") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_2gmht") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_btlqd") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_3i0yp") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_attmn") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_2i8hi") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_fxw0h") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_okh71") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_ruyng") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_2l36d") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_5l03w") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_bod1o") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_yoom6") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_icnyh") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_um82f") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_wveq7") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_ecdot") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_42rbi") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_s17pp") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_nqulb") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_4epey") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_m2my2") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_gxhf0") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_bweox") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_a5cr0") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_wwqjb") -}], -"loop": false, -"name": &"default", -"speed": 64.0 -}] - [sub_resource type="AtlasTexture" id="AtlasTexture_teexk"] atlas = ExtResource("24_uf853") region = Rect2(0, 0, 512, 512) @@ -11059,1258 +12066,6 @@ animations = [{ "speed": 64.0 }] -[sub_resource type="AtlasTexture" id="AtlasTexture_pvxw0"] -atlas = ExtResource("25_y8imw") -region = Rect2(0, 0, 350, 350) - -[sub_resource type="AtlasTexture" id="AtlasTexture_h780i"] -atlas = ExtResource("25_y8imw") -region = Rect2(350, 0, 350, 350) - -[sub_resource type="AtlasTexture" id="AtlasTexture_eucyw"] -atlas = ExtResource("25_y8imw") -region = Rect2(700, 0, 350, 350) - -[sub_resource type="AtlasTexture" id="AtlasTexture_fk61c"] -atlas = ExtResource("25_y8imw") -region = Rect2(1050, 0, 350, 350) - -[sub_resource type="AtlasTexture" id="AtlasTexture_t418h"] -atlas = ExtResource("25_y8imw") -region = Rect2(1400, 0, 350, 350) - -[sub_resource type="AtlasTexture" id="AtlasTexture_3hluk"] -atlas = ExtResource("25_y8imw") -region = Rect2(1750, 0, 350, 350) - -[sub_resource type="AtlasTexture" id="AtlasTexture_rcxrp"] -atlas = ExtResource("25_y8imw") -region = Rect2(2100, 0, 350, 350) - -[sub_resource type="AtlasTexture" id="AtlasTexture_qv04j"] -atlas = ExtResource("25_y8imw") -region = Rect2(2450, 0, 350, 350) - -[sub_resource type="AtlasTexture" id="AtlasTexture_fcmgb"] -atlas = ExtResource("25_y8imw") -region = Rect2(2800, 0, 350, 350) - -[sub_resource type="AtlasTexture" id="AtlasTexture_7yhn4"] -atlas = ExtResource("25_y8imw") -region = Rect2(3150, 0, 350, 350) - -[sub_resource type="AtlasTexture" id="AtlasTexture_wc5hd"] -atlas = ExtResource("25_y8imw") -region = Rect2(3500, 0, 350, 350) - -[sub_resource type="AtlasTexture" id="AtlasTexture_pwpaa"] -atlas = ExtResource("25_y8imw") -region = Rect2(3850, 0, 350, 350) - -[sub_resource type="AtlasTexture" id="AtlasTexture_rwn0a"] -atlas = ExtResource("25_y8imw") -region = Rect2(4200, 0, 350, 350) - -[sub_resource type="AtlasTexture" id="AtlasTexture_4dt1x"] -atlas = ExtResource("25_y8imw") -region = Rect2(4550, 0, 350, 350) - -[sub_resource type="AtlasTexture" id="AtlasTexture_0ooq7"] -atlas = ExtResource("25_y8imw") -region = Rect2(4900, 0, 350, 350) - -[sub_resource type="AtlasTexture" id="AtlasTexture_slqt4"] -atlas = ExtResource("25_y8imw") -region = Rect2(5250, 0, 350, 350) - -[sub_resource type="AtlasTexture" id="AtlasTexture_0mg2x"] -atlas = ExtResource("25_y8imw") -region = Rect2(5600, 0, 350, 350) - -[sub_resource type="AtlasTexture" id="AtlasTexture_dk8i1"] -atlas = ExtResource("25_y8imw") -region = Rect2(5950, 0, 350, 350) - -[sub_resource type="AtlasTexture" id="AtlasTexture_gnwol"] -atlas = ExtResource("25_y8imw") -region = Rect2(6300, 0, 350, 350) - -[sub_resource type="SpriteFrames" id="SpriteFrames_xppfr"] -animations = [{ -"frames": [{ -"duration": 1.0, -"texture": SubResource("AtlasTexture_pvxw0") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_h780i") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_eucyw") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_fk61c") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_t418h") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_3hluk") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_rcxrp") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_qv04j") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_fcmgb") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_7yhn4") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_wc5hd") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_pwpaa") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_rwn0a") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_4dt1x") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_0ooq7") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_slqt4") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_0mg2x") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_dk8i1") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_gnwol") -}], -"loop": true, -"name": &"default", -"speed": 32.0 -}] - -[sub_resource type="AtlasTexture" id="AtlasTexture_wmyys"] -atlas = ExtResource("26_2q4xc") -region = Rect2(0, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_4v5jq"] -atlas = ExtResource("26_2q4xc") -region = Rect2(512, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_p11af"] -atlas = ExtResource("26_2q4xc") -region = Rect2(1024, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_uxmjg"] -atlas = ExtResource("26_2q4xc") -region = Rect2(1536, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_7ne78"] -atlas = ExtResource("26_2q4xc") -region = Rect2(2048, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_pwhgk"] -atlas = ExtResource("26_2q4xc") -region = Rect2(2560, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_0xc37"] -atlas = ExtResource("26_2q4xc") -region = Rect2(3072, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_ricnn"] -atlas = ExtResource("26_2q4xc") -region = Rect2(3584, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_d7qyp"] -atlas = ExtResource("26_2q4xc") -region = Rect2(4096, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_5ult4"] -atlas = ExtResource("26_2q4xc") -region = Rect2(4608, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_ev4rp"] -atlas = ExtResource("26_2q4xc") -region = Rect2(5120, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_n3itj"] -atlas = ExtResource("26_2q4xc") -region = Rect2(5632, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_6hif5"] -atlas = ExtResource("26_2q4xc") -region = Rect2(6144, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_j6as1"] -atlas = ExtResource("26_2q4xc") -region = Rect2(6656, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_kiuq8"] -atlas = ExtResource("26_2q4xc") -region = Rect2(7168, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_sl6xr"] -atlas = ExtResource("26_2q4xc") -region = Rect2(7680, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_8cf5r"] -atlas = ExtResource("26_2q4xc") -region = Rect2(8192, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_lbhlt"] -atlas = ExtResource("26_2q4xc") -region = Rect2(8704, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_3b8p1"] -atlas = ExtResource("26_2q4xc") -region = Rect2(9216, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_p4gd5"] -atlas = ExtResource("26_2q4xc") -region = Rect2(9728, 0, 512, 512) - -[sub_resource type="SpriteFrames" id="SpriteFrames_42bhc"] -animations = [{ -"frames": [{ -"duration": 1.0, -"texture": SubResource("AtlasTexture_wmyys") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_4v5jq") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_p11af") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_uxmjg") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_7ne78") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_pwhgk") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_0xc37") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_ricnn") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_d7qyp") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_5ult4") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_ev4rp") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_n3itj") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_6hif5") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_j6as1") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_kiuq8") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_sl6xr") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_8cf5r") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_lbhlt") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_3b8p1") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_p4gd5") -}], -"loop": false, -"name": &"default", -"speed": 32.0 -}] - -[sub_resource type="AtlasTexture" id="AtlasTexture_kcb6w"] -atlas = ExtResource("27_3yow4") -region = Rect2(0, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_d8kdm"] -atlas = ExtResource("27_3yow4") -region = Rect2(512, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_hxipc"] -atlas = ExtResource("27_3yow4") -region = Rect2(1024, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_oqo4u"] -atlas = ExtResource("27_3yow4") -region = Rect2(1536, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_16i0h"] -atlas = ExtResource("27_3yow4") -region = Rect2(2048, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_a5x7g"] -atlas = ExtResource("27_3yow4") -region = Rect2(2560, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_alrmx"] -atlas = ExtResource("27_3yow4") -region = Rect2(3072, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_xmdye"] -atlas = ExtResource("27_3yow4") -region = Rect2(3584, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_lkhbj"] -atlas = ExtResource("27_3yow4") -region = Rect2(4096, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_mexas"] -atlas = ExtResource("27_3yow4") -region = Rect2(4608, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_7j400"] -atlas = ExtResource("27_3yow4") -region = Rect2(5120, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_4ms00"] -atlas = ExtResource("27_3yow4") -region = Rect2(5632, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_7lgsy"] -atlas = ExtResource("27_3yow4") -region = Rect2(6144, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_60ybr"] -atlas = ExtResource("27_3yow4") -region = Rect2(6656, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_xc4x4"] -atlas = ExtResource("27_3yow4") -region = Rect2(7168, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_cyukq"] -atlas = ExtResource("27_3yow4") -region = Rect2(7680, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_v0lf8"] -atlas = ExtResource("27_3yow4") -region = Rect2(8192, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_qi4av"] -atlas = ExtResource("27_3yow4") -region = Rect2(8704, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_an7ya"] -atlas = ExtResource("27_3yow4") -region = Rect2(9216, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_8pjgr"] -atlas = ExtResource("27_3yow4") -region = Rect2(9728, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_w6y2h"] -atlas = ExtResource("27_3yow4") -region = Rect2(10240, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_6qsdb"] -atlas = ExtResource("27_3yow4") -region = Rect2(10752, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_4525e"] -atlas = ExtResource("27_3yow4") -region = Rect2(11264, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_226qt"] -atlas = ExtResource("27_3yow4") -region = Rect2(11776, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_nbjul"] -atlas = ExtResource("27_3yow4") -region = Rect2(12288, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_i3gpb"] -atlas = ExtResource("27_3yow4") -region = Rect2(12800, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_kl0b1"] -atlas = ExtResource("27_3yow4") -region = Rect2(13312, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_8rtyd"] -atlas = ExtResource("27_3yow4") -region = Rect2(13824, 0, 512, 512) - -[sub_resource type="SpriteFrames" id="SpriteFrames_602ll"] -animations = [{ -"frames": [{ -"duration": 1.0, -"texture": SubResource("AtlasTexture_kcb6w") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_d8kdm") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_hxipc") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_oqo4u") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_16i0h") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_a5x7g") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_alrmx") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_xmdye") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_lkhbj") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_mexas") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_7j400") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_4ms00") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_7lgsy") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_60ybr") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_xc4x4") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_cyukq") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_v0lf8") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_qi4av") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_an7ya") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_8pjgr") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_w6y2h") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_6qsdb") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_4525e") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_226qt") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_nbjul") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_i3gpb") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_kl0b1") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_8rtyd") -}], -"loop": false, -"name": &"default", -"speed": 32.0 -}] - -[sub_resource type="AtlasTexture" id="AtlasTexture_xmq72"] -atlas = ExtResource("28_oujy1") -region = Rect2(0, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_mq4ru"] -atlas = ExtResource("28_oujy1") -region = Rect2(512, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_63pv8"] -atlas = ExtResource("28_oujy1") -region = Rect2(1024, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_81omh"] -atlas = ExtResource("28_oujy1") -region = Rect2(1536, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_oshxc"] -atlas = ExtResource("28_oujy1") -region = Rect2(2048, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_f051i"] -atlas = ExtResource("28_oujy1") -region = Rect2(2560, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_kiwjx"] -atlas = ExtResource("28_oujy1") -region = Rect2(3072, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_tra6u"] -atlas = ExtResource("28_oujy1") -region = Rect2(3584, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_qrkej"] -atlas = ExtResource("28_oujy1") -region = Rect2(4096, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_q6k75"] -atlas = ExtResource("28_oujy1") -region = Rect2(4608, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_bdqse"] -atlas = ExtResource("28_oujy1") -region = Rect2(5120, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_482wh"] -atlas = ExtResource("28_oujy1") -region = Rect2(5632, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_xu0x4"] -atlas = ExtResource("28_oujy1") -region = Rect2(6144, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_n0ndj"] -atlas = ExtResource("28_oujy1") -region = Rect2(6656, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_blwf7"] -atlas = ExtResource("28_oujy1") -region = Rect2(7168, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_40liv"] -atlas = ExtResource("28_oujy1") -region = Rect2(7680, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_bpyyx"] -atlas = ExtResource("28_oujy1") -region = Rect2(8192, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_1q4di"] -atlas = ExtResource("28_oujy1") -region = Rect2(8704, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_k4prd"] -atlas = ExtResource("28_oujy1") -region = Rect2(9216, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_1r2vo"] -atlas = ExtResource("28_oujy1") -region = Rect2(9728, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_0nb7q"] -atlas = ExtResource("28_oujy1") -region = Rect2(10240, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_4pi58"] -atlas = ExtResource("28_oujy1") -region = Rect2(10752, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_4g55r"] -atlas = ExtResource("28_oujy1") -region = Rect2(11264, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_isyxq"] -atlas = ExtResource("28_oujy1") -region = Rect2(11776, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_nx8x7"] -atlas = ExtResource("28_oujy1") -region = Rect2(12288, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_mcfc5"] -atlas = ExtResource("28_oujy1") -region = Rect2(12800, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_n318m"] -atlas = ExtResource("28_oujy1") -region = Rect2(13312, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_cvph7"] -atlas = ExtResource("28_oujy1") -region = Rect2(13824, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_qonub"] -atlas = ExtResource("28_oujy1") -region = Rect2(14336, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_47wep"] -atlas = ExtResource("28_oujy1") -region = Rect2(14848, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_wxg7g"] -atlas = ExtResource("28_oujy1") -region = Rect2(15360, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_37a1c"] -atlas = ExtResource("28_oujy1") -region = Rect2(15872, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_a8ke0"] -atlas = ExtResource("28_oujy1") -region = Rect2(0, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_rt73e"] -atlas = ExtResource("28_oujy1") -region = Rect2(512, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_nlx4y"] -atlas = ExtResource("28_oujy1") -region = Rect2(1024, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_tqvaa"] -atlas = ExtResource("28_oujy1") -region = Rect2(1536, 512, 512, 512) - -[sub_resource type="SpriteFrames" id="SpriteFrames_vxts4"] -animations = [{ -"frames": [{ -"duration": 1.0, -"texture": SubResource("AtlasTexture_xmq72") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_mq4ru") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_63pv8") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_81omh") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_oshxc") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_f051i") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_kiwjx") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_tra6u") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_qrkej") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_q6k75") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_bdqse") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_482wh") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_xu0x4") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_n0ndj") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_blwf7") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_40liv") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_bpyyx") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_1q4di") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_k4prd") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_1r2vo") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_0nb7q") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_4pi58") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_4g55r") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_isyxq") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_nx8x7") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_mcfc5") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_n318m") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_cvph7") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_qonub") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_47wep") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_wxg7g") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_37a1c") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_a8ke0") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_rt73e") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_nlx4y") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_tqvaa") -}], -"loop": false, -"name": &"default", -"speed": 64.0 -}] - -[sub_resource type="AtlasTexture" id="AtlasTexture_jkm8c"] -atlas = ExtResource("29_ysfuc") -region = Rect2(0, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_ovlij"] -atlas = ExtResource("29_ysfuc") -region = Rect2(512, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_f634n"] -atlas = ExtResource("29_ysfuc") -region = Rect2(1024, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_56jvv"] -atlas = ExtResource("29_ysfuc") -region = Rect2(1536, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_tguxe"] -atlas = ExtResource("29_ysfuc") -region = Rect2(2048, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_8a1br"] -atlas = ExtResource("29_ysfuc") -region = Rect2(2560, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_treje"] -atlas = ExtResource("29_ysfuc") -region = Rect2(3072, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_ucopf"] -atlas = ExtResource("29_ysfuc") -region = Rect2(3584, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_06pau"] -atlas = ExtResource("29_ysfuc") -region = Rect2(4096, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_yut7s"] -atlas = ExtResource("29_ysfuc") -region = Rect2(4608, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_7ct6q"] -atlas = ExtResource("29_ysfuc") -region = Rect2(5120, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_apbil"] -atlas = ExtResource("29_ysfuc") -region = Rect2(5632, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_g6lek"] -atlas = ExtResource("29_ysfuc") -region = Rect2(6144, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_i055y"] -atlas = ExtResource("29_ysfuc") -region = Rect2(6656, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_p00oj"] -atlas = ExtResource("29_ysfuc") -region = Rect2(7168, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_db7t0"] -atlas = ExtResource("29_ysfuc") -region = Rect2(7680, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_p1sai"] -atlas = ExtResource("29_ysfuc") -region = Rect2(8192, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_0yuwb"] -atlas = ExtResource("29_ysfuc") -region = Rect2(8704, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_wcgn0"] -atlas = ExtResource("29_ysfuc") -region = Rect2(9216, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_k5hgl"] -atlas = ExtResource("29_ysfuc") -region = Rect2(9728, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_ji08h"] -atlas = ExtResource("29_ysfuc") -region = Rect2(10240, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_7lfvv"] -atlas = ExtResource("29_ysfuc") -region = Rect2(10752, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_emn3u"] -atlas = ExtResource("29_ysfuc") -region = Rect2(11264, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_gr6sd"] -atlas = ExtResource("29_ysfuc") -region = Rect2(11776, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_ge6u4"] -atlas = ExtResource("29_ysfuc") -region = Rect2(12288, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_xlxqt"] -atlas = ExtResource("29_ysfuc") -region = Rect2(12800, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_r2dkq"] -atlas = ExtResource("29_ysfuc") -region = Rect2(13312, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_us17c"] -atlas = ExtResource("29_ysfuc") -region = Rect2(13824, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_jwjoi"] -atlas = ExtResource("29_ysfuc") -region = Rect2(14336, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_ag6w4"] -atlas = ExtResource("29_ysfuc") -region = Rect2(14848, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_jprbl"] -atlas = ExtResource("29_ysfuc") -region = Rect2(15360, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_x5763"] -atlas = ExtResource("29_ysfuc") -region = Rect2(15872, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_6eduo"] -atlas = ExtResource("29_ysfuc") -region = Rect2(0, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_4qkb0"] -atlas = ExtResource("29_ysfuc") -region = Rect2(512, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_uomo7"] -atlas = ExtResource("29_ysfuc") -region = Rect2(1024, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_08pgi"] -atlas = ExtResource("29_ysfuc") -region = Rect2(1536, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_8m7fs"] -atlas = ExtResource("29_ysfuc") -region = Rect2(2048, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_p5bdn"] -atlas = ExtResource("29_ysfuc") -region = Rect2(2560, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_wtfxr"] -atlas = ExtResource("29_ysfuc") -region = Rect2(3072, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_obmng"] -atlas = ExtResource("29_ysfuc") -region = Rect2(3584, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_vn1vg"] -atlas = ExtResource("29_ysfuc") -region = Rect2(4096, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_bhxcn"] -atlas = ExtResource("29_ysfuc") -region = Rect2(4608, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_oc460"] -atlas = ExtResource("29_ysfuc") -region = Rect2(5120, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_3drt5"] -atlas = ExtResource("29_ysfuc") -region = Rect2(5632, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_dy8fe"] -atlas = ExtResource("29_ysfuc") -region = Rect2(6144, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_0yv4j"] -atlas = ExtResource("29_ysfuc") -region = Rect2(6656, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_dn00t"] -atlas = ExtResource("29_ysfuc") -region = Rect2(7168, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_sy2sf"] -atlas = ExtResource("29_ysfuc") -region = Rect2(7680, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_r1bp6"] -atlas = ExtResource("29_ysfuc") -region = Rect2(8192, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_lkur4"] -atlas = ExtResource("29_ysfuc") -region = Rect2(8704, 512, 512, 512) - -[sub_resource type="SpriteFrames" id="SpriteFrames_2shfw"] -animations = [{ -"frames": [{ -"duration": 1.0, -"texture": SubResource("AtlasTexture_jkm8c") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_ovlij") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_f634n") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_56jvv") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_tguxe") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_8a1br") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_treje") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_ucopf") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_06pau") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_yut7s") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_7ct6q") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_apbil") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_g6lek") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_i055y") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_p00oj") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_db7t0") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_p1sai") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_0yuwb") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_wcgn0") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_k5hgl") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_ji08h") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_7lfvv") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_emn3u") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_gr6sd") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_ge6u4") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_xlxqt") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_r2dkq") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_us17c") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_jwjoi") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_ag6w4") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_jprbl") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_x5763") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_6eduo") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_4qkb0") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_uomo7") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_08pgi") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_8m7fs") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_p5bdn") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_wtfxr") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_obmng") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_vn1vg") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_bhxcn") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_oc460") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_3drt5") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_dy8fe") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_0yv4j") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_dn00t") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_sy2sf") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_r1bp6") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_lkur4") -}], -"loop": false, -"name": &"default", -"speed": 64.0 -}] - -[sub_resource type="AtlasTexture" id="AtlasTexture_2tcuj"] -atlas = ExtResource("33_74hqa") -region = Rect2(0, 0, 425, 425) - -[sub_resource type="AtlasTexture" id="AtlasTexture_77cqk"] -atlas = ExtResource("33_74hqa") -region = Rect2(425, 0, 425, 425) - -[sub_resource type="AtlasTexture" id="AtlasTexture_th76d"] -atlas = ExtResource("33_74hqa") -region = Rect2(850, 0, 425, 425) - -[sub_resource type="AtlasTexture" id="AtlasTexture_sfycl"] -atlas = ExtResource("33_74hqa") -region = Rect2(1275, 0, 425, 425) - -[sub_resource type="AtlasTexture" id="AtlasTexture_b741k"] -atlas = ExtResource("33_74hqa") -region = Rect2(1700, 0, 425, 425) - -[sub_resource type="AtlasTexture" id="AtlasTexture_jswex"] -atlas = ExtResource("33_74hqa") -region = Rect2(2125, 0, 425, 425) - -[sub_resource type="AtlasTexture" id="AtlasTexture_v32co"] -atlas = ExtResource("33_74hqa") -region = Rect2(2550, 0, 425, 425) - -[sub_resource type="AtlasTexture" id="AtlasTexture_np2iq"] -atlas = ExtResource("33_74hqa") -region = Rect2(2975, 0, 425, 425) - -[sub_resource type="AtlasTexture" id="AtlasTexture_68n28"] -atlas = ExtResource("33_74hqa") -region = Rect2(3400, 0, 425, 425) - -[sub_resource type="AtlasTexture" id="AtlasTexture_auvl8"] -atlas = ExtResource("33_74hqa") -region = Rect2(3825, 0, 425, 425) - -[sub_resource type="AtlasTexture" id="AtlasTexture_e0lid"] -atlas = ExtResource("33_74hqa") -region = Rect2(4250, 0, 425, 425) - -[sub_resource type="AtlasTexture" id="AtlasTexture_n2kv8"] -atlas = ExtResource("33_74hqa") -region = Rect2(4675, 0, 425, 425) - -[sub_resource type="AtlasTexture" id="AtlasTexture_s2mu3"] -atlas = ExtResource("33_74hqa") -region = Rect2(5100, 0, 425, 425) - -[sub_resource type="AtlasTexture" id="AtlasTexture_ob28g"] -atlas = ExtResource("33_74hqa") -region = Rect2(5525, 0, 425, 425) - -[sub_resource type="AtlasTexture" id="AtlasTexture_vyvxi"] -atlas = ExtResource("33_74hqa") -region = Rect2(5950, 0, 425, 425) - -[sub_resource type="AtlasTexture" id="AtlasTexture_f8yts"] -atlas = ExtResource("33_74hqa") -region = Rect2(6375, 0, 425, 425) - -[sub_resource type="AtlasTexture" id="AtlasTexture_c4qcr"] -atlas = ExtResource("33_74hqa") -region = Rect2(6800, 0, 425, 425) - -[sub_resource type="AtlasTexture" id="AtlasTexture_0mu4b"] -atlas = ExtResource("33_74hqa") -region = Rect2(7225, 0, 425, 425) - -[sub_resource type="AtlasTexture" id="AtlasTexture_pdkmw"] -atlas = ExtResource("33_74hqa") -region = Rect2(7650, 0, 425, 425) - -[sub_resource type="SpriteFrames" id="SpriteFrames_m41n0"] -animations = [{ -"frames": [{ -"duration": 1.0, -"texture": SubResource("AtlasTexture_2tcuj") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_77cqk") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_th76d") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_sfycl") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_b741k") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_jswex") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_v32co") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_np2iq") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_68n28") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_auvl8") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_e0lid") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_n2kv8") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_s2mu3") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_ob28g") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_vyvxi") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_f8yts") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_c4qcr") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_0mu4b") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_pdkmw") -}], -"loop": false, -"name": &"default", -"speed": 32.0 -}] - [node name="Player" type="CharacterBody3D"] collision_layer = 802 collision_mask = 775 @@ -12349,7 +12104,7 @@ visible = false [node name="OmniLight3D" type="OmniLight3D" parent="Camera/Lights"] transform = Transform3D(0.999997, 0, 0.00260054, 0, 1, 0, -0.00260054, 0, 0.999997, -0.109951, 1.37487, -0.0100155) -light_color = Color(0.87424, 0.682579, 0.506014, 1) +light_color = Color(0.845731, 0.82142, 0.80354, 1) light_energy = 0.2 light_bake_mode = 1 shadow_enabled = true @@ -12461,70 +12216,34 @@ handle_input_locally = false size = Vector2i(1440, 1080) render_target_update_mode = 4 -[node name="An Bradan" type="AnimatedSprite2D" parent="ScreenFX/SubViewportContainer/SubViewport"] +[node name="Spell Signs" type="AnimatedSprite2D" parent="ScreenFX/SubViewportContainer/SubViewport"] texture_filter = 1 position = Vector2(713, 540) scale = Vector2(1.5, 1.5) sprite_frames = SubResource("SpriteFrames_cdih5") +animation = &"Radial" +frame = 84 +frame_progress = 1.0 speed_scale = 2.0 -[node name="Divinity Recall" type="AnimatedSprite2D" parent="ScreenFX/SubViewportContainer/SubViewport"] -texture_filter = 1 -position = Vector2(773, 524) -scale = Vector2(1.8, 1.8) -sprite_frames = SubResource("SpriteFrames_xtuex") - -[node name="Geomantic Reactor Fire Layer 1" type="AnimatedSprite2D" parent="ScreenFX/SubViewportContainer/SubViewport"] +[node name="Geomantic Reactor Layer 1" type="AnimatedSprite2D" parent="ScreenFX/SubViewportContainer/SubViewport"] position = Vector2(725, 540) sprite_frames = SubResource("SpriteFrames_pbcxe") -frame = 42 +animation = &"G-Reactor Air" +frame = 51 frame_progress = 1.0 -[node name="Geomantic Reactor Fire Layer 2" type="AnimatedSprite2D" parent="ScreenFX/SubViewportContainer/SubViewport"] +[node name="Geomantic Reactor Layer 2" type="AnimatedSprite2D" parent="ScreenFX/SubViewportContainer/SubViewport"] position = Vector2(725, 540) sprite_frames = SubResource("SpriteFrames_nfb16") -frame = 80 +animation = &"G-Reactor Fire L2" +frame = 81 frame_progress = 1.0 speed_scale = 3.0 -[node name="Geomantic Reactor Air" type="AnimatedSprite2D" parent="ScreenFX/SubViewportContainer/SubViewport"] -texture_filter = 1 -position = Vector2(725, 540) -sprite_frames = SubResource("SpriteFrames_xbcdg") - -[node name="Geomantic Reactor Earth" type="AnimatedSprite2D" parent="ScreenFX/SubViewportContainer/SubViewport"] -position = Vector2(631, 476) -scale = Vector2(1.6, 1.6) -sprite_frames = SubResource("SpriteFrames_ynv1q") - -[node name="Geomantic Reactor Water" type="AnimatedSprite2D" parent="ScreenFX/SubViewportContainer/SubViewport"] -texture_filter = 1 -position = Vector2(733, 542) -scale = Vector2(1.75, 1.75) -sprite_frames = SubResource("SpriteFrames_5jq5w") - -[node name="Bubbles" type="AnimatedSprite2D" parent="ScreenFX/SubViewportContainer/SubViewport/Geomantic Reactor Water"] -position = Vector2(-418.857, -309.714) -scale = Vector2(0.571429, 0.571429) -sprite_frames = SubResource("SpriteFrames_15ffm") -frame_progress = 0.0753843 - [node name="ItemVFX" type="Sprite2D" parent="ScreenFX/SubViewportContainer/SubViewport"] position = Vector2(6.10352e-05, 6.10352e-05) -[node name="Kyuuketsuki" type="AnimatedSprite2D" parent="ScreenFX/SubViewportContainer/SubViewport"] -modulate = Color(1, 1, 1, 0.508) -position = Vector2(739, 556) -scale = Vector2(1.52, 1.52) -sprite_frames = SubResource("SpriteFrames_5mgfr") -frame = 39 -frame_progress = 1.0 - -[node name="Persiko" type="AnimatedSprite2D" parent="ScreenFX/SubViewportContainer/SubViewport"] -position = Vector2(722, 533) -scale = Vector2(1.75, 1.75) -sprite_frames = SubResource("SpriteFrames_my0pc") - [node name="Prosc Message" type="Sprite2D" parent="ScreenFX/SubViewportContainer/SubViewport"] texture_filter = 1 material = SubResource("ShaderMaterial_es4xk") @@ -12544,13 +12263,6 @@ grow_horizontal = 2 grow_vertical = 2 color = Color(1, 1, 1, 0) -[node name="Fire Slash" type="AnimatedSprite2D" parent="ScreenFX/SubViewportContainer/SubViewport"] -position = Vector2(730, 531) -scale = Vector2(2.325, 2.325) -sprite_frames = SubResource("SpriteFrames_3e14i") -frame = 29 -frame_progress = 1.0 - [node name="Crit Marker" type="AnimatedSprite2D" parent="ScreenFX/SubViewportContainer/SubViewport"] position = Vector2(730, 531) sprite_frames = SubResource("SpriteFrames_gtij5") @@ -12564,17 +12276,6 @@ sprite_frames = SubResource("SpriteFrames_5rmcm") frame = 58 frame_progress = 1.0 -[node name="Rondo Slash" type="AnimatedSprite2D" parent="ScreenFX/SubViewportContainer/SubViewport"] -position = Vector2(800, 562) -scale = Vector2(2.425, 2.21094) -sprite_frames = SubResource("SpriteFrames_a3r4p") - -[node name="unassigned - Radial" type="AnimatedSprite2D" parent="ScreenFX/SubViewportContainer/SubViewport"] -position = Vector2(705, 519) -sprite_frames = SubResource("SpriteFrames_woqwc") -frame = 84 -frame_progress = 1.0 - [node name="ENTROPIC ELEMENT1" type="AnimatedSprite2D" parent="ScreenFX/SubViewportContainer/SubViewport"] position = Vector2(349, 200) scale = Vector2(1.34012, 1.39244) @@ -12597,39 +12298,6 @@ sprite_frames = SubResource("SpriteFrames_krly2") frame = 63 frame_progress = 1.0 -[node name="Hydric Slash" type="AnimatedSprite2D" parent="ScreenFX/SubViewportContainer/SubViewport"] -position = Vector2(661, 563) -scale = Vector2(2.774, 2.613) -sprite_frames = SubResource("SpriteFrames_xppfr") - -[node name="Aero Slash" type="AnimatedSprite2D" parent="ScreenFX/SubViewportContainer/SubViewport"] -position = Vector2(661, 563) -scale = Vector2(2.774, 2.613) -sprite_frames = SubResource("SpriteFrames_42bhc") - -[node name="Love Judgement Base Strike" type="AnimatedSprite2D" parent="ScreenFX/SubViewportContainer/SubViewport"] -position = Vector2(661, 563) -scale = Vector2(2.774, 2.613) -sprite_frames = SubResource("SpriteFrames_602ll") -frame = 27 -frame_progress = 1.0 - -[node name="Plasma Sword" type="AnimatedSprite2D" parent="ScreenFX/SubViewportContainer/SubViewport"] -position = Vector2(690, 563) -scale = Vector2(2.774, 2.613) -sprite_frames = SubResource("SpriteFrames_vxts4") -frame = 35 -frame_progress = 1.0 - -[node name="Unarmed Strike" type="AnimatedSprite2D" parent="ScreenFX/SubViewportContainer/SubViewport"] -position = Vector2(620, 553) -scale = Vector2(0.878906, 0.828125) -sprite_frames = SubResource("SpriteFrames_2shfw") - -[node name="Earth Slash" type="AnimatedSprite2D" parent="ScreenFX/SubViewportContainer/SubViewport"] -position = Vector2(739, 571) -sprite_frames = SubResource("SpriteFrames_m41n0") - [node name="HitWallSound" type="AudioStreamPlayer" parent="."] unique_name_in_owner = true bus = &"SFX"