diff --git a/Zennysoft.Game.Ma.Implementation/Audio/state/InGameAudioLogic.Output.cs b/Zennysoft.Game.Ma.Implementation/Audio/state/InGameAudioLogic.Output.cs deleted file mode 100644 index 83640152..00000000 --- a/Zennysoft.Game.Ma.Implementation/Audio/state/InGameAudioLogic.Output.cs +++ /dev/null @@ -1,39 +0,0 @@ -namespace Zennysoft.Ma.Adapter; - -public partial class InGameAudioLogic -{ - public static class Output - { - #region BGM - public readonly record struct PlayOverworldMusic; - - public readonly record struct PlayDungeonThemeAMusic; - #endregion - - #region SFX - public readonly record struct PlayPlayerAttackSound; - - public readonly record struct PlayPlayerAttackWallSound; - - public readonly record struct PlayPlayerAttackEnemySound; - - public readonly record struct PlayMenuScrollSound; - - public readonly record struct PlayEquipSound; - - public readonly record struct PlayUnequipSound; - - public readonly record struct PlayInventorySortedSound; - - public readonly record struct PlayMenuBackSound; - - public readonly record struct PlayHealingItemSound; - - public readonly record struct PlayTeleportSound; - #endregion - - public readonly record struct PlayGameMusic; - - public readonly record struct StopGameMusic; - } -} diff --git a/Zennysoft.Game.Ma.Implementation/Audio/state/InGameAudioLogic.Output.cs.uid b/Zennysoft.Game.Ma.Implementation/Audio/state/InGameAudioLogic.Output.cs.uid deleted file mode 100644 index 600db214..00000000 --- a/Zennysoft.Game.Ma.Implementation/Audio/state/InGameAudioLogic.Output.cs.uid +++ /dev/null @@ -1 +0,0 @@ -uid://bfnbplmd35454 diff --git a/Zennysoft.Game.Ma.Implementation/Audio/state/InGameAudioLogic.State.cs b/Zennysoft.Game.Ma.Implementation/Audio/state/InGameAudioLogic.State.cs deleted file mode 100644 index 1283b1ac..00000000 --- a/Zennysoft.Game.Ma.Implementation/Audio/state/InGameAudioLogic.State.cs +++ /dev/null @@ -1,12 +0,0 @@ -using Chickensoft.Introspection; -using Chickensoft.LogicBlocks; - -namespace Zennysoft.Ma.Adapter; - -public partial class InGameAudioLogic -{ - [Meta] - public partial record State : StateLogic - { - } -} diff --git a/Zennysoft.Game.Ma.Implementation/Audio/state/InGameAudioLogic.State.cs.uid b/Zennysoft.Game.Ma.Implementation/Audio/state/InGameAudioLogic.State.cs.uid deleted file mode 100644 index e98cc53c..00000000 --- a/Zennysoft.Game.Ma.Implementation/Audio/state/InGameAudioLogic.State.cs.uid +++ /dev/null @@ -1 +0,0 @@ -uid://c8cfpu81338hk diff --git a/Zennysoft.Game.Ma.Implementation/Audio/state/InGameAudioLogic.cs b/Zennysoft.Game.Ma.Implementation/Audio/state/InGameAudioLogic.cs deleted file mode 100644 index 4064f243..00000000 --- a/Zennysoft.Game.Ma.Implementation/Audio/state/InGameAudioLogic.cs +++ /dev/null @@ -1,13 +0,0 @@ -using Chickensoft.Introspection; -using Chickensoft.LogicBlocks; - -namespace Zennysoft.Ma.Adapter; -public interface IInGameAudioLogic : ILogicBlock; - -[Meta] -[LogicBlock(typeof(State))] -public partial class InGameAudioLogic : - LogicBlock, IInGameAudioLogic -{ - public override Transition GetInitialState() => To(); -} diff --git a/Zennysoft.Game.Ma.Implementation/Audio/state/InGameAudioLogic.cs.uid b/Zennysoft.Game.Ma.Implementation/Audio/state/InGameAudioLogic.cs.uid deleted file mode 100644 index d9037dcd..00000000 --- a/Zennysoft.Game.Ma.Implementation/Audio/state/InGameAudioLogic.cs.uid +++ /dev/null @@ -1 +0,0 @@ -uid://on5thilbaogw diff --git a/Zennysoft.Game.Ma.Implementation/Audio/state/states/InGameAudioLogic.State.Disabled.cs b/Zennysoft.Game.Ma.Implementation/Audio/state/states/InGameAudioLogic.State.Disabled.cs deleted file mode 100644 index a275d333..00000000 --- a/Zennysoft.Game.Ma.Implementation/Audio/state/states/InGameAudioLogic.State.Disabled.cs +++ /dev/null @@ -1,11 +0,0 @@ -using Chickensoft.Introspection; - -namespace Zennysoft.Ma.Adapter; - -public partial class InGameAudioLogic -{ - [Meta] - public partial record Disabled : State - { - } -} \ No newline at end of file diff --git a/Zennysoft.Game.Ma.Implementation/Audio/state/states/InGameAudioLogic.State.Disabled.cs.uid b/Zennysoft.Game.Ma.Implementation/Audio/state/states/InGameAudioLogic.State.Disabled.cs.uid deleted file mode 100644 index 5382f0cd..00000000 --- a/Zennysoft.Game.Ma.Implementation/Audio/state/states/InGameAudioLogic.State.Disabled.cs.uid +++ /dev/null @@ -1 +0,0 @@ -uid://c02hwxip7xksf diff --git a/Zennysoft.Game.Ma.Implementation/Audio/state/states/InGameAudioLogic.State.Enabled.cs b/Zennysoft.Game.Ma.Implementation/Audio/state/states/InGameAudioLogic.State.Enabled.cs deleted file mode 100644 index 3aa74b19..00000000 --- a/Zennysoft.Game.Ma.Implementation/Audio/state/states/InGameAudioLogic.State.Enabled.cs +++ /dev/null @@ -1,74 +0,0 @@ -using Chickensoft.Introspection; -using Zennysoft.Game.Abstractions; - -namespace Zennysoft.Ma.Adapter; - -public partial class InGameAudioLogic -{ - [Meta] - public partial record Enabled : State - { - public Enabled() - { - OnAttach(() => - { - var player = Get(); - OnOverworldEntered(); - var gameEventDepot = Get(); - var gameRepo = Get(); - gameEventDepot.OverworldEntered += OnOverworldEntered; - gameEventDepot.DungeonAThemeAreaEntered += OnDungeonAThemeEntered; - gameEventDepot.MenuScrolled += OnMenuScrolled; - gameEventDepot.MenuBackedOut += OnMenuBackedOut; - gameRepo.EquippedItem += OnEquippedItem; - gameRepo.UnequippedItem += OnUnequippedItem; - gameEventDepot.InventorySorted += OnInventorySorted; - gameEventDepot.HealingItemConsumed += OnHealingItemConsumed; - gameRepo.RestorativePickedUp += OnRestorativePickedUp; - gameEventDepot.TeleportEntered += OnTeleportEntered; - gameRepo.PlayerAttack += OnPlayerAttack; - gameRepo.PlayerAttackedWall += OnPlayerAttackWall; - }); - OnDetach(() => - { - var gameEventDepot = Get(); - var player = Get(); - var gameRepo = Get(); - gameEventDepot.OverworldEntered -= OnOverworldEntered; - gameEventDepot.DungeonAThemeAreaEntered -= OnDungeonAThemeEntered; - gameEventDepot.MenuScrolled -= OnMenuScrolled; - gameEventDepot.MenuBackedOut -= OnMenuBackedOut; - gameRepo.EquippedItem -= OnEquippedItem; - gameRepo.UnequippedItem -= OnUnequippedItem; - gameEventDepot.InventorySorted -= OnInventorySorted; - gameEventDepot.TeleportEntered -= OnTeleportEntered; - gameRepo.PlayerAttack -= OnPlayerAttack; - gameRepo.PlayerAttackedWall -= OnPlayerAttackWall; - }); - } - - private void OnPlayerAttack() => Output(new Output.PlayPlayerAttackSound()); - - private void OnPlayerAttackWall() => Output(new Output.PlayPlayerAttackWallSound()); - - private void OnRestorativePickedUp(IHealthPack restorative) => Output(new Output.PlayHealingItemSound()); - - private void OnMenuBackedOut() => Output(new Output.PlayMenuBackSound()); - - private void OnHealingItemConsumed(InventoryItem stats) => Output(new Output.PlayHealingItemSound()); - - private void OnInventorySorted() => Output(new Output.PlayInventorySortedSound()); - - private void OnEquippedItem(InventoryItem equipableItem) => Output(new Output.PlayEquipSound()); - - private void OnUnequippedItem(InventoryItem equipableItem) => Output(new Output.PlayUnequipSound()); - - private void OnOverworldEntered() => Output(new Output.PlayOverworldMusic()); - - private void OnDungeonAThemeEntered() => Output(new Output.PlayDungeonThemeAMusic()); - - private void OnMenuScrolled() => Output(new Output.PlayMenuScrollSound()); - - private void OnTeleportEntered() => Output(new Output.PlayTeleportSound()); - } -} diff --git a/Zennysoft.Game.Ma.Implementation/Audio/state/states/InGameAudioLogic.State.Enabled.cs.uid b/Zennysoft.Game.Ma.Implementation/Audio/state/states/InGameAudioLogic.State.Enabled.cs.uid deleted file mode 100644 index 3651869a..00000000 --- a/Zennysoft.Game.Ma.Implementation/Audio/state/states/InGameAudioLogic.State.Enabled.cs.uid +++ /dev/null @@ -1 +0,0 @@ -uid://ddvs2b5hjchag diff --git a/Zennysoft.Game.Ma/project.godot b/Zennysoft.Game.Ma/project.godot index ebcb8a8f..35a1ec10 100644 --- a/Zennysoft.Game.Ma/project.godot +++ b/Zennysoft.Game.Ma/project.godot @@ -21,6 +21,7 @@ boot_splash/show_image=false DialogueManager="*res://addons/dialogue_manager/dialogue_manager.gd" DialogueController="*res://src/game/DialogueController.cs" +InGameAudio="*res://src/audio/InGameAudio.cs" [dialogue_manager] diff --git a/Zennysoft.Game.Ma/src/audio/InGameAudio.cs b/Zennysoft.Game.Ma/src/audio/InGameAudio.cs index fda1f778..88ce9706 100644 --- a/Zennysoft.Game.Ma/src/audio/InGameAudio.cs +++ b/Zennysoft.Game.Ma/src/audio/InGameAudio.cs @@ -12,14 +12,6 @@ public partial class InGameAudio : Node { public override void _Notification(int what) => this.Notify(what); - [Dependency] public IAppRepo AppRepo => this.DependOn(); - - [Dependency] public IGameEventDepot GameEventDepot => this.DependOn(); - - [Dependency] public IPlayer Player => this.DependOn(); - - [Dependency] public IGameRepo GameRepo => this.DependOn(); - #region BGM Nodes [Node] public IDimmableAudioStreamPlayer MenuBgm { get; set; } = default!; @@ -209,44 +201,4 @@ public partial class InGameAudio : Node [Node] public IAudioStreamPlayer DungeonAmbience4 { get; set; } = default!; #endregion #endregion - - public IInGameAudioLogic InGameAudioLogic { get; set; } = default!; - public InGameAudioLogic.IBinding InGameAudioBinding { get; set; } = default!; - - public void Setup() - { - InGameAudioLogic = new InGameAudioLogic(); - } - - public void OnResolved() - { - InGameAudioLogic.Set(AppRepo); - InGameAudioLogic.Set(GameEventDepot); - InGameAudioLogic.Set(Player); - InGameAudioLogic.Set(GameRepo); - - InGameAudioBinding = InGameAudioLogic.Bind(); - - //InGameAudioBinding - // .Handle((in InGameAudioLogic.Output.PlayOverworldMusic _) => StartOverworldMusic()) - // .Handle((in InGameAudioLogic.Output.PlayDungeonThemeAMusic _) => StartDungeonThemeA()) - // .Handle((in InGameAudioLogic.Output.PlayMenuScrollSound _) => PlayMenuScrollSound()) - // .Handle((in InGameAudioLogic.Output.PlayEquipSound _) => PlayEquipSound()) - // .Handle((in InGameAudioLogic.Output.PlayUnequipSound _) => PlayUnequipSound()) - // .Handle((in InGameAudioLogic.Output.PlayMenuBackSound _) => PlayMenuBackSound()) - // .Handle((in InGameAudioLogic.Output.PlayInventorySortedSound _) => PlayInventorySortedSound()) - // .Handle((in InGameAudioLogic.Output.PlayHealingItemSound _) => PlayHealingItemSound()) - // .Handle((in InGameAudioLogic.Output.PlayTeleportSound _) => PlayTeleportSound()) - // .Handle((in InGameAudioLogic.Output.PlayPlayerAttackSound _) => { PlayerAttackSFX.Stop(); PlayerAttackSFX.Play(); }) - // .Handle((in InGameAudioLogic.Output.PlayPlayerAttackWallSound _) => { PlayerAttackWallSFX.Stop(); PlayerAttackWallSFX.Play(); }) - // .Handle((in InGameAudioLogic.Output.PlayPlayerAttackEnemySound _) => { PlayerAttackEnemySFX.Stop(); PlayerAttackEnemySFX.Play(); }); - - InGameAudioLogic.Start(); - } - - public void OnExitTree() - { - InGameAudioLogic.Stop(); - InGameAudioBinding.Dispose(); - } } diff --git a/Zennysoft.Game.Ma/src/audio/InGameAudio.tscn b/Zennysoft.Game.Ma/src/audio/InGameAudio.tscn index 9a459898..0583f40e 100644 --- a/Zennysoft.Game.Ma/src/audio/InGameAudio.tscn +++ b/Zennysoft.Game.Ma/src/audio/InGameAudio.tscn @@ -204,350 +204,99 @@ unique_name_in_owner = true stream = ExtResource("10_3lcw5") volume_db = -10.0 -[node name="Environment" type="Node" parent="SFX"] - -[node name="StoneMoving" type="AudioStreamPlayer" parent="SFX/Environment"] -stream = ExtResource("10_3lcw5") -volume_db = -10.0 - -[node name="FlameAmbient" type="AudioStreamPlayer" parent="SFX/Environment"] -stream = ExtResource("10_3lcw5") -volume_db = -10.0 - -[node name="ItemTransfer" type="AudioStreamPlayer" parent="SFX/Environment"] -stream = ExtResource("10_3lcw5") -volume_db = -10.0 - -[node name="Enemy" type="Node" parent="SFX"] - -[node name="AgniAttack1" type="AudioStreamPlayer" parent="SFX/Enemy"] -stream = ExtResource("10_3lcw5") -volume_db = -10.0 - -[node name="AgniAmbient" type="AudioStreamPlayer" parent="SFX/Enemy"] -stream = ExtResource("10_3lcw5") -volume_db = -10.0 - -[node name="AmbassadorAttack1" type="AudioStreamPlayer" parent="SFX/Enemy"] -stream = ExtResource("10_3lcw5") -volume_db = -10.0 - -[node name="AmbassadorAttack2" type="AudioStreamPlayer" parent="SFX/Enemy"] -stream = ExtResource("10_3lcw5") -volume_db = -10.0 - -[node name="AmbassadorAlert" type="AudioStreamPlayer" parent="SFX/Enemy"] -stream = ExtResource("10_3lcw5") -volume_db = -10.0 - -[node name="AqueosAmbient" type="AudioStreamPlayer" parent="SFX/Enemy"] -stream = ExtResource("10_3lcw5") -volume_db = -10.0 - -[node name="BallosMagicAttack" type="AudioStreamPlayer" parent="SFX/Enemy"] -stream = ExtResource("10_3lcw5") -volume_db = -10.0 - -[node name="BallosSpikeAttack" type="AudioStreamPlayer" parent="SFX/Enemy"] -stream = ExtResource("10_3lcw5") -volume_db = -10.0 - -[node name="BallosHover" type="AudioStreamPlayer" parent="SFX/Enemy"] -stream = ExtResource("10_3lcw5") -volume_db = -10.0 - -[node name="ChariotAttack1" type="AudioStreamPlayer" parent="SFX/Enemy"] -stream = ExtResource("10_3lcw5") -volume_db = -10.0 - -[node name="ChariotAttack2" type="AudioStreamPlayer" parent="SFX/Enemy"] -stream = ExtResource("10_3lcw5") -volume_db = -10.0 - -[node name="ChariotProjectile" type="AudioStreamPlayer" parent="SFX/Enemy"] -stream = ExtResource("10_3lcw5") -volume_db = -10.0 - -[node name="ChariotDeath" type="AudioStreamPlayer" parent="SFX/Enemy"] -stream = ExtResource("10_3lcw5") -volume_db = -10.0 - -[node name="ChintheTeleport" type="AudioStreamPlayer" parent="SFX/Enemy"] -stream = ExtResource("10_3lcw5") -volume_db = -10.0 - -[node name="ChintheAttack" type="AudioStreamPlayer" parent="SFX/Enemy"] -stream = ExtResource("10_3lcw5") -volume_db = -10.0 - -[node name="ChintheLand" type="AudioStreamPlayer" parent="SFX/Enemy"] -stream = ExtResource("10_3lcw5") -volume_db = -10.0 - -[node name="DemonWallOrb" type="AudioStreamPlayer" parent="SFX/Enemy"] -stream = ExtResource("10_3lcw5") -volume_db = -10.0 - -[node name="DemonWallOrbTravel" type="AudioStreamPlayer" parent="SFX/Enemy"] -stream = ExtResource("10_3lcw5") -volume_db = -10.0 - -[node name="DemonWallLaser" type="AudioStreamPlayer" parent="SFX/Enemy"] -stream = ExtResource("10_3lcw5") -volume_db = -10.0 - -[node name="DemonWallStatusEffector" type="AudioStreamPlayer" parent="SFX/Enemy"] -stream = ExtResource("10_3lcw5") -volume_db = -10.0 - -[node name="DemonWallPull" type="AudioStreamPlayer" parent="SFX/Enemy"] -stream = ExtResource("10_3lcw5") -volume_db = -10.0 - -[node name="DemonWallHolyElectric" type="AudioStreamPlayer" parent="SFX/Enemy"] -stream = ExtResource("10_3lcw5") -volume_db = -10.0 - -[node name="DemonWallFlamethrower" type="AudioStreamPlayer" parent="SFX/Enemy"] -stream = ExtResource("10_3lcw5") -volume_db = -10.0 - -[node name="DemonWallDeath" type="AudioStreamPlayer" parent="SFX/Enemy"] -stream = ExtResource("10_3lcw5") -volume_db = -10.0 - -[node name="DemonWallSlam" type="AudioStreamPlayer" parent="SFX/Enemy"] -stream = ExtResource("10_3lcw5") -volume_db = -10.0 - -[node name="Boss1Death" type="AudioStreamPlayer" parent="SFX/Enemy"] -stream = ExtResource("10_3lcw5") -volume_db = -10.0 - -[node name="EnemyDeathSoundSmall" type="AudioStreamPlayer" parent="SFX/Enemy"] -stream = ExtResource("10_3lcw5") -volume_db = -10.0 - -[node name="EnemyDeathSoundMedium" type="AudioStreamPlayer" parent="SFX/Enemy"] -stream = ExtResource("10_3lcw5") -volume_db = -10.0 - -[node name="EnemyDeathSoundLarge" type="AudioStreamPlayer" parent="SFX/Enemy"] -stream = ExtResource("10_3lcw5") -volume_db = -10.0 - -[node name="FilthEaterAttack1" type="AudioStreamPlayer" parent="SFX/Enemy"] -stream = ExtResource("10_3lcw5") -volume_db = -10.0 - -[node name="FilthEaterAttack2" type="AudioStreamPlayer" parent="SFX/Enemy"] -stream = ExtResource("10_3lcw5") -volume_db = -10.0 - -[node name="FilthEaterAggro" type="AudioStreamPlayer" parent="SFX/Enemy"] -stream = ExtResource("10_3lcw5") -volume_db = -10.0 - -[node name="HorseHeadHowl" type="AudioStreamPlayer" parent="SFX/Enemy"] -stream = ExtResource("10_3lcw5") -volume_db = -10.0 - -[node name="HorseHeadAttack1" type="AudioStreamPlayer" parent="SFX/Enemy"] -stream = ExtResource("10_3lcw5") -volume_db = -10.0 - -[node name="HorseHeadAttack2" type="AudioStreamPlayer" parent="SFX/Enemy"] -stream = ExtResource("10_3lcw5") -volume_db = -10.0 - -[node name="OxFaceAttack1" type="AudioStreamPlayer" parent="SFX/Enemy"] -stream = ExtResource("10_3lcw5") -volume_db = -10.0 - -[node name="OxFaceAttack2" type="AudioStreamPlayer" parent="SFX/Enemy"] -stream = ExtResource("10_3lcw5") -volume_db = -10.0 - -[node name="OxFaceHowl" type="AudioStreamPlayer" parent="SFX/Enemy"] -stream = ExtResource("10_3lcw5") -volume_db = -10.0 - -[node name="Boss1TakeDamage" type="AudioStreamPlayer" parent="SFX/Enemy"] -stream = ExtResource("10_3lcw5") -volume_db = -10.0 - -[node name="Boss1Step" type="AudioStreamPlayer" parent="SFX/Enemy"] -stream = ExtResource("10_3lcw5") -volume_db = -10.0 - -[node name="MichaelAttack" type="AudioStreamPlayer" parent="SFX/Enemy"] -stream = ExtResource("10_3lcw5") -volume_db = -10.0 - -[node name="PalanquinAttack1" type="AudioStreamPlayer" parent="SFX/Enemy"] -stream = ExtResource("10_3lcw5") -volume_db = -10.0 - -[node name="PalanquinAttack2" type="AudioStreamPlayer" parent="SFX/Enemy"] -stream = ExtResource("10_3lcw5") -volume_db = -10.0 - -[node name="PillarShoot" type="AudioStreamPlayer" parent="SFX/Enemy"] -stream = ExtResource("10_3lcw5") -volume_db = -10.0 - -[node name="PillarProjectileTravel" type="AudioStreamPlayer" parent="SFX/Enemy"] -stream = ExtResource("10_3lcw5") -volume_db = -10.0 - -[node name="SaraAttack" type="AudioStreamPlayer" parent="SFX/Enemy"] -stream = ExtResource("10_3lcw5") -volume_db = -10.0 - -[node name="SaraMagicAttack" type="AudioStreamPlayer" parent="SFX/Enemy"] -stream = ExtResource("10_3lcw5") -volume_db = -10.0 - -[node name="ShieldOfHeavenAttack1" type="AudioStreamPlayer" parent="SFX/Enemy"] -stream = ExtResource("10_3lcw5") -volume_db = -10.0 - -[node name="ShieldOfHeavenAttack2" type="AudioStreamPlayer" parent="SFX/Enemy"] -stream = ExtResource("10_3lcw5") -volume_db = -10.0 - -[node name="ShieldOfHeavenAggro" type="AudioStreamPlayer" parent="SFX/Enemy"] -stream = ExtResource("10_3lcw5") -volume_db = -10.0 - -[node name="ShieldOfHeavenDeath" type="AudioStreamPlayer" parent="SFX/Enemy"] -stream = ExtResource("10_3lcw5") -volume_db = -10.0 - -[node name="SproingDeath" type="AudioStreamPlayer" parent="SFX/Enemy"] -stream = ExtResource("10_3lcw5") -volume_db = -10.0 - -[node name="SproingAttack" type="AudioStreamPlayer" parent="SFX/Enemy"] -stream = ExtResource("10_3lcw5") -volume_db = -10.0 - [node name="Item" type="Node" parent="SFX"] [node name="SealingRod" type="AudioStreamPlayer" parent="SFX/Item"] +unique_name_in_owner = true stream = ExtResource("10_3lcw5") volume_db = -10.0 [node name="TellericComponent" type="AudioStreamPlayer" parent="SFX/Item"] +unique_name_in_owner = true stream = ExtResource("10_3lcw5") volume_db = -10.0 [node name="AeolicComponent" type="AudioStreamPlayer" parent="SFX/Item"] +unique_name_in_owner = true stream = ExtResource("10_3lcw5") volume_db = -10.0 [node name="HydricComponent" type="AudioStreamPlayer" parent="SFX/Item"] +unique_name_in_owner = true stream = ExtResource("10_3lcw5") volume_db = -10.0 [node name="IgneousComponent" type="AudioStreamPlayer" parent="SFX/Item"] +unique_name_in_owner = true stream = ExtResource("10_3lcw5") volume_db = -10.0 [node name="FerrumComponent" type="AudioStreamPlayer" parent="SFX/Item"] +unique_name_in_owner = true stream = ExtResource("10_3lcw5") volume_db = -10.0 [node name="GeomanticDiceUse" type="AudioStreamPlayer" parent="SFX/Item"] +unique_name_in_owner = true stream = ExtResource("10_3lcw5") volume_db = -10.0 [node name="IdentifyItem" type="AudioStreamPlayer" parent="SFX/Item"] +unique_name_in_owner = true stream = ExtResource("10_3lcw5") volume_db = -10.0 [node name="Perspective" type="AudioStreamPlayer" parent="SFX/Item"] +unique_name_in_owner = true stream = ExtResource("10_3lcw5") volume_db = -10.0 [node name="Caster" type="AudioStreamPlayer" parent="SFX/Item"] +unique_name_in_owner = true stream = ExtResource("10_3lcw5") volume_db = -10.0 [node name="DivinityRecall" type="AudioStreamPlayer" parent="SFX/Item"] +unique_name_in_owner = true stream = ExtResource("10_3lcw5") volume_db = -10.0 [node name="SineMorphization" type="AudioStreamPlayer" parent="SFX/Item"] +unique_name_in_owner = true stream = ExtResource("10_3lcw5") volume_db = -10.0 [node name="EnemyMorph" type="AudioStreamPlayer" parent="SFX/Item"] +unique_name_in_owner = true stream = ExtResource("10_3lcw5") volume_db = -10.0 [node name="DevicBalance" type="AudioStreamPlayer" parent="SFX/Item"] +unique_name_in_owner = true stream = ExtResource("10_3lcw5") volume_db = -10.0 [node name="Kyuuketsuki" type="AudioStreamPlayer" parent="SFX/Item"] +unique_name_in_owner = true stream = ExtResource("10_3lcw5") volume_db = -10.0 [node name="Persiko" type="AudioStreamPlayer" parent="SFX/Item"] +unique_name_in_owner = true stream = ExtResource("10_3lcw5") volume_db = -10.0 [node name="HeavensRebellion" type="AudioStreamPlayer" parent="SFX/Item"] +unique_name_in_owner = true stream = ExtResource("10_3lcw5") volume_db = -10.0 [node name="EntropicSeal" type="AudioStreamPlayer" parent="SFX/Item"] +unique_name_in_owner = true stream = ExtResource("10_3lcw5") volume_db = -10.0 [node name="Boost" type="AudioStreamPlayer" parent="SFX/Item"] -stream = ExtResource("10_3lcw5") -volume_db = -10.0 - -[node name="Ambience" type="Node" parent="SFX"] - -[node name="FinalRoomAmbience" type="AudioStreamPlayer" parent="SFX/Ambience"] -stream = ExtResource("10_3lcw5") -volume_db = -10.0 - -[node name="WaterLarge" type="AudioStreamPlayer" parent="SFX/Ambience"] -stream = ExtResource("10_3lcw5") -volume_db = -10.0 - -[node name="Ocean" type="AudioStreamPlayer" parent="SFX/Ambience"] -stream = ExtResource("10_3lcw5") -volume_db = -10.0 - -[node name="WindAltar" type="AudioStreamPlayer" parent="SFX/Ambience"] -stream = ExtResource("10_3lcw5") -volume_db = -10.0 - -[node name="WindBalcony1" type="AudioStreamPlayer" parent="SFX/Ambience"] -stream = ExtResource("10_3lcw5") -volume_db = -10.0 - -[node name="WindBalcony2" type="AudioStreamPlayer" parent="SFX/Ambience"] -stream = ExtResource("10_3lcw5") -volume_db = -10.0 - -[node name="DungeonAmbience1" type="AudioStreamPlayer" parent="SFX/Ambience"] -stream = ExtResource("10_3lcw5") -volume_db = -10.0 - -[node name="DungeonAmbience2" type="AudioStreamPlayer" parent="SFX/Ambience"] -stream = ExtResource("10_3lcw5") -volume_db = -10.0 - -[node name="DungeonAmbience3" type="AudioStreamPlayer" parent="SFX/Ambience"] -stream = ExtResource("10_3lcw5") -volume_db = -10.0 - -[node name="DungeonAmbience4" type="AudioStreamPlayer" parent="SFX/Ambience"] +unique_name_in_owner = true stream = ExtResource("10_3lcw5") volume_db = -10.0 diff --git a/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/agni_ambient.tscn b/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/agni_ambient.tscn new file mode 100644 index 00000000..3b1a9054 --- /dev/null +++ b/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/agni_ambient.tscn @@ -0,0 +1,7 @@ +[gd_scene load_steps=2 format=3 uid="uid://clj7wew7wf702"] + +[ext_resource type="AudioStream" uid="uid://myx4s8lmarc2" path="res://src/audio/sfx/HealSFX.ogg" id="1_t2idh"] + +[node name="AgniAmbient" type="AudioStreamPlayer3D"] +stream = ExtResource("1_t2idh") +volume_db = -10.0 diff --git a/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/agni_attack_1.tscn b/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/agni_attack_1.tscn new file mode 100644 index 00000000..e70d479d --- /dev/null +++ b/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/agni_attack_1.tscn @@ -0,0 +1,7 @@ +[gd_scene load_steps=2 format=3 uid="uid://qcvw2s4tlrku"] + +[ext_resource type="AudioStream" uid="uid://myx4s8lmarc2" path="res://src/audio/sfx/HealSFX.ogg" id="1_xolux"] + +[node name="AgniAttack1" type="AudioStreamPlayer3D"] +stream = ExtResource("1_xolux") +volume_db = -10.0 diff --git a/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/ambassador_alert.tscn b/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/ambassador_alert.tscn new file mode 100644 index 00000000..9314daa4 --- /dev/null +++ b/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/ambassador_alert.tscn @@ -0,0 +1,7 @@ +[gd_scene load_steps=2 format=3 uid="uid://dcdm10cnoh0w2"] + +[ext_resource type="AudioStream" uid="uid://myx4s8lmarc2" path="res://src/audio/sfx/HealSFX.ogg" id="1_6wvpe"] + +[node name="AmbassadorAlert" type="AudioStreamPlayer3D"] +stream = ExtResource("1_6wvpe") +volume_db = -10.0 diff --git a/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/ambassador_attack_1.tscn b/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/ambassador_attack_1.tscn new file mode 100644 index 00000000..8a119662 --- /dev/null +++ b/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/ambassador_attack_1.tscn @@ -0,0 +1,7 @@ +[gd_scene load_steps=2 format=3 uid="uid://co657y3mrpotd"] + +[ext_resource type="AudioStream" uid="uid://myx4s8lmarc2" path="res://src/audio/sfx/HealSFX.ogg" id="1_3khpk"] + +[node name="AmbassadorAttack1" type="AudioStreamPlayer3D"] +stream = ExtResource("1_3khpk") +volume_db = -10.0 diff --git a/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/ambassador_attack_2.tscn b/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/ambassador_attack_2.tscn new file mode 100644 index 00000000..50c20925 --- /dev/null +++ b/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/ambassador_attack_2.tscn @@ -0,0 +1,7 @@ +[gd_scene load_steps=2 format=3 uid="uid://canluut1sj6dk"] + +[ext_resource type="AudioStream" uid="uid://myx4s8lmarc2" path="res://src/audio/sfx/HealSFX.ogg" id="1_ndle0"] + +[node name="AmbassadorAttack2" type="AudioStreamPlayer3D"] +stream = ExtResource("1_ndle0") +volume_db = -10.0 diff --git a/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/aqueos_ambient.tscn b/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/aqueos_ambient.tscn new file mode 100644 index 00000000..56c07f4f --- /dev/null +++ b/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/aqueos_ambient.tscn @@ -0,0 +1,7 @@ +[gd_scene load_steps=2 format=3 uid="uid://dnn62fckypld0"] + +[ext_resource type="AudioStream" uid="uid://myx4s8lmarc2" path="res://src/audio/sfx/HealSFX.ogg" id="1_wfarj"] + +[node name="AqueosAmbient" type="AudioStreamPlayer3D"] +stream = ExtResource("1_wfarj") +volume_db = -10.0 diff --git a/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/ballos_hover.tscn b/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/ballos_hover.tscn new file mode 100644 index 00000000..308d09c5 --- /dev/null +++ b/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/ballos_hover.tscn @@ -0,0 +1,7 @@ +[gd_scene load_steps=2 format=3 uid="uid://ime0qewa5rhq"] + +[ext_resource type="AudioStream" uid="uid://myx4s8lmarc2" path="res://src/audio/sfx/HealSFX.ogg" id="1_k0ktn"] + +[node name="BallosHover" type="AudioStreamPlayer3D"] +stream = ExtResource("1_k0ktn") +volume_db = -10.0 diff --git a/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/ballos_magic_attack.tscn b/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/ballos_magic_attack.tscn new file mode 100644 index 00000000..367fec7a --- /dev/null +++ b/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/ballos_magic_attack.tscn @@ -0,0 +1,7 @@ +[gd_scene load_steps=2 format=3 uid="uid://c65lpxgwu33tn"] + +[ext_resource type="AudioStream" uid="uid://myx4s8lmarc2" path="res://src/audio/sfx/HealSFX.ogg" id="1_seg5t"] + +[node name="BallosMagicAttack" type="AudioStreamPlayer3D"] +stream = ExtResource("1_seg5t") +volume_db = -10.0 diff --git a/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/ballos_spike_attack.tscn b/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/ballos_spike_attack.tscn new file mode 100644 index 00000000..2f79ca2c --- /dev/null +++ b/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/ballos_spike_attack.tscn @@ -0,0 +1,7 @@ +[gd_scene load_steps=2 format=3 uid="uid://dwba7shywai0d"] + +[ext_resource type="AudioStream" uid="uid://myx4s8lmarc2" path="res://src/audio/sfx/HealSFX.ogg" id="1_qjqno"] + +[node name="BallosSpikeAttack" type="AudioStreamPlayer3D"] +stream = ExtResource("1_qjqno") +volume_db = -10.0 diff --git a/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/boss_1_death.tscn b/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/boss_1_death.tscn new file mode 100644 index 00000000..663e8c19 --- /dev/null +++ b/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/boss_1_death.tscn @@ -0,0 +1,7 @@ +[gd_scene load_steps=2 format=3 uid="uid://damqqiqyis3qa"] + +[ext_resource type="AudioStream" uid="uid://myx4s8lmarc2" path="res://src/audio/sfx/HealSFX.ogg" id="1_ytb13"] + +[node name="Boss1Death" type="AudioStreamPlayer3D"] +stream = ExtResource("1_ytb13") +volume_db = -10.0 diff --git a/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/boss_1_step.tscn b/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/boss_1_step.tscn new file mode 100644 index 00000000..e3bc7168 --- /dev/null +++ b/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/boss_1_step.tscn @@ -0,0 +1,7 @@ +[gd_scene load_steps=2 format=3 uid="uid://jqx4qhvggr7r"] + +[ext_resource type="AudioStream" uid="uid://myx4s8lmarc2" path="res://src/audio/sfx/HealSFX.ogg" id="1_h0cnr"] + +[node name="Boss1Step" type="AudioStreamPlayer3D"] +stream = ExtResource("1_h0cnr") +volume_db = -10.0 diff --git a/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/boss_1_take_damage.tscn b/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/boss_1_take_damage.tscn new file mode 100644 index 00000000..97d32d38 --- /dev/null +++ b/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/boss_1_take_damage.tscn @@ -0,0 +1,7 @@ +[gd_scene load_steps=2 format=3 uid="uid://cb6o5d2w21fgj"] + +[ext_resource type="AudioStream" uid="uid://myx4s8lmarc2" path="res://src/audio/sfx/HealSFX.ogg" id="1_68qb7"] + +[node name="Boss1TakeDamage" type="AudioStreamPlayer3D"] +stream = ExtResource("1_68qb7") +volume_db = -10.0 diff --git a/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/chariot_attack_1.tscn b/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/chariot_attack_1.tscn new file mode 100644 index 00000000..111f0b10 --- /dev/null +++ b/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/chariot_attack_1.tscn @@ -0,0 +1,7 @@ +[gd_scene load_steps=2 format=3 uid="uid://byavi7p8acxtg"] + +[ext_resource type="AudioStream" uid="uid://myx4s8lmarc2" path="res://src/audio/sfx/HealSFX.ogg" id="1_sxg2e"] + +[node name="ChariotAttack1" type="AudioStreamPlayer3D"] +stream = ExtResource("1_sxg2e") +volume_db = -10.0 diff --git a/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/chariot_attack_2.tscn b/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/chariot_attack_2.tscn new file mode 100644 index 00000000..61cb9dd4 --- /dev/null +++ b/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/chariot_attack_2.tscn @@ -0,0 +1,7 @@ +[gd_scene load_steps=2 format=3 uid="uid://bcv1dq3elh4g7"] + +[ext_resource type="AudioStream" uid="uid://myx4s8lmarc2" path="res://src/audio/sfx/HealSFX.ogg" id="1_oghk7"] + +[node name="ChariotAttack2" type="AudioStreamPlayer3D"] +stream = ExtResource("1_oghk7") +volume_db = -10.0 diff --git a/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/chariot_death.tscn b/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/chariot_death.tscn new file mode 100644 index 00000000..1472fd9c --- /dev/null +++ b/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/chariot_death.tscn @@ -0,0 +1,7 @@ +[gd_scene load_steps=2 format=3 uid="uid://cicjyq4vupv41"] + +[ext_resource type="AudioStream" uid="uid://myx4s8lmarc2" path="res://src/audio/sfx/HealSFX.ogg" id="1_h6ybu"] + +[node name="ChariotDeath" type="AudioStreamPlayer3D"] +stream = ExtResource("1_h6ybu") +volume_db = -10.0 diff --git a/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/chariot_projectile.tscn b/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/chariot_projectile.tscn new file mode 100644 index 00000000..61933aea --- /dev/null +++ b/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/chariot_projectile.tscn @@ -0,0 +1,7 @@ +[gd_scene load_steps=2 format=3 uid="uid://c7ppj8mktsqfy"] + +[ext_resource type="AudioStream" uid="uid://myx4s8lmarc2" path="res://src/audio/sfx/HealSFX.ogg" id="1_5r0v5"] + +[node name="ChariotProjectile" type="AudioStreamPlayer3D"] +stream = ExtResource("1_5r0v5") +volume_db = -10.0 diff --git a/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/chinthe_attack.tscn b/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/chinthe_attack.tscn new file mode 100644 index 00000000..b032a421 --- /dev/null +++ b/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/chinthe_attack.tscn @@ -0,0 +1,7 @@ +[gd_scene load_steps=2 format=3 uid="uid://cvp215smdlal4"] + +[ext_resource type="AudioStream" uid="uid://myx4s8lmarc2" path="res://src/audio/sfx/HealSFX.ogg" id="1_mfxmi"] + +[node name="ChintheAttack" type="AudioStreamPlayer3D"] +stream = ExtResource("1_mfxmi") +volume_db = -10.0 diff --git a/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/chinthe_land.tscn b/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/chinthe_land.tscn new file mode 100644 index 00000000..8b47d89a --- /dev/null +++ b/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/chinthe_land.tscn @@ -0,0 +1,7 @@ +[gd_scene load_steps=2 format=3 uid="uid://52oxt2gvemvf"] + +[ext_resource type="AudioStream" uid="uid://myx4s8lmarc2" path="res://src/audio/sfx/HealSFX.ogg" id="1_g77q2"] + +[node name="ChintheLand" type="AudioStreamPlayer3D"] +stream = ExtResource("1_g77q2") +volume_db = -10.0 diff --git a/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/chinthe_teleport.tscn b/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/chinthe_teleport.tscn new file mode 100644 index 00000000..73facf1f --- /dev/null +++ b/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/chinthe_teleport.tscn @@ -0,0 +1,7 @@ +[gd_scene load_steps=2 format=3 uid="uid://j5b10u3dhf2a"] + +[ext_resource type="AudioStream" uid="uid://myx4s8lmarc2" path="res://src/audio/sfx/HealSFX.ogg" id="1_q61pp"] + +[node name="ChintheTeleport" type="AudioStreamPlayer3D"] +stream = ExtResource("1_q61pp") +volume_db = -10.0 diff --git a/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/demon_wall_death.tscn b/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/demon_wall_death.tscn new file mode 100644 index 00000000..4f68342a --- /dev/null +++ b/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/demon_wall_death.tscn @@ -0,0 +1,7 @@ +[gd_scene load_steps=2 format=3 uid="uid://favnc55iot8i"] + +[ext_resource type="AudioStream" uid="uid://myx4s8lmarc2" path="res://src/audio/sfx/HealSFX.ogg" id="1_lotbg"] + +[node name="DemonWallDeath" type="AudioStreamPlayer3D"] +stream = ExtResource("1_lotbg") +volume_db = -10.0 diff --git a/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/demon_wall_flamethrower.tscn b/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/demon_wall_flamethrower.tscn new file mode 100644 index 00000000..70a56773 --- /dev/null +++ b/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/demon_wall_flamethrower.tscn @@ -0,0 +1,7 @@ +[gd_scene load_steps=2 format=3 uid="uid://71em00ohdkju"] + +[ext_resource type="AudioStream" uid="uid://myx4s8lmarc2" path="res://src/audio/sfx/HealSFX.ogg" id="1_y07ml"] + +[node name="DemonWallFlamethrower" type="AudioStreamPlayer3D"] +stream = ExtResource("1_y07ml") +volume_db = -10.0 diff --git a/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/demon_wall_holy_electric.tscn b/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/demon_wall_holy_electric.tscn new file mode 100644 index 00000000..6410b504 --- /dev/null +++ b/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/demon_wall_holy_electric.tscn @@ -0,0 +1,7 @@ +[gd_scene load_steps=2 format=3 uid="uid://b4kh4fbu8bl86"] + +[ext_resource type="AudioStream" uid="uid://myx4s8lmarc2" path="res://src/audio/sfx/HealSFX.ogg" id="1_ycqvj"] + +[node name="DemonWallHolyElectric" type="AudioStreamPlayer3D"] +stream = ExtResource("1_ycqvj") +volume_db = -10.0 diff --git a/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/demon_wall_laser.tscn b/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/demon_wall_laser.tscn new file mode 100644 index 00000000..e0e7e2f4 --- /dev/null +++ b/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/demon_wall_laser.tscn @@ -0,0 +1,7 @@ +[gd_scene load_steps=2 format=3 uid="uid://e6qsijbj77gk"] + +[ext_resource type="AudioStream" uid="uid://myx4s8lmarc2" path="res://src/audio/sfx/HealSFX.ogg" id="1_smcsv"] + +[node name="DemonWallLaser" type="AudioStreamPlayer3D"] +stream = ExtResource("1_smcsv") +volume_db = -10.0 diff --git a/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/demon_wall_orb.tscn b/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/demon_wall_orb.tscn new file mode 100644 index 00000000..07ec6a2b --- /dev/null +++ b/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/demon_wall_orb.tscn @@ -0,0 +1,7 @@ +[gd_scene load_steps=2 format=3 uid="uid://5mkifjuphjs7"] + +[ext_resource type="AudioStream" uid="uid://myx4s8lmarc2" path="res://src/audio/sfx/HealSFX.ogg" id="1_71xyo"] + +[node name="DemonWallOrb" type="AudioStreamPlayer3D"] +stream = ExtResource("1_71xyo") +volume_db = -10.0 diff --git a/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/demon_wall_orb_travel.tscn b/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/demon_wall_orb_travel.tscn new file mode 100644 index 00000000..44253692 --- /dev/null +++ b/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/demon_wall_orb_travel.tscn @@ -0,0 +1,7 @@ +[gd_scene load_steps=2 format=3 uid="uid://dormaa2vjilx5"] + +[ext_resource type="AudioStream" uid="uid://myx4s8lmarc2" path="res://src/audio/sfx/HealSFX.ogg" id="1_lg7qd"] + +[node name="DemonWallOrbTravel" type="AudioStreamPlayer3D"] +stream = ExtResource("1_lg7qd") +volume_db = -10.0 diff --git a/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/demon_wall_pull.tscn b/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/demon_wall_pull.tscn new file mode 100644 index 00000000..26ebf22d --- /dev/null +++ b/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/demon_wall_pull.tscn @@ -0,0 +1,7 @@ +[gd_scene load_steps=2 format=3 uid="uid://b08ys324208ie"] + +[ext_resource type="AudioStream" uid="uid://myx4s8lmarc2" path="res://src/audio/sfx/HealSFX.ogg" id="1_bm4c6"] + +[node name="DemonWallPull" type="AudioStreamPlayer3D"] +stream = ExtResource("1_bm4c6") +volume_db = -10.0 diff --git a/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/demon_wall_slam.tscn b/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/demon_wall_slam.tscn new file mode 100644 index 00000000..32342fe2 --- /dev/null +++ b/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/demon_wall_slam.tscn @@ -0,0 +1,7 @@ +[gd_scene load_steps=2 format=3 uid="uid://b45wjjkudytgp"] + +[ext_resource type="AudioStream" uid="uid://myx4s8lmarc2" path="res://src/audio/sfx/HealSFX.ogg" id="1_rpuq1"] + +[node name="DemonWallSlam" type="AudioStreamPlayer3D"] +stream = ExtResource("1_rpuq1") +volume_db = -10.0 diff --git a/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/demon_wall_status_effector.tscn b/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/demon_wall_status_effector.tscn new file mode 100644 index 00000000..48a98287 --- /dev/null +++ b/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/demon_wall_status_effector.tscn @@ -0,0 +1,7 @@ +[gd_scene load_steps=2 format=3 uid="uid://dhdtocfcblnpb"] + +[ext_resource type="AudioStream" uid="uid://myx4s8lmarc2" path="res://src/audio/sfx/HealSFX.ogg" id="1_8w07t"] + +[node name="DemonWallStatusEffector" type="AudioStreamPlayer3D"] +stream = ExtResource("1_8w07t") +volume_db = -10.0 diff --git a/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/dungeon_ambience_1.tscn b/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/dungeon_ambience_1.tscn new file mode 100644 index 00000000..2331ec17 --- /dev/null +++ b/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/dungeon_ambience_1.tscn @@ -0,0 +1,7 @@ +[gd_scene load_steps=2 format=3 uid="uid://dehusw5sqqwoh"] + +[ext_resource type="AudioStream" uid="uid://myx4s8lmarc2" path="res://src/audio/sfx/HealSFX.ogg" id="1_kgoeo"] + +[node name="DungeonAmbience1" type="AudioStreamPlayer3D"] +stream = ExtResource("1_kgoeo") +volume_db = -10.0 diff --git a/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/dungeon_ambience_2.tscn b/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/dungeon_ambience_2.tscn new file mode 100644 index 00000000..35105dbd --- /dev/null +++ b/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/dungeon_ambience_2.tscn @@ -0,0 +1,7 @@ +[gd_scene load_steps=2 format=3 uid="uid://c11v74iudpko3"] + +[ext_resource type="AudioStream" uid="uid://myx4s8lmarc2" path="res://src/audio/sfx/HealSFX.ogg" id="1_g8ge0"] + +[node name="DungeonAmbience2" type="AudioStreamPlayer3D"] +stream = ExtResource("1_g8ge0") +volume_db = -10.0 diff --git a/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/dungeon_ambience_3.tscn b/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/dungeon_ambience_3.tscn new file mode 100644 index 00000000..1ac67d93 --- /dev/null +++ b/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/dungeon_ambience_3.tscn @@ -0,0 +1,7 @@ +[gd_scene load_steps=2 format=3 uid="uid://bqrkcfute7hta"] + +[ext_resource type="AudioStream" uid="uid://myx4s8lmarc2" path="res://src/audio/sfx/HealSFX.ogg" id="1_bnh7p"] + +[node name="DungeonAmbience3" type="AudioStreamPlayer3D"] +stream = ExtResource("1_bnh7p") +volume_db = -10.0 diff --git a/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/dungeon_ambience_4.tscn b/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/dungeon_ambience_4.tscn new file mode 100644 index 00000000..5971e2a4 --- /dev/null +++ b/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/dungeon_ambience_4.tscn @@ -0,0 +1,7 @@ +[gd_scene load_steps=2 format=3 uid="uid://bmtydawahq5te"] + +[ext_resource type="AudioStream" uid="uid://myx4s8lmarc2" path="res://src/audio/sfx/HealSFX.ogg" id="1_oul3b"] + +[node name="DungeonAmbience4" type="AudioStreamPlayer3D"] +stream = ExtResource("1_oul3b") +volume_db = -10.0 diff --git a/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/enemy_death_sound_large.tscn b/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/enemy_death_sound_large.tscn new file mode 100644 index 00000000..4fa2f27f --- /dev/null +++ b/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/enemy_death_sound_large.tscn @@ -0,0 +1,7 @@ +[gd_scene load_steps=2 format=3 uid="uid://da34t3osumohu"] + +[ext_resource type="AudioStream" uid="uid://myx4s8lmarc2" path="res://src/audio/sfx/HealSFX.ogg" id="1_pt8mh"] + +[node name="EnemyDeathSoundLarge" type="AudioStreamPlayer3D"] +stream = ExtResource("1_pt8mh") +volume_db = -10.0 diff --git a/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/enemy_death_sound_medium.tscn b/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/enemy_death_sound_medium.tscn new file mode 100644 index 00000000..11b43529 --- /dev/null +++ b/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/enemy_death_sound_medium.tscn @@ -0,0 +1,7 @@ +[gd_scene load_steps=2 format=3 uid="uid://c32sxkj1xyyxs"] + +[ext_resource type="AudioStream" uid="uid://myx4s8lmarc2" path="res://src/audio/sfx/HealSFX.ogg" id="1_lkmik"] + +[node name="EnemyDeathSoundMedium" type="AudioStreamPlayer3D"] +stream = ExtResource("1_lkmik") +volume_db = -10.0 diff --git a/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/enemy_death_sound_small.tscn b/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/enemy_death_sound_small.tscn new file mode 100644 index 00000000..da1743bc --- /dev/null +++ b/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/enemy_death_sound_small.tscn @@ -0,0 +1,7 @@ +[gd_scene load_steps=2 format=3 uid="uid://dxk5aaqgpkei2"] + +[ext_resource type="AudioStream" uid="uid://myx4s8lmarc2" path="res://src/audio/sfx/HealSFX.ogg" id="1_ig5bs"] + +[node name="EnemyDeathSoundSmall" type="AudioStreamPlayer3D"] +stream = ExtResource("1_ig5bs") +volume_db = -10.0 diff --git a/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/filth_eater_aggro.tscn b/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/filth_eater_aggro.tscn new file mode 100644 index 00000000..c7d15d51 --- /dev/null +++ b/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/filth_eater_aggro.tscn @@ -0,0 +1,7 @@ +[gd_scene load_steps=2 format=3 uid="uid://bchy5iko04pae"] + +[ext_resource type="AudioStream" uid="uid://myx4s8lmarc2" path="res://src/audio/sfx/HealSFX.ogg" id="1_77jmv"] + +[node name="FilthEaterAggro" type="AudioStreamPlayer3D"] +stream = ExtResource("1_77jmv") +volume_db = -10.0 diff --git a/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/filth_eater_attack_1.tscn b/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/filth_eater_attack_1.tscn new file mode 100644 index 00000000..a71ec63a --- /dev/null +++ b/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/filth_eater_attack_1.tscn @@ -0,0 +1,7 @@ +[gd_scene load_steps=2 format=3 uid="uid://dl8up47gle21i"] + +[ext_resource type="AudioStream" uid="uid://myx4s8lmarc2" path="res://src/audio/sfx/HealSFX.ogg" id="1_n5uci"] + +[node name="FilthEaterAttack1" type="AudioStreamPlayer3D"] +stream = ExtResource("1_n5uci") +volume_db = -10.0 diff --git a/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/filth_eater_attack_2.tscn b/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/filth_eater_attack_2.tscn new file mode 100644 index 00000000..47b210fd --- /dev/null +++ b/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/filth_eater_attack_2.tscn @@ -0,0 +1,7 @@ +[gd_scene load_steps=2 format=3 uid="uid://c3i2ew0g6lnj1"] + +[ext_resource type="AudioStream" uid="uid://myx4s8lmarc2" path="res://src/audio/sfx/HealSFX.ogg" id="1_1kbbc"] + +[node name="FilthEaterAttack2" type="AudioStreamPlayer3D"] +stream = ExtResource("1_1kbbc") +volume_db = -10.0 diff --git a/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/final_room_ambience.tscn b/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/final_room_ambience.tscn new file mode 100644 index 00000000..bff05f27 --- /dev/null +++ b/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/final_room_ambience.tscn @@ -0,0 +1,7 @@ +[gd_scene load_steps=2 format=3 uid="uid://duvrcpwyh4vh4"] + +[ext_resource type="AudioStream" uid="uid://myx4s8lmarc2" path="res://src/audio/sfx/HealSFX.ogg" id="1_3ojrj"] + +[node name="FinalRoomAmbience" type="AudioStreamPlayer3D"] +stream = ExtResource("1_3ojrj") +volume_db = -10.0 diff --git a/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/flame_ambient.tscn b/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/flame_ambient.tscn new file mode 100644 index 00000000..4eca7359 --- /dev/null +++ b/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/flame_ambient.tscn @@ -0,0 +1,7 @@ +[gd_scene load_steps=2 format=3 uid="uid://ca7s5jarh8m7c"] + +[ext_resource type="AudioStream" uid="uid://myx4s8lmarc2" path="res://src/audio/sfx/HealSFX.ogg" id="1_vju7o"] + +[node name="FlameAmbient" type="AudioStreamPlayer3D"] +stream = ExtResource("1_vju7o") +volume_db = -10.0 diff --git a/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/horse_head_attack_1.tscn b/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/horse_head_attack_1.tscn new file mode 100644 index 00000000..5f518517 --- /dev/null +++ b/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/horse_head_attack_1.tscn @@ -0,0 +1,7 @@ +[gd_scene load_steps=2 format=3 uid="uid://cyy58sod8omcc"] + +[ext_resource type="AudioStream" uid="uid://myx4s8lmarc2" path="res://src/audio/sfx/HealSFX.ogg" id="1_0qew1"] + +[node name="HorseHeadAttack1" type="AudioStreamPlayer3D"] +stream = ExtResource("1_0qew1") +volume_db = -10.0 diff --git a/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/horse_head_attack_2.tscn b/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/horse_head_attack_2.tscn new file mode 100644 index 00000000..6b75df7c --- /dev/null +++ b/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/horse_head_attack_2.tscn @@ -0,0 +1,7 @@ +[gd_scene load_steps=2 format=3 uid="uid://cnarrrx4bly04"] + +[ext_resource type="AudioStream" uid="uid://myx4s8lmarc2" path="res://src/audio/sfx/HealSFX.ogg" id="1_mlpmh"] + +[node name="HorseHeadAttack2" type="AudioStreamPlayer3D"] +stream = ExtResource("1_mlpmh") +volume_db = -10.0 diff --git a/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/horse_head_howl.tscn b/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/horse_head_howl.tscn new file mode 100644 index 00000000..268b4b0a --- /dev/null +++ b/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/horse_head_howl.tscn @@ -0,0 +1,7 @@ +[gd_scene load_steps=2 format=3 uid="uid://blja33tcm4amo"] + +[ext_resource type="AudioStream" uid="uid://myx4s8lmarc2" path="res://src/audio/sfx/HealSFX.ogg" id="1_4st0u"] + +[node name="HorseHeadHowl" type="AudioStreamPlayer3D"] +stream = ExtResource("1_4st0u") +volume_db = -10.0 diff --git a/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/item_transfer.tscn b/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/item_transfer.tscn new file mode 100644 index 00000000..634cbf51 --- /dev/null +++ b/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/item_transfer.tscn @@ -0,0 +1,7 @@ +[gd_scene load_steps=2 format=3 uid="uid://bh3o00jiev1p1"] + +[ext_resource type="AudioStream" uid="uid://myx4s8lmarc2" path="res://src/audio/sfx/HealSFX.ogg" id="1_500yn"] + +[node name="ItemTransfer" type="AudioStreamPlayer3D"] +stream = ExtResource("1_500yn") +volume_db = -10.0 diff --git a/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/michael_attack.tscn b/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/michael_attack.tscn new file mode 100644 index 00000000..6ca2dd7b --- /dev/null +++ b/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/michael_attack.tscn @@ -0,0 +1,7 @@ +[gd_scene load_steps=2 format=3 uid="uid://cge4mt4potlv1"] + +[ext_resource type="AudioStream" uid="uid://myx4s8lmarc2" path="res://src/audio/sfx/HealSFX.ogg" id="1_qdpdd"] + +[node name="MichaelAttack" type="AudioStreamPlayer3D"] +stream = ExtResource("1_qdpdd") +volume_db = -10.0 diff --git a/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/ocean.tscn b/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/ocean.tscn new file mode 100644 index 00000000..cd88e939 --- /dev/null +++ b/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/ocean.tscn @@ -0,0 +1,7 @@ +[gd_scene load_steps=2 format=3 uid="uid://cts7lgje7rqk5"] + +[ext_resource type="AudioStream" uid="uid://myx4s8lmarc2" path="res://src/audio/sfx/HealSFX.ogg" id="1_s8uqx"] + +[node name="Ocean" type="AudioStreamPlayer3D"] +stream = ExtResource("1_s8uqx") +volume_db = -10.0 diff --git a/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/ox_face_attack_1.tscn b/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/ox_face_attack_1.tscn new file mode 100644 index 00000000..5bf5d4e0 --- /dev/null +++ b/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/ox_face_attack_1.tscn @@ -0,0 +1,7 @@ +[gd_scene load_steps=2 format=3 uid="uid://dt3oia7l2qga5"] + +[ext_resource type="AudioStream" uid="uid://myx4s8lmarc2" path="res://src/audio/sfx/HealSFX.ogg" id="1_0ijm4"] + +[node name="OxFaceAttack1" type="AudioStreamPlayer3D"] +stream = ExtResource("1_0ijm4") +volume_db = -10.0 diff --git a/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/ox_face_attack_2.tscn b/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/ox_face_attack_2.tscn new file mode 100644 index 00000000..8f7bc7a9 --- /dev/null +++ b/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/ox_face_attack_2.tscn @@ -0,0 +1,7 @@ +[gd_scene load_steps=2 format=3 uid="uid://r8frd2aiejtm"] + +[ext_resource type="AudioStream" uid="uid://myx4s8lmarc2" path="res://src/audio/sfx/HealSFX.ogg" id="1_3gcne"] + +[node name="OxFaceAttack2" type="AudioStreamPlayer3D"] +stream = ExtResource("1_3gcne") +volume_db = -10.0 diff --git a/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/ox_face_howl.tscn b/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/ox_face_howl.tscn new file mode 100644 index 00000000..37db5085 --- /dev/null +++ b/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/ox_face_howl.tscn @@ -0,0 +1,7 @@ +[gd_scene load_steps=2 format=3 uid="uid://djv3riyskuvk3"] + +[ext_resource type="AudioStream" uid="uid://myx4s8lmarc2" path="res://src/audio/sfx/HealSFX.ogg" id="1_tn3x8"] + +[node name="OxFaceHowl" type="AudioStreamPlayer3D"] +stream = ExtResource("1_tn3x8") +volume_db = -10.0 diff --git a/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/palanquin_attack_1.tscn b/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/palanquin_attack_1.tscn new file mode 100644 index 00000000..9aa1c4f8 --- /dev/null +++ b/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/palanquin_attack_1.tscn @@ -0,0 +1,7 @@ +[gd_scene load_steps=2 format=3 uid="uid://qw67j8yg2q7t"] + +[ext_resource type="AudioStream" uid="uid://myx4s8lmarc2" path="res://src/audio/sfx/HealSFX.ogg" id="1_nricf"] + +[node name="PalanquinAttack1" type="AudioStreamPlayer3D"] +stream = ExtResource("1_nricf") +volume_db = -10.0 diff --git a/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/palanquin_attack_2.tscn b/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/palanquin_attack_2.tscn new file mode 100644 index 00000000..62604f9f --- /dev/null +++ b/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/palanquin_attack_2.tscn @@ -0,0 +1,7 @@ +[gd_scene load_steps=2 format=3 uid="uid://dwfjnk0ggg7bn"] + +[ext_resource type="AudioStream" uid="uid://myx4s8lmarc2" path="res://src/audio/sfx/HealSFX.ogg" id="1_1jy44"] + +[node name="PalanquinAttack2" type="AudioStreamPlayer3D"] +stream = ExtResource("1_1jy44") +volume_db = -10.0 diff --git a/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/pillar_projectile_travel.tscn b/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/pillar_projectile_travel.tscn new file mode 100644 index 00000000..54c3250e --- /dev/null +++ b/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/pillar_projectile_travel.tscn @@ -0,0 +1,7 @@ +[gd_scene load_steps=2 format=3 uid="uid://bltm0oc773wyf"] + +[ext_resource type="AudioStream" uid="uid://myx4s8lmarc2" path="res://src/audio/sfx/HealSFX.ogg" id="1_7k83p"] + +[node name="PillarProjectileTravel" type="AudioStreamPlayer3D"] +stream = ExtResource("1_7k83p") +volume_db = -10.0 diff --git a/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/pillar_shoot.tscn b/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/pillar_shoot.tscn new file mode 100644 index 00000000..75e12a8f --- /dev/null +++ b/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/pillar_shoot.tscn @@ -0,0 +1,7 @@ +[gd_scene load_steps=2 format=3 uid="uid://cl8mdkofi2g5d"] + +[ext_resource type="AudioStream" uid="uid://myx4s8lmarc2" path="res://src/audio/sfx/HealSFX.ogg" id="1_q8e0b"] + +[node name="PillarShoot" type="AudioStreamPlayer3D"] +stream = ExtResource("1_q8e0b") +volume_db = -10.0 diff --git a/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/sara_attack.tscn b/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/sara_attack.tscn new file mode 100644 index 00000000..ce58da8c --- /dev/null +++ b/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/sara_attack.tscn @@ -0,0 +1,7 @@ +[gd_scene load_steps=2 format=3 uid="uid://c7oq1j1reith6"] + +[ext_resource type="AudioStream" uid="uid://myx4s8lmarc2" path="res://src/audio/sfx/HealSFX.ogg" id="1_qtjvd"] + +[node name="SaraAttack" type="AudioStreamPlayer3D"] +stream = ExtResource("1_qtjvd") +volume_db = -10.0 diff --git a/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/sara_magic_attack.tscn b/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/sara_magic_attack.tscn new file mode 100644 index 00000000..b216f185 --- /dev/null +++ b/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/sara_magic_attack.tscn @@ -0,0 +1,7 @@ +[gd_scene load_steps=2 format=3 uid="uid://bor8f03mpt1ee"] + +[ext_resource type="AudioStream" uid="uid://myx4s8lmarc2" path="res://src/audio/sfx/HealSFX.ogg" id="1_puvb5"] + +[node name="SaraMagicAttack" type="AudioStreamPlayer3D"] +stream = ExtResource("1_puvb5") +volume_db = -10.0 diff --git a/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/shield_of_heaven_aggro.tscn b/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/shield_of_heaven_aggro.tscn new file mode 100644 index 00000000..4e1f6c92 --- /dev/null +++ b/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/shield_of_heaven_aggro.tscn @@ -0,0 +1,7 @@ +[gd_scene load_steps=2 format=3 uid="uid://bsn50r0i14jxq"] + +[ext_resource type="AudioStream" uid="uid://myx4s8lmarc2" path="res://src/audio/sfx/HealSFX.ogg" id="1_au1rl"] + +[node name="ShieldOfHeavenAggro" type="AudioStreamPlayer3D"] +stream = ExtResource("1_au1rl") +volume_db = -10.0 diff --git a/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/shield_of_heaven_attack_1.tscn b/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/shield_of_heaven_attack_1.tscn new file mode 100644 index 00000000..cca335a1 --- /dev/null +++ b/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/shield_of_heaven_attack_1.tscn @@ -0,0 +1,7 @@ +[gd_scene load_steps=2 format=3 uid="uid://bliajv6dl1ilp"] + +[ext_resource type="AudioStream" uid="uid://myx4s8lmarc2" path="res://src/audio/sfx/HealSFX.ogg" id="1_fdwc5"] + +[node name="ShieldOfHeavenAttack1" type="AudioStreamPlayer3D"] +stream = ExtResource("1_fdwc5") +volume_db = -10.0 diff --git a/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/shield_of_heaven_attack_2.tscn b/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/shield_of_heaven_attack_2.tscn new file mode 100644 index 00000000..26fb2a13 --- /dev/null +++ b/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/shield_of_heaven_attack_2.tscn @@ -0,0 +1,7 @@ +[gd_scene load_steps=2 format=3 uid="uid://debhgsv7640qf"] + +[ext_resource type="AudioStream" uid="uid://myx4s8lmarc2" path="res://src/audio/sfx/HealSFX.ogg" id="1_ex1kk"] + +[node name="ShieldOfHeavenAttack2" type="AudioStreamPlayer3D"] +stream = ExtResource("1_ex1kk") +volume_db = -10.0 diff --git a/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/shield_of_heaven_death.tscn b/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/shield_of_heaven_death.tscn new file mode 100644 index 00000000..baf1697d --- /dev/null +++ b/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/shield_of_heaven_death.tscn @@ -0,0 +1,7 @@ +[gd_scene load_steps=2 format=3 uid="uid://8ea5vaqwujfd"] + +[ext_resource type="AudioStream" uid="uid://myx4s8lmarc2" path="res://src/audio/sfx/HealSFX.ogg" id="1_l7sbt"] + +[node name="ShieldOfHeavenDeath" type="AudioStreamPlayer3D"] +stream = ExtResource("1_l7sbt") +volume_db = -10.0 diff --git a/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/sproing_attack.tscn b/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/sproing_attack.tscn new file mode 100644 index 00000000..3108ab87 --- /dev/null +++ b/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/sproing_attack.tscn @@ -0,0 +1,7 @@ +[gd_scene load_steps=2 format=3 uid="uid://cmldmuxkmltae"] + +[ext_resource type="AudioStream" uid="uid://myx4s8lmarc2" path="res://src/audio/sfx/HealSFX.ogg" id="1_wo7aa"] + +[node name="SproingAttack" type="AudioStreamPlayer3D"] +stream = ExtResource("1_wo7aa") +volume_db = -10.0 diff --git a/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/sproing_death.tscn b/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/sproing_death.tscn new file mode 100644 index 00000000..cbd405e8 --- /dev/null +++ b/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/sproing_death.tscn @@ -0,0 +1,7 @@ +[gd_scene load_steps=2 format=3 uid="uid://dpngkc4ld21ex"] + +[ext_resource type="AudioStream" uid="uid://myx4s8lmarc2" path="res://src/audio/sfx/HealSFX.ogg" id="1_pnuok"] + +[node name="SproingDeath" type="AudioStreamPlayer3D"] +stream = ExtResource("1_pnuok") +volume_db = -10.0 diff --git a/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/stone_moving.tscn b/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/stone_moving.tscn new file mode 100644 index 00000000..dd9e0760 --- /dev/null +++ b/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/stone_moving.tscn @@ -0,0 +1,7 @@ +[gd_scene load_steps=2 format=3 uid="uid://b2u48k85ex546"] + +[ext_resource type="AudioStream" uid="uid://myx4s8lmarc2" path="res://src/audio/sfx/HealSFX.ogg" id="1_nf3na"] + +[node name="StoneMoving" type="AudioStreamPlayer3D"] +stream = ExtResource("1_nf3na") +volume_db = -10.0 diff --git a/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/water_large.tscn b/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/water_large.tscn new file mode 100644 index 00000000..43d4002f --- /dev/null +++ b/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/water_large.tscn @@ -0,0 +1,7 @@ +[gd_scene load_steps=2 format=3 uid="uid://b6uf8711om7o6"] + +[ext_resource type="AudioStream" uid="uid://myx4s8lmarc2" path="res://src/audio/sfx/HealSFX.ogg" id="1_j0qjw"] + +[node name="WaterLarge" type="AudioStreamPlayer3D"] +stream = ExtResource("1_j0qjw") +volume_db = -10.0 diff --git a/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/wind_altar.tscn b/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/wind_altar.tscn new file mode 100644 index 00000000..afe4c280 --- /dev/null +++ b/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/wind_altar.tscn @@ -0,0 +1,7 @@ +[gd_scene load_steps=2 format=3 uid="uid://ddgqm0ovrivqw"] + +[ext_resource type="AudioStream" uid="uid://myx4s8lmarc2" path="res://src/audio/sfx/HealSFX.ogg" id="1_6488v"] + +[node name="WindAltar" type="AudioStreamPlayer3D"] +stream = ExtResource("1_6488v") +volume_db = -10.0 diff --git a/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/wind_balcony_1.tscn b/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/wind_balcony_1.tscn new file mode 100644 index 00000000..3e734f20 --- /dev/null +++ b/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/wind_balcony_1.tscn @@ -0,0 +1,7 @@ +[gd_scene load_steps=2 format=3 uid="uid://cuvqkg0sko2pt"] + +[ext_resource type="AudioStream" uid="uid://myx4s8lmarc2" path="res://src/audio/sfx/HealSFX.ogg" id="1_gxm8g"] + +[node name="WindBalcony1" type="AudioStreamPlayer3D"] +stream = ExtResource("1_gxm8g") +volume_db = -10.0 diff --git a/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/wind_balcony_2.tscn b/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/wind_balcony_2.tscn new file mode 100644 index 00000000..7c3892e7 --- /dev/null +++ b/Zennysoft.Game.Ma/src/audio/sfx/SfxNodes/wind_balcony_2.tscn @@ -0,0 +1,7 @@ +[gd_scene load_steps=2 format=3 uid="uid://blvw5vesonhgs"] + +[ext_resource type="AudioStream" uid="uid://myx4s8lmarc2" path="res://src/audio/sfx/HealSFX.ogg" id="1_2rtjv"] + +[node name="WindBalcony2" type="AudioStreamPlayer3D"] +stream = ExtResource("1_2rtjv") +volume_db = -10.0 diff --git a/Zennysoft.Game.Ma/src/data_viewer/DataViewer.tscn b/Zennysoft.Game.Ma/src/data_viewer/DataViewer.tscn index 5af7ab64..42540d36 100644 --- a/Zennysoft.Game.Ma/src/data_viewer/DataViewer.tscn +++ b/Zennysoft.Game.Ma/src/data_viewer/DataViewer.tscn @@ -8,7 +8,7 @@ [ext_resource type="PackedScene" uid="uid://dcm53j3rncxdm" path="res://src/enemy/enemy_types/06. chariot/ChariotModelView.tscn" id="5_vk1lh"] [ext_resource type="PackedScene" uid="uid://bimjnsu52y3xi" path="res://src/enemy/enemy_types/01. sproingy/SproingyModelView.tscn" id="6_hpkd1"] [ext_resource type="PackedScene" uid="uid://bup8c4x1na3aw" path="res://src/enemy/enemy_types/03. filth_eater/FilthEaterModelView.tscn" id="8_dvixg"] -[ext_resource type="PackedScene" uid="uid://bls3mcsyld4vy" path="res://src/enemy/enemy_types/09. Agi/AgiDemonModelView.tscn" id="9_utjpw"] +[ext_resource type="PackedScene" uid="uid://bls3mcsyld4vy" path="res://src/enemy/enemy_types/09. Agni/AgniDemonModelView.tscn" id="9_utjpw"] [ext_resource type="PackedScene" uid="uid://cu7n814hhtjwm" path="res://src/enemy/enemy_types/9b. Aqueos Demon/AqueosModelView.tscn" id="10_ylptw"] [ext_resource type="PackedScene" uid="uid://c2i8ylr3y0bri" path="res://src/enemy/enemy_types/08a. Ambassador/AmbassadorModelView.tscn" id="11_fm7p5"] [ext_resource type="PackedScene" uid="uid://72lbcmp4bcx4" path="res://src/enemy/enemy_types/08b. Ambassador (red)/AmbassadorSmallModelView.tscn" id="12_5hrw6"] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/01. sproingy/SproingyModelView.tscn b/Zennysoft.Game.Ma/src/enemy/enemy_types/01. sproingy/SproingyModelView.tscn index 83675575..ae4605c4 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/01. sproingy/SproingyModelView.tscn +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/01. sproingy/SproingyModelView.tscn @@ -1,4 +1,4 @@ -[gd_scene load_steps=172 format=3 uid="uid://bimjnsu52y3xi"] +[gd_scene load_steps=174 format=3 uid="uid://bimjnsu52y3xi"] [ext_resource type="Script" uid="uid://cvr1qimxpignl" path="res://src/enemy/EnemyModelView2D.cs" id="1_oh25a"] [ext_resource type="Texture2D" uid="uid://dd0ia6isdqg61" path="res://src/enemy/enemy_types/01. sproingy/animations/ATTACK/Layer 1.png" id="1_pbx41"] @@ -59,6 +59,8 @@ [ext_resource type="Texture2D" uid="uid://b1cmx8l4ia3fv" path="res://src/enemy/enemy_types/01. sproingy/animations/IDLE_WALK_SIDE/Layer 14.png" id="54_jdvn0"] [ext_resource type="Texture2D" uid="uid://c7t4626rox02s" path="res://src/enemy/enemy_types/01. sproingy/animations/IDLE_WALK_SIDE/Layer 15.png" id="55_2eqor"] [ext_resource type="Script" uid="uid://6edayafleq8y" path="res://src/hitbox/Hitbox.cs" id="57_lae8t"] +[ext_resource type="PackedScene" uid="uid://cmldmuxkmltae" path="res://src/audio/sfx/SfxNodes/sproing_attack.tscn" id="60_djeua"] +[ext_resource type="PackedScene" uid="uid://dpngkc4ld21ex" path="res://src/audio/sfx/SfxNodes/sproing_death.tscn" id="61_8wbs7"] [sub_resource type="Resource" id="Resource_ivy74"] script = ExtResource("2_7hf3j") @@ -1141,3 +1143,9 @@ unique_name_in_owner = true root_node = NodePath("%AnimationTree/..") tree_root = SubResource("AnimationNodeStateMachine_d5bmw") anim_player = NodePath("../AnimationPlayer") + +[node name="SFX" type="Node3D" parent="."] + +[node name="SproingAttack" parent="SFX" instance=ExtResource("60_djeua")] + +[node name="SproingDeath" parent="SFX" instance=ExtResource("61_8wbs7")] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/02. michael/MichaelModelView.tscn b/Zennysoft.Game.Ma/src/enemy/enemy_types/02. michael/MichaelModelView.tscn index 46cecae4..d4c4ae94 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/02. michael/MichaelModelView.tscn +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/02. michael/MichaelModelView.tscn @@ -1,4 +1,4 @@ -[gd_scene load_steps=93 format=3 uid="uid://bjg8wyvp8q6oc"] +[gd_scene load_steps=95 format=3 uid="uid://bjg8wyvp8q6oc"] [ext_resource type="Script" uid="uid://cvr1qimxpignl" path="res://src/enemy/EnemyModelView2D.cs" id="1_o4cc2"] [ext_resource type="Script" uid="uid://dlsgyx4i1jmp3" path="res://src/enemy/EnemyLoreInfo.cs" id="2_3eot4"] @@ -73,6 +73,8 @@ [ext_resource type="Texture2D" uid="uid://djspx2smexhme" path="res://src/enemy/enemy_types/02. michael/animations/IDLE_WALK/LEFT SIDE/Michael_IdleWalk_Left (23).png" id="70_f0jo7"] [ext_resource type="Script" uid="uid://6edayafleq8y" path="res://src/hitbox/Hitbox.cs" id="71_ul4dn"] [ext_resource type="PackedScene" uid="uid://dpoonda2dwwic" path="res://src/enemy/BasicEnemyAnimationTree.tscn" id="73_gby04"] +[ext_resource type="PackedScene" uid="uid://cge4mt4potlv1" path="res://src/audio/sfx/SfxNodes/michael_attack.tscn" id="74_mip6u"] +[ext_resource type="PackedScene" uid="uid://c32sxkj1xyyxs" path="res://src/audio/sfx/SfxNodes/enemy_death_sound_medium.tscn" id="75_bk4gf"] [sub_resource type="Resource" id="Resource_gby04"] script = ExtResource("2_3eot4") @@ -827,3 +829,9 @@ libraries = { [node name="AnimationTree" parent="." instance=ExtResource("73_gby04")] unique_name_in_owner = true + +[node name="SFX" type="Node3D" parent="."] + +[node name="MichaelAttack" parent="SFX" instance=ExtResource("74_mip6u")] + +[node name="EnemyDeathSoundMedium" parent="SFX" instance=ExtResource("75_bk4gf")] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/03. filth_eater/FilthEaterModelView.tscn b/Zennysoft.Game.Ma/src/enemy/enemy_types/03. filth_eater/FilthEaterModelView.tscn index 248d6b09..6154a010 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/03. filth_eater/FilthEaterModelView.tscn +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/03. filth_eater/FilthEaterModelView.tscn @@ -1,4 +1,4 @@ -[gd_scene load_steps=216 format=3 uid="uid://bup8c4x1na3aw"] +[gd_scene load_steps=220 format=3 uid="uid://bup8c4x1na3aw"] [ext_resource type="Script" uid="uid://cvr1qimxpignl" path="res://src/enemy/EnemyModelView2D.cs" id="1_718m1"] [ext_resource type="Script" uid="uid://dlsgyx4i1jmp3" path="res://src/enemy/EnemyLoreInfo.cs" id="2_krqul"] @@ -193,6 +193,10 @@ [ext_resource type="Texture2D" uid="uid://cvivq23738fvf" path="res://src/enemy/enemy_types/03. filth_eater/animations/Filth Side Attacks Frames/ATTACK 2 SIDE/frame_072_delay-0.01s.png" id="189_uqsli"] [ext_resource type="Texture2D" uid="uid://bxijhjyqvfrip" path="res://src/enemy/enemy_types/03. filth_eater/animations/Filth Side Attacks Frames/ATTACK 2 SIDE/frame_073_delay-0.01s.png" id="190_wg32o"] [ext_resource type="PackedScene" uid="uid://diaxvpmwgl65u" path="res://src/enemy/TwoAttacksEnemyAnimationTree.tscn" id="193_krqul"] +[ext_resource type="PackedScene" uid="uid://bchy5iko04pae" path="res://src/audio/sfx/SfxNodes/filth_eater_aggro.tscn" id="194_7a6is"] +[ext_resource type="PackedScene" uid="uid://dl8up47gle21i" path="res://src/audio/sfx/SfxNodes/filth_eater_attack_1.tscn" id="195_u5xjp"] +[ext_resource type="PackedScene" uid="uid://c3i2ew0g6lnj1" path="res://src/audio/sfx/SfxNodes/filth_eater_attack_2.tscn" id="196_5cwnl"] +[ext_resource type="PackedScene" uid="uid://da34t3osumohu" path="res://src/audio/sfx/SfxNodes/enemy_death_sound_large.tscn" id="197_u5xjp"] [sub_resource type="Resource" id="Resource_pyy2h"] script = ExtResource("2_krqul") @@ -1797,3 +1801,13 @@ libraries = { [node name="AnimationTree" parent="." instance=ExtResource("193_krqul")] unique_name_in_owner = true + +[node name="SFX" type="Node3D" parent="."] + +[node name="FilthEaterAggro" parent="SFX" instance=ExtResource("194_7a6is")] + +[node name="FilthEaterAttack1" parent="SFX" instance=ExtResource("195_u5xjp")] + +[node name="FilthEaterAttack2" parent="SFX" instance=ExtResource("196_5cwnl")] + +[node name="EnemyDeathSoundLarge" parent="SFX" instance=ExtResource("197_u5xjp")] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/04. sara/SaraModelView.tscn b/Zennysoft.Game.Ma/src/enemy/enemy_types/04. sara/SaraModelView.tscn index ae028dc2..5a5feca5 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/04. sara/SaraModelView.tscn +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/04. sara/SaraModelView.tscn @@ -1,4 +1,4 @@ -[gd_scene load_steps=184 format=3 uid="uid://bli0t0d6ommvi"] +[gd_scene load_steps=187 format=3 uid="uid://bli0t0d6ommvi"] [ext_resource type="Script" uid="uid://cvr1qimxpignl" path="res://src/enemy/EnemyModelView2D.cs" id="1_oh25a"] [ext_resource type="Texture2D" uid="uid://nps7rrvkgews" path="res://src/enemy/enemy_types/04. sara/animations/IDLE+MOVE/FRONT/0001.png" id="2_8j76g"] @@ -163,6 +163,9 @@ [ext_resource type="Texture2D" uid="uid://n2c8kfwt6ve3" path="res://src/enemy/enemy_types/04. sara/animations/ATTACK2/SIDE R/0019.png" id="160_r8ggx"] [ext_resource type="Texture2D" uid="uid://dykb4rwua8iyw" path="res://src/enemy/enemy_types/04. sara/animations/ATTACK2/SIDE R/0022.png" id="161_xafpd"] [ext_resource type="PackedScene" uid="uid://diaxvpmwgl65u" path="res://src/enemy/TwoAttacksEnemyAnimationTree.tscn" id="163_e6etm"] +[ext_resource type="PackedScene" uid="uid://c7oq1j1reith6" path="res://src/audio/sfx/SfxNodes/sara_attack.tscn" id="164_nbpma"] +[ext_resource type="PackedScene" uid="uid://bor8f03mpt1ee" path="res://src/audio/sfx/SfxNodes/sara_magic_attack.tscn" id="165_2d3km"] +[ext_resource type="PackedScene" uid="uid://da34t3osumohu" path="res://src/audio/sfx/SfxNodes/enemy_death_sound_large.tscn" id="166_2d3km"] [sub_resource type="ViewportTexture" id="ViewportTexture_h1kaf"] viewport_path = NodePath("Sprite3D/SubViewportContainer/SubViewport") @@ -1350,3 +1353,11 @@ libraries = { [node name="AnimationTree" parent="." instance=ExtResource("163_e6etm")] unique_name_in_owner = true + +[node name="SFX" type="Node3D" parent="."] + +[node name="SaraAttack" parent="SFX" instance=ExtResource("164_nbpma")] + +[node name="SaraMagicAttack" parent="SFX" instance=ExtResource("165_2d3km")] + +[node name="EnemyDeathSoundLarge" parent="SFX" instance=ExtResource("166_2d3km")] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/05. ballos/BallosModelView.tscn b/Zennysoft.Game.Ma/src/enemy/enemy_types/05. ballos/BallosModelView.tscn index e3d41e6f..645e9170 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/05. ballos/BallosModelView.tscn +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/05. ballos/BallosModelView.tscn @@ -1,4 +1,4 @@ -[gd_scene load_steps=286 format=3 uid="uid://c5xijwxkg4pf6"] +[gd_scene load_steps=290 format=3 uid="uid://c5xijwxkg4pf6"] [ext_resource type="Script" uid="uid://cvr1qimxpignl" path="res://src/enemy/EnemyModelView2D.cs" id="1_ueqp5"] [ext_resource type="Texture2D" uid="uid://bgkx485uy065" path="res://src/enemy/enemy_types/05. ballos/animations/WALK BACK/1.png" id="3_b3ny6"] @@ -94,6 +94,10 @@ [ext_resource type="Texture2D" uid="uid://cuiwtl48d2rgo" path="res://src/enemy/enemy_types/05. ballos/animations/Ballos Side Attack Frames/ATTACK 2 SIDE/frame_23_delay-0.01s.png" id="72_3ev0n"] [ext_resource type="Texture2D" uid="uid://jsknxkujml8k" path="res://src/enemy/enemy_types/05. ballos/animations/Ballos Side Attack Frames/ATTACK 2 BACK/frame_11_delay-0.01s.png" id="72_4q1uq"] [ext_resource type="Texture2D" uid="uid://cejae00ramgdn" path="res://src/enemy/enemy_types/05. ballos/animations/Ballos Side Attack Frames/ATTACK 2 SIDE/frame_24_delay-0.01s.png" id="73_o6ljw"] +[ext_resource type="PackedScene" uid="uid://ime0qewa5rhq" path="res://src/audio/sfx/SfxNodes/ballos_hover.tscn" id="95_n6nro"] +[ext_resource type="PackedScene" uid="uid://c65lpxgwu33tn" path="res://src/audio/sfx/SfxNodes/ballos_magic_attack.tscn" id="96_6dkk2"] +[ext_resource type="PackedScene" uid="uid://dwba7shywai0d" path="res://src/audio/sfx/SfxNodes/ballos_spike_attack.tscn" id="97_i3hgg"] +[ext_resource type="PackedScene" uid="uid://da34t3osumohu" path="res://src/audio/sfx/SfxNodes/enemy_death_sound_large.tscn" id="98_6dkk2"] [sub_resource type="ViewportTexture" id="ViewportTexture_h1kaf"] viewport_path = NodePath("Sprite3D/SubViewportContainer/SubViewport") @@ -1648,3 +1652,13 @@ unique_name_in_owner = true root_node = NodePath("%AnimationTree/..") tree_root = SubResource("AnimationNodeStateMachine_3ev0n") anim_player = NodePath("../AnimationPlayer") + +[node name="SFX" type="Node3D" parent="."] + +[node name="BallosHover" parent="SFX" instance=ExtResource("95_n6nro")] + +[node name="BallosMagicAttack" parent="SFX" instance=ExtResource("96_6dkk2")] + +[node name="BallosSpikeAttack" parent="SFX" instance=ExtResource("97_i3hgg")] + +[node name="EnemyDeathSoundLarge" parent="SFX" instance=ExtResource("98_6dkk2")] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/ChariotModelView.tscn b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/ChariotModelView.tscn index 8199aa0d..98135ea5 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/ChariotModelView.tscn +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/ChariotModelView.tscn @@ -1,4 +1,4 @@ -[gd_scene load_steps=1254 format=3 uid="uid://dcm53j3rncxdm"] +[gd_scene load_steps=1259 format=3 uid="uid://dcm53j3rncxdm"] [ext_resource type="Script" uid="uid://ckxqmb4tu4rml" path="res://src/enemy/enemy_types/06. chariot/ChariotModelView.cs" id="1_ol7va"] [ext_resource type="Script" uid="uid://dlsgyx4i1jmp3" path="res://src/enemy/EnemyLoreInfo.cs" id="2_6vf6u"] @@ -971,6 +971,11 @@ [ext_resource type="Texture2D" uid="uid://dgvbbcwjlcn3s" path="res://src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0296.png" id="828_50nxi"] [ext_resource type="Texture2D" uid="uid://dsr8hjinu075n" path="res://src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0298.png" id="829_qitpn"] [ext_resource type="Texture2D" uid="uid://dcqcdd7he20sl" path="res://src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0300.png" id="830_4hn70"] +[ext_resource type="PackedScene" uid="uid://byavi7p8acxtg" path="res://src/audio/sfx/SfxNodes/chariot_attack_1.tscn" id="972_t2d7k"] +[ext_resource type="PackedScene" uid="uid://bcv1dq3elh4g7" path="res://src/audio/sfx/SfxNodes/chariot_attack_2.tscn" id="973_ig27o"] +[ext_resource type="PackedScene" uid="uid://cicjyq4vupv41" path="res://src/audio/sfx/SfxNodes/chariot_death.tscn" id="974_behrq"] +[ext_resource type="PackedScene" uid="uid://c7ppj8mktsqfy" path="res://src/audio/sfx/SfxNodes/chariot_projectile.tscn" id="975_86buh"] +[ext_resource type="PackedScene" uid="uid://da34t3osumohu" path="res://src/audio/sfx/SfxNodes/enemy_death_sound_large.tscn" id="976_ig27o"] [sub_resource type="Resource" id="Resource_500at"] script = ExtResource("2_6vf6u") @@ -7064,3 +7069,15 @@ unique_name_in_owner = true root_node = NodePath("%AnimationTree/..") tree_root = SubResource("AnimationNodeStateMachine_61mt4") anim_player = NodePath("../AnimationPlayer") + +[node name="SFX" type="Node3D" parent="."] + +[node name="ChariotAttack1" parent="SFX" instance=ExtResource("972_t2d7k")] + +[node name="ChariotAttack2" parent="SFX" instance=ExtResource("973_ig27o")] + +[node name="ChariotDeath" parent="SFX" instance=ExtResource("974_behrq")] + +[node name="ChariotProjectile" parent="SFX" instance=ExtResource("975_86buh")] + +[node name="EnemyDeathSoundLarge" parent="SFX" instance=ExtResource("976_ig27o")] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/07. chinthe/ChinteModelView.tscn b/Zennysoft.Game.Ma/src/enemy/enemy_types/07. chinthe/ChinteModelView.tscn index 4e476d44..c4f2b624 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/07. chinthe/ChinteModelView.tscn +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/07. chinthe/ChinteModelView.tscn @@ -1,4 +1,4 @@ -[gd_scene load_steps=441 format=3 uid="uid://byd7cwxq1be6f"] +[gd_scene load_steps=445 format=3 uid="uid://byd7cwxq1be6f"] [ext_resource type="Script" uid="uid://l03h4elwjitu" path="res://src/enemy/enemy_types/07. chinthe/ChintheModelView.cs" id="1_ls38s"] [ext_resource type="Script" uid="uid://dlsgyx4i1jmp3" path="res://src/enemy/EnemyLoreInfo.cs" id="2_hr7xb"] @@ -243,6 +243,10 @@ [ext_resource type="Texture2D" uid="uid://75mrdvb1vy77" path="res://src/enemy/enemy_types/07. chinthe/animations/TELEPORT/TELEPORT_page_0009.png" id="158_bo0u7"] [ext_resource type="Texture2D" uid="uid://xp31l3govdc6" path="res://src/enemy/enemy_types/07. chinthe/animations/TELEPORT/TELEPORT_page_0010.png" id="159_mmg6v"] [ext_resource type="Texture2D" uid="uid://cdv6qy3hdbqnb" path="res://src/enemy/enemy_types/07. chinthe/animations/TELEPORT/TELEPORT_page_0011.png" id="160_ugn17"] +[ext_resource type="PackedScene" uid="uid://cvp215smdlal4" path="res://src/audio/sfx/SfxNodes/chinthe_attack.tscn" id="244_umemc"] +[ext_resource type="PackedScene" uid="uid://52oxt2gvemvf" path="res://src/audio/sfx/SfxNodes/chinthe_land.tscn" id="245_t3xhd"] +[ext_resource type="PackedScene" uid="uid://j5b10u3dhf2a" path="res://src/audio/sfx/SfxNodes/chinthe_teleport.tscn" id="246_5jjkq"] +[ext_resource type="PackedScene" uid="uid://c32sxkj1xyyxs" path="res://src/audio/sfx/SfxNodes/enemy_death_sound_medium.tscn" id="247_t3xhd"] [sub_resource type="Resource" id="Resource_dlf6r"] script = ExtResource("2_hr7xb") @@ -2677,3 +2681,13 @@ unique_name_in_owner = true root_node = NodePath("%AnimationTree/..") tree_root = SubResource("AnimationNodeStateMachine_umemc") anim_player = NodePath("../AnimationPlayer") + +[node name="SFX" type="Node3D" parent="."] + +[node name="ChintheAttack" parent="SFX" instance=ExtResource("244_umemc")] + +[node name="ChintheLand" parent="SFX" instance=ExtResource("245_t3xhd")] + +[node name="ChintheTeleport" parent="SFX" instance=ExtResource("246_5jjkq")] + +[node name="EnemyDeathSoundMedium" parent="SFX" instance=ExtResource("247_t3xhd")] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/08a. Ambassador/AmbassadorModelView.tscn b/Zennysoft.Game.Ma/src/enemy/enemy_types/08a. Ambassador/AmbassadorModelView.tscn index d5f52b74..ad5a4daf 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/08a. Ambassador/AmbassadorModelView.tscn +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/08a. Ambassador/AmbassadorModelView.tscn @@ -1,4 +1,4 @@ -[gd_scene load_steps=284 format=3 uid="uid://c2i8ylr3y0bri"] +[gd_scene load_steps=288 format=3 uid="uid://c2i8ylr3y0bri"] [ext_resource type="Script" uid="uid://cvr1qimxpignl" path="res://src/enemy/EnemyModelView2D.cs" id="1_h27bt"] [ext_resource type="Script" uid="uid://dlsgyx4i1jmp3" path="res://src/enemy/EnemyLoreInfo.cs" id="2_yyynn"] @@ -260,6 +260,10 @@ [ext_resource type="Texture2D" uid="uid://jcs07eo1xqtj" path="res://src/enemy/enemy_types/08a. Ambassador/animations/SIDE/Layer 171.png" id="258_q2wum"] [ext_resource type="Texture2D" uid="uid://btrum7jo404t0" path="res://src/enemy/enemy_types/08a. Ambassador/animations/SIDE/Layer 172.png" id="259_br04c"] [ext_resource type="PackedScene" uid="uid://diaxvpmwgl65u" path="res://src/enemy/TwoAttacksEnemyAnimationTree.tscn" id="261_a705x"] +[ext_resource type="PackedScene" uid="uid://dcdm10cnoh0w2" path="res://src/audio/sfx/SfxNodes/ambassador_alert.tscn" id="262_312rt"] +[ext_resource type="PackedScene" uid="uid://c32sxkj1xyyxs" path="res://src/audio/sfx/SfxNodes/enemy_death_sound_medium.tscn" id="262_sroq1"] +[ext_resource type="PackedScene" uid="uid://co657y3mrpotd" path="res://src/audio/sfx/SfxNodes/ambassador_attack_1.tscn" id="263_sroq1"] +[ext_resource type="PackedScene" uid="uid://canluut1sj6dk" path="res://src/audio/sfx/SfxNodes/ambassador_attack_2.tscn" id="264_dcx20"] [ext_resource type="Script" uid="uid://6edayafleq8y" path="res://src/hitbox/Hitbox.cs" id="333_u3b1r"] [sub_resource type="Resource" id="Resource_f45wt"] @@ -1889,3 +1893,13 @@ libraries = { [node name="AnimationTree" parent="." instance=ExtResource("261_a705x")] unique_name_in_owner = true + +[node name="EnemyDeathSoundMedium" parent="." instance=ExtResource("262_sroq1")] + +[node name="SFX" type="Node3D" parent="."] + +[node name="AmbassadorAlert" parent="SFX" instance=ExtResource("262_312rt")] + +[node name="AmbassadorAttack1" parent="SFX" instance=ExtResource("263_sroq1")] + +[node name="AmbassadorAttack2" parent="SFX" instance=ExtResource("264_dcx20")] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/08b. Ambassador (red)/AmbassadorSmallModelView.tscn b/Zennysoft.Game.Ma/src/enemy/enemy_types/08b. Ambassador (red)/AmbassadorSmallModelView.tscn index 7f6242ea..e692f7ca 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/08b. Ambassador (red)/AmbassadorSmallModelView.tscn +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/08b. Ambassador (red)/AmbassadorSmallModelView.tscn @@ -1,4 +1,4 @@ -[gd_scene load_steps=285 format=3 uid="uid://72lbcmp4bcx4"] +[gd_scene load_steps=289 format=3 uid="uid://72lbcmp4bcx4"] [ext_resource type="Script" uid="uid://cvr1qimxpignl" path="res://src/enemy/EnemyModelView2D.cs" id="1_a8qtn"] [ext_resource type="Script" uid="uid://dlsgyx4i1jmp3" path="res://src/enemy/EnemyLoreInfo.cs" id="2_xa3ug"] @@ -262,6 +262,10 @@ [ext_resource type="Texture2D" uid="uid://by2vqyh68egwr" path="res://src/enemy/enemy_types/08b. Ambassador (red)/animations/SIDE/0199.png" id="260_jtq5d"] [ext_resource type="Script" uid="uid://6edayafleq8y" path="res://src/hitbox/Hitbox.cs" id="261_uny2s"] [ext_resource type="PackedScene" uid="uid://diaxvpmwgl65u" path="res://src/enemy/TwoAttacksEnemyAnimationTree.tscn" id="262_a3dro"] +[ext_resource type="PackedScene" uid="uid://dcdm10cnoh0w2" path="res://src/audio/sfx/SfxNodes/ambassador_alert.tscn" id="263_6e6i7"] +[ext_resource type="PackedScene" uid="uid://co657y3mrpotd" path="res://src/audio/sfx/SfxNodes/ambassador_attack_1.tscn" id="264_qerwx"] +[ext_resource type="PackedScene" uid="uid://canluut1sj6dk" path="res://src/audio/sfx/SfxNodes/ambassador_attack_2.tscn" id="265_xxvov"] +[ext_resource type="PackedScene" uid="uid://dxk5aaqgpkei2" path="res://src/audio/sfx/SfxNodes/enemy_death_sound_small.tscn" id="266_qerwx"] [sub_resource type="Resource" id="Resource_f45wt"] script = ExtResource("2_xa3ug") @@ -1896,3 +1900,13 @@ libraries = { [node name="AnimationTree" parent="." instance=ExtResource("262_a3dro")] unique_name_in_owner = true + +[node name="SFX" type="Node3D" parent="."] + +[node name="AmbassadorAlert" parent="SFX" instance=ExtResource("263_6e6i7")] + +[node name="AmbassadorAttack1" parent="SFX" instance=ExtResource("264_qerwx")] + +[node name="AmbassadorAttack2" parent="SFX" instance=ExtResource("265_xxvov")] + +[node name="EnemyDeathSoundSmall" parent="SFX" instance=ExtResource("266_qerwx")] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/08c. Ambassador (steel)/AmbassadorSteelModelView.tscn b/Zennysoft.Game.Ma/src/enemy/enemy_types/08c. Ambassador (steel)/AmbassadorSteelModelView.tscn index c9ffa719..8aa7b666 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/08c. Ambassador (steel)/AmbassadorSteelModelView.tscn +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/08c. Ambassador (steel)/AmbassadorSteelModelView.tscn @@ -1,4 +1,4 @@ -[gd_scene load_steps=285 format=3 uid="uid://lc5koiqn1sca"] +[gd_scene load_steps=289 format=3 uid="uid://lc5koiqn1sca"] [ext_resource type="Script" uid="uid://cvr1qimxpignl" path="res://src/enemy/EnemyModelView2D.cs" id="1_s0qsg"] [ext_resource type="Script" uid="uid://dlsgyx4i1jmp3" path="res://src/enemy/EnemyLoreInfo.cs" id="2_84ebe"] @@ -262,6 +262,10 @@ [ext_resource type="Texture2D" uid="uid://biaen4nwf0tpg" path="res://src/enemy/enemy_types/08c. Ambassador (steel)/animations/SIDE/Layer 258.png" id="260_3ft46"] [ext_resource type="Script" uid="uid://6edayafleq8y" path="res://src/hitbox/Hitbox.cs" id="261_jsntq"] [ext_resource type="PackedScene" uid="uid://diaxvpmwgl65u" path="res://src/enemy/TwoAttacksEnemyAnimationTree.tscn" id="262_47uje"] +[ext_resource type="PackedScene" uid="uid://dcdm10cnoh0w2" path="res://src/audio/sfx/SfxNodes/ambassador_alert.tscn" id="263_fpc02"] +[ext_resource type="PackedScene" uid="uid://co657y3mrpotd" path="res://src/audio/sfx/SfxNodes/ambassador_attack_1.tscn" id="264_i2vbx"] +[ext_resource type="PackedScene" uid="uid://canluut1sj6dk" path="res://src/audio/sfx/SfxNodes/ambassador_attack_2.tscn" id="265_5tr5n"] +[ext_resource type="PackedScene" uid="uid://c32sxkj1xyyxs" path="res://src/audio/sfx/SfxNodes/enemy_death_sound_medium.tscn" id="266_i2vbx"] [sub_resource type="Resource" id="Resource_f45wt"] script = ExtResource("2_84ebe") @@ -1893,3 +1897,13 @@ libraries = { [node name="AnimationTree" parent="." instance=ExtResource("262_47uje")] unique_name_in_owner = true + +[node name="SFX" type="Node3D" parent="."] + +[node name="AmbassadorAlert" parent="SFX" instance=ExtResource("263_fpc02")] + +[node name="AmbassadorAttack1" parent="SFX" instance=ExtResource("264_i2vbx")] + +[node name="AmbassadorAttack2" parent="SFX" instance=ExtResource("265_5tr5n")] + +[node name="EnemyDeathSoundMedium" parent="SFX" instance=ExtResource("266_i2vbx")] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_088_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_088_delay-0.01s.png.import deleted file mode 100644 index bb5384bb..00000000 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_088_delay-0.01s.png.import +++ /dev/null @@ -1,34 +0,0 @@ -[remap] - -importer="texture" -type="CompressedTexture2D" -uid="uid://by0ir4chxvpuc" -path="res://.godot/imported/frame_088_delay-0.01s.png-a2213dd85dec6f55a85fc1532a210c4d.ctex" -metadata={ -"vram_texture": false -} - -[deps] - -source_file="res://src/enemy/enemy_types/09. Agi/animations/F/frame_088_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_088_delay-0.01s.png-a2213dd85dec6f55a85fc1532a210c4d.ctex"] - -[params] - -compress/mode=0 -compress/high_quality=false -compress/lossy_quality=0.7 -compress/hdr_compression=1 -compress/normal_map=0 -compress/channel_pack=0 -mipmaps/generate=false -mipmaps/limit=-1 -roughness/mode=0 -roughness/src_normal="" -process/fix_alpha_border=true -process/premult_alpha=false -process/normal_map_invert_y=false -process/hdr_as_srgb=false -process/hdr_clamp_exposure=false -process/size_limit=0 -detect_3d/compress_to=0 diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_098_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_098_delay-0.01s.png.import deleted file mode 100644 index 7fca6f48..00000000 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_098_delay-0.01s.png.import +++ /dev/null @@ -1,34 +0,0 @@ -[remap] - -importer="texture" -type="CompressedTexture2D" -uid="uid://cw3vqnfwfnpkl" -path="res://.godot/imported/frame_098_delay-0.01s.png-f96242b4c50c4b7eb77dfbe57b258d8f.ctex" -metadata={ -"vram_texture": false -} - -[deps] - -source_file="res://src/enemy/enemy_types/09. Agi/animations/F/frame_098_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_098_delay-0.01s.png-f96242b4c50c4b7eb77dfbe57b258d8f.ctex"] - -[params] - -compress/mode=0 -compress/high_quality=false -compress/lossy_quality=0.7 -compress/hdr_compression=1 -compress/normal_map=0 -compress/channel_pack=0 -mipmaps/generate=false -mipmaps/limit=-1 -roughness/mode=0 -roughness/src_normal="" -process/fix_alpha_border=true -process/premult_alpha=false -process/normal_map_invert_y=false -process/hdr_as_srgb=false -process/hdr_clamp_exposure=false -process/size_limit=0 -detect_3d/compress_to=0 diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_108_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_108_delay-0.01s.png.import deleted file mode 100644 index ac7c8a8b..00000000 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_108_delay-0.01s.png.import +++ /dev/null @@ -1,34 +0,0 @@ -[remap] - -importer="texture" -type="CompressedTexture2D" -uid="uid://dgg6u02oaxjwp" -path="res://.godot/imported/frame_108_delay-0.01s.png-486a6c18f42b3f21db68008edaf0e935.ctex" -metadata={ -"vram_texture": false -} - -[deps] - -source_file="res://src/enemy/enemy_types/09. Agi/animations/F/frame_108_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_108_delay-0.01s.png-486a6c18f42b3f21db68008edaf0e935.ctex"] - -[params] - -compress/mode=0 -compress/high_quality=false -compress/lossy_quality=0.7 -compress/hdr_compression=1 -compress/normal_map=0 -compress/channel_pack=0 -mipmaps/generate=false -mipmaps/limit=-1 -roughness/mode=0 -roughness/src_normal="" -process/fix_alpha_border=true -process/premult_alpha=false -process/normal_map_invert_y=false -process/hdr_as_srgb=false -process/hdr_clamp_exposure=false -process/size_limit=0 -detect_3d/compress_to=0 diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_142_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_142_delay-0.01s.png.import deleted file mode 100644 index 6889789e..00000000 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_142_delay-0.01s.png.import +++ /dev/null @@ -1,34 +0,0 @@ -[remap] - -importer="texture" -type="CompressedTexture2D" -uid="uid://cspnh0dp8rby7" -path="res://.godot/imported/frame_142_delay-0.01s.png-8b91f14d8560552ab55572669311796c.ctex" -metadata={ -"vram_texture": false -} - -[deps] - -source_file="res://src/enemy/enemy_types/09. Agi/animations/L/frame_142_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_142_delay-0.01s.png-8b91f14d8560552ab55572669311796c.ctex"] - -[params] - -compress/mode=0 -compress/high_quality=false -compress/lossy_quality=0.7 -compress/hdr_compression=1 -compress/normal_map=0 -compress/channel_pack=0 -mipmaps/generate=false -mipmaps/limit=-1 -roughness/mode=0 -roughness/src_normal="" -process/fix_alpha_border=true -process/premult_alpha=false -process/normal_map_invert_y=false -process/hdr_as_srgb=false -process/hdr_clamp_exposure=false -process/size_limit=0 -detect_3d/compress_to=0 diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_192_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_192_delay-0.01s.png.import deleted file mode 100644 index 4e5b9202..00000000 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_192_delay-0.01s.png.import +++ /dev/null @@ -1,34 +0,0 @@ -[remap] - -importer="texture" -type="CompressedTexture2D" -uid="uid://7l7mnj87hsf7" -path="res://.godot/imported/frame_192_delay-0.01s.png-99b3e47afcbf3404e829494677534da5.ctex" -metadata={ -"vram_texture": false -} - -[deps] - -source_file="res://src/enemy/enemy_types/09. Agi/animations/L/frame_192_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_192_delay-0.01s.png-99b3e47afcbf3404e829494677534da5.ctex"] - -[params] - -compress/mode=0 -compress/high_quality=false -compress/lossy_quality=0.7 -compress/hdr_compression=1 -compress/normal_map=0 -compress/channel_pack=0 -mipmaps/generate=false -mipmaps/limit=-1 -roughness/mode=0 -roughness/src_normal="" -process/fix_alpha_border=true -process/premult_alpha=false -process/normal_map_invert_y=false -process/hdr_as_srgb=false -process/hdr_clamp_exposure=false -process/size_limit=0 -detect_3d/compress_to=0 diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_287_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_287_delay-0.01s.png.import deleted file mode 100644 index 83b06aa7..00000000 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_287_delay-0.01s.png.import +++ /dev/null @@ -1,34 +0,0 @@ -[remap] - -importer="texture" -type="CompressedTexture2D" -uid="uid://brjhwakmssh2v" -path="res://.godot/imported/frame_287_delay-0.01s.png-bb58241a838a26d020a4844bd3f4bbc5.ctex" -metadata={ -"vram_texture": false -} - -[deps] - -source_file="res://src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_287_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_287_delay-0.01s.png-bb58241a838a26d020a4844bd3f4bbc5.ctex"] - -[params] - -compress/mode=0 -compress/high_quality=false -compress/lossy_quality=0.7 -compress/hdr_compression=1 -compress/normal_map=0 -compress/channel_pack=0 -mipmaps/generate=false -mipmaps/limit=-1 -roughness/mode=0 -roughness/src_normal="" -process/fix_alpha_border=true -process/premult_alpha=false -process/normal_map_invert_y=false -process/hdr_as_srgb=false -process/hdr_clamp_exposure=false -process/size_limit=0 -detect_3d/compress_to=0 diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_307_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_307_delay-0.01s.png.import deleted file mode 100644 index e4ab146b..00000000 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_307_delay-0.01s.png.import +++ /dev/null @@ -1,34 +0,0 @@ -[remap] - -importer="texture" -type="CompressedTexture2D" -uid="uid://cpmsi4om5ax3s" -path="res://.godot/imported/frame_307_delay-0.01s.png-22718541125fed528a13f0cc12dbb538.ctex" -metadata={ -"vram_texture": false -} - -[deps] - -source_file="res://src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_307_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_307_delay-0.01s.png-22718541125fed528a13f0cc12dbb538.ctex"] - -[params] - -compress/mode=0 -compress/high_quality=false -compress/lossy_quality=0.7 -compress/hdr_compression=1 -compress/normal_map=0 -compress/channel_pack=0 -mipmaps/generate=false -mipmaps/limit=-1 -roughness/mode=0 -roughness/src_normal="" -process/fix_alpha_border=true -process/premult_alpha=false -process/normal_map_invert_y=false -process/hdr_as_srgb=false -process/hdr_clamp_exposure=false -process/size_limit=0 -detect_3d/compress_to=0 diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_230_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_230_delay-0.01s.png.import deleted file mode 100644 index 7182647e..00000000 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_230_delay-0.01s.png.import +++ /dev/null @@ -1,34 +0,0 @@ -[remap] - -importer="texture" -type="CompressedTexture2D" -uid="uid://y1u43bt8wh7b" -path="res://.godot/imported/frame_230_delay-0.01s.png-766cbaa358ba57bf677b8a022f27c1fa.ctex" -metadata={ -"vram_texture": false -} - -[deps] - -source_file="res://src/enemy/enemy_types/09. Agi/animations/R/frame_230_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_230_delay-0.01s.png-766cbaa358ba57bf677b8a022f27c1fa.ctex"] - -[params] - -compress/mode=0 -compress/high_quality=false -compress/lossy_quality=0.7 -compress/hdr_compression=1 -compress/normal_map=0 -compress/channel_pack=0 -mipmaps/generate=false -mipmaps/limit=-1 -roughness/mode=0 -roughness/src_normal="" -process/fix_alpha_border=true -process/premult_alpha=false -process/normal_map_invert_y=false -process/hdr_as_srgb=false -process/hdr_clamp_exposure=false -process/size_limit=0 -detect_3d/compress_to=0 diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_245_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_245_delay-0.01s.png.import deleted file mode 100644 index c6e7cd17..00000000 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_245_delay-0.01s.png.import +++ /dev/null @@ -1,34 +0,0 @@ -[remap] - -importer="texture" -type="CompressedTexture2D" -uid="uid://dwhgget8tysjl" -path="res://.godot/imported/frame_245_delay-0.01s.png-eb8715e3ee17ec2fa55e65ab64532261.ctex" -metadata={ -"vram_texture": false -} - -[deps] - -source_file="res://src/enemy/enemy_types/09. Agi/animations/R/frame_245_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_245_delay-0.01s.png-eb8715e3ee17ec2fa55e65ab64532261.ctex"] - -[params] - -compress/mode=0 -compress/high_quality=false -compress/lossy_quality=0.7 -compress/hdr_compression=1 -compress/normal_map=0 -compress/channel_pack=0 -mipmaps/generate=false -mipmaps/limit=-1 -roughness/mode=0 -roughness/src_normal="" -process/fix_alpha_border=true -process/premult_alpha=false -process/normal_map_invert_y=false -process/hdr_as_srgb=false -process/hdr_clamp_exposure=false -process/size_limit=0 -detect_3d/compress_to=0 diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/AgiDemon.cs b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/AgniDemon.cs similarity index 97% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/AgiDemon.cs rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/AgniDemon.cs index d149194d..2f0b3dc9 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/AgiDemon.cs +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/AgniDemon.cs @@ -9,7 +9,7 @@ using Zennysoft.Game.Abstractions; namespace Zennysoft.Game.Ma; [Meta(typeof(IAutoNode))] -public partial class AgiDemon : Enemy, IHasPrimaryAttack, IHasSecondaryAttack, ICanPatrol +public partial class AgniDemon : Enemy, IHasPrimaryAttack, IHasSecondaryAttack, ICanPatrol { public override void _Notification(int what) => this.Notify(what); diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/AgiDemon.cs.uid b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/AgniDemon.cs.uid similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/AgiDemon.cs.uid rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/AgniDemon.cs.uid diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/AgiDemon.tscn b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/AgniDemon.tscn similarity index 81% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/AgiDemon.tscn rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/AgniDemon.tscn index d63b724f..68f160fa 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/AgiDemon.tscn +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/AgniDemon.tscn @@ -1,9 +1,9 @@ [gd_scene load_steps=8 format=3 uid="uid://b8ewfgcjv60es"] -[ext_resource type="Script" uid="uid://h6duv685n6eh" path="res://src/enemy/enemy_types/09. Agi/AgiDemon.cs" id="1_56f32"] -[ext_resource type="Resource" uid="uid://2lflwab43lb0" path="res://src/enemy/enemy_types/09. Agi/AgiDemonStats.tres" id="2_qec65"] -[ext_resource type="PackedScene" uid="uid://bls3mcsyld4vy" path="res://src/enemy/enemy_types/09. Agi/AgiDemonModelView.tscn" id="3_703e7"] -[ext_resource type="PackedScene" uid="uid://pbnsngx5jvrh" path="res://src/enemy/NavigationAgentClient.tscn" id="4_uaeav"] +[ext_resource type="Script" uid="uid://h6duv685n6eh" path="res://src/enemy/enemy_types/09. Agni/AgniDemon.cs" id="1_okj1v"] +[ext_resource type="Resource" uid="uid://2lflwab43lb0" path="res://src/enemy/enemy_types/09. Agni/AgniDemonStats.tres" id="2_eschf"] +[ext_resource type="PackedScene" uid="uid://bls3mcsyld4vy" path="res://src/enemy/enemy_types/09. Agni/AgniDemonModelView.tscn" id="3_tbkej"] +[ext_resource type="PackedScene" uid="uid://pbnsngx5jvrh" path="res://src/enemy/NavigationAgentClient.tscn" id="4_xj6b3"] [sub_resource type="CapsuleShape3D" id="CapsuleShape3D_cwfph"] radius = 0.226425 @@ -16,16 +16,16 @@ radius = 1.0 [sub_resource type="SphereShape3D" id="SphereShape3D_8vcnq"] radius = 1.20703 -[node name="Agi" type="CharacterBody3D"] +[node name="Agni" type="CharacterBody3D"] process_mode = 1 collision_layer = 10 collision_mask = 11 axis_lock_linear_y = true axis_lock_angular_x = true -script = ExtResource("1_56f32") +script = ExtResource("1_okj1v") PrimaryAttackElementalType = 4 SecondaryAttackElementalType = 4 -_enemyStatResource = ExtResource("2_qec65") +_enemyStatResource = ExtResource("2_eschf") [node name="CollisionShape" type="CollisionShape3D" parent="."] unique_name_in_owner = true @@ -64,8 +64,8 @@ collision_mask = 0 [node name="CollisionShape3D" type="CollisionShape3D" parent="Collision"] shape = SubResource("SphereShape3D_8vcnq") -[node name="EnemyModelView" parent="." instance=ExtResource("3_703e7")] +[node name="EnemyModelView" parent="." instance=ExtResource("3_tbkej")] unique_name_in_owner = true -[node name="NavigationAgentClient" parent="." instance=ExtResource("4_uaeav")] +[node name="NavigationAgentClient" parent="." instance=ExtResource("4_xj6b3")] unique_name_in_owner = true diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/AgiDemonModelView.tscn b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/AgniDemonModelView.tscn similarity index 76% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/AgiDemonModelView.tscn rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/AgniDemonModelView.tscn index 2deefb43..230fada4 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/AgiDemonModelView.tscn +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/AgniDemonModelView.tscn @@ -1,338 +1,341 @@ -[gd_scene load_steps=530 format=3 uid="uid://bls3mcsyld4vy"] +[gd_scene load_steps=533 format=3 uid="uid://bls3mcsyld4vy"] [ext_resource type="Script" uid="uid://cvr1qimxpignl" path="res://src/enemy/EnemyModelView2D.cs" id="1_wl7dh"] -[ext_resource type="Texture2D" uid="uid://dsu48b5hf48xl" path="res://src/enemy/enemy_types/09. Agi/animations/B/frame_000_delay-0.01s.png" id="2_pt8gl"] +[ext_resource type="Texture2D" uid="uid://dsu48b5hf48xl" path="res://src/enemy/enemy_types/09. Agni/animations/B/frame_000_delay-0.01s.png" id="2_pt8gl"] [ext_resource type="Script" uid="uid://6edayafleq8y" path="res://src/hitbox/Hitbox.cs" id="2_rmtca"] -[ext_resource type="Texture2D" uid="uid://bdhmqyiad52ea" path="res://src/enemy/enemy_types/09. Agi/animations/F/frame_066_delay-0.01s.png" id="2_wfu1u"] +[ext_resource type="Texture2D" uid="uid://bdhmqyiad52ea" path="res://src/enemy/enemy_types/09. Agni/animations/F/frame_066_delay-0.01s.png" id="2_wfu1u"] [ext_resource type="Script" uid="uid://dlsgyx4i1jmp3" path="res://src/enemy/EnemyLoreInfo.cs" id="2_y6p5p"] -[ext_resource type="Texture2D" uid="uid://dw1841vsuw75d" path="res://src/enemy/enemy_types/09. Agi/animations/B/frame_001_delay-0.01s.png" id="3_8wyws"] -[ext_resource type="Texture2D" uid="uid://d11ep3xldfmpw" path="res://src/enemy/enemy_types/09. Agi/animations/F/frame_067_delay-0.01s.png" id="3_mmosy"] -[ext_resource type="Texture2D" uid="uid://omx4r41xjik7" path="res://src/enemy/enemy_types/09. Agi/animations/B/frame_002_delay-0.01s.png" id="4_kuord"] -[ext_resource type="Texture2D" uid="uid://b5nxnpkd0ua31" path="res://src/enemy/enemy_types/09. Agi/animations/F/frame_068_delay-0.01s.png" id="4_nndw7"] -[ext_resource type="Texture2D" uid="uid://xcsacohbrrm6" path="res://src/enemy/enemy_types/09. Agi/animations/F/frame_069_delay-0.01s.png" id="5_k4gqr"] -[ext_resource type="Texture2D" uid="uid://d2liuqexudies" path="res://src/enemy/enemy_types/09. Agi/animations/B/frame_003_delay-0.01s.png" id="5_obx1n"] -[ext_resource type="Texture2D" uid="uid://3l1v3jcokipc" path="res://src/enemy/enemy_types/09. Agi/animations/B/frame_004_delay-0.01s.png" id="6_8l7g8"] -[ext_resource type="Texture2D" uid="uid://co7t2phmmlon6" path="res://src/enemy/enemy_types/09. Agi/animations/F/frame_070_delay-0.01s.png" id="6_x75vs"] -[ext_resource type="Texture2D" uid="uid://c03lhbb3nkov1" path="res://src/enemy/enemy_types/09. Agi/animations/B/frame_005_delay-0.01s.png" id="7_aq5x0"] -[ext_resource type="Texture2D" uid="uid://gq50rdbmi7sk" path="res://src/enemy/enemy_types/09. Agi/animations/F/frame_071_delay-0.01s.png" id="7_g86ru"] -[ext_resource type="Texture2D" uid="uid://bj4n58bpwnb0" path="res://src/enemy/enemy_types/09. Agi/animations/B/frame_006_delay-0.01s.png" id="8_m8e8t"] -[ext_resource type="Texture2D" uid="uid://dmcyc2jqdohid" path="res://src/enemy/enemy_types/09. Agi/animations/F/frame_072_delay-0.01s.png" id="8_tosmb"] -[ext_resource type="Texture2D" uid="uid://4csp7iopj1h8" path="res://src/enemy/enemy_types/09. Agi/animations/F/frame_073_delay-0.01s.png" id="9_m3hmy"] -[ext_resource type="Texture2D" uid="uid://dmjxydw2xj1ci" path="res://src/enemy/enemy_types/09. Agi/animations/B/frame_007_delay-0.01s.png" id="9_nhwh3"] -[ext_resource type="Texture2D" uid="uid://c2n52kxmhd0vb" path="res://src/enemy/enemy_types/09. Agi/animations/F/frame_074_delay-0.01s.png" id="10_5t1x1"] -[ext_resource type="Texture2D" uid="uid://cr0t3wcwk6oxe" path="res://src/enemy/enemy_types/09. Agi/animations/B/frame_008_delay-0.01s.png" id="10_abn8u"] -[ext_resource type="Texture2D" uid="uid://dlkxr7kr6vb6j" path="res://src/enemy/enemy_types/09. Agi/animations/F/frame_075_delay-0.01s.png" id="11_amu76"] -[ext_resource type="Texture2D" uid="uid://c3fqvh0nykviw" path="res://src/enemy/enemy_types/09. Agi/animations/B/frame_009_delay-0.01s.png" id="11_lr3oj"] -[ext_resource type="Texture2D" uid="uid://c5esujdn8b37u" path="res://src/enemy/enemy_types/09. Agi/animations/B/frame_010_delay-0.01s.png" id="12_88ogm"] -[ext_resource type="Texture2D" uid="uid://dfmbe44w8hqlg" path="res://src/enemy/enemy_types/09. Agi/animations/F/frame_076_delay-0.01s.png" id="12_s1efa"] -[ext_resource type="Texture2D" uid="uid://do0irjwtnolk6" path="res://src/enemy/enemy_types/09. Agi/animations/B/frame_011_delay-0.01s.png" id="13_2hodw"] -[ext_resource type="Texture2D" uid="uid://c1v3bfx4ucesp" path="res://src/enemy/enemy_types/09. Agi/animations/F/frame_077_delay-0.01s.png" id="13_w4ia2"] -[ext_resource type="Texture2D" uid="uid://sv41es0jbpsh" path="res://src/enemy/enemy_types/09. Agi/animations/F/frame_078_delay-0.01s.png" id="14_4fe3j"] -[ext_resource type="Texture2D" uid="uid://3pu7w2vd575y" path="res://src/enemy/enemy_types/09. Agi/animations/B/frame_012_delay-0.01s.png" id="14_vpy0l"] -[ext_resource type="Texture2D" uid="uid://chp1wcndee3th" path="res://src/enemy/enemy_types/09. Agi/animations/F/frame_079_delay-0.01s.png" id="15_3bcni"] -[ext_resource type="Texture2D" uid="uid://c02qdei8b784w" path="res://src/enemy/enemy_types/09. Agi/animations/B/frame_013_delay-0.01s.png" id="15_pk4a8"] -[ext_resource type="Texture2D" uid="uid://fdahurlbi6qo" path="res://src/enemy/enemy_types/09. Agi/animations/F/frame_080_delay-0.01s.png" id="16_cpt54"] -[ext_resource type="Texture2D" uid="uid://ddmgt26w3nxdd" path="res://src/enemy/enemy_types/09. Agi/animations/B/frame_014_delay-0.01s.png" id="16_odqho"] -[ext_resource type="Texture2D" uid="uid://df01ngt250q23" path="res://src/enemy/enemy_types/09. Agi/animations/F/frame_081_delay-0.01s.png" id="17_634a5"] -[ext_resource type="Texture2D" uid="uid://bmq0o2eraq1kv" path="res://src/enemy/enemy_types/09. Agi/animations/B/frame_015_delay-0.01s.png" id="17_g77ba"] -[ext_resource type="Texture2D" uid="uid://doxughhfcyl6j" path="res://src/enemy/enemy_types/09. Agi/animations/F/frame_082_delay-0.01s.png" id="18_i8vqd"] -[ext_resource type="Texture2D" uid="uid://b63idehp7dejv" path="res://src/enemy/enemy_types/09. Agi/animations/B/frame_016_delay-0.01s.png" id="18_vprbf"] -[ext_resource type="Texture2D" uid="uid://dmt178ko0eu3m" path="res://src/enemy/enemy_types/09. Agi/animations/B/frame_017_delay-0.01s.png" id="19_3b4or"] -[ext_resource type="Texture2D" uid="uid://c3sv0vwvn70us" path="res://src/enemy/enemy_types/09. Agi/animations/F/frame_083_delay-0.01s.png" id="19_nri4i"] -[ext_resource type="Texture2D" uid="uid://7xn7dudypkrk" path="res://src/enemy/enemy_types/09. Agi/animations/F/frame_084_delay-0.01s.png" id="20_7vb7t"] -[ext_resource type="Texture2D" uid="uid://5ieleh43ldp0" path="res://src/enemy/enemy_types/09. Agi/animations/B/frame_018_delay-0.01s.png" id="20_lvxxf"] -[ext_resource type="Texture2D" uid="uid://13fl1yuo166w" path="res://src/enemy/enemy_types/09. Agi/animations/F/frame_085_delay-0.01s.png" id="21_1whho"] -[ext_resource type="Texture2D" uid="uid://dre7afnvlxcs3" path="res://src/enemy/enemy_types/09. Agi/animations/B/frame_019_delay-0.01s.png" id="21_h5qpd"] -[ext_resource type="Texture2D" uid="uid://cg07jeigsoqb8" path="res://src/enemy/enemy_types/09. Agi/animations/F/frame_086_delay-0.01s.png" id="22_1n35w"] -[ext_resource type="Texture2D" uid="uid://pr57d2d141yp" path="res://src/enemy/enemy_types/09. Agi/animations/B/frame_020_delay-0.01s.png" id="22_3fp3w"] -[ext_resource type="Texture2D" uid="uid://bboqd2pr26m2n" path="res://src/enemy/enemy_types/09. Agi/animations/B/frame_021_delay-0.01s.png" id="23_ahsj4"] -[ext_resource type="Texture2D" uid="uid://d2n7d6ee17ky4" path="res://src/enemy/enemy_types/09. Agi/animations/F/frame_087_delay-0.01s.png" id="23_ovbe7"] -[ext_resource type="Texture2D" uid="uid://by0ir4chxvpuc" path="res://src/enemy/enemy_types/09. Agi/animations/F/frame_088_delay-0.01s.png" id="24_2nphr"] -[ext_resource type="Texture2D" uid="uid://br0se4irgyk44" path="res://src/enemy/enemy_types/09. Agi/animations/B/frame_022_delay-0.01s.png" id="24_r8w0q"] -[ext_resource type="Texture2D" uid="uid://byul8xbwy665p" path="res://src/enemy/enemy_types/09. Agi/animations/B/frame_023_delay-0.01s.png" id="25_1wi8m"] -[ext_resource type="Texture2D" uid="uid://bck0afl1e0tl4" path="res://src/enemy/enemy_types/09. Agi/animations/F/frame_089_delay-0.01s.png" id="25_x2ty2"] -[ext_resource type="Texture2D" uid="uid://tymvatp8x07l" path="res://src/enemy/enemy_types/09. Agi/animations/B/frame_024_delay-0.01s.png" id="26_cwyyv"] -[ext_resource type="Texture2D" uid="uid://di5p0wuw6gafa" path="res://src/enemy/enemy_types/09. Agi/animations/F/frame_090_delay-0.01s.png" id="26_mhe7a"] -[ext_resource type="Texture2D" uid="uid://cdqv6kmqxcc7a" path="res://src/enemy/enemy_types/09. Agi/animations/B/frame_025_delay-0.01s.png" id="27_5ikd5"] -[ext_resource type="Texture2D" uid="uid://dco80dgth7qdb" path="res://src/enemy/enemy_types/09. Agi/animations/F/frame_091_delay-0.01s.png" id="27_8gad2"] -[ext_resource type="Texture2D" uid="uid://dsc72x737trct" path="res://src/enemy/enemy_types/09. Agi/animations/F/frame_092_delay-0.01s.png" id="28_ieg2v"] -[ext_resource type="Texture2D" uid="uid://oxtmehmd0bs2" path="res://src/enemy/enemy_types/09. Agi/animations/B/frame_026_delay-0.01s.png" id="28_liv8i"] -[ext_resource type="Texture2D" uid="uid://caru2dj6uifo5" path="res://src/enemy/enemy_types/09. Agi/animations/L/frame_132_delay-0.01s.png" id="29_mhe7a"] -[ext_resource type="Texture2D" uid="uid://b2y01wk2x5qox" path="res://src/enemy/enemy_types/09. Agi/animations/L/frame_133_delay-0.01s.png" id="30_8gad2"] -[ext_resource type="Texture2D" uid="uid://ccd8e5ox3064m" path="res://src/enemy/enemy_types/09. Agi/animations/L/frame_134_delay-0.01s.png" id="31_ieg2v"] -[ext_resource type="Texture2D" uid="uid://bfhvwj7n7k0nf" path="res://src/enemy/enemy_types/09. Agi/animations/L/frame_135_delay-0.01s.png" id="32_hbxto"] -[ext_resource type="Texture2D" uid="uid://daj3whlky73jv" path="res://src/enemy/enemy_types/09. Agi/animations/L/frame_136_delay-0.01s.png" id="33_pvxj6"] -[ext_resource type="Texture2D" uid="uid://d0xe20uc6etoa" path="res://src/enemy/enemy_types/09. Agi/animations/L/frame_137_delay-0.01s.png" id="34_qh0ha"] -[ext_resource type="Texture2D" uid="uid://dqtgwld0uapvf" path="res://src/enemy/enemy_types/09. Agi/animations/L/frame_138_delay-0.01s.png" id="35_rpjnp"] -[ext_resource type="Texture2D" uid="uid://c1rkc0g01by7h" path="res://src/enemy/enemy_types/09. Agi/animations/L/frame_139_delay-0.01s.png" id="36_qr5lh"] -[ext_resource type="Texture2D" uid="uid://c3ijx4n6gx3kk" path="res://src/enemy/enemy_types/09. Agi/animations/L/frame_140_delay-0.01s.png" id="37_i6r87"] -[ext_resource type="Texture2D" uid="uid://cedvpowu0uxl8" path="res://src/enemy/enemy_types/09. Agi/animations/L/frame_141_delay-0.01s.png" id="38_sqeg8"] -[ext_resource type="Texture2D" uid="uid://cspnh0dp8rby7" path="res://src/enemy/enemy_types/09. Agi/animations/L/frame_142_delay-0.01s.png" id="39_k5y0i"] -[ext_resource type="Texture2D" uid="uid://rttxodnaeo1r" path="res://src/enemy/enemy_types/09. Agi/animations/L/frame_143_delay-0.01s.png" id="40_lr5by"] -[ext_resource type="Texture2D" uid="uid://bmca04yriogx5" path="res://src/enemy/enemy_types/09. Agi/animations/L/frame_144_delay-0.01s.png" id="41_c84kr"] -[ext_resource type="Texture2D" uid="uid://xor5n0c5tk0j" path="res://src/enemy/enemy_types/09. Agi/animations/L/frame_145_delay-0.01s.png" id="42_xfnmt"] -[ext_resource type="Texture2D" uid="uid://dhq2t5wpgmlt7" path="res://src/enemy/enemy_types/09. Agi/animations/L/frame_146_delay-0.01s.png" id="43_irwou"] -[ext_resource type="Texture2D" uid="uid://dijlfip1gcip2" path="res://src/enemy/enemy_types/09. Agi/animations/L/frame_147_delay-0.01s.png" id="44_h35me"] -[ext_resource type="Texture2D" uid="uid://c7g7ukartbxg0" path="res://src/enemy/enemy_types/09. Agi/animations/L/frame_148_delay-0.01s.png" id="45_8sjpy"] -[ext_resource type="Texture2D" uid="uid://c6fiobstg4wim" path="res://src/enemy/enemy_types/09. Agi/animations/L/frame_149_delay-0.01s.png" id="46_n8ava"] -[ext_resource type="Texture2D" uid="uid://cmero5dihar6b" path="res://src/enemy/enemy_types/09. Agi/animations/L/frame_150_delay-0.01s.png" id="47_qq0rn"] -[ext_resource type="Texture2D" uid="uid://gx4uxnf1dmun" path="res://src/enemy/enemy_types/09. Agi/animations/L/frame_151_delay-0.01s.png" id="48_eho7s"] -[ext_resource type="Texture2D" uid="uid://ngghdfw4jj4h" path="res://src/enemy/enemy_types/09. Agi/animations/L/frame_152_delay-0.01s.png" id="49_fg3hu"] -[ext_resource type="Texture2D" uid="uid://da1xp1iw3a7hv" path="res://src/enemy/enemy_types/09. Agi/animations/L/frame_153_delay-0.01s.png" id="50_51wrr"] -[ext_resource type="Texture2D" uid="uid://cv2btcyir4ahg" path="res://src/enemy/enemy_types/09. Agi/animations/L/frame_154_delay-0.01s.png" id="51_cy6mc"] -[ext_resource type="Texture2D" uid="uid://bjr7n1r02juti" path="res://src/enemy/enemy_types/09. Agi/animations/L/frame_155_delay-0.01s.png" id="52_d0673"] -[ext_resource type="Texture2D" uid="uid://xavgld8cd4ik" path="res://src/enemy/enemy_types/09. Agi/animations/L/frame_156_delay-0.01s.png" id="53_12m2c"] -[ext_resource type="Texture2D" uid="uid://bj10yx3ow10bp" path="res://src/enemy/enemy_types/09. Agi/animations/L/frame_157_delay-0.01s.png" id="54_s6cqb"] -[ext_resource type="Texture2D" uid="uid://dqm5xh38tgiqh" path="res://src/enemy/enemy_types/09. Agi/animations/L/frame_158_delay-0.01s.png" id="55_n8ymk"] -[ext_resource type="Texture2D" uid="uid://bhsk32l05xvbf" path="res://src/enemy/enemy_types/09. Agi/animations/R/frame_198_delay-0.01s.png" id="56_n1bnx"] -[ext_resource type="Texture2D" uid="uid://06p7wl1ifibr" path="res://src/enemy/enemy_types/09. Agi/animations/R/frame_199_delay-0.01s.png" id="57_eex31"] -[ext_resource type="Texture2D" uid="uid://54qkscqnmgcu" path="res://src/enemy/enemy_types/09. Agi/animations/R/frame_200_delay-0.01s.png" id="58_5bp3f"] -[ext_resource type="Texture2D" uid="uid://cwfiuljjxhxtu" path="res://src/enemy/enemy_types/09. Agi/animations/R/frame_201_delay-0.01s.png" id="59_oahu0"] -[ext_resource type="Texture2D" uid="uid://rxrcw23shk21" path="res://src/enemy/enemy_types/09. Agi/animations/R/frame_202_delay-0.01s.png" id="60_7lq18"] -[ext_resource type="Texture2D" uid="uid://chyf5dfvhdmha" path="res://src/enemy/enemy_types/09. Agi/animations/R/frame_203_delay-0.01s.png" id="61_ygp5b"] -[ext_resource type="Texture2D" uid="uid://bs6eno6gtusur" path="res://src/enemy/enemy_types/09. Agi/animations/R/frame_204_delay-0.01s.png" id="62_di4mh"] -[ext_resource type="Texture2D" uid="uid://ymmk47tamej2" path="res://src/enemy/enemy_types/09. Agi/animations/R/frame_205_delay-0.01s.png" id="63_k0n7h"] -[ext_resource type="Texture2D" uid="uid://w88wl5teslfx" path="res://src/enemy/enemy_types/09. Agi/animations/R/frame_206_delay-0.01s.png" id="64_uh8m4"] -[ext_resource type="Texture2D" uid="uid://ddfjifcvkpkhc" path="res://src/enemy/enemy_types/09. Agi/animations/R/frame_207_delay-0.01s.png" id="65_w4cwl"] -[ext_resource type="Texture2D" uid="uid://jfiov7uldt38" path="res://src/enemy/enemy_types/09. Agi/animations/R/frame_208_delay-0.01s.png" id="66_30j18"] -[ext_resource type="Texture2D" uid="uid://cpww0skmfrgvp" path="res://src/enemy/enemy_types/09. Agi/animations/R/frame_209_delay-0.01s.png" id="67_bh68d"] -[ext_resource type="Texture2D" uid="uid://dsmjr3ohg5w8r" path="res://src/enemy/enemy_types/09. Agi/animations/R/frame_210_delay-0.01s.png" id="68_b8cwe"] -[ext_resource type="Texture2D" uid="uid://p6i3hny05st6" path="res://src/enemy/enemy_types/09. Agi/animations/R/frame_211_delay-0.01s.png" id="69_ttwny"] -[ext_resource type="Texture2D" uid="uid://bh3tcdeassk02" path="res://src/enemy/enemy_types/09. Agi/animations/R/frame_212_delay-0.01s.png" id="70_idn0p"] -[ext_resource type="Texture2D" uid="uid://d331tk4jn3twx" path="res://src/enemy/enemy_types/09. Agi/animations/R/frame_213_delay-0.01s.png" id="71_0nkem"] -[ext_resource type="Texture2D" uid="uid://0xpxwche3cfd" path="res://src/enemy/enemy_types/09. Agi/animations/R/frame_214_delay-0.01s.png" id="72_n7gw4"] -[ext_resource type="Texture2D" uid="uid://dm6gsiqregjsw" path="res://src/enemy/enemy_types/09. Agi/animations/R/frame_215_delay-0.01s.png" id="73_vc4pw"] -[ext_resource type="Texture2D" uid="uid://l1yi2bofgjon" path="res://src/enemy/enemy_types/09. Agi/animations/R/frame_216_delay-0.01s.png" id="74_0i26d"] -[ext_resource type="Texture2D" uid="uid://blc66cptgn1c3" path="res://src/enemy/enemy_types/09. Agi/animations/R/frame_217_delay-0.01s.png" id="75_fn30n"] -[ext_resource type="Texture2D" uid="uid://mvy8hatv1lmb" path="res://src/enemy/enemy_types/09. Agi/animations/R/frame_218_delay-0.01s.png" id="76_654xy"] -[ext_resource type="Texture2D" uid="uid://crow2apwptjbb" path="res://src/enemy/enemy_types/09. Agi/animations/R/frame_219_delay-0.01s.png" id="77_51k5h"] -[ext_resource type="Texture2D" uid="uid://vymn8geahxjj" path="res://src/enemy/enemy_types/09. Agi/animations/R/frame_220_delay-0.01s.png" id="78_4bh03"] -[ext_resource type="Texture2D" uid="uid://c3alaqd3qntjf" path="res://src/enemy/enemy_types/09. Agi/animations/R/frame_221_delay-0.01s.png" id="79_84quw"] -[ext_resource type="Texture2D" uid="uid://dpiupie81g4su" path="res://src/enemy/enemy_types/09. Agi/animations/R/frame_222_delay-0.01s.png" id="80_pt8gl"] -[ext_resource type="Texture2D" uid="uid://ygl3erumerul" path="res://src/enemy/enemy_types/09. Agi/animations/R/frame_223_delay-0.01s.png" id="81_8wyws"] -[ext_resource type="Texture2D" uid="uid://bm8u1egdkocd7" path="res://src/enemy/enemy_types/09. Agi/animations/R/frame_224_delay-0.01s.png" id="82_kuord"] -[ext_resource type="Texture2D" uid="uid://c46w5xfuwhnr6" path="res://src/enemy/enemy_types/09. Agi/animations/Primary Attack/F/frame_093_delay-0.01s.png" id="110_vprbf"] -[ext_resource type="Texture2D" uid="uid://chba8jbs2trtk" path="res://src/enemy/enemy_types/09. Agi/animations/Primary Attack/F/frame_094_delay-0.01s.png" id="111_3b4or"] -[ext_resource type="Texture2D" uid="uid://b2mfv3bh1x3xb" path="res://src/enemy/enemy_types/09. Agi/animations/Primary Attack/F/frame_095_delay-0.01s.png" id="112_lvxxf"] -[ext_resource type="Texture2D" uid="uid://cyf85k3hjhfyf" path="res://src/enemy/enemy_types/09. Agi/animations/Primary Attack/F/frame_096_delay-0.01s.png" id="113_h5qpd"] -[ext_resource type="Texture2D" uid="uid://3hkok2jl7aqm" path="res://src/enemy/enemy_types/09. Agi/animations/Primary Attack/F/frame_097_delay-0.01s.png" id="114_3fp3w"] -[ext_resource type="Texture2D" uid="uid://c8mbs175j1sfu" path="res://src/enemy/enemy_types/09. Agi/animations/Primary Attack/F/frame_098_delay-0.01s.png" id="115_ahsj4"] -[ext_resource type="Texture2D" uid="uid://bw5tqu5fgkhh5" path="res://src/enemy/enemy_types/09. Agi/animations/Primary Attack/F/frame_099_delay-0.01s.png" id="116_r8w0q"] -[ext_resource type="Texture2D" uid="uid://dvwu1pe0v5a5h" path="res://src/enemy/enemy_types/09. Agi/animations/Primary Attack/F/frame_100_delay-0.01s.png" id="117_1wi8m"] -[ext_resource type="Texture2D" uid="uid://c332v26b101k" path="res://src/enemy/enemy_types/09. Agi/animations/Primary Attack/F/frame_101_delay-0.01s.png" id="118_cwyyv"] -[ext_resource type="Texture2D" uid="uid://b3ybjgdm452gp" path="res://src/enemy/enemy_types/09. Agi/animations/Primary Attack/F/frame_102_delay-0.01s.png" id="119_5ikd5"] -[ext_resource type="Texture2D" uid="uid://cp8ld1gc0pr61" path="res://src/enemy/enemy_types/09. Agi/animations/Primary Attack/F/frame_103_delay-0.01s.png" id="120_liv8i"] -[ext_resource type="Texture2D" uid="uid://bj3wqh6us08j6" path="res://src/enemy/enemy_types/09. Agi/animations/Primary Attack/F/frame_104_delay-0.01s.png" id="121_kpjbt"] -[ext_resource type="Texture2D" uid="uid://biqd4qxqj1jq" path="res://src/enemy/enemy_types/09. Agi/animations/Primary Attack/F/frame_105_delay-0.01s.png" id="122_ry8u8"] -[ext_resource type="Texture2D" uid="uid://dcqrai54vxasy" path="res://src/enemy/enemy_types/09. Agi/animations/Primary Attack/F/frame_106_delay-0.01s.png" id="123_3bhr5"] -[ext_resource type="Texture2D" uid="uid://w0adyv4klg8u" path="res://src/enemy/enemy_types/09. Agi/animations/Primary Attack/F/frame_107_delay-0.01s.png" id="124_mvhf3"] -[ext_resource type="Texture2D" uid="uid://bj4w1t366je36" path="res://src/enemy/enemy_types/09. Agi/animations/Primary Attack/F/frame_108_delay-0.01s.png" id="125_t1jne"] -[ext_resource type="Texture2D" uid="uid://chlghfjgl356s" path="res://src/enemy/enemy_types/09. Agi/animations/L/frame_159_delay-0.01s.png" id="126_bt5l7"] -[ext_resource type="Texture2D" uid="uid://cnaiqs7f0sjj2" path="res://src/enemy/enemy_types/09. Agi/animations/B/frame_027_delay-0.01s.png" id="126_ppjwm"] -[ext_resource type="Texture2D" uid="uid://dutdhjc47m7xu" path="res://src/enemy/enemy_types/09. Agi/animations/B/frame_028_delay-0.01s.png" id="127_aeduo"] -[ext_resource type="Texture2D" uid="uid://b6at2sytan3p1" path="res://src/enemy/enemy_types/09. Agi/animations/L/frame_160_delay-0.01s.png" id="127_ayin7"] -[ext_resource type="Texture2D" uid="uid://b5jakjdopmwxc" path="res://src/enemy/enemy_types/09. Agi/animations/B/frame_029_delay-0.01s.png" id="128_ghqkn"] -[ext_resource type="Texture2D" uid="uid://d34ky0ehksjfc" path="res://src/enemy/enemy_types/09. Agi/animations/L/frame_161_delay-0.01s.png" id="128_t3tyn"] -[ext_resource type="Texture2D" uid="uid://dbip07sw2qcgc" path="res://src/enemy/enemy_types/09. Agi/animations/L/frame_162_delay-0.01s.png" id="129_7wh57"] -[ext_resource type="Texture2D" uid="uid://cnied0w8p8kbw" path="res://src/enemy/enemy_types/09. Agi/animations/B/frame_030_delay-0.01s.png" id="129_81k6x"] -[ext_resource type="Texture2D" uid="uid://g1ahvwq6dqhx" path="res://src/enemy/enemy_types/09. Agi/animations/B/frame_031_delay-0.01s.png" id="130_px6yr"] -[ext_resource type="Texture2D" uid="uid://cltiglp15kywt" path="res://src/enemy/enemy_types/09. Agi/animations/L/frame_163_delay-0.01s.png" id="130_s7ye2"] -[ext_resource type="Texture2D" uid="uid://dd0c4gaeh6myh" path="res://src/enemy/enemy_types/09. Agi/animations/B/frame_032_delay-0.01s.png" id="131_beuum"] -[ext_resource type="Texture2D" uid="uid://d07ugpq756uhv" path="res://src/enemy/enemy_types/09. Agi/animations/L/frame_164_delay-0.01s.png" id="131_rj1js"] -[ext_resource type="Texture2D" uid="uid://cgaxxvy3om7md" path="res://src/enemy/enemy_types/09. Agi/animations/B/frame_033_delay-0.01s.png" id="132_mwuti"] -[ext_resource type="Texture2D" uid="uid://sgegg8gg2doj" path="res://src/enemy/enemy_types/09. Agi/animations/L/frame_165_delay-0.01s.png" id="132_pgglm"] -[ext_resource type="Texture2D" uid="uid://b801i5bpfu182" path="res://src/enemy/enemy_types/09. Agi/animations/B/frame_034_delay-0.01s.png" id="133_2e6rw"] -[ext_resource type="Texture2D" uid="uid://dggx0hygu8tn0" path="res://src/enemy/enemy_types/09. Agi/animations/L/frame_166_delay-0.01s.png" id="133_gu1ti"] -[ext_resource type="Texture2D" uid="uid://bajvef2wycmmd" path="res://src/enemy/enemy_types/09. Agi/animations/L/frame_167_delay-0.01s.png" id="134_82aih"] -[ext_resource type="Texture2D" uid="uid://b2exyqsd2ivmg" path="res://src/enemy/enemy_types/09. Agi/animations/B/frame_035_delay-0.01s.png" id="134_hlucq"] -[ext_resource type="Texture2D" uid="uid://b8dd8rwx6sg4j" path="res://src/enemy/enemy_types/09. Agi/animations/B/frame_036_delay-0.01s.png" id="135_4e16l"] -[ext_resource type="Texture2D" uid="uid://desjlb5rvs5ft" path="res://src/enemy/enemy_types/09. Agi/animations/L/frame_168_delay-0.01s.png" id="135_aa2x8"] -[ext_resource type="Texture2D" uid="uid://da6ib32jregio" path="res://src/enemy/enemy_types/09. Agi/animations/B/frame_037_delay-0.01s.png" id="136_iwxo7"] -[ext_resource type="Texture2D" uid="uid://dwfg2anun2m15" path="res://src/enemy/enemy_types/09. Agi/animations/L/frame_169_delay-0.01s.png" id="136_uhgxx"] -[ext_resource type="Texture2D" uid="uid://daoigad46m5r7" path="res://src/enemy/enemy_types/09. Agi/animations/B/frame_038_delay-0.01s.png" id="137_beysk"] -[ext_resource type="Texture2D" uid="uid://dtfkcsfvthvq2" path="res://src/enemy/enemy_types/09. Agi/animations/L/frame_170_delay-0.01s.png" id="137_ldc18"] -[ext_resource type="Texture2D" uid="uid://wtw68eu5tgur" path="res://src/enemy/enemy_types/09. Agi/animations/L/frame_171_delay-0.01s.png" id="138_6jw4y"] -[ext_resource type="Texture2D" uid="uid://c7x4h8taadc7q" path="res://src/enemy/enemy_types/09. Agi/animations/B/frame_039_delay-0.01s.png" id="138_g8v1t"] -[ext_resource type="Texture2D" uid="uid://cuh0nnnr8fh5n" path="res://src/enemy/enemy_types/09. Agi/animations/B/frame_040_delay-0.01s.png" id="139_4lfcg"] -[ext_resource type="Texture2D" uid="uid://8uf4b55dgg3p" path="res://src/enemy/enemy_types/09. Agi/animations/L/frame_172_delay-0.01s.png" id="139_wtfow"] -[ext_resource type="Texture2D" uid="uid://b2l5gt2n63x06" path="res://src/enemy/enemy_types/09. Agi/animations/L/frame_173_delay-0.01s.png" id="140_rixoi"] -[ext_resource type="Texture2D" uid="uid://bf5kdfwilr6ya" path="res://src/enemy/enemy_types/09. Agi/animations/B/frame_041_delay-0.01s.png" id="140_wa66a"] -[ext_resource type="Texture2D" uid="uid://ciqux6oks7o8j" path="res://src/enemy/enemy_types/09. Agi/animations/L/frame_174_delay-0.01s.png" id="141_3intm"] -[ext_resource type="Texture2D" uid="uid://dyiwhim3wvswi" path="res://src/enemy/enemy_types/09. Agi/animations/B/frame_042_delay-0.01s.png" id="141_ivxe0"] -[ext_resource type="Texture2D" uid="uid://dumik4dqkhhpb" path="res://src/enemy/enemy_types/09. Agi/animations/R/frame_225_delay-0.01s.png" id="142_ykxca"] -[ext_resource type="Texture2D" uid="uid://b4evqkmluj3rc" path="res://src/enemy/enemy_types/09. Agi/animations/R/frame_226_delay-0.01s.png" id="143_d3g7j"] -[ext_resource type="Texture2D" uid="uid://hschg5j1rra3" path="res://src/enemy/enemy_types/09. Agi/animations/R/frame_227_delay-0.01s.png" id="144_bvb4q"] -[ext_resource type="Texture2D" uid="uid://dgsvh6frtvy06" path="res://src/enemy/enemy_types/09. Agi/animations/R/frame_228_delay-0.01s.png" id="145_ya7vi"] -[ext_resource type="Texture2D" uid="uid://rt7ouk1rgl52" path="res://src/enemy/enemy_types/09. Agi/animations/R/frame_229_delay-0.01s.png" id="146_32bhs"] -[ext_resource type="Texture2D" uid="uid://y1u43bt8wh7b" path="res://src/enemy/enemy_types/09. Agi/animations/R/frame_230_delay-0.01s.png" id="147_xo3nv"] -[ext_resource type="Texture2D" uid="uid://d1ts7mik0ep1q" path="res://src/enemy/enemy_types/09. Agi/animations/R/frame_231_delay-0.01s.png" id="148_jwlyb"] -[ext_resource type="Texture2D" uid="uid://gi3515vff0de" path="res://src/enemy/enemy_types/09. Agi/animations/R/frame_232_delay-0.01s.png" id="149_wolyq"] -[ext_resource type="Texture2D" uid="uid://cqa88kdtkglo6" path="res://src/enemy/enemy_types/09. Agi/animations/R/frame_233_delay-0.01s.png" id="150_g58wf"] -[ext_resource type="Texture2D" uid="uid://cxm7i3fswovkk" path="res://src/enemy/enemy_types/09. Agi/animations/R/frame_234_delay-0.01s.png" id="151_j6tb3"] -[ext_resource type="Texture2D" uid="uid://bvy58646btxbp" path="res://src/enemy/enemy_types/09. Agi/animations/R/frame_235_delay-0.01s.png" id="152_6sc67"] -[ext_resource type="Texture2D" uid="uid://dhbf3u2g2aib0" path="res://src/enemy/enemy_types/09. Agi/animations/R/frame_236_delay-0.01s.png" id="153_0ro8w"] -[ext_resource type="Texture2D" uid="uid://djt13deq5d27" path="res://src/enemy/enemy_types/09. Agi/animations/R/frame_237_delay-0.01s.png" id="154_7vsq8"] -[ext_resource type="Texture2D" uid="uid://d0mlepj1qv4hu" path="res://src/enemy/enemy_types/09. Agi/animations/R/frame_238_delay-0.01s.png" id="155_ei26s"] -[ext_resource type="Texture2D" uid="uid://bciw0pvnr23db" path="res://src/enemy/enemy_types/09. Agi/animations/R/frame_239_delay-0.01s.png" id="156_r843w"] -[ext_resource type="Texture2D" uid="uid://dseairg26t3nh" path="res://src/enemy/enemy_types/09. Agi/animations/R/frame_240_delay-0.01s.png" id="157_s8g0h"] -[ext_resource type="Texture2D" uid="uid://datckrqdgyref" path="res://src/enemy/enemy_types/09. Agi/animations/F/frame_109_delay-0.01s.png" id="174_ckqrb"] -[ext_resource type="Texture2D" uid="uid://dmblermv36q1t" path="res://src/enemy/enemy_types/09. Agi/animations/F/frame_110_delay-0.01s.png" id="175_j40sl"] -[ext_resource type="Texture2D" uid="uid://dyky52ey50hcm" path="res://src/enemy/enemy_types/09. Agi/animations/F/frame_111_delay-0.01s.png" id="176_dmbat"] -[ext_resource type="Texture2D" uid="uid://cjfwaiov7dfv4" path="res://src/enemy/enemy_types/09. Agi/animations/F/frame_112_delay-0.01s.png" id="177_2imk7"] -[ext_resource type="Texture2D" uid="uid://ygacn2kh5usi" path="res://src/enemy/enemy_types/09. Agi/animations/F/frame_113_delay-0.01s.png" id="178_kv2h5"] -[ext_resource type="Texture2D" uid="uid://ma2exdd7lsx2" path="res://src/enemy/enemy_types/09. Agi/animations/F/frame_114_delay-0.01s.png" id="179_m5jct"] -[ext_resource type="Texture2D" uid="uid://bema272sctkq" path="res://src/enemy/enemy_types/09. Agi/animations/F/frame_115_delay-0.01s.png" id="180_62pw4"] -[ext_resource type="Texture2D" uid="uid://ekdq36n4midf" path="res://src/enemy/enemy_types/09. Agi/animations/F/frame_116_delay-0.01s.png" id="181_c2cpd"] -[ext_resource type="Texture2D" uid="uid://dl3cy1b6biwct" path="res://src/enemy/enemy_types/09. Agi/animations/F/frame_117_delay-0.01s.png" id="182_peewm"] -[ext_resource type="Texture2D" uid="uid://cqcm51c73r7h5" path="res://src/enemy/enemy_types/09. Agi/animations/F/frame_118_delay-0.01s.png" id="183_j0nsu"] -[ext_resource type="Texture2D" uid="uid://b02v3vsyfwpc8" path="res://src/enemy/enemy_types/09. Agi/animations/F/frame_119_delay-0.01s.png" id="184_56j0e"] -[ext_resource type="Texture2D" uid="uid://cq83mf2e35530" path="res://src/enemy/enemy_types/09. Agi/animations/F/frame_120_delay-0.01s.png" id="185_r6e3v"] -[ext_resource type="Texture2D" uid="uid://b8l2afj1ubc73" path="res://src/enemy/enemy_types/09. Agi/animations/F/frame_121_delay-0.01s.png" id="186_ejp8h"] -[ext_resource type="Texture2D" uid="uid://cvwa4suri4atg" path="res://src/enemy/enemy_types/09. Agi/animations/F/frame_122_delay-0.01s.png" id="187_fmvcg"] -[ext_resource type="Texture2D" uid="uid://8k2xymdmr23c" path="res://src/enemy/enemy_types/09. Agi/animations/F/frame_123_delay-0.01s.png" id="188_okbif"] -[ext_resource type="Texture2D" uid="uid://d2q55rgk0dn33" path="res://src/enemy/enemy_types/09. Agi/animations/F/frame_124_delay-0.01s.png" id="189_dus11"] -[ext_resource type="Texture2D" uid="uid://t8xslvjd50jr" path="res://src/enemy/enemy_types/09. Agi/animations/F/frame_125_delay-0.01s.png" id="190_2uf0v"] -[ext_resource type="Texture2D" uid="uid://cwr0qaoicsfhd" path="res://src/enemy/enemy_types/09. Agi/animations/F/frame_126_delay-0.01s.png" id="191_4bhb7"] -[ext_resource type="Texture2D" uid="uid://dk720vybwl7jw" path="res://src/enemy/enemy_types/09. Agi/animations/F/frame_127_delay-0.01s.png" id="192_7yosr"] -[ext_resource type="Texture2D" uid="uid://denl6aqhmvhcj" path="res://src/enemy/enemy_types/09. Agi/animations/F/frame_128_delay-0.01s.png" id="193_bemmb"] -[ext_resource type="Texture2D" uid="uid://dumoyrl88pwvw" path="res://src/enemy/enemy_types/09. Agi/animations/F/frame_129_delay-0.01s.png" id="194_innxq"] -[ext_resource type="Texture2D" uid="uid://j84hkbc3ct0r" path="res://src/enemy/enemy_types/09. Agi/animations/F/frame_130_delay-0.01s.png" id="195_n00h1"] -[ext_resource type="Texture2D" uid="uid://lu8oe4o804nn" path="res://src/enemy/enemy_types/09. Agi/animations/F/frame_131_delay-0.01s.png" id="196_tpai1"] -[ext_resource type="Texture2D" uid="uid://djub3mqokrsah" path="res://src/enemy/enemy_types/09. Agi/animations/B/frame_043_delay-0.01s.png" id="197_o2lxl"] -[ext_resource type="Texture2D" uid="uid://shkr17411db1" path="res://src/enemy/enemy_types/09. Agi/animations/L/frame_175_delay-0.01s.png" id="197_xnob3"] -[ext_resource type="Texture2D" uid="uid://bswigd6i6imr6" path="res://src/enemy/enemy_types/09. Agi/animations/B/frame_044_delay-0.01s.png" id="198_lxycn"] -[ext_resource type="Texture2D" uid="uid://dmv5makdnpipr" path="res://src/enemy/enemy_types/09. Agi/animations/L/frame_176_delay-0.01s.png" id="198_tofhe"] -[ext_resource type="Texture2D" uid="uid://xye8vid2gwu7" path="res://src/enemy/enemy_types/09. Agi/animations/B/frame_045_delay-0.01s.png" id="199_dtyon"] -[ext_resource type="Texture2D" uid="uid://dsavkyagjpwb8" path="res://src/enemy/enemy_types/09. Agi/animations/L/frame_177_delay-0.01s.png" id="199_h8nj4"] -[ext_resource type="Texture2D" uid="uid://ijh2fljvnm71" path="res://src/enemy/enemy_types/09. Agi/animations/B/frame_046_delay-0.01s.png" id="200_6c2b5"] -[ext_resource type="Texture2D" uid="uid://dtsebs5m1taqa" path="res://src/enemy/enemy_types/09. Agi/animations/L/frame_178_delay-0.01s.png" id="200_kg2p7"] -[ext_resource type="Texture2D" uid="uid://d0w8sjn85ag4l" path="res://src/enemy/enemy_types/09. Agi/animations/B/frame_047_delay-0.01s.png" id="201_jd3xu"] -[ext_resource type="Texture2D" uid="uid://cbm356g56b6vm" path="res://src/enemy/enemy_types/09. Agi/animations/L/frame_179_delay-0.01s.png" id="201_x0ep5"] -[ext_resource type="Texture2D" uid="uid://byfv8wk0tpvx6" path="res://src/enemy/enemy_types/09. Agi/animations/B/frame_048_delay-0.01s.png" id="202_20ds5"] -[ext_resource type="Texture2D" uid="uid://cj1ycugfr8nnk" path="res://src/enemy/enemy_types/09. Agi/animations/L/frame_180_delay-0.01s.png" id="202_gmpd6"] -[ext_resource type="Texture2D" uid="uid://tjsbavwakv4p" path="res://src/enemy/enemy_types/09. Agi/animations/B/frame_049_delay-0.01s.png" id="203_4oldt"] -[ext_resource type="Texture2D" uid="uid://dhrhk2tdh3k3b" path="res://src/enemy/enemy_types/09. Agi/animations/L/frame_181_delay-0.01s.png" id="203_idk3x"] -[ext_resource type="Texture2D" uid="uid://7m33c1vq8wpd" path="res://src/enemy/enemy_types/09. Agi/animations/B/frame_050_delay-0.01s.png" id="204_dxfso"] -[ext_resource type="Texture2D" uid="uid://dnfq6l1rd5x1t" path="res://src/enemy/enemy_types/09. Agi/animations/L/frame_182_delay-0.01s.png" id="204_pq4re"] -[ext_resource type="Texture2D" uid="uid://ca0hfma48ftxs" path="res://src/enemy/enemy_types/09. Agi/animations/L/frame_183_delay-0.01s.png" id="205_o5mvi"] -[ext_resource type="Texture2D" uid="uid://yonawivlsxw8" path="res://src/enemy/enemy_types/09. Agi/animations/B/frame_051_delay-0.01s.png" id="205_semud"] -[ext_resource type="Texture2D" uid="uid://c32fa5oa5mqo" path="res://src/enemy/enemy_types/09. Agi/animations/L/frame_184_delay-0.01s.png" id="206_b6mqd"] -[ext_resource type="Texture2D" uid="uid://upubey1mdv1j" path="res://src/enemy/enemy_types/09. Agi/animations/B/frame_052_delay-0.01s.png" id="206_kp60x"] -[ext_resource type="Texture2D" uid="uid://5px7itdge424" path="res://src/enemy/enemy_types/09. Agi/animations/L/frame_185_delay-0.01s.png" id="207_u0g5s"] -[ext_resource type="Texture2D" uid="uid://cqivol75efl7e" path="res://src/enemy/enemy_types/09. Agi/animations/B/frame_053_delay-0.01s.png" id="207_xt1jb"] -[ext_resource type="Texture2D" uid="uid://bw8wp2eykxomv" path="res://src/enemy/enemy_types/09. Agi/animations/B/frame_054_delay-0.01s.png" id="208_ah165"] -[ext_resource type="Texture2D" uid="uid://dybcepymmbh8h" path="res://src/enemy/enemy_types/09. Agi/animations/L/frame_186_delay-0.01s.png" id="208_vur8v"] -[ext_resource type="Texture2D" uid="uid://cleq8oadbkrln" path="res://src/enemy/enemy_types/09. Agi/animations/L/frame_187_delay-0.01s.png" id="209_pa2sb"] -[ext_resource type="Texture2D" uid="uid://cer3jbxufrjh6" path="res://src/enemy/enemy_types/09. Agi/animations/B/frame_055_delay-0.01s.png" id="209_vc2t3"] -[ext_resource type="Texture2D" uid="uid://coo801128p5qu" path="res://src/enemy/enemy_types/09. Agi/animations/B/frame_056_delay-0.01s.png" id="210_3stsn"] -[ext_resource type="Texture2D" uid="uid://dcul2g1n7878" path="res://src/enemy/enemy_types/09. Agi/animations/L/frame_188_delay-0.01s.png" id="210_dc327"] -[ext_resource type="Texture2D" uid="uid://4ak4jtdlncp3" path="res://src/enemy/enemy_types/09. Agi/animations/L/frame_189_delay-0.01s.png" id="211_5y02v"] -[ext_resource type="Texture2D" uid="uid://dcnwq7i301wi1" path="res://src/enemy/enemy_types/09. Agi/animations/B/frame_057_delay-0.01s.png" id="211_pj3h5"] -[ext_resource type="Texture2D" uid="uid://ba4n5wqsce0it" path="res://src/enemy/enemy_types/09. Agi/animations/B/frame_058_delay-0.01s.png" id="212_ffuh2"] -[ext_resource type="Texture2D" uid="uid://bunn2ruw20j7n" path="res://src/enemy/enemy_types/09. Agi/animations/L/frame_190_delay-0.01s.png" id="212_mm0yx"] -[ext_resource type="Texture2D" uid="uid://i4lvorh314wg" path="res://src/enemy/enemy_types/09. Agi/animations/B/frame_059_delay-0.01s.png" id="213_8umuq"] -[ext_resource type="Texture2D" uid="uid://l8xellneih4n" path="res://src/enemy/enemy_types/09. Agi/animations/L/frame_191_delay-0.01s.png" id="213_x32v4"] -[ext_resource type="Texture2D" uid="uid://cd7nn88sgtpjk" path="res://src/enemy/enemy_types/09. Agi/animations/B/frame_060_delay-0.01s.png" id="214_aakiv"] -[ext_resource type="Texture2D" uid="uid://7l7mnj87hsf7" path="res://src/enemy/enemy_types/09. Agi/animations/L/frame_192_delay-0.01s.png" id="214_uuaia"] -[ext_resource type="Texture2D" uid="uid://dd88ngps7r81i" path="res://src/enemy/enemy_types/09. Agi/animations/L/frame_193_delay-0.01s.png" id="215_8d34m"] -[ext_resource type="Texture2D" uid="uid://dva8p0spra58" path="res://src/enemy/enemy_types/09. Agi/animations/B/frame_061_delay-0.01s.png" id="215_xsh2u"] -[ext_resource type="Texture2D" uid="uid://d1xbn8exh5tb1" path="res://src/enemy/enemy_types/09. Agi/animations/B/frame_062_delay-0.01s.png" id="216_ke7fl"] -[ext_resource type="Texture2D" uid="uid://dvumdq0ybrehc" path="res://src/enemy/enemy_types/09. Agi/animations/L/frame_194_delay-0.01s.png" id="216_sicjx"] -[ext_resource type="Texture2D" uid="uid://bjfnwipb0hn65" path="res://src/enemy/enemy_types/09. Agi/animations/B/frame_063_delay-0.01s.png" id="217_jgx2a"] -[ext_resource type="Texture2D" uid="uid://dr1uyxupc5rvd" path="res://src/enemy/enemy_types/09. Agi/animations/L/frame_195_delay-0.01s.png" id="217_pqyu2"] -[ext_resource type="Texture2D" uid="uid://ctrgsiskd1frx" path="res://src/enemy/enemy_types/09. Agi/animations/B/frame_064_delay-0.01s.png" id="218_1hgah"] -[ext_resource type="Texture2D" uid="uid://bapkchbtjk41u" path="res://src/enemy/enemy_types/09. Agi/animations/L/frame_196_delay-0.01s.png" id="218_wwhtm"] -[ext_resource type="Texture2D" uid="uid://dyx4jxs62gfu2" path="res://src/enemy/enemy_types/09. Agi/animations/L/frame_197_delay-0.01s.png" id="219_3k8j0"] -[ext_resource type="Texture2D" uid="uid://cwi6ydmtmaddp" path="res://src/enemy/enemy_types/09. Agi/animations/B/frame_065_delay-0.01s.png" id="219_f688p"] -[ext_resource type="Texture2D" uid="uid://buajw8hhulu81" path="res://src/enemy/enemy_types/09. Agi/animations/R/frame_241_delay-0.01s.png" id="220_5w41u"] -[ext_resource type="Texture2D" uid="uid://23fgouybahk5" path="res://src/enemy/enemy_types/09. Agi/animations/R/frame_242_delay-0.01s.png" id="221_o2lxl"] -[ext_resource type="Texture2D" uid="uid://bc4kxs87tyeyu" path="res://src/enemy/enemy_types/09. Agi/animations/R/frame_243_delay-0.01s.png" id="222_lxycn"] -[ext_resource type="Texture2D" uid="uid://bfvgo3rheqmla" path="res://src/enemy/enemy_types/09. Agi/animations/R/frame_244_delay-0.01s.png" id="223_dtyon"] -[ext_resource type="Texture2D" uid="uid://dwhgget8tysjl" path="res://src/enemy/enemy_types/09. Agi/animations/R/frame_245_delay-0.01s.png" id="224_6c2b5"] -[ext_resource type="Texture2D" uid="uid://dhcg51m0k8xe2" path="res://src/enemy/enemy_types/09. Agi/animations/R/frame_246_delay-0.01s.png" id="225_jd3xu"] -[ext_resource type="Texture2D" uid="uid://6d48nco64uiv" path="res://src/enemy/enemy_types/09. Agi/animations/R/frame_247_delay-0.01s.png" id="226_20ds5"] -[ext_resource type="Texture2D" uid="uid://4u571pswobrj" path="res://src/enemy/enemy_types/09. Agi/animations/R/frame_248_delay-0.01s.png" id="227_4oldt"] -[ext_resource type="Texture2D" uid="uid://b2ewc48b3q7ms" path="res://src/enemy/enemy_types/09. Agi/animations/R/frame_249_delay-0.01s.png" id="228_dxfso"] -[ext_resource type="Texture2D" uid="uid://bnnbcqeiwafbw" path="res://src/enemy/enemy_types/09. Agi/animations/R/frame_250_delay-0.01s.png" id="229_semud"] -[ext_resource type="Texture2D" uid="uid://b1qvi7gl40tic" path="res://src/enemy/enemy_types/09. Agi/animations/R/frame_251_delay-0.01s.png" id="230_kp60x"] -[ext_resource type="Texture2D" uid="uid://dph6c5ntgx4ug" path="res://src/enemy/enemy_types/09. Agi/animations/R/frame_252_delay-0.01s.png" id="231_xt1jb"] -[ext_resource type="Texture2D" uid="uid://ccbkf3stle5s8" path="res://src/enemy/enemy_types/09. Agi/animations/R/frame_253_delay-0.01s.png" id="232_ah165"] -[ext_resource type="Texture2D" uid="uid://2aoimief7jg1" path="res://src/enemy/enemy_types/09. Agi/animations/R/frame_254_delay-0.01s.png" id="233_vc2t3"] -[ext_resource type="Texture2D" uid="uid://bo3yooc63cikn" path="res://src/enemy/enemy_types/09. Agi/animations/R/frame_255_delay-0.01s.png" id="234_3stsn"] -[ext_resource type="Texture2D" uid="uid://cost00qd68dlb" path="res://src/enemy/enemy_types/09. Agi/animations/R/frame_256_delay-0.01s.png" id="235_pj3h5"] -[ext_resource type="Texture2D" uid="uid://8bq8wrs3ttcv" path="res://src/enemy/enemy_types/09. Agi/animations/R/frame_257_delay-0.01s.png" id="236_ffuh2"] -[ext_resource type="Texture2D" uid="uid://db4l2228uovc8" path="res://src/enemy/enemy_types/09. Agi/animations/R/frame_258_delay-0.01s.png" id="237_8umuq"] -[ext_resource type="Texture2D" uid="uid://itfq5312pt6d" path="res://src/enemy/enemy_types/09. Agi/animations/R/frame_259_delay-0.01s.png" id="238_aakiv"] -[ext_resource type="Texture2D" uid="uid://dx13yhik7lvmk" path="res://src/enemy/enemy_types/09. Agi/animations/R/frame_260_delay-0.01s.png" id="239_xsh2u"] -[ext_resource type="Texture2D" uid="uid://bntlmlpghyrh6" path="res://src/enemy/enemy_types/09. Agi/animations/R/frame_261_delay-0.01s.png" id="240_ke7fl"] -[ext_resource type="Texture2D" uid="uid://d3q4ocfb1g6dt" path="res://src/enemy/enemy_types/09. Agi/animations/R/frame_262_delay-0.01s.png" id="241_jgx2a"] -[ext_resource type="Texture2D" uid="uid://bo3atbyq7k5tv" path="res://src/enemy/enemy_types/09. Agi/animations/R/frame_263_delay-0.01s.png" id="242_1hgah"] -[ext_resource type="Texture2D" uid="uid://bg0mm60ln6kye" path="res://src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_264_delay-0.01s.png" id="266_lsphj"] -[ext_resource type="Texture2D" uid="uid://gkldknqv8n34" path="res://src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_265_delay-0.01s.png" id="267_y6p5p"] -[ext_resource type="Texture2D" uid="uid://cy2cqucagmjlb" path="res://src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_266_delay-0.01s.png" id="268_f45wt"] -[ext_resource type="Texture2D" uid="uid://jegmc4jpfx20" path="res://src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_267_delay-0.01s.png" id="269_tw60d"] -[ext_resource type="Texture2D" uid="uid://dcduubuqlopkh" path="res://src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_268_delay-0.01s.png" id="270_kvft6"] -[ext_resource type="Texture2D" uid="uid://dnmper7kajww6" path="res://src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_269_delay-0.01s.png" id="271_1s7aa"] -[ext_resource type="Texture2D" uid="uid://cftqjy2iewh6v" path="res://src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_270_delay-0.01s.png" id="272_h7020"] -[ext_resource type="Texture2D" uid="uid://ddm7abdc3c3jv" path="res://src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_271_delay-0.01s.png" id="273_dd482"] -[ext_resource type="Texture2D" uid="uid://bsnt0i55haapp" path="res://src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_272_delay-0.01s.png" id="274_pv7h1"] -[ext_resource type="Texture2D" uid="uid://cqg78lak7t7h7" path="res://src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_273_delay-0.01s.png" id="275_ggybm"] -[ext_resource type="Texture2D" uid="uid://cftgstb4h04to" path="res://src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_274_delay-0.01s.png" id="276_h223i"] -[ext_resource type="Texture2D" uid="uid://dy75670e11euv" path="res://src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_275_delay-0.01s.png" id="277_mvc8k"] -[ext_resource type="Texture2D" uid="uid://cmc88yx6ecg4q" path="res://src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_276_delay-0.01s.png" id="278_d3off"] -[ext_resource type="Texture2D" uid="uid://cjo7h07ghnrcy" path="res://src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_277_delay-0.01s.png" id="279_kp848"] -[ext_resource type="Texture2D" uid="uid://croke2fk5h86j" path="res://src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_278_delay-0.01s.png" id="280_kaufo"] -[ext_resource type="Texture2D" uid="uid://cylg1j3dl7clt" path="res://src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_279_delay-0.01s.png" id="281_ghcov"] -[ext_resource type="Texture2D" uid="uid://d1516ajjjtb74" path="res://src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_280_delay-0.01s.png" id="282_pj33i"] -[ext_resource type="Texture2D" uid="uid://cm2guwf4kf2y2" path="res://src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_281_delay-0.01s.png" id="283_86iow"] -[ext_resource type="Texture2D" uid="uid://cf6cux8pu8sa1" path="res://src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_282_delay-0.01s.png" id="284_pgeg0"] -[ext_resource type="Texture2D" uid="uid://de887ptuiv4b4" path="res://src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_283_delay-0.01s.png" id="285_wmf3v"] -[ext_resource type="Texture2D" uid="uid://cds6m86b2psup" path="res://src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_284_delay-0.01s.png" id="286_yjjil"] -[ext_resource type="Texture2D" uid="uid://ckxc5ewc7krgy" path="res://src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_285_delay-0.01s.png" id="287_ds6px"] -[ext_resource type="Texture2D" uid="uid://h6b3iv4a33ge" path="res://src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_286_delay-0.01s.png" id="288_skw6r"] -[ext_resource type="Texture2D" uid="uid://brjhwakmssh2v" path="res://src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_287_delay-0.01s.png" id="289_ukoob"] -[ext_resource type="Texture2D" uid="uid://dw2lcc3f4d8ui" path="res://src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_288_delay-0.01s.png" id="290_x6o72"] -[ext_resource type="Texture2D" uid="uid://cqb1mev2pfmxg" path="res://src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_289_delay-0.01s.png" id="291_cbeiy"] -[ext_resource type="Texture2D" uid="uid://beyjeetyl0mxs" path="res://src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_290_delay-0.01s.png" id="292_1kvhg"] -[ext_resource type="Texture2D" uid="uid://dmied1q41sfm2" path="res://src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_291_delay-0.01s.png" id="293_05ua5"] -[ext_resource type="Texture2D" uid="uid://h4t5esklq6f6" path="res://src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_292_delay-0.01s.png" id="294_aorbc"] -[ext_resource type="Texture2D" uid="uid://ci6vh7iirr8pq" path="res://src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_293_delay-0.01s.png" id="295_o7jn3"] -[ext_resource type="Texture2D" uid="uid://qsx14k5bd1sx" path="res://src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_294_delay-0.01s.png" id="296_e6gd8"] -[ext_resource type="Texture2D" uid="uid://hf2i36hdttrt" path="res://src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_295_delay-0.01s.png" id="297_fwypy"] -[ext_resource type="Texture2D" uid="uid://vnwlj8wbhu45" path="res://src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_296_delay-0.01s.png" id="298_wtgla"] -[ext_resource type="Texture2D" uid="uid://15q8e1mwoy8" path="res://src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_297_delay-0.01s.png" id="299_5r5bq"] -[ext_resource type="Texture2D" uid="uid://cbqc5hmq718p4" path="res://src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_298_delay-0.01s.png" id="300_bbjsu"] -[ext_resource type="Texture2D" uid="uid://bmurdx0s03rus" path="res://src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_299_delay-0.01s.png" id="301_onfdr"] -[ext_resource type="Texture2D" uid="uid://dt7rjtc6cygua" path="res://src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_300_delay-0.01s.png" id="302_gof6h"] -[ext_resource type="Texture2D" uid="uid://ebmahc0et0uf" path="res://src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_301_delay-0.01s.png" id="303_bpyx6"] -[ext_resource type="Texture2D" uid="uid://cb4ulrnxegfd1" path="res://src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_302_delay-0.01s.png" id="304_igvfo"] -[ext_resource type="Texture2D" uid="uid://d13kp0hmihf0s" path="res://src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_303_delay-0.01s.png" id="305_o51u6"] -[ext_resource type="Texture2D" uid="uid://dqe21r1qljmdl" path="res://src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_304_delay-0.01s.png" id="306_iwq13"] -[ext_resource type="Texture2D" uid="uid://bgrrfp4car5pl" path="res://src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_305_delay-0.01s.png" id="307_vf1wu"] -[ext_resource type="Texture2D" uid="uid://br6be64txnp6e" path="res://src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_306_delay-0.01s.png" id="308_bu5u4"] -[ext_resource type="Texture2D" uid="uid://cpmsi4om5ax3s" path="res://src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_307_delay-0.01s.png" id="309_f3ajx"] -[ext_resource type="Texture2D" uid="uid://c3g0x5tdf78pe" path="res://src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_308_delay-0.01s.png" id="310_sywmp"] -[ext_resource type="Texture2D" uid="uid://erk6m62oylcc" path="res://src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_309_delay-0.01s.png" id="311_lxtc4"] -[ext_resource type="Texture2D" uid="uid://df02o1yylula8" path="res://src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_310_delay-0.01s.png" id="312_35hj7"] -[ext_resource type="Texture2D" uid="uid://dpuoyrffq8l1f" path="res://src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_311_delay-0.01s.png" id="313_a06mn"] -[ext_resource type="Texture2D" uid="uid://bw520j2fbenqx" path="res://src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_312_delay-0.01s.png" id="314_ytje7"] -[ext_resource type="Texture2D" uid="uid://c1wtdiv7cv61x" path="res://src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_313_delay-0.01s.png" id="315_24lnw"] -[ext_resource type="Texture2D" uid="uid://dhmx8xkllsk3" path="res://src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_314_delay-0.01s.png" id="316_qxnhd"] -[ext_resource type="Texture2D" uid="uid://bncjb7job7rim" path="res://src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_315_delay-0.01s.png" id="317_fj18i"] -[ext_resource type="Texture2D" uid="uid://diueunsg4spc3" path="res://src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_316_delay-0.01s.png" id="318_ptard"] -[ext_resource type="Texture2D" uid="uid://brsdd7xt3c606" path="res://src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_317_delay-0.01s.png" id="319_pukii"] -[ext_resource type="Texture2D" uid="uid://by2u0d5sqqpml" path="res://src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_318_delay-0.01s.png" id="320_jwtsj"] -[ext_resource type="Texture2D" uid="uid://j5m4yxs5ylpo" path="res://src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_319_delay-0.01s.png" id="321_vmn50"] -[ext_resource type="Texture2D" uid="uid://cyd6norqkaq5g" path="res://src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_320_delay-0.01s.png" id="322_rfa4g"] -[ext_resource type="Texture2D" uid="uid://dye83j82gbfxm" path="res://src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_321_delay-0.01s.png" id="323_1e78n"] -[ext_resource type="Texture2D" uid="uid://bx7mgwtc166jt" path="res://src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_322_delay-0.01s.png" id="324_1sdr8"] -[ext_resource type="Texture2D" uid="uid://cfpgfcbh7p2qu" path="res://src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_323_delay-0.01s.png" id="325_svnje"] -[ext_resource type="Texture2D" uid="uid://dlp8a5mucoadb" path="res://src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_324_delay-0.01s.png" id="326_6m46o"] -[ext_resource type="Texture2D" uid="uid://071wf8icu634" path="res://src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_325_delay-0.01s.png" id="327_m8hpy"] -[ext_resource type="Texture2D" uid="uid://37q4jgin3k1a" path="res://src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_326_delay-0.01s.png" id="328_350sx"] -[ext_resource type="Texture2D" uid="uid://5f115symdsmg" path="res://src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_327_delay-0.01s.png" id="329_72hkg"] -[ext_resource type="Texture2D" uid="uid://b6swecrctxcgy" path="res://src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_328_delay-0.01s.png" id="330_at3qg"] -[ext_resource type="Texture2D" uid="uid://b6batijegfqfe" path="res://src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_329_delay-0.01s.png" id="331_610d6"] +[ext_resource type="Texture2D" uid="uid://dw1841vsuw75d" path="res://src/enemy/enemy_types/09. Agni/animations/B/frame_001_delay-0.01s.png" id="3_8wyws"] +[ext_resource type="Texture2D" uid="uid://d11ep3xldfmpw" path="res://src/enemy/enemy_types/09. Agni/animations/F/frame_067_delay-0.01s.png" id="3_mmosy"] +[ext_resource type="Texture2D" uid="uid://omx4r41xjik7" path="res://src/enemy/enemy_types/09. Agni/animations/B/frame_002_delay-0.01s.png" id="4_kuord"] +[ext_resource type="Texture2D" uid="uid://b5nxnpkd0ua31" path="res://src/enemy/enemy_types/09. Agni/animations/F/frame_068_delay-0.01s.png" id="4_nndw7"] +[ext_resource type="Texture2D" uid="uid://xcsacohbrrm6" path="res://src/enemy/enemy_types/09. Agni/animations/F/frame_069_delay-0.01s.png" id="5_k4gqr"] +[ext_resource type="Texture2D" uid="uid://d2liuqexudies" path="res://src/enemy/enemy_types/09. Agni/animations/B/frame_003_delay-0.01s.png" id="5_obx1n"] +[ext_resource type="Texture2D" uid="uid://3l1v3jcokipc" path="res://src/enemy/enemy_types/09. Agni/animations/B/frame_004_delay-0.01s.png" id="6_8l7g8"] +[ext_resource type="Texture2D" uid="uid://co7t2phmmlon6" path="res://src/enemy/enemy_types/09. Agni/animations/F/frame_070_delay-0.01s.png" id="6_x75vs"] +[ext_resource type="Texture2D" uid="uid://c03lhbb3nkov1" path="res://src/enemy/enemy_types/09. Agni/animations/B/frame_005_delay-0.01s.png" id="7_aq5x0"] +[ext_resource type="Texture2D" uid="uid://gq50rdbmi7sk" path="res://src/enemy/enemy_types/09. Agni/animations/F/frame_071_delay-0.01s.png" id="7_g86ru"] +[ext_resource type="Texture2D" uid="uid://bj4n58bpwnb0" path="res://src/enemy/enemy_types/09. Agni/animations/B/frame_006_delay-0.01s.png" id="8_m8e8t"] +[ext_resource type="Texture2D" uid="uid://dmcyc2jqdohid" path="res://src/enemy/enemy_types/09. Agni/animations/F/frame_072_delay-0.01s.png" id="8_tosmb"] +[ext_resource type="Texture2D" uid="uid://4csp7iopj1h8" path="res://src/enemy/enemy_types/09. Agni/animations/F/frame_073_delay-0.01s.png" id="9_m3hmy"] +[ext_resource type="Texture2D" uid="uid://dmjxydw2xj1ci" path="res://src/enemy/enemy_types/09. Agni/animations/B/frame_007_delay-0.01s.png" id="9_nhwh3"] +[ext_resource type="Texture2D" uid="uid://c2n52kxmhd0vb" path="res://src/enemy/enemy_types/09. Agni/animations/F/frame_074_delay-0.01s.png" id="10_5t1x1"] +[ext_resource type="Texture2D" uid="uid://cr0t3wcwk6oxe" path="res://src/enemy/enemy_types/09. Agni/animations/B/frame_008_delay-0.01s.png" id="10_abn8u"] +[ext_resource type="Texture2D" uid="uid://dlkxr7kr6vb6j" path="res://src/enemy/enemy_types/09. Agni/animations/F/frame_075_delay-0.01s.png" id="11_amu76"] +[ext_resource type="Texture2D" uid="uid://c3fqvh0nykviw" path="res://src/enemy/enemy_types/09. Agni/animations/B/frame_009_delay-0.01s.png" id="11_lr3oj"] +[ext_resource type="Texture2D" uid="uid://c5esujdn8b37u" path="res://src/enemy/enemy_types/09. Agni/animations/B/frame_010_delay-0.01s.png" id="12_88ogm"] +[ext_resource type="Texture2D" uid="uid://dfmbe44w8hqlg" path="res://src/enemy/enemy_types/09. Agni/animations/F/frame_076_delay-0.01s.png" id="12_s1efa"] +[ext_resource type="Texture2D" uid="uid://do0irjwtnolk6" path="res://src/enemy/enemy_types/09. Agni/animations/B/frame_011_delay-0.01s.png" id="13_2hodw"] +[ext_resource type="Texture2D" uid="uid://c1v3bfx4ucesp" path="res://src/enemy/enemy_types/09. Agni/animations/F/frame_077_delay-0.01s.png" id="13_w4ia2"] +[ext_resource type="Texture2D" uid="uid://sv41es0jbpsh" path="res://src/enemy/enemy_types/09. Agni/animations/F/frame_078_delay-0.01s.png" id="14_4fe3j"] +[ext_resource type="Texture2D" uid="uid://3pu7w2vd575y" path="res://src/enemy/enemy_types/09. Agni/animations/B/frame_012_delay-0.01s.png" id="14_vpy0l"] +[ext_resource type="Texture2D" uid="uid://chp1wcndee3th" path="res://src/enemy/enemy_types/09. Agni/animations/F/frame_079_delay-0.01s.png" id="15_3bcni"] +[ext_resource type="Texture2D" uid="uid://c02qdei8b784w" path="res://src/enemy/enemy_types/09. Agni/animations/B/frame_013_delay-0.01s.png" id="15_pk4a8"] +[ext_resource type="Texture2D" uid="uid://fdahurlbi6qo" path="res://src/enemy/enemy_types/09. Agni/animations/F/frame_080_delay-0.01s.png" id="16_cpt54"] +[ext_resource type="Texture2D" uid="uid://ddmgt26w3nxdd" path="res://src/enemy/enemy_types/09. Agni/animations/B/frame_014_delay-0.01s.png" id="16_odqho"] +[ext_resource type="Texture2D" uid="uid://df01ngt250q23" path="res://src/enemy/enemy_types/09. Agni/animations/F/frame_081_delay-0.01s.png" id="17_634a5"] +[ext_resource type="Texture2D" uid="uid://bmq0o2eraq1kv" path="res://src/enemy/enemy_types/09. Agni/animations/B/frame_015_delay-0.01s.png" id="17_g77ba"] +[ext_resource type="Texture2D" uid="uid://doxughhfcyl6j" path="res://src/enemy/enemy_types/09. Agni/animations/F/frame_082_delay-0.01s.png" id="18_i8vqd"] +[ext_resource type="Texture2D" uid="uid://b63idehp7dejv" path="res://src/enemy/enemy_types/09. Agni/animations/B/frame_016_delay-0.01s.png" id="18_vprbf"] +[ext_resource type="Texture2D" uid="uid://dmt178ko0eu3m" path="res://src/enemy/enemy_types/09. Agni/animations/B/frame_017_delay-0.01s.png" id="19_3b4or"] +[ext_resource type="Texture2D" uid="uid://c3sv0vwvn70us" path="res://src/enemy/enemy_types/09. Agni/animations/F/frame_083_delay-0.01s.png" id="19_nri4i"] +[ext_resource type="Texture2D" uid="uid://7xn7dudypkrk" path="res://src/enemy/enemy_types/09. Agni/animations/F/frame_084_delay-0.01s.png" id="20_7vb7t"] +[ext_resource type="Texture2D" uid="uid://5ieleh43ldp0" path="res://src/enemy/enemy_types/09. Agni/animations/B/frame_018_delay-0.01s.png" id="20_lvxxf"] +[ext_resource type="Texture2D" uid="uid://13fl1yuo166w" path="res://src/enemy/enemy_types/09. Agni/animations/F/frame_085_delay-0.01s.png" id="21_1whho"] +[ext_resource type="Texture2D" uid="uid://dre7afnvlxcs3" path="res://src/enemy/enemy_types/09. Agni/animations/B/frame_019_delay-0.01s.png" id="21_h5qpd"] +[ext_resource type="Texture2D" uid="uid://cg07jeigsoqb8" path="res://src/enemy/enemy_types/09. Agni/animations/F/frame_086_delay-0.01s.png" id="22_1n35w"] +[ext_resource type="Texture2D" uid="uid://pr57d2d141yp" path="res://src/enemy/enemy_types/09. Agni/animations/B/frame_020_delay-0.01s.png" id="22_3fp3w"] +[ext_resource type="Texture2D" uid="uid://bboqd2pr26m2n" path="res://src/enemy/enemy_types/09. Agni/animations/B/frame_021_delay-0.01s.png" id="23_ahsj4"] +[ext_resource type="Texture2D" uid="uid://d2n7d6ee17ky4" path="res://src/enemy/enemy_types/09. Agni/animations/F/frame_087_delay-0.01s.png" id="23_ovbe7"] +[ext_resource type="Texture2D" uid="uid://by0ir4chxvpuc" path="res://src/enemy/enemy_types/09. Agni/animations/F/frame_088_delay-0.01s.png" id="24_2nphr"] +[ext_resource type="Texture2D" uid="uid://br0se4irgyk44" path="res://src/enemy/enemy_types/09. Agni/animations/B/frame_022_delay-0.01s.png" id="24_r8w0q"] +[ext_resource type="Texture2D" uid="uid://byul8xbwy665p" path="res://src/enemy/enemy_types/09. Agni/animations/B/frame_023_delay-0.01s.png" id="25_1wi8m"] +[ext_resource type="Texture2D" uid="uid://bck0afl1e0tl4" path="res://src/enemy/enemy_types/09. Agni/animations/F/frame_089_delay-0.01s.png" id="25_x2ty2"] +[ext_resource type="Texture2D" uid="uid://tymvatp8x07l" path="res://src/enemy/enemy_types/09. Agni/animations/B/frame_024_delay-0.01s.png" id="26_cwyyv"] +[ext_resource type="Texture2D" uid="uid://di5p0wuw6gafa" path="res://src/enemy/enemy_types/09. Agni/animations/F/frame_090_delay-0.01s.png" id="26_mhe7a"] +[ext_resource type="Texture2D" uid="uid://cdqv6kmqxcc7a" path="res://src/enemy/enemy_types/09. Agni/animations/B/frame_025_delay-0.01s.png" id="27_5ikd5"] +[ext_resource type="Texture2D" uid="uid://dco80dgth7qdb" path="res://src/enemy/enemy_types/09. Agni/animations/F/frame_091_delay-0.01s.png" id="27_8gad2"] +[ext_resource type="Texture2D" uid="uid://dsc72x737trct" path="res://src/enemy/enemy_types/09. Agni/animations/F/frame_092_delay-0.01s.png" id="28_ieg2v"] +[ext_resource type="Texture2D" uid="uid://oxtmehmd0bs2" path="res://src/enemy/enemy_types/09. Agni/animations/B/frame_026_delay-0.01s.png" id="28_liv8i"] +[ext_resource type="Texture2D" uid="uid://caru2dj6uifo5" path="res://src/enemy/enemy_types/09. Agni/animations/L/frame_132_delay-0.01s.png" id="29_mhe7a"] +[ext_resource type="Texture2D" uid="uid://b2y01wk2x5qox" path="res://src/enemy/enemy_types/09. Agni/animations/L/frame_133_delay-0.01s.png" id="30_8gad2"] +[ext_resource type="Texture2D" uid="uid://ccd8e5ox3064m" path="res://src/enemy/enemy_types/09. Agni/animations/L/frame_134_delay-0.01s.png" id="31_ieg2v"] +[ext_resource type="Texture2D" uid="uid://bfhvwj7n7k0nf" path="res://src/enemy/enemy_types/09. Agni/animations/L/frame_135_delay-0.01s.png" id="32_hbxto"] +[ext_resource type="Texture2D" uid="uid://daj3whlky73jv" path="res://src/enemy/enemy_types/09. Agni/animations/L/frame_136_delay-0.01s.png" id="33_pvxj6"] +[ext_resource type="Texture2D" uid="uid://d0xe20uc6etoa" path="res://src/enemy/enemy_types/09. Agni/animations/L/frame_137_delay-0.01s.png" id="34_qh0ha"] +[ext_resource type="Texture2D" uid="uid://dqtgwld0uapvf" path="res://src/enemy/enemy_types/09. Agni/animations/L/frame_138_delay-0.01s.png" id="35_rpjnp"] +[ext_resource type="Texture2D" uid="uid://c1rkc0g01by7h" path="res://src/enemy/enemy_types/09. Agni/animations/L/frame_139_delay-0.01s.png" id="36_qr5lh"] +[ext_resource type="Texture2D" uid="uid://c3ijx4n6gx3kk" path="res://src/enemy/enemy_types/09. Agni/animations/L/frame_140_delay-0.01s.png" id="37_i6r87"] +[ext_resource type="Texture2D" uid="uid://cedvpowu0uxl8" path="res://src/enemy/enemy_types/09. Agni/animations/L/frame_141_delay-0.01s.png" id="38_sqeg8"] +[ext_resource type="Texture2D" uid="uid://cspnh0dp8rby7" path="res://src/enemy/enemy_types/09. Agni/animations/L/frame_142_delay-0.01s.png" id="39_k5y0i"] +[ext_resource type="Texture2D" uid="uid://rttxodnaeo1r" path="res://src/enemy/enemy_types/09. Agni/animations/L/frame_143_delay-0.01s.png" id="40_lr5by"] +[ext_resource type="Texture2D" uid="uid://bmca04yriogx5" path="res://src/enemy/enemy_types/09. Agni/animations/L/frame_144_delay-0.01s.png" id="41_c84kr"] +[ext_resource type="Texture2D" uid="uid://xor5n0c5tk0j" path="res://src/enemy/enemy_types/09. Agni/animations/L/frame_145_delay-0.01s.png" id="42_xfnmt"] +[ext_resource type="Texture2D" uid="uid://dhq2t5wpgmlt7" path="res://src/enemy/enemy_types/09. Agni/animations/L/frame_146_delay-0.01s.png" id="43_irwou"] +[ext_resource type="Texture2D" uid="uid://dijlfip1gcip2" path="res://src/enemy/enemy_types/09. Agni/animations/L/frame_147_delay-0.01s.png" id="44_h35me"] +[ext_resource type="Texture2D" uid="uid://c7g7ukartbxg0" path="res://src/enemy/enemy_types/09. Agni/animations/L/frame_148_delay-0.01s.png" id="45_8sjpy"] +[ext_resource type="Texture2D" uid="uid://c6fiobstg4wim" path="res://src/enemy/enemy_types/09. Agni/animations/L/frame_149_delay-0.01s.png" id="46_n8ava"] +[ext_resource type="Texture2D" uid="uid://cmero5dihar6b" path="res://src/enemy/enemy_types/09. Agni/animations/L/frame_150_delay-0.01s.png" id="47_qq0rn"] +[ext_resource type="Texture2D" uid="uid://gx4uxnf1dmun" path="res://src/enemy/enemy_types/09. Agni/animations/L/frame_151_delay-0.01s.png" id="48_eho7s"] +[ext_resource type="Texture2D" uid="uid://ngghdfw4jj4h" path="res://src/enemy/enemy_types/09. Agni/animations/L/frame_152_delay-0.01s.png" id="49_fg3hu"] +[ext_resource type="Texture2D" uid="uid://da1xp1iw3a7hv" path="res://src/enemy/enemy_types/09. Agni/animations/L/frame_153_delay-0.01s.png" id="50_51wrr"] +[ext_resource type="Texture2D" uid="uid://cv2btcyir4ahg" path="res://src/enemy/enemy_types/09. Agni/animations/L/frame_154_delay-0.01s.png" id="51_cy6mc"] +[ext_resource type="Texture2D" uid="uid://bjr7n1r02juti" path="res://src/enemy/enemy_types/09. Agni/animations/L/frame_155_delay-0.01s.png" id="52_d0673"] +[ext_resource type="Texture2D" uid="uid://xavgld8cd4ik" path="res://src/enemy/enemy_types/09. Agni/animations/L/frame_156_delay-0.01s.png" id="53_12m2c"] +[ext_resource type="Texture2D" uid="uid://bj10yx3ow10bp" path="res://src/enemy/enemy_types/09. Agni/animations/L/frame_157_delay-0.01s.png" id="54_s6cqb"] +[ext_resource type="Texture2D" uid="uid://dqm5xh38tgiqh" path="res://src/enemy/enemy_types/09. Agni/animations/L/frame_158_delay-0.01s.png" id="55_n8ymk"] +[ext_resource type="Texture2D" uid="uid://bhsk32l05xvbf" path="res://src/enemy/enemy_types/09. Agni/animations/R/frame_198_delay-0.01s.png" id="56_n1bnx"] +[ext_resource type="Texture2D" uid="uid://06p7wl1ifibr" path="res://src/enemy/enemy_types/09. Agni/animations/R/frame_199_delay-0.01s.png" id="57_eex31"] +[ext_resource type="Texture2D" uid="uid://54qkscqnmgcu" path="res://src/enemy/enemy_types/09. Agni/animations/R/frame_200_delay-0.01s.png" id="58_5bp3f"] +[ext_resource type="Texture2D" uid="uid://cwfiuljjxhxtu" path="res://src/enemy/enemy_types/09. Agni/animations/R/frame_201_delay-0.01s.png" id="59_oahu0"] +[ext_resource type="Texture2D" uid="uid://rxrcw23shk21" path="res://src/enemy/enemy_types/09. Agni/animations/R/frame_202_delay-0.01s.png" id="60_7lq18"] +[ext_resource type="Texture2D" uid="uid://chyf5dfvhdmha" path="res://src/enemy/enemy_types/09. Agni/animations/R/frame_203_delay-0.01s.png" id="61_ygp5b"] +[ext_resource type="Texture2D" uid="uid://bs6eno6gtusur" path="res://src/enemy/enemy_types/09. Agni/animations/R/frame_204_delay-0.01s.png" id="62_di4mh"] +[ext_resource type="Texture2D" uid="uid://ymmk47tamej2" path="res://src/enemy/enemy_types/09. Agni/animations/R/frame_205_delay-0.01s.png" id="63_k0n7h"] +[ext_resource type="Texture2D" uid="uid://w88wl5teslfx" path="res://src/enemy/enemy_types/09. Agni/animations/R/frame_206_delay-0.01s.png" id="64_uh8m4"] +[ext_resource type="Texture2D" uid="uid://ddfjifcvkpkhc" path="res://src/enemy/enemy_types/09. Agni/animations/R/frame_207_delay-0.01s.png" id="65_w4cwl"] +[ext_resource type="Texture2D" uid="uid://jfiov7uldt38" path="res://src/enemy/enemy_types/09. Agni/animations/R/frame_208_delay-0.01s.png" id="66_30j18"] +[ext_resource type="Texture2D" uid="uid://cpww0skmfrgvp" path="res://src/enemy/enemy_types/09. Agni/animations/R/frame_209_delay-0.01s.png" id="67_bh68d"] +[ext_resource type="Texture2D" uid="uid://dsmjr3ohg5w8r" path="res://src/enemy/enemy_types/09. Agni/animations/R/frame_210_delay-0.01s.png" id="68_b8cwe"] +[ext_resource type="Texture2D" uid="uid://p6i3hny05st6" path="res://src/enemy/enemy_types/09. Agni/animations/R/frame_211_delay-0.01s.png" id="69_ttwny"] +[ext_resource type="Texture2D" uid="uid://bh3tcdeassk02" path="res://src/enemy/enemy_types/09. Agni/animations/R/frame_212_delay-0.01s.png" id="70_idn0p"] +[ext_resource type="Texture2D" uid="uid://d331tk4jn3twx" path="res://src/enemy/enemy_types/09. Agni/animations/R/frame_213_delay-0.01s.png" id="71_0nkem"] +[ext_resource type="Texture2D" uid="uid://0xpxwche3cfd" path="res://src/enemy/enemy_types/09. Agni/animations/R/frame_214_delay-0.01s.png" id="72_n7gw4"] +[ext_resource type="Texture2D" uid="uid://dm6gsiqregjsw" path="res://src/enemy/enemy_types/09. Agni/animations/R/frame_215_delay-0.01s.png" id="73_vc4pw"] +[ext_resource type="Texture2D" uid="uid://l1yi2bofgjon" path="res://src/enemy/enemy_types/09. Agni/animations/R/frame_216_delay-0.01s.png" id="74_0i26d"] +[ext_resource type="Texture2D" uid="uid://blc66cptgn1c3" path="res://src/enemy/enemy_types/09. Agni/animations/R/frame_217_delay-0.01s.png" id="75_fn30n"] +[ext_resource type="Texture2D" uid="uid://mvy8hatv1lmb" path="res://src/enemy/enemy_types/09. Agni/animations/R/frame_218_delay-0.01s.png" id="76_654xy"] +[ext_resource type="Texture2D" uid="uid://crow2apwptjbb" path="res://src/enemy/enemy_types/09. Agni/animations/R/frame_219_delay-0.01s.png" id="77_51k5h"] +[ext_resource type="Texture2D" uid="uid://vymn8geahxjj" path="res://src/enemy/enemy_types/09. Agni/animations/R/frame_220_delay-0.01s.png" id="78_4bh03"] +[ext_resource type="Texture2D" uid="uid://c3alaqd3qntjf" path="res://src/enemy/enemy_types/09. Agni/animations/R/frame_221_delay-0.01s.png" id="79_84quw"] +[ext_resource type="Texture2D" uid="uid://dpiupie81g4su" path="res://src/enemy/enemy_types/09. Agni/animations/R/frame_222_delay-0.01s.png" id="80_pt8gl"] +[ext_resource type="Texture2D" uid="uid://ygl3erumerul" path="res://src/enemy/enemy_types/09. Agni/animations/R/frame_223_delay-0.01s.png" id="81_8wyws"] +[ext_resource type="Texture2D" uid="uid://bm8u1egdkocd7" path="res://src/enemy/enemy_types/09. Agni/animations/R/frame_224_delay-0.01s.png" id="82_kuord"] +[ext_resource type="Texture2D" uid="uid://c46w5xfuwhnr6" path="res://src/enemy/enemy_types/09. Agni/animations/Primary Attack/F/frame_093_delay-0.01s.png" id="110_vprbf"] +[ext_resource type="Texture2D" uid="uid://chba8jbs2trtk" path="res://src/enemy/enemy_types/09. Agni/animations/Primary Attack/F/frame_094_delay-0.01s.png" id="111_3b4or"] +[ext_resource type="Texture2D" uid="uid://b2mfv3bh1x3xb" path="res://src/enemy/enemy_types/09. Agni/animations/Primary Attack/F/frame_095_delay-0.01s.png" id="112_lvxxf"] +[ext_resource type="Texture2D" uid="uid://cyf85k3hjhfyf" path="res://src/enemy/enemy_types/09. Agni/animations/Primary Attack/F/frame_096_delay-0.01s.png" id="113_h5qpd"] +[ext_resource type="Texture2D" uid="uid://3hkok2jl7aqm" path="res://src/enemy/enemy_types/09. Agni/animations/Primary Attack/F/frame_097_delay-0.01s.png" id="114_3fp3w"] +[ext_resource type="Texture2D" uid="uid://c8mbs175j1sfu" path="res://src/enemy/enemy_types/09. Agni/animations/Primary Attack/F/frame_098_delay-0.01s.png" id="115_ahsj4"] +[ext_resource type="Texture2D" uid="uid://bw5tqu5fgkhh5" path="res://src/enemy/enemy_types/09. Agni/animations/Primary Attack/F/frame_099_delay-0.01s.png" id="116_r8w0q"] +[ext_resource type="Texture2D" uid="uid://dvwu1pe0v5a5h" path="res://src/enemy/enemy_types/09. Agni/animations/Primary Attack/F/frame_100_delay-0.01s.png" id="117_1wi8m"] +[ext_resource type="Texture2D" uid="uid://c332v26b101k" path="res://src/enemy/enemy_types/09. Agni/animations/Primary Attack/F/frame_101_delay-0.01s.png" id="118_cwyyv"] +[ext_resource type="Texture2D" uid="uid://b3ybjgdm452gp" path="res://src/enemy/enemy_types/09. Agni/animations/Primary Attack/F/frame_102_delay-0.01s.png" id="119_5ikd5"] +[ext_resource type="Texture2D" uid="uid://cp8ld1gc0pr61" path="res://src/enemy/enemy_types/09. Agni/animations/Primary Attack/F/frame_103_delay-0.01s.png" id="120_liv8i"] +[ext_resource type="Texture2D" uid="uid://bj3wqh6us08j6" path="res://src/enemy/enemy_types/09. Agni/animations/Primary Attack/F/frame_104_delay-0.01s.png" id="121_kpjbt"] +[ext_resource type="Texture2D" uid="uid://biqd4qxqj1jq" path="res://src/enemy/enemy_types/09. Agni/animations/Primary Attack/F/frame_105_delay-0.01s.png" id="122_ry8u8"] +[ext_resource type="Texture2D" uid="uid://dcqrai54vxasy" path="res://src/enemy/enemy_types/09. Agni/animations/Primary Attack/F/frame_106_delay-0.01s.png" id="123_3bhr5"] +[ext_resource type="Texture2D" uid="uid://w0adyv4klg8u" path="res://src/enemy/enemy_types/09. Agni/animations/Primary Attack/F/frame_107_delay-0.01s.png" id="124_mvhf3"] +[ext_resource type="Texture2D" uid="uid://bj4w1t366je36" path="res://src/enemy/enemy_types/09. Agni/animations/Primary Attack/F/frame_108_delay-0.01s.png" id="125_t1jne"] +[ext_resource type="Texture2D" uid="uid://chlghfjgl356s" path="res://src/enemy/enemy_types/09. Agni/animations/L/frame_159_delay-0.01s.png" id="126_bt5l7"] +[ext_resource type="Texture2D" uid="uid://cnaiqs7f0sjj2" path="res://src/enemy/enemy_types/09. Agni/animations/B/frame_027_delay-0.01s.png" id="126_ppjwm"] +[ext_resource type="Texture2D" uid="uid://dutdhjc47m7xu" path="res://src/enemy/enemy_types/09. Agni/animations/B/frame_028_delay-0.01s.png" id="127_aeduo"] +[ext_resource type="Texture2D" uid="uid://b6at2sytan3p1" path="res://src/enemy/enemy_types/09. Agni/animations/L/frame_160_delay-0.01s.png" id="127_ayin7"] +[ext_resource type="Texture2D" uid="uid://b5jakjdopmwxc" path="res://src/enemy/enemy_types/09. Agni/animations/B/frame_029_delay-0.01s.png" id="128_ghqkn"] +[ext_resource type="Texture2D" uid="uid://d34ky0ehksjfc" path="res://src/enemy/enemy_types/09. Agni/animations/L/frame_161_delay-0.01s.png" id="128_t3tyn"] +[ext_resource type="Texture2D" uid="uid://dbip07sw2qcgc" path="res://src/enemy/enemy_types/09. Agni/animations/L/frame_162_delay-0.01s.png" id="129_7wh57"] +[ext_resource type="Texture2D" uid="uid://cnied0w8p8kbw" path="res://src/enemy/enemy_types/09. Agni/animations/B/frame_030_delay-0.01s.png" id="129_81k6x"] +[ext_resource type="Texture2D" uid="uid://g1ahvwq6dqhx" path="res://src/enemy/enemy_types/09. Agni/animations/B/frame_031_delay-0.01s.png" id="130_px6yr"] +[ext_resource type="Texture2D" uid="uid://cltiglp15kywt" path="res://src/enemy/enemy_types/09. Agni/animations/L/frame_163_delay-0.01s.png" id="130_s7ye2"] +[ext_resource type="Texture2D" uid="uid://dd0c4gaeh6myh" path="res://src/enemy/enemy_types/09. Agni/animations/B/frame_032_delay-0.01s.png" id="131_beuum"] +[ext_resource type="Texture2D" uid="uid://d07ugpq756uhv" path="res://src/enemy/enemy_types/09. Agni/animations/L/frame_164_delay-0.01s.png" id="131_rj1js"] +[ext_resource type="Texture2D" uid="uid://cgaxxvy3om7md" path="res://src/enemy/enemy_types/09. Agni/animations/B/frame_033_delay-0.01s.png" id="132_mwuti"] +[ext_resource type="Texture2D" uid="uid://sgegg8gg2doj" path="res://src/enemy/enemy_types/09. Agni/animations/L/frame_165_delay-0.01s.png" id="132_pgglm"] +[ext_resource type="Texture2D" uid="uid://b801i5bpfu182" path="res://src/enemy/enemy_types/09. Agni/animations/B/frame_034_delay-0.01s.png" id="133_2e6rw"] +[ext_resource type="Texture2D" uid="uid://dggx0hygu8tn0" path="res://src/enemy/enemy_types/09. Agni/animations/L/frame_166_delay-0.01s.png" id="133_gu1ti"] +[ext_resource type="Texture2D" uid="uid://bajvef2wycmmd" path="res://src/enemy/enemy_types/09. Agni/animations/L/frame_167_delay-0.01s.png" id="134_82aih"] +[ext_resource type="Texture2D" uid="uid://b2exyqsd2ivmg" path="res://src/enemy/enemy_types/09. Agni/animations/B/frame_035_delay-0.01s.png" id="134_hlucq"] +[ext_resource type="Texture2D" uid="uid://b8dd8rwx6sg4j" path="res://src/enemy/enemy_types/09. Agni/animations/B/frame_036_delay-0.01s.png" id="135_4e16l"] +[ext_resource type="Texture2D" uid="uid://desjlb5rvs5ft" path="res://src/enemy/enemy_types/09. Agni/animations/L/frame_168_delay-0.01s.png" id="135_aa2x8"] +[ext_resource type="Texture2D" uid="uid://da6ib32jregio" path="res://src/enemy/enemy_types/09. Agni/animations/B/frame_037_delay-0.01s.png" id="136_iwxo7"] +[ext_resource type="Texture2D" uid="uid://dwfg2anun2m15" path="res://src/enemy/enemy_types/09. Agni/animations/L/frame_169_delay-0.01s.png" id="136_uhgxx"] +[ext_resource type="Texture2D" uid="uid://daoigad46m5r7" path="res://src/enemy/enemy_types/09. Agni/animations/B/frame_038_delay-0.01s.png" id="137_beysk"] +[ext_resource type="Texture2D" uid="uid://dtfkcsfvthvq2" path="res://src/enemy/enemy_types/09. Agni/animations/L/frame_170_delay-0.01s.png" id="137_ldc18"] +[ext_resource type="Texture2D" uid="uid://wtw68eu5tgur" path="res://src/enemy/enemy_types/09. Agni/animations/L/frame_171_delay-0.01s.png" id="138_6jw4y"] +[ext_resource type="Texture2D" uid="uid://c7x4h8taadc7q" path="res://src/enemy/enemy_types/09. Agni/animations/B/frame_039_delay-0.01s.png" id="138_g8v1t"] +[ext_resource type="Texture2D" uid="uid://cuh0nnnr8fh5n" path="res://src/enemy/enemy_types/09. Agni/animations/B/frame_040_delay-0.01s.png" id="139_4lfcg"] +[ext_resource type="Texture2D" uid="uid://8uf4b55dgg3p" path="res://src/enemy/enemy_types/09. Agni/animations/L/frame_172_delay-0.01s.png" id="139_wtfow"] +[ext_resource type="Texture2D" uid="uid://b2l5gt2n63x06" path="res://src/enemy/enemy_types/09. Agni/animations/L/frame_173_delay-0.01s.png" id="140_rixoi"] +[ext_resource type="Texture2D" uid="uid://bf5kdfwilr6ya" path="res://src/enemy/enemy_types/09. Agni/animations/B/frame_041_delay-0.01s.png" id="140_wa66a"] +[ext_resource type="Texture2D" uid="uid://ciqux6oks7o8j" path="res://src/enemy/enemy_types/09. Agni/animations/L/frame_174_delay-0.01s.png" id="141_3intm"] +[ext_resource type="Texture2D" uid="uid://dyiwhim3wvswi" path="res://src/enemy/enemy_types/09. Agni/animations/B/frame_042_delay-0.01s.png" id="141_ivxe0"] +[ext_resource type="Texture2D" uid="uid://dumik4dqkhhpb" path="res://src/enemy/enemy_types/09. Agni/animations/R/frame_225_delay-0.01s.png" id="142_ykxca"] +[ext_resource type="Texture2D" uid="uid://b4evqkmluj3rc" path="res://src/enemy/enemy_types/09. Agni/animations/R/frame_226_delay-0.01s.png" id="143_d3g7j"] +[ext_resource type="Texture2D" uid="uid://hschg5j1rra3" path="res://src/enemy/enemy_types/09. Agni/animations/R/frame_227_delay-0.01s.png" id="144_bvb4q"] +[ext_resource type="Texture2D" uid="uid://dgsvh6frtvy06" path="res://src/enemy/enemy_types/09. Agni/animations/R/frame_228_delay-0.01s.png" id="145_ya7vi"] +[ext_resource type="Texture2D" uid="uid://rt7ouk1rgl52" path="res://src/enemy/enemy_types/09. Agni/animations/R/frame_229_delay-0.01s.png" id="146_32bhs"] +[ext_resource type="Texture2D" uid="uid://y1u43bt8wh7b" path="res://src/enemy/enemy_types/09. Agni/animations/R/frame_230_delay-0.01s.png" id="147_xo3nv"] +[ext_resource type="Texture2D" uid="uid://d1ts7mik0ep1q" path="res://src/enemy/enemy_types/09. Agni/animations/R/frame_231_delay-0.01s.png" id="148_jwlyb"] +[ext_resource type="Texture2D" uid="uid://gi3515vff0de" path="res://src/enemy/enemy_types/09. Agni/animations/R/frame_232_delay-0.01s.png" id="149_wolyq"] +[ext_resource type="Texture2D" uid="uid://cqa88kdtkglo6" path="res://src/enemy/enemy_types/09. Agni/animations/R/frame_233_delay-0.01s.png" id="150_g58wf"] +[ext_resource type="Texture2D" uid="uid://cxm7i3fswovkk" path="res://src/enemy/enemy_types/09. Agni/animations/R/frame_234_delay-0.01s.png" id="151_j6tb3"] +[ext_resource type="Texture2D" uid="uid://bvy58646btxbp" path="res://src/enemy/enemy_types/09. Agni/animations/R/frame_235_delay-0.01s.png" id="152_6sc67"] +[ext_resource type="Texture2D" uid="uid://dhbf3u2g2aib0" path="res://src/enemy/enemy_types/09. Agni/animations/R/frame_236_delay-0.01s.png" id="153_0ro8w"] +[ext_resource type="Texture2D" uid="uid://djt13deq5d27" path="res://src/enemy/enemy_types/09. Agni/animations/R/frame_237_delay-0.01s.png" id="154_7vsq8"] +[ext_resource type="Texture2D" uid="uid://d0mlepj1qv4hu" path="res://src/enemy/enemy_types/09. Agni/animations/R/frame_238_delay-0.01s.png" id="155_ei26s"] +[ext_resource type="Texture2D" uid="uid://bciw0pvnr23db" path="res://src/enemy/enemy_types/09. Agni/animations/R/frame_239_delay-0.01s.png" id="156_r843w"] +[ext_resource type="Texture2D" uid="uid://dseairg26t3nh" path="res://src/enemy/enemy_types/09. Agni/animations/R/frame_240_delay-0.01s.png" id="157_s8g0h"] +[ext_resource type="Texture2D" uid="uid://datckrqdgyref" path="res://src/enemy/enemy_types/09. Agni/animations/F/frame_109_delay-0.01s.png" id="174_ckqrb"] +[ext_resource type="Texture2D" uid="uid://dmblermv36q1t" path="res://src/enemy/enemy_types/09. Agni/animations/F/frame_110_delay-0.01s.png" id="175_j40sl"] +[ext_resource type="Texture2D" uid="uid://dyky52ey50hcm" path="res://src/enemy/enemy_types/09. Agni/animations/F/frame_111_delay-0.01s.png" id="176_dmbat"] +[ext_resource type="Texture2D" uid="uid://cjfwaiov7dfv4" path="res://src/enemy/enemy_types/09. Agni/animations/F/frame_112_delay-0.01s.png" id="177_2imk7"] +[ext_resource type="Texture2D" uid="uid://ygacn2kh5usi" path="res://src/enemy/enemy_types/09. Agni/animations/F/frame_113_delay-0.01s.png" id="178_kv2h5"] +[ext_resource type="Texture2D" uid="uid://ma2exdd7lsx2" path="res://src/enemy/enemy_types/09. Agni/animations/F/frame_114_delay-0.01s.png" id="179_m5jct"] +[ext_resource type="Texture2D" uid="uid://bema272sctkq" path="res://src/enemy/enemy_types/09. Agni/animations/F/frame_115_delay-0.01s.png" id="180_62pw4"] +[ext_resource type="Texture2D" uid="uid://ekdq36n4midf" path="res://src/enemy/enemy_types/09. Agni/animations/F/frame_116_delay-0.01s.png" id="181_c2cpd"] +[ext_resource type="Texture2D" uid="uid://dl3cy1b6biwct" path="res://src/enemy/enemy_types/09. Agni/animations/F/frame_117_delay-0.01s.png" id="182_peewm"] +[ext_resource type="Texture2D" uid="uid://cqcm51c73r7h5" path="res://src/enemy/enemy_types/09. Agni/animations/F/frame_118_delay-0.01s.png" id="183_j0nsu"] +[ext_resource type="Texture2D" uid="uid://b02v3vsyfwpc8" path="res://src/enemy/enemy_types/09. Agni/animations/F/frame_119_delay-0.01s.png" id="184_56j0e"] +[ext_resource type="Texture2D" uid="uid://cq83mf2e35530" path="res://src/enemy/enemy_types/09. Agni/animations/F/frame_120_delay-0.01s.png" id="185_r6e3v"] +[ext_resource type="Texture2D" uid="uid://b8l2afj1ubc73" path="res://src/enemy/enemy_types/09. Agni/animations/F/frame_121_delay-0.01s.png" id="186_ejp8h"] +[ext_resource type="Texture2D" uid="uid://cvwa4suri4atg" path="res://src/enemy/enemy_types/09. Agni/animations/F/frame_122_delay-0.01s.png" id="187_fmvcg"] +[ext_resource type="Texture2D" uid="uid://8k2xymdmr23c" path="res://src/enemy/enemy_types/09. Agni/animations/F/frame_123_delay-0.01s.png" id="188_okbif"] +[ext_resource type="Texture2D" uid="uid://d2q55rgk0dn33" path="res://src/enemy/enemy_types/09. Agni/animations/F/frame_124_delay-0.01s.png" id="189_dus11"] +[ext_resource type="Texture2D" uid="uid://t8xslvjd50jr" path="res://src/enemy/enemy_types/09. Agni/animations/F/frame_125_delay-0.01s.png" id="190_2uf0v"] +[ext_resource type="Texture2D" uid="uid://cwr0qaoicsfhd" path="res://src/enemy/enemy_types/09. Agni/animations/F/frame_126_delay-0.01s.png" id="191_4bhb7"] +[ext_resource type="Texture2D" uid="uid://dk720vybwl7jw" path="res://src/enemy/enemy_types/09. Agni/animations/F/frame_127_delay-0.01s.png" id="192_7yosr"] +[ext_resource type="Texture2D" uid="uid://denl6aqhmvhcj" path="res://src/enemy/enemy_types/09. Agni/animations/F/frame_128_delay-0.01s.png" id="193_bemmb"] +[ext_resource type="Texture2D" uid="uid://dumoyrl88pwvw" path="res://src/enemy/enemy_types/09. Agni/animations/F/frame_129_delay-0.01s.png" id="194_innxq"] +[ext_resource type="Texture2D" uid="uid://j84hkbc3ct0r" path="res://src/enemy/enemy_types/09. Agni/animations/F/frame_130_delay-0.01s.png" id="195_n00h1"] +[ext_resource type="Texture2D" uid="uid://lu8oe4o804nn" path="res://src/enemy/enemy_types/09. Agni/animations/F/frame_131_delay-0.01s.png" id="196_tpai1"] +[ext_resource type="Texture2D" uid="uid://djub3mqokrsah" path="res://src/enemy/enemy_types/09. Agni/animations/B/frame_043_delay-0.01s.png" id="197_o2lxl"] +[ext_resource type="Texture2D" uid="uid://shkr17411db1" path="res://src/enemy/enemy_types/09. Agni/animations/L/frame_175_delay-0.01s.png" id="197_xnob3"] +[ext_resource type="Texture2D" uid="uid://bswigd6i6imr6" path="res://src/enemy/enemy_types/09. Agni/animations/B/frame_044_delay-0.01s.png" id="198_lxycn"] +[ext_resource type="Texture2D" uid="uid://dmv5makdnpipr" path="res://src/enemy/enemy_types/09. Agni/animations/L/frame_176_delay-0.01s.png" id="198_tofhe"] +[ext_resource type="Texture2D" uid="uid://xye8vid2gwu7" path="res://src/enemy/enemy_types/09. Agni/animations/B/frame_045_delay-0.01s.png" id="199_dtyon"] +[ext_resource type="Texture2D" uid="uid://dsavkyagjpwb8" path="res://src/enemy/enemy_types/09. Agni/animations/L/frame_177_delay-0.01s.png" id="199_h8nj4"] +[ext_resource type="Texture2D" uid="uid://ijh2fljvnm71" path="res://src/enemy/enemy_types/09. Agni/animations/B/frame_046_delay-0.01s.png" id="200_6c2b5"] +[ext_resource type="Texture2D" uid="uid://dtsebs5m1taqa" path="res://src/enemy/enemy_types/09. Agni/animations/L/frame_178_delay-0.01s.png" id="200_kg2p7"] +[ext_resource type="Texture2D" uid="uid://d0w8sjn85ag4l" path="res://src/enemy/enemy_types/09. Agni/animations/B/frame_047_delay-0.01s.png" id="201_jd3xu"] +[ext_resource type="Texture2D" uid="uid://cbm356g56b6vm" path="res://src/enemy/enemy_types/09. Agni/animations/L/frame_179_delay-0.01s.png" id="201_x0ep5"] +[ext_resource type="Texture2D" uid="uid://byfv8wk0tpvx6" path="res://src/enemy/enemy_types/09. Agni/animations/B/frame_048_delay-0.01s.png" id="202_20ds5"] +[ext_resource type="Texture2D" uid="uid://cj1ycugfr8nnk" path="res://src/enemy/enemy_types/09. Agni/animations/L/frame_180_delay-0.01s.png" id="202_gmpd6"] +[ext_resource type="Texture2D" uid="uid://tjsbavwakv4p" path="res://src/enemy/enemy_types/09. Agni/animations/B/frame_049_delay-0.01s.png" id="203_4oldt"] +[ext_resource type="Texture2D" uid="uid://dhrhk2tdh3k3b" path="res://src/enemy/enemy_types/09. Agni/animations/L/frame_181_delay-0.01s.png" id="203_idk3x"] +[ext_resource type="Texture2D" uid="uid://7m33c1vq8wpd" path="res://src/enemy/enemy_types/09. Agni/animations/B/frame_050_delay-0.01s.png" id="204_dxfso"] +[ext_resource type="Texture2D" uid="uid://dnfq6l1rd5x1t" path="res://src/enemy/enemy_types/09. Agni/animations/L/frame_182_delay-0.01s.png" id="204_pq4re"] +[ext_resource type="Texture2D" uid="uid://ca0hfma48ftxs" path="res://src/enemy/enemy_types/09. Agni/animations/L/frame_183_delay-0.01s.png" id="205_o5mvi"] +[ext_resource type="Texture2D" uid="uid://yonawivlsxw8" path="res://src/enemy/enemy_types/09. Agni/animations/B/frame_051_delay-0.01s.png" id="205_semud"] +[ext_resource type="Texture2D" uid="uid://c32fa5oa5mqo" path="res://src/enemy/enemy_types/09. Agni/animations/L/frame_184_delay-0.01s.png" id="206_b6mqd"] +[ext_resource type="Texture2D" uid="uid://upubey1mdv1j" path="res://src/enemy/enemy_types/09. Agni/animations/B/frame_052_delay-0.01s.png" id="206_kp60x"] +[ext_resource type="Texture2D" uid="uid://5px7itdge424" path="res://src/enemy/enemy_types/09. Agni/animations/L/frame_185_delay-0.01s.png" id="207_u0g5s"] +[ext_resource type="Texture2D" uid="uid://cqivol75efl7e" path="res://src/enemy/enemy_types/09. Agni/animations/B/frame_053_delay-0.01s.png" id="207_xt1jb"] +[ext_resource type="Texture2D" uid="uid://bw8wp2eykxomv" path="res://src/enemy/enemy_types/09. Agni/animations/B/frame_054_delay-0.01s.png" id="208_ah165"] +[ext_resource type="Texture2D" uid="uid://dybcepymmbh8h" path="res://src/enemy/enemy_types/09. Agni/animations/L/frame_186_delay-0.01s.png" id="208_vur8v"] +[ext_resource type="Texture2D" uid="uid://cleq8oadbkrln" path="res://src/enemy/enemy_types/09. Agni/animations/L/frame_187_delay-0.01s.png" id="209_pa2sb"] +[ext_resource type="Texture2D" uid="uid://cer3jbxufrjh6" path="res://src/enemy/enemy_types/09. Agni/animations/B/frame_055_delay-0.01s.png" id="209_vc2t3"] +[ext_resource type="Texture2D" uid="uid://coo801128p5qu" path="res://src/enemy/enemy_types/09. Agni/animations/B/frame_056_delay-0.01s.png" id="210_3stsn"] +[ext_resource type="Texture2D" uid="uid://dcul2g1n7878" path="res://src/enemy/enemy_types/09. Agni/animations/L/frame_188_delay-0.01s.png" id="210_dc327"] +[ext_resource type="Texture2D" uid="uid://4ak4jtdlncp3" path="res://src/enemy/enemy_types/09. Agni/animations/L/frame_189_delay-0.01s.png" id="211_5y02v"] +[ext_resource type="Texture2D" uid="uid://dcnwq7i301wi1" path="res://src/enemy/enemy_types/09. Agni/animations/B/frame_057_delay-0.01s.png" id="211_pj3h5"] +[ext_resource type="Texture2D" uid="uid://ba4n5wqsce0it" path="res://src/enemy/enemy_types/09. Agni/animations/B/frame_058_delay-0.01s.png" id="212_ffuh2"] +[ext_resource type="Texture2D" uid="uid://bunn2ruw20j7n" path="res://src/enemy/enemy_types/09. Agni/animations/L/frame_190_delay-0.01s.png" id="212_mm0yx"] +[ext_resource type="Texture2D" uid="uid://i4lvorh314wg" path="res://src/enemy/enemy_types/09. Agni/animations/B/frame_059_delay-0.01s.png" id="213_8umuq"] +[ext_resource type="Texture2D" uid="uid://l8xellneih4n" path="res://src/enemy/enemy_types/09. Agni/animations/L/frame_191_delay-0.01s.png" id="213_x32v4"] +[ext_resource type="Texture2D" uid="uid://cd7nn88sgtpjk" path="res://src/enemy/enemy_types/09. Agni/animations/B/frame_060_delay-0.01s.png" id="214_aakiv"] +[ext_resource type="Texture2D" uid="uid://7l7mnj87hsf7" path="res://src/enemy/enemy_types/09. Agni/animations/L/frame_192_delay-0.01s.png" id="214_uuaia"] +[ext_resource type="Texture2D" uid="uid://dd88ngps7r81i" path="res://src/enemy/enemy_types/09. Agni/animations/L/frame_193_delay-0.01s.png" id="215_8d34m"] +[ext_resource type="Texture2D" uid="uid://dva8p0spra58" path="res://src/enemy/enemy_types/09. Agni/animations/B/frame_061_delay-0.01s.png" id="215_xsh2u"] +[ext_resource type="Texture2D" uid="uid://d1xbn8exh5tb1" path="res://src/enemy/enemy_types/09. Agni/animations/B/frame_062_delay-0.01s.png" id="216_ke7fl"] +[ext_resource type="Texture2D" uid="uid://dvumdq0ybrehc" path="res://src/enemy/enemy_types/09. Agni/animations/L/frame_194_delay-0.01s.png" id="216_sicjx"] +[ext_resource type="Texture2D" uid="uid://bjfnwipb0hn65" path="res://src/enemy/enemy_types/09. Agni/animations/B/frame_063_delay-0.01s.png" id="217_jgx2a"] +[ext_resource type="Texture2D" uid="uid://dr1uyxupc5rvd" path="res://src/enemy/enemy_types/09. Agni/animations/L/frame_195_delay-0.01s.png" id="217_pqyu2"] +[ext_resource type="Texture2D" uid="uid://ctrgsiskd1frx" path="res://src/enemy/enemy_types/09. Agni/animations/B/frame_064_delay-0.01s.png" id="218_1hgah"] +[ext_resource type="Texture2D" uid="uid://bapkchbtjk41u" path="res://src/enemy/enemy_types/09. Agni/animations/L/frame_196_delay-0.01s.png" id="218_wwhtm"] +[ext_resource type="Texture2D" uid="uid://dyx4jxs62gfu2" path="res://src/enemy/enemy_types/09. Agni/animations/L/frame_197_delay-0.01s.png" id="219_3k8j0"] +[ext_resource type="Texture2D" uid="uid://cwi6ydmtmaddp" path="res://src/enemy/enemy_types/09. Agni/animations/B/frame_065_delay-0.01s.png" id="219_f688p"] +[ext_resource type="Texture2D" uid="uid://buajw8hhulu81" path="res://src/enemy/enemy_types/09. Agni/animations/R/frame_241_delay-0.01s.png" id="220_5w41u"] +[ext_resource type="Texture2D" uid="uid://23fgouybahk5" path="res://src/enemy/enemy_types/09. Agni/animations/R/frame_242_delay-0.01s.png" id="221_o2lxl"] +[ext_resource type="Texture2D" uid="uid://bc4kxs87tyeyu" path="res://src/enemy/enemy_types/09. Agni/animations/R/frame_243_delay-0.01s.png" id="222_lxycn"] +[ext_resource type="Texture2D" uid="uid://bfvgo3rheqmla" path="res://src/enemy/enemy_types/09. Agni/animations/R/frame_244_delay-0.01s.png" id="223_dtyon"] +[ext_resource type="Texture2D" uid="uid://dwhgget8tysjl" path="res://src/enemy/enemy_types/09. Agni/animations/R/frame_245_delay-0.01s.png" id="224_6c2b5"] +[ext_resource type="Texture2D" uid="uid://dhcg51m0k8xe2" path="res://src/enemy/enemy_types/09. Agni/animations/R/frame_246_delay-0.01s.png" id="225_jd3xu"] +[ext_resource type="Texture2D" uid="uid://6d48nco64uiv" path="res://src/enemy/enemy_types/09. Agni/animations/R/frame_247_delay-0.01s.png" id="226_20ds5"] +[ext_resource type="Texture2D" uid="uid://4u571pswobrj" path="res://src/enemy/enemy_types/09. Agni/animations/R/frame_248_delay-0.01s.png" id="227_4oldt"] +[ext_resource type="Texture2D" uid="uid://b2ewc48b3q7ms" path="res://src/enemy/enemy_types/09. Agni/animations/R/frame_249_delay-0.01s.png" id="228_dxfso"] +[ext_resource type="Texture2D" uid="uid://bnnbcqeiwafbw" path="res://src/enemy/enemy_types/09. Agni/animations/R/frame_250_delay-0.01s.png" id="229_semud"] +[ext_resource type="Texture2D" uid="uid://b1qvi7gl40tic" path="res://src/enemy/enemy_types/09. Agni/animations/R/frame_251_delay-0.01s.png" id="230_kp60x"] +[ext_resource type="Texture2D" uid="uid://dph6c5ntgx4ug" path="res://src/enemy/enemy_types/09. Agni/animations/R/frame_252_delay-0.01s.png" id="231_xt1jb"] +[ext_resource type="Texture2D" uid="uid://ccbkf3stle5s8" path="res://src/enemy/enemy_types/09. Agni/animations/R/frame_253_delay-0.01s.png" id="232_ah165"] +[ext_resource type="Texture2D" uid="uid://2aoimief7jg1" path="res://src/enemy/enemy_types/09. Agni/animations/R/frame_254_delay-0.01s.png" id="233_vc2t3"] +[ext_resource type="Texture2D" uid="uid://bo3yooc63cikn" path="res://src/enemy/enemy_types/09. Agni/animations/R/frame_255_delay-0.01s.png" id="234_3stsn"] +[ext_resource type="Texture2D" uid="uid://cost00qd68dlb" path="res://src/enemy/enemy_types/09. Agni/animations/R/frame_256_delay-0.01s.png" id="235_pj3h5"] +[ext_resource type="Texture2D" uid="uid://8bq8wrs3ttcv" path="res://src/enemy/enemy_types/09. Agni/animations/R/frame_257_delay-0.01s.png" id="236_ffuh2"] +[ext_resource type="Texture2D" uid="uid://db4l2228uovc8" path="res://src/enemy/enemy_types/09. Agni/animations/R/frame_258_delay-0.01s.png" id="237_8umuq"] +[ext_resource type="Texture2D" uid="uid://itfq5312pt6d" path="res://src/enemy/enemy_types/09. Agni/animations/R/frame_259_delay-0.01s.png" id="238_aakiv"] +[ext_resource type="Texture2D" uid="uid://dx13yhik7lvmk" path="res://src/enemy/enemy_types/09. Agni/animations/R/frame_260_delay-0.01s.png" id="239_xsh2u"] +[ext_resource type="Texture2D" uid="uid://bntlmlpghyrh6" path="res://src/enemy/enemy_types/09. Agni/animations/R/frame_261_delay-0.01s.png" id="240_ke7fl"] +[ext_resource type="Texture2D" uid="uid://d3q4ocfb1g6dt" path="res://src/enemy/enemy_types/09. Agni/animations/R/frame_262_delay-0.01s.png" id="241_jgx2a"] +[ext_resource type="Texture2D" uid="uid://bo3atbyq7k5tv" path="res://src/enemy/enemy_types/09. Agni/animations/R/frame_263_delay-0.01s.png" id="242_1hgah"] +[ext_resource type="Texture2D" uid="uid://bg0mm60ln6kye" path="res://src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_264_delay-0.01s.png" id="266_lsphj"] +[ext_resource type="Texture2D" uid="uid://gkldknqv8n34" path="res://src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_265_delay-0.01s.png" id="267_y6p5p"] +[ext_resource type="Texture2D" uid="uid://cy2cqucagmjlb" path="res://src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_266_delay-0.01s.png" id="268_f45wt"] +[ext_resource type="Texture2D" uid="uid://jegmc4jpfx20" path="res://src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_267_delay-0.01s.png" id="269_tw60d"] +[ext_resource type="Texture2D" uid="uid://dcduubuqlopkh" path="res://src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_268_delay-0.01s.png" id="270_kvft6"] +[ext_resource type="Texture2D" uid="uid://dnmper7kajww6" path="res://src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_269_delay-0.01s.png" id="271_1s7aa"] +[ext_resource type="Texture2D" uid="uid://cftqjy2iewh6v" path="res://src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_270_delay-0.01s.png" id="272_h7020"] +[ext_resource type="Texture2D" uid="uid://ddm7abdc3c3jv" path="res://src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_271_delay-0.01s.png" id="273_dd482"] +[ext_resource type="Texture2D" uid="uid://bsnt0i55haapp" path="res://src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_272_delay-0.01s.png" id="274_pv7h1"] +[ext_resource type="Texture2D" uid="uid://cqg78lak7t7h7" path="res://src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_273_delay-0.01s.png" id="275_ggybm"] +[ext_resource type="Texture2D" uid="uid://cftgstb4h04to" path="res://src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_274_delay-0.01s.png" id="276_h223i"] +[ext_resource type="Texture2D" uid="uid://dy75670e11euv" path="res://src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_275_delay-0.01s.png" id="277_mvc8k"] +[ext_resource type="Texture2D" uid="uid://cmc88yx6ecg4q" path="res://src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_276_delay-0.01s.png" id="278_d3off"] +[ext_resource type="Texture2D" uid="uid://cjo7h07ghnrcy" path="res://src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_277_delay-0.01s.png" id="279_kp848"] +[ext_resource type="Texture2D" uid="uid://croke2fk5h86j" path="res://src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_278_delay-0.01s.png" id="280_kaufo"] +[ext_resource type="Texture2D" uid="uid://cylg1j3dl7clt" path="res://src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_279_delay-0.01s.png" id="281_ghcov"] +[ext_resource type="Texture2D" uid="uid://d1516ajjjtb74" path="res://src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_280_delay-0.01s.png" id="282_pj33i"] +[ext_resource type="Texture2D" uid="uid://cm2guwf4kf2y2" path="res://src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_281_delay-0.01s.png" id="283_86iow"] +[ext_resource type="Texture2D" uid="uid://cf6cux8pu8sa1" path="res://src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_282_delay-0.01s.png" id="284_pgeg0"] +[ext_resource type="Texture2D" uid="uid://de887ptuiv4b4" path="res://src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_283_delay-0.01s.png" id="285_wmf3v"] +[ext_resource type="Texture2D" uid="uid://cds6m86b2psup" path="res://src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_284_delay-0.01s.png" id="286_yjjil"] +[ext_resource type="Texture2D" uid="uid://ckxc5ewc7krgy" path="res://src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_285_delay-0.01s.png" id="287_ds6px"] +[ext_resource type="Texture2D" uid="uid://h6b3iv4a33ge" path="res://src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_286_delay-0.01s.png" id="288_skw6r"] +[ext_resource type="Texture2D" uid="uid://brjhwakmssh2v" path="res://src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_287_delay-0.01s.png" id="289_ukoob"] +[ext_resource type="Texture2D" uid="uid://dw2lcc3f4d8ui" path="res://src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_288_delay-0.01s.png" id="290_x6o72"] +[ext_resource type="Texture2D" uid="uid://cqb1mev2pfmxg" path="res://src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_289_delay-0.01s.png" id="291_cbeiy"] +[ext_resource type="Texture2D" uid="uid://beyjeetyl0mxs" path="res://src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_290_delay-0.01s.png" id="292_1kvhg"] +[ext_resource type="Texture2D" uid="uid://dmied1q41sfm2" path="res://src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_291_delay-0.01s.png" id="293_05ua5"] +[ext_resource type="Texture2D" uid="uid://h4t5esklq6f6" path="res://src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_292_delay-0.01s.png" id="294_aorbc"] +[ext_resource type="Texture2D" uid="uid://ci6vh7iirr8pq" path="res://src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_293_delay-0.01s.png" id="295_o7jn3"] +[ext_resource type="Texture2D" uid="uid://qsx14k5bd1sx" path="res://src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_294_delay-0.01s.png" id="296_e6gd8"] +[ext_resource type="Texture2D" uid="uid://hf2i36hdttrt" path="res://src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_295_delay-0.01s.png" id="297_fwypy"] +[ext_resource type="Texture2D" uid="uid://vnwlj8wbhu45" path="res://src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_296_delay-0.01s.png" id="298_wtgla"] +[ext_resource type="Texture2D" uid="uid://15q8e1mwoy8" path="res://src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_297_delay-0.01s.png" id="299_5r5bq"] +[ext_resource type="Texture2D" uid="uid://cbqc5hmq718p4" path="res://src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_298_delay-0.01s.png" id="300_bbjsu"] +[ext_resource type="Texture2D" uid="uid://bmurdx0s03rus" path="res://src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_299_delay-0.01s.png" id="301_onfdr"] +[ext_resource type="Texture2D" uid="uid://dt7rjtc6cygua" path="res://src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_300_delay-0.01s.png" id="302_gof6h"] +[ext_resource type="Texture2D" uid="uid://ebmahc0et0uf" path="res://src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_301_delay-0.01s.png" id="303_bpyx6"] +[ext_resource type="Texture2D" uid="uid://cb4ulrnxegfd1" path="res://src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_302_delay-0.01s.png" id="304_igvfo"] +[ext_resource type="Texture2D" uid="uid://d13kp0hmihf0s" path="res://src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_303_delay-0.01s.png" id="305_o51u6"] +[ext_resource type="Texture2D" uid="uid://dqe21r1qljmdl" path="res://src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_304_delay-0.01s.png" id="306_iwq13"] +[ext_resource type="Texture2D" uid="uid://bgrrfp4car5pl" path="res://src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_305_delay-0.01s.png" id="307_vf1wu"] +[ext_resource type="Texture2D" uid="uid://br6be64txnp6e" path="res://src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_306_delay-0.01s.png" id="308_bu5u4"] +[ext_resource type="Texture2D" uid="uid://cpmsi4om5ax3s" path="res://src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_307_delay-0.01s.png" id="309_f3ajx"] +[ext_resource type="Texture2D" uid="uid://c3g0x5tdf78pe" path="res://src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_308_delay-0.01s.png" id="310_sywmp"] +[ext_resource type="Texture2D" uid="uid://erk6m62oylcc" path="res://src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_309_delay-0.01s.png" id="311_lxtc4"] +[ext_resource type="Texture2D" uid="uid://df02o1yylula8" path="res://src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_310_delay-0.01s.png" id="312_35hj7"] +[ext_resource type="Texture2D" uid="uid://dpuoyrffq8l1f" path="res://src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_311_delay-0.01s.png" id="313_a06mn"] +[ext_resource type="Texture2D" uid="uid://bw520j2fbenqx" path="res://src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_312_delay-0.01s.png" id="314_ytje7"] +[ext_resource type="Texture2D" uid="uid://c1wtdiv7cv61x" path="res://src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_313_delay-0.01s.png" id="315_24lnw"] +[ext_resource type="Texture2D" uid="uid://dhmx8xkllsk3" path="res://src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_314_delay-0.01s.png" id="316_qxnhd"] +[ext_resource type="Texture2D" uid="uid://bncjb7job7rim" path="res://src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_315_delay-0.01s.png" id="317_fj18i"] +[ext_resource type="Texture2D" uid="uid://diueunsg4spc3" path="res://src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_316_delay-0.01s.png" id="318_ptard"] +[ext_resource type="Texture2D" uid="uid://brsdd7xt3c606" path="res://src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_317_delay-0.01s.png" id="319_pukii"] +[ext_resource type="Texture2D" uid="uid://by2u0d5sqqpml" path="res://src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_318_delay-0.01s.png" id="320_jwtsj"] +[ext_resource type="Texture2D" uid="uid://j5m4yxs5ylpo" path="res://src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_319_delay-0.01s.png" id="321_vmn50"] +[ext_resource type="Texture2D" uid="uid://cyd6norqkaq5g" path="res://src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_320_delay-0.01s.png" id="322_rfa4g"] +[ext_resource type="Texture2D" uid="uid://dye83j82gbfxm" path="res://src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_321_delay-0.01s.png" id="323_1e78n"] +[ext_resource type="Texture2D" uid="uid://bx7mgwtc166jt" path="res://src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_322_delay-0.01s.png" id="324_1sdr8"] +[ext_resource type="Texture2D" uid="uid://cfpgfcbh7p2qu" path="res://src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_323_delay-0.01s.png" id="325_svnje"] +[ext_resource type="Texture2D" uid="uid://dlp8a5mucoadb" path="res://src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_324_delay-0.01s.png" id="326_6m46o"] +[ext_resource type="Texture2D" uid="uid://071wf8icu634" path="res://src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_325_delay-0.01s.png" id="327_m8hpy"] +[ext_resource type="Texture2D" uid="uid://37q4jgin3k1a" path="res://src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_326_delay-0.01s.png" id="328_350sx"] +[ext_resource type="Texture2D" uid="uid://5f115symdsmg" path="res://src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_327_delay-0.01s.png" id="329_72hkg"] +[ext_resource type="Texture2D" uid="uid://b6swecrctxcgy" path="res://src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_328_delay-0.01s.png" id="330_at3qg"] +[ext_resource type="Texture2D" uid="uid://b6batijegfqfe" path="res://src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_329_delay-0.01s.png" id="331_610d6"] +[ext_resource type="PackedScene" uid="uid://clj7wew7wf702" path="res://src/audio/sfx/SfxNodes/agni_ambient.tscn" id="334_qm4on"] +[ext_resource type="PackedScene" uid="uid://qcvw2s4tlrku" path="res://src/audio/sfx/SfxNodes/agni_attack_1.tscn" id="335_b2oii"] +[ext_resource type="PackedScene" uid="uid://c32sxkj1xyyxs" path="res://src/audio/sfx/SfxNodes/enemy_death_sound_medium.tscn" id="336_kp6fv"] [sub_resource type="Resource" id="Resource_f45wt"] script = ExtResource("2_y6p5p") @@ -2624,3 +2627,11 @@ libraries = { &"": SubResource("AnimationLibrary_o7os0") } autoplay = "default" + +[node name="SFX" type="Node3D" parent="."] + +[node name="AgniAmbient" parent="SFX" instance=ExtResource("334_qm4on")] + +[node name="AgniAttack1" parent="SFX" instance=ExtResource("335_b2oii")] + +[node name="EnemyDeathSoundMedium" parent="SFX" instance=ExtResource("336_kp6fv")] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/AgiDemonStats.tres b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/AgniDemonStats.tres similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/AgiDemonStats.tres rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/AgniDemonStats.tres diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_000_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_000_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_000_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_000_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_000_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_000_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_000_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_000_delay-0.01s.png.import index c8998082..f46317b9 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_000_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_000_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://dsu48b5hf48xl" -path="res://.godot/imported/frame_000_delay-0.01s.png-4fc881f55d4429a39f4075171702548d.ctex" +path="res://.godot/imported/frame_000_delay-0.01s.png-5b1cb60f69384e9b973f320a57a4c8b9.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/B/frame_000_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_000_delay-0.01s.png-4fc881f55d4429a39f4075171702548d.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/B/frame_000_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_000_delay-0.01s.png-5b1cb60f69384e9b973f320a57a4c8b9.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_001_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_001_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_001_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_001_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_001_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_001_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_001_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_001_delay-0.01s.png.import index 7bf0835d..21e92071 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_001_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_001_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://dw1841vsuw75d" -path="res://.godot/imported/frame_001_delay-0.01s.png-522a7497a36f8c2877719d5d52b9a494.ctex" +path="res://.godot/imported/frame_001_delay-0.01s.png-7a96f682e1cd65f244e4c80e08f4921d.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/B/frame_001_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_001_delay-0.01s.png-522a7497a36f8c2877719d5d52b9a494.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/B/frame_001_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_001_delay-0.01s.png-7a96f682e1cd65f244e4c80e08f4921d.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_002_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_002_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_002_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_002_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_002_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_002_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_002_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_002_delay-0.01s.png.import index a1195f8c..11709492 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_002_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_002_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://omx4r41xjik7" -path="res://.godot/imported/frame_002_delay-0.01s.png-8d774e2c3fe49de066536ddfb06bc3cb.ctex" +path="res://.godot/imported/frame_002_delay-0.01s.png-8b34fbc3a345c304bbca3d9bb3182f20.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/B/frame_002_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_002_delay-0.01s.png-8d774e2c3fe49de066536ddfb06bc3cb.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/B/frame_002_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_002_delay-0.01s.png-8b34fbc3a345c304bbca3d9bb3182f20.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_003_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_003_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_003_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_003_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_003_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_003_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_003_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_003_delay-0.01s.png.import index f67881e3..e1691eb6 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_003_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_003_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://d2liuqexudies" -path="res://.godot/imported/frame_003_delay-0.01s.png-5b49e7a58df923194da5595c4710b560.ctex" +path="res://.godot/imported/frame_003_delay-0.01s.png-3d4ca25d61d423936dd9702a81a77c5b.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/B/frame_003_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_003_delay-0.01s.png-5b49e7a58df923194da5595c4710b560.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/B/frame_003_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_003_delay-0.01s.png-3d4ca25d61d423936dd9702a81a77c5b.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_004_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_004_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_004_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_004_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_004_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_004_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_004_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_004_delay-0.01s.png.import index 07fd87dd..290fb49d 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_004_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_004_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://3l1v3jcokipc" -path="res://.godot/imported/frame_004_delay-0.01s.png-ab87fba0d9b8bbe945408dcea76db6c6.ctex" +path="res://.godot/imported/frame_004_delay-0.01s.png-5427e9e72ae17b4d265c3f6a739beb27.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/B/frame_004_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_004_delay-0.01s.png-ab87fba0d9b8bbe945408dcea76db6c6.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/B/frame_004_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_004_delay-0.01s.png-5427e9e72ae17b4d265c3f6a739beb27.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_005_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_005_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_005_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_005_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_005_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_005_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_005_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_005_delay-0.01s.png.import index 68fa9a0f..f90392a3 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_005_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_005_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://c03lhbb3nkov1" -path="res://.godot/imported/frame_005_delay-0.01s.png-9ecdea8b7987d02f920d3c55d4363088.ctex" +path="res://.godot/imported/frame_005_delay-0.01s.png-3caba7652dd444624a0931298d6f6ac1.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/B/frame_005_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_005_delay-0.01s.png-9ecdea8b7987d02f920d3c55d4363088.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/B/frame_005_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_005_delay-0.01s.png-3caba7652dd444624a0931298d6f6ac1.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_006_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_006_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_006_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_006_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_006_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_006_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_006_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_006_delay-0.01s.png.import index ca913697..f9541e44 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_006_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_006_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://bj4n58bpwnb0" -path="res://.godot/imported/frame_006_delay-0.01s.png-a31210e92280c52f5db4b038ac54adfa.ctex" +path="res://.godot/imported/frame_006_delay-0.01s.png-3f5bde7e0333d03b57a06ecbe0e39f42.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/B/frame_006_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_006_delay-0.01s.png-a31210e92280c52f5db4b038ac54adfa.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/B/frame_006_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_006_delay-0.01s.png-3f5bde7e0333d03b57a06ecbe0e39f42.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_007_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_007_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_007_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_007_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_007_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_007_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_007_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_007_delay-0.01s.png.import index fd49fbd5..aec5d99e 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_007_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_007_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://dmjxydw2xj1ci" -path="res://.godot/imported/frame_007_delay-0.01s.png-6a2e1937ad7dcc0685ec33404f9c6c47.ctex" +path="res://.godot/imported/frame_007_delay-0.01s.png-9df4475e8cb2a2e0eaac12051bfccf37.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/B/frame_007_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_007_delay-0.01s.png-6a2e1937ad7dcc0685ec33404f9c6c47.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/B/frame_007_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_007_delay-0.01s.png-9df4475e8cb2a2e0eaac12051bfccf37.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_008_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_008_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_008_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_008_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_008_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_008_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_008_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_008_delay-0.01s.png.import index adecdd8a..da886c4e 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_008_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_008_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://cr0t3wcwk6oxe" -path="res://.godot/imported/frame_008_delay-0.01s.png-95e1e9049cc47c6c2553c7efeeb5fc03.ctex" +path="res://.godot/imported/frame_008_delay-0.01s.png-91c36de324c6345de4ebfb8d33eaf6f3.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/B/frame_008_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_008_delay-0.01s.png-95e1e9049cc47c6c2553c7efeeb5fc03.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/B/frame_008_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_008_delay-0.01s.png-91c36de324c6345de4ebfb8d33eaf6f3.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_009_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_009_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_009_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_009_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_009_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_009_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_009_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_009_delay-0.01s.png.import index 794d70df..78545716 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_009_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_009_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://c3fqvh0nykviw" -path="res://.godot/imported/frame_009_delay-0.01s.png-132474b6a4a6319fcc095567be0254da.ctex" +path="res://.godot/imported/frame_009_delay-0.01s.png-e72b4b061b4d0bda7d8339c57bab81b6.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/B/frame_009_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_009_delay-0.01s.png-132474b6a4a6319fcc095567be0254da.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/B/frame_009_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_009_delay-0.01s.png-e72b4b061b4d0bda7d8339c57bab81b6.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_010_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_010_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_010_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_010_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_010_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_010_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_010_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_010_delay-0.01s.png.import index 436f5596..f70c6803 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_010_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_010_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://c5esujdn8b37u" -path="res://.godot/imported/frame_010_delay-0.01s.png-854350011ab649b7cb5b1f4ca5a80ce4.ctex" +path="res://.godot/imported/frame_010_delay-0.01s.png-008e9d94adfcb45b5c9c6cadb8ec4ddc.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/B/frame_010_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_010_delay-0.01s.png-854350011ab649b7cb5b1f4ca5a80ce4.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/B/frame_010_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_010_delay-0.01s.png-008e9d94adfcb45b5c9c6cadb8ec4ddc.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_011_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_011_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_011_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_011_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_011_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_011_delay-0.01s.png.import new file mode 100644 index 00000000..73a92d87 --- /dev/null +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_011_delay-0.01s.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://do0irjwtnolk6" +path="res://.godot/imported/frame_011_delay-0.01s.png-cae293a28791aea479ecef820b5100d6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://src/enemy/enemy_types/09. Agni/animations/B/frame_011_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_011_delay-0.01s.png-cae293a28791aea479ecef820b5100d6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_012_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_012_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_012_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_012_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_012_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_012_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_012_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_012_delay-0.01s.png.import index 715764dc..6c5df9d4 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_012_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_012_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://3pu7w2vd575y" -path="res://.godot/imported/frame_012_delay-0.01s.png-0af6d27fe1b1130505ba701b466c836d.ctex" +path="res://.godot/imported/frame_012_delay-0.01s.png-ec9897c1976f689ec76abeef5dc749c6.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/B/frame_012_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_012_delay-0.01s.png-0af6d27fe1b1130505ba701b466c836d.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/B/frame_012_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_012_delay-0.01s.png-ec9897c1976f689ec76abeef5dc749c6.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_013_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_013_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_013_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_013_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_013_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_013_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_013_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_013_delay-0.01s.png.import index 5c829896..c0963e6a 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_013_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_013_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://c02qdei8b784w" -path="res://.godot/imported/frame_013_delay-0.01s.png-f257049cbd3d0e2ad226777614b904ae.ctex" +path="res://.godot/imported/frame_013_delay-0.01s.png-6014d17cfb505b9145f7d18a7df6eb41.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/B/frame_013_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_013_delay-0.01s.png-f257049cbd3d0e2ad226777614b904ae.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/B/frame_013_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_013_delay-0.01s.png-6014d17cfb505b9145f7d18a7df6eb41.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_014_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_014_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_014_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_014_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_014_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_014_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_014_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_014_delay-0.01s.png.import index 816385cc..5519b620 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_014_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_014_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://ddmgt26w3nxdd" -path="res://.godot/imported/frame_014_delay-0.01s.png-7f9e9f91c51601656afe1c6397442bc5.ctex" +path="res://.godot/imported/frame_014_delay-0.01s.png-9940438c4800b52e6ad3496ac2023266.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/B/frame_014_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_014_delay-0.01s.png-7f9e9f91c51601656afe1c6397442bc5.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/B/frame_014_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_014_delay-0.01s.png-9940438c4800b52e6ad3496ac2023266.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_015_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_015_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_015_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_015_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_015_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_015_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_015_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_015_delay-0.01s.png.import index 8912f1a5..45e3f2c3 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_015_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_015_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://bmq0o2eraq1kv" -path="res://.godot/imported/frame_015_delay-0.01s.png-7f44b84c3b089128f836b5a3b76146a0.ctex" +path="res://.godot/imported/frame_015_delay-0.01s.png-e934166f0e905ea06b6aa6401b7c6f11.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/B/frame_015_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_015_delay-0.01s.png-7f44b84c3b089128f836b5a3b76146a0.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/B/frame_015_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_015_delay-0.01s.png-e934166f0e905ea06b6aa6401b7c6f11.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_016_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_016_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_016_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_016_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_016_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_016_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_016_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_016_delay-0.01s.png.import index 1b1076fe..d5247c3d 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_016_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_016_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://b63idehp7dejv" -path="res://.godot/imported/frame_016_delay-0.01s.png-03184cdc0fdeffc3ba8648823328f599.ctex" +path="res://.godot/imported/frame_016_delay-0.01s.png-e050e81bfae0c1c26c8fdfd102ec0641.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/B/frame_016_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_016_delay-0.01s.png-03184cdc0fdeffc3ba8648823328f599.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/B/frame_016_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_016_delay-0.01s.png-e050e81bfae0c1c26c8fdfd102ec0641.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_017_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_017_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_017_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_017_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_017_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_017_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_017_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_017_delay-0.01s.png.import index 81488ed2..2fd960aa 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_017_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_017_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://dmt178ko0eu3m" -path="res://.godot/imported/frame_017_delay-0.01s.png-77149689cf8b8bfb246530fa27396416.ctex" +path="res://.godot/imported/frame_017_delay-0.01s.png-e803bb389811937e39b39f62aec23fd0.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/B/frame_017_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_017_delay-0.01s.png-77149689cf8b8bfb246530fa27396416.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/B/frame_017_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_017_delay-0.01s.png-e803bb389811937e39b39f62aec23fd0.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_018_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_018_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_018_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_018_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_018_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_018_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_018_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_018_delay-0.01s.png.import index f09e366d..3eaa32cd 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_018_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_018_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://5ieleh43ldp0" -path="res://.godot/imported/frame_018_delay-0.01s.png-51df6bc4be4c4a34787603e910f01b5c.ctex" +path="res://.godot/imported/frame_018_delay-0.01s.png-543a5aae45dc69b1017a08414678e6c9.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/B/frame_018_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_018_delay-0.01s.png-51df6bc4be4c4a34787603e910f01b5c.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/B/frame_018_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_018_delay-0.01s.png-543a5aae45dc69b1017a08414678e6c9.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_019_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_019_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_019_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_019_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_019_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_019_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_019_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_019_delay-0.01s.png.import index 34918d80..ad35fdd4 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_019_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_019_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://dre7afnvlxcs3" -path="res://.godot/imported/frame_019_delay-0.01s.png-3ae980dd5355e7a14c0a0eed1aa11339.ctex" +path="res://.godot/imported/frame_019_delay-0.01s.png-907dcf97976a5d40ca35c26c3766ee2f.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/B/frame_019_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_019_delay-0.01s.png-3ae980dd5355e7a14c0a0eed1aa11339.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/B/frame_019_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_019_delay-0.01s.png-907dcf97976a5d40ca35c26c3766ee2f.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_020_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_020_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_020_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_020_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_020_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_020_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_020_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_020_delay-0.01s.png.import index e7693044..1edfdfdb 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_020_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_020_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://pr57d2d141yp" -path="res://.godot/imported/frame_020_delay-0.01s.png-3acb4a01f12e2ecc914d506b79e0fde9.ctex" +path="res://.godot/imported/frame_020_delay-0.01s.png-17080da4a76ae0a9e845553ef625934a.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/B/frame_020_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_020_delay-0.01s.png-3acb4a01f12e2ecc914d506b79e0fde9.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/B/frame_020_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_020_delay-0.01s.png-17080da4a76ae0a9e845553ef625934a.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_021_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_021_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_021_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_021_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_021_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_021_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_021_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_021_delay-0.01s.png.import index 2a766b74..bc89ffeb 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_021_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_021_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://bboqd2pr26m2n" -path="res://.godot/imported/frame_021_delay-0.01s.png-7e20a8e6178811b2d953d5862598aaa9.ctex" +path="res://.godot/imported/frame_021_delay-0.01s.png-a343a5bfb0b9edb6e58f1a95e2f56c2e.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/B/frame_021_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_021_delay-0.01s.png-7e20a8e6178811b2d953d5862598aaa9.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/B/frame_021_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_021_delay-0.01s.png-a343a5bfb0b9edb6e58f1a95e2f56c2e.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_022_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_022_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_022_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_022_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_022_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_022_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_022_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_022_delay-0.01s.png.import index 5994b9d4..5da80421 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_022_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_022_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://br0se4irgyk44" -path="res://.godot/imported/frame_022_delay-0.01s.png-c0c8469e4e38c06721c39f5311024342.ctex" +path="res://.godot/imported/frame_022_delay-0.01s.png-fd4e5efcae11d138336b8670a58251b1.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/B/frame_022_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_022_delay-0.01s.png-c0c8469e4e38c06721c39f5311024342.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/B/frame_022_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_022_delay-0.01s.png-fd4e5efcae11d138336b8670a58251b1.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_023_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_023_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_023_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_023_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_023_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_023_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_023_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_023_delay-0.01s.png.import index 56f16801..cc5d0d57 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_023_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_023_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://byul8xbwy665p" -path="res://.godot/imported/frame_023_delay-0.01s.png-bc880e10ddfeb4390abf44645e7f9615.ctex" +path="res://.godot/imported/frame_023_delay-0.01s.png-7fece46c85868fec0eecc147848e902e.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/B/frame_023_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_023_delay-0.01s.png-bc880e10ddfeb4390abf44645e7f9615.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/B/frame_023_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_023_delay-0.01s.png-7fece46c85868fec0eecc147848e902e.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_024_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_024_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_024_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_024_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_024_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_024_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_024_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_024_delay-0.01s.png.import index c7cc7a28..77bc097b 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_024_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_024_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://tymvatp8x07l" -path="res://.godot/imported/frame_024_delay-0.01s.png-dc50e8c8b3c056d86ffd85f9492ce58f.ctex" +path="res://.godot/imported/frame_024_delay-0.01s.png-88fd0aef5737d32d3551e4e385034192.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/B/frame_024_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_024_delay-0.01s.png-dc50e8c8b3c056d86ffd85f9492ce58f.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/B/frame_024_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_024_delay-0.01s.png-88fd0aef5737d32d3551e4e385034192.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_025_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_025_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_025_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_025_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_025_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_025_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_025_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_025_delay-0.01s.png.import index 085a781b..66649ae8 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_025_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_025_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://cdqv6kmqxcc7a" -path="res://.godot/imported/frame_025_delay-0.01s.png-6e361ef6a7b80f7bd73044216664be96.ctex" +path="res://.godot/imported/frame_025_delay-0.01s.png-e089cf7b3b16f9ecc64083369595f807.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/B/frame_025_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_025_delay-0.01s.png-6e361ef6a7b80f7bd73044216664be96.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/B/frame_025_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_025_delay-0.01s.png-e089cf7b3b16f9ecc64083369595f807.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_026_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_026_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_026_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_026_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_026_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_026_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_026_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_026_delay-0.01s.png.import index bfb6e9e7..96cc5687 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_026_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_026_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://oxtmehmd0bs2" -path="res://.godot/imported/frame_026_delay-0.01s.png-126e8d24f9d412774a1a2740fb0b1f77.ctex" +path="res://.godot/imported/frame_026_delay-0.01s.png-b174e24de81bffe84af45d8dd3cbdd1e.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/B/frame_026_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_026_delay-0.01s.png-126e8d24f9d412774a1a2740fb0b1f77.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/B/frame_026_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_026_delay-0.01s.png-b174e24de81bffe84af45d8dd3cbdd1e.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_027_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_027_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_027_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_027_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_027_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_027_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_027_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_027_delay-0.01s.png.import index 9ca72cb6..e5248c01 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_027_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_027_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://cnaiqs7f0sjj2" -path="res://.godot/imported/frame_027_delay-0.01s.png-386518e10c84f82fbac10faa5c6747d7.ctex" +path="res://.godot/imported/frame_027_delay-0.01s.png-d97d1f959048e26b0675cbc90f00c75d.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/B/frame_027_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_027_delay-0.01s.png-386518e10c84f82fbac10faa5c6747d7.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/B/frame_027_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_027_delay-0.01s.png-d97d1f959048e26b0675cbc90f00c75d.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_028_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_028_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_028_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_028_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_028_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_028_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_028_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_028_delay-0.01s.png.import index ba2b68b7..fa54696e 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_028_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_028_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://dutdhjc47m7xu" -path="res://.godot/imported/frame_028_delay-0.01s.png-0b102a8bf915faa59a488a1d64f22ba5.ctex" +path="res://.godot/imported/frame_028_delay-0.01s.png-a137542b5030e8e43eb4732f4cc36b4e.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/B/frame_028_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_028_delay-0.01s.png-0b102a8bf915faa59a488a1d64f22ba5.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/B/frame_028_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_028_delay-0.01s.png-a137542b5030e8e43eb4732f4cc36b4e.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_029_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_029_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_029_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_029_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_029_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_029_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_029_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_029_delay-0.01s.png.import index bc4e9405..7f565878 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_029_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_029_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://b5jakjdopmwxc" -path="res://.godot/imported/frame_029_delay-0.01s.png-f0788e611c9cc5f907b89c5bd444d694.ctex" +path="res://.godot/imported/frame_029_delay-0.01s.png-a3988cb8cdebfe2c7315bd1295a904c9.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/B/frame_029_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_029_delay-0.01s.png-f0788e611c9cc5f907b89c5bd444d694.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/B/frame_029_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_029_delay-0.01s.png-a3988cb8cdebfe2c7315bd1295a904c9.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_030_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_030_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_030_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_030_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_030_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_030_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_030_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_030_delay-0.01s.png.import index f5311f89..56fe6dcf 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_030_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_030_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://cnied0w8p8kbw" -path="res://.godot/imported/frame_030_delay-0.01s.png-d6540d23331b14b31e5a77a7f1d43a93.ctex" +path="res://.godot/imported/frame_030_delay-0.01s.png-9e828e821178d0ab3c78399cc455b878.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/B/frame_030_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_030_delay-0.01s.png-d6540d23331b14b31e5a77a7f1d43a93.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/B/frame_030_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_030_delay-0.01s.png-9e828e821178d0ab3c78399cc455b878.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_031_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_031_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_031_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_031_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_031_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_031_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_031_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_031_delay-0.01s.png.import index e730b82e..09272675 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_031_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_031_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://g1ahvwq6dqhx" -path="res://.godot/imported/frame_031_delay-0.01s.png-5d8abdb76d734ce5072652bc47a27da3.ctex" +path="res://.godot/imported/frame_031_delay-0.01s.png-c5316f008527cc7924575dafafc263ac.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/B/frame_031_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_031_delay-0.01s.png-5d8abdb76d734ce5072652bc47a27da3.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/B/frame_031_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_031_delay-0.01s.png-c5316f008527cc7924575dafafc263ac.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_032_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_032_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_032_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_032_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_032_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_032_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_032_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_032_delay-0.01s.png.import index b8e00c4e..d1ade2b9 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_032_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_032_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://dd0c4gaeh6myh" -path="res://.godot/imported/frame_032_delay-0.01s.png-db6e00177d176bf938d966d0942e45c2.ctex" +path="res://.godot/imported/frame_032_delay-0.01s.png-51492a7b87b355579cdcc48dbf2192e5.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/B/frame_032_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_032_delay-0.01s.png-db6e00177d176bf938d966d0942e45c2.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/B/frame_032_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_032_delay-0.01s.png-51492a7b87b355579cdcc48dbf2192e5.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_033_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_033_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_033_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_033_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_033_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_033_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_033_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_033_delay-0.01s.png.import index 50beeefa..43e4c6a7 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_033_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_033_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://cgaxxvy3om7md" -path="res://.godot/imported/frame_033_delay-0.01s.png-9d5363f8cefd70c97749bc3660d60e9b.ctex" +path="res://.godot/imported/frame_033_delay-0.01s.png-4f000f61d28fc6c259eddebfc8d5b287.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/B/frame_033_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_033_delay-0.01s.png-9d5363f8cefd70c97749bc3660d60e9b.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/B/frame_033_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_033_delay-0.01s.png-4f000f61d28fc6c259eddebfc8d5b287.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_034_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_034_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_034_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_034_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_034_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_034_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_034_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_034_delay-0.01s.png.import index c3a69a37..e764555c 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_034_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_034_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://b801i5bpfu182" -path="res://.godot/imported/frame_034_delay-0.01s.png-e8d13123633bab0053b6ef27af6a1f2a.ctex" +path="res://.godot/imported/frame_034_delay-0.01s.png-179c484c2bc9d086fc3aba4f48cdfe6e.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/B/frame_034_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_034_delay-0.01s.png-e8d13123633bab0053b6ef27af6a1f2a.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/B/frame_034_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_034_delay-0.01s.png-179c484c2bc9d086fc3aba4f48cdfe6e.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_035_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_035_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_035_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_035_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_035_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_035_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_035_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_035_delay-0.01s.png.import index c46544c4..4f5ee842 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_035_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_035_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://b2exyqsd2ivmg" -path="res://.godot/imported/frame_035_delay-0.01s.png-1784e2ef55c7506925cef93ebe96f0d9.ctex" +path="res://.godot/imported/frame_035_delay-0.01s.png-170a9cdbbf7fbbc49549672743ef62aa.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/B/frame_035_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_035_delay-0.01s.png-1784e2ef55c7506925cef93ebe96f0d9.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/B/frame_035_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_035_delay-0.01s.png-170a9cdbbf7fbbc49549672743ef62aa.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_036_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_036_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_036_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_036_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_036_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_036_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_036_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_036_delay-0.01s.png.import index d612457d..85fe3a06 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_036_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_036_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://b8dd8rwx6sg4j" -path="res://.godot/imported/frame_036_delay-0.01s.png-7c720f0b3da7a97802ee6392686408ce.ctex" +path="res://.godot/imported/frame_036_delay-0.01s.png-f75d8bc2183f809d0087b55d594b6da8.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/B/frame_036_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_036_delay-0.01s.png-7c720f0b3da7a97802ee6392686408ce.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/B/frame_036_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_036_delay-0.01s.png-f75d8bc2183f809d0087b55d594b6da8.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_037_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_037_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_037_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_037_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_037_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_037_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_037_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_037_delay-0.01s.png.import index 7269931d..78ed1b7b 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_037_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_037_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://da6ib32jregio" -path="res://.godot/imported/frame_037_delay-0.01s.png-4f324a7c413b310fa03cbbb61c80f2d5.ctex" +path="res://.godot/imported/frame_037_delay-0.01s.png-dd6f60a57e3020443be9881d4a4a1607.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/B/frame_037_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_037_delay-0.01s.png-4f324a7c413b310fa03cbbb61c80f2d5.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/B/frame_037_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_037_delay-0.01s.png-dd6f60a57e3020443be9881d4a4a1607.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_038_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_038_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_038_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_038_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_038_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_038_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_038_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_038_delay-0.01s.png.import index 96c26b7b..25a9719d 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_038_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_038_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://daoigad46m5r7" -path="res://.godot/imported/frame_038_delay-0.01s.png-f69756827427c038d2921ec695b31eae.ctex" +path="res://.godot/imported/frame_038_delay-0.01s.png-1f18ab4c34c3bdfb8b5691dfaa211959.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/B/frame_038_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_038_delay-0.01s.png-f69756827427c038d2921ec695b31eae.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/B/frame_038_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_038_delay-0.01s.png-1f18ab4c34c3bdfb8b5691dfaa211959.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_039_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_039_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_039_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_039_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_039_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_039_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_039_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_039_delay-0.01s.png.import index 2b7d5c00..237d6dfb 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_039_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_039_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://c7x4h8taadc7q" -path="res://.godot/imported/frame_039_delay-0.01s.png-2319b66335ca3f2a9455ce22b7854b2e.ctex" +path="res://.godot/imported/frame_039_delay-0.01s.png-48a96484036955062e8bf0a6642800b5.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/B/frame_039_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_039_delay-0.01s.png-2319b66335ca3f2a9455ce22b7854b2e.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/B/frame_039_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_039_delay-0.01s.png-48a96484036955062e8bf0a6642800b5.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_040_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_040_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_040_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_040_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_040_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_040_delay-0.01s.png.import new file mode 100644 index 00000000..81fbd397 --- /dev/null +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_040_delay-0.01s.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cuh0nnnr8fh5n" +path="res://.godot/imported/frame_040_delay-0.01s.png-adb58072a52a867101300c0ff4a83bf6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://src/enemy/enemy_types/09. Agni/animations/B/frame_040_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_040_delay-0.01s.png-adb58072a52a867101300c0ff4a83bf6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_041_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_041_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_041_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_041_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_041_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_041_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_041_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_041_delay-0.01s.png.import index ce3dc375..7d9e1d9f 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_041_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_041_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://bf5kdfwilr6ya" -path="res://.godot/imported/frame_041_delay-0.01s.png-cfb5ad9f46c0968d40936ad2ed043b83.ctex" +path="res://.godot/imported/frame_041_delay-0.01s.png-0078c0c68d4bb536fa394777f3387448.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/B/frame_041_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_041_delay-0.01s.png-cfb5ad9f46c0968d40936ad2ed043b83.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/B/frame_041_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_041_delay-0.01s.png-0078c0c68d4bb536fa394777f3387448.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_042_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_042_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_042_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_042_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_042_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_042_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_042_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_042_delay-0.01s.png.import index 2d70853c..1303e84a 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_042_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_042_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://dyiwhim3wvswi" -path="res://.godot/imported/frame_042_delay-0.01s.png-2323b7a7937b0800ce27beb7b2e1e44d.ctex" +path="res://.godot/imported/frame_042_delay-0.01s.png-b5d088bdec5557f9b46e495c7e94b291.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/B/frame_042_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_042_delay-0.01s.png-2323b7a7937b0800ce27beb7b2e1e44d.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/B/frame_042_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_042_delay-0.01s.png-b5d088bdec5557f9b46e495c7e94b291.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_043_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_043_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_043_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_043_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_043_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_043_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_043_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_043_delay-0.01s.png.import index d0002e2a..0ae13401 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_043_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_043_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://djub3mqokrsah" -path="res://.godot/imported/frame_043_delay-0.01s.png-35d6d9f3c07538b38b13daf1ec64195f.ctex" +path="res://.godot/imported/frame_043_delay-0.01s.png-ebd63e5c59e3b1b21b39a6dcc5071ed2.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/B/frame_043_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_043_delay-0.01s.png-35d6d9f3c07538b38b13daf1ec64195f.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/B/frame_043_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_043_delay-0.01s.png-ebd63e5c59e3b1b21b39a6dcc5071ed2.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_044_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_044_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_044_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_044_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_044_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_044_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_044_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_044_delay-0.01s.png.import index 2d5c9658..fad998a3 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_044_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_044_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://bswigd6i6imr6" -path="res://.godot/imported/frame_044_delay-0.01s.png-62b20bb600a5eb9ce99fba873a1739cb.ctex" +path="res://.godot/imported/frame_044_delay-0.01s.png-a36ff76cb90e3ec28e865ac9564f84f7.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/B/frame_044_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_044_delay-0.01s.png-62b20bb600a5eb9ce99fba873a1739cb.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/B/frame_044_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_044_delay-0.01s.png-a36ff76cb90e3ec28e865ac9564f84f7.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_045_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_045_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_045_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_045_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_045_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_045_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_045_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_045_delay-0.01s.png.import index 2c799a93..02a2b96f 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_045_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_045_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://xye8vid2gwu7" -path="res://.godot/imported/frame_045_delay-0.01s.png-f725ed8b5a391f906d5c7311f5372554.ctex" +path="res://.godot/imported/frame_045_delay-0.01s.png-e3a32d348ff6025c51aed6c29b7b79a6.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/B/frame_045_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_045_delay-0.01s.png-f725ed8b5a391f906d5c7311f5372554.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/B/frame_045_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_045_delay-0.01s.png-e3a32d348ff6025c51aed6c29b7b79a6.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_046_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_046_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_046_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_046_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_046_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_046_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_046_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_046_delay-0.01s.png.import index 2476059f..d60b7963 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_046_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_046_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://ijh2fljvnm71" -path="res://.godot/imported/frame_046_delay-0.01s.png-22f9ed776a6f84b32709fcbf740bbf49.ctex" +path="res://.godot/imported/frame_046_delay-0.01s.png-92c00835a303cf26950970b4a629715a.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/B/frame_046_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_046_delay-0.01s.png-22f9ed776a6f84b32709fcbf740bbf49.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/B/frame_046_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_046_delay-0.01s.png-92c00835a303cf26950970b4a629715a.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_047_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_047_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_047_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_047_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_047_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_047_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_047_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_047_delay-0.01s.png.import index 3ab12014..12fc0e31 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_047_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_047_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://d0w8sjn85ag4l" -path="res://.godot/imported/frame_047_delay-0.01s.png-d88d5ffd3798b6a9f6bfcec1caf1fa99.ctex" +path="res://.godot/imported/frame_047_delay-0.01s.png-9fdb37e5d5d38d10c630dc449900d881.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/B/frame_047_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_047_delay-0.01s.png-d88d5ffd3798b6a9f6bfcec1caf1fa99.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/B/frame_047_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_047_delay-0.01s.png-9fdb37e5d5d38d10c630dc449900d881.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_048_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_048_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_048_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_048_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_048_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_048_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_048_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_048_delay-0.01s.png.import index ff5546a4..95d7f03e 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_048_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_048_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://byfv8wk0tpvx6" -path="res://.godot/imported/frame_048_delay-0.01s.png-cc34c998aa1e5ec481742e9e4b9301b6.ctex" +path="res://.godot/imported/frame_048_delay-0.01s.png-a7ef01c9329b419f00e0ecef7c1b41ff.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/B/frame_048_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_048_delay-0.01s.png-cc34c998aa1e5ec481742e9e4b9301b6.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/B/frame_048_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_048_delay-0.01s.png-a7ef01c9329b419f00e0ecef7c1b41ff.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_049_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_049_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_049_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_049_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_049_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_049_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_049_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_049_delay-0.01s.png.import index 7276b3a0..ac442c99 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_049_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_049_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://tjsbavwakv4p" -path="res://.godot/imported/frame_049_delay-0.01s.png-fb7400cf5c9bf589b8b452520200677f.ctex" +path="res://.godot/imported/frame_049_delay-0.01s.png-0c5aebb210d108787b55cfe5a0ab7647.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/B/frame_049_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_049_delay-0.01s.png-fb7400cf5c9bf589b8b452520200677f.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/B/frame_049_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_049_delay-0.01s.png-0c5aebb210d108787b55cfe5a0ab7647.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_050_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_050_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_050_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_050_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_050_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_050_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_050_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_050_delay-0.01s.png.import index 32ce0bca..1f7d0dc1 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_050_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_050_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://7m33c1vq8wpd" -path="res://.godot/imported/frame_050_delay-0.01s.png-92ebd8e740ea55d2a800ed0b90ca65c3.ctex" +path="res://.godot/imported/frame_050_delay-0.01s.png-2830c0e8bf9efed88a2527c6b216e7df.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/B/frame_050_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_050_delay-0.01s.png-92ebd8e740ea55d2a800ed0b90ca65c3.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/B/frame_050_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_050_delay-0.01s.png-2830c0e8bf9efed88a2527c6b216e7df.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_051_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_051_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_051_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_051_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_051_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_051_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_051_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_051_delay-0.01s.png.import index 1355ead9..56ebc082 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_051_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_051_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://yonawivlsxw8" -path="res://.godot/imported/frame_051_delay-0.01s.png-e55834ffaf4c346951e014b221530619.ctex" +path="res://.godot/imported/frame_051_delay-0.01s.png-7466d325d7c50912d7276213cb08e661.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/B/frame_051_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_051_delay-0.01s.png-e55834ffaf4c346951e014b221530619.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/B/frame_051_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_051_delay-0.01s.png-7466d325d7c50912d7276213cb08e661.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_052_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_052_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_052_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_052_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_052_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_052_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_052_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_052_delay-0.01s.png.import index 5200b925..b200c4db 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_052_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_052_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://upubey1mdv1j" -path="res://.godot/imported/frame_052_delay-0.01s.png-294d70e9c0d57027441443d11e9fa0f5.ctex" +path="res://.godot/imported/frame_052_delay-0.01s.png-f8b1ac1ddc173e5da99a0993c9c3cdb4.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/B/frame_052_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_052_delay-0.01s.png-294d70e9c0d57027441443d11e9fa0f5.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/B/frame_052_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_052_delay-0.01s.png-f8b1ac1ddc173e5da99a0993c9c3cdb4.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_053_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_053_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_053_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_053_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_053_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_053_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_053_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_053_delay-0.01s.png.import index 01a11e66..86cb3d5f 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_053_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_053_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://cqivol75efl7e" -path="res://.godot/imported/frame_053_delay-0.01s.png-b97f372d1f4236bc93ae32ef8a25fdda.ctex" +path="res://.godot/imported/frame_053_delay-0.01s.png-2261140647991e2b1049243bf76da335.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/B/frame_053_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_053_delay-0.01s.png-b97f372d1f4236bc93ae32ef8a25fdda.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/B/frame_053_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_053_delay-0.01s.png-2261140647991e2b1049243bf76da335.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_054_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_054_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_054_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_054_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_054_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_054_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_054_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_054_delay-0.01s.png.import index ab082bf0..1a7040da 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_054_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_054_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://bw8wp2eykxomv" -path="res://.godot/imported/frame_054_delay-0.01s.png-926bfcec2c3d4b902352e19311ea8824.ctex" +path="res://.godot/imported/frame_054_delay-0.01s.png-0a97972449aa37233f3356e844955376.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/B/frame_054_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_054_delay-0.01s.png-926bfcec2c3d4b902352e19311ea8824.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/B/frame_054_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_054_delay-0.01s.png-0a97972449aa37233f3356e844955376.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_055_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_055_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_055_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_055_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_055_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_055_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_055_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_055_delay-0.01s.png.import index e013c58c..bbc72234 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_055_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_055_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://cer3jbxufrjh6" -path="res://.godot/imported/frame_055_delay-0.01s.png-4efe50f42111c40aa3e7fcb283b53b23.ctex" +path="res://.godot/imported/frame_055_delay-0.01s.png-32231f7f280befcd7eb5b79847687f94.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/B/frame_055_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_055_delay-0.01s.png-4efe50f42111c40aa3e7fcb283b53b23.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/B/frame_055_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_055_delay-0.01s.png-32231f7f280befcd7eb5b79847687f94.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_056_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_056_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_056_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_056_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_056_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_056_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_056_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_056_delay-0.01s.png.import index 37083f0f..38ca4c05 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_056_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_056_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://coo801128p5qu" -path="res://.godot/imported/frame_056_delay-0.01s.png-d0fc2f8a041d67e62c00825e3742a1cc.ctex" +path="res://.godot/imported/frame_056_delay-0.01s.png-5abc31d5630a3839618ce169ab23b8c1.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/B/frame_056_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_056_delay-0.01s.png-d0fc2f8a041d67e62c00825e3742a1cc.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/B/frame_056_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_056_delay-0.01s.png-5abc31d5630a3839618ce169ab23b8c1.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_057_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_057_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_057_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_057_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_057_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_057_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_057_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_057_delay-0.01s.png.import index 5bd8251e..ba91270a 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_057_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_057_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://dcnwq7i301wi1" -path="res://.godot/imported/frame_057_delay-0.01s.png-6b35a5ca6e50fa9fdc7355aac469d603.ctex" +path="res://.godot/imported/frame_057_delay-0.01s.png-b8f55e07ea59e92134f91a4418c92a10.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/B/frame_057_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_057_delay-0.01s.png-6b35a5ca6e50fa9fdc7355aac469d603.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/B/frame_057_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_057_delay-0.01s.png-b8f55e07ea59e92134f91a4418c92a10.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_058_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_058_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_058_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_058_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_058_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_058_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_058_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_058_delay-0.01s.png.import index 8986217e..07527ce4 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_058_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_058_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://ba4n5wqsce0it" -path="res://.godot/imported/frame_058_delay-0.01s.png-0846bc18a8599766a7bbec8600efd256.ctex" +path="res://.godot/imported/frame_058_delay-0.01s.png-d31a01e8bba36cceb6b48f0c14d31bde.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/B/frame_058_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_058_delay-0.01s.png-0846bc18a8599766a7bbec8600efd256.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/B/frame_058_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_058_delay-0.01s.png-d31a01e8bba36cceb6b48f0c14d31bde.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_059_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_059_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_059_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_059_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_059_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_059_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_059_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_059_delay-0.01s.png.import index ac7b80c1..85445ca9 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_059_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_059_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://i4lvorh314wg" -path="res://.godot/imported/frame_059_delay-0.01s.png-c1f2395944314609c054af18a4e89584.ctex" +path="res://.godot/imported/frame_059_delay-0.01s.png-9ca97086b260629e9e052e5ae1aa7a21.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/B/frame_059_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_059_delay-0.01s.png-c1f2395944314609c054af18a4e89584.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/B/frame_059_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_059_delay-0.01s.png-9ca97086b260629e9e052e5ae1aa7a21.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_060_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_060_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_060_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_060_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_060_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_060_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_060_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_060_delay-0.01s.png.import index 229f4931..89d4a6c2 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_060_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_060_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://cd7nn88sgtpjk" -path="res://.godot/imported/frame_060_delay-0.01s.png-59893bade728d3aeee6c44275d8f2a13.ctex" +path="res://.godot/imported/frame_060_delay-0.01s.png-e736fb7eaffdb8fe2297776435d6fed0.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/B/frame_060_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_060_delay-0.01s.png-59893bade728d3aeee6c44275d8f2a13.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/B/frame_060_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_060_delay-0.01s.png-e736fb7eaffdb8fe2297776435d6fed0.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_061_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_061_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_061_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_061_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_061_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_061_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_061_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_061_delay-0.01s.png.import index 00adecb7..268f0c0b 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_061_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_061_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://dva8p0spra58" -path="res://.godot/imported/frame_061_delay-0.01s.png-691166f6718abd07d6402a8a07d2d35f.ctex" +path="res://.godot/imported/frame_061_delay-0.01s.png-8d4417f4b24058e3201ddeaeb213ce9a.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/B/frame_061_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_061_delay-0.01s.png-691166f6718abd07d6402a8a07d2d35f.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/B/frame_061_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_061_delay-0.01s.png-8d4417f4b24058e3201ddeaeb213ce9a.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_062_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_062_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_062_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_062_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_062_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_062_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_062_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_062_delay-0.01s.png.import index 227af9a8..75f19bd8 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_062_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_062_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://d1xbn8exh5tb1" -path="res://.godot/imported/frame_062_delay-0.01s.png-220f53630486b792f5408fab60702ef8.ctex" +path="res://.godot/imported/frame_062_delay-0.01s.png-ae15c1c7116c81e71fd81aa261650f74.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/B/frame_062_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_062_delay-0.01s.png-220f53630486b792f5408fab60702ef8.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/B/frame_062_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_062_delay-0.01s.png-ae15c1c7116c81e71fd81aa261650f74.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_063_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_063_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_063_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_063_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_063_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_063_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_063_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_063_delay-0.01s.png.import index e0bda872..320871df 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_063_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_063_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://bjfnwipb0hn65" -path="res://.godot/imported/frame_063_delay-0.01s.png-07756b19326cde2bf0f0c6e7d30629ca.ctex" +path="res://.godot/imported/frame_063_delay-0.01s.png-df3b83d617c45f5e88a3a8798782ddf9.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/B/frame_063_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_063_delay-0.01s.png-07756b19326cde2bf0f0c6e7d30629ca.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/B/frame_063_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_063_delay-0.01s.png-df3b83d617c45f5e88a3a8798782ddf9.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_064_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_064_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_064_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_064_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_064_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_064_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_064_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_064_delay-0.01s.png.import index d3953475..209707a5 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_064_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_064_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://ctrgsiskd1frx" -path="res://.godot/imported/frame_064_delay-0.01s.png-894a75e93b2ed653e502b6fbe7dd5514.ctex" +path="res://.godot/imported/frame_064_delay-0.01s.png-aaa6fae6ec5fa82ac21d525416515264.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/B/frame_064_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_064_delay-0.01s.png-894a75e93b2ed653e502b6fbe7dd5514.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/B/frame_064_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_064_delay-0.01s.png-aaa6fae6ec5fa82ac21d525416515264.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_065_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_065_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_065_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_065_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_065_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_065_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_065_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_065_delay-0.01s.png.import index d2fa541a..5198ebd9 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_065_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/B/frame_065_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://cwi6ydmtmaddp" -path="res://.godot/imported/frame_065_delay-0.01s.png-b4ab4084ab5657fd918c9c31ebe9a6be.ctex" +path="res://.godot/imported/frame_065_delay-0.01s.png-8a36a61301173ec5cd6ed4ae1988806c.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/B/frame_065_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_065_delay-0.01s.png-b4ab4084ab5657fd918c9c31ebe9a6be.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/B/frame_065_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_065_delay-0.01s.png-8a36a61301173ec5cd6ed4ae1988806c.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_066_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_066_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_066_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_066_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_066_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_066_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_066_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_066_delay-0.01s.png.import index fafee149..afb1baed 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_066_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_066_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://bdhmqyiad52ea" -path="res://.godot/imported/frame_066_delay-0.01s.png-a2d470f5ab38c3cee64170a39ff3a44a.ctex" +path="res://.godot/imported/frame_066_delay-0.01s.png-125081549805424555eba671f2f3dcc7.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/F/frame_066_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_066_delay-0.01s.png-a2d470f5ab38c3cee64170a39ff3a44a.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/F/frame_066_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_066_delay-0.01s.png-125081549805424555eba671f2f3dcc7.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_067_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_067_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_067_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_067_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_067_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_067_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_067_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_067_delay-0.01s.png.import index 069bcd33..070d7c26 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_067_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_067_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://d11ep3xldfmpw" -path="res://.godot/imported/frame_067_delay-0.01s.png-d0c95dccd247a11fbc03392913a9dc5c.ctex" +path="res://.godot/imported/frame_067_delay-0.01s.png-4bac75706a175136a01a1e6799bfeb0e.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/F/frame_067_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_067_delay-0.01s.png-d0c95dccd247a11fbc03392913a9dc5c.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/F/frame_067_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_067_delay-0.01s.png-4bac75706a175136a01a1e6799bfeb0e.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_068_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_068_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_068_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_068_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_068_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_068_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_068_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_068_delay-0.01s.png.import index 0daf6dc7..07ed7609 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_068_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_068_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://b5nxnpkd0ua31" -path="res://.godot/imported/frame_068_delay-0.01s.png-6df5274923d6c5ec9628acf4638c479c.ctex" +path="res://.godot/imported/frame_068_delay-0.01s.png-52090296fdad56bd6aa6a40b6c283635.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/F/frame_068_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_068_delay-0.01s.png-6df5274923d6c5ec9628acf4638c479c.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/F/frame_068_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_068_delay-0.01s.png-52090296fdad56bd6aa6a40b6c283635.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_069_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_069_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_069_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_069_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_069_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_069_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_069_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_069_delay-0.01s.png.import index 7fe59afb..108a0e02 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_069_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_069_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://xcsacohbrrm6" -path="res://.godot/imported/frame_069_delay-0.01s.png-bc2daf7bd7f5dd992ae9a11f898d30fe.ctex" +path="res://.godot/imported/frame_069_delay-0.01s.png-c16c2939a0126d36f876281ff97683f6.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/F/frame_069_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_069_delay-0.01s.png-bc2daf7bd7f5dd992ae9a11f898d30fe.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/F/frame_069_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_069_delay-0.01s.png-c16c2939a0126d36f876281ff97683f6.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_070_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_070_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_070_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_070_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_070_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_070_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_070_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_070_delay-0.01s.png.import index 5f673374..1b2540bd 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_070_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_070_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://co7t2phmmlon6" -path="res://.godot/imported/frame_070_delay-0.01s.png-21cf1d11804e74b5c0fb3c4b5c36cea2.ctex" +path="res://.godot/imported/frame_070_delay-0.01s.png-a4258fb4411279585ff4ff8e04a3b4e0.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/F/frame_070_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_070_delay-0.01s.png-21cf1d11804e74b5c0fb3c4b5c36cea2.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/F/frame_070_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_070_delay-0.01s.png-a4258fb4411279585ff4ff8e04a3b4e0.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_071_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_071_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_071_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_071_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_071_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_071_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_071_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_071_delay-0.01s.png.import index 29dcc83d..461de5c0 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_071_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_071_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://gq50rdbmi7sk" -path="res://.godot/imported/frame_071_delay-0.01s.png-473069176fa0e347956c21480f99075b.ctex" +path="res://.godot/imported/frame_071_delay-0.01s.png-550b6d74735e46037d995dbde5daaa22.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/F/frame_071_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_071_delay-0.01s.png-473069176fa0e347956c21480f99075b.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/F/frame_071_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_071_delay-0.01s.png-550b6d74735e46037d995dbde5daaa22.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_072_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_072_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_072_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_072_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_072_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_072_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_072_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_072_delay-0.01s.png.import index 22a6fb1f..a79dbe53 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_072_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_072_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://dmcyc2jqdohid" -path="res://.godot/imported/frame_072_delay-0.01s.png-0505aa5bf7e00a6f67cbb0fc2f4dfa54.ctex" +path="res://.godot/imported/frame_072_delay-0.01s.png-af7f73d8a65c298bbac6502c873c81a8.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/F/frame_072_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_072_delay-0.01s.png-0505aa5bf7e00a6f67cbb0fc2f4dfa54.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/F/frame_072_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_072_delay-0.01s.png-af7f73d8a65c298bbac6502c873c81a8.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_073_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_073_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_073_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_073_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_073_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_073_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_073_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_073_delay-0.01s.png.import index fc1c1587..76afd803 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_073_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_073_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://4csp7iopj1h8" -path="res://.godot/imported/frame_073_delay-0.01s.png-3f0a0bbba7912c0bf065abd130aa6e8f.ctex" +path="res://.godot/imported/frame_073_delay-0.01s.png-95c01057cf6eeae9b39fcbe2fe60ce55.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/F/frame_073_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_073_delay-0.01s.png-3f0a0bbba7912c0bf065abd130aa6e8f.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/F/frame_073_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_073_delay-0.01s.png-95c01057cf6eeae9b39fcbe2fe60ce55.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_074_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_074_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_074_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_074_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_074_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_074_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_074_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_074_delay-0.01s.png.import index 21a46883..e013b4be 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_074_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_074_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://c2n52kxmhd0vb" -path="res://.godot/imported/frame_074_delay-0.01s.png-a7b0974b151dfb187d367a512a921767.ctex" +path="res://.godot/imported/frame_074_delay-0.01s.png-63869103988f6cb644c26d85107f7643.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/F/frame_074_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_074_delay-0.01s.png-a7b0974b151dfb187d367a512a921767.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/F/frame_074_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_074_delay-0.01s.png-63869103988f6cb644c26d85107f7643.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_075_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_075_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_075_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_075_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_075_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_075_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_075_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_075_delay-0.01s.png.import index 6279b000..675ceea4 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_075_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_075_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://dlkxr7kr6vb6j" -path="res://.godot/imported/frame_075_delay-0.01s.png-87cfc59859ad7cdadd04439fb99096a2.ctex" +path="res://.godot/imported/frame_075_delay-0.01s.png-e364eadb449ce0f1f8e89087d640abc1.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/F/frame_075_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_075_delay-0.01s.png-87cfc59859ad7cdadd04439fb99096a2.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/F/frame_075_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_075_delay-0.01s.png-e364eadb449ce0f1f8e89087d640abc1.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_076_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_076_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_076_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_076_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_076_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_076_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_076_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_076_delay-0.01s.png.import index 07e83a32..67350564 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_076_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_076_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://dfmbe44w8hqlg" -path="res://.godot/imported/frame_076_delay-0.01s.png-39a966ea4d751b8f9283897dca703b55.ctex" +path="res://.godot/imported/frame_076_delay-0.01s.png-a9817b0263e52e6e61de98c17b3248cc.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/F/frame_076_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_076_delay-0.01s.png-39a966ea4d751b8f9283897dca703b55.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/F/frame_076_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_076_delay-0.01s.png-a9817b0263e52e6e61de98c17b3248cc.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_077_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_077_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_077_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_077_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_077_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_077_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_077_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_077_delay-0.01s.png.import index 76030b79..7cbc7903 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_077_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_077_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://c1v3bfx4ucesp" -path="res://.godot/imported/frame_077_delay-0.01s.png-577cecd3fca2cd026b50fe84a035c7c0.ctex" +path="res://.godot/imported/frame_077_delay-0.01s.png-c561d7709bce8ec18ed789194ec24cb7.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/F/frame_077_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_077_delay-0.01s.png-577cecd3fca2cd026b50fe84a035c7c0.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/F/frame_077_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_077_delay-0.01s.png-c561d7709bce8ec18ed789194ec24cb7.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_078_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_078_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_078_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_078_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_078_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_078_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_078_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_078_delay-0.01s.png.import index db244fc2..18da8af7 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_078_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_078_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://sv41es0jbpsh" -path="res://.godot/imported/frame_078_delay-0.01s.png-54e812c37e412dd5363bbcd29cf21f90.ctex" +path="res://.godot/imported/frame_078_delay-0.01s.png-92d9561cc3c04c46589cc0343575be4d.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/F/frame_078_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_078_delay-0.01s.png-54e812c37e412dd5363bbcd29cf21f90.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/F/frame_078_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_078_delay-0.01s.png-92d9561cc3c04c46589cc0343575be4d.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_079_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_079_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_079_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_079_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_079_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_079_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_079_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_079_delay-0.01s.png.import index 33e35f23..470d9b9c 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_079_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_079_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://chp1wcndee3th" -path="res://.godot/imported/frame_079_delay-0.01s.png-da761e5c2f677d92b4641d973be92497.ctex" +path="res://.godot/imported/frame_079_delay-0.01s.png-6b95f9a39d1e77724ed6f9fa513d69d9.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/F/frame_079_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_079_delay-0.01s.png-da761e5c2f677d92b4641d973be92497.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/F/frame_079_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_079_delay-0.01s.png-6b95f9a39d1e77724ed6f9fa513d69d9.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_080_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_080_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_080_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_080_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_080_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_080_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_080_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_080_delay-0.01s.png.import index 7c4a9659..b2381e91 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_080_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_080_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://fdahurlbi6qo" -path="res://.godot/imported/frame_080_delay-0.01s.png-689508332c448fdda301edcc1cf5d248.ctex" +path="res://.godot/imported/frame_080_delay-0.01s.png-0d169e7a584f08fafae80bd866f75c66.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/F/frame_080_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_080_delay-0.01s.png-689508332c448fdda301edcc1cf5d248.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/F/frame_080_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_080_delay-0.01s.png-0d169e7a584f08fafae80bd866f75c66.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_081_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_081_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_081_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_081_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_081_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_081_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_081_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_081_delay-0.01s.png.import index a918cd8b..eab29bed 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_081_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_081_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://df01ngt250q23" -path="res://.godot/imported/frame_081_delay-0.01s.png-c7985f74d20549f3ba969c85383b34cb.ctex" +path="res://.godot/imported/frame_081_delay-0.01s.png-fd9e0a2529c7d7c5c09c91b195c5fd8a.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/F/frame_081_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_081_delay-0.01s.png-c7985f74d20549f3ba969c85383b34cb.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/F/frame_081_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_081_delay-0.01s.png-fd9e0a2529c7d7c5c09c91b195c5fd8a.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_082_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_082_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_082_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_082_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_082_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_082_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_082_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_082_delay-0.01s.png.import index 3081ec5c..0955b4af 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_082_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_082_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://doxughhfcyl6j" -path="res://.godot/imported/frame_082_delay-0.01s.png-730472d193b8585a4d6f751530c0243e.ctex" +path="res://.godot/imported/frame_082_delay-0.01s.png-aeee30b5aaafdf4d8173c039429b827a.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/F/frame_082_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_082_delay-0.01s.png-730472d193b8585a4d6f751530c0243e.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/F/frame_082_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_082_delay-0.01s.png-aeee30b5aaafdf4d8173c039429b827a.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_083_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_083_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_083_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_083_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_083_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_083_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_083_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_083_delay-0.01s.png.import index c9d75112..800d05bf 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_083_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_083_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://c3sv0vwvn70us" -path="res://.godot/imported/frame_083_delay-0.01s.png-036cd1ed63523928f5663494217974f5.ctex" +path="res://.godot/imported/frame_083_delay-0.01s.png-0699ec453646e698d4eca77aa4e520c2.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/F/frame_083_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_083_delay-0.01s.png-036cd1ed63523928f5663494217974f5.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/F/frame_083_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_083_delay-0.01s.png-0699ec453646e698d4eca77aa4e520c2.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_084_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_084_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_084_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_084_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_084_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_084_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_084_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_084_delay-0.01s.png.import index 8022a528..d014e68d 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_084_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_084_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://7xn7dudypkrk" -path="res://.godot/imported/frame_084_delay-0.01s.png-75973adcd910035edc08c13d721e0a11.ctex" +path="res://.godot/imported/frame_084_delay-0.01s.png-aec650f74db42fae8db85a1fbca9700a.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/F/frame_084_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_084_delay-0.01s.png-75973adcd910035edc08c13d721e0a11.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/F/frame_084_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_084_delay-0.01s.png-aec650f74db42fae8db85a1fbca9700a.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_085_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_085_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_085_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_085_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_085_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_085_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_085_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_085_delay-0.01s.png.import index 7804f440..c2782c1c 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_085_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_085_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://13fl1yuo166w" -path="res://.godot/imported/frame_085_delay-0.01s.png-19617d28b4f32264e4792ec167a3eaad.ctex" +path="res://.godot/imported/frame_085_delay-0.01s.png-46e96130894d195f959925d6d375c56a.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/F/frame_085_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_085_delay-0.01s.png-19617d28b4f32264e4792ec167a3eaad.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/F/frame_085_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_085_delay-0.01s.png-46e96130894d195f959925d6d375c56a.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_086_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_086_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_086_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_086_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_086_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_086_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_086_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_086_delay-0.01s.png.import index d549c17a..cbf9d067 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_086_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_086_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://cg07jeigsoqb8" -path="res://.godot/imported/frame_086_delay-0.01s.png-0907ae93df1193d2958b3b460f932cf8.ctex" +path="res://.godot/imported/frame_086_delay-0.01s.png-38bf45f1829255778187a65a5198923b.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/F/frame_086_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_086_delay-0.01s.png-0907ae93df1193d2958b3b460f932cf8.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/F/frame_086_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_086_delay-0.01s.png-38bf45f1829255778187a65a5198923b.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_087_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_087_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_087_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_087_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_087_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_087_delay-0.01s.png.import new file mode 100644 index 00000000..fd4e4171 --- /dev/null +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_087_delay-0.01s.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d2n7d6ee17ky4" +path="res://.godot/imported/frame_087_delay-0.01s.png-c73a6946c0cacc1b793d5d13518dd7f6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://src/enemy/enemy_types/09. Agni/animations/F/frame_087_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_087_delay-0.01s.png-c73a6946c0cacc1b793d5d13518dd7f6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_088_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_088_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_088_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_088_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_011_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_088_delay-0.01s.png.import similarity index 67% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_011_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_088_delay-0.01s.png.import index a48b8a0d..1995cd75 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_011_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_088_delay-0.01s.png.import @@ -2,16 +2,16 @@ importer="texture" type="CompressedTexture2D" -uid="uid://do0irjwtnolk6" -path="res://.godot/imported/frame_011_delay-0.01s.png-b6148627f9b44bb6351352f1821565e2.ctex" +uid="uid://by0ir4chxvpuc" +path="res://.godot/imported/frame_088_delay-0.01s.png-423e5819421680817e01faeb6036f4b2.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/B/frame_011_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_011_delay-0.01s.png-b6148627f9b44bb6351352f1821565e2.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/F/frame_088_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_088_delay-0.01s.png-423e5819421680817e01faeb6036f4b2.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_089_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_089_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_089_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_089_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_089_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_089_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_089_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_089_delay-0.01s.png.import index ce743ee3..45f06d59 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_089_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_089_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://bck0afl1e0tl4" -path="res://.godot/imported/frame_089_delay-0.01s.png-d3a803bbd799c3a48ede90732730e7ec.ctex" +path="res://.godot/imported/frame_089_delay-0.01s.png-044b3b09b38f160c7324e96ac8324703.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/F/frame_089_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_089_delay-0.01s.png-d3a803bbd799c3a48ede90732730e7ec.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/F/frame_089_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_089_delay-0.01s.png-044b3b09b38f160c7324e96ac8324703.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_090_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_090_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_090_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_090_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_090_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_090_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_090_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_090_delay-0.01s.png.import index 46132212..c543718e 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_090_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_090_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://di5p0wuw6gafa" -path="res://.godot/imported/frame_090_delay-0.01s.png-91a747e4234359d3b3f061992b27c87f.ctex" +path="res://.godot/imported/frame_090_delay-0.01s.png-f2c4ccc8ba9da4bf1ff0aaa7669a4f1d.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/F/frame_090_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_090_delay-0.01s.png-91a747e4234359d3b3f061992b27c87f.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/F/frame_090_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_090_delay-0.01s.png-f2c4ccc8ba9da4bf1ff0aaa7669a4f1d.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_091_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_091_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_091_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_091_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_091_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_091_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_091_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_091_delay-0.01s.png.import index b4d0348f..4cd99a3c 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_091_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_091_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://dco80dgth7qdb" -path="res://.godot/imported/frame_091_delay-0.01s.png-d67143c2b790316cd0d47f65d0b1565f.ctex" +path="res://.godot/imported/frame_091_delay-0.01s.png-5c3d9982899b1a2461c4ed7f4f734210.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/F/frame_091_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_091_delay-0.01s.png-d67143c2b790316cd0d47f65d0b1565f.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/F/frame_091_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_091_delay-0.01s.png-5c3d9982899b1a2461c4ed7f4f734210.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_092_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_092_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_092_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_092_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_092_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_092_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_092_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_092_delay-0.01s.png.import index a7092d3b..1dd30b8f 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_092_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_092_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://dsc72x737trct" -path="res://.godot/imported/frame_092_delay-0.01s.png-24282b4e65c89896387bf7b4f0127b14.ctex" +path="res://.godot/imported/frame_092_delay-0.01s.png-259a544b2990a7dd842ba4544bd64ea0.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/F/frame_092_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_092_delay-0.01s.png-24282b4e65c89896387bf7b4f0127b14.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/F/frame_092_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_092_delay-0.01s.png-259a544b2990a7dd842ba4544bd64ea0.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_093_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_093_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_093_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_093_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_093_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_093_delay-0.01s.png.import new file mode 100644 index 00000000..19db1f82 --- /dev/null +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_093_delay-0.01s.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d348miaak1mpu" +path="res://.godot/imported/frame_093_delay-0.01s.png-fa6758d495368b99e2abcbb9e83a1f60.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://src/enemy/enemy_types/09. Agni/animations/F/frame_093_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_093_delay-0.01s.png-fa6758d495368b99e2abcbb9e83a1f60.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_094_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_094_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_094_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_094_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_094_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_094_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_094_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_094_delay-0.01s.png.import index 066ec72f..9654ef10 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_094_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_094_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://o2q0u8ns00mf" -path="res://.godot/imported/frame_094_delay-0.01s.png-ec61f4dad2593ce7b44f6f5928ca35b5.ctex" +path="res://.godot/imported/frame_094_delay-0.01s.png-21ebcef9a0bff3afe562a9be6a5dcec2.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/F/frame_094_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_094_delay-0.01s.png-ec61f4dad2593ce7b44f6f5928ca35b5.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/F/frame_094_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_094_delay-0.01s.png-21ebcef9a0bff3afe562a9be6a5dcec2.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_095_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_095_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_095_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_095_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_095_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_095_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_095_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_095_delay-0.01s.png.import index abf85546..0b167647 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_095_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_095_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://rfgplotug1y3" -path="res://.godot/imported/frame_095_delay-0.01s.png-214a1daef4c48729a7951f77b20b0653.ctex" +path="res://.godot/imported/frame_095_delay-0.01s.png-52ca48d53905cc5a949f9dc6195bd3db.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/F/frame_095_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_095_delay-0.01s.png-214a1daef4c48729a7951f77b20b0653.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/F/frame_095_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_095_delay-0.01s.png-52ca48d53905cc5a949f9dc6195bd3db.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_096_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_096_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_096_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_096_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_096_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_096_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_096_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_096_delay-0.01s.png.import index d63bae4d..4ded96d1 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_096_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_096_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://cpym1pqy4etmy" -path="res://.godot/imported/frame_096_delay-0.01s.png-9f8f85c98f0129e54ec2d95f6327ab23.ctex" +path="res://.godot/imported/frame_096_delay-0.01s.png-afc08b33fb10cc74ddb9de10288d9309.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/F/frame_096_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_096_delay-0.01s.png-9f8f85c98f0129e54ec2d95f6327ab23.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/F/frame_096_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_096_delay-0.01s.png-afc08b33fb10cc74ddb9de10288d9309.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_097_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_097_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_097_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_097_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_097_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_097_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_097_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_097_delay-0.01s.png.import index 21109f6b..72b5df6f 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_097_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_097_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://u47o5dmejyan" -path="res://.godot/imported/frame_097_delay-0.01s.png-2c684501d099afe53daaa4b808e07683.ctex" +path="res://.godot/imported/frame_097_delay-0.01s.png-ad673c867e22857a65885ca54abfe77b.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/F/frame_097_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_097_delay-0.01s.png-2c684501d099afe53daaa4b808e07683.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/F/frame_097_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_097_delay-0.01s.png-ad673c867e22857a65885ca54abfe77b.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_098_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_098_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_098_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_098_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/Primary Attack/F/frame_101_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_098_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/Primary Attack/F/frame_101_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_098_delay-0.01s.png.import index d55877be..3c1d3c68 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/Primary Attack/F/frame_101_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_098_delay-0.01s.png.import @@ -2,16 +2,16 @@ importer="texture" type="CompressedTexture2D" -uid="uid://c332v26b101k" -path="res://.godot/imported/frame_101_delay-0.01s.png-49710cd93da6ee3f0a7b1a098318146b.ctex" +uid="uid://cw3vqnfwfnpkl" +path="res://.godot/imported/frame_098_delay-0.01s.png-04fd273a7f2eb32edf6ff2bdf1fd0dc8.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/Primary Attack/F/frame_101_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_101_delay-0.01s.png-49710cd93da6ee3f0a7b1a098318146b.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/F/frame_098_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_098_delay-0.01s.png-04fd273a7f2eb32edf6ff2bdf1fd0dc8.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_099_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_099_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_099_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_099_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_099_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_099_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_099_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_099_delay-0.01s.png.import index 5718c563..bc98d062 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_099_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_099_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://cqe45barmsyj2" -path="res://.godot/imported/frame_099_delay-0.01s.png-d977d8fc89bd43097ea6edf9cd11ded4.ctex" +path="res://.godot/imported/frame_099_delay-0.01s.png-bb3436532190348ddf12858f64831da8.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/F/frame_099_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_099_delay-0.01s.png-d977d8fc89bd43097ea6edf9cd11ded4.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/F/frame_099_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_099_delay-0.01s.png-bb3436532190348ddf12858f64831da8.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_100_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_100_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_100_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_100_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_100_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_100_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_100_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_100_delay-0.01s.png.import index 1659d1a5..1aa44d9e 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_100_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_100_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://p28jvk3s8ash" -path="res://.godot/imported/frame_100_delay-0.01s.png-37b7e290b4d2e3aa78908d6ad135610a.ctex" +path="res://.godot/imported/frame_100_delay-0.01s.png-3757ce5bac30093fe8850f715349f382.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/F/frame_100_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_100_delay-0.01s.png-37b7e290b4d2e3aa78908d6ad135610a.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/F/frame_100_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_100_delay-0.01s.png-3757ce5bac30093fe8850f715349f382.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_101_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_101_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_101_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_101_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_101_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_101_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_101_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_101_delay-0.01s.png.import index db9fd550..36b5bd59 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_101_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_101_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://c3572en7mr3so" -path="res://.godot/imported/frame_101_delay-0.01s.png-2405979b2476ede1e701d095834ff257.ctex" +path="res://.godot/imported/frame_101_delay-0.01s.png-c81a566e374e5c089df43ed32588f821.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/F/frame_101_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_101_delay-0.01s.png-2405979b2476ede1e701d095834ff257.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/F/frame_101_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_101_delay-0.01s.png-c81a566e374e5c089df43ed32588f821.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_102_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_102_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_102_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_102_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_102_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_102_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_102_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_102_delay-0.01s.png.import index 41687908..f5b15124 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_102_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_102_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://yc52stv272mw" -path="res://.godot/imported/frame_102_delay-0.01s.png-2efaa9ed41b06400540434250187743a.ctex" +path="res://.godot/imported/frame_102_delay-0.01s.png-95e874ef0c29f54bdbb6dcc550a20111.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/F/frame_102_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_102_delay-0.01s.png-2efaa9ed41b06400540434250187743a.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/F/frame_102_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_102_delay-0.01s.png-95e874ef0c29f54bdbb6dcc550a20111.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_103_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_103_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_103_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_103_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_103_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_103_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_103_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_103_delay-0.01s.png.import index 4984c021..ecf0e9ee 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_103_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_103_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://cb0glky56griv" -path="res://.godot/imported/frame_103_delay-0.01s.png-10b387c1b15a2fa6f4d428761e66f8a0.ctex" +path="res://.godot/imported/frame_103_delay-0.01s.png-c674e107e5bd553341893d0deac673d2.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/F/frame_103_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_103_delay-0.01s.png-10b387c1b15a2fa6f4d428761e66f8a0.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/F/frame_103_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_103_delay-0.01s.png-c674e107e5bd553341893d0deac673d2.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_104_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_104_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_104_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_104_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_104_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_104_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_104_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_104_delay-0.01s.png.import index ab15ea0c..ad7c9fa8 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_104_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_104_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://bxmt6j8ork50d" -path="res://.godot/imported/frame_104_delay-0.01s.png-e7376cb14fc46ce372701088d9781a16.ctex" +path="res://.godot/imported/frame_104_delay-0.01s.png-2bcca6ba018eebea9c2cc97cb724ac6b.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/F/frame_104_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_104_delay-0.01s.png-e7376cb14fc46ce372701088d9781a16.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/F/frame_104_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_104_delay-0.01s.png-2bcca6ba018eebea9c2cc97cb724ac6b.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_105_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_105_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_105_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_105_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_105_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_105_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_105_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_105_delay-0.01s.png.import index 48942861..19226b05 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_105_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_105_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://ndvepbrukgb5" -path="res://.godot/imported/frame_105_delay-0.01s.png-dc0bf8f733c9d77b01bb767d5ba395e8.ctex" +path="res://.godot/imported/frame_105_delay-0.01s.png-1e584643761c5964eeef86b49cb84ead.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/F/frame_105_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_105_delay-0.01s.png-dc0bf8f733c9d77b01bb767d5ba395e8.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/F/frame_105_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_105_delay-0.01s.png-1e584643761c5964eeef86b49cb84ead.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_106_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_106_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_106_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_106_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_106_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_106_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_106_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_106_delay-0.01s.png.import index be60f440..1a82116b 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_106_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_106_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://qjh28fkxpabt" -path="res://.godot/imported/frame_106_delay-0.01s.png-7f8843d6c9388d1cafe6cb580484b174.ctex" +path="res://.godot/imported/frame_106_delay-0.01s.png-04476e4d5f3bad7e6ff3c3ab94427f82.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/F/frame_106_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_106_delay-0.01s.png-7f8843d6c9388d1cafe6cb580484b174.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/F/frame_106_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_106_delay-0.01s.png-04476e4d5f3bad7e6ff3c3ab94427f82.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_107_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_107_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_107_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_107_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_107_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_107_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_107_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_107_delay-0.01s.png.import index 2dbf3721..4a78a72e 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_107_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_107_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://eh7o20fgd867" -path="res://.godot/imported/frame_107_delay-0.01s.png-7d6a0fcef44cc1b4bb89d9967765e62f.ctex" +path="res://.godot/imported/frame_107_delay-0.01s.png-79410184f9716a7e19f3bfa2f0c23204.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/F/frame_107_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_107_delay-0.01s.png-7d6a0fcef44cc1b4bb89d9967765e62f.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/F/frame_107_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_107_delay-0.01s.png-79410184f9716a7e19f3bfa2f0c23204.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_108_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_108_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_108_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_108_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_087_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_108_delay-0.01s.png.import similarity index 67% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_087_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_108_delay-0.01s.png.import index 0bbc1e3e..35d6668e 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_087_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_108_delay-0.01s.png.import @@ -2,16 +2,16 @@ importer="texture" type="CompressedTexture2D" -uid="uid://d2n7d6ee17ky4" -path="res://.godot/imported/frame_087_delay-0.01s.png-f94f1bdcfdd77d813b69ae13a3489a9a.ctex" +uid="uid://dgg6u02oaxjwp" +path="res://.godot/imported/frame_108_delay-0.01s.png-0dd67c1c97536b89c45b50b196df5f33.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/F/frame_087_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_087_delay-0.01s.png-f94f1bdcfdd77d813b69ae13a3489a9a.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/F/frame_108_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_108_delay-0.01s.png-0dd67c1c97536b89c45b50b196df5f33.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_109_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_109_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_109_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_109_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_109_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_109_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_109_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_109_delay-0.01s.png.import index ad38f7e6..62e67051 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_109_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_109_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://datckrqdgyref" -path="res://.godot/imported/frame_109_delay-0.01s.png-b8419d6fd525f92efd0a7f739fc46ac0.ctex" +path="res://.godot/imported/frame_109_delay-0.01s.png-f19a511cff263465c5dc7304e19bd0b4.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/F/frame_109_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_109_delay-0.01s.png-b8419d6fd525f92efd0a7f739fc46ac0.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/F/frame_109_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_109_delay-0.01s.png-f19a511cff263465c5dc7304e19bd0b4.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_110_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_110_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_110_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_110_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_110_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_110_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_110_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_110_delay-0.01s.png.import index 174beaad..32e94568 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_110_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_110_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://dmblermv36q1t" -path="res://.godot/imported/frame_110_delay-0.01s.png-88142a7300c86db684b873459287cbfe.ctex" +path="res://.godot/imported/frame_110_delay-0.01s.png-f126daea81f37ec9b8d652af6bdcac9a.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/F/frame_110_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_110_delay-0.01s.png-88142a7300c86db684b873459287cbfe.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/F/frame_110_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_110_delay-0.01s.png-f126daea81f37ec9b8d652af6bdcac9a.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_111_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_111_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_111_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_111_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_111_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_111_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_111_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_111_delay-0.01s.png.import index 0076d993..739811b7 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_111_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_111_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://dyky52ey50hcm" -path="res://.godot/imported/frame_111_delay-0.01s.png-fd2dddc1324ae38eac7eac48f7f4f5ce.ctex" +path="res://.godot/imported/frame_111_delay-0.01s.png-a6e5ee1dfd8d173f947d72ceaba6cfa9.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/F/frame_111_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_111_delay-0.01s.png-fd2dddc1324ae38eac7eac48f7f4f5ce.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/F/frame_111_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_111_delay-0.01s.png-a6e5ee1dfd8d173f947d72ceaba6cfa9.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_112_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_112_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_112_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_112_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_112_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_112_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_112_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_112_delay-0.01s.png.import index bbbfb87f..462f8aeb 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_112_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_112_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://cjfwaiov7dfv4" -path="res://.godot/imported/frame_112_delay-0.01s.png-60b41a04c6ae806da786ec396628c984.ctex" +path="res://.godot/imported/frame_112_delay-0.01s.png-1e632799409ce5411a3ca4e086f10c67.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/F/frame_112_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_112_delay-0.01s.png-60b41a04c6ae806da786ec396628c984.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/F/frame_112_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_112_delay-0.01s.png-1e632799409ce5411a3ca4e086f10c67.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_113_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_113_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_113_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_113_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_113_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_113_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_113_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_113_delay-0.01s.png.import index a9c4e46e..cd201638 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_113_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_113_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://ygacn2kh5usi" -path="res://.godot/imported/frame_113_delay-0.01s.png-bae1f61cdb7e4a6c486adf810827aae5.ctex" +path="res://.godot/imported/frame_113_delay-0.01s.png-031ad74380d85060b80e14111be120af.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/F/frame_113_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_113_delay-0.01s.png-bae1f61cdb7e4a6c486adf810827aae5.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/F/frame_113_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_113_delay-0.01s.png-031ad74380d85060b80e14111be120af.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_114_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_114_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_114_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_114_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_114_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_114_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_114_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_114_delay-0.01s.png.import index 8c67f658..edbee241 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_114_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_114_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://ma2exdd7lsx2" -path="res://.godot/imported/frame_114_delay-0.01s.png-e974998f51b0d4abe3c3f136217a0086.ctex" +path="res://.godot/imported/frame_114_delay-0.01s.png-e7b3571473e18242528f69702dff4a68.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/F/frame_114_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_114_delay-0.01s.png-e974998f51b0d4abe3c3f136217a0086.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/F/frame_114_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_114_delay-0.01s.png-e7b3571473e18242528f69702dff4a68.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_115_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_115_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_115_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_115_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_115_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_115_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_115_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_115_delay-0.01s.png.import index bdaa5256..51b5ac8b 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_115_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_115_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://bema272sctkq" -path="res://.godot/imported/frame_115_delay-0.01s.png-847872a6f7ee0be843355af507ffeaca.ctex" +path="res://.godot/imported/frame_115_delay-0.01s.png-ce3a290c40be743a43669da7947c67a1.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/F/frame_115_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_115_delay-0.01s.png-847872a6f7ee0be843355af507ffeaca.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/F/frame_115_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_115_delay-0.01s.png-ce3a290c40be743a43669da7947c67a1.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_116_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_116_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_116_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_116_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_116_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_116_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_116_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_116_delay-0.01s.png.import index 8848efec..c7e8cc45 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_116_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_116_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://ekdq36n4midf" -path="res://.godot/imported/frame_116_delay-0.01s.png-d2e142b9697cbb31526761d3e5c20bd0.ctex" +path="res://.godot/imported/frame_116_delay-0.01s.png-9cf880efcc5aa39a73fa135948a758d2.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/F/frame_116_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_116_delay-0.01s.png-d2e142b9697cbb31526761d3e5c20bd0.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/F/frame_116_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_116_delay-0.01s.png-9cf880efcc5aa39a73fa135948a758d2.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_117_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_117_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_117_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_117_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_117_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_117_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_117_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_117_delay-0.01s.png.import index cd4a1d8a..8d5f1096 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_117_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_117_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://dl3cy1b6biwct" -path="res://.godot/imported/frame_117_delay-0.01s.png-b40e19b8f8ab6683f36acfd96d143fdf.ctex" +path="res://.godot/imported/frame_117_delay-0.01s.png-48f56da8cf67e63f0f346d58cde8dc43.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/F/frame_117_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_117_delay-0.01s.png-b40e19b8f8ab6683f36acfd96d143fdf.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/F/frame_117_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_117_delay-0.01s.png-48f56da8cf67e63f0f346d58cde8dc43.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_118_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_118_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_118_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_118_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_118_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_118_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_118_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_118_delay-0.01s.png.import index a0212cad..6e41a530 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_118_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_118_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://cqcm51c73r7h5" -path="res://.godot/imported/frame_118_delay-0.01s.png-793585f56fb04d9111c4116c0c36d2ff.ctex" +path="res://.godot/imported/frame_118_delay-0.01s.png-1e328a74a330afeae11d3a0d166aa635.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/F/frame_118_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_118_delay-0.01s.png-793585f56fb04d9111c4116c0c36d2ff.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/F/frame_118_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_118_delay-0.01s.png-1e328a74a330afeae11d3a0d166aa635.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_119_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_119_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_119_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_119_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_119_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_119_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_119_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_119_delay-0.01s.png.import index 97b65b47..49210b93 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_119_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_119_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://b02v3vsyfwpc8" -path="res://.godot/imported/frame_119_delay-0.01s.png-0d920caa8b296478df889352dde041c2.ctex" +path="res://.godot/imported/frame_119_delay-0.01s.png-051a04b0873f8f68c000d00da0b3d4aa.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/F/frame_119_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_119_delay-0.01s.png-0d920caa8b296478df889352dde041c2.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/F/frame_119_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_119_delay-0.01s.png-051a04b0873f8f68c000d00da0b3d4aa.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_120_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_120_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_120_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_120_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_120_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_120_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_120_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_120_delay-0.01s.png.import index 4c8f6f5f..0e65ce11 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_120_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_120_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://cq83mf2e35530" -path="res://.godot/imported/frame_120_delay-0.01s.png-2bb2a1d9027e3fee35b1034058d558f2.ctex" +path="res://.godot/imported/frame_120_delay-0.01s.png-db3103a870ba1c3eb49645d2357f3176.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/F/frame_120_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_120_delay-0.01s.png-2bb2a1d9027e3fee35b1034058d558f2.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/F/frame_120_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_120_delay-0.01s.png-db3103a870ba1c3eb49645d2357f3176.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_121_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_121_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_121_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_121_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_121_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_121_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_121_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_121_delay-0.01s.png.import index c0f450fc..42e6463d 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_121_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_121_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://b8l2afj1ubc73" -path="res://.godot/imported/frame_121_delay-0.01s.png-a220c8331f9496c270a13228a7a1e148.ctex" +path="res://.godot/imported/frame_121_delay-0.01s.png-a6da95f3842da0ca50eb312f4b1eaae3.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/F/frame_121_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_121_delay-0.01s.png-a220c8331f9496c270a13228a7a1e148.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/F/frame_121_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_121_delay-0.01s.png-a6da95f3842da0ca50eb312f4b1eaae3.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_122_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_122_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_122_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_122_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_122_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_122_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_122_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_122_delay-0.01s.png.import index da8bfdaa..ff43d746 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_122_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_122_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://cvwa4suri4atg" -path="res://.godot/imported/frame_122_delay-0.01s.png-df52d2001e04256982e66792f4b17789.ctex" +path="res://.godot/imported/frame_122_delay-0.01s.png-85f37466a86ea384cfe95d52f6669522.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/F/frame_122_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_122_delay-0.01s.png-df52d2001e04256982e66792f4b17789.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/F/frame_122_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_122_delay-0.01s.png-85f37466a86ea384cfe95d52f6669522.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_123_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_123_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_123_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_123_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_123_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_123_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_123_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_123_delay-0.01s.png.import index 1cfa0f01..f2bd6ba0 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_123_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_123_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://8k2xymdmr23c" -path="res://.godot/imported/frame_123_delay-0.01s.png-876d7c938351925fe96a05a2e3541d9d.ctex" +path="res://.godot/imported/frame_123_delay-0.01s.png-3415c777256ca13f6edb1a318c721f9f.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/F/frame_123_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_123_delay-0.01s.png-876d7c938351925fe96a05a2e3541d9d.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/F/frame_123_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_123_delay-0.01s.png-3415c777256ca13f6edb1a318c721f9f.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_124_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_124_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_124_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_124_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_124_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_124_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_124_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_124_delay-0.01s.png.import index e084f2fd..af1cdde6 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_124_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_124_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://d2q55rgk0dn33" -path="res://.godot/imported/frame_124_delay-0.01s.png-e8de9d98aa916e663d24d71919867f80.ctex" +path="res://.godot/imported/frame_124_delay-0.01s.png-8f468be578807d12c4aab9c4036b487a.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/F/frame_124_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_124_delay-0.01s.png-e8de9d98aa916e663d24d71919867f80.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/F/frame_124_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_124_delay-0.01s.png-8f468be578807d12c4aab9c4036b487a.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_125_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_125_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_125_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_125_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_125_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_125_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_125_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_125_delay-0.01s.png.import index 3913f018..45a6f67b 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_125_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_125_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://t8xslvjd50jr" -path="res://.godot/imported/frame_125_delay-0.01s.png-7deee40fb5969e843bd850f82817cf07.ctex" +path="res://.godot/imported/frame_125_delay-0.01s.png-2a8e6c11f244b6edac27fdcf9f9ec13a.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/F/frame_125_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_125_delay-0.01s.png-7deee40fb5969e843bd850f82817cf07.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/F/frame_125_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_125_delay-0.01s.png-2a8e6c11f244b6edac27fdcf9f9ec13a.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_126_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_126_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_126_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_126_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_126_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_126_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_126_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_126_delay-0.01s.png.import index 10de8f70..d4b98ef0 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_126_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_126_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://cwr0qaoicsfhd" -path="res://.godot/imported/frame_126_delay-0.01s.png-db7be729dfe9e391c27914367fa55d0e.ctex" +path="res://.godot/imported/frame_126_delay-0.01s.png-590d0eb54892181e477b31dd8a02339b.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/F/frame_126_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_126_delay-0.01s.png-db7be729dfe9e391c27914367fa55d0e.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/F/frame_126_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_126_delay-0.01s.png-590d0eb54892181e477b31dd8a02339b.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_127_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_127_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_127_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_127_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_127_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_127_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_127_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_127_delay-0.01s.png.import index f560db4c..36943265 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_127_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_127_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://dk720vybwl7jw" -path="res://.godot/imported/frame_127_delay-0.01s.png-dde59aa3baf69cdb0474dc8083b0bd5f.ctex" +path="res://.godot/imported/frame_127_delay-0.01s.png-6582a65fbb1a8a9cacc6ce3529aac2c6.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/F/frame_127_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_127_delay-0.01s.png-dde59aa3baf69cdb0474dc8083b0bd5f.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/F/frame_127_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_127_delay-0.01s.png-6582a65fbb1a8a9cacc6ce3529aac2c6.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_128_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_128_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_128_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_128_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_128_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_128_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_128_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_128_delay-0.01s.png.import index 2d58b1a2..2c1931e6 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_128_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_128_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://denl6aqhmvhcj" -path="res://.godot/imported/frame_128_delay-0.01s.png-8840a568325fc26131be074a47472f04.ctex" +path="res://.godot/imported/frame_128_delay-0.01s.png-553264e978f5cacffd547ad94c925434.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/F/frame_128_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_128_delay-0.01s.png-8840a568325fc26131be074a47472f04.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/F/frame_128_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_128_delay-0.01s.png-553264e978f5cacffd547ad94c925434.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_129_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_129_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_129_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_129_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_129_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_129_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_129_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_129_delay-0.01s.png.import index 4dc6adf3..e5d4b96c 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_129_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_129_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://dumoyrl88pwvw" -path="res://.godot/imported/frame_129_delay-0.01s.png-2b5314b1451f40efb85e777009c1346c.ctex" +path="res://.godot/imported/frame_129_delay-0.01s.png-bd07072239bc0896dc2927950c052041.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/F/frame_129_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_129_delay-0.01s.png-2b5314b1451f40efb85e777009c1346c.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/F/frame_129_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_129_delay-0.01s.png-bd07072239bc0896dc2927950c052041.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_130_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_130_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_130_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_130_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_130_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_130_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_130_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_130_delay-0.01s.png.import index 63de4c3b..43f117d7 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_130_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_130_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://j84hkbc3ct0r" -path="res://.godot/imported/frame_130_delay-0.01s.png-ef704fe7e637d6f719fd00254d59c83d.ctex" +path="res://.godot/imported/frame_130_delay-0.01s.png-e403ca3e4c31bea17c830ee6e1aa8ba1.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/F/frame_130_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_130_delay-0.01s.png-ef704fe7e637d6f719fd00254d59c83d.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/F/frame_130_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_130_delay-0.01s.png-e403ca3e4c31bea17c830ee6e1aa8ba1.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_131_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_131_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_131_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_131_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_131_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_131_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_131_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_131_delay-0.01s.png.import index 1b2f9d59..7d5f8188 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_131_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/F/frame_131_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://lu8oe4o804nn" -path="res://.godot/imported/frame_131_delay-0.01s.png-9564d64be30912225bffc62d6646e338.ctex" +path="res://.godot/imported/frame_131_delay-0.01s.png-77e6ec699de8f9489004d7adeba87b30.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/F/frame_131_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_131_delay-0.01s.png-9564d64be30912225bffc62d6646e338.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/F/frame_131_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_131_delay-0.01s.png-77e6ec699de8f9489004d7adeba87b30.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_132_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_132_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_132_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_132_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_132_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_132_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_132_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_132_delay-0.01s.png.import index 7d627c40..e44a17c2 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_132_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_132_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://caru2dj6uifo5" -path="res://.godot/imported/frame_132_delay-0.01s.png-ab6d281c630cbe740e7ac2e6feed6aa5.ctex" +path="res://.godot/imported/frame_132_delay-0.01s.png-20386c623db2f9437870842d360cbf31.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/L/frame_132_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_132_delay-0.01s.png-ab6d281c630cbe740e7ac2e6feed6aa5.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/L/frame_132_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_132_delay-0.01s.png-20386c623db2f9437870842d360cbf31.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_133_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_133_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_133_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_133_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_133_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_133_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_133_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_133_delay-0.01s.png.import index 67b25afd..64074c00 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_133_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_133_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://b2y01wk2x5qox" -path="res://.godot/imported/frame_133_delay-0.01s.png-6c3d648ba4f5191f18e06ba621f8c7ef.ctex" +path="res://.godot/imported/frame_133_delay-0.01s.png-1a0d51dfce5d8ae0adc3065d72ca3bad.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/L/frame_133_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_133_delay-0.01s.png-6c3d648ba4f5191f18e06ba621f8c7ef.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/L/frame_133_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_133_delay-0.01s.png-1a0d51dfce5d8ae0adc3065d72ca3bad.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_134_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_134_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_134_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_134_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_134_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_134_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_134_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_134_delay-0.01s.png.import index dcc97a46..418db3a6 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_134_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_134_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://ccd8e5ox3064m" -path="res://.godot/imported/frame_134_delay-0.01s.png-bf681799be887da0c64f7117c8af8297.ctex" +path="res://.godot/imported/frame_134_delay-0.01s.png-da43d32feb7f72bde5d3b4a3d9425953.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/L/frame_134_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_134_delay-0.01s.png-bf681799be887da0c64f7117c8af8297.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/L/frame_134_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_134_delay-0.01s.png-da43d32feb7f72bde5d3b4a3d9425953.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_135_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_135_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_135_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_135_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_135_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_135_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_135_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_135_delay-0.01s.png.import index a2ab6dd5..1749d423 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_135_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_135_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://bfhvwj7n7k0nf" -path="res://.godot/imported/frame_135_delay-0.01s.png-9382c4bac95d5cdcf3b9e28f7d8c3d24.ctex" +path="res://.godot/imported/frame_135_delay-0.01s.png-e35e6a43eb8f5acee8a87a851ce205d9.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/L/frame_135_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_135_delay-0.01s.png-9382c4bac95d5cdcf3b9e28f7d8c3d24.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/L/frame_135_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_135_delay-0.01s.png-e35e6a43eb8f5acee8a87a851ce205d9.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_136_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_136_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_136_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_136_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_136_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_136_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_136_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_136_delay-0.01s.png.import index e8f9a9d1..be575bf6 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_136_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_136_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://daj3whlky73jv" -path="res://.godot/imported/frame_136_delay-0.01s.png-6d9c9e02640f7e76c2f7d6f1bd651e74.ctex" +path="res://.godot/imported/frame_136_delay-0.01s.png-7a4da190ac3c90fa9662e26d707e99d0.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/L/frame_136_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_136_delay-0.01s.png-6d9c9e02640f7e76c2f7d6f1bd651e74.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/L/frame_136_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_136_delay-0.01s.png-7a4da190ac3c90fa9662e26d707e99d0.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_137_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_137_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_137_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_137_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_137_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_137_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_137_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_137_delay-0.01s.png.import index 95623d3e..61417632 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_137_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_137_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://d0xe20uc6etoa" -path="res://.godot/imported/frame_137_delay-0.01s.png-59d5796d608f18126ebb22b5fa9f11f9.ctex" +path="res://.godot/imported/frame_137_delay-0.01s.png-c4c3b904fe91eeee5e4aa44e0ff49e78.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/L/frame_137_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_137_delay-0.01s.png-59d5796d608f18126ebb22b5fa9f11f9.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/L/frame_137_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_137_delay-0.01s.png-c4c3b904fe91eeee5e4aa44e0ff49e78.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_138_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_138_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_138_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_138_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_138_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_138_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_138_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_138_delay-0.01s.png.import index 1d877ca4..1efc0105 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_138_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_138_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://dqtgwld0uapvf" -path="res://.godot/imported/frame_138_delay-0.01s.png-4088fb5c4b811f64f3bd04df463897f7.ctex" +path="res://.godot/imported/frame_138_delay-0.01s.png-b756231372e6681e8e7a9f4eaa314f26.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/L/frame_138_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_138_delay-0.01s.png-4088fb5c4b811f64f3bd04df463897f7.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/L/frame_138_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_138_delay-0.01s.png-b756231372e6681e8e7a9f4eaa314f26.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_139_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_139_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_139_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_139_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_139_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_139_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_139_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_139_delay-0.01s.png.import index 763ce479..5eb1c8a9 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_139_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_139_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://c1rkc0g01by7h" -path="res://.godot/imported/frame_139_delay-0.01s.png-a425610add9d89207f0009ab0d343918.ctex" +path="res://.godot/imported/frame_139_delay-0.01s.png-80f93358420df2116133f0c1fc459333.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/L/frame_139_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_139_delay-0.01s.png-a425610add9d89207f0009ab0d343918.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/L/frame_139_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_139_delay-0.01s.png-80f93358420df2116133f0c1fc459333.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_140_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_140_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_140_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_140_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_140_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_140_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_140_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_140_delay-0.01s.png.import index 4d3b944b..3e2b0418 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_140_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_140_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://c3ijx4n6gx3kk" -path="res://.godot/imported/frame_140_delay-0.01s.png-763f8b8f6fd58e4fdb86e5d03983c869.ctex" +path="res://.godot/imported/frame_140_delay-0.01s.png-30111b23f6291e3d2e75cc77bddf66ba.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/L/frame_140_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_140_delay-0.01s.png-763f8b8f6fd58e4fdb86e5d03983c869.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/L/frame_140_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_140_delay-0.01s.png-30111b23f6291e3d2e75cc77bddf66ba.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_141_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_141_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_141_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_141_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_141_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_141_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_141_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_141_delay-0.01s.png.import index c52f5c10..4385bbb8 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_141_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_141_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://cedvpowu0uxl8" -path="res://.godot/imported/frame_141_delay-0.01s.png-ee6d4eb73baae401a54f96279af98dff.ctex" +path="res://.godot/imported/frame_141_delay-0.01s.png-4c23d4ebcca620965ebfdad95bcaff60.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/L/frame_141_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_141_delay-0.01s.png-ee6d4eb73baae401a54f96279af98dff.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/L/frame_141_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_141_delay-0.01s.png-4c23d4ebcca620965ebfdad95bcaff60.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_142_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_142_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_142_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_142_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_154_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_142_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_154_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_142_delay-0.01s.png.import index 39dd8c5d..634be1ea 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_154_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_142_delay-0.01s.png.import @@ -2,16 +2,16 @@ importer="texture" type="CompressedTexture2D" -uid="uid://cv2btcyir4ahg" -path="res://.godot/imported/frame_154_delay-0.01s.png-602dfe121c6c7ee5e02b890eb837c423.ctex" +uid="uid://cspnh0dp8rby7" +path="res://.godot/imported/frame_142_delay-0.01s.png-01adc6f6c6ea815c2b83a934460a2365.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/L/frame_154_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_154_delay-0.01s.png-602dfe121c6c7ee5e02b890eb837c423.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/L/frame_142_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_142_delay-0.01s.png-01adc6f6c6ea815c2b83a934460a2365.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_143_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_143_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_143_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_143_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_143_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_143_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_143_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_143_delay-0.01s.png.import index 268967fe..cbb1db7c 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_143_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_143_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://rttxodnaeo1r" -path="res://.godot/imported/frame_143_delay-0.01s.png-381ac1511f7530e6a8f980b077a40ad0.ctex" +path="res://.godot/imported/frame_143_delay-0.01s.png-7ddaf5a0c4550bdfe8d2bd299a3cbf7a.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/L/frame_143_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_143_delay-0.01s.png-381ac1511f7530e6a8f980b077a40ad0.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/L/frame_143_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_143_delay-0.01s.png-7ddaf5a0c4550bdfe8d2bd299a3cbf7a.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_144_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_144_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_144_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_144_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_144_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_144_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_144_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_144_delay-0.01s.png.import index a0448e4d..601cb5ac 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_144_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_144_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://bmca04yriogx5" -path="res://.godot/imported/frame_144_delay-0.01s.png-3edda400d3606f3d2761c7355ae908dd.ctex" +path="res://.godot/imported/frame_144_delay-0.01s.png-0992efe18967a4bcb9c9341a8c27e7ac.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/L/frame_144_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_144_delay-0.01s.png-3edda400d3606f3d2761c7355ae908dd.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/L/frame_144_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_144_delay-0.01s.png-0992efe18967a4bcb9c9341a8c27e7ac.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_145_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_145_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_145_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_145_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_145_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_145_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_145_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_145_delay-0.01s.png.import index 60f597f1..858208f3 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_145_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_145_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://xor5n0c5tk0j" -path="res://.godot/imported/frame_145_delay-0.01s.png-2752abd83241fe90ae0832054490968e.ctex" +path="res://.godot/imported/frame_145_delay-0.01s.png-3617a5298cffe90ed05348266787320e.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/L/frame_145_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_145_delay-0.01s.png-2752abd83241fe90ae0832054490968e.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/L/frame_145_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_145_delay-0.01s.png-3617a5298cffe90ed05348266787320e.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_146_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_146_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_146_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_146_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_146_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_146_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_146_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_146_delay-0.01s.png.import index db45b3f0..064a1ecd 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_146_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_146_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://dhq2t5wpgmlt7" -path="res://.godot/imported/frame_146_delay-0.01s.png-8842b3ac0261d630b4efefbf686680c2.ctex" +path="res://.godot/imported/frame_146_delay-0.01s.png-388c583e9517e271c0404ab25933aa3b.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/L/frame_146_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_146_delay-0.01s.png-8842b3ac0261d630b4efefbf686680c2.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/L/frame_146_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_146_delay-0.01s.png-388c583e9517e271c0404ab25933aa3b.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_147_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_147_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_147_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_147_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_147_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_147_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_147_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_147_delay-0.01s.png.import index 7797d5f3..1016383a 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_147_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_147_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://dijlfip1gcip2" -path="res://.godot/imported/frame_147_delay-0.01s.png-2e9c5e664394b608970520ed676ed637.ctex" +path="res://.godot/imported/frame_147_delay-0.01s.png-2ae9981d17e3248fe9f5cd97a8b9253e.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/L/frame_147_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_147_delay-0.01s.png-2e9c5e664394b608970520ed676ed637.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/L/frame_147_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_147_delay-0.01s.png-2ae9981d17e3248fe9f5cd97a8b9253e.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_148_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_148_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_148_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_148_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_148_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_148_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_148_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_148_delay-0.01s.png.import index 78ec2b2f..1ec2785f 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_148_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_148_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://c7g7ukartbxg0" -path="res://.godot/imported/frame_148_delay-0.01s.png-05009dfbd1ebd4ad04327737b06cf1ae.ctex" +path="res://.godot/imported/frame_148_delay-0.01s.png-b66a5f72ce076abe9c5e18cf3bf10581.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/L/frame_148_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_148_delay-0.01s.png-05009dfbd1ebd4ad04327737b06cf1ae.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/L/frame_148_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_148_delay-0.01s.png-b66a5f72ce076abe9c5e18cf3bf10581.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_149_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_149_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_149_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_149_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_149_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_149_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_149_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_149_delay-0.01s.png.import index 6f434807..a2975246 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_149_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_149_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://c6fiobstg4wim" -path="res://.godot/imported/frame_149_delay-0.01s.png-5c7c1a3e98dee323592a4483a90e8237.ctex" +path="res://.godot/imported/frame_149_delay-0.01s.png-f54ee2c2e1b93304f0ff9a2b2a9c9ef7.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/L/frame_149_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_149_delay-0.01s.png-5c7c1a3e98dee323592a4483a90e8237.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/L/frame_149_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_149_delay-0.01s.png-f54ee2c2e1b93304f0ff9a2b2a9c9ef7.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_150_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_150_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_150_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_150_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_150_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_150_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_150_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_150_delay-0.01s.png.import index 00850d08..9bdc5536 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_150_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_150_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://cmero5dihar6b" -path="res://.godot/imported/frame_150_delay-0.01s.png-ca2bb48e3a66e5bc54078ed060bbd391.ctex" +path="res://.godot/imported/frame_150_delay-0.01s.png-bf21ebfb6d3d26bfd1a5a13e0a328f4c.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/L/frame_150_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_150_delay-0.01s.png-ca2bb48e3a66e5bc54078ed060bbd391.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/L/frame_150_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_150_delay-0.01s.png-bf21ebfb6d3d26bfd1a5a13e0a328f4c.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_151_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_151_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_151_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_151_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_151_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_151_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_151_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_151_delay-0.01s.png.import index 01f40b52..6b99be96 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_151_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_151_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://gx4uxnf1dmun" -path="res://.godot/imported/frame_151_delay-0.01s.png-07fe1af91d93e15c9e84e27e445630e6.ctex" +path="res://.godot/imported/frame_151_delay-0.01s.png-a7d010390b19d174be6d18f9645c2253.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/L/frame_151_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_151_delay-0.01s.png-07fe1af91d93e15c9e84e27e445630e6.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/L/frame_151_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_151_delay-0.01s.png-a7d010390b19d174be6d18f9645c2253.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_152_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_152_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_152_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_152_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_152_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_152_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_152_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_152_delay-0.01s.png.import index 30f35c7f..f8aff64a 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_152_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_152_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://ngghdfw4jj4h" -path="res://.godot/imported/frame_152_delay-0.01s.png-64d64b1796b098fee0ded1ebcea14c90.ctex" +path="res://.godot/imported/frame_152_delay-0.01s.png-1f0e58299589dd4482ba98dcb7fc0956.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/L/frame_152_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_152_delay-0.01s.png-64d64b1796b098fee0ded1ebcea14c90.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/L/frame_152_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_152_delay-0.01s.png-1f0e58299589dd4482ba98dcb7fc0956.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_153_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_153_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_153_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_153_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_153_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_153_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_153_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_153_delay-0.01s.png.import index a48127ab..18a77f96 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_153_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_153_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://da1xp1iw3a7hv" -path="res://.godot/imported/frame_153_delay-0.01s.png-93a34b28e75b8747f5539e2ccb545973.ctex" +path="res://.godot/imported/frame_153_delay-0.01s.png-e6f6778fa5baddc010179497847a2d49.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/L/frame_153_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_153_delay-0.01s.png-93a34b28e75b8747f5539e2ccb545973.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/L/frame_153_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_153_delay-0.01s.png-e6f6778fa5baddc010179497847a2d49.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_154_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_154_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_154_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_154_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_154_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_154_delay-0.01s.png.import new file mode 100644 index 00000000..e3000c0f --- /dev/null +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_154_delay-0.01s.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cv2btcyir4ahg" +path="res://.godot/imported/frame_154_delay-0.01s.png-ad10d18e7ba9bd868d9f0ca412313347.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://src/enemy/enemy_types/09. Agni/animations/L/frame_154_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_154_delay-0.01s.png-ad10d18e7ba9bd868d9f0ca412313347.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_155_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_155_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_155_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_155_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_155_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_155_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_155_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_155_delay-0.01s.png.import index c5fb141a..ca8a746e 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_155_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_155_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://bjr7n1r02juti" -path="res://.godot/imported/frame_155_delay-0.01s.png-8b4fafa434b6c37fe8ccc0b5f7065cff.ctex" +path="res://.godot/imported/frame_155_delay-0.01s.png-051483e6382e6b03747636d7bcce62ad.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/L/frame_155_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_155_delay-0.01s.png-8b4fafa434b6c37fe8ccc0b5f7065cff.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/L/frame_155_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_155_delay-0.01s.png-051483e6382e6b03747636d7bcce62ad.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_156_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_156_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_156_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_156_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_156_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_156_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_156_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_156_delay-0.01s.png.import index b3e63ec2..8bde77a8 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_156_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_156_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://xavgld8cd4ik" -path="res://.godot/imported/frame_156_delay-0.01s.png-db9e30a5490a32529020c8217cb00670.ctex" +path="res://.godot/imported/frame_156_delay-0.01s.png-0243e1f98d60d0d3442e45ba1ed064b9.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/L/frame_156_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_156_delay-0.01s.png-db9e30a5490a32529020c8217cb00670.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/L/frame_156_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_156_delay-0.01s.png-0243e1f98d60d0d3442e45ba1ed064b9.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_157_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_157_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_157_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_157_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_157_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_157_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_157_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_157_delay-0.01s.png.import index 4e4b2db3..d911a87c 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_157_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_157_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://bj10yx3ow10bp" -path="res://.godot/imported/frame_157_delay-0.01s.png-a90b9c9a680001fabc799e732ed960fe.ctex" +path="res://.godot/imported/frame_157_delay-0.01s.png-e17bfc06b4161dc516ca23c83cdbecec.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/L/frame_157_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_157_delay-0.01s.png-a90b9c9a680001fabc799e732ed960fe.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/L/frame_157_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_157_delay-0.01s.png-e17bfc06b4161dc516ca23c83cdbecec.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_158_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_158_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_158_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_158_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_158_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_158_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_158_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_158_delay-0.01s.png.import index 5f1518bb..e718edc2 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_158_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_158_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://dqm5xh38tgiqh" -path="res://.godot/imported/frame_158_delay-0.01s.png-bce29486f9aa659c371466c8c6aa39df.ctex" +path="res://.godot/imported/frame_158_delay-0.01s.png-24871e202e3e5d781603a98bd953e562.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/L/frame_158_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_158_delay-0.01s.png-bce29486f9aa659c371466c8c6aa39df.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/L/frame_158_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_158_delay-0.01s.png-24871e202e3e5d781603a98bd953e562.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_159_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_159_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_159_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_159_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_159_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_159_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_159_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_159_delay-0.01s.png.import index 86e0fed2..4ab026f6 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_159_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_159_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://chlghfjgl356s" -path="res://.godot/imported/frame_159_delay-0.01s.png-dc3cb8009d73a55d717637930d3537d8.ctex" +path="res://.godot/imported/frame_159_delay-0.01s.png-a9c67d5cc3142197304235cb18cab30a.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/L/frame_159_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_159_delay-0.01s.png-dc3cb8009d73a55d717637930d3537d8.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/L/frame_159_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_159_delay-0.01s.png-a9c67d5cc3142197304235cb18cab30a.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_160_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_160_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_160_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_160_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_160_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_160_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_160_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_160_delay-0.01s.png.import index 36caf649..c52c2054 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_160_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_160_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://b6at2sytan3p1" -path="res://.godot/imported/frame_160_delay-0.01s.png-9b86ca2c3edc4a624fdf3749f5d4cd1e.ctex" +path="res://.godot/imported/frame_160_delay-0.01s.png-3b809a3bac51ba1c639d31f1f9ae1deb.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/L/frame_160_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_160_delay-0.01s.png-9b86ca2c3edc4a624fdf3749f5d4cd1e.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/L/frame_160_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_160_delay-0.01s.png-3b809a3bac51ba1c639d31f1f9ae1deb.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_161_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_161_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_161_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_161_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_161_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_161_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_161_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_161_delay-0.01s.png.import index 04b954b5..290b74d3 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_161_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_161_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://d34ky0ehksjfc" -path="res://.godot/imported/frame_161_delay-0.01s.png-b71f95b0a2eabb65450d67061495e643.ctex" +path="res://.godot/imported/frame_161_delay-0.01s.png-fd55ca6d6c3aef1d83c1c20de7a45cfe.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/L/frame_161_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_161_delay-0.01s.png-b71f95b0a2eabb65450d67061495e643.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/L/frame_161_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_161_delay-0.01s.png-fd55ca6d6c3aef1d83c1c20de7a45cfe.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_162_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_162_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_162_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_162_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_162_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_162_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_162_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_162_delay-0.01s.png.import index 7f40ea69..821d4bf3 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_162_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_162_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://dbip07sw2qcgc" -path="res://.godot/imported/frame_162_delay-0.01s.png-9489e9d15f3300181f343498d6fa624c.ctex" +path="res://.godot/imported/frame_162_delay-0.01s.png-b2d2965b93d7c61cb5b4f9946b40efda.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/L/frame_162_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_162_delay-0.01s.png-9489e9d15f3300181f343498d6fa624c.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/L/frame_162_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_162_delay-0.01s.png-b2d2965b93d7c61cb5b4f9946b40efda.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_163_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_163_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_163_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_163_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_163_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_163_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_163_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_163_delay-0.01s.png.import index 5dfd4aad..8ccaba69 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_163_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_163_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://cltiglp15kywt" -path="res://.godot/imported/frame_163_delay-0.01s.png-243178343a5935c9bef205c43c7b0061.ctex" +path="res://.godot/imported/frame_163_delay-0.01s.png-6f0d7aa0d55bd0fd3412f28d139b5c78.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/L/frame_163_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_163_delay-0.01s.png-243178343a5935c9bef205c43c7b0061.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/L/frame_163_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_163_delay-0.01s.png-6f0d7aa0d55bd0fd3412f28d139b5c78.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_164_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_164_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_164_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_164_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_164_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_164_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_164_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_164_delay-0.01s.png.import index 295d7ed1..c9ed8efd 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_164_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_164_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://d07ugpq756uhv" -path="res://.godot/imported/frame_164_delay-0.01s.png-9c1858955dff357b28c680d9290993b4.ctex" +path="res://.godot/imported/frame_164_delay-0.01s.png-a3090eb9b4c68ae076c1af4cf05c2495.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/L/frame_164_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_164_delay-0.01s.png-9c1858955dff357b28c680d9290993b4.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/L/frame_164_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_164_delay-0.01s.png-a3090eb9b4c68ae076c1af4cf05c2495.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_165_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_165_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_165_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_165_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_165_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_165_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_165_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_165_delay-0.01s.png.import index 2101614f..164b37a4 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_165_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_165_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://sgegg8gg2doj" -path="res://.godot/imported/frame_165_delay-0.01s.png-633ec6db7a3e01494d95896a83d33ef3.ctex" +path="res://.godot/imported/frame_165_delay-0.01s.png-a7540d6ab333d2564c202b58c9f8becf.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/L/frame_165_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_165_delay-0.01s.png-633ec6db7a3e01494d95896a83d33ef3.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/L/frame_165_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_165_delay-0.01s.png-a7540d6ab333d2564c202b58c9f8becf.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_166_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_166_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_166_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_166_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_166_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_166_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_166_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_166_delay-0.01s.png.import index ec78a128..c44a38d4 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_166_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_166_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://dggx0hygu8tn0" -path="res://.godot/imported/frame_166_delay-0.01s.png-e477f3560181a24043d84775006be60b.ctex" +path="res://.godot/imported/frame_166_delay-0.01s.png-678e8f81fb6d87902a2f222e9f346507.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/L/frame_166_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_166_delay-0.01s.png-e477f3560181a24043d84775006be60b.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/L/frame_166_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_166_delay-0.01s.png-678e8f81fb6d87902a2f222e9f346507.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_167_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_167_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_167_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_167_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_167_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_167_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_167_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_167_delay-0.01s.png.import index ca83a22f..150b7ec5 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_167_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_167_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://bajvef2wycmmd" -path="res://.godot/imported/frame_167_delay-0.01s.png-0644d75b317fac9a902557170d5dfb97.ctex" +path="res://.godot/imported/frame_167_delay-0.01s.png-fa843bfbf854d5638f1c7f0970913cde.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/L/frame_167_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_167_delay-0.01s.png-0644d75b317fac9a902557170d5dfb97.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/L/frame_167_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_167_delay-0.01s.png-fa843bfbf854d5638f1c7f0970913cde.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_168_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_168_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_168_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_168_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_168_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_168_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_168_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_168_delay-0.01s.png.import index 280cb55e..c921b26d 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_168_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_168_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://desjlb5rvs5ft" -path="res://.godot/imported/frame_168_delay-0.01s.png-c163cee77c9769ce0cae482dfe0694a5.ctex" +path="res://.godot/imported/frame_168_delay-0.01s.png-60329af96e66b638d88ac17e522185c0.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/L/frame_168_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_168_delay-0.01s.png-c163cee77c9769ce0cae482dfe0694a5.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/L/frame_168_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_168_delay-0.01s.png-60329af96e66b638d88ac17e522185c0.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_169_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_169_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_169_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_169_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_169_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_169_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_169_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_169_delay-0.01s.png.import index a41954dc..ac6766d7 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_169_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_169_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://dwfg2anun2m15" -path="res://.godot/imported/frame_169_delay-0.01s.png-6a335472d461b1a4dc6118a55e2fa3fb.ctex" +path="res://.godot/imported/frame_169_delay-0.01s.png-f1619c7b4beb8d5d397e94ffad7cfc44.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/L/frame_169_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_169_delay-0.01s.png-6a335472d461b1a4dc6118a55e2fa3fb.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/L/frame_169_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_169_delay-0.01s.png-f1619c7b4beb8d5d397e94ffad7cfc44.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_170_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_170_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_170_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_170_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_170_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_170_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_170_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_170_delay-0.01s.png.import index f0ef190e..f7fcf66e 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_170_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_170_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://dtfkcsfvthvq2" -path="res://.godot/imported/frame_170_delay-0.01s.png-e548eca4db595256c975a1202b28bc2e.ctex" +path="res://.godot/imported/frame_170_delay-0.01s.png-6519a11fd7a02a26417623c0f00bcf16.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/L/frame_170_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_170_delay-0.01s.png-e548eca4db595256c975a1202b28bc2e.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/L/frame_170_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_170_delay-0.01s.png-6519a11fd7a02a26417623c0f00bcf16.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_171_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_171_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_171_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_171_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_171_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_171_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_171_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_171_delay-0.01s.png.import index a253806d..250ddbd0 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_171_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_171_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://wtw68eu5tgur" -path="res://.godot/imported/frame_171_delay-0.01s.png-2ef038ddbed8e3e5a61f5219d4482697.ctex" +path="res://.godot/imported/frame_171_delay-0.01s.png-1c1f425d77dee9ad77191b2d45c85744.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/L/frame_171_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_171_delay-0.01s.png-2ef038ddbed8e3e5a61f5219d4482697.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/L/frame_171_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_171_delay-0.01s.png-1c1f425d77dee9ad77191b2d45c85744.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_172_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_172_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_172_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_172_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_172_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_172_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_172_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_172_delay-0.01s.png.import index c93eb10b..84f32cac 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_172_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_172_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://8uf4b55dgg3p" -path="res://.godot/imported/frame_172_delay-0.01s.png-30f675a3d4bae71d04c4c520a56cf15a.ctex" +path="res://.godot/imported/frame_172_delay-0.01s.png-45af09721ef34d31d3b037dab889d3f7.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/L/frame_172_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_172_delay-0.01s.png-30f675a3d4bae71d04c4c520a56cf15a.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/L/frame_172_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_172_delay-0.01s.png-45af09721ef34d31d3b037dab889d3f7.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_173_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_173_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_173_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_173_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_173_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_173_delay-0.01s.png.import new file mode 100644 index 00000000..bd09bfd7 --- /dev/null +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_173_delay-0.01s.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b2l5gt2n63x06" +path="res://.godot/imported/frame_173_delay-0.01s.png-f830cfe8036fae1d74b3dafb232e50ac.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://src/enemy/enemy_types/09. Agni/animations/L/frame_173_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_173_delay-0.01s.png-f830cfe8036fae1d74b3dafb232e50ac.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_174_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_174_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_174_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_174_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_174_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_174_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_174_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_174_delay-0.01s.png.import index 44288646..5367f589 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_174_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_174_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://ciqux6oks7o8j" -path="res://.godot/imported/frame_174_delay-0.01s.png-c045ed5e9491e47614d91ae024ce9108.ctex" +path="res://.godot/imported/frame_174_delay-0.01s.png-9306793d3e35dc7f45557aeed4143deb.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/L/frame_174_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_174_delay-0.01s.png-c045ed5e9491e47614d91ae024ce9108.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/L/frame_174_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_174_delay-0.01s.png-9306793d3e35dc7f45557aeed4143deb.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_175_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_175_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_175_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_175_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_175_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_175_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_175_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_175_delay-0.01s.png.import index 2724a430..b2d19606 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_175_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_175_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://shkr17411db1" -path="res://.godot/imported/frame_175_delay-0.01s.png-45a8ded79048a48ccbf26a2ccaf591b6.ctex" +path="res://.godot/imported/frame_175_delay-0.01s.png-03a4abe132b109a41f000296b78ffcd8.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/L/frame_175_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_175_delay-0.01s.png-45a8ded79048a48ccbf26a2ccaf591b6.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/L/frame_175_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_175_delay-0.01s.png-03a4abe132b109a41f000296b78ffcd8.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_176_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_176_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_176_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_176_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_176_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_176_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_176_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_176_delay-0.01s.png.import index a0a5955c..48cad09b 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_176_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_176_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://dmv5makdnpipr" -path="res://.godot/imported/frame_176_delay-0.01s.png-229399ccb2a97f7bf6da0565ace0955f.ctex" +path="res://.godot/imported/frame_176_delay-0.01s.png-b892a24e8c53132e6fcd6c54a80efd65.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/L/frame_176_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_176_delay-0.01s.png-229399ccb2a97f7bf6da0565ace0955f.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/L/frame_176_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_176_delay-0.01s.png-b892a24e8c53132e6fcd6c54a80efd65.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_177_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_177_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_177_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_177_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_177_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_177_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_177_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_177_delay-0.01s.png.import index 15aa29bc..50b92f52 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_177_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_177_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://dsavkyagjpwb8" -path="res://.godot/imported/frame_177_delay-0.01s.png-bcdf859ba4c7208d694a4c65d7495dec.ctex" +path="res://.godot/imported/frame_177_delay-0.01s.png-be9d58e3f274768a8f4cf1360fe939a2.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/L/frame_177_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_177_delay-0.01s.png-bcdf859ba4c7208d694a4c65d7495dec.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/L/frame_177_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_177_delay-0.01s.png-be9d58e3f274768a8f4cf1360fe939a2.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_178_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_178_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_178_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_178_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_178_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_178_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_178_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_178_delay-0.01s.png.import index 12fe2715..2c6bb2c8 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_178_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_178_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://dtsebs5m1taqa" -path="res://.godot/imported/frame_178_delay-0.01s.png-6d8b8eed28b759cb79a13a6bb65a05f6.ctex" +path="res://.godot/imported/frame_178_delay-0.01s.png-767fea527c6ae1ea3898a35a6a0dde51.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/L/frame_178_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_178_delay-0.01s.png-6d8b8eed28b759cb79a13a6bb65a05f6.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/L/frame_178_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_178_delay-0.01s.png-767fea527c6ae1ea3898a35a6a0dde51.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_179_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_179_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_179_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_179_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_179_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_179_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_179_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_179_delay-0.01s.png.import index 61685f8a..2ac692a1 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_179_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_179_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://cbm356g56b6vm" -path="res://.godot/imported/frame_179_delay-0.01s.png-9041fbee1f2ab8f6538c9d745c05baa0.ctex" +path="res://.godot/imported/frame_179_delay-0.01s.png-2df0efca2e7c0fed4988fc89044cf829.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/L/frame_179_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_179_delay-0.01s.png-9041fbee1f2ab8f6538c9d745c05baa0.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/L/frame_179_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_179_delay-0.01s.png-2df0efca2e7c0fed4988fc89044cf829.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_180_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_180_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_180_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_180_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_180_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_180_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_180_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_180_delay-0.01s.png.import index 98480847..67e83fc9 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_180_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_180_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://cj1ycugfr8nnk" -path="res://.godot/imported/frame_180_delay-0.01s.png-90756922f45ed489a320e55bc83463e9.ctex" +path="res://.godot/imported/frame_180_delay-0.01s.png-c89f1625d02eadfdf65cb8a0510d22fc.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/L/frame_180_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_180_delay-0.01s.png-90756922f45ed489a320e55bc83463e9.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/L/frame_180_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_180_delay-0.01s.png-c89f1625d02eadfdf65cb8a0510d22fc.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_181_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_181_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_181_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_181_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_181_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_181_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_181_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_181_delay-0.01s.png.import index 7ee9866b..211519b9 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_181_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_181_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://dhrhk2tdh3k3b" -path="res://.godot/imported/frame_181_delay-0.01s.png-1b728ab03e185fd2e85ee4a0ba098945.ctex" +path="res://.godot/imported/frame_181_delay-0.01s.png-426a7d7e980365c46164acb25bf767c7.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/L/frame_181_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_181_delay-0.01s.png-1b728ab03e185fd2e85ee4a0ba098945.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/L/frame_181_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_181_delay-0.01s.png-426a7d7e980365c46164acb25bf767c7.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_182_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_182_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_182_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_182_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_182_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_182_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_182_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_182_delay-0.01s.png.import index 7452a64f..c5c0eb21 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_182_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_182_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://dnfq6l1rd5x1t" -path="res://.godot/imported/frame_182_delay-0.01s.png-5d7ae5e664e3d4be41bae61486e8dfd8.ctex" +path="res://.godot/imported/frame_182_delay-0.01s.png-0f994df1847803c18c97960ecfabf8e7.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/L/frame_182_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_182_delay-0.01s.png-5d7ae5e664e3d4be41bae61486e8dfd8.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/L/frame_182_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_182_delay-0.01s.png-0f994df1847803c18c97960ecfabf8e7.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_183_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_183_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_183_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_183_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_183_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_183_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_183_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_183_delay-0.01s.png.import index b6636280..72fd3449 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_183_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_183_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://ca0hfma48ftxs" -path="res://.godot/imported/frame_183_delay-0.01s.png-93dff7b2153bbc07c685e6d1f99a3bc9.ctex" +path="res://.godot/imported/frame_183_delay-0.01s.png-a4a5bce4168b6b3c8f77d6dbbc43d44a.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/L/frame_183_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_183_delay-0.01s.png-93dff7b2153bbc07c685e6d1f99a3bc9.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/L/frame_183_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_183_delay-0.01s.png-a4a5bce4168b6b3c8f77d6dbbc43d44a.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_184_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_184_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_184_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_184_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_184_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_184_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_184_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_184_delay-0.01s.png.import index 4a72e8d9..16221f1d 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_184_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_184_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://c32fa5oa5mqo" -path="res://.godot/imported/frame_184_delay-0.01s.png-8a025c6d85d12462fabdcd1964ad8ac1.ctex" +path="res://.godot/imported/frame_184_delay-0.01s.png-4611a1dae383759dcffa6cb99347a31f.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/L/frame_184_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_184_delay-0.01s.png-8a025c6d85d12462fabdcd1964ad8ac1.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/L/frame_184_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_184_delay-0.01s.png-4611a1dae383759dcffa6cb99347a31f.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_185_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_185_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_185_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_185_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_185_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_185_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_185_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_185_delay-0.01s.png.import index 5903740a..aad5c4fe 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_185_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_185_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://5px7itdge424" -path="res://.godot/imported/frame_185_delay-0.01s.png-96bcaa39964506ebf2809072a7c1c251.ctex" +path="res://.godot/imported/frame_185_delay-0.01s.png-2e0e2b641a628b8d66a3134a76bbe033.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/L/frame_185_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_185_delay-0.01s.png-96bcaa39964506ebf2809072a7c1c251.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/L/frame_185_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_185_delay-0.01s.png-2e0e2b641a628b8d66a3134a76bbe033.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_186_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_186_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_186_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_186_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_186_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_186_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_186_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_186_delay-0.01s.png.import index 0f87705a..d64a137f 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_186_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_186_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://dybcepymmbh8h" -path="res://.godot/imported/frame_186_delay-0.01s.png-95ace342fd501410c0d05e9ff22fc3da.ctex" +path="res://.godot/imported/frame_186_delay-0.01s.png-5bb0036e1f63fe18dc2ede6d5886cae1.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/L/frame_186_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_186_delay-0.01s.png-95ace342fd501410c0d05e9ff22fc3da.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/L/frame_186_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_186_delay-0.01s.png-5bb0036e1f63fe18dc2ede6d5886cae1.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_187_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_187_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_187_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_187_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_187_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_187_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_187_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_187_delay-0.01s.png.import index e6f56c7d..d87d9307 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_187_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_187_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://cleq8oadbkrln" -path="res://.godot/imported/frame_187_delay-0.01s.png-5f36613ab5370d5cc7bb752d6f26a191.ctex" +path="res://.godot/imported/frame_187_delay-0.01s.png-372e5a3c24883a5f3ebd06f3e157691e.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/L/frame_187_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_187_delay-0.01s.png-5f36613ab5370d5cc7bb752d6f26a191.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/L/frame_187_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_187_delay-0.01s.png-372e5a3c24883a5f3ebd06f3e157691e.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_188_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_188_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_188_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_188_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_188_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_188_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_188_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_188_delay-0.01s.png.import index bd9e2945..b46ffe13 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_188_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_188_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://dcul2g1n7878" -path="res://.godot/imported/frame_188_delay-0.01s.png-204972bc1c890f0885bd1582f06cf2f6.ctex" +path="res://.godot/imported/frame_188_delay-0.01s.png-7cadc65f829ce8a60efd5ea8b8917cd1.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/L/frame_188_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_188_delay-0.01s.png-204972bc1c890f0885bd1582f06cf2f6.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/L/frame_188_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_188_delay-0.01s.png-7cadc65f829ce8a60efd5ea8b8917cd1.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_189_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_189_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_189_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_189_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_189_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_189_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_189_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_189_delay-0.01s.png.import index bb579322..5c98cbee 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_189_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_189_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://4ak4jtdlncp3" -path="res://.godot/imported/frame_189_delay-0.01s.png-c0ed8706155c3e0d15a12e3b4ad90b9f.ctex" +path="res://.godot/imported/frame_189_delay-0.01s.png-c577bd0d5e77f8eac39c113528826483.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/L/frame_189_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_189_delay-0.01s.png-c0ed8706155c3e0d15a12e3b4ad90b9f.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/L/frame_189_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_189_delay-0.01s.png-c577bd0d5e77f8eac39c113528826483.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_190_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_190_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_190_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_190_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_190_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_190_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_190_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_190_delay-0.01s.png.import index f42d679e..ba917590 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_190_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_190_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://bunn2ruw20j7n" -path="res://.godot/imported/frame_190_delay-0.01s.png-fdb8dbac7ac9714048865fa3f6844ae4.ctex" +path="res://.godot/imported/frame_190_delay-0.01s.png-53de57971d068e901f06112e54a86d47.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/L/frame_190_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_190_delay-0.01s.png-fdb8dbac7ac9714048865fa3f6844ae4.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/L/frame_190_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_190_delay-0.01s.png-53de57971d068e901f06112e54a86d47.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_191_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_191_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_191_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_191_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_191_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_191_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_191_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_191_delay-0.01s.png.import index 79e0bdf3..263a92e2 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_191_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_191_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://l8xellneih4n" -path="res://.godot/imported/frame_191_delay-0.01s.png-3cb3c6e505b8691d79424dae8d72dbe8.ctex" +path="res://.godot/imported/frame_191_delay-0.01s.png-f5861a7809c83283fb2165bd54570e79.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/L/frame_191_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_191_delay-0.01s.png-3cb3c6e505b8691d79424dae8d72dbe8.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/L/frame_191_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_191_delay-0.01s.png-f5861a7809c83283fb2165bd54570e79.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_192_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_192_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_192_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_192_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_173_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_192_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_173_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_192_delay-0.01s.png.import index 9be975d2..155ee054 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_173_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_192_delay-0.01s.png.import @@ -2,16 +2,16 @@ importer="texture" type="CompressedTexture2D" -uid="uid://b2l5gt2n63x06" -path="res://.godot/imported/frame_173_delay-0.01s.png-5c089b691524665d1695ad06d95649b5.ctex" +uid="uid://7l7mnj87hsf7" +path="res://.godot/imported/frame_192_delay-0.01s.png-c456a80c9c5be1c2e56fa0a0f69d97ed.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/L/frame_173_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_173_delay-0.01s.png-5c089b691524665d1695ad06d95649b5.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/L/frame_192_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_192_delay-0.01s.png-c456a80c9c5be1c2e56fa0a0f69d97ed.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_193_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_193_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_193_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_193_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_193_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_193_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_193_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_193_delay-0.01s.png.import index ec6183dc..766c06b4 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_193_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_193_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://dd88ngps7r81i" -path="res://.godot/imported/frame_193_delay-0.01s.png-ad815cf47cc25d46ac764561e7c07615.ctex" +path="res://.godot/imported/frame_193_delay-0.01s.png-186ffb0859993e4ca893d5569dcbb73c.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/L/frame_193_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_193_delay-0.01s.png-ad815cf47cc25d46ac764561e7c07615.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/L/frame_193_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_193_delay-0.01s.png-186ffb0859993e4ca893d5569dcbb73c.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_194_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_194_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_194_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_194_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_194_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_194_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_194_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_194_delay-0.01s.png.import index cec6472f..df4c9c19 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_194_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_194_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://dvumdq0ybrehc" -path="res://.godot/imported/frame_194_delay-0.01s.png-6a2caa1771bf2f38db846e52a24f09e2.ctex" +path="res://.godot/imported/frame_194_delay-0.01s.png-0baf3e442bba7cb943b6ec85bdc89926.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/L/frame_194_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_194_delay-0.01s.png-6a2caa1771bf2f38db846e52a24f09e2.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/L/frame_194_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_194_delay-0.01s.png-0baf3e442bba7cb943b6ec85bdc89926.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_195_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_195_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_195_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_195_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_195_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_195_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_195_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_195_delay-0.01s.png.import index 1cc9c49b..9f77c950 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_195_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_195_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://dr1uyxupc5rvd" -path="res://.godot/imported/frame_195_delay-0.01s.png-ad641e3caf43f32541146d1039a990d5.ctex" +path="res://.godot/imported/frame_195_delay-0.01s.png-9cb8ee9f1265621d2e77752f21186598.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/L/frame_195_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_195_delay-0.01s.png-ad641e3caf43f32541146d1039a990d5.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/L/frame_195_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_195_delay-0.01s.png-9cb8ee9f1265621d2e77752f21186598.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_196_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_196_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_196_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_196_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_196_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_196_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_196_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_196_delay-0.01s.png.import index 2d1edc05..9e53499f 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_196_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_196_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://bapkchbtjk41u" -path="res://.godot/imported/frame_196_delay-0.01s.png-a68a768bc59d94c5ce87962cb3ec46b7.ctex" +path="res://.godot/imported/frame_196_delay-0.01s.png-145826dff74a5436d88c73e7f83c6cbc.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/L/frame_196_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_196_delay-0.01s.png-a68a768bc59d94c5ce87962cb3ec46b7.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/L/frame_196_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_196_delay-0.01s.png-145826dff74a5436d88c73e7f83c6cbc.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_197_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_197_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_197_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_197_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_197_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_197_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_197_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_197_delay-0.01s.png.import index 34cdde43..38f128d7 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/L/frame_197_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/L/frame_197_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://dyx4jxs62gfu2" -path="res://.godot/imported/frame_197_delay-0.01s.png-b45a61b741fd6eaf96ecd19301bc5477.ctex" +path="res://.godot/imported/frame_197_delay-0.01s.png-1b03d581ff061b4e71919ab58c7b6d23.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/L/frame_197_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_197_delay-0.01s.png-b45a61b741fd6eaf96ecd19301bc5477.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/L/frame_197_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_197_delay-0.01s.png-1b03d581ff061b4e71919ab58c7b6d23.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_264_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_264_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_264_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_264_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_264_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_264_delay-0.01s.png.import similarity index 65% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_264_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_264_delay-0.01s.png.import index 9c86c612..528ec658 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_264_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_264_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://bg0mm60ln6kye" -path="res://.godot/imported/frame_264_delay-0.01s.png-558d5807206b9a0e25166c150e3fafd2.ctex" +path="res://.godot/imported/frame_264_delay-0.01s.png-645f170b131c4092128bad258562f6cd.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_264_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_264_delay-0.01s.png-558d5807206b9a0e25166c150e3fafd2.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_264_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_264_delay-0.01s.png-645f170b131c4092128bad258562f6cd.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_265_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_265_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_265_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_265_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_265_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_265_delay-0.01s.png.import similarity index 65% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_265_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_265_delay-0.01s.png.import index bf1fd529..e972d438 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_265_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_265_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://gkldknqv8n34" -path="res://.godot/imported/frame_265_delay-0.01s.png-248b62eb7d23fddadc6a039df616114a.ctex" +path="res://.godot/imported/frame_265_delay-0.01s.png-4bf411f71d7293471d2b0217aac09da8.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_265_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_265_delay-0.01s.png-248b62eb7d23fddadc6a039df616114a.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_265_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_265_delay-0.01s.png-4bf411f71d7293471d2b0217aac09da8.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_266_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_266_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_266_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_266_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_266_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_266_delay-0.01s.png.import similarity index 65% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_266_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_266_delay-0.01s.png.import index de0baab0..2d579c58 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_266_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_266_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://cy2cqucagmjlb" -path="res://.godot/imported/frame_266_delay-0.01s.png-08c06c07d07309118c259894d44add70.ctex" +path="res://.godot/imported/frame_266_delay-0.01s.png-5f2540727e258e2aee88a4b1a4651d72.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_266_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_266_delay-0.01s.png-08c06c07d07309118c259894d44add70.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_266_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_266_delay-0.01s.png-5f2540727e258e2aee88a4b1a4651d72.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_267_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_267_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_267_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_267_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_267_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_267_delay-0.01s.png.import similarity index 65% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_267_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_267_delay-0.01s.png.import index c45693b4..95a33625 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_267_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_267_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://jegmc4jpfx20" -path="res://.godot/imported/frame_267_delay-0.01s.png-cbd0aa5324b52ed0571713be2a77163c.ctex" +path="res://.godot/imported/frame_267_delay-0.01s.png-e706b4ea88c5a66cf99c6a3d255a454c.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_267_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_267_delay-0.01s.png-cbd0aa5324b52ed0571713be2a77163c.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_267_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_267_delay-0.01s.png-e706b4ea88c5a66cf99c6a3d255a454c.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_268_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_268_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_268_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_268_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_268_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_268_delay-0.01s.png.import similarity index 65% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_268_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_268_delay-0.01s.png.import index 8c8c1a5a..46c64de7 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_268_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_268_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://dcduubuqlopkh" -path="res://.godot/imported/frame_268_delay-0.01s.png-1a2f42c9db87619dc6ffe714e9b85fe7.ctex" +path="res://.godot/imported/frame_268_delay-0.01s.png-cee14bae678db3a4fb75e1615073a68b.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_268_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_268_delay-0.01s.png-1a2f42c9db87619dc6ffe714e9b85fe7.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_268_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_268_delay-0.01s.png-cee14bae678db3a4fb75e1615073a68b.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_269_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_269_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_269_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_269_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_269_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_269_delay-0.01s.png.import similarity index 65% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_269_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_269_delay-0.01s.png.import index 986da0e8..46902dee 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_269_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_269_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://dnmper7kajww6" -path="res://.godot/imported/frame_269_delay-0.01s.png-72f569ff4938a442954166a8a920d884.ctex" +path="res://.godot/imported/frame_269_delay-0.01s.png-d9438e09ef9f4a79b7c705e7bbd79d06.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_269_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_269_delay-0.01s.png-72f569ff4938a442954166a8a920d884.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_269_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_269_delay-0.01s.png-d9438e09ef9f4a79b7c705e7bbd79d06.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_270_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_270_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_270_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_270_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_270_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_270_delay-0.01s.png.import similarity index 65% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_270_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_270_delay-0.01s.png.import index 1a7eb00f..c181619a 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_270_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_270_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://cftqjy2iewh6v" -path="res://.godot/imported/frame_270_delay-0.01s.png-a6cb83212a878c425793dc77c79204bd.ctex" +path="res://.godot/imported/frame_270_delay-0.01s.png-d04343a32c5727fa1c36a5d7f1a5d7bb.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_270_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_270_delay-0.01s.png-a6cb83212a878c425793dc77c79204bd.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_270_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_270_delay-0.01s.png-d04343a32c5727fa1c36a5d7f1a5d7bb.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_271_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_271_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_271_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_271_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_271_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_271_delay-0.01s.png.import similarity index 65% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_271_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_271_delay-0.01s.png.import index 6b32e1d6..4c7ef004 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_271_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_271_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://ddm7abdc3c3jv" -path="res://.godot/imported/frame_271_delay-0.01s.png-4ef1b16c38aeeabb4af540e895a28102.ctex" +path="res://.godot/imported/frame_271_delay-0.01s.png-0c3b55674d88975d5f11a5260a57fb4e.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_271_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_271_delay-0.01s.png-4ef1b16c38aeeabb4af540e895a28102.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_271_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_271_delay-0.01s.png-0c3b55674d88975d5f11a5260a57fb4e.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_272_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_272_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_272_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_272_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_272_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_272_delay-0.01s.png.import similarity index 65% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_272_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_272_delay-0.01s.png.import index 4817761b..5c0ef677 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_272_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_272_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://bsnt0i55haapp" -path="res://.godot/imported/frame_272_delay-0.01s.png-336f312921c1b3f9ed6119d5dd8d16eb.ctex" +path="res://.godot/imported/frame_272_delay-0.01s.png-bf3b0e068c06f4d381c4301896f1bd0d.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_272_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_272_delay-0.01s.png-336f312921c1b3f9ed6119d5dd8d16eb.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_272_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_272_delay-0.01s.png-bf3b0e068c06f4d381c4301896f1bd0d.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_273_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_273_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_273_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_273_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_273_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_273_delay-0.01s.png.import similarity index 65% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_273_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_273_delay-0.01s.png.import index e0e3c98e..daefb13e 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_273_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_273_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://cqg78lak7t7h7" -path="res://.godot/imported/frame_273_delay-0.01s.png-0dd503c1bd3a6285464f01b63b162f6e.ctex" +path="res://.godot/imported/frame_273_delay-0.01s.png-412f6676802f61d189331281e448f525.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_273_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_273_delay-0.01s.png-0dd503c1bd3a6285464f01b63b162f6e.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_273_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_273_delay-0.01s.png-412f6676802f61d189331281e448f525.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_274_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_274_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_274_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_274_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_274_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_274_delay-0.01s.png.import similarity index 65% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_274_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_274_delay-0.01s.png.import index 376c44ed..b1e95f01 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_274_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_274_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://cftgstb4h04to" -path="res://.godot/imported/frame_274_delay-0.01s.png-771376878c17c9a427dcce8fd3a7653f.ctex" +path="res://.godot/imported/frame_274_delay-0.01s.png-fae1fd6b25e14b7db815695668e899ce.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_274_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_274_delay-0.01s.png-771376878c17c9a427dcce8fd3a7653f.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_274_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_274_delay-0.01s.png-fae1fd6b25e14b7db815695668e899ce.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_275_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_275_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_275_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_275_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_275_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_275_delay-0.01s.png.import similarity index 65% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_275_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_275_delay-0.01s.png.import index dba31dc2..ca2f52ca 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_275_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_275_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://dy75670e11euv" -path="res://.godot/imported/frame_275_delay-0.01s.png-a938009a11ac17134d72afd96c4481ad.ctex" +path="res://.godot/imported/frame_275_delay-0.01s.png-3d026edaa32833ecc276c63e3cf66129.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_275_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_275_delay-0.01s.png-a938009a11ac17134d72afd96c4481ad.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_275_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_275_delay-0.01s.png-3d026edaa32833ecc276c63e3cf66129.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_276_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_276_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_276_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_276_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_276_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_276_delay-0.01s.png.import similarity index 65% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_276_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_276_delay-0.01s.png.import index 5b7dab3a..b47cc3e1 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_276_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_276_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://cmc88yx6ecg4q" -path="res://.godot/imported/frame_276_delay-0.01s.png-b412af812f46d09b1f3bc4e232570c78.ctex" +path="res://.godot/imported/frame_276_delay-0.01s.png-70be5eb7400c85040292c8f94a272e84.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_276_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_276_delay-0.01s.png-b412af812f46d09b1f3bc4e232570c78.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_276_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_276_delay-0.01s.png-70be5eb7400c85040292c8f94a272e84.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_277_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_277_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_277_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_277_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_277_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_277_delay-0.01s.png.import similarity index 65% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_277_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_277_delay-0.01s.png.import index a147b33b..1133ac5d 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_277_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_277_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://cjo7h07ghnrcy" -path="res://.godot/imported/frame_277_delay-0.01s.png-bf21a5e9b89b43c6dbf7ba50b4117316.ctex" +path="res://.godot/imported/frame_277_delay-0.01s.png-00d70e0345d9689172bf54d570f14e05.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_277_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_277_delay-0.01s.png-bf21a5e9b89b43c6dbf7ba50b4117316.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_277_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_277_delay-0.01s.png-00d70e0345d9689172bf54d570f14e05.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_278_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_278_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_278_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_278_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_278_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_278_delay-0.01s.png.import similarity index 65% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_278_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_278_delay-0.01s.png.import index 153859a5..fd701256 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_278_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_278_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://croke2fk5h86j" -path="res://.godot/imported/frame_278_delay-0.01s.png-46c22cac33b83cb6be8fad995721452c.ctex" +path="res://.godot/imported/frame_278_delay-0.01s.png-ac476192537601bdd33350a834056e3f.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_278_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_278_delay-0.01s.png-46c22cac33b83cb6be8fad995721452c.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_278_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_278_delay-0.01s.png-ac476192537601bdd33350a834056e3f.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_279_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_279_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_279_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_279_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_279_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_279_delay-0.01s.png.import similarity index 65% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_279_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_279_delay-0.01s.png.import index 1a09e506..19957c87 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_279_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_279_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://cylg1j3dl7clt" -path="res://.godot/imported/frame_279_delay-0.01s.png-afc6dc5030a1db7e6582f56a084f7368.ctex" +path="res://.godot/imported/frame_279_delay-0.01s.png-0dfb025e4f0ff24789f3b1e0d1158ed0.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_279_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_279_delay-0.01s.png-afc6dc5030a1db7e6582f56a084f7368.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_279_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_279_delay-0.01s.png-0dfb025e4f0ff24789f3b1e0d1158ed0.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_280_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_280_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_280_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_280_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_280_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_280_delay-0.01s.png.import similarity index 65% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_280_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_280_delay-0.01s.png.import index db35bc97..96840d23 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_280_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_280_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://d1516ajjjtb74" -path="res://.godot/imported/frame_280_delay-0.01s.png-3407917ddf12fd8593b64723096b336c.ctex" +path="res://.godot/imported/frame_280_delay-0.01s.png-8d92f094e96d5e3b2467a493476eafee.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_280_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_280_delay-0.01s.png-3407917ddf12fd8593b64723096b336c.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_280_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_280_delay-0.01s.png-8d92f094e96d5e3b2467a493476eafee.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_281_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_281_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_281_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_281_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_281_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_281_delay-0.01s.png.import similarity index 65% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_281_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_281_delay-0.01s.png.import index b8e20c45..e461cf49 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_281_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_281_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://cm2guwf4kf2y2" -path="res://.godot/imported/frame_281_delay-0.01s.png-78baf7ebfe4ac7ceadcea4d86735e5af.ctex" +path="res://.godot/imported/frame_281_delay-0.01s.png-819203dbd9134609a7c4f3bfbb238a6c.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_281_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_281_delay-0.01s.png-78baf7ebfe4ac7ceadcea4d86735e5af.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_281_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_281_delay-0.01s.png-819203dbd9134609a7c4f3bfbb238a6c.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_282_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_282_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_282_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_282_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_282_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_282_delay-0.01s.png.import similarity index 65% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_282_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_282_delay-0.01s.png.import index 382a7ddb..8cab2e07 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_282_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_282_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://cf6cux8pu8sa1" -path="res://.godot/imported/frame_282_delay-0.01s.png-44709e93c6e1139a65e75cb6973efcc0.ctex" +path="res://.godot/imported/frame_282_delay-0.01s.png-952c17ed247e63ee69b23a4ff6d865c1.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_282_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_282_delay-0.01s.png-44709e93c6e1139a65e75cb6973efcc0.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_282_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_282_delay-0.01s.png-952c17ed247e63ee69b23a4ff6d865c1.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_283_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_283_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_283_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_283_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_283_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_283_delay-0.01s.png.import similarity index 65% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_283_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_283_delay-0.01s.png.import index 9d7445df..446dd7c7 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_283_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_283_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://de887ptuiv4b4" -path="res://.godot/imported/frame_283_delay-0.01s.png-fcb188bc567d0144f5c8e4bf73f11975.ctex" +path="res://.godot/imported/frame_283_delay-0.01s.png-a0f76e7f5fe75f638a45e5240856aa6e.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_283_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_283_delay-0.01s.png-fcb188bc567d0144f5c8e4bf73f11975.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_283_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_283_delay-0.01s.png-a0f76e7f5fe75f638a45e5240856aa6e.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_284_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_284_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_284_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_284_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_284_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_284_delay-0.01s.png.import similarity index 65% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_284_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_284_delay-0.01s.png.import index 2ab9cdf8..ad191f2d 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_284_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_284_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://cds6m86b2psup" -path="res://.godot/imported/frame_284_delay-0.01s.png-92c1d173d35930dc5773c7375c4cf586.ctex" +path="res://.godot/imported/frame_284_delay-0.01s.png-cfa772059e88fdb4001a2d8f94c0790c.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_284_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_284_delay-0.01s.png-92c1d173d35930dc5773c7375c4cf586.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_284_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_284_delay-0.01s.png-cfa772059e88fdb4001a2d8f94c0790c.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_285_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_285_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_285_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_285_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_285_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_285_delay-0.01s.png.import similarity index 65% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_285_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_285_delay-0.01s.png.import index 3a359380..327fe172 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_285_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_285_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://ckxc5ewc7krgy" -path="res://.godot/imported/frame_285_delay-0.01s.png-12cbaa37500e3cf54614b92c5559a2dc.ctex" +path="res://.godot/imported/frame_285_delay-0.01s.png-42515fdf12827d0e72f890f7d93111b8.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_285_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_285_delay-0.01s.png-12cbaa37500e3cf54614b92c5559a2dc.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_285_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_285_delay-0.01s.png-42515fdf12827d0e72f890f7d93111b8.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_286_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_286_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_286_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_286_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_286_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_286_delay-0.01s.png.import similarity index 65% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_286_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_286_delay-0.01s.png.import index 471ba6f6..8be67241 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_286_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_286_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://h6b3iv4a33ge" -path="res://.godot/imported/frame_286_delay-0.01s.png-42982b9c61979c5439f9422a8a66b2f3.ctex" +path="res://.godot/imported/frame_286_delay-0.01s.png-1f6e705fad88d054fccf4aa6247f849c.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_286_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_286_delay-0.01s.png-42982b9c61979c5439f9422a8a66b2f3.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_286_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_286_delay-0.01s.png-1f6e705fad88d054fccf4aa6247f849c.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_287_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_287_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_287_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_287_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_209_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_287_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_209_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_287_delay-0.01s.png.import index 9a213027..8e09d5be 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_209_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_287_delay-0.01s.png.import @@ -2,16 +2,16 @@ importer="texture" type="CompressedTexture2D" -uid="uid://cpww0skmfrgvp" -path="res://.godot/imported/frame_209_delay-0.01s.png-07370f8bd62268ce4cd70cd5eb74ad55.ctex" +uid="uid://brjhwakmssh2v" +path="res://.godot/imported/frame_287_delay-0.01s.png-4205a1a2de74bd5b3562c4184a1ef467.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/R/frame_209_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_209_delay-0.01s.png-07370f8bd62268ce4cd70cd5eb74ad55.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_287_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_287_delay-0.01s.png-4205a1a2de74bd5b3562c4184a1ef467.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_288_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_288_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_288_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_288_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_288_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_288_delay-0.01s.png.import similarity index 65% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_288_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_288_delay-0.01s.png.import index 2e6d6f1d..fccc28fe 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_288_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_288_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://dw2lcc3f4d8ui" -path="res://.godot/imported/frame_288_delay-0.01s.png-f15314739f4f0c92907c355dd69806e4.ctex" +path="res://.godot/imported/frame_288_delay-0.01s.png-733bd8b566858e6eae300be91c0012ce.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_288_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_288_delay-0.01s.png-f15314739f4f0c92907c355dd69806e4.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_288_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_288_delay-0.01s.png-733bd8b566858e6eae300be91c0012ce.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_289_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_289_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_289_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_289_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_289_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_289_delay-0.01s.png.import similarity index 65% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_289_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_289_delay-0.01s.png.import index 30d988e1..4ecb51e3 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_289_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_289_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://cqb1mev2pfmxg" -path="res://.godot/imported/frame_289_delay-0.01s.png-98141318720f1c09d2a453c0ed4e9316.ctex" +path="res://.godot/imported/frame_289_delay-0.01s.png-9d91fc6f3709322299eff39ca2c3a68a.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_289_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_289_delay-0.01s.png-98141318720f1c09d2a453c0ed4e9316.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_289_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_289_delay-0.01s.png-9d91fc6f3709322299eff39ca2c3a68a.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_290_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_290_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_290_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_290_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_290_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_290_delay-0.01s.png.import similarity index 65% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_290_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_290_delay-0.01s.png.import index 707adbd1..8fbd55cb 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_290_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_290_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://beyjeetyl0mxs" -path="res://.godot/imported/frame_290_delay-0.01s.png-c9da844ba34fc1b2c5518e69b8f3b58e.ctex" +path="res://.godot/imported/frame_290_delay-0.01s.png-560a62b199f91318c831cda2879f9484.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_290_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_290_delay-0.01s.png-c9da844ba34fc1b2c5518e69b8f3b58e.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_290_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_290_delay-0.01s.png-560a62b199f91318c831cda2879f9484.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_291_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_291_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_291_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_291_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_291_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_291_delay-0.01s.png.import similarity index 65% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_291_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_291_delay-0.01s.png.import index 7425c7dc..3897dc30 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_291_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_291_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://dmied1q41sfm2" -path="res://.godot/imported/frame_291_delay-0.01s.png-d4a8519579c806d4646600a0d8dbeddb.ctex" +path="res://.godot/imported/frame_291_delay-0.01s.png-e1c967d18a4d3454dd7d791f07115dc2.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_291_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_291_delay-0.01s.png-d4a8519579c806d4646600a0d8dbeddb.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_291_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_291_delay-0.01s.png-e1c967d18a4d3454dd7d791f07115dc2.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_292_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_292_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_292_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_292_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_292_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_292_delay-0.01s.png.import similarity index 65% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_292_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_292_delay-0.01s.png.import index f333e2d2..15734127 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_292_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_292_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://h4t5esklq6f6" -path="res://.godot/imported/frame_292_delay-0.01s.png-3f2d3df0403e4db4879a0d3eae91699b.ctex" +path="res://.godot/imported/frame_292_delay-0.01s.png-7cb8300408e18cd1cec4ea71596d3758.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_292_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_292_delay-0.01s.png-3f2d3df0403e4db4879a0d3eae91699b.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_292_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_292_delay-0.01s.png-7cb8300408e18cd1cec4ea71596d3758.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_293_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_293_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_293_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_293_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_293_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_293_delay-0.01s.png.import similarity index 65% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_293_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_293_delay-0.01s.png.import index 9d838749..b670fce6 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_293_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_293_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://ci6vh7iirr8pq" -path="res://.godot/imported/frame_293_delay-0.01s.png-018ee7489b89145751b15f5af32e5d5a.ctex" +path="res://.godot/imported/frame_293_delay-0.01s.png-cdaaf70f207ae566fe009f5bf7ea907b.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_293_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_293_delay-0.01s.png-018ee7489b89145751b15f5af32e5d5a.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_293_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_293_delay-0.01s.png-cdaaf70f207ae566fe009f5bf7ea907b.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_294_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_294_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_294_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_294_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_294_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_294_delay-0.01s.png.import similarity index 65% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_294_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_294_delay-0.01s.png.import index 6309d77f..91fd92ff 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_294_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_294_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://qsx14k5bd1sx" -path="res://.godot/imported/frame_294_delay-0.01s.png-94d5753fd919a0fcbb7d536ed5e6ca65.ctex" +path="res://.godot/imported/frame_294_delay-0.01s.png-d4a7cdd70cbd346eba22dbb37b0faa9f.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_294_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_294_delay-0.01s.png-94d5753fd919a0fcbb7d536ed5e6ca65.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_294_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_294_delay-0.01s.png-d4a7cdd70cbd346eba22dbb37b0faa9f.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_295_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_295_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_295_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_295_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_295_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_295_delay-0.01s.png.import similarity index 65% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_295_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_295_delay-0.01s.png.import index 965e2865..ea38c0df 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_295_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_295_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://hf2i36hdttrt" -path="res://.godot/imported/frame_295_delay-0.01s.png-0baa2e7d8128b0c3bc30737a1af9a8ea.ctex" +path="res://.godot/imported/frame_295_delay-0.01s.png-6a6db44865527297babd54d0acea62ba.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_295_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_295_delay-0.01s.png-0baa2e7d8128b0c3bc30737a1af9a8ea.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_295_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_295_delay-0.01s.png-6a6db44865527297babd54d0acea62ba.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_296_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_296_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_296_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_296_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_296_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_296_delay-0.01s.png.import similarity index 65% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_296_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_296_delay-0.01s.png.import index a8896ace..36da05a8 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_296_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_296_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://vnwlj8wbhu45" -path="res://.godot/imported/frame_296_delay-0.01s.png-d4950b23f8068b876dcdca8ca02e3bd0.ctex" +path="res://.godot/imported/frame_296_delay-0.01s.png-07bc0684d52e59a0bd9a8e701f9fc699.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_296_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_296_delay-0.01s.png-d4950b23f8068b876dcdca8ca02e3bd0.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_296_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_296_delay-0.01s.png-07bc0684d52e59a0bd9a8e701f9fc699.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_297_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_297_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_297_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_297_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_297_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_297_delay-0.01s.png.import new file mode 100644 index 00000000..750209b3 --- /dev/null +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_297_delay-0.01s.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://15q8e1mwoy8" +path="res://.godot/imported/frame_297_delay-0.01s.png-8f739008675e78e8190b26b96be8332a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_297_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_297_delay-0.01s.png-8f739008675e78e8190b26b96be8332a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_298_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_298_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_298_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_298_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_298_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_298_delay-0.01s.png.import similarity index 65% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_298_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_298_delay-0.01s.png.import index df0362fb..4d68f180 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_298_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_298_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://cbqc5hmq718p4" -path="res://.godot/imported/frame_298_delay-0.01s.png-275a5df9510322785596d0bdad2a9150.ctex" +path="res://.godot/imported/frame_298_delay-0.01s.png-ac0041672a3f79b3ff429e277b39c76a.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_298_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_298_delay-0.01s.png-275a5df9510322785596d0bdad2a9150.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_298_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_298_delay-0.01s.png-ac0041672a3f79b3ff429e277b39c76a.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_299_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_299_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_299_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_299_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_299_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_299_delay-0.01s.png.import similarity index 65% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_299_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_299_delay-0.01s.png.import index d1aceaac..e5fc1368 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_299_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_299_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://bmurdx0s03rus" -path="res://.godot/imported/frame_299_delay-0.01s.png-7e58881ecda39a3c441d514b65694c70.ctex" +path="res://.godot/imported/frame_299_delay-0.01s.png-51dfe5a7a1c469090e2905c2e8887660.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_299_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_299_delay-0.01s.png-7e58881ecda39a3c441d514b65694c70.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_299_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_299_delay-0.01s.png-51dfe5a7a1c469090e2905c2e8887660.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_300_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_300_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_300_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_300_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_300_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_300_delay-0.01s.png.import similarity index 65% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_300_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_300_delay-0.01s.png.import index 417c715e..564326d9 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_300_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_300_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://dt7rjtc6cygua" -path="res://.godot/imported/frame_300_delay-0.01s.png-4870a8743dc8dc1185532e7c2aff30d4.ctex" +path="res://.godot/imported/frame_300_delay-0.01s.png-ee6cb62fb1d9cc738235353ecfa73cd2.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_300_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_300_delay-0.01s.png-4870a8743dc8dc1185532e7c2aff30d4.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_300_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_300_delay-0.01s.png-ee6cb62fb1d9cc738235353ecfa73cd2.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_301_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_301_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_301_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_301_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_301_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_301_delay-0.01s.png.import similarity index 65% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_301_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_301_delay-0.01s.png.import index ee7b4cca..4f830ddd 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_301_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_301_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://ebmahc0et0uf" -path="res://.godot/imported/frame_301_delay-0.01s.png-11b124acae6a15dbd9c7aa66c7c3cf48.ctex" +path="res://.godot/imported/frame_301_delay-0.01s.png-a2b1e71acfa32ca467e385af7a1a013e.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_301_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_301_delay-0.01s.png-11b124acae6a15dbd9c7aa66c7c3cf48.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_301_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_301_delay-0.01s.png-a2b1e71acfa32ca467e385af7a1a013e.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_302_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_302_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_302_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_302_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_302_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_302_delay-0.01s.png.import similarity index 65% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_302_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_302_delay-0.01s.png.import index fdcb22a8..810099a2 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_302_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_302_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://cb4ulrnxegfd1" -path="res://.godot/imported/frame_302_delay-0.01s.png-7b035eb8169598741a7c322950816b25.ctex" +path="res://.godot/imported/frame_302_delay-0.01s.png-9c066d135c4c541d52d1ad6a44c41a83.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_302_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_302_delay-0.01s.png-7b035eb8169598741a7c322950816b25.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_302_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_302_delay-0.01s.png-9c066d135c4c541d52d1ad6a44c41a83.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_303_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_303_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_303_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_303_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_303_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_303_delay-0.01s.png.import similarity index 65% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_303_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_303_delay-0.01s.png.import index 861df728..d292d516 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_303_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_303_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://d13kp0hmihf0s" -path="res://.godot/imported/frame_303_delay-0.01s.png-0ff8126fb617d4398fdbab5f3431c1a6.ctex" +path="res://.godot/imported/frame_303_delay-0.01s.png-90d4265e0800b9c98f3a5711a2295c40.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_303_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_303_delay-0.01s.png-0ff8126fb617d4398fdbab5f3431c1a6.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_303_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_303_delay-0.01s.png-90d4265e0800b9c98f3a5711a2295c40.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_304_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_304_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_304_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_304_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_304_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_304_delay-0.01s.png.import similarity index 65% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_304_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_304_delay-0.01s.png.import index 26a80bae..18d89302 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_304_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_304_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://dqe21r1qljmdl" -path="res://.godot/imported/frame_304_delay-0.01s.png-bb201757effbc0c82da6c1f4ddcbba28.ctex" +path="res://.godot/imported/frame_304_delay-0.01s.png-1b4d7bfdda871b805d129c9a27691687.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_304_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_304_delay-0.01s.png-bb201757effbc0c82da6c1f4ddcbba28.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_304_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_304_delay-0.01s.png-1b4d7bfdda871b805d129c9a27691687.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_305_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_305_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_305_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_305_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_305_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_305_delay-0.01s.png.import similarity index 65% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_305_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_305_delay-0.01s.png.import index 5b2eb0bd..178ffa0d 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_305_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_305_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://bgrrfp4car5pl" -path="res://.godot/imported/frame_305_delay-0.01s.png-9809bf62b2cd9352fa8a76ffaf02057f.ctex" +path="res://.godot/imported/frame_305_delay-0.01s.png-25d2b053c02818e90d206fd404d9b298.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_305_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_305_delay-0.01s.png-9809bf62b2cd9352fa8a76ffaf02057f.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_305_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_305_delay-0.01s.png-25d2b053c02818e90d206fd404d9b298.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_306_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_306_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_306_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_306_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_306_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_306_delay-0.01s.png.import similarity index 65% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_306_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_306_delay-0.01s.png.import index 64d920f7..18afe052 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_306_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_306_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://br6be64txnp6e" -path="res://.godot/imported/frame_306_delay-0.01s.png-049ddf615ef62a216f6338074e23a83c.ctex" +path="res://.godot/imported/frame_306_delay-0.01s.png-b047f99d3d40aa2b355e381e072111cb.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_306_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_306_delay-0.01s.png-049ddf615ef62a216f6338074e23a83c.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_306_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_306_delay-0.01s.png-b047f99d3d40aa2b355e381e072111cb.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_307_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_307_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_307_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_307_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_093_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_307_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_093_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_307_delay-0.01s.png.import index 032d3e83..e53cf558 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/F/frame_093_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_307_delay-0.01s.png.import @@ -2,16 +2,16 @@ importer="texture" type="CompressedTexture2D" -uid="uid://d348miaak1mpu" -path="res://.godot/imported/frame_093_delay-0.01s.png-cf448be1d4ab8467540ce327c55963ae.ctex" +uid="uid://cpmsi4om5ax3s" +path="res://.godot/imported/frame_307_delay-0.01s.png-00f35a13cce2d2dc47c78af4ecfce4d1.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/F/frame_093_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_093_delay-0.01s.png-cf448be1d4ab8467540ce327c55963ae.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_307_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_307_delay-0.01s.png-00f35a13cce2d2dc47c78af4ecfce4d1.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_308_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_308_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_308_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_308_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_308_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_308_delay-0.01s.png.import similarity index 65% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_308_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_308_delay-0.01s.png.import index 69b49b60..ecbaa435 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_308_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_308_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://c3g0x5tdf78pe" -path="res://.godot/imported/frame_308_delay-0.01s.png-6bb75e404c209b166f11034a1901f23f.ctex" +path="res://.godot/imported/frame_308_delay-0.01s.png-c15632677829b124da99376e1796b87d.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_308_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_308_delay-0.01s.png-6bb75e404c209b166f11034a1901f23f.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_308_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_308_delay-0.01s.png-c15632677829b124da99376e1796b87d.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_309_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_309_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_309_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_309_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_309_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_309_delay-0.01s.png.import similarity index 65% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_309_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_309_delay-0.01s.png.import index 524fdea9..ad14b03e 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_309_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_309_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://erk6m62oylcc" -path="res://.godot/imported/frame_309_delay-0.01s.png-da19c9e1015b08950d6e571b9f92758a.ctex" +path="res://.godot/imported/frame_309_delay-0.01s.png-dd4dec087c2c6531dd5f18a9105c9e6d.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_309_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_309_delay-0.01s.png-da19c9e1015b08950d6e571b9f92758a.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_309_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_309_delay-0.01s.png-dd4dec087c2c6531dd5f18a9105c9e6d.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_310_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_310_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_310_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_310_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_310_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_310_delay-0.01s.png.import similarity index 65% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_310_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_310_delay-0.01s.png.import index d04b8f9c..3156d4fc 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_310_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_310_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://df02o1yylula8" -path="res://.godot/imported/frame_310_delay-0.01s.png-2d4091e20ae43e066ca77bcf7ddae960.ctex" +path="res://.godot/imported/frame_310_delay-0.01s.png-127138a9634fde0f3138a2a5952689c3.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_310_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_310_delay-0.01s.png-2d4091e20ae43e066ca77bcf7ddae960.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_310_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_310_delay-0.01s.png-127138a9634fde0f3138a2a5952689c3.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_311_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_311_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_311_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_311_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_311_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_311_delay-0.01s.png.import similarity index 65% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_311_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_311_delay-0.01s.png.import index cc99763d..3908777b 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_311_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_311_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://dpuoyrffq8l1f" -path="res://.godot/imported/frame_311_delay-0.01s.png-a6dbe5d7855fb817446f82ad90c64d4f.ctex" +path="res://.godot/imported/frame_311_delay-0.01s.png-034fa71c981e29e7c83f63fde4792882.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_311_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_311_delay-0.01s.png-a6dbe5d7855fb817446f82ad90c64d4f.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_311_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_311_delay-0.01s.png-034fa71c981e29e7c83f63fde4792882.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_312_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_312_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_312_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_312_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_312_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_312_delay-0.01s.png.import similarity index 65% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_312_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_312_delay-0.01s.png.import index 3452c6eb..00874d6c 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_312_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_312_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://bw520j2fbenqx" -path="res://.godot/imported/frame_312_delay-0.01s.png-c518fbcbcac899843ce84fa84b1eae40.ctex" +path="res://.godot/imported/frame_312_delay-0.01s.png-e449160e77778239d1f1c25bad77c379.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_312_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_312_delay-0.01s.png-c518fbcbcac899843ce84fa84b1eae40.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_312_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_312_delay-0.01s.png-e449160e77778239d1f1c25bad77c379.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_313_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_313_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_313_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_313_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_313_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_313_delay-0.01s.png.import similarity index 65% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_313_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_313_delay-0.01s.png.import index 2665bc67..266f225b 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_313_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_313_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://c1wtdiv7cv61x" -path="res://.godot/imported/frame_313_delay-0.01s.png-6a396776332ce60c063ac41b546232bc.ctex" +path="res://.godot/imported/frame_313_delay-0.01s.png-2abff8ca77081b7d7142bf845efd6376.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_313_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_313_delay-0.01s.png-6a396776332ce60c063ac41b546232bc.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_313_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_313_delay-0.01s.png-2abff8ca77081b7d7142bf845efd6376.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_314_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_314_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_314_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_314_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_314_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_314_delay-0.01s.png.import similarity index 65% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_314_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_314_delay-0.01s.png.import index b8b6fdfb..9b231d70 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_314_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_314_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://dhmx8xkllsk3" -path="res://.godot/imported/frame_314_delay-0.01s.png-584092574488801524a3876d3f75eb3f.ctex" +path="res://.godot/imported/frame_314_delay-0.01s.png-a9fb98748cc173bf5ddec5b2856f0d2c.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_314_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_314_delay-0.01s.png-584092574488801524a3876d3f75eb3f.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_314_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_314_delay-0.01s.png-a9fb98748cc173bf5ddec5b2856f0d2c.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_315_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_315_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_315_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_315_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_315_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_315_delay-0.01s.png.import similarity index 65% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_315_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_315_delay-0.01s.png.import index c84df208..1bcddbe6 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_315_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_315_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://bncjb7job7rim" -path="res://.godot/imported/frame_315_delay-0.01s.png-9eaffc2f1f5d478421cb4a9df269b258.ctex" +path="res://.godot/imported/frame_315_delay-0.01s.png-be7404e14307ad9cc29e39d7427c4cde.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_315_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_315_delay-0.01s.png-9eaffc2f1f5d478421cb4a9df269b258.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_315_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_315_delay-0.01s.png-be7404e14307ad9cc29e39d7427c4cde.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_316_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_316_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_316_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_316_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_316_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_316_delay-0.01s.png.import similarity index 65% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_316_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_316_delay-0.01s.png.import index a5610e89..f59adc92 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_316_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_316_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://diueunsg4spc3" -path="res://.godot/imported/frame_316_delay-0.01s.png-26a873e474f2af7adbe9e0aaa89b3a73.ctex" +path="res://.godot/imported/frame_316_delay-0.01s.png-016c1dffaef51b02a3a41d385f795f25.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_316_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_316_delay-0.01s.png-26a873e474f2af7adbe9e0aaa89b3a73.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_316_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_316_delay-0.01s.png-016c1dffaef51b02a3a41d385f795f25.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_317_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_317_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_317_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_317_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_317_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_317_delay-0.01s.png.import similarity index 65% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_317_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_317_delay-0.01s.png.import index 3e4fc911..dc031371 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_317_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_317_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://brsdd7xt3c606" -path="res://.godot/imported/frame_317_delay-0.01s.png-83d8e7fa6f8664bcbdfbce463a6193fb.ctex" +path="res://.godot/imported/frame_317_delay-0.01s.png-be877dc80610308caab69bf486fc50ad.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_317_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_317_delay-0.01s.png-83d8e7fa6f8664bcbdfbce463a6193fb.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_317_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_317_delay-0.01s.png-be877dc80610308caab69bf486fc50ad.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_318_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_318_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_318_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_318_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_318_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_318_delay-0.01s.png.import similarity index 65% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_318_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_318_delay-0.01s.png.import index b28f6523..c75630b3 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_318_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_318_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://by2u0d5sqqpml" -path="res://.godot/imported/frame_318_delay-0.01s.png-70b3085448f9e8ca2a7a1d96ebf7a8ca.ctex" +path="res://.godot/imported/frame_318_delay-0.01s.png-6d55d49c0b5de274b94e1cca91b75601.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_318_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_318_delay-0.01s.png-70b3085448f9e8ca2a7a1d96ebf7a8ca.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_318_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_318_delay-0.01s.png-6d55d49c0b5de274b94e1cca91b75601.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_319_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_319_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_319_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_319_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_319_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_319_delay-0.01s.png.import similarity index 65% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_319_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_319_delay-0.01s.png.import index f304c824..ad7ddefb 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_319_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_319_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://j5m4yxs5ylpo" -path="res://.godot/imported/frame_319_delay-0.01s.png-77104cf847474f2380366bd0f98c8047.ctex" +path="res://.godot/imported/frame_319_delay-0.01s.png-83208e6f110e3f0cc5bdc792f90e1455.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_319_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_319_delay-0.01s.png-77104cf847474f2380366bd0f98c8047.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_319_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_319_delay-0.01s.png-83208e6f110e3f0cc5bdc792f90e1455.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_320_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_320_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_320_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_320_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_320_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_320_delay-0.01s.png.import similarity index 65% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_320_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_320_delay-0.01s.png.import index 43837db3..07c5713f 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_320_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_320_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://cyd6norqkaq5g" -path="res://.godot/imported/frame_320_delay-0.01s.png-3975659dcbbeb1b8612192a87a6d07b1.ctex" +path="res://.godot/imported/frame_320_delay-0.01s.png-e51cf3107e01c814d9f11b41b1dfdc13.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_320_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_320_delay-0.01s.png-3975659dcbbeb1b8612192a87a6d07b1.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_320_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_320_delay-0.01s.png-e51cf3107e01c814d9f11b41b1dfdc13.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_321_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_321_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_321_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_321_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_321_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_321_delay-0.01s.png.import similarity index 65% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_321_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_321_delay-0.01s.png.import index ae4bae80..3c73e6f3 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_321_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_321_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://dye83j82gbfxm" -path="res://.godot/imported/frame_321_delay-0.01s.png-5625e3cd0ad23a0cc11f9d1d54aab983.ctex" +path="res://.godot/imported/frame_321_delay-0.01s.png-05094a76e5a503e474e34fe1584e9e0d.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_321_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_321_delay-0.01s.png-5625e3cd0ad23a0cc11f9d1d54aab983.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_321_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_321_delay-0.01s.png-05094a76e5a503e474e34fe1584e9e0d.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_322_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_322_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_322_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_322_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_322_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_322_delay-0.01s.png.import similarity index 65% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_322_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_322_delay-0.01s.png.import index ce81698e..292f65d9 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_322_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_322_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://bx7mgwtc166jt" -path="res://.godot/imported/frame_322_delay-0.01s.png-f4681458ffaac2c41566a41c375f2519.ctex" +path="res://.godot/imported/frame_322_delay-0.01s.png-c0af8f51e48d3e288995ed7ae8912c55.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_322_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_322_delay-0.01s.png-f4681458ffaac2c41566a41c375f2519.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_322_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_322_delay-0.01s.png-c0af8f51e48d3e288995ed7ae8912c55.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_323_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_323_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_323_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_323_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_323_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_323_delay-0.01s.png.import similarity index 65% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_323_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_323_delay-0.01s.png.import index 9473bb64..a47db61e 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_323_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_323_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://cfpgfcbh7p2qu" -path="res://.godot/imported/frame_323_delay-0.01s.png-0cbc9f2a3af2b992a9a940b8f0752797.ctex" +path="res://.godot/imported/frame_323_delay-0.01s.png-608ddf7fdba945e24224a41173df3962.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_323_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_323_delay-0.01s.png-0cbc9f2a3af2b992a9a940b8f0752797.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_323_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_323_delay-0.01s.png-608ddf7fdba945e24224a41173df3962.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_324_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_324_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_324_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_324_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_324_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_324_delay-0.01s.png.import similarity index 65% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_324_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_324_delay-0.01s.png.import index 9859858a..592c34eb 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_324_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_324_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://dlp8a5mucoadb" -path="res://.godot/imported/frame_324_delay-0.01s.png-770971281d7136af00b16b01807430b4.ctex" +path="res://.godot/imported/frame_324_delay-0.01s.png-68f6c4aee5db3a5fcc0e62d41fe57176.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_324_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_324_delay-0.01s.png-770971281d7136af00b16b01807430b4.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_324_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_324_delay-0.01s.png-68f6c4aee5db3a5fcc0e62d41fe57176.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_325_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_325_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_325_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_325_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_325_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_325_delay-0.01s.png.import similarity index 65% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_325_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_325_delay-0.01s.png.import index 822ca4f0..ced7c501 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_325_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_325_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://071wf8icu634" -path="res://.godot/imported/frame_325_delay-0.01s.png-8fc0998d4341fda2f2ed6c20e7480fc0.ctex" +path="res://.godot/imported/frame_325_delay-0.01s.png-20b6dd3ba5311be2e5f6f6311eea2b35.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_325_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_325_delay-0.01s.png-8fc0998d4341fda2f2ed6c20e7480fc0.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_325_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_325_delay-0.01s.png-20b6dd3ba5311be2e5f6f6311eea2b35.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_326_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_326_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_326_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_326_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_326_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_326_delay-0.01s.png.import similarity index 65% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_326_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_326_delay-0.01s.png.import index 40b6ed98..54c01ade 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_326_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_326_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://37q4jgin3k1a" -path="res://.godot/imported/frame_326_delay-0.01s.png-93e4e1bda1bc2d4545a7dcb47ff35d9a.ctex" +path="res://.godot/imported/frame_326_delay-0.01s.png-b399d3602ce5894abcb194f3d766c887.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_326_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_326_delay-0.01s.png-93e4e1bda1bc2d4545a7dcb47ff35d9a.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_326_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_326_delay-0.01s.png-b399d3602ce5894abcb194f3d766c887.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_327_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_327_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_327_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_327_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_327_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_327_delay-0.01s.png.import similarity index 65% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_327_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_327_delay-0.01s.png.import index 54c78a1c..fa8f760e 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_327_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_327_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://5f115symdsmg" -path="res://.godot/imported/frame_327_delay-0.01s.png-f69fa547381a745292cb146cab08018f.ctex" +path="res://.godot/imported/frame_327_delay-0.01s.png-3f1a106c58a7f5ae6b2e42c7dda6032c.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_327_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_327_delay-0.01s.png-f69fa547381a745292cb146cab08018f.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_327_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_327_delay-0.01s.png-3f1a106c58a7f5ae6b2e42c7dda6032c.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_328_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_328_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_328_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_328_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_328_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_328_delay-0.01s.png.import similarity index 65% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_328_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_328_delay-0.01s.png.import index 8e793113..847c7379 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_328_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_328_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://b6swecrctxcgy" -path="res://.godot/imported/frame_328_delay-0.01s.png-cb8b64dd136d11c8e1bd50a1f23f419a.ctex" +path="res://.godot/imported/frame_328_delay-0.01s.png-ecccbb12c0ecc4df0d74b1e4f096d9ae.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_328_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_328_delay-0.01s.png-cb8b64dd136d11c8e1bd50a1f23f419a.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_328_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_328_delay-0.01s.png-ecccbb12c0ecc4df0d74b1e4f096d9ae.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_329_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_329_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_329_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_329_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_329_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_329_delay-0.01s.png.import similarity index 65% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_329_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_329_delay-0.01s.png.import index b10ac4c7..b5503994 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_329_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_329_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://b6batijegfqfe" -path="res://.godot/imported/frame_329_delay-0.01s.png-71de118eb3d674774450d5f25c772c87.ctex" +path="res://.godot/imported/frame_329_delay-0.01s.png-6aca771b0d55b60c21b3b753ecbc0795.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_329_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_329_delay-0.01s.png-71de118eb3d674774450d5f25c772c87.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/LAVA LOOP/frame_329_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_329_delay-0.01s.png-6aca771b0d55b60c21b3b753ecbc0795.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/Primary Attack/F/frame_093_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/Primary Attack/F/frame_093_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/Primary Attack/F/frame_093_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/Primary Attack/F/frame_093_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/Primary Attack/F/frame_093_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/Primary Attack/F/frame_093_delay-0.01s.png.import similarity index 65% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/Primary Attack/F/frame_093_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/Primary Attack/F/frame_093_delay-0.01s.png.import index d06a137c..ffa09674 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/Primary Attack/F/frame_093_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/Primary Attack/F/frame_093_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://c46w5xfuwhnr6" -path="res://.godot/imported/frame_093_delay-0.01s.png-f991ff0ec3b4cc2467aae8e6f87dff1a.ctex" +path="res://.godot/imported/frame_093_delay-0.01s.png-530063422db6dae9f75d8dd8b3f63545.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/Primary Attack/F/frame_093_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_093_delay-0.01s.png-f991ff0ec3b4cc2467aae8e6f87dff1a.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/Primary Attack/F/frame_093_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_093_delay-0.01s.png-530063422db6dae9f75d8dd8b3f63545.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/Primary Attack/F/frame_094_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/Primary Attack/F/frame_094_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/Primary Attack/F/frame_094_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/Primary Attack/F/frame_094_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/Primary Attack/F/frame_094_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/Primary Attack/F/frame_094_delay-0.01s.png.import similarity index 65% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/Primary Attack/F/frame_094_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/Primary Attack/F/frame_094_delay-0.01s.png.import index 696d2321..7b0901bf 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/Primary Attack/F/frame_094_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/Primary Attack/F/frame_094_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://chba8jbs2trtk" -path="res://.godot/imported/frame_094_delay-0.01s.png-2dd9e34acf73aa468d5812db15a45652.ctex" +path="res://.godot/imported/frame_094_delay-0.01s.png-816efb1b8d0fe2dcbc6b7e18be243072.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/Primary Attack/F/frame_094_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_094_delay-0.01s.png-2dd9e34acf73aa468d5812db15a45652.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/Primary Attack/F/frame_094_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_094_delay-0.01s.png-816efb1b8d0fe2dcbc6b7e18be243072.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/Primary Attack/F/frame_095_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/Primary Attack/F/frame_095_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/Primary Attack/F/frame_095_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/Primary Attack/F/frame_095_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/Primary Attack/F/frame_095_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/Primary Attack/F/frame_095_delay-0.01s.png.import similarity index 65% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/Primary Attack/F/frame_095_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/Primary Attack/F/frame_095_delay-0.01s.png.import index 602310fc..1c5d4d82 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/Primary Attack/F/frame_095_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/Primary Attack/F/frame_095_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://b2mfv3bh1x3xb" -path="res://.godot/imported/frame_095_delay-0.01s.png-6ec77ce508d79b5576cbdaab34fb3049.ctex" +path="res://.godot/imported/frame_095_delay-0.01s.png-1fa334075d2645cc53df2802ca597e3b.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/Primary Attack/F/frame_095_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_095_delay-0.01s.png-6ec77ce508d79b5576cbdaab34fb3049.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/Primary Attack/F/frame_095_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_095_delay-0.01s.png-1fa334075d2645cc53df2802ca597e3b.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/Primary Attack/F/frame_096_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/Primary Attack/F/frame_096_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/Primary Attack/F/frame_096_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/Primary Attack/F/frame_096_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/Primary Attack/F/frame_096_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/Primary Attack/F/frame_096_delay-0.01s.png.import similarity index 65% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/Primary Attack/F/frame_096_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/Primary Attack/F/frame_096_delay-0.01s.png.import index da3bd28d..90b35b68 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/Primary Attack/F/frame_096_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/Primary Attack/F/frame_096_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://cyf85k3hjhfyf" -path="res://.godot/imported/frame_096_delay-0.01s.png-25cb66f126ba6808335778a7bac51ee4.ctex" +path="res://.godot/imported/frame_096_delay-0.01s.png-459974445703db78ca81837432624468.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/Primary Attack/F/frame_096_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_096_delay-0.01s.png-25cb66f126ba6808335778a7bac51ee4.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/Primary Attack/F/frame_096_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_096_delay-0.01s.png-459974445703db78ca81837432624468.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/Primary Attack/F/frame_097_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/Primary Attack/F/frame_097_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/Primary Attack/F/frame_097_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/Primary Attack/F/frame_097_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/Primary Attack/F/frame_097_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/Primary Attack/F/frame_097_delay-0.01s.png.import similarity index 65% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/Primary Attack/F/frame_097_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/Primary Attack/F/frame_097_delay-0.01s.png.import index c9797cc2..dcc14673 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/Primary Attack/F/frame_097_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/Primary Attack/F/frame_097_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://3hkok2jl7aqm" -path="res://.godot/imported/frame_097_delay-0.01s.png-386b801e137d00607ee201b66a81ec41.ctex" +path="res://.godot/imported/frame_097_delay-0.01s.png-167eddabe591e99c058acda6d81c9c84.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/Primary Attack/F/frame_097_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_097_delay-0.01s.png-386b801e137d00607ee201b66a81ec41.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/Primary Attack/F/frame_097_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_097_delay-0.01s.png-167eddabe591e99c058acda6d81c9c84.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/Primary Attack/F/frame_098_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/Primary Attack/F/frame_098_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/Primary Attack/F/frame_098_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/Primary Attack/F/frame_098_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/Primary Attack/F/frame_098_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/Primary Attack/F/frame_098_delay-0.01s.png.import similarity index 65% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/Primary Attack/F/frame_098_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/Primary Attack/F/frame_098_delay-0.01s.png.import index 6b8d38a3..fa2de4ba 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/Primary Attack/F/frame_098_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/Primary Attack/F/frame_098_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://c8mbs175j1sfu" -path="res://.godot/imported/frame_098_delay-0.01s.png-e43c28579bae474abb2c7a47b3272960.ctex" +path="res://.godot/imported/frame_098_delay-0.01s.png-d8670996409768580f71b1a833c6a02f.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/Primary Attack/F/frame_098_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_098_delay-0.01s.png-e43c28579bae474abb2c7a47b3272960.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/Primary Attack/F/frame_098_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_098_delay-0.01s.png-d8670996409768580f71b1a833c6a02f.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/Primary Attack/F/frame_099_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/Primary Attack/F/frame_099_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/Primary Attack/F/frame_099_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/Primary Attack/F/frame_099_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/Primary Attack/F/frame_099_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/Primary Attack/F/frame_099_delay-0.01s.png.import similarity index 65% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/Primary Attack/F/frame_099_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/Primary Attack/F/frame_099_delay-0.01s.png.import index 87645a56..90268ec4 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/Primary Attack/F/frame_099_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/Primary Attack/F/frame_099_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://bw5tqu5fgkhh5" -path="res://.godot/imported/frame_099_delay-0.01s.png-898e7eae37352f24ada1fa2c3b18654b.ctex" +path="res://.godot/imported/frame_099_delay-0.01s.png-fb28390f22381371589ac9a2cef2962b.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/Primary Attack/F/frame_099_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_099_delay-0.01s.png-898e7eae37352f24ada1fa2c3b18654b.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/Primary Attack/F/frame_099_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_099_delay-0.01s.png-fb28390f22381371589ac9a2cef2962b.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/Primary Attack/F/frame_100_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/Primary Attack/F/frame_100_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/Primary Attack/F/frame_100_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/Primary Attack/F/frame_100_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/Primary Attack/F/frame_100_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/Primary Attack/F/frame_100_delay-0.01s.png.import similarity index 65% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/Primary Attack/F/frame_100_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/Primary Attack/F/frame_100_delay-0.01s.png.import index dce6efad..55af72e2 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/Primary Attack/F/frame_100_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/Primary Attack/F/frame_100_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://dvwu1pe0v5a5h" -path="res://.godot/imported/frame_100_delay-0.01s.png-3a1aad298fe0883310302acb330897ea.ctex" +path="res://.godot/imported/frame_100_delay-0.01s.png-49527c67e8aab0e0d6211ec373a99353.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/Primary Attack/F/frame_100_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_100_delay-0.01s.png-3a1aad298fe0883310302acb330897ea.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/Primary Attack/F/frame_100_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_100_delay-0.01s.png-49527c67e8aab0e0d6211ec373a99353.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/Primary Attack/F/frame_101_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/Primary Attack/F/frame_101_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/Primary Attack/F/frame_101_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/Primary Attack/F/frame_101_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/Primary Attack/F/frame_101_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/Primary Attack/F/frame_101_delay-0.01s.png.import new file mode 100644 index 00000000..e50f45be --- /dev/null +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/Primary Attack/F/frame_101_delay-0.01s.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c332v26b101k" +path="res://.godot/imported/frame_101_delay-0.01s.png-d6aebaf5bca2bf669b96db9f8765fd99.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://src/enemy/enemy_types/09. Agni/animations/Primary Attack/F/frame_101_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_101_delay-0.01s.png-d6aebaf5bca2bf669b96db9f8765fd99.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/Primary Attack/F/frame_102_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/Primary Attack/F/frame_102_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/Primary Attack/F/frame_102_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/Primary Attack/F/frame_102_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/Primary Attack/F/frame_102_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/Primary Attack/F/frame_102_delay-0.01s.png.import similarity index 65% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/Primary Attack/F/frame_102_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/Primary Attack/F/frame_102_delay-0.01s.png.import index a039530e..8ea23c71 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/Primary Attack/F/frame_102_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/Primary Attack/F/frame_102_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://b3ybjgdm452gp" -path="res://.godot/imported/frame_102_delay-0.01s.png-acc9dfd5e9807a76899e3c5fbd8b9ef1.ctex" +path="res://.godot/imported/frame_102_delay-0.01s.png-420d957ae150d04bd72b2628079d31eb.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/Primary Attack/F/frame_102_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_102_delay-0.01s.png-acc9dfd5e9807a76899e3c5fbd8b9ef1.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/Primary Attack/F/frame_102_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_102_delay-0.01s.png-420d957ae150d04bd72b2628079d31eb.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/Primary Attack/F/frame_103_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/Primary Attack/F/frame_103_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/Primary Attack/F/frame_103_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/Primary Attack/F/frame_103_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/Primary Attack/F/frame_103_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/Primary Attack/F/frame_103_delay-0.01s.png.import similarity index 65% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/Primary Attack/F/frame_103_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/Primary Attack/F/frame_103_delay-0.01s.png.import index c63581ba..a2af75c5 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/Primary Attack/F/frame_103_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/Primary Attack/F/frame_103_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://cp8ld1gc0pr61" -path="res://.godot/imported/frame_103_delay-0.01s.png-06aeb075818977cac670ae7e54a10203.ctex" +path="res://.godot/imported/frame_103_delay-0.01s.png-491b0fcd0e5a1647fdfe47adf5429e5c.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/Primary Attack/F/frame_103_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_103_delay-0.01s.png-06aeb075818977cac670ae7e54a10203.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/Primary Attack/F/frame_103_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_103_delay-0.01s.png-491b0fcd0e5a1647fdfe47adf5429e5c.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/Primary Attack/F/frame_104_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/Primary Attack/F/frame_104_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/Primary Attack/F/frame_104_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/Primary Attack/F/frame_104_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/Primary Attack/F/frame_104_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/Primary Attack/F/frame_104_delay-0.01s.png.import similarity index 65% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/Primary Attack/F/frame_104_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/Primary Attack/F/frame_104_delay-0.01s.png.import index 1d13948b..0df2df4f 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/Primary Attack/F/frame_104_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/Primary Attack/F/frame_104_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://bj3wqh6us08j6" -path="res://.godot/imported/frame_104_delay-0.01s.png-3ba6edee81300f03b6f9a51f35e50ea3.ctex" +path="res://.godot/imported/frame_104_delay-0.01s.png-1d9ce2f4abea4b237da093778e3c0cb0.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/Primary Attack/F/frame_104_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_104_delay-0.01s.png-3ba6edee81300f03b6f9a51f35e50ea3.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/Primary Attack/F/frame_104_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_104_delay-0.01s.png-1d9ce2f4abea4b237da093778e3c0cb0.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/Primary Attack/F/frame_105_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/Primary Attack/F/frame_105_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/Primary Attack/F/frame_105_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/Primary Attack/F/frame_105_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/Primary Attack/F/frame_105_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/Primary Attack/F/frame_105_delay-0.01s.png.import similarity index 65% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/Primary Attack/F/frame_105_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/Primary Attack/F/frame_105_delay-0.01s.png.import index 1cbcb0e9..16daa7ff 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/Primary Attack/F/frame_105_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/Primary Attack/F/frame_105_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://biqd4qxqj1jq" -path="res://.godot/imported/frame_105_delay-0.01s.png-8c1b5e058ee3ae9b2d48b20394175fab.ctex" +path="res://.godot/imported/frame_105_delay-0.01s.png-5d451baa73719b14d71668507ee29e00.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/Primary Attack/F/frame_105_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_105_delay-0.01s.png-8c1b5e058ee3ae9b2d48b20394175fab.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/Primary Attack/F/frame_105_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_105_delay-0.01s.png-5d451baa73719b14d71668507ee29e00.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/Primary Attack/F/frame_106_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/Primary Attack/F/frame_106_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/Primary Attack/F/frame_106_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/Primary Attack/F/frame_106_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/Primary Attack/F/frame_106_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/Primary Attack/F/frame_106_delay-0.01s.png.import similarity index 65% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/Primary Attack/F/frame_106_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/Primary Attack/F/frame_106_delay-0.01s.png.import index fbeea0c1..390db0d2 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/Primary Attack/F/frame_106_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/Primary Attack/F/frame_106_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://dcqrai54vxasy" -path="res://.godot/imported/frame_106_delay-0.01s.png-c989264ddf60c8775fdcff174514502c.ctex" +path="res://.godot/imported/frame_106_delay-0.01s.png-576be1e37ae07720a5dbdd2902c538bb.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/Primary Attack/F/frame_106_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_106_delay-0.01s.png-c989264ddf60c8775fdcff174514502c.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/Primary Attack/F/frame_106_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_106_delay-0.01s.png-576be1e37ae07720a5dbdd2902c538bb.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/Primary Attack/F/frame_107_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/Primary Attack/F/frame_107_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/Primary Attack/F/frame_107_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/Primary Attack/F/frame_107_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/Primary Attack/F/frame_107_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/Primary Attack/F/frame_107_delay-0.01s.png.import similarity index 65% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/Primary Attack/F/frame_107_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/Primary Attack/F/frame_107_delay-0.01s.png.import index 1b64ca6d..5be66af9 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/Primary Attack/F/frame_107_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/Primary Attack/F/frame_107_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://w0adyv4klg8u" -path="res://.godot/imported/frame_107_delay-0.01s.png-460ea518fdba60b7864300082a939218.ctex" +path="res://.godot/imported/frame_107_delay-0.01s.png-0524b2464c9559ee9e2ccd36c2ca97f8.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/Primary Attack/F/frame_107_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_107_delay-0.01s.png-460ea518fdba60b7864300082a939218.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/Primary Attack/F/frame_107_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_107_delay-0.01s.png-0524b2464c9559ee9e2ccd36c2ca97f8.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/Primary Attack/F/frame_108_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/Primary Attack/F/frame_108_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/Primary Attack/F/frame_108_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/Primary Attack/F/frame_108_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/Primary Attack/F/frame_108_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/Primary Attack/F/frame_108_delay-0.01s.png.import similarity index 65% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/Primary Attack/F/frame_108_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/Primary Attack/F/frame_108_delay-0.01s.png.import index 46fd2d91..2b34d0ff 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/Primary Attack/F/frame_108_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/Primary Attack/F/frame_108_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://bj4w1t366je36" -path="res://.godot/imported/frame_108_delay-0.01s.png-e03825d4b45802966d35d1adcd16245c.ctex" +path="res://.godot/imported/frame_108_delay-0.01s.png-dd77348bdcc64b179e524c0187837a09.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/Primary Attack/F/frame_108_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_108_delay-0.01s.png-e03825d4b45802966d35d1adcd16245c.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/Primary Attack/F/frame_108_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_108_delay-0.01s.png-dd77348bdcc64b179e524c0187837a09.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_198_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_198_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_198_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_198_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_198_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_198_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_198_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_198_delay-0.01s.png.import index 9f4c47df..eb5dcec3 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_198_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_198_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://bhsk32l05xvbf" -path="res://.godot/imported/frame_198_delay-0.01s.png-a6e94611a3f5a38a08603c3775304d6f.ctex" +path="res://.godot/imported/frame_198_delay-0.01s.png-babdd9c4974d18ae6f6afaa456e84896.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/R/frame_198_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_198_delay-0.01s.png-a6e94611a3f5a38a08603c3775304d6f.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/R/frame_198_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_198_delay-0.01s.png-babdd9c4974d18ae6f6afaa456e84896.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_199_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_199_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_199_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_199_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_199_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_199_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_199_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_199_delay-0.01s.png.import index fb22b6d1..30b6e944 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_199_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_199_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://06p7wl1ifibr" -path="res://.godot/imported/frame_199_delay-0.01s.png-6895cf40a1c72d8385a5992d8512b92f.ctex" +path="res://.godot/imported/frame_199_delay-0.01s.png-98c39f3d05ea904675eaed489e441d66.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/R/frame_199_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_199_delay-0.01s.png-6895cf40a1c72d8385a5992d8512b92f.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/R/frame_199_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_199_delay-0.01s.png-98c39f3d05ea904675eaed489e441d66.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_200_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_200_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_200_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_200_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_200_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_200_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_200_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_200_delay-0.01s.png.import index b0f98c0d..891c5525 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_200_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_200_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://54qkscqnmgcu" -path="res://.godot/imported/frame_200_delay-0.01s.png-7beb6bf47c964570361800f9940682fa.ctex" +path="res://.godot/imported/frame_200_delay-0.01s.png-daa6d9d0c5b2b415f023574d70be7c51.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/R/frame_200_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_200_delay-0.01s.png-7beb6bf47c964570361800f9940682fa.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/R/frame_200_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_200_delay-0.01s.png-daa6d9d0c5b2b415f023574d70be7c51.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_201_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_201_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_201_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_201_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_201_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_201_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_201_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_201_delay-0.01s.png.import index 73100b51..9bc6fc51 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_201_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_201_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://cwfiuljjxhxtu" -path="res://.godot/imported/frame_201_delay-0.01s.png-358cdaa4ca8d64272b0d5ce074108852.ctex" +path="res://.godot/imported/frame_201_delay-0.01s.png-3ade9b88afe4385384bdf4469de769d9.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/R/frame_201_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_201_delay-0.01s.png-358cdaa4ca8d64272b0d5ce074108852.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/R/frame_201_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_201_delay-0.01s.png-3ade9b88afe4385384bdf4469de769d9.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_202_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_202_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_202_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_202_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_202_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_202_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_202_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_202_delay-0.01s.png.import index 2c402410..b8023e6a 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_202_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_202_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://rxrcw23shk21" -path="res://.godot/imported/frame_202_delay-0.01s.png-6ab2063db5723b97604f7638fa723951.ctex" +path="res://.godot/imported/frame_202_delay-0.01s.png-d5692b2bc32b82e498b6aa6bfcc4e890.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/R/frame_202_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_202_delay-0.01s.png-6ab2063db5723b97604f7638fa723951.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/R/frame_202_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_202_delay-0.01s.png-d5692b2bc32b82e498b6aa6bfcc4e890.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_203_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_203_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_203_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_203_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_203_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_203_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_203_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_203_delay-0.01s.png.import index 27993184..7d1dcef9 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_203_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_203_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://chyf5dfvhdmha" -path="res://.godot/imported/frame_203_delay-0.01s.png-b4cc8b6f9bf2e8ccbd5859b61d000840.ctex" +path="res://.godot/imported/frame_203_delay-0.01s.png-1880360ad0b30778a5f61aa1e43faf4e.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/R/frame_203_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_203_delay-0.01s.png-b4cc8b6f9bf2e8ccbd5859b61d000840.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/R/frame_203_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_203_delay-0.01s.png-1880360ad0b30778a5f61aa1e43faf4e.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_204_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_204_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_204_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_204_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_204_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_204_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_204_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_204_delay-0.01s.png.import index aa3cb79f..fad01c31 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_204_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_204_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://bs6eno6gtusur" -path="res://.godot/imported/frame_204_delay-0.01s.png-115636712fe2d0c5a5473bdc4ebbd3bf.ctex" +path="res://.godot/imported/frame_204_delay-0.01s.png-35ebfef023be02b0583519df6e7c32e6.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/R/frame_204_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_204_delay-0.01s.png-115636712fe2d0c5a5473bdc4ebbd3bf.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/R/frame_204_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_204_delay-0.01s.png-35ebfef023be02b0583519df6e7c32e6.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_205_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_205_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_205_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_205_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_205_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_205_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_205_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_205_delay-0.01s.png.import index 0da47e5e..135fbde1 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_205_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_205_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://ymmk47tamej2" -path="res://.godot/imported/frame_205_delay-0.01s.png-44537bcaf096b94d501d1d2b45619fe3.ctex" +path="res://.godot/imported/frame_205_delay-0.01s.png-4b7f79029c21aa40f95802e31bcc8366.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/R/frame_205_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_205_delay-0.01s.png-44537bcaf096b94d501d1d2b45619fe3.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/R/frame_205_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_205_delay-0.01s.png-4b7f79029c21aa40f95802e31bcc8366.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_206_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_206_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_206_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_206_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_206_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_206_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_206_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_206_delay-0.01s.png.import index 05c8ba22..4fc101f3 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_206_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_206_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://w88wl5teslfx" -path="res://.godot/imported/frame_206_delay-0.01s.png-eb8774413a95b82cb127aa30c8281609.ctex" +path="res://.godot/imported/frame_206_delay-0.01s.png-404f56eb92dc790c77670852c2584b2d.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/R/frame_206_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_206_delay-0.01s.png-eb8774413a95b82cb127aa30c8281609.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/R/frame_206_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_206_delay-0.01s.png-404f56eb92dc790c77670852c2584b2d.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_207_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_207_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_207_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_207_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_207_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_207_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_207_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_207_delay-0.01s.png.import index 8bd237bd..2452f5b1 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_207_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_207_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://ddfjifcvkpkhc" -path="res://.godot/imported/frame_207_delay-0.01s.png-4a13aae84cc47e7d77e8c46cfa51d778.ctex" +path="res://.godot/imported/frame_207_delay-0.01s.png-d978984e07f819f774714cd9799dcb65.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/R/frame_207_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_207_delay-0.01s.png-4a13aae84cc47e7d77e8c46cfa51d778.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/R/frame_207_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_207_delay-0.01s.png-d978984e07f819f774714cd9799dcb65.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_208_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_208_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_208_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_208_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_208_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_208_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_208_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_208_delay-0.01s.png.import index a8c0c10c..b0fd6510 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_208_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_208_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://jfiov7uldt38" -path="res://.godot/imported/frame_208_delay-0.01s.png-fb56466b0c6d8c0b3616f9612f14f2f1.ctex" +path="res://.godot/imported/frame_208_delay-0.01s.png-63dbaf3bcd559b444cd71dc28071176d.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/R/frame_208_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_208_delay-0.01s.png-fb56466b0c6d8c0b3616f9612f14f2f1.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/R/frame_208_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_208_delay-0.01s.png-63dbaf3bcd559b444cd71dc28071176d.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_209_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_209_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_209_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_209_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_209_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_209_delay-0.01s.png.import new file mode 100644 index 00000000..c4fc6691 --- /dev/null +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_209_delay-0.01s.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cpww0skmfrgvp" +path="res://.godot/imported/frame_209_delay-0.01s.png-b3a5aee2fe676794bf081967fec3551f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://src/enemy/enemy_types/09. Agni/animations/R/frame_209_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_209_delay-0.01s.png-b3a5aee2fe676794bf081967fec3551f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_210_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_210_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_210_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_210_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_210_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_210_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_210_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_210_delay-0.01s.png.import index 597e4f07..a91e3bcf 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_210_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_210_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://dsmjr3ohg5w8r" -path="res://.godot/imported/frame_210_delay-0.01s.png-4a65ad8e2f56824be827c1053642320b.ctex" +path="res://.godot/imported/frame_210_delay-0.01s.png-7ae9f5bf02036adbb62b10368011e36a.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/R/frame_210_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_210_delay-0.01s.png-4a65ad8e2f56824be827c1053642320b.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/R/frame_210_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_210_delay-0.01s.png-7ae9f5bf02036adbb62b10368011e36a.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_211_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_211_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_211_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_211_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_211_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_211_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_211_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_211_delay-0.01s.png.import index 9f4cdd5a..0dc305d2 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_211_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_211_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://p6i3hny05st6" -path="res://.godot/imported/frame_211_delay-0.01s.png-0c32131e563033cf55a25d02619529b2.ctex" +path="res://.godot/imported/frame_211_delay-0.01s.png-507ba085f03a0286729a0779fb3d60d2.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/R/frame_211_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_211_delay-0.01s.png-0c32131e563033cf55a25d02619529b2.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/R/frame_211_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_211_delay-0.01s.png-507ba085f03a0286729a0779fb3d60d2.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_212_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_212_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_212_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_212_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_212_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_212_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_212_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_212_delay-0.01s.png.import index 6e37d6c3..454ad435 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_212_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_212_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://bh3tcdeassk02" -path="res://.godot/imported/frame_212_delay-0.01s.png-b122829409c55a374d57b790ce67fd11.ctex" +path="res://.godot/imported/frame_212_delay-0.01s.png-6f245c404ae1be109cffd6c8252662cd.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/R/frame_212_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_212_delay-0.01s.png-b122829409c55a374d57b790ce67fd11.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/R/frame_212_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_212_delay-0.01s.png-6f245c404ae1be109cffd6c8252662cd.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_213_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_213_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_213_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_213_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_213_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_213_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_213_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_213_delay-0.01s.png.import index 0bf46766..85f40337 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_213_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_213_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://d331tk4jn3twx" -path="res://.godot/imported/frame_213_delay-0.01s.png-1cc5a4656ad5b57fe466a99e32d3d9bf.ctex" +path="res://.godot/imported/frame_213_delay-0.01s.png-f8f786ba6f31d4accf3edb7f72f245f9.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/R/frame_213_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_213_delay-0.01s.png-1cc5a4656ad5b57fe466a99e32d3d9bf.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/R/frame_213_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_213_delay-0.01s.png-f8f786ba6f31d4accf3edb7f72f245f9.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_214_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_214_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_214_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_214_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_214_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_214_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_214_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_214_delay-0.01s.png.import index 0181a31e..846ec06d 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_214_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_214_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://0xpxwche3cfd" -path="res://.godot/imported/frame_214_delay-0.01s.png-88e40c6be8cb6126d7ae211c2c62ce60.ctex" +path="res://.godot/imported/frame_214_delay-0.01s.png-0efeceb584c2ea628c105b03e673b6f5.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/R/frame_214_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_214_delay-0.01s.png-88e40c6be8cb6126d7ae211c2c62ce60.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/R/frame_214_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_214_delay-0.01s.png-0efeceb584c2ea628c105b03e673b6f5.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_215_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_215_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_215_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_215_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_215_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_215_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_215_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_215_delay-0.01s.png.import index eae894a3..93069f70 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_215_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_215_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://dm6gsiqregjsw" -path="res://.godot/imported/frame_215_delay-0.01s.png-8b012d36c121ce7758edca5c806e603e.ctex" +path="res://.godot/imported/frame_215_delay-0.01s.png-a1c95b08d1694fb156be583d1e18abec.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/R/frame_215_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_215_delay-0.01s.png-8b012d36c121ce7758edca5c806e603e.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/R/frame_215_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_215_delay-0.01s.png-a1c95b08d1694fb156be583d1e18abec.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_216_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_216_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_216_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_216_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_216_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_216_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_216_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_216_delay-0.01s.png.import index 07160dd4..f5f238a1 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_216_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_216_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://l1yi2bofgjon" -path="res://.godot/imported/frame_216_delay-0.01s.png-61cf1c5c5d48f6d0020a4f0cbadeb4ee.ctex" +path="res://.godot/imported/frame_216_delay-0.01s.png-ccd3c69a770f03faff11f702f9afb776.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/R/frame_216_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_216_delay-0.01s.png-61cf1c5c5d48f6d0020a4f0cbadeb4ee.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/R/frame_216_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_216_delay-0.01s.png-ccd3c69a770f03faff11f702f9afb776.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_217_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_217_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_217_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_217_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_217_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_217_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_217_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_217_delay-0.01s.png.import index ae2ad9ae..96e532c4 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_217_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_217_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://blc66cptgn1c3" -path="res://.godot/imported/frame_217_delay-0.01s.png-2aeb75323554bb809fdccc2d5df9f9e1.ctex" +path="res://.godot/imported/frame_217_delay-0.01s.png-896bef04bed80baff8c6d54d56fcacc0.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/R/frame_217_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_217_delay-0.01s.png-2aeb75323554bb809fdccc2d5df9f9e1.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/R/frame_217_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_217_delay-0.01s.png-896bef04bed80baff8c6d54d56fcacc0.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_218_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_218_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_218_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_218_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_218_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_218_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_218_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_218_delay-0.01s.png.import index 737b456f..be8d238a 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_218_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_218_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://mvy8hatv1lmb" -path="res://.godot/imported/frame_218_delay-0.01s.png-461548af35669452042b04f872347173.ctex" +path="res://.godot/imported/frame_218_delay-0.01s.png-7d26df98a77a9d4f08637f8806a6b176.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/R/frame_218_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_218_delay-0.01s.png-461548af35669452042b04f872347173.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/R/frame_218_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_218_delay-0.01s.png-7d26df98a77a9d4f08637f8806a6b176.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_219_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_219_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_219_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_219_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_219_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_219_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_219_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_219_delay-0.01s.png.import index a31d8822..4d88f742 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_219_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_219_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://crow2apwptjbb" -path="res://.godot/imported/frame_219_delay-0.01s.png-ea813da9ef21a363d540d13cfe00b3eb.ctex" +path="res://.godot/imported/frame_219_delay-0.01s.png-f97fcdcb45841f054d9eb7f80c523528.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/R/frame_219_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_219_delay-0.01s.png-ea813da9ef21a363d540d13cfe00b3eb.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/R/frame_219_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_219_delay-0.01s.png-f97fcdcb45841f054d9eb7f80c523528.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_220_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_220_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_220_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_220_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_220_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_220_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_220_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_220_delay-0.01s.png.import index 313f29ed..a61b6d4c 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_220_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_220_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://vymn8geahxjj" -path="res://.godot/imported/frame_220_delay-0.01s.png-4f5aa008f01c28c88c553921ffa21fbb.ctex" +path="res://.godot/imported/frame_220_delay-0.01s.png-dfc746f1af32f7a998deb7349eabf2ff.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/R/frame_220_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_220_delay-0.01s.png-4f5aa008f01c28c88c553921ffa21fbb.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/R/frame_220_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_220_delay-0.01s.png-dfc746f1af32f7a998deb7349eabf2ff.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_221_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_221_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_221_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_221_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_221_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_221_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_221_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_221_delay-0.01s.png.import index 1f2b7a98..ce65db80 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_221_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_221_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://c3alaqd3qntjf" -path="res://.godot/imported/frame_221_delay-0.01s.png-105bbd93adbb34f380bf3eff96bac243.ctex" +path="res://.godot/imported/frame_221_delay-0.01s.png-e0903bc83097e85f40595d46de576fca.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/R/frame_221_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_221_delay-0.01s.png-105bbd93adbb34f380bf3eff96bac243.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/R/frame_221_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_221_delay-0.01s.png-e0903bc83097e85f40595d46de576fca.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_222_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_222_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_222_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_222_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_222_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_222_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_222_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_222_delay-0.01s.png.import index ec33bcc5..3f76814e 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_222_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_222_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://dpiupie81g4su" -path="res://.godot/imported/frame_222_delay-0.01s.png-67122d6176edf3f22aa1cf7628fbbde7.ctex" +path="res://.godot/imported/frame_222_delay-0.01s.png-0ad5d9f375b2a3cb7d7c3855baa7bae9.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/R/frame_222_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_222_delay-0.01s.png-67122d6176edf3f22aa1cf7628fbbde7.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/R/frame_222_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_222_delay-0.01s.png-0ad5d9f375b2a3cb7d7c3855baa7bae9.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_223_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_223_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_223_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_223_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_223_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_223_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_223_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_223_delay-0.01s.png.import index ccfdd97e..a8e2f66f 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_223_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_223_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://ygl3erumerul" -path="res://.godot/imported/frame_223_delay-0.01s.png-38705f574db3e1f29c465986865934aa.ctex" +path="res://.godot/imported/frame_223_delay-0.01s.png-28019ab2a323bc2455109c2dd3426916.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/R/frame_223_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_223_delay-0.01s.png-38705f574db3e1f29c465986865934aa.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/R/frame_223_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_223_delay-0.01s.png-28019ab2a323bc2455109c2dd3426916.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_224_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_224_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_224_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_224_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_224_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_224_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_224_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_224_delay-0.01s.png.import index 4353dc10..e97c03f4 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_224_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_224_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://bm8u1egdkocd7" -path="res://.godot/imported/frame_224_delay-0.01s.png-11f2ae95a60201b770bedddb9f694ccf.ctex" +path="res://.godot/imported/frame_224_delay-0.01s.png-687b4ff19b34aeaa38f2bc28e5aa10f1.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/R/frame_224_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_224_delay-0.01s.png-11f2ae95a60201b770bedddb9f694ccf.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/R/frame_224_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_224_delay-0.01s.png-687b4ff19b34aeaa38f2bc28e5aa10f1.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_225_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_225_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_225_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_225_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_225_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_225_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_225_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_225_delay-0.01s.png.import index e39f4ac5..5b0491fe 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_225_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_225_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://dumik4dqkhhpb" -path="res://.godot/imported/frame_225_delay-0.01s.png-bf562895529597571ec0abb8433fe5c3.ctex" +path="res://.godot/imported/frame_225_delay-0.01s.png-8fe5ff927039c8e43161bc5121d98c80.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/R/frame_225_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_225_delay-0.01s.png-bf562895529597571ec0abb8433fe5c3.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/R/frame_225_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_225_delay-0.01s.png-8fe5ff927039c8e43161bc5121d98c80.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_226_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_226_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_226_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_226_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_226_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_226_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_226_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_226_delay-0.01s.png.import index 1752c1e9..9847975b 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_226_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_226_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://b4evqkmluj3rc" -path="res://.godot/imported/frame_226_delay-0.01s.png-280e1edb96eb688c0c5cfaef4e9372b1.ctex" +path="res://.godot/imported/frame_226_delay-0.01s.png-2b073606f16d424878e60c198634609a.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/R/frame_226_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_226_delay-0.01s.png-280e1edb96eb688c0c5cfaef4e9372b1.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/R/frame_226_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_226_delay-0.01s.png-2b073606f16d424878e60c198634609a.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_227_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_227_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_227_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_227_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_227_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_227_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_227_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_227_delay-0.01s.png.import index 12bcf5bd..df8a90c5 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_227_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_227_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://hschg5j1rra3" -path="res://.godot/imported/frame_227_delay-0.01s.png-22aa665da6e21804e6407d90306efe5d.ctex" +path="res://.godot/imported/frame_227_delay-0.01s.png-8dbe604d2dfcc51155087c508aa140f3.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/R/frame_227_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_227_delay-0.01s.png-22aa665da6e21804e6407d90306efe5d.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/R/frame_227_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_227_delay-0.01s.png-8dbe604d2dfcc51155087c508aa140f3.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_228_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_228_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_228_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_228_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_228_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_228_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_228_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_228_delay-0.01s.png.import index 5df25b82..b81c421f 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_228_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_228_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://dgsvh6frtvy06" -path="res://.godot/imported/frame_228_delay-0.01s.png-1e019822077f2a420e34d6f39d84ab3a.ctex" +path="res://.godot/imported/frame_228_delay-0.01s.png-f2b44e62d8e6a73ce80d723c9502ed17.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/R/frame_228_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_228_delay-0.01s.png-1e019822077f2a420e34d6f39d84ab3a.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/R/frame_228_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_228_delay-0.01s.png-f2b44e62d8e6a73ce80d723c9502ed17.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_229_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_229_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_229_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_229_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_229_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_229_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_229_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_229_delay-0.01s.png.import index 7f29cb6c..859a13a2 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_229_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_229_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://rt7ouk1rgl52" -path="res://.godot/imported/frame_229_delay-0.01s.png-d76d27a6c674000356d222ec34074795.ctex" +path="res://.godot/imported/frame_229_delay-0.01s.png-d579a6549fd14458984515a00c430418.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/R/frame_229_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_229_delay-0.01s.png-d76d27a6c674000356d222ec34074795.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/R/frame_229_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_229_delay-0.01s.png-d579a6549fd14458984515a00c430418.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_230_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_230_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_230_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_230_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_297_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_230_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_297_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_230_delay-0.01s.png.import index e5a550e6..fdace243 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_297_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_230_delay-0.01s.png.import @@ -2,16 +2,16 @@ importer="texture" type="CompressedTexture2D" -uid="uid://15q8e1mwoy8" -path="res://.godot/imported/frame_297_delay-0.01s.png-8b20a7f006968746a745cf6773d8555c.ctex" +uid="uid://y1u43bt8wh7b" +path="res://.godot/imported/frame_230_delay-0.01s.png-95d8bca5fc079c6ea5b87b33f59de4a7.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/LAVA LOOP/frame_297_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_297_delay-0.01s.png-8b20a7f006968746a745cf6773d8555c.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/R/frame_230_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_230_delay-0.01s.png-95d8bca5fc079c6ea5b87b33f59de4a7.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_231_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_231_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_231_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_231_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_231_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_231_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_231_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_231_delay-0.01s.png.import index f5091a0b..aa33e9b4 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_231_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_231_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://d1ts7mik0ep1q" -path="res://.godot/imported/frame_231_delay-0.01s.png-eafe7d25475fbd6051e09461576194e9.ctex" +path="res://.godot/imported/frame_231_delay-0.01s.png-f2323183621151f7526ea0a07132068b.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/R/frame_231_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_231_delay-0.01s.png-eafe7d25475fbd6051e09461576194e9.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/R/frame_231_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_231_delay-0.01s.png-f2323183621151f7526ea0a07132068b.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_232_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_232_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_232_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_232_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_232_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_232_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_232_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_232_delay-0.01s.png.import index 837e4773..7c03321c 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_232_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_232_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://gi3515vff0de" -path="res://.godot/imported/frame_232_delay-0.01s.png-2c5756de5e8f923304f3fba1f65a3af8.ctex" +path="res://.godot/imported/frame_232_delay-0.01s.png-522a3b7625d0e0888fd67d1d8154606c.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/R/frame_232_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_232_delay-0.01s.png-2c5756de5e8f923304f3fba1f65a3af8.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/R/frame_232_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_232_delay-0.01s.png-522a3b7625d0e0888fd67d1d8154606c.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_233_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_233_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_233_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_233_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_233_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_233_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_233_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_233_delay-0.01s.png.import index c89cfb0f..8dd1b8f7 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_233_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_233_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://cqa88kdtkglo6" -path="res://.godot/imported/frame_233_delay-0.01s.png-09a7de2e9057f0a9b7c8b2808fb9d783.ctex" +path="res://.godot/imported/frame_233_delay-0.01s.png-8385588be7b05530c9fcbea0a9b463e9.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/R/frame_233_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_233_delay-0.01s.png-09a7de2e9057f0a9b7c8b2808fb9d783.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/R/frame_233_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_233_delay-0.01s.png-8385588be7b05530c9fcbea0a9b463e9.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_234_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_234_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_234_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_234_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_234_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_234_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_234_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_234_delay-0.01s.png.import index d3a69f45..373cf7fa 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_234_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_234_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://cxm7i3fswovkk" -path="res://.godot/imported/frame_234_delay-0.01s.png-2e442f1abde3d7f68a01efa3ddf09732.ctex" +path="res://.godot/imported/frame_234_delay-0.01s.png-46a0f18191be84d3bcd74ab691a22940.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/R/frame_234_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_234_delay-0.01s.png-2e442f1abde3d7f68a01efa3ddf09732.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/R/frame_234_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_234_delay-0.01s.png-46a0f18191be84d3bcd74ab691a22940.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_235_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_235_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_235_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_235_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_235_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_235_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_235_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_235_delay-0.01s.png.import index 778d9414..ed7388bf 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_235_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_235_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://bvy58646btxbp" -path="res://.godot/imported/frame_235_delay-0.01s.png-f06e564422d4aacccbc9c799163e0c49.ctex" +path="res://.godot/imported/frame_235_delay-0.01s.png-8b1384ac5f7ab28f076f32d8bb1c8fa8.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/R/frame_235_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_235_delay-0.01s.png-f06e564422d4aacccbc9c799163e0c49.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/R/frame_235_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_235_delay-0.01s.png-8b1384ac5f7ab28f076f32d8bb1c8fa8.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_236_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_236_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_236_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_236_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_236_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_236_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_236_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_236_delay-0.01s.png.import index 540ceb0d..11cee4c4 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_236_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_236_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://dhbf3u2g2aib0" -path="res://.godot/imported/frame_236_delay-0.01s.png-4a99494c132c3f472b24f88db4b6173b.ctex" +path="res://.godot/imported/frame_236_delay-0.01s.png-4e7f892f31fb6a768b15867956a81bf8.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/R/frame_236_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_236_delay-0.01s.png-4a99494c132c3f472b24f88db4b6173b.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/R/frame_236_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_236_delay-0.01s.png-4e7f892f31fb6a768b15867956a81bf8.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_237_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_237_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_237_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_237_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_237_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_237_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_237_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_237_delay-0.01s.png.import index a139881e..79bf7dd8 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_237_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_237_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://djt13deq5d27" -path="res://.godot/imported/frame_237_delay-0.01s.png-b2e5937ee43c2a6ac31233268dd3c483.ctex" +path="res://.godot/imported/frame_237_delay-0.01s.png-65520b594fc5b1f87533436169e85d5b.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/R/frame_237_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_237_delay-0.01s.png-b2e5937ee43c2a6ac31233268dd3c483.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/R/frame_237_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_237_delay-0.01s.png-65520b594fc5b1f87533436169e85d5b.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_238_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_238_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_238_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_238_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_238_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_238_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_238_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_238_delay-0.01s.png.import index 6863eb04..1dbc18c2 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_238_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_238_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://d0mlepj1qv4hu" -path="res://.godot/imported/frame_238_delay-0.01s.png-82297dbbe831566f3473046df248ab23.ctex" +path="res://.godot/imported/frame_238_delay-0.01s.png-3df91b1209190f58a313f076fff5f0e9.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/R/frame_238_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_238_delay-0.01s.png-82297dbbe831566f3473046df248ab23.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/R/frame_238_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_238_delay-0.01s.png-3df91b1209190f58a313f076fff5f0e9.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_239_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_239_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_239_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_239_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_239_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_239_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_239_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_239_delay-0.01s.png.import index 7693f38c..9ecb90e8 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_239_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_239_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://bciw0pvnr23db" -path="res://.godot/imported/frame_239_delay-0.01s.png-590c70ef2fb73bb3213ebcd57376f3a5.ctex" +path="res://.godot/imported/frame_239_delay-0.01s.png-56471e648ecaa7b3b37e9e52efe65c1a.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/R/frame_239_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_239_delay-0.01s.png-590c70ef2fb73bb3213ebcd57376f3a5.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/R/frame_239_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_239_delay-0.01s.png-56471e648ecaa7b3b37e9e52efe65c1a.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_240_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_240_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_240_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_240_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_240_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_240_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_240_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_240_delay-0.01s.png.import index a840e39b..8b7a7b59 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_240_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_240_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://dseairg26t3nh" -path="res://.godot/imported/frame_240_delay-0.01s.png-3d13a7e3b14d75a19a85eea8f8ab12e2.ctex" +path="res://.godot/imported/frame_240_delay-0.01s.png-f64f2305f2bf9877c3f1ac6fddc6c0c8.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/R/frame_240_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_240_delay-0.01s.png-3d13a7e3b14d75a19a85eea8f8ab12e2.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/R/frame_240_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_240_delay-0.01s.png-f64f2305f2bf9877c3f1ac6fddc6c0c8.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_241_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_241_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_241_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_241_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_241_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_241_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_241_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_241_delay-0.01s.png.import index e047980a..23cd15ce 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_241_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_241_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://buajw8hhulu81" -path="res://.godot/imported/frame_241_delay-0.01s.png-b6e6bfeb13efc6de9b12da9ff921459d.ctex" +path="res://.godot/imported/frame_241_delay-0.01s.png-27e083711ca5ba1a03205f8f778ee108.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/R/frame_241_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_241_delay-0.01s.png-b6e6bfeb13efc6de9b12da9ff921459d.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/R/frame_241_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_241_delay-0.01s.png-27e083711ca5ba1a03205f8f778ee108.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_242_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_242_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_242_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_242_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_242_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_242_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_242_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_242_delay-0.01s.png.import index 0f1c108f..c1f4af9e 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_242_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_242_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://23fgouybahk5" -path="res://.godot/imported/frame_242_delay-0.01s.png-28989c558a583cae21ea35a7887327db.ctex" +path="res://.godot/imported/frame_242_delay-0.01s.png-c15e8140956a13302b4ec24698ee71ab.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/R/frame_242_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_242_delay-0.01s.png-28989c558a583cae21ea35a7887327db.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/R/frame_242_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_242_delay-0.01s.png-c15e8140956a13302b4ec24698ee71ab.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_243_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_243_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_243_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_243_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_243_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_243_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_243_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_243_delay-0.01s.png.import index ac795163..c88b95fa 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_243_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_243_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://bc4kxs87tyeyu" -path="res://.godot/imported/frame_243_delay-0.01s.png-783c50bc26e4f3c968eaac8ecd6f7dbb.ctex" +path="res://.godot/imported/frame_243_delay-0.01s.png-3c8cbeb42b7764d4a8c773be6b085a8b.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/R/frame_243_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_243_delay-0.01s.png-783c50bc26e4f3c968eaac8ecd6f7dbb.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/R/frame_243_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_243_delay-0.01s.png-3c8cbeb42b7764d4a8c773be6b085a8b.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_244_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_244_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_244_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_244_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_244_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_244_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_244_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_244_delay-0.01s.png.import index ccdb42f9..8072638d 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_244_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_244_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://bfvgo3rheqmla" -path="res://.godot/imported/frame_244_delay-0.01s.png-bca44e2aa911291b4c5aab0da68a7697.ctex" +path="res://.godot/imported/frame_244_delay-0.01s.png-ca94251afb412fcc02e26e240dec31bc.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/R/frame_244_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_244_delay-0.01s.png-bca44e2aa911291b4c5aab0da68a7697.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/R/frame_244_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_244_delay-0.01s.png-ca94251afb412fcc02e26e240dec31bc.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_245_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_245_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_245_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_245_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_040_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_245_delay-0.01s.png.import similarity index 67% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_040_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_245_delay-0.01s.png.import index c8bdc846..fd4bd86d 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/B/frame_040_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_245_delay-0.01s.png.import @@ -2,16 +2,16 @@ importer="texture" type="CompressedTexture2D" -uid="uid://cuh0nnnr8fh5n" -path="res://.godot/imported/frame_040_delay-0.01s.png-871181974d101cd84ff5bd7f706e2fe4.ctex" +uid="uid://dwhgget8tysjl" +path="res://.godot/imported/frame_245_delay-0.01s.png-c4a407b3af8ddf594f7748e7a47c7b7a.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/B/frame_040_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_040_delay-0.01s.png-871181974d101cd84ff5bd7f706e2fe4.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/R/frame_245_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_245_delay-0.01s.png-c4a407b3af8ddf594f7748e7a47c7b7a.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_246_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_246_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_246_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_246_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_246_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_246_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_246_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_246_delay-0.01s.png.import index 294ec447..e05172e0 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_246_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_246_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://dhcg51m0k8xe2" -path="res://.godot/imported/frame_246_delay-0.01s.png-afd4ba92c5a84341ce76288187e15a19.ctex" +path="res://.godot/imported/frame_246_delay-0.01s.png-a6b0aab6df819ff4ef8eb933e597d649.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/R/frame_246_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_246_delay-0.01s.png-afd4ba92c5a84341ce76288187e15a19.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/R/frame_246_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_246_delay-0.01s.png-a6b0aab6df819ff4ef8eb933e597d649.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_247_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_247_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_247_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_247_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_247_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_247_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_247_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_247_delay-0.01s.png.import index 11cf7861..f99c0eef 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_247_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_247_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://6d48nco64uiv" -path="res://.godot/imported/frame_247_delay-0.01s.png-36e4abc25dfbffe150c93b3ac3f458d1.ctex" +path="res://.godot/imported/frame_247_delay-0.01s.png-38e41b9f69e2b9a6529f3e924c074041.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/R/frame_247_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_247_delay-0.01s.png-36e4abc25dfbffe150c93b3ac3f458d1.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/R/frame_247_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_247_delay-0.01s.png-38e41b9f69e2b9a6529f3e924c074041.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_248_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_248_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_248_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_248_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_248_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_248_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_248_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_248_delay-0.01s.png.import index 9f2960ad..6f0e745d 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_248_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_248_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://4u571pswobrj" -path="res://.godot/imported/frame_248_delay-0.01s.png-4dfdd1a5bdf20524cd908144b28e6604.ctex" +path="res://.godot/imported/frame_248_delay-0.01s.png-3f3d130095787d721a0b7e52b0e3d073.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/R/frame_248_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_248_delay-0.01s.png-4dfdd1a5bdf20524cd908144b28e6604.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/R/frame_248_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_248_delay-0.01s.png-3f3d130095787d721a0b7e52b0e3d073.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_249_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_249_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_249_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_249_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_249_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_249_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_249_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_249_delay-0.01s.png.import index 352857e9..4c059982 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_249_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_249_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://b2ewc48b3q7ms" -path="res://.godot/imported/frame_249_delay-0.01s.png-984aa24251ad9e049fb99ddfcdde206a.ctex" +path="res://.godot/imported/frame_249_delay-0.01s.png-3351526612765f48429f420966e23fc8.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/R/frame_249_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_249_delay-0.01s.png-984aa24251ad9e049fb99ddfcdde206a.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/R/frame_249_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_249_delay-0.01s.png-3351526612765f48429f420966e23fc8.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_250_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_250_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_250_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_250_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_250_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_250_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_250_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_250_delay-0.01s.png.import index a2bc343a..0fde84fe 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_250_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_250_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://bnnbcqeiwafbw" -path="res://.godot/imported/frame_250_delay-0.01s.png-2a772e902df9847d016a036b8c5c4bc9.ctex" +path="res://.godot/imported/frame_250_delay-0.01s.png-1b70c8c0e0d893e7f2773d7e833fe7bf.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/R/frame_250_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_250_delay-0.01s.png-2a772e902df9847d016a036b8c5c4bc9.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/R/frame_250_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_250_delay-0.01s.png-1b70c8c0e0d893e7f2773d7e833fe7bf.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_251_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_251_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_251_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_251_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_251_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_251_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_251_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_251_delay-0.01s.png.import index 7dfc3dff..0a5b7fc2 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_251_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_251_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://b1qvi7gl40tic" -path="res://.godot/imported/frame_251_delay-0.01s.png-da0fbd36bfb004fa1f1024ada3b92355.ctex" +path="res://.godot/imported/frame_251_delay-0.01s.png-c5aa8137e2f9d9be340b5d4df3b5541e.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/R/frame_251_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_251_delay-0.01s.png-da0fbd36bfb004fa1f1024ada3b92355.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/R/frame_251_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_251_delay-0.01s.png-c5aa8137e2f9d9be340b5d4df3b5541e.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_252_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_252_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_252_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_252_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_252_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_252_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_252_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_252_delay-0.01s.png.import index fa0b069a..b0f0145b 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_252_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_252_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://dph6c5ntgx4ug" -path="res://.godot/imported/frame_252_delay-0.01s.png-945fe669b32d3b1866e787cc73791fc6.ctex" +path="res://.godot/imported/frame_252_delay-0.01s.png-65dc2a771758e2a5a33c94a76f2b8069.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/R/frame_252_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_252_delay-0.01s.png-945fe669b32d3b1866e787cc73791fc6.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/R/frame_252_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_252_delay-0.01s.png-65dc2a771758e2a5a33c94a76f2b8069.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_253_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_253_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_253_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_253_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_253_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_253_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_253_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_253_delay-0.01s.png.import index 2ed87871..9856292a 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_253_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_253_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://ccbkf3stle5s8" -path="res://.godot/imported/frame_253_delay-0.01s.png-21fd66554aa3bb336496113b63c4bc18.ctex" +path="res://.godot/imported/frame_253_delay-0.01s.png-ed068ae129353fa8de5fe023f8e442b8.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/R/frame_253_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_253_delay-0.01s.png-21fd66554aa3bb336496113b63c4bc18.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/R/frame_253_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_253_delay-0.01s.png-ed068ae129353fa8de5fe023f8e442b8.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_254_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_254_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_254_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_254_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_254_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_254_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_254_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_254_delay-0.01s.png.import index fa379b40..3ae75dbe 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_254_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_254_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://2aoimief7jg1" -path="res://.godot/imported/frame_254_delay-0.01s.png-825cb10303381c5f729fb538d04c304d.ctex" +path="res://.godot/imported/frame_254_delay-0.01s.png-e524ccbda2e93dfa5c6971ac28ab5516.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/R/frame_254_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_254_delay-0.01s.png-825cb10303381c5f729fb538d04c304d.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/R/frame_254_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_254_delay-0.01s.png-e524ccbda2e93dfa5c6971ac28ab5516.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_255_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_255_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_255_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_255_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_255_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_255_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_255_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_255_delay-0.01s.png.import index 94251b08..bde0f951 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_255_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_255_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://bo3yooc63cikn" -path="res://.godot/imported/frame_255_delay-0.01s.png-58779baa0b1c1f9e41344d29f770a6c3.ctex" +path="res://.godot/imported/frame_255_delay-0.01s.png-f3c62166e662a53e1762e336d94201d4.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/R/frame_255_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_255_delay-0.01s.png-58779baa0b1c1f9e41344d29f770a6c3.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/R/frame_255_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_255_delay-0.01s.png-f3c62166e662a53e1762e336d94201d4.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_256_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_256_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_256_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_256_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_256_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_256_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_256_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_256_delay-0.01s.png.import index 9775af57..e34c68ca 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_256_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_256_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://cost00qd68dlb" -path="res://.godot/imported/frame_256_delay-0.01s.png-b114baafe6349245aec298aa17fa3555.ctex" +path="res://.godot/imported/frame_256_delay-0.01s.png-c41c67eba87ffa0ce5f245f0c3d89b79.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/R/frame_256_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_256_delay-0.01s.png-b114baafe6349245aec298aa17fa3555.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/R/frame_256_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_256_delay-0.01s.png-c41c67eba87ffa0ce5f245f0c3d89b79.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_257_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_257_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_257_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_257_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_257_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_257_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_257_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_257_delay-0.01s.png.import index ab5843fd..2f438a01 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_257_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_257_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://8bq8wrs3ttcv" -path="res://.godot/imported/frame_257_delay-0.01s.png-5080bf7895059899566e6a54a76fd392.ctex" +path="res://.godot/imported/frame_257_delay-0.01s.png-9e919c671dde5588c73e6b631589eda0.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/R/frame_257_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_257_delay-0.01s.png-5080bf7895059899566e6a54a76fd392.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/R/frame_257_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_257_delay-0.01s.png-9e919c671dde5588c73e6b631589eda0.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_258_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_258_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_258_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_258_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_258_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_258_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_258_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_258_delay-0.01s.png.import index d590f5ca..3b056f4b 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_258_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_258_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://db4l2228uovc8" -path="res://.godot/imported/frame_258_delay-0.01s.png-ca8ce8478e61b96750a9151ee7293749.ctex" +path="res://.godot/imported/frame_258_delay-0.01s.png-3832569114cb062dfbad80a052457f3a.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/R/frame_258_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_258_delay-0.01s.png-ca8ce8478e61b96750a9151ee7293749.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/R/frame_258_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_258_delay-0.01s.png-3832569114cb062dfbad80a052457f3a.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_259_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_259_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_259_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_259_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_259_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_259_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_259_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_259_delay-0.01s.png.import index 1034a7b4..2893f8da 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_259_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_259_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://itfq5312pt6d" -path="res://.godot/imported/frame_259_delay-0.01s.png-909c8c2cdcc52c76d87699d1c7a4524f.ctex" +path="res://.godot/imported/frame_259_delay-0.01s.png-08526f92370b7a9b4561fae6f322b8b0.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/R/frame_259_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_259_delay-0.01s.png-909c8c2cdcc52c76d87699d1c7a4524f.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/R/frame_259_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_259_delay-0.01s.png-08526f92370b7a9b4561fae6f322b8b0.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_260_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_260_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_260_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_260_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_260_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_260_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_260_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_260_delay-0.01s.png.import index c6a37842..0b452b77 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_260_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_260_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://dx13yhik7lvmk" -path="res://.godot/imported/frame_260_delay-0.01s.png-03a57100e8ca64c9d843d3db1740d2b9.ctex" +path="res://.godot/imported/frame_260_delay-0.01s.png-1a5b4ce97a354456200f664046d81bf7.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/R/frame_260_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_260_delay-0.01s.png-03a57100e8ca64c9d843d3db1740d2b9.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/R/frame_260_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_260_delay-0.01s.png-1a5b4ce97a354456200f664046d81bf7.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_261_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_261_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_261_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_261_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_261_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_261_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_261_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_261_delay-0.01s.png.import index ef6d5dea..b39f1961 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_261_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_261_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://bntlmlpghyrh6" -path="res://.godot/imported/frame_261_delay-0.01s.png-d71e3dbe2482483e44fcc364dd9fa08e.ctex" +path="res://.godot/imported/frame_261_delay-0.01s.png-0923fd6d8b263f1c8064a14577576a95.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/R/frame_261_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_261_delay-0.01s.png-d71e3dbe2482483e44fcc364dd9fa08e.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/R/frame_261_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_261_delay-0.01s.png-0923fd6d8b263f1c8064a14577576a95.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_262_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_262_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_262_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_262_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_262_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_262_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_262_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_262_delay-0.01s.png.import index 628325ff..0d0c0dbd 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_262_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_262_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://d3q4ocfb1g6dt" -path="res://.godot/imported/frame_262_delay-0.01s.png-117c4bd3fea38e5a3d2e4a6bd4dfc9fc.ctex" +path="res://.godot/imported/frame_262_delay-0.01s.png-eadedb118ae625bc19ae419c5b7787b0.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/R/frame_262_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_262_delay-0.01s.png-117c4bd3fea38e5a3d2e4a6bd4dfc9fc.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/R/frame_262_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_262_delay-0.01s.png-eadedb118ae625bc19ae419c5b7787b0.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_263_delay-0.01s.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_263_delay-0.01s.png similarity index 100% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_263_delay-0.01s.png rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_263_delay-0.01s.png diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_263_delay-0.01s.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_263_delay-0.01s.png.import similarity index 66% rename from Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_263_delay-0.01s.png.import rename to Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_263_delay-0.01s.png.import index 4764f2a7..251af00c 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agi/animations/R/frame_263_delay-0.01s.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/animations/R/frame_263_delay-0.01s.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://bo3atbyq7k5tv" -path="res://.godot/imported/frame_263_delay-0.01s.png-1947407f836cc7376c9cd24377adc8f1.ctex" +path="res://.godot/imported/frame_263_delay-0.01s.png-00b18d0d0dc06a3c2a3d4d35e0dce191.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/09. Agi/animations/R/frame_263_delay-0.01s.png" -dest_files=["res://.godot/imported/frame_263_delay-0.01s.png-1947407f836cc7376c9cd24377adc8f1.ctex"] +source_file="res://src/enemy/enemy_types/09. Agni/animations/R/frame_263_delay-0.01s.png" +dest_files=["res://.godot/imported/frame_263_delay-0.01s.png-00b18d0d0dc06a3c2a3d4d35e0dce191.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/10. Eden Pillar/EdenPillarModelView.tscn b/Zennysoft.Game.Ma/src/enemy/enemy_types/10. Eden Pillar/EdenPillarModelView.tscn index e76e9816..ea21c88b 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/10. Eden Pillar/EdenPillarModelView.tscn +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/10. Eden Pillar/EdenPillarModelView.tscn @@ -1,4 +1,4 @@ -[gd_scene load_steps=20 format=4 uid="uid://cktycana6xxtp"] +[gd_scene load_steps=23 format=4 uid="uid://cktycana6xxtp"] [ext_resource type="Texture2D" uid="uid://cvst7yhbw0sxt" path="res://src/enemy/enemy_types/10. Eden Pillar/model/PILLAR EXPORT 1_ENEMY_PILLAR_TEXTURE2.jpg" id="1_1kpl1"] [ext_resource type="Script" uid="uid://ckv5dmrw6pvn6" path="res://src/enemy/EnemyModelView3D.cs" id="1_11eq8"] @@ -7,6 +7,9 @@ [ext_resource type="Texture2D" uid="uid://by7k6crx6fmpv" path="res://src/enemy/enemy_types/10. Eden Pillar/model/PILLAR EXPORT 1_floral_single_tile.jpg" id="3_oxjs8"] [ext_resource type="Texture2D" uid="uid://cc1tenm6p3pca" path="res://src/enemy/enemy_types/10. Eden Pillar/model/PILLAR EXPORT 1_ENEMY_PILLAR_TEXTURE.jpg" id="4_xf2ga"] [ext_resource type="Texture2D" uid="uid://bydfevqfagpq8" path="res://src/enemy/enemy_types/10. Eden Pillar/model/PILLAR EXPORT 1_concrete_0025_height_1k.png" id="5_qhmtu"] +[ext_resource type="PackedScene" uid="uid://bltm0oc773wyf" path="res://src/audio/sfx/SfxNodes/pillar_projectile_travel.tscn" id="8_qhmtu"] +[ext_resource type="PackedScene" uid="uid://cl8mdkofi2g5d" path="res://src/audio/sfx/SfxNodes/pillar_shoot.tscn" id="9_mi284"] +[ext_resource type="PackedScene" uid="uid://da34t3osumohu" path="res://src/audio/sfx/SfxNodes/enemy_death_sound_large.tscn" id="10_mi284"] [sub_resource type="StandardMaterial3D" id="StandardMaterial3D_drix8"] resource_name = "DARKER" @@ -296,3 +299,11 @@ unique_name_in_owner = true libraries = { &"": SubResource("AnimationLibrary_mi284") } + +[node name="SFX" type="Node3D" parent="."] + +[node name="PillarProjectileTravel" parent="SFX" instance=ExtResource("8_qhmtu")] + +[node name="PillarShoot" parent="SFX" instance=ExtResource("9_mi284")] + +[node name="EnemyDeathSoundLarge" parent="SFX" instance=ExtResource("10_mi284")] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/11. Palan/PalanModelView.tscn b/Zennysoft.Game.Ma/src/enemy/enemy_types/11. Palan/PalanModelView.tscn index c7b9ca2c..f2e49364 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/11. Palan/PalanModelView.tscn +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/11. Palan/PalanModelView.tscn @@ -1,4 +1,4 @@ -[gd_scene load_steps=394 format=3 uid="uid://dxwwfbt2mtmer"] +[gd_scene load_steps=397 format=3 uid="uid://dxwwfbt2mtmer"] [ext_resource type="Script" uid="uid://cvr1qimxpignl" path="res://src/enemy/EnemyModelView2D.cs" id="1_yke7o"] [ext_resource type="Texture2D" uid="uid://cob5mo4lrbkrp" path="res://src/enemy/enemy_types/11. Palan/animations/B/frame_000_delay-0.01s.png" id="2_lf0wi"] @@ -202,6 +202,9 @@ [ext_resource type="Texture2D" uid="uid://ckuymrppoajnk" path="res://src/enemy/enemy_types/11. Palan/animations/R/frame_179_delay-0.01s.png" id="97_83iec"] [ext_resource type="Texture2D" uid="uid://bq85jeydr4li8" path="res://src/enemy/enemy_types/11. Palan/animations/R/frame_180_delay-0.01s.png" id="98_jwe14"] [ext_resource type="Script" uid="uid://6edayafleq8y" path="res://src/hitbox/Hitbox.cs" id="162_4qxqd"] +[ext_resource type="PackedScene" uid="uid://qw67j8yg2q7t" path="res://src/audio/sfx/SfxNodes/palanquin_attack_1.tscn" id="203_walw3"] +[ext_resource type="PackedScene" uid="uid://dwfjnk0ggg7bn" path="res://src/audio/sfx/SfxNodes/palanquin_attack_2.tscn" id="204_fc7at"] +[ext_resource type="PackedScene" uid="uid://c32sxkj1xyyxs" path="res://src/audio/sfx/SfxNodes/enemy_death_sound_medium.tscn" id="205_fc7at"] [sub_resource type="ViewportTexture" id="ViewportTexture_h1kaf"] viewport_path = NodePath("Sprite3D/SubViewportContainer/SubViewport") @@ -943,6 +946,66 @@ tracks/2/keys = { "values": [true] } +[sub_resource type="Animation" id="Animation_fc7at"] +resource_name = "idle_back" +length = 0.0833416 +loop_mode = 1 +step = 0.0833333 +tracks/0/type = "value" +tracks/0/imported = false +tracks/0/enabled = true +tracks/0/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:animation") +tracks/0/interp = 1 +tracks/0/loop_wrap = true +tracks/0/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"idle_back"] +} +tracks/1/type = "value" +tracks/1/imported = false +tracks/1/enabled = true +tracks/1/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:frame") +tracks/1/interp = 1 +tracks/1/loop_wrap = true +tracks/1/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [0] +} + +[sub_resource type="Animation" id="Animation_klhid"] +resource_name = "idle_back_walk" +length = 2.58334 +loop_mode = 1 +step = 0.0833333 +tracks/0/type = "value" +tracks/0/imported = false +tracks/0/enabled = true +tracks/0/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:animation") +tracks/0/interp = 1 +tracks/0/loop_wrap = true +tracks/0/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"idle_back_walk"] +} +tracks/1/type = "value" +tracks/1/imported = false +tracks/1/enabled = true +tracks/1/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:frame") +tracks/1/interp = 1 +tracks/1/loop_wrap = true +tracks/1/keys = { +"times": PackedFloat32Array(0, 0.0833341, 0.166667, 0.250001, 0.333334, 0.416667, 0.500001, 0.583334, 0.666667, 0.75, 0.833334, 0.916667, 1, 1.08333, 1.16667, 1.25, 1.33333, 1.41667, 1.5, 1.58333, 1.66667, 1.75, 1.83333, 1.91667, 2, 2.08333, 2.16667, 2.25, 2.33333, 2.41667, 2.5), +"transitions": PackedFloat32Array(1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1), +"update": 1, +"values": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30] +} + [sub_resource type="Animation" id="Animation_sobol"] resource_name = "idle_front" length = 0.0833416 @@ -1003,88 +1066,6 @@ tracks/1/keys = { "values": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30] } -[sub_resource type="Animation" id="Animation_iw0no"] -resource_name = "primary_attack" -length = 1.16667 -step = 0.0833333 -tracks/0/type = "value" -tracks/0/imported = false -tracks/0/enabled = true -tracks/0/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:animation") -tracks/0/interp = 1 -tracks/0/loop_wrap = true -tracks/0/keys = { -"times": PackedFloat32Array(0), -"transitions": PackedFloat32Array(1), -"update": 1, -"values": [&"primary_attack"] -} -tracks/1/type = "value" -tracks/1/imported = false -tracks/1/enabled = true -tracks/1/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:frame") -tracks/1/interp = 1 -tracks/1/loop_wrap = true -tracks/1/keys = { -"times": PackedFloat32Array(0, 0.0833333, 0.166667, 0.25, 0.333333, 0.416667, 0.5, 0.585643, 0.666666, 0.75, 0.833333, 0.916667, 1), -"transitions": PackedFloat32Array(1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1), -"update": 1, -"values": [0, 1, 2, 3, 4, 5, 6, 7, 8, 3, 2, 1, 0] -} -tracks/2/type = "value" -tracks/2/imported = false -tracks/2/enabled = true -tracks/2/path = NodePath("Hitbox/CollisionShape3D:disabled") -tracks/2/interp = 1 -tracks/2/loop_wrap = true -tracks/2/keys = { -"times": PackedFloat32Array(0, 0.333333, 0.499215), -"transitions": PackedFloat32Array(1, 1, 1), -"update": 1, -"values": [true, false, true] -} - -[sub_resource type="Animation" id="Animation_wtyys"] -resource_name = "secondary_attack" -length = 0.666675 -step = 0.0833333 -tracks/0/type = "value" -tracks/0/imported = false -tracks/0/enabled = true -tracks/0/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:animation") -tracks/0/interp = 1 -tracks/0/loop_wrap = true -tracks/0/keys = { -"times": PackedFloat32Array(0), -"transitions": PackedFloat32Array(1), -"update": 1, -"values": [&"secondary_attack"] -} -tracks/1/type = "value" -tracks/1/imported = false -tracks/1/enabled = true -tracks/1/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:frame") -tracks/1/interp = 1 -tracks/1/loop_wrap = true -tracks/1/keys = { -"times": PackedFloat32Array(0, 0.0833333, 0.166667, 0.25, 0.333333, 0.416667, 0.500926, 0.583333, 0.666675), -"transitions": PackedFloat32Array(1, 1, 1, 1, 1, 1, 1, 1, 1), -"update": 1, -"values": [0, 1, 2, 3, 4, 5, 6, 7, 8] -} -tracks/2/type = "value" -tracks/2/imported = false -tracks/2/enabled = true -tracks/2/path = NodePath("Hitbox/CollisionShape3D:disabled") -tracks/2/interp = 1 -tracks/2/loop_wrap = true -tracks/2/keys = { -"times": PackedFloat32Array(0, 0.25, 0.413635), -"transitions": PackedFloat32Array(1, 1, 1), -"update": 1, -"values": [true, false, true] -} - [sub_resource type="Animation" id="Animation_ex14j"] resource_name = "idle_left" length = 0.0833416 @@ -1115,66 +1096,6 @@ tracks/1/keys = { "values": [0] } -[sub_resource type="Animation" id="Animation_walw3"] -resource_name = "idle_right" -length = 0.0833416 -loop_mode = 1 -step = 0.0833333 -tracks/0/type = "value" -tracks/0/imported = false -tracks/0/enabled = true -tracks/0/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:animation") -tracks/0/interp = 1 -tracks/0/loop_wrap = true -tracks/0/keys = { -"times": PackedFloat32Array(0), -"transitions": PackedFloat32Array(1), -"update": 1, -"values": [&"idle_right"] -} -tracks/1/type = "value" -tracks/1/imported = false -tracks/1/enabled = true -tracks/1/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:frame") -tracks/1/interp = 1 -tracks/1/loop_wrap = true -tracks/1/keys = { -"times": PackedFloat32Array(0), -"transitions": PackedFloat32Array(1), -"update": 1, -"values": [0] -} - -[sub_resource type="Animation" id="Animation_fc7at"] -resource_name = "idle_back" -length = 0.0833416 -loop_mode = 1 -step = 0.0833333 -tracks/0/type = "value" -tracks/0/imported = false -tracks/0/enabled = true -tracks/0/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:animation") -tracks/0/interp = 1 -tracks/0/loop_wrap = true -tracks/0/keys = { -"times": PackedFloat32Array(0), -"transitions": PackedFloat32Array(1), -"update": 1, -"values": [&"idle_back"] -} -tracks/1/type = "value" -tracks/1/imported = false -tracks/1/enabled = true -tracks/1/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:frame") -tracks/1/interp = 1 -tracks/1/loop_wrap = true -tracks/1/keys = { -"times": PackedFloat32Array(0), -"transitions": PackedFloat32Array(1), -"update": 1, -"values": [0] -} - [sub_resource type="Animation" id="Animation_krcdq"] resource_name = "idle_left_walk" length = 2.58334 @@ -1205,6 +1126,36 @@ tracks/1/keys = { "values": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30] } +[sub_resource type="Animation" id="Animation_walw3"] +resource_name = "idle_right" +length = 0.0833416 +loop_mode = 1 +step = 0.0833333 +tracks/0/type = "value" +tracks/0/imported = false +tracks/0/enabled = true +tracks/0/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:animation") +tracks/0/interp = 1 +tracks/0/loop_wrap = true +tracks/0/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"idle_right"] +} +tracks/1/type = "value" +tracks/1/imported = false +tracks/1/enabled = true +tracks/1/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:frame") +tracks/1/interp = 1 +tracks/1/loop_wrap = true +tracks/1/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [0] +} + [sub_resource type="Animation" id="Animation_vaycn"] resource_name = "idle_right_walk" length = 2.58334 @@ -1235,10 +1186,9 @@ tracks/1/keys = { "values": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30] } -[sub_resource type="Animation" id="Animation_klhid"] -resource_name = "idle_back_walk" -length = 2.58334 -loop_mode = 1 +[sub_resource type="Animation" id="Animation_iw0no"] +resource_name = "primary_attack" +length = 1.16667 step = 0.0833333 tracks/0/type = "value" tracks/0/imported = false @@ -1250,7 +1200,7 @@ tracks/0/keys = { "times": PackedFloat32Array(0), "transitions": PackedFloat32Array(1), "update": 1, -"values": [&"idle_back_walk"] +"values": [&"primary_attack"] } tracks/1/type = "value" tracks/1/imported = false @@ -1259,10 +1209,63 @@ tracks/1/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSpri tracks/1/interp = 1 tracks/1/loop_wrap = true tracks/1/keys = { -"times": PackedFloat32Array(0, 0.0833341, 0.166667, 0.250001, 0.333334, 0.416667, 0.500001, 0.583334, 0.666667, 0.75, 0.833334, 0.916667, 1, 1.08333, 1.16667, 1.25, 1.33333, 1.41667, 1.5, 1.58333, 1.66667, 1.75, 1.83333, 1.91667, 2, 2.08333, 2.16667, 2.25, 2.33333, 2.41667, 2.5), -"transitions": PackedFloat32Array(1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1), +"times": PackedFloat32Array(0, 0.0833333, 0.166667, 0.25, 0.333333, 0.416667, 0.5, 0.585643, 0.666666, 0.75, 0.833333, 0.916667, 1), +"transitions": PackedFloat32Array(1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1), "update": 1, -"values": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30] +"values": [0, 1, 2, 3, 4, 5, 6, 7, 8, 3, 2, 1, 0] +} +tracks/2/type = "value" +tracks/2/imported = false +tracks/2/enabled = true +tracks/2/path = NodePath("Hitbox/CollisionShape3D:disabled") +tracks/2/interp = 1 +tracks/2/loop_wrap = true +tracks/2/keys = { +"times": PackedFloat32Array(0, 0.333333, 0.499215), +"transitions": PackedFloat32Array(1, 1, 1), +"update": 1, +"values": [true, false, true] +} + +[sub_resource type="Animation" id="Animation_r6aec"] +resource_name = "primary_attack_back" +length = 1.16667 +step = 0.0833333 +tracks/0/type = "value" +tracks/0/imported = false +tracks/0/enabled = true +tracks/0/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:animation") +tracks/0/interp = 1 +tracks/0/loop_wrap = true +tracks/0/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"primary_attack_back"] +} +tracks/1/type = "value" +tracks/1/imported = false +tracks/1/enabled = true +tracks/1/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:frame") +tracks/1/interp = 1 +tracks/1/loop_wrap = true +tracks/1/keys = { +"times": PackedFloat32Array(0, 0.0833333, 0.166667, 0.25, 0.333333, 0.416667, 0.5, 0.585643, 0.666666, 0.75, 0.833333, 0.916667, 1), +"transitions": PackedFloat32Array(1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1), +"update": 1, +"values": [0, 1, 2, 3, 4, 5, 6, 7, 8, 3, 2, 1, 0] +} +tracks/2/type = "value" +tracks/2/imported = false +tracks/2/enabled = true +tracks/2/path = NodePath("Hitbox/CollisionShape3D:disabled") +tracks/2/interp = 1 +tracks/2/loop_wrap = true +tracks/2/keys = { +"times": PackedFloat32Array(0, 0.333333, 0.499215), +"transitions": PackedFloat32Array(1, 1, 1), +"update": 1, +"values": [true, false, true] } [sub_resource type="Animation" id="Animation_1bumx"] @@ -1347,9 +1350,9 @@ tracks/2/keys = { "values": [true, false, true] } -[sub_resource type="Animation" id="Animation_r6aec"] -resource_name = "primary_attack_back" -length = 1.16667 +[sub_resource type="Animation" id="Animation_wtyys"] +resource_name = "secondary_attack" +length = 0.666675 step = 0.0833333 tracks/0/type = "value" tracks/0/imported = false @@ -1361,7 +1364,7 @@ tracks/0/keys = { "times": PackedFloat32Array(0), "transitions": PackedFloat32Array(1), "update": 1, -"values": [&"primary_attack_back"] +"values": [&"secondary_attack"] } tracks/1/type = "value" tracks/1/imported = false @@ -1370,10 +1373,10 @@ tracks/1/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSpri tracks/1/interp = 1 tracks/1/loop_wrap = true tracks/1/keys = { -"times": PackedFloat32Array(0, 0.0833333, 0.166667, 0.25, 0.333333, 0.416667, 0.5, 0.585643, 0.666666, 0.75, 0.833333, 0.916667, 1), -"transitions": PackedFloat32Array(1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1), +"times": PackedFloat32Array(0, 0.0833333, 0.166667, 0.25, 0.333333, 0.416667, 0.500926, 0.583333, 0.666675), +"transitions": PackedFloat32Array(1, 1, 1, 1, 1, 1, 1, 1, 1), "update": 1, -"values": [0, 1, 2, 3, 4, 5, 6, 7, 8, 3, 2, 1, 0] +"values": [0, 1, 2, 3, 4, 5, 6, 7, 8] } tracks/2/type = "value" tracks/2/imported = false @@ -1382,7 +1385,48 @@ tracks/2/path = NodePath("Hitbox/CollisionShape3D:disabled") tracks/2/interp = 1 tracks/2/loop_wrap = true tracks/2/keys = { -"times": PackedFloat32Array(0, 0.333333, 0.499215), +"times": PackedFloat32Array(0, 0.25, 0.413635), +"transitions": PackedFloat32Array(1, 1, 1), +"update": 1, +"values": [true, false, true] +} + +[sub_resource type="Animation" id="Animation_jbc40"] +resource_name = "secondary_attack_back" +length = 0.666675 +step = 0.0833333 +tracks/0/type = "value" +tracks/0/imported = false +tracks/0/enabled = true +tracks/0/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:animation") +tracks/0/interp = 1 +tracks/0/loop_wrap = true +tracks/0/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"secondary_attack_back"] +} +tracks/1/type = "value" +tracks/1/imported = false +tracks/1/enabled = true +tracks/1/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:frame") +tracks/1/interp = 1 +tracks/1/loop_wrap = true +tracks/1/keys = { +"times": PackedFloat32Array(0, 0.0833333, 0.166667, 0.25, 0.333333, 0.416667, 0.500926, 0.583333, 0.666675), +"transitions": PackedFloat32Array(1, 1, 1, 1, 1, 1, 1, 1, 1), +"update": 1, +"values": [0, 1, 2, 3, 4, 5, 6, 7, 8] +} +tracks/2/type = "value" +tracks/2/imported = false +tracks/2/enabled = true +tracks/2/path = NodePath("Hitbox/CollisionShape3D:disabled") +tracks/2/interp = 1 +tracks/2/loop_wrap = true +tracks/2/keys = { +"times": PackedFloat32Array(0, 0.25, 0.413635), "transitions": PackedFloat32Array(1, 1, 1), "update": 1, "values": [true, false, true] @@ -1470,47 +1514,6 @@ tracks/2/keys = { "values": [true, false, true] } -[sub_resource type="Animation" id="Animation_jbc40"] -resource_name = "secondary_attack_back" -length = 0.666675 -step = 0.0833333 -tracks/0/type = "value" -tracks/0/imported = false -tracks/0/enabled = true -tracks/0/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:animation") -tracks/0/interp = 1 -tracks/0/loop_wrap = true -tracks/0/keys = { -"times": PackedFloat32Array(0), -"transitions": PackedFloat32Array(1), -"update": 1, -"values": [&"secondary_attack_back"] -} -tracks/1/type = "value" -tracks/1/imported = false -tracks/1/enabled = true -tracks/1/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:frame") -tracks/1/interp = 1 -tracks/1/loop_wrap = true -tracks/1/keys = { -"times": PackedFloat32Array(0, 0.0833333, 0.166667, 0.25, 0.333333, 0.416667, 0.500926, 0.583333, 0.666675), -"transitions": PackedFloat32Array(1, 1, 1, 1, 1, 1, 1, 1, 1), -"update": 1, -"values": [0, 1, 2, 3, 4, 5, 6, 7, 8] -} -tracks/2/type = "value" -tracks/2/imported = false -tracks/2/enabled = true -tracks/2/path = NodePath("Hitbox/CollisionShape3D:disabled") -tracks/2/interp = 1 -tracks/2/loop_wrap = true -tracks/2/keys = { -"times": PackedFloat32Array(0, 0.25, 0.413635), -"transitions": PackedFloat32Array(1, 1, 1), -"update": 1, -"values": [true, false, true] -} - [sub_resource type="AnimationLibrary" id="AnimationLibrary_pkiq5"] _data = { &"RESET": SubResource("Animation_pkiq5"), @@ -2099,3 +2102,11 @@ unique_name_in_owner = true root_node = NodePath("%AnimationTree/..") tree_root = SubResource("AnimationNodeStateMachine_jwe14") anim_player = NodePath("../AnimationPlayer") + +[node name="SFX" type="Node3D" parent="."] + +[node name="PalanquinAttack1" parent="SFX" instance=ExtResource("203_walw3")] + +[node name="PalanquinAttack2" parent="SFX" instance=ExtResource("204_fc7at")] + +[node name="EnemyDeathSoundMedium" parent="SFX" instance=ExtResource("205_fc7at")] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/12. Shield of Heaven/ShieldModelView.tscn b/Zennysoft.Game.Ma/src/enemy/enemy_types/12. Shield of Heaven/ShieldModelView.tscn index a2e009bc..9916f0c2 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/12. Shield of Heaven/ShieldModelView.tscn +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/12. Shield of Heaven/ShieldModelView.tscn @@ -1,4 +1,4 @@ -[gd_scene load_steps=357 format=3 uid="uid://drkaq6grim1fb"] +[gd_scene load_steps=362 format=3 uid="uid://drkaq6grim1fb"] [ext_resource type="Script" uid="uid://cvr1qimxpignl" path="res://src/enemy/EnemyModelView2D.cs" id="1_h8pla"] [ext_resource type="Texture2D" uid="uid://dqltonm4n1b4b" path="res://src/enemy/enemy_types/12. Shield of Heaven/animations/MOVE-BACK/MOVE-BACK_page_0001.png" id="2_3cpkk"] @@ -165,6 +165,11 @@ [ext_resource type="Texture2D" uid="uid://yri6ct11wh4p" path="res://src/enemy/enemy_types/12. Shield of Heaven/animations/IDLE-SIDE/IDLE-SIDE_page_0043.png" id="108_n0e5u"] [ext_resource type="Texture2D" uid="uid://bmiwsea7quils" path="res://src/enemy/enemy_types/12. Shield of Heaven/animations/IDLE-SIDE/IDLE-SIDE_page_0044.png" id="109_88071"] [ext_resource type="Texture2D" uid="uid://vwmwsi53d7np" path="res://src/enemy/enemy_types/12. Shield of Heaven/animations/ATTACK-FRAME.png" id="164_ft48v"] +[ext_resource type="PackedScene" uid="uid://bsn50r0i14jxq" path="res://src/audio/sfx/SfxNodes/shield_of_heaven_aggro.tscn" id="166_yh3w6"] +[ext_resource type="PackedScene" uid="uid://bliajv6dl1ilp" path="res://src/audio/sfx/SfxNodes/shield_of_heaven_attack_1.tscn" id="167_fab8g"] +[ext_resource type="PackedScene" uid="uid://debhgsv7640qf" path="res://src/audio/sfx/SfxNodes/shield_of_heaven_attack_2.tscn" id="168_wc21g"] +[ext_resource type="PackedScene" uid="uid://8ea5vaqwujfd" path="res://src/audio/sfx/SfxNodes/shield_of_heaven_death.tscn" id="169_w7rrw"] +[ext_resource type="PackedScene" uid="uid://c32sxkj1xyyxs" path="res://src/audio/sfx/SfxNodes/enemy_death_sound_medium.tscn" id="170_fab8g"] [sub_resource type="ViewportTexture" id="ViewportTexture_h1kaf"] viewport_path = NodePath("Sprite3D/SubViewportContainer/SubViewport") @@ -792,58 +797,6 @@ tracks/2/keys = { "values": [false] } -[sub_resource type="Animation" id="Animation_lulp4"] -resource_name = "primary_attack" -step = 0.0833333 -tracks/0/type = "value" -tracks/0/imported = false -tracks/0/enabled = true -tracks/0/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:animation") -tracks/0/interp = 1 -tracks/0/loop_wrap = true -tracks/0/keys = { -"times": PackedFloat32Array(0), -"transitions": PackedFloat32Array(1), -"update": 1, -"values": [&"primary_attack"] -} -tracks/1/type = "value" -tracks/1/imported = false -tracks/1/enabled = true -tracks/1/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:frame") -tracks/1/interp = 1 -tracks/1/loop_wrap = true -tracks/1/keys = { -"times": PackedFloat32Array(0), -"transitions": PackedFloat32Array(1), -"update": 1, -"values": [0] -} -tracks/2/type = "value" -tracks/2/imported = false -tracks/2/enabled = true -tracks/2/path = NodePath("Hitbox/CollisionShape3D:disabled") -tracks/2/interp = 1 -tracks/2/loop_wrap = true -tracks/2/keys = { -"times": PackedFloat32Array(0, 0.335728, 0.749375), -"transitions": PackedFloat32Array(1, 1, 1), -"update": 1, -"values": [true, false, true] -} -tracks/3/type = "value" -tracks/3/imported = false -tracks/3/enabled = true -tracks/3/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:flip_h") -tracks/3/interp = 1 -tracks/3/loop_wrap = true -tracks/3/keys = { -"times": PackedFloat32Array(0), -"transitions": PackedFloat32Array(1), -"update": 1, -"values": [false] -} - [sub_resource type="Animation" id="Animation_yaauq"] resource_name = "idle_back_walk" length = 0.750008 @@ -886,90 +839,6 @@ tracks/2/keys = { "values": [false] } -[sub_resource type="Animation" id="Animation_ft48v"] -resource_name = "idle_left" -length = 3.58334 -loop_mode = 1 -step = 0.0833333 -tracks/0/type = "value" -tracks/0/imported = false -tracks/0/enabled = true -tracks/0/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:animation") -tracks/0/interp = 1 -tracks/0/loop_wrap = true -tracks/0/keys = { -"times": PackedFloat32Array(0), -"transitions": PackedFloat32Array(1), -"update": 1, -"values": [&"idle_left"] -} -tracks/1/type = "value" -tracks/1/imported = false -tracks/1/enabled = true -tracks/1/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:frame") -tracks/1/interp = 1 -tracks/1/loop_wrap = true -tracks/1/keys = { -"times": PackedFloat32Array(0, 0.0833333, 0.166667, 0.25, 0.333333, 0.416667, 0.5, 0.583333, 0.666666, 0.75, 0.833333, 0.916666, 1, 1.08333, 1.16667, 1.25, 1.33333, 1.41667, 1.5, 1.58333, 1.66667, 1.75, 1.83333, 1.91667, 2, 2.08333, 2.16667, 2.25, 2.33333, 2.41667, 2.5, 2.58333, 2.66667, 2.75, 2.83333, 2.91667, 3, 3.08333, 3.16667, 3.25, 3.33333, 3.41667, 3.5, 3.58333), -"transitions": PackedFloat32Array(1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1), -"update": 1, -"values": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43] -} -tracks/2/type = "value" -tracks/2/imported = false -tracks/2/enabled = true -tracks/2/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:flip_h") -tracks/2/interp = 1 -tracks/2/loop_wrap = true -tracks/2/keys = { -"times": PackedFloat32Array(0), -"transitions": PackedFloat32Array(1), -"update": 1, -"values": [false] -} - -[sub_resource type="Animation" id="Animation_rq052"] -resource_name = "idle_right" -length = 3.58334 -loop_mode = 1 -step = 0.0833333 -tracks/0/type = "value" -tracks/0/imported = false -tracks/0/enabled = true -tracks/0/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:animation") -tracks/0/interp = 1 -tracks/0/loop_wrap = true -tracks/0/keys = { -"times": PackedFloat32Array(0), -"transitions": PackedFloat32Array(1), -"update": 1, -"values": [&"idle_left"] -} -tracks/1/type = "value" -tracks/1/imported = false -tracks/1/enabled = true -tracks/1/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:frame") -tracks/1/interp = 1 -tracks/1/loop_wrap = true -tracks/1/keys = { -"times": PackedFloat32Array(0, 0.0833333, 0.166667, 0.25, 0.333333, 0.416667, 0.5, 0.583333, 0.666666, 0.75, 0.833333, 0.916666, 1, 1.08333, 1.16667, 1.25, 1.33333, 1.41667, 1.5, 1.58333, 1.66667, 1.75, 1.83333, 1.91667, 2, 2.08333, 2.16667, 2.25, 2.33333, 2.41667, 2.5, 2.58333, 2.66667, 2.75, 2.83333, 2.91667, 3, 3.08333, 3.16667, 3.25, 3.33333, 3.41667, 3.5, 3.58333), -"transitions": PackedFloat32Array(1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1), -"update": 1, -"values": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43] -} -tracks/2/type = "value" -tracks/2/imported = false -tracks/2/enabled = true -tracks/2/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:flip_h") -tracks/2/interp = 1 -tracks/2/loop_wrap = true -tracks/2/keys = { -"times": PackedFloat32Array(0), -"transitions": PackedFloat32Array(1), -"update": 1, -"values": [true] -} - [sub_resource type="Animation" id="Animation_0p21q"] resource_name = "idle_front" length = 3.58334 @@ -1054,6 +923,48 @@ tracks/2/keys = { "values": [false] } +[sub_resource type="Animation" id="Animation_ft48v"] +resource_name = "idle_left" +length = 3.58334 +loop_mode = 1 +step = 0.0833333 +tracks/0/type = "value" +tracks/0/imported = false +tracks/0/enabled = true +tracks/0/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:animation") +tracks/0/interp = 1 +tracks/0/loop_wrap = true +tracks/0/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"idle_left"] +} +tracks/1/type = "value" +tracks/1/imported = false +tracks/1/enabled = true +tracks/1/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:frame") +tracks/1/interp = 1 +tracks/1/loop_wrap = true +tracks/1/keys = { +"times": PackedFloat32Array(0, 0.0833333, 0.166667, 0.25, 0.333333, 0.416667, 0.5, 0.583333, 0.666666, 0.75, 0.833333, 0.916666, 1, 1.08333, 1.16667, 1.25, 1.33333, 1.41667, 1.5, 1.58333, 1.66667, 1.75, 1.83333, 1.91667, 2, 2.08333, 2.16667, 2.25, 2.33333, 2.41667, 2.5, 2.58333, 2.66667, 2.75, 2.83333, 2.91667, 3, 3.08333, 3.16667, 3.25, 3.33333, 3.41667, 3.5, 3.58333), +"transitions": PackedFloat32Array(1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1), +"update": 1, +"values": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43] +} +tracks/2/type = "value" +tracks/2/imported = false +tracks/2/enabled = true +tracks/2/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:flip_h") +tracks/2/interp = 1 +tracks/2/loop_wrap = true +tracks/2/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [false] +} + [sub_resource type="Animation" id="Animation_yh3w6"] resource_name = "idle_left_walk" length = 0.750008 @@ -1096,6 +1007,48 @@ tracks/2/keys = { "values": [false] } +[sub_resource type="Animation" id="Animation_rq052"] +resource_name = "idle_right" +length = 3.58334 +loop_mode = 1 +step = 0.0833333 +tracks/0/type = "value" +tracks/0/imported = false +tracks/0/enabled = true +tracks/0/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:animation") +tracks/0/interp = 1 +tracks/0/loop_wrap = true +tracks/0/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"idle_left"] +} +tracks/1/type = "value" +tracks/1/imported = false +tracks/1/enabled = true +tracks/1/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:frame") +tracks/1/interp = 1 +tracks/1/loop_wrap = true +tracks/1/keys = { +"times": PackedFloat32Array(0, 0.0833333, 0.166667, 0.25, 0.333333, 0.416667, 0.5, 0.583333, 0.666666, 0.75, 0.833333, 0.916666, 1, 1.08333, 1.16667, 1.25, 1.33333, 1.41667, 1.5, 1.58333, 1.66667, 1.75, 1.83333, 1.91667, 2, 2.08333, 2.16667, 2.25, 2.33333, 2.41667, 2.5, 2.58333, 2.66667, 2.75, 2.83333, 2.91667, 3, 3.08333, 3.16667, 3.25, 3.33333, 3.41667, 3.5, 3.58333), +"transitions": PackedFloat32Array(1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1), +"update": 1, +"values": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43] +} +tracks/2/type = "value" +tracks/2/imported = false +tracks/2/enabled = true +tracks/2/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:flip_h") +tracks/2/interp = 1 +tracks/2/loop_wrap = true +tracks/2/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [true] +} + [sub_resource type="Animation" id="Animation_fab8g"] resource_name = "idle_right_walk" length = 0.750008 @@ -1138,6 +1091,110 @@ tracks/2/keys = { "values": [true] } +[sub_resource type="Animation" id="Animation_lulp4"] +resource_name = "primary_attack" +step = 0.0833333 +tracks/0/type = "value" +tracks/0/imported = false +tracks/0/enabled = true +tracks/0/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:animation") +tracks/0/interp = 1 +tracks/0/loop_wrap = true +tracks/0/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"primary_attack"] +} +tracks/1/type = "value" +tracks/1/imported = false +tracks/1/enabled = true +tracks/1/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:frame") +tracks/1/interp = 1 +tracks/1/loop_wrap = true +tracks/1/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [0] +} +tracks/2/type = "value" +tracks/2/imported = false +tracks/2/enabled = true +tracks/2/path = NodePath("Hitbox/CollisionShape3D:disabled") +tracks/2/interp = 1 +tracks/2/loop_wrap = true +tracks/2/keys = { +"times": PackedFloat32Array(0, 0.335728, 0.749375), +"transitions": PackedFloat32Array(1, 1, 1), +"update": 1, +"values": [true, false, true] +} +tracks/3/type = "value" +tracks/3/imported = false +tracks/3/enabled = true +tracks/3/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:flip_h") +tracks/3/interp = 1 +tracks/3/loop_wrap = true +tracks/3/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [false] +} + +[sub_resource type="Animation" id="Animation_7g4jy"] +resource_name = "primary_attack_back" +step = 0.0833333 +tracks/0/type = "value" +tracks/0/imported = false +tracks/0/enabled = true +tracks/0/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:animation") +tracks/0/interp = 1 +tracks/0/loop_wrap = true +tracks/0/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [&"primary_attack"] +} +tracks/1/type = "value" +tracks/1/imported = false +tracks/1/enabled = true +tracks/1/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:frame") +tracks/1/interp = 1 +tracks/1/loop_wrap = true +tracks/1/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [0] +} +tracks/2/type = "value" +tracks/2/imported = false +tracks/2/enabled = true +tracks/2/path = NodePath("Hitbox/CollisionShape3D:disabled") +tracks/2/interp = 1 +tracks/2/loop_wrap = true +tracks/2/keys = { +"times": PackedFloat32Array(0, 0.335728, 0.749375), +"transitions": PackedFloat32Array(1, 1, 1), +"update": 1, +"values": [true, false, true] +} +tracks/3/type = "value" +tracks/3/imported = false +tracks/3/enabled = true +tracks/3/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:flip_h") +tracks/3/interp = 1 +tracks/3/loop_wrap = true +tracks/3/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [false] +} + [sub_resource type="Animation" id="Animation_wc21g"] resource_name = "primary_attack_left" step = 0.0833333 @@ -1242,8 +1299,8 @@ tracks/3/keys = { "values": [false] } -[sub_resource type="Animation" id="Animation_7g4jy"] -resource_name = "primary_attack_back" +[sub_resource type="Animation" id="Animation_b727r"] +resource_name = "secondary_attack" step = 0.0833333 tracks/0/type = "value" tracks/0/imported = false @@ -1294,8 +1351,8 @@ tracks/3/keys = { "values": [false] } -[sub_resource type="Animation" id="Animation_b727r"] -resource_name = "secondary_attack" +[sub_resource type="Animation" id="Animation_2jibd"] +resource_name = "secondary_attack_back" step = 0.0833333 tracks/0/type = "value" tracks/0/imported = false @@ -1450,58 +1507,6 @@ tracks/3/keys = { "values": [false] } -[sub_resource type="Animation" id="Animation_2jibd"] -resource_name = "secondary_attack_back" -step = 0.0833333 -tracks/0/type = "value" -tracks/0/imported = false -tracks/0/enabled = true -tracks/0/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:animation") -tracks/0/interp = 1 -tracks/0/loop_wrap = true -tracks/0/keys = { -"times": PackedFloat32Array(0), -"transitions": PackedFloat32Array(1), -"update": 1, -"values": [&"primary_attack"] -} -tracks/1/type = "value" -tracks/1/imported = false -tracks/1/enabled = true -tracks/1/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:frame") -tracks/1/interp = 1 -tracks/1/loop_wrap = true -tracks/1/keys = { -"times": PackedFloat32Array(0), -"transitions": PackedFloat32Array(1), -"update": 1, -"values": [0] -} -tracks/2/type = "value" -tracks/2/imported = false -tracks/2/enabled = true -tracks/2/path = NodePath("Hitbox/CollisionShape3D:disabled") -tracks/2/interp = 1 -tracks/2/loop_wrap = true -tracks/2/keys = { -"times": PackedFloat32Array(0, 0.335728, 0.749375), -"transitions": PackedFloat32Array(1, 1, 1), -"update": 1, -"values": [true, false, true] -} -tracks/3/type = "value" -tracks/3/imported = false -tracks/3/enabled = true -tracks/3/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:flip_h") -tracks/3/interp = 1 -tracks/3/loop_wrap = true -tracks/3/keys = { -"times": PackedFloat32Array(0), -"transitions": PackedFloat32Array(1), -"update": 1, -"values": [false] -} - [sub_resource type="AnimationLibrary" id="AnimationLibrary_xidnl"] _data = { &"RESET": SubResource("Animation_wcevu"), @@ -2088,3 +2093,15 @@ unique_name_in_owner = true root_node = NodePath("%AnimationTree/..") tree_root = SubResource("AnimationNodeStateMachine_3ev0n") anim_player = NodePath("../AnimationPlayer") + +[node name="SFX" type="Node3D" parent="."] + +[node name="ShieldOfHeavenAggro" parent="SFX" instance=ExtResource("166_yh3w6")] + +[node name="ShieldOfHeavenAttack1" parent="SFX" instance=ExtResource("167_fab8g")] + +[node name="ShieldOfHeavenAttack2" parent="SFX" instance=ExtResource("168_wc21g")] + +[node name="ShieldOfHeavenDeath" parent="SFX" instance=ExtResource("169_w7rrw")] + +[node name="EnemyDeathSoundMedium" parent="SFX" instance=ExtResource("170_fab8g")] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/13. gold sproingy/GoldSproingyModelView.tscn b/Zennysoft.Game.Ma/src/enemy/enemy_types/13. gold sproingy/GoldSproingyModelView.tscn index 567b6745..86470f29 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/13. gold sproingy/GoldSproingyModelView.tscn +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/13. gold sproingy/GoldSproingyModelView.tscn @@ -1,4 +1,4 @@ -[gd_scene load_steps=130 format=3 uid="uid://c5asojy73n44d"] +[gd_scene load_steps=132 format=3 uid="uid://c5asojy73n44d"] [ext_resource type="Script" uid="uid://cvr1qimxpignl" path="res://src/enemy/EnemyModelView2D.cs" id="1_mnn74"] [ext_resource type="Script" uid="uid://dlsgyx4i1jmp3" path="res://src/enemy/EnemyLoreInfo.cs" id="2_e7c5t"] @@ -47,6 +47,8 @@ [ext_resource type="Texture2D" uid="uid://cssrkfehdhgp5" path="res://src/enemy/enemy_types/13. gold sproingy/animations/GOLD_SPROING_SIDE/Layer 13.png" id="30_lcdw8"] [ext_resource type="Texture2D" uid="uid://dl12u2wcp0fkb" path="res://src/enemy/enemy_types/13. gold sproingy/animations/GOLD_SPROING_SIDE/Layer 14.png" id="31_ie1nt"] [ext_resource type="Texture2D" uid="uid://bcu6ei8kbcv2w" path="res://src/enemy/enemy_types/13. gold sproingy/animations/GOLD_SPROING_SIDE/Layer 15.png" id="32_u2p8a"] +[ext_resource type="PackedScene" uid="uid://cmldmuxkmltae" path="res://src/audio/sfx/SfxNodes/sproing_attack.tscn" id="50_smvnd"] +[ext_resource type="PackedScene" uid="uid://dpngkc4ld21ex" path="res://src/audio/sfx/SfxNodes/sproing_death.tscn" id="51_fynbp"] [ext_resource type="Script" uid="uid://6edayafleq8y" path="res://src/hitbox/Hitbox.cs" id="58_ahls6"] [ext_resource type="PackedScene" uid="uid://dpoonda2dwwic" path="res://src/enemy/BasicEnemyAnimationTree.tscn" id="59_gqipt"] @@ -813,3 +815,9 @@ libraries = { [node name="AnimationTree" parent="." instance=ExtResource("59_gqipt")] unique_name_in_owner = true tree_root = SubResource("AnimationNodeStateMachine_dson0") + +[node name="SFX" type="Node3D" parent="."] + +[node name="SproingAttack" parent="SFX" instance=ExtResource("50_smvnd")] + +[node name="SproingDeath" parent="SFX" instance=ExtResource("51_fynbp")] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/14. horse_head/HorseFaceModelView.tscn b/Zennysoft.Game.Ma/src/enemy/enemy_types/14. horse_head/HorseFaceModelView.tscn index 15422413..512c6f9c 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/14. horse_head/HorseFaceModelView.tscn +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/14. horse_head/HorseFaceModelView.tscn @@ -1,10 +1,15 @@ -[gd_scene load_steps=35 format=4 uid="uid://bid6f48l0q58o"] +[gd_scene load_steps=40 format=4 uid="uid://bid6f48l0q58o"] [ext_resource type="Script" uid="uid://bvcfww5827g74" path="res://src/enemy/enemy_types/BossTypeAEnemyModelView.cs" id="1_q3bfl"] [ext_resource type="Texture2D" uid="uid://2e4cp477ex0t" path="res://src/enemy/enemy_types/14. horse_head/animation/Horse Head 1_Metal054C_1K-JPG_Color.jpg" id="1_vv6g0"] [ext_resource type="Animation" uid="uid://bhsp32c05j2o5" path="res://src/enemy/enemy_types/14. horse_head/animation/walking.res" id="2_yvw71"] [ext_resource type="Animation" uid="uid://ccq41qrm1lduk" path="res://src/enemy/enemy_types/14. horse_head/animation/walking2.res" id="3_bkc4x"] [ext_resource type="Script" uid="uid://6edayafleq8y" path="res://src/hitbox/Hitbox.cs" id="4_bkc4x"] +[ext_resource type="PackedScene" uid="uid://damqqiqyis3qa" path="res://src/audio/sfx/SfxNodes/boss_1_death.tscn" id="6_58wyj"] +[ext_resource type="PackedScene" uid="uid://jqx4qhvggr7r" path="res://src/audio/sfx/SfxNodes/boss_1_step.tscn" id="7_qhoxi"] +[ext_resource type="PackedScene" uid="uid://cb6o5d2w21fgj" path="res://src/audio/sfx/SfxNodes/boss_1_take_damage.tscn" id="8_lj3cb"] +[ext_resource type="PackedScene" uid="uid://cyy58sod8omcc" path="res://src/audio/sfx/SfxNodes/horse_head_attack_1.tscn" id="9_agk0q"] +[ext_resource type="PackedScene" uid="uid://cnarrrx4bly04" path="res://src/audio/sfx/SfxNodes/horse_head_attack_2.tscn" id="10_rv3ka"] [sub_resource type="StandardMaterial3D" id="StandardMaterial3D_tv6dm"] resource_name = "Material" @@ -950,7 +955,7 @@ bones/0/name = "spine1" bones/0/parent = -1 bones/0/rest = Transform3D(1.49012e-06, 0.00846654, -0.999964, 2.93367e-08, 0.999964, 0.00846654, 1, -4.23752e-08, 1.49012e-06, 0.000155807, -0.00105953, -2.01735) bones/0/enabled = true -bones/0/position = Vector3(0.0996386, -0.286937, -1.53144) +bones/0/position = Vector3(0.0996386, -0.317103, -1.53144) bones/0/rotation = Quaternion(0.0256267, -0.805691, 0.0118477, 0.591662) bones/0/scale = Vector3(1, 1, 1) bones/1/name = "spine0" @@ -979,7 +984,7 @@ bones/4/parent = 3 bones/4/rest = Transform3D(0.901905, -0.410135, 0.135488, 0.412416, 0.910915, 0.0120912, -0.128377, 0.0449723, 0.990705, 2.5332e-07, 0.990515, -7.07805e-08) bones/4/enabled = true bones/4/position = Vector3(2.5332e-07, 0.990515, -7.07805e-08) -bones/4/rotation = Quaternion(0.00719109, 0.0669325, 0.208583, 0.975685) +bones/4/rotation = Quaternion(0.0044215, 0.0653296, 0.203439, 0.976896) bones/4/scale = Vector3(1, 1, 1) bones/5/name = "neck4" bones/5/parent = 4 @@ -993,7 +998,7 @@ bones/6/parent = 5 bones/6/rest = Transform3D(0.0598389, 0.98531, 0.15995, -0.975271, 0.0235553, 0.219755, 0.212759, -0.169144, 0.962353, 3.65078e-07, 1.40318, 0) bones/6/enabled = true bones/6/position = Vector3(3.65078e-07, 1.40318, 0) -bones/6/rotation = Quaternion(-0.34229, 0.0520364, -0.492651, 0.798389) +bones/6/rotation = Quaternion(-0.33928, 0.051754, -0.484077, 0.80491) bones/6/scale = Vector3(1, 1, 1) bones/7/name = "Bone.007" bones/7/parent = 6 @@ -1028,7 +1033,7 @@ bones/11/parent = 1 bones/11/rest = Transform3D(0.981457, 0.0769315, -0.175568, 0.18837, -0.217537, 0.957703, 0.035485, -0.973015, -0.227995, -1.09896e-07, 3.84743, -2.10479e-07) bones/11/enabled = true bones/11/position = Vector3(-1.09896e-07, 3.84743, -2.10479e-07) -bones/11/rotation = Quaternion(-0.806484, -0.0804808, -0.0235063, 0.585281) +bones/11/rotation = Quaternion(-0.808141, -0.0835361, -0.0235774, 0.582558) bones/11/scale = Vector3(1, 1, 1) bones/12/name = "arm2_L" bones/12/parent = 11 @@ -1055,7 +1060,7 @@ bones/15/name = "arm1_R" bones/15/parent = 1 bones/15/rest = Transform3D(-0.98213, 0.0512573, -0.181089, -0.187541, -0.185921, 0.964501, 0.0157694, 0.981227, 0.192212, 0.00107862, 3.8461, -0.0821097) bones/15/enabled = true -bones/15/position = Vector3(-0.200988, 3.63853, 0.0778547) +bones/15/position = Vector3(-0.194392, 3.5878, 0.0874463) bones/15/rotation = Quaternion(-0.502686, 0.531044, 0.680821, -0.0422068) bones/15/scale = Vector3(1, 1, 1) bones/16/name = "arm2_R" @@ -1070,7 +1075,7 @@ bones/17/parent = 16 bones/17/rest = Transform3D(0.998789, 0.0488077, -0.00615137, -0.0491113, 0.996528, -0.0672226, 0.00284903, 0.0674433, 0.997719, -5.21541e-08, 3.04263, -1.31503e-06) bones/17/enabled = true bones/17/position = Vector3(-5.21541e-08, 3.04263, -1.31503e-06) -bones/17/rotation = Quaternion(-0.0441274, 0.0972971, 0.265552, 0.958159) +bones/17/rotation = Quaternion(-0.0367074, 0.0970498, 0.26816, 0.95777) bones/17/scale = Vector3(1, 1, 1) bones/18/name = "hand_R" bones/18/parent = 17 @@ -1083,7 +1088,7 @@ bones/19/name = "hip_L" bones/19/parent = -1 bones/19/rest = Transform3D(0.138486, 0.897208, 0.419333, -0.129033, -0.403458, 0.905854, 0.981923, -0.179556, 0.059896, 0.000155807, -0.00105953, -2.01735) bones/19/enabled = true -bones/19/position = Vector3(0.147751, -0.286556, -1.49267) +bones/19/position = Vector3(0.147751, -0.304013, -1.49267) bones/19/rotation = Quaternion(0.427793, 0.34021, 0.687061, -0.478745) bones/19/scale = Vector3(1, 1, 1) bones/20/name = "leg1_L" @@ -1091,14 +1096,14 @@ bones/20/parent = 19 bones/20/rest = Transform3D(0.945603, 0.113405, 0.304916, -0.324072, 0.410457, 0.852351, -0.0284943, -0.9048, 0.424881, 2.08616e-07, 2.00996, -7.1153e-07) bones/20/enabled = true bones/20/position = Vector3(2.08616e-07, 2.00996, -7.1153e-07) -bones/20/rotation = Quaternion(-0.437502, -0.325641, -0.369821, 0.752186) +bones/20/rotation = Quaternion(-0.436719, -0.326615, -0.371024, 0.751625) bones/20/scale = Vector3(1, 1, 1) bones/21/name = "leg2_L" bones/21/parent = 20 bones/21/rest = Transform3D(0.990336, -0.138679, 0.00180777, 0.138628, 0.990193, 0.0173138, -0.00419111, -0.0168959, 0.999848, 5.96046e-08, 5.85994, -5.23403e-07) bones/21/enabled = true bones/21/position = Vector3(5.96046e-08, 5.85994, -5.23403e-07) -bones/21/rotation = Quaternion(-0.0475923, 0.00188944, 0.380694, 0.923474) +bones/21/rotation = Quaternion(-0.0479839, 0.00188674, 0.383826, 0.922156) bones/21/scale = Vector3(1, 1, 1) bones/22/name = "foot1_L" bones/22/parent = 21 @@ -1132,7 +1137,7 @@ bones/26/name = "hip_R" bones/26/parent = -1 bones/26/rest = Transform3D(0.138486, -0.897208, -0.419333, 0.129033, -0.403458, 0.905854, -0.981923, -0.179556, 0.059896, -0.000155807, -0.00105953, -2.01735) bones/26/enabled = true -bones/26/position = Vector3(0.0289172, -0.300995, -1.59603) +bones/26/position = Vector3(0.0289172, -0.312633, -1.59603) bones/26/rotation = Quaternion(0.695067, -0.09936, -0.377924, -0.603475) bones/26/scale = Vector3(1, 1, 1) bones/27/name = "leg1_R" @@ -1140,14 +1145,14 @@ bones/27/parent = 26 bones/27/rest = Transform3D(0.945603, -0.113405, -0.304916, 0.324072, 0.410457, 0.852351, 0.0284943, -0.9048, 0.424881, -9.54606e-09, 2.00996, -3.52971e-07) bones/27/enabled = true bones/27/position = Vector3(-9.54606e-09, 2.00996, -3.52971e-07) -bones/27/rotation = Quaternion(-0.317189, 0.174319, 0.183922, 0.91388) +bones/27/rotation = Quaternion(-0.315926, 0.17521, 0.184026, 0.914126) bones/27/scale = Vector3(1, 1, 1) bones/28/name = "leg2_R" bones/28/parent = 27 bones/28/rest = Transform3D(0.990336, 0.138679, -0.00180777, -0.138628, 0.990193, 0.0173138, 0.00419111, -0.0168959, 0.999848, 4.51691e-08, 5.85994, -3.72529e-09) bones/28/enabled = true bones/28/position = Vector3(4.51691e-08, 5.85994, -3.72529e-09) -bones/28/rotation = Quaternion(-0.268436, 0.020219, -0.17515, 0.947025) +bones/28/rotation = Quaternion(-0.270654, 0.0201998, -0.176598, 0.946124) bones/28/scale = Vector3(1, 1, 1) bones/29/name = "foot1_R" bones/29/parent = 28 @@ -1184,7 +1189,7 @@ mesh = SubResource("ArrayMesh_6e63x") skin = SubResource("Skin_yvw71") [node name="BoneAttachment3D" type="BoneAttachment3D" parent="Armature/Skeleton3D"] -transform = Transform3D(-0.370165, -0.13327, -0.919357, -0.260753, -0.934964, 0.240521, -0.89162, 0.328758, 0.31134, -2.00357, 8.78194, 6.15009) +transform = Transform3D(-0.370164, -0.13327, -0.919357, -0.269675, -0.931623, 0.243628, -0.888962, 0.33811, 0.308914, -2.00357, 8.76988, 6.18823) bone_name = "TOP OF SKULL" bone_idx = 8 @@ -1218,3 +1223,15 @@ unique_name_in_owner = true root_node = NodePath("%AnimationTree/..") tree_root = SubResource("AnimationNodeStateMachine_q3bfl") anim_player = NodePath("../AnimationPlayer") + +[node name="SFX" type="Node3D" parent="."] + +[node name="Boss1Death" parent="SFX" instance=ExtResource("6_58wyj")] + +[node name="Boss1Step" parent="SFX" instance=ExtResource("7_qhoxi")] + +[node name="Boss1TakeDamage" parent="SFX" instance=ExtResource("8_lj3cb")] + +[node name="HorseHeadAttack1" parent="SFX" instance=ExtResource("9_agk0q")] + +[node name="HorseHeadAttack2" parent="SFX" instance=ExtResource("10_rv3ka")] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/15. ox_face/OxFaceModelView.tscn b/Zennysoft.Game.Ma/src/enemy/enemy_types/15. ox_face/OxFaceModelView.tscn index 94297706..f2c660b4 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/15. ox_face/OxFaceModelView.tscn +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/15. ox_face/OxFaceModelView.tscn @@ -1,10 +1,16 @@ -[gd_scene load_steps=26 format=4 uid="uid://dnomfbym36ivg"] +[gd_scene load_steps=32 format=4 uid="uid://dnomfbym36ivg"] [ext_resource type="Script" uid="uid://ckv5dmrw6pvn6" path="res://src/enemy/EnemyModelView3D.cs" id="1_6miqu"] [ext_resource type="Script" uid="uid://bvcfww5827g74" path="res://src/enemy/enemy_types/BossTypeAEnemyModelView.cs" id="1_f2iok"] [ext_resource type="Texture2D" uid="uid://dp6hwvuhfkji8" path="res://src/enemy/enemy_types/15. ox_face/models/OX FACE_Metal054C_1K-JPG_Color.jpg" id="1_lsf8e"] [ext_resource type="AnimationLibrary" uid="uid://dn4501qsypsu" path="res://src/enemy/enemy_types/14. horse_head/animation/OxFaceAnimations.tres" id="3_pmgg3"] [ext_resource type="Script" uid="uid://6edayafleq8y" path="res://src/hitbox/Hitbox.cs" id="5_f2iok"] +[ext_resource type="PackedScene" uid="uid://dt3oia7l2qga5" path="res://src/audio/sfx/SfxNodes/ox_face_attack_1.tscn" id="6_v4mpe"] +[ext_resource type="PackedScene" uid="uid://r8frd2aiejtm" path="res://src/audio/sfx/SfxNodes/ox_face_attack_2.tscn" id="7_nb428"] +[ext_resource type="PackedScene" uid="uid://djv3riyskuvk3" path="res://src/audio/sfx/SfxNodes/ox_face_howl.tscn" id="8_srfnr"] +[ext_resource type="PackedScene" uid="uid://damqqiqyis3qa" path="res://src/audio/sfx/SfxNodes/boss_1_death.tscn" id="9_4g1p4"] +[ext_resource type="PackedScene" uid="uid://jqx4qhvggr7r" path="res://src/audio/sfx/SfxNodes/boss_1_step.tscn" id="10_evyqg"] +[ext_resource type="PackedScene" uid="uid://cb6o5d2w21fgj" path="res://src/audio/sfx/SfxNodes/boss_1_take_damage.tscn" id="11_x3fo8"] [sub_resource type="StandardMaterial3D" id="StandardMaterial3D_y7226"] resource_name = "Material" @@ -201,7 +207,7 @@ bones/0/name = "spine1" bones/0/parent = -1 bones/0/rest = Transform3D(1.49012e-06, 0.00846654, -0.999964, 2.93367e-08, 0.999964, 0.00846654, 1, -4.23752e-08, 1.49012e-06, 0.000155807, -0.00105953, -2.01735) bones/0/enabled = true -bones/0/position = Vector3(-0.260102, -1.03396, -1.96903) +bones/0/position = Vector3(-0.259514, -0.966803, -1.97356) bones/0/rotation = Quaternion(0.0915277, -0.692111, -0.0341586, 0.715149) bones/0/scale = Vector3(1, 1, 1) bones/1/name = "spine0" @@ -244,7 +250,7 @@ bones/6/parent = 5 bones/6/rest = Transform3D(0.0598389, 0.98531, 0.15995, -0.975271, 0.0235553, 0.219755, 0.212759, -0.169144, 0.962353, 3.65078e-07, 1.40318, 0) bones/6/enabled = true bones/6/position = Vector3(3.65078e-07, 1.40318, 0) -bones/6/rotation = Quaternion(-0.0582257, -0.298145, -0.744478, 0.594534) +bones/6/rotation = Quaternion(-0.0727795, -0.303434, -0.744754, 0.589893) bones/6/scale = Vector3(1, 1, 1) bones/7/name = "Bone.007" bones/7/parent = 6 @@ -279,7 +285,7 @@ bones/11/parent = 1 bones/11/rest = Transform3D(0.981457, 0.0769315, -0.175568, 0.18837, -0.217537, 0.957703, 0.035485, -0.973015, -0.227995, -1.09896e-07, 3.84743, -2.10479e-07) bones/11/enabled = true bones/11/position = Vector3(-1.09896e-07, 3.84743, -2.10479e-07) -bones/11/rotation = Quaternion(-0.7806, -0.0580329, 0.0800844, 0.617156) +bones/11/rotation = Quaternion(-0.784556, -0.0615003, 0.0721757, 0.612765) bones/11/scale = Vector3(1, 0.999999, 1) bones/12/name = "arm2_L" bones/12/parent = 11 @@ -307,7 +313,7 @@ bones/15/parent = 1 bones/15/rest = Transform3D(-0.98213, 0.0512573, -0.181089, -0.187541, -0.185921, 0.964501, 0.0157694, 0.981227, 0.192212, 0.00107862, 3.8461, -0.0821097) bones/15/enabled = true bones/15/position = Vector3(0.00107886, 3.8461, -0.0821095) -bones/15/rotation = Quaternion(-0.214497, 0.743843, 0.615182, -0.149132) +bones/15/rotation = Quaternion(-0.210834, 0.738132, 0.621363, -0.156902) bones/15/scale = Vector3(1, 1, 1) bones/16/name = "arm2_R" bones/16/parent = 15 @@ -334,22 +340,22 @@ bones/19/name = "hip_L" bones/19/parent = -1 bones/19/rest = Transform3D(0.138486, 0.897208, 0.419333, -0.129033, -0.403458, 0.905854, 0.981923, -0.179556, 0.059896, 0.000155807, -0.00105953, -2.01735) bones/19/enabled = true -bones/19/position = Vector3(-0.365519, -1.18524, -1.76905) -bones/19/rotation = Quaternion(0.624534, 0.296747, 0.550437, -0.467886) +bones/19/position = Vector3(-0.311428, -1.13407, -1.94728) +bones/19/rotation = Quaternion(0.613272, 0.310263, 0.568538, -0.452105) bones/19/scale = Vector3(1, 1, 1) bones/20/name = "leg1_L" bones/20/parent = 19 bones/20/rest = Transform3D(0.945603, 0.113405, 0.304916, -0.324072, 0.410457, 0.852351, -0.0284943, -0.9048, 0.424881, 2.08616e-07, 2.00996, -7.1153e-07) bones/20/enabled = true bones/20/position = Vector3(2.08616e-07, 2.00996, -7.1153e-07) -bones/20/rotation = Quaternion(-0.324511, -0.426489, -0.295168, 0.790997) +bones/20/rotation = Quaternion(-0.312765, -0.439466, -0.275743, 0.795622) bones/20/scale = Vector3(1, 0.999999, 1) bones/21/name = "leg2_L" bones/21/parent = 20 bones/21/rest = Transform3D(0.990336, -0.138679, 0.00180777, 0.138628, 0.990193, 0.0173138, -0.00419111, -0.0168959, 0.999848, 5.96046e-08, 5.85994, -5.23403e-07) bones/21/enabled = true bones/21/position = Vector3(5.96046e-08, 5.85994, -5.23403e-07) -bones/21/rotation = Quaternion(-0.0604686, 0.00129855, 0.489496, 0.869905) +bones/21/rotation = Quaternion(-0.0601935, 0.00130044, 0.487268, 0.871174) bones/21/scale = Vector3(1, 1, 1) bones/22/name = "foot1_L" bones/22/parent = 21 @@ -383,7 +389,7 @@ bones/26/name = "hip_R" bones/26/parent = -1 bones/26/rest = Transform3D(0.138486, -0.897208, -0.419333, 0.129033, -0.403458, 0.905854, -0.981923, -0.179556, 0.059896, -0.000155807, -0.00105953, -2.01735) bones/26/enabled = true -bones/26/position = Vector3(-0.0689794, -1.11395, -2.01886) +bones/26/position = Vector3(-0.227973, -1.11395, -2.01777) bones/26/rotation = Quaternion(0.608697, -0.3155, -0.575514, -0.445793) bones/26/scale = Vector3(1, 1, 1) bones/27/name = "leg1_R" @@ -391,14 +397,14 @@ bones/27/parent = 26 bones/27/rest = Transform3D(0.945603, -0.113405, -0.304916, 0.324072, 0.410457, 0.852351, 0.0284943, -0.9048, 0.424881, -9.54606e-09, 2.00996, -3.52971e-07) bones/27/enabled = true bones/27/position = Vector3(-9.54606e-09, 2.00996, -3.52971e-07) -bones/27/rotation = Quaternion(-0.202922, 0.424294, 0.138461, 0.871565) +bones/27/rotation = Quaternion(-0.207504, 0.421762, 0.141749, 0.871187) bones/27/scale = Vector3(1, 0.999999, 1) bones/28/name = "leg2_R" bones/28/parent = 27 bones/28/rest = Transform3D(0.990336, 0.138679, -0.00180777, -0.138628, 0.990193, 0.0173138, 0.00419111, -0.0168959, 0.999848, 4.51691e-08, 5.85994, -3.72529e-09) bones/28/enabled = true bones/28/position = Vector3(4.51691e-08, 5.85994, -3.72529e-09) -bones/28/rotation = Quaternion(-0.062997, -0.00116309, -0.502962, 0.862009) +bones/28/rotation = Quaternion(-0.0639987, -0.0011566, -0.51096, 0.857218) bones/28/scale = Vector3(1, 1, 1) bones/29/name = "foot1_R" bones/29/parent = 28 @@ -430,7 +436,7 @@ bones/32/rotation = Quaternion(0.456756, 0.539878, -0.539587, -0.456893) bones/32/scale = Vector3(1, 1, 1) [node name="BoneAttachment3D" type="BoneAttachment3D" parent="Armature/Skeleton3D"] -transform = Transform3D(-0.278583, -0.0552048, -0.958824, -0.331993, -0.931266, 0.150077, -0.901205, 0.360132, 0.241107, -1.67868, 8.22488, 4.95448) +transform = Transform3D(-0.295231, -0.0812154, -0.951968, -0.329173, -0.926731, 0.181148, -0.89693, 0.366843, 0.246865, -1.6635, 8.29858, 4.94831) bone_name = "TOP OF SKULL" bone_idx = 8 @@ -470,3 +476,17 @@ script = ExtResource("5_f2iok") transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0.300452, 11.5388, 0.257962) shape = SubResource("BoxShape3D_pmgg3") disabled = true + +[node name="SFX" type="Node3D" parent="."] + +[node name="OxFaceAttack1" parent="SFX" instance=ExtResource("6_v4mpe")] + +[node name="OxFaceAttack2" parent="SFX" instance=ExtResource("7_nb428")] + +[node name="OxFaceHowl" parent="SFX" instance=ExtResource("8_srfnr")] + +[node name="Boss1Death" parent="SFX" instance=ExtResource("9_4g1p4")] + +[node name="Boss1Step" parent="SFX" instance=ExtResource("10_evyqg")] + +[node name="Boss1TakeDamage" parent="SFX" instance=ExtResource("11_x3fo8")] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/16. demon wall/DemonWallModelView.tscn b/Zennysoft.Game.Ma/src/enemy/enemy_types/16. demon wall/DemonWallModelView.tscn index c880df71..befcdfb3 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/16. demon wall/DemonWallModelView.tscn +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/16. demon wall/DemonWallModelView.tscn @@ -1,4 +1,4 @@ -[gd_scene load_steps=27 format=4 uid="uid://l4413jwn0m8v"] +[gd_scene load_steps=36 format=4 uid="uid://l4413jwn0m8v"] [ext_resource type="PackedScene" uid="uid://b7ofk5cv4ldh" path="res://src/enemy/enemy_types/16. demon wall/Arm1.tscn" id="1_ell80"] [ext_resource type="Script" uid="uid://d3cvsxlaohuqy" path="res://src/enemy/enemy_types/16. demon wall/DemonWallModelView.cs" id="1_r5yku"] @@ -15,6 +15,15 @@ [ext_resource type="Texture2D" uid="uid://cx3dho27tsa84" path="res://src/enemy/enemy_types/16. demon wall/model/DEMON WALL BASE + PIPES_AREA_2_MAIN_222STONE.png" id="12_ecghy"] [ext_resource type="Texture2D" uid="uid://bps3cftalnkro" path="res://src/enemy/enemy_types/16. demon wall/model/DEMON WALL BASE + PIPES_concrete_0003_height_1k.png" id="13_m8c2g"] [ext_resource type="PackedScene" uid="uid://dtrrhnxdddpay" path="res://src/enemy/enemy_types/16. demon wall/model/demon_wall_summoned_wall.glb" id="15_nqxqr"] +[ext_resource type="PackedScene" uid="uid://favnc55iot8i" path="res://src/audio/sfx/SfxNodes/demon_wall_death.tscn" id="16_ecghy"] +[ext_resource type="PackedScene" uid="uid://71em00ohdkju" path="res://src/audio/sfx/SfxNodes/demon_wall_flamethrower.tscn" id="17_m8c2g"] +[ext_resource type="PackedScene" uid="uid://b4kh4fbu8bl86" path="res://src/audio/sfx/SfxNodes/demon_wall_holy_electric.tscn" id="18_ty1ba"] +[ext_resource type="PackedScene" uid="uid://e6qsijbj77gk" path="res://src/audio/sfx/SfxNodes/demon_wall_laser.tscn" id="19_73686"] +[ext_resource type="PackedScene" uid="uid://5mkifjuphjs7" path="res://src/audio/sfx/SfxNodes/demon_wall_orb.tscn" id="20_mwu74"] +[ext_resource type="PackedScene" uid="uid://dormaa2vjilx5" path="res://src/audio/sfx/SfxNodes/demon_wall_orb_travel.tscn" id="21_me8xl"] +[ext_resource type="PackedScene" uid="uid://b08ys324208ie" path="res://src/audio/sfx/SfxNodes/demon_wall_pull.tscn" id="22_2msrh"] +[ext_resource type="PackedScene" uid="uid://b45wjjkudytgp" path="res://src/audio/sfx/SfxNodes/demon_wall_slam.tscn" id="23_maoww"] +[ext_resource type="PackedScene" uid="uid://dhdtocfcblnpb" path="res://src/audio/sfx/SfxNodes/demon_wall_status_effector.tscn" id="24_ofgfh"] [sub_resource type="StandardMaterial3D" id="StandardMaterial3D_dlwiv"] resource_name = "PIPE" @@ -256,3 +265,23 @@ unique_name_in_owner = true root_node = NodePath("%AnimationTree/..") tree_root = SubResource("AnimationNodeStateMachine_r5yku") anim_player = NodePath("../AnimationPlayer") + +[node name="SFX" type="Node3D" parent="."] + +[node name="DemonWallDeath" parent="SFX" instance=ExtResource("16_ecghy")] + +[node name="DemonWallFlamethrower" parent="SFX" instance=ExtResource("17_m8c2g")] + +[node name="DemonWallHolyElectric" parent="SFX" instance=ExtResource("18_ty1ba")] + +[node name="DemonWallLaser" parent="SFX" instance=ExtResource("19_73686")] + +[node name="DemonWallOrb" parent="SFX" instance=ExtResource("20_mwu74")] + +[node name="DemonWallOrbTravel" parent="SFX" instance=ExtResource("21_me8xl")] + +[node name="DemonWallPull" parent="SFX" instance=ExtResource("22_2msrh")] + +[node name="DemonWallSlam" parent="SFX" instance=ExtResource("23_maoww")] + +[node name="DemonWallStatusEffector" parent="SFX" instance=ExtResource("24_ofgfh")] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/9b. Aqueos Demon/AqueosDemon.tscn b/Zennysoft.Game.Ma/src/enemy/enemy_types/9b. Aqueos Demon/AqueosDemon.tscn index b686c12a..af167fc4 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/9b. Aqueos Demon/AqueosDemon.tscn +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/9b. Aqueos Demon/AqueosDemon.tscn @@ -1,6 +1,6 @@ [gd_scene load_steps=9 format=3 uid="uid://dpq17ej06uah1"] -[ext_resource type="Script" uid="uid://h6duv685n6eh" path="res://src/enemy/enemy_types/09. Agi/AgiDemon.cs" id="1_wbopj"] +[ext_resource type="Script" uid="uid://h6duv685n6eh" path="res://src/enemy/enemy_types/09. Agni/AgniDemon.cs" id="1_wbopj"] [ext_resource type="PackedScene" uid="uid://cu7n814hhtjwm" path="res://src/enemy/enemy_types/9b. Aqueos Demon/AqueosModelView.tscn" id="2_0hbxv"] [ext_resource type="Script" uid="uid://dnkmr0eq1sij0" path="res://src/enemy/EnemyStatResource.cs" id="2_wtipe"] [ext_resource type="PackedScene" uid="uid://pbnsngx5jvrh" path="res://src/enemy/NavigationAgentClient.tscn" id="4_m7ocm"] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/9b. Aqueos Demon/AqueosModelView.tscn b/Zennysoft.Game.Ma/src/enemy/enemy_types/9b. Aqueos Demon/AqueosModelView.tscn index 51925089..1338963c 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/9b. Aqueos Demon/AqueosModelView.tscn +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/9b. Aqueos Demon/AqueosModelView.tscn @@ -1,4 +1,4 @@ -[gd_scene load_steps=529 format=3 uid="uid://cu7n814hhtjwm"] +[gd_scene load_steps=532 format=3 uid="uid://cu7n814hhtjwm"] [ext_resource type="Script" uid="uid://cvr1qimxpignl" path="res://src/enemy/EnemyModelView2D.cs" id="1_vf7er"] [ext_resource type="Resource" uid="uid://co0eq5nl2ai24" path="res://src/enemy/enemy_types/9b. Aqueos Demon/AqueosDemonInfo.tres" id="2_ejhrk"] @@ -333,6 +333,9 @@ [ext_resource type="Texture2D" uid="uid://daos4dnmaq6xx" path="res://src/enemy/enemy_types/9b. Aqueos Demon/animations/WATER LOOP/0188.png" id="331_p8xq6"] [ext_resource type="Texture2D" uid="uid://c311su0a86yii" path="res://src/enemy/enemy_types/9b. Aqueos Demon/animations/WATER LOOP/0190.png" id="332_8j4qa"] [ext_resource type="Script" uid="uid://6edayafleq8y" path="res://src/hitbox/Hitbox.cs" id="333_ylptm"] +[ext_resource type="PackedScene" uid="uid://dnn62fckypld0" path="res://src/audio/sfx/SfxNodes/aqueos_ambient.tscn" id="334_pcxyk"] +[ext_resource type="PackedScene" uid="uid://c32sxkj1xyyxs" path="res://src/audio/sfx/SfxNodes/enemy_death_sound_medium.tscn" id="335_sm161"] +[ext_resource type="PackedScene" uid="uid://qcvw2s4tlrku" path="res://src/audio/sfx/SfxNodes/agni_attack_1.tscn" id="336_6g4mi"] [sub_resource type="ViewportTexture" id="ViewportTexture_h1kaf"] viewport_path = NodePath("Sprite3D/SubViewportContainer/SubViewport") @@ -2618,3 +2621,11 @@ libraries = { &"": SubResource("AnimationLibrary_o7os0") } autoplay = "default" + +[node name="SFX" type="Node3D" parent="."] + +[node name="AqueosAmbient" parent="SFX" instance=ExtResource("334_pcxyk")] + +[node name="EnemyDeathSoundMedium" parent="SFX" instance=ExtResource("335_sm161")] + +[node name="AgniAttack1" parent="SFX" instance=ExtResource("336_6g4mi")] diff --git a/Zennysoft.Game.Ma/src/enemy/state/EnemyLogic.g.puml b/Zennysoft.Game.Ma/src/enemy/state/EnemyLogic.g.puml index 33157ae0..b044500b 100644 --- a/Zennysoft.Game.Ma/src/enemy/state/EnemyLogic.g.puml +++ b/Zennysoft.Game.Ma/src/enemy/state/EnemyLogic.g.puml @@ -1,12 +1,12 @@ @startuml EnemyLogic state "EnemyLogic State" as Zennysoft_Game_Ma_EnemyLogic_State { state "Alive" as Zennysoft_Game_Ma_EnemyLogic_State_Alive { + state "Idle" as Zennysoft_Game_Ma_EnemyLogic_State_Idle state "Activated" as Zennysoft_Game_Ma_EnemyLogic_State_Activated { state "Attacking" as Zennysoft_Game_Ma_EnemyLogic_State_Attacking - state "FollowPlayer" as Zennysoft_Game_Ma_EnemyLogic_State_FollowPlayer state "Patrolling" as Zennysoft_Game_Ma_EnemyLogic_State_Patrolling + state "FollowPlayer" as Zennysoft_Game_Ma_EnemyLogic_State_FollowPlayer } - state "Idle" as Zennysoft_Game_Ma_EnemyLogic_State_Idle } state "Defeated" as Zennysoft_Game_Ma_EnemyLogic_State_Defeated } diff --git a/Zennysoft.Game.Ma/src/map/dungeon/floors/Floor12.tscn b/Zennysoft.Game.Ma/src/map/dungeon/floors/Floor12.tscn index fd0da547..7862b8c9 100644 --- a/Zennysoft.Game.Ma/src/map/dungeon/floors/Floor12.tscn +++ b/Zennysoft.Game.Ma/src/map/dungeon/floors/Floor12.tscn @@ -15,7 +15,7 @@ [ext_resource type="PackedScene" uid="uid://dbvr8ewajja6a" path="res://src/enemy/EnemyDatabase.tscn" id="13_jwrcb"] [ext_resource type="PackedScene" uid="uid://c6tqt27ql8s35" path="res://src/enemy/enemy_types/07. chinthe/Chinthe.tscn" id="14_edmor"] [ext_resource type="PackedScene" uid="uid://fosk3kt7vp8d" path="res://src/enemy/enemy_types/08a. Ambassador/Ambassador.tscn" id="14_xpfig"] -[ext_resource type="PackedScene" uid="uid://b8ewfgcjv60es" path="res://src/enemy/enemy_types/09. Agi/AgiDemon.tscn" id="16_m28m3"] +[ext_resource type="PackedScene" uid="uid://b8ewfgcjv60es" path="res://src/enemy/enemy_types/09. Agni/AgniDemon.tscn" id="16_m28m3"] [sub_resource type="NavigationMesh" id="NavigationMesh_gqi8w"] border_size = 1.0 diff --git a/Zennysoft.Game.Ma/src/map/dungeon/floors/Floor13.tscn b/Zennysoft.Game.Ma/src/map/dungeon/floors/Floor13.tscn index 5848802f..94904127 100644 --- a/Zennysoft.Game.Ma/src/map/dungeon/floors/Floor13.tscn +++ b/Zennysoft.Game.Ma/src/map/dungeon/floors/Floor13.tscn @@ -15,7 +15,7 @@ [ext_resource type="PackedScene" uid="uid://dbvr8ewajja6a" path="res://src/enemy/EnemyDatabase.tscn" id="13_bm34w"] [ext_resource type="PackedScene" uid="uid://fosk3kt7vp8d" path="res://src/enemy/enemy_types/08a. Ambassador/Ambassador.tscn" id="14_cmrxb"] [ext_resource type="PackedScene" uid="uid://c6tqt27ql8s35" path="res://src/enemy/enemy_types/07. chinthe/Chinthe.tscn" id="15_bb5ek"] -[ext_resource type="PackedScene" uid="uid://b8ewfgcjv60es" path="res://src/enemy/enemy_types/09. Agi/AgiDemon.tscn" id="16_ak4no"] +[ext_resource type="PackedScene" uid="uid://b8ewfgcjv60es" path="res://src/enemy/enemy_types/09. Agni/AgniDemon.tscn" id="16_ak4no"] [sub_resource type="NavigationMesh" id="NavigationMesh_gqi8w"] border_size = 1.0 diff --git a/Zennysoft.Game.Ma/src/map/dungeon/floors/Floor14.tscn b/Zennysoft.Game.Ma/src/map/dungeon/floors/Floor14.tscn index 1500f968..f85c699d 100644 --- a/Zennysoft.Game.Ma/src/map/dungeon/floors/Floor14.tscn +++ b/Zennysoft.Game.Ma/src/map/dungeon/floors/Floor14.tscn @@ -14,7 +14,7 @@ [ext_resource type="PackedScene" uid="uid://dooy8nc5pgaxm" path="res://src/map/dungeon/rooms/Set B/37. Corridor 2.tscn" id="12_tkntm"] [ext_resource type="PackedScene" uid="uid://dbvr8ewajja6a" path="res://src/enemy/EnemyDatabase.tscn" id="13_8j25c"] [ext_resource type="PackedScene" uid="uid://c6tqt27ql8s35" path="res://src/enemy/enemy_types/07. chinthe/Chinthe.tscn" id="14_r4r1j"] -[ext_resource type="PackedScene" uid="uid://b8ewfgcjv60es" path="res://src/enemy/enemy_types/09. Agi/AgiDemon.tscn" id="15_q127u"] +[ext_resource type="PackedScene" uid="uid://b8ewfgcjv60es" path="res://src/enemy/enemy_types/09. Agni/AgniDemon.tscn" id="15_q127u"] [ext_resource type="PackedScene" uid="uid://cmvimr0pvsgqy" path="res://src/enemy/enemy_types/10. Eden Pillar/Eden Pillar.tscn" id="16_7km57"] [ext_resource type="PackedScene" uid="uid://b3giib0jp3uod" path="res://src/enemy/enemy_types/13. gold sproingy/GoldSproingy.tscn" id="17_nrwsy"] diff --git a/Zennysoft.Game.Ma/src/map/dungeon/floors/Floor15.tscn b/Zennysoft.Game.Ma/src/map/dungeon/floors/Floor15.tscn index 6abb3853..bae52596 100644 --- a/Zennysoft.Game.Ma/src/map/dungeon/floors/Floor15.tscn +++ b/Zennysoft.Game.Ma/src/map/dungeon/floors/Floor15.tscn @@ -13,7 +13,7 @@ [ext_resource type="PackedScene" uid="uid://02v033xrh6xi" path="res://src/map/dungeon/rooms/Set B/38. Floor Exit B.tscn" id="11_t8tuf"] [ext_resource type="PackedScene" uid="uid://dooy8nc5pgaxm" path="res://src/map/dungeon/rooms/Set B/37. Corridor 2.tscn" id="12_f284e"] [ext_resource type="PackedScene" uid="uid://dbvr8ewajja6a" path="res://src/enemy/EnemyDatabase.tscn" id="13_hlb65"] -[ext_resource type="PackedScene" uid="uid://b8ewfgcjv60es" path="res://src/enemy/enemy_types/09. Agi/AgiDemon.tscn" id="14_i4yll"] +[ext_resource type="PackedScene" uid="uid://b8ewfgcjv60es" path="res://src/enemy/enemy_types/09. Agni/AgniDemon.tscn" id="14_i4yll"] [ext_resource type="PackedScene" uid="uid://cmvimr0pvsgqy" path="res://src/enemy/enemy_types/10. Eden Pillar/Eden Pillar.tscn" id="15_xtyir"] [ext_resource type="PackedScene" uid="uid://5s7c4dsb1wwk" path="res://src/enemy/enemy_types/12. Shield of Heaven/ShieldOfHeaven.tscn" id="16_cfhak"] diff --git a/Zennysoft.Game.Ma/src/map/dungeon/floors/Floor16.tscn b/Zennysoft.Game.Ma/src/map/dungeon/floors/Floor16.tscn index 6bc257cc..da3128a1 100644 --- a/Zennysoft.Game.Ma/src/map/dungeon/floors/Floor16.tscn +++ b/Zennysoft.Game.Ma/src/map/dungeon/floors/Floor16.tscn @@ -13,7 +13,7 @@ [ext_resource type="PackedScene" uid="uid://02v033xrh6xi" path="res://src/map/dungeon/rooms/Set B/38. Floor Exit B.tscn" id="11_wurkp"] [ext_resource type="PackedScene" uid="uid://dooy8nc5pgaxm" path="res://src/map/dungeon/rooms/Set B/37. Corridor 2.tscn" id="12_qbngl"] [ext_resource type="PackedScene" uid="uid://dbvr8ewajja6a" path="res://src/enemy/EnemyDatabase.tscn" id="13_gg5wp"] -[ext_resource type="PackedScene" uid="uid://b8ewfgcjv60es" path="res://src/enemy/enemy_types/09. Agi/AgiDemon.tscn" id="14_dg3fy"] +[ext_resource type="PackedScene" uid="uid://b8ewfgcjv60es" path="res://src/enemy/enemy_types/09. Agni/AgniDemon.tscn" id="14_dg3fy"] [ext_resource type="PackedScene" uid="uid://cmvimr0pvsgqy" path="res://src/enemy/enemy_types/10. Eden Pillar/Eden Pillar.tscn" id="15_q8hlb"] [ext_resource type="PackedScene" uid="uid://boqjebx7yuiqy" path="res://src/enemy/enemy_types/11. Palan/Palan.tscn" id="16_0utb0"] diff --git a/Zennysoft.Game.Ma/src/menu/DebugMenu.tscn b/Zennysoft.Game.Ma/src/menu/DebugMenu.tscn index e3e63ea6..1d639fcb 100644 --- a/Zennysoft.Game.Ma/src/menu/DebugMenu.tscn +++ b/Zennysoft.Game.Ma/src/menu/DebugMenu.tscn @@ -12,7 +12,7 @@ [ext_resource type="PackedScene" uid="uid://feegakykn3fv" path="res://src/enemy/enemy_types/05. ballos/Ballos.tscn" id="10_ct6et"] [ext_resource type="PackedScene" uid="uid://dlw5cvutvypxn" path="res://src/enemy/enemy_types/06. chariot/Chariot.tscn" id="11_fk1r1"] [ext_resource type="PackedScene" uid="uid://c6tqt27ql8s35" path="res://src/enemy/enemy_types/07. chinthe/Chinthe.tscn" id="12_yh23m"] -[ext_resource type="PackedScene" uid="uid://b8ewfgcjv60es" path="res://src/enemy/enemy_types/09. Agi/AgiDemon.tscn" id="13_tns3g"] +[ext_resource type="PackedScene" uid="uid://b8ewfgcjv60es" path="res://src/enemy/enemy_types/09. Agni/AgniDemon.tscn" id="13_tns3g"] [ext_resource type="PackedScene" uid="uid://dpq17ej06uah1" path="res://src/enemy/enemy_types/9b. Aqueos Demon/AqueosDemon.tscn" id="14_fmyye"] [ext_resource type="PackedScene" uid="uid://fosk3kt7vp8d" path="res://src/enemy/enemy_types/08a. Ambassador/Ambassador.tscn" id="15_1f6di"] [ext_resource type="PackedScene" uid="uid://c5gbaybqm4cuk" path="res://src/enemy/enemy_types/08b. Ambassador (red)/AmbassadorRed.tscn" id="16_r6xvd"] diff --git a/Zennysoft.Game.Ma/src/ui/inventory_menu/InventoryMenu.cs b/Zennysoft.Game.Ma/src/ui/inventory_menu/InventoryMenu.cs index cb655a92..5fda983b 100644 --- a/Zennysoft.Game.Ma/src/ui/inventory_menu/InventoryMenu.cs +++ b/Zennysoft.Game.Ma/src/ui/inventory_menu/InventoryMenu.cs @@ -163,6 +163,7 @@ public partial class InventoryMenu : Control, IInventoryMenu HideUserActionPrompt(); ShowInventoryInfo(); GameEventDepot.OnMenuBackedOut(); + Autoload.InGameAudio.Cancel.Play(); } else { @@ -180,6 +181,7 @@ public partial class InventoryMenu : Control, IInventoryMenu Player.Stats.BonusAttack.Sync -= BonusAttack_Sync; Player.Stats.BonusDefense.Sync -= BonusDefense_Sync; _gameRepo.CloseInventory(); + Autoload.InGameAudio.Cancel.Play(); } } @@ -202,6 +204,7 @@ public partial class InventoryMenu : Control, IInventoryMenu SetToUnselectedStyle(ItemSlots.ElementAt(oldIndex)); SetToSelectedStyle(ItemSlots.ElementAt(newIndex)); GameEventDepot.OnMenuScrolled(); + Autoload.InGameAudio.MoveThroughOptions.Play(); _currentIndex = newIndex; } @@ -216,12 +219,14 @@ public partial class InventoryMenu : Control, IInventoryMenu SetToUnselectedStyle(ItemSlots.ElementAt(oldIndex)); SetToSelectedStyle(ItemSlots.ElementAt(newIndex)); GameEventDepot.OnMenuScrolled(); + Autoload.InGameAudio.MoveThroughOptions.Play(); _currentIndex = newIndex; } if (@event.IsActionPressed(GameInputs.UiAccept)) { DisplayUserActionPrompt(); + Autoload.InGameAudio.Select.Play(); } if (@event.IsActionPressed(GameInputs.InventorySort)) @@ -323,6 +328,7 @@ public partial class InventoryMenu : Control, IInventoryMenu _currentPageNumber = pageToChangeTo; await RefreshInventoryScreen(); GameEventDepot.OnMenuScrolled(); + Autoload.InGameAudio.MoveThroughOptions.Play(); } private async void PopulateInventory() diff --git a/Zennysoft.Game.Ma/src/ui/player_ui/Assets/panel rough draft.png b/Zennysoft.Game.Ma/src/ui/player_ui/Assets/panel rough draft.png new file mode 100644 index 00000000..54720010 Binary files /dev/null and b/Zennysoft.Game.Ma/src/ui/player_ui/Assets/panel rough draft.png differ diff --git a/Zennysoft.Game.Ma/src/ui/player_ui/Assets/panel rough draft.png.import b/Zennysoft.Game.Ma/src/ui/player_ui/Assets/panel rough draft.png.import new file mode 100644 index 00000000..8ca85495 --- /dev/null +++ b/Zennysoft.Game.Ma/src/ui/player_ui/Assets/panel rough draft.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bj4p4qxb1mj3q" +path="res://.godot/imported/panel rough draft.png-0c7c4e82f01664d18eb3207c7b4e1a9a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://src/ui/player_ui/Assets/panel rough draft.png" +dest_files=["res://.godot/imported/panel rough draft.png-0c7c4e82f01664d18eb3207c7b4e1a9a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/Zennysoft.Game.Ma/src/vfx/shaders/n64_1.gdshader b/Zennysoft.Game.Ma/src/vfx/shaders/n64_1.gdshader index 7b9c40ce..7c97bfdd 100644 --- a/Zennysoft.Game.Ma/src/vfx/shaders/n64_1.gdshader +++ b/Zennysoft.Game.Ma/src/vfx/shaders/n64_1.gdshader @@ -44,10 +44,10 @@ vec3 apply_dithering(vec3 color, vec2 screen_pos) { vec3 threshold = random_noise_vec3(screen_pos); vec3 error = fract(color_scaled / 8.0); return color + step(threshold, error) * PALETTE_STEP; - } + } else { - float threshold = (dither_mode == 0) ? - magic_matrix[int(mod(screen_pos.y, 4.0))][int(mod(screen_pos.x, 4.0))] : + float threshold = (dither_mode == 0) ? + magic_matrix[int(mod(screen_pos.y, 4.0))][int(mod(screen_pos.x, 4.0))] : bayer_matrix[int(mod(screen_pos.y, 4.0))][int(mod(screen_pos.x, 4.0))]; vec3 quantized = floor(color_scaled / 8.0) * 8.0; vec3 can_dither = step(quantized, vec3(247.0)) * step(vec3(1.0), color_scaled);