diff --git a/Zennysoft.Game.Ma/project.godot b/Zennysoft.Game.Ma/project.godot index 5b1af4dff..39a31da88 100644 --- a/Zennysoft.Game.Ma/project.godot +++ b/Zennysoft.Game.Ma/project.godot @@ -259,11 +259,15 @@ AltAttack={ CameraForward={ "deadzone": 0.2, "events": [Object(InputEventJoypadMotion,"resource_local_to_scene":false,"resource_name":"","device":-1,"axis":3,"axis_value":-1.0,"script":null) +, Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":4194320,"key_label":0,"unicode":0,"location":0,"echo":false,"script":null) +, Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":4194446,"key_label":0,"unicode":56,"location":0,"echo":false,"script":null) ] } CameraBack={ "deadzone": 0.2, "events": [Object(InputEventJoypadMotion,"resource_local_to_scene":false,"resource_name":"","device":-1,"axis":3,"axis_value":1.0,"script":null) +, Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":4194322,"key_label":0,"unicode":0,"location":0,"echo":false,"script":null) +, Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":4194440,"key_label":0,"unicode":50,"location":0,"echo":false,"script":null) ] } EnemyViewerIdle={ diff --git a/Zennysoft.Game.Ma/src/app/App.cs b/Zennysoft.Game.Ma/src/app/App.cs index 828758be5..f5418b980 100644 --- a/Zennysoft.Game.Ma/src/app/App.cs +++ b/Zennysoft.Game.Ma/src/app/App.cs @@ -21,7 +21,7 @@ public partial class App : Node, IApp public const string GAME_SCENE_PATH = "res://src/game/Game.tscn"; - public const string ENEMY_VIEWER_PATH = "res://src/data_viewer/DataViewer.tscn"; + public const string ENEMY_VIEWER_PATH = "res://src/enemy_viewer/EnemyViewer.tscn"; [Node] private MainMenu MainMenu { get; set; } = default!; @@ -40,14 +40,14 @@ public partial class App : Node, IApp private Godot.Collections.Array _progress; private SimpleInjector.Container _container; - private DataViewer _dataViewer; + private EnemyViewer _dataViewer; private bool _loadingGame = false; private bool _loadingEnemyViewer = false; private string _optionsSavePath = string.Empty; private string _controllerSavePath = string.Empty; private ISaveFileManager _saveFileManager; private IGame _game; - private IDataViewer _enemyViewer; + private IEnemyViewer _enemyViewer; private double _reportedProgress = 0; @@ -173,7 +173,7 @@ public partial class App : Node, IApp .Handle((in AppLogic.Output.EnemyViewerExited _) => { LoadingScreen.HideLoadingScreen(); - if (_enemyViewer != null && _enemyViewer is DataViewer enemyViewer) + if (_enemyViewer != null && _enemyViewer is EnemyViewer enemyViewer) enemyViewer.CallDeferred(MethodName.QueueFree); MainMenu.Show(); MainMenu.EnemyViewerButton.GrabFocus(); @@ -211,7 +211,7 @@ public partial class App : Node, IApp private async void LoadEnemyViewer(string sceneName) { var scene = await LoadSceneInternal(sceneName); - _enemyViewer = scene as IDataViewer; + _enemyViewer = scene as IEnemyViewer; CallDeferred(MethodName.AddChild, scene); LoadingScreen.HideLoadingScreen(); } diff --git a/Zennysoft.Game.Ma/src/enemy/EnemyModelView.cs b/Zennysoft.Game.Ma/src/enemy/EnemyModelView.cs index 63b5ec0c4..980b24b39 100644 --- a/Zennysoft.Game.Ma/src/enemy/EnemyModelView.cs +++ b/Zennysoft.Game.Ma/src/enemy/EnemyModelView.cs @@ -38,6 +38,9 @@ public abstract partial class EnemyModelView : Node3D, IEnemyModelView public event EventHandler TeleportAnimationFinished; + [Export] + public double ViewerSize { get; set; } = 1f; + [Export] public bool CanMove { get; set; } = false; diff --git a/Zennysoft.Game.Ma/src/enemy/IEnemyModelView.cs b/Zennysoft.Game.Ma/src/enemy/IEnemyModelView.cs index 0b11a1e9d..02e37b979 100644 --- a/Zennysoft.Game.Ma/src/enemy/IEnemyModelView.cs +++ b/Zennysoft.Game.Ma/src/enemy/IEnemyModelView.cs @@ -27,6 +27,8 @@ public interface IEnemyModelView : INode3D public void PlayDeathAnimation(); + public double ViewerSize { get; } + public AttackData AttackData { get; set; } public event EventHandler HitPlayer; diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/01. sproingy/Sproingy.tscn b/Zennysoft.Game.Ma/src/enemy/enemy_types/01. sproingy/Sproingy.tscn index bc82972af..0ebac4d61 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/01. sproingy/Sproingy.tscn +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/01. sproingy/Sproingy.tscn @@ -84,7 +84,6 @@ collision_mask = 34 shape = SubResource("CylinderShape3D_drfkj") [node name="Visual" type="Node3D" parent="."] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.975554, 0) [node name="EnemyModelView" parent="Visual" instance=ExtResource("4_o3b7p")] unique_name_in_owner = true 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 335b2fb04..ada16407e 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 @@ -666,7 +666,7 @@ EnemyLoreInfo = SubResource("Resource_ivy74") [node name="Sprite3D" type="Sprite3D" parent="."] unique_name_in_owner = true -transform = Transform3D(6, 0, 0, 0, 6, 0, 0, 0, 6, 0, 1.1044, 0) +transform = Transform3D(6, 0, 0, 0, 6, 0, 0, 0, 6, 0, 2.05501, 0) pixel_size = 0.001 billboard = 2 shaded = true @@ -697,7 +697,7 @@ animation = &"idle_left_walk" [node name="Hitbox" type="Area3D" parent="."] unique_name_in_owner = true -transform = Transform3D(-1, 0, -8.74228e-08, 0, 1, 0, 8.74228e-08, 0, -1, -0.152949, 1.1044, 0) +transform = Transform3D(-1, 0, -8.74228e-08, 0, 1, 0, 8.74228e-08, 0, -1, -0.152949, 2.05501, 0) collision_layer = 64 collision_mask = 64 @@ -722,12 +722,12 @@ anim_player = NodePath("../AnimationPlayer") [node name="WalkSFX" type="AudioStreamPlayer3D" parent="."] unique_name_in_owner = true -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1.1044, 0) +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 2.05501, 0) autoplay = true bus = &"SFX" [node name="Shadow" type="Sprite3D" parent="."] -transform = Transform3D(0.115, 0, 0, 0, -5.02681e-09, 0.115, 0, -0.115, -5.02681e-09, -0.00018537, -0.942894, 0.0453106) +transform = Transform3D(0.115, 0, 0, 0, -5.02681e-09, 0.115, 0, -0.115, -5.02681e-09, -0.00018537, 0.00771421, 0.0453106) transparency = 0.1 cast_shadow = 0 texture_filter = 0 diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/02. michael/Michael.tscn b/Zennysoft.Game.Ma/src/enemy/enemy_types/02. michael/Michael.tscn index 197d4e1df..4b4dcec4c 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/02. michael/Michael.tscn +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/02. michael/Michael.tscn @@ -64,7 +64,7 @@ shape = SubResource("CapsuleShape3D_0h5s2") [node name="EnemyModelView" parent="." instance=ExtResource("3_wrps7")] unique_name_in_owner = true -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0.0799522, 0.805832, 0) +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0.08, 0, 0) [node name="PlayerDetector" type="Area3D" parent="."] unique_name_in_owner = true 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 40cbd3597..025cd7c79 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 @@ -71,7 +71,7 @@ [ext_resource type="Texture2D" uid="uid://vxphbifafq0q" path="res://src/enemy/enemy_types/02. michael/animations/IDLE_WALK/LEFT SIDE/Michael_IdleWalk_Left (21).png" id="68_msiau"] [ext_resource type="Texture2D" uid="uid://7r30bjydumon" path="res://src/enemy/enemy_types/02. michael/animations/IDLE_WALK/LEFT SIDE/Michael_IdleWalk_Left (22).png" id="69_lec8c"] [ext_resource type="Texture2D" uid="uid://djspx2smexhme" path="res://src/enemy/enemy_types/02. michael/animations/IDLE_WALK/LEFT SIDE/Michael_IdleWalk_Left (23).png" id="70_f0jo7"] -[ext_resource type="PackedScene" path="res://src/enemy/BasicEnemyAnimationTree.tscn" id="73_gby04"] +[ext_resource type="PackedScene" uid="uid://cygwsc1gebeut" path="res://src/enemy/BasicEnemyAnimationTree.tscn" id="73_gby04"] [ext_resource type="AnimationNodeStateMachine" uid="uid://cbq8xog50cjjy" path="res://src/enemy/animation_state_machines/PrimaryAttackStateMachine.tres" id="74_fxhv6"] [ext_resource type="Texture2D" uid="uid://duygq1qfer5oa" path="res://src/vfx/Enemy/michael_attack.png" id="74_mip6u"] [ext_resource type="AnimationNodeStateMachine" uid="uid://co7lshemjrro8" path="res://src/enemy/animation_state_machines/IdleStateMachine.tres" id="74_pxi1p"] @@ -1187,7 +1187,7 @@ EnemyLoreInfo = SubResource("Resource_gby04") [node name="Sprite3D" type="Sprite3D" parent="."] unique_name_in_owner = true -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1.25389, 0) +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1.98924, 0) billboard = 2 shaded = true alpha_cut = 1 @@ -1245,19 +1245,19 @@ libraries = { } [node name="Michael Attack VFX" type="AnimatedSprite3D" parent="."] -transform = Transform3D(0.72, 0, 0, 0, 0.72, 0, 0, 0, 0.72, -0.129818, 1.61521, 0.532815) +transform = Transform3D(0.72, 0, 0, 0, 0.72, 0, 0, 0, 0.72, -0.129818, 2.35056, 0.532815) modulate = Color(0.977, 0.31, 1, 0.741176) billboard = 2 sprite_frames = SubResource("SpriteFrames_suy1t") [node name="WalkSFX" type="AudioStreamPlayer3D" parent="."] unique_name_in_owner = true -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1.34076, 0) +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 2.07611, 0) autoplay = true bus = &"SFX" [node name="Shadow" type="Sprite3D" parent="."] -transform = Transform3D(0.38, 0, 0, 0, -1.66103e-08, 0.38, 0, -0.38, -1.66103e-08, 0.00393164, -0.728023, 0.0077811) +transform = Transform3D(0.38, 0, 0, 0, -1.66103e-08, 0.38, 0, -0.38, -1.66103e-08, 0.00393164, 0.0073306, 0.0077811) transparency = 0.1 cast_shadow = 0 modulate = Color(1, 1, 1, 0.591) diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/03. filth_eater/FilthEater.tscn b/Zennysoft.Game.Ma/src/enemy/enemy_types/03. filth_eater/FilthEater.tscn index 5920c50b5..992998d1d 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/03. filth_eater/FilthEater.tscn +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/03. filth_eater/FilthEater.tscn @@ -1,7 +1,7 @@ [gd_scene load_steps=16 format=3 uid="uid://bl426uws0i86l"] [ext_resource type="Script" uid="uid://cohal8w5ceneg" path="res://src/enemy/enemy_types/03. filth_eater/FilthEater.cs" id="1_p438s"] -[ext_resource type="PackedScene" path="res://src/enemy/enemy_types/03. filth_eater/FilthEaterModelView.tscn" id="3_rrwed"] +[ext_resource type="PackedScene" uid="uid://b6sa6ntu4rbrm" path="res://src/enemy/enemy_types/03. filth_eater/FilthEaterModelView.tscn" id="3_rrwed"] [ext_resource type="Script" uid="uid://dlsgyx4i1jmp3" path="res://src/enemy/EnemyLoreInfo.cs" id="4_5eid5"] [ext_resource type="PackedScene" uid="uid://cn4fv2gv6raql" path="res://src/enemy/behaviors/PatrolBehavior.tscn" id="5_pvjvo"] [ext_resource type="PackedScene" uid="uid://cve5oouhowtff" path="res://src/enemy/behaviors/FollowBehavior.tscn" id="6_fccr3"] @@ -48,7 +48,7 @@ script = ExtResource("1_p438s") [node name="LineOfSight" type="Area3D" parent="."] unique_name_in_owner = true -transform = Transform3D(-1, 0, -8.74228e-08, 0, 1, 0, 8.74228e-08, 0, -1, 0, 1.56859, 0) +transform = Transform3D(-1, 0, -8.74228e-08, 0, 1, 0, 8.74228e-08, 0, -1, 0, 0.515302, 0) collision_layer = 2 collision_mask = 2 @@ -58,7 +58,7 @@ shape = SubResource("CylinderShape3D_jbgmx") [node name="CollisionShape" type="CollisionShape3D" parent="."] unique_name_in_owner = true -transform = Transform3D(-1, 0, -8.74228e-08, 0, 1, 0, 8.74228e-08, 0, -1, 0, 1.56859, 0) +transform = Transform3D(-1, 0, -8.74228e-08, 0, 1, 0, 8.74228e-08, 0, -1, 0, 0.515302, 0) shape = SubResource("CapsuleShape3D_cwfph") [node name="Raycast" type="RayCast3D" parent="."] @@ -68,7 +68,7 @@ target_position = Vector3(0, 0, -5) collision_mask = 3 [node name="Collision" type="Area3D" parent="."] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1.56859, 0) +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.515302, 0) collision_layer = 2048 collision_mask = 0 @@ -78,12 +78,12 @@ shape = SubResource("SphereShape3D_0y048") [node name="EnemyModelView" parent="." instance=ExtResource("3_rrwed")] unique_name_in_owner = true -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1.06859, 0) +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.0153018, 0) EnemyLoreInfo = SubResource("Resource_fv5vf") [node name="PlayerDetector" type="Area3D" parent="."] unique_name_in_owner = true -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1.56859, 0) +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.515302, 0) collision_layer = 0 collision_mask = 34 @@ -92,7 +92,7 @@ transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.179932, 0) shape = SubResource("CylinderShape3D_qbmfg") [node name="Components" type="Node3D" parent="."] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1.56859, 0) +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.515302, 0) [node name="PatrolBehavior" parent="Components" instance=ExtResource("5_pvjvo")] unique_name_in_owner = true @@ -111,7 +111,7 @@ avoidance_enabled = true radius = 1.0 [node name="HitSounds" type="Node3D" parent="."] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1.56859, 0) +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.515302, 0) [node name="AbsorbSFX" type="AudioStreamPlayer3D" parent="HitSounds"] unique_name_in_owner = true 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 bf499594b..fcab6fc6e 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 @@ -194,7 +194,7 @@ [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="AudioStream" uid="uid://dl818xjlcm7vu" path="res://src/audio/sfx/ENEMY_FILTH_ATTACK.ogg" id="193_4h5gj"] [ext_resource type="Texture2D" uid="uid://dafpnwkwcukp4" path="res://src/vfx/shadow_test_1.png" id="193_e5pq0"] -[ext_resource type="PackedScene" path="res://src/enemy/TwoAttacksEnemyAnimationTree.tscn" id="193_krqul"] +[ext_resource type="PackedScene" uid="uid://3ax3e5uce27d" path="res://src/enemy/TwoAttacksEnemyAnimationTree.tscn" id="193_krqul"] [ext_resource type="Texture2D" uid="uid://d0q5jru1am4v0" path="res://src/vfx/Enemy/FILTH_BLAST.png" id="194_pyy2h"] [ext_resource type="AnimationNodeStateMachine" uid="uid://co7lshemjrro8" path="res://src/enemy/animation_state_machines/IdleStateMachine.tres" id="194_u5xjp"] [ext_resource type="AnimationNodeStateMachine" uid="uid://cbq8xog50cjjy" path="res://src/enemy/animation_state_machines/PrimaryAttackStateMachine.tres" id="195_5cwnl"] @@ -3307,13 +3307,12 @@ _data = { } [node name="EnemyModelView" type="Node3D"] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, -0.5, 0) script = ExtResource("1_718m1") EnemyLoreInfo = SubResource("Resource_pyy2h") [node name="Sprite3D" type="Sprite3D" parent="."] unique_name_in_owner = true -transform = Transform3D(1.5, 0, 0, 0, 1.5, 0, 0, 0, 1.5, 0, 0.0862446, 0) +transform = Transform3D(1.5, 0, 0, 0, 1.5, 0, 0, 0, 1.5, 0, 0.987674, 0) billboard = 2 shaded = true alpha_cut = 1 @@ -3350,7 +3349,7 @@ texture = ExtResource("193_e5pq0") [node name="Hitbox" type="Area3D" parent="."] unique_name_in_owner = true -transform = Transform3D(-1, 0, -8.74228e-08, 0, 1, 0, 8.74228e-08, 0, -1, -0.152949, 0, 0) +transform = Transform3D(-1, 0, -8.74228e-08, 0, 1, 0, 8.74228e-08, 0, -1, -0.152949, 0.901429, 0) collision_layer = 64 collision_mask = 64 @@ -3371,7 +3370,7 @@ tree_root = SubResource("AnimationNodeStateMachine_e5pq0") advance_expression_base_node = NodePath("..") [node name="attack VFX" type="AnimatedSprite3D" parent="."] -transform = Transform3D(1.5, 0, 0, 0, 1.5, 0, 0, 0, 1.5, -0.0228448, 0.423145, 0) +transform = Transform3D(1.5, 0, 0, 0, 1.5, 0, 0, 0, 1.5, -0.0228448, 1.32457, 0) billboard = 1 render_priority = 101 sprite_frames = SubResource("SpriteFrames_fwra5") @@ -3382,11 +3381,12 @@ libraries = { } [node name="OmniLight3D" type="OmniLight3D" parent="."] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, -0.546972) +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.901429, -0.546972) light_color = Color(0.837456, 0.93601, 0.775258, 1) omni_attenuation = 0.2 [node name="Attack Objects" type="Node3D" parent="."] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.901429, 0) [node name="Projectile1" type="Node3D" parent="Attack Objects"] script = ExtResource("199_4h5gj") @@ -3421,9 +3421,11 @@ libraries = { } [node name="AudioStreamPlayer3D" type="AudioStreamPlayer3D" parent="."] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.901429, 0) bus = &"SFX" [node name="WalkSFX" type="AudioStreamPlayer3D" parent="."] unique_name_in_owner = true +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.901429, 0) autoplay = true bus = &"SFX" diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/04. sara/Sara.tscn b/Zennysoft.Game.Ma/src/enemy/enemy_types/04. sara/Sara.tscn index 76b03f075..4d589d1de 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/04. sara/Sara.tscn +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/04. sara/Sara.tscn @@ -70,6 +70,7 @@ transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1.95329, 0) [node name="EnemyModelView" parent="Visual" instance=ExtResource("4_82s0m")] unique_name_in_owner = true +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0.0108221, -0.896212, 0) [node name="PlayerDetector" type="Area3D" parent="."] unique_name_in_owner = true 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 833151e1a..c803b7a54 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 @@ -162,7 +162,7 @@ [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="AudioStream" uid="uid://b4bseex34nu6c" path="res://src/audio/sfx/ENEMY_APSARA_STRIKE.ogg" id="162_veo2p"] -[ext_resource type="PackedScene" path="res://src/enemy/TwoAttacksEnemyAnimationTree.tscn" id="163_e6etm"] +[ext_resource type="PackedScene" uid="uid://3ax3e5uce27d" path="res://src/enemy/TwoAttacksEnemyAnimationTree.tscn" id="163_e6etm"] [ext_resource type="AudioStream" uid="uid://dnnhfw6cgrca4" path="res://src/audio/sfx/enemy_sara_magic.ogg" id="163_xppqu"] [ext_resource type="AnimationNodeStateMachine" uid="uid://co7lshemjrro8" path="res://src/enemy/animation_state_machines/IdleStateMachine.tres" id="164_fc7i0"] [ext_resource type="Texture2D" uid="uid://cxibdrta6imfb" path="res://src/vfx/Enemy/nega.png" id="164_rrjme"] @@ -1824,12 +1824,11 @@ _data = { } [node name="EnemyModelView" type="Node3D"] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1.31442, 0) script = ExtResource("1_oh25a") [node name="Sprite3D" type="Sprite3D" parent="."] unique_name_in_owner = true -transform = Transform3D(1.5, 0, 0, 0, 1.5, 0, 0, 0, 1.5, 0, -1.31336, 0) +transform = Transform3D(1.5, 0, 0, 0, 1.5, 0, 0, 0, 1.5, 0, 0.88609, 0) pixel_size = 0.005 billboard = 1 shaded = true @@ -1859,7 +1858,7 @@ animation = &"idle_front" [node name="Hitbox" type="Area3D" parent="."] unique_name_in_owner = true -transform = Transform3D(-1, 0, -8.74228e-08, 0, 1, 0, 8.74228e-08, 0, -1, -0.152949, 0, 0) +transform = Transform3D(-1, 0, -8.74228e-08, 0, 1, 0, 8.74228e-08, 0, -1, -0.152949, 0.72758, 0) collision_layer = 64 collision_mask = 64 @@ -1880,7 +1879,7 @@ tree_root = SubResource("AnimationNodeStateMachine_rasxg") advance_expression_base_node = NodePath("..") [node name="AnimatedSprite3D" type="AnimatedSprite3D" parent="."] -transform = Transform3D(0.6, 0, 0, 0, 0.6, 0, 0, 0, 0.6, -0.0335064, -0.0871174, -0.40289) +transform = Transform3D(0.6, 0, 0, 0, 0.6, 0, 0, 0, 0.6, -0.0335064, 0.640463, -0.40289) modulate = Color(1, 1, 1, 0.72549) billboard = 2 texture_filter = 1 @@ -1893,9 +1892,11 @@ libraries = { [node name="Attacks" type="AudioStreamPlayer3D" parent="."] process_mode = 3 +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.72758, 0) bus = &"SFX" [node name="WalkSFX" type="AudioStreamPlayer3D" parent="."] unique_name_in_owner = true +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.72758, 0) autoplay = true bus = &"SFX" diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/05. ballos/Ballos.tscn b/Zennysoft.Game.Ma/src/enemy/enemy_types/05. ballos/Ballos.tscn index edae84339..b1c6483fc 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/05. ballos/Ballos.tscn +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/05. ballos/Ballos.tscn @@ -1,7 +1,7 @@ [gd_scene load_steps=13 format=3 uid="uid://da32nr35mpqrn"] [ext_resource type="Script" uid="uid://dwfxs5yrf7i3v" path="res://src/enemy/enemy_types/05. ballos/Ballos.cs" id="1_iy2fp"] -[ext_resource type="PackedScene" path="res://src/enemy/enemy_types/05. ballos/BallosModelView.tscn" id="2_v2urn"] +[ext_resource type="PackedScene" uid="uid://dppmk4nx2le20" path="res://src/enemy/enemy_types/05. ballos/BallosModelView.tscn" id="2_v2urn"] [ext_resource type="PackedScene" uid="uid://cn4fv2gv6raql" path="res://src/enemy/behaviors/PatrolBehavior.tscn" id="4_bjnvx"] [ext_resource type="PackedScene" uid="uid://cve5oouhowtff" path="res://src/enemy/behaviors/FollowBehavior.tscn" id="5_55sdf"] [ext_resource type="PackedScene" uid="uid://cmhem5xknjsvc" path="res://src/enemy/behaviors/EngagePlayerBehavior.tscn" id="6_2xj0s"] @@ -62,7 +62,7 @@ shape = SubResource("SphereShape3D_8vcnq") [node name="EnemyModelView" parent="." instance=ExtResource("2_v2urn")] unique_name_in_owner = true -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 2, 0) +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.00777042, 0) [node name="PlayerDetector" type="Area3D" parent="."] unique_name_in_owner = true 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 3901dda19..34a528888 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 @@ -1472,8 +1472,9 @@ script = ExtResource("1_ueqp5") [node name="Sprite3D" type="Sprite3D" parent="."] unique_name_in_owner = true -transform = Transform3D(1.5, 0, 0, 0, 1.5, 0, 0, 0, 1.5, 0, 0.0275542, 0) +transform = Transform3D(1.5, 0, 0, 0, 1.5, 0, 0, 0, 1.5, 0, 1.89058, 0) billboard = 2 +shaded = true alpha_cut = 1 texture_filter = 0 render_priority = 100 @@ -1499,7 +1500,7 @@ offset = Vector2(400, 400) [node name="Hitbox" type="Area3D" parent="."] unique_name_in_owner = true -transform = Transform3D(-1, 0, -8.74228e-08, 0, 1, 0, 8.74228e-08, 0, -1, -0.152949, 0, 0) +transform = Transform3D(-1, 0, -8.74228e-08, 0, 1, 0, 8.74228e-08, 0, -1, -0.152949, 1.86303, 0) collision_layer = 64 collision_mask = 64 @@ -1522,7 +1523,7 @@ advance_expression_base_node = NodePath("..") anim_player = NodePath("../AnimationPlayer") [node name="AnimatedSprite3D" type="AnimatedSprite3D" parent="."] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -0.101011, 1.67041, 0) +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -0.101011, 3.53344, 0) sprite_frames = SubResource("SpriteFrames_ikty0") [node name="AnimationPlayer" type="AnimationPlayer" parent="AnimatedSprite3D"] @@ -1532,12 +1533,13 @@ libraries = { [node name="WalkSFX" type="AudioStreamPlayer3D" parent="."] unique_name_in_owner = true +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1.86303, 0) stream = ExtResource("94_i3hgg") autoplay = true bus = &"SFX" [node name="Shadow" type="Sprite3D" parent="."] -transform = Transform3D(1.265, 0, 0, 0, -5.52949e-08, 1.265, 0, -1.265, -5.52949e-08, 0.00393164, -1.88689, 0.0077811) +transform = Transform3D(1.265, 0, 0, 0, -5.52949e-08, 1.265, 0, -1.265, -5.52949e-08, 0.00393164, -0.0238594, 0.0077811) transparency = 0.1 cast_shadow = 0 modulate = Color(1, 1, 1, 0.591) diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/Chariot.tscn b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/Chariot.tscn index 615e41d6d..98e456004 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/Chariot.tscn +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/Chariot.tscn @@ -1,7 +1,7 @@ [gd_scene load_steps=14 format=3 uid="uid://cd12cj1g37bn4"] [ext_resource type="Script" uid="uid://djx5x5bhkku85" path="res://src/enemy/enemy_types/06. chariot/Chariot.cs" id="1_q1q0f"] -[ext_resource type="PackedScene" path="res://src/enemy/enemy_types/06. chariot/ChariotModelView.tscn" id="3_q1q0f"] +[ext_resource type="PackedScene" uid="uid://dwgq2bxolnx8l" path="res://src/enemy/enemy_types/06. chariot/ChariotModelView.tscn" id="3_q1q0f"] [ext_resource type="PackedScene" uid="uid://cn4fv2gv6raql" path="res://src/enemy/behaviors/PatrolBehavior.tscn" id="4_ee8v4"] [ext_resource type="PackedScene" uid="uid://cve5oouhowtff" path="res://src/enemy/behaviors/FollowBehavior.tscn" id="5_uv8in"] [ext_resource type="AudioStream" uid="uid://ba8xendacec6" path="res://src/audio/sfx/item_kyuu_layer_2.ogg" id="6_582pa"] @@ -11,7 +11,8 @@ [ext_resource type="AudioStream" uid="uid://daye7334d7rfe" path="res://src/audio/sfx/ENEMY_CHARIOT_DEATH.ogg" id="9_cfqmf"] [sub_resource type="CapsuleShape3D" id="CapsuleShape3D_cwfph"] -radius = 1.0 +radius = 1.67281 +height = 3.34563 [sub_resource type="CylinderShape3D" id="CylinderShape3D_jbgmx"] height = 5.0 @@ -21,7 +22,7 @@ radius = 1.0 radius = 1.20703 [sub_resource type="CylinderShape3D" id="CylinderShape3D_582pa"] -radius = 2.0 +radius = 2.34863 [node name="Chariot" type="CharacterBody3D"] process_mode = 1 @@ -61,7 +62,7 @@ shape = SubResource("SphereShape3D_lqifn") [node name="EnemyModelView" parent="." instance=ExtResource("3_q1q0f")] unique_name_in_owner = true -transform = Transform3D(0.999848, 0, 0.0174524, 0, 1, 0, -0.0174524, 0, 0.999848, 0, 1.40414, 0) +transform = Transform3D(0.999848, 0, 0.0174524, 0, 1, 0, -0.0174524, 0, 0.999848, 0, 0.0547004, 0) [node name="PlayerDetector" type="Area3D" parent="."] unique_name_in_owner = true diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/ChariotModelView.cs b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/ChariotModelView.cs index f0d05341a..7cbf9934d 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/ChariotModelView.cs +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/ChariotModelView.cs @@ -14,8 +14,8 @@ public partial class ChariotModelView : EnemyModelView2D, IEnemyModelView public override void PlayActivateAnimation() { - _stateMachine.Travel(_activateName); - var scrollStateMachine = (AnimationNodeStateMachinePlayback)ScrollAnimationTree.Get(_parametersPlayback); - scrollStateMachine.Travel(_activateName); + _stateMachine.Travel(_activateName); + var scrollStateMachine = (AnimationNodeStateMachinePlayback)ScrollAnimationTree.Get(_parametersPlayback); + scrollStateMachine.Travel(_activateName); } } 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 1337178bb..363c984bd 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=1244 format=3 uid="uid://dwgq2bxolnx8l"] +[gd_scene load_steps=1226 format=3 uid="uid://dwgq2bxolnx8l"] [ext_resource type="Script" uid="uid://ckxqmb4tu4rml" path="res://src/enemy/enemy_types/06. chariot/ChariotModelView.cs" id="1_behrq"] [ext_resource type="Texture2D" uid="uid://2gwychj1wbtx" path="res://src/enemy/enemy_types/06. chariot/animations/APPEAR/F/0051.png" id="2_1844k"] @@ -974,14 +974,163 @@ [ext_resource type="Texture2D" uid="uid://cv83xpm5cd8mv" path="res://src/vfx/Enemy/chariot_blast.png" id="972_5duvr"] [ext_resource type="AnimationNodeStateMachine" uid="uid://bh0hsg4in5bkt" path="res://src/enemy/animation_state_machines/ActivatedIdleStateMachine.tres" id="972_86buh"] [ext_resource type="AnimationNodeStateMachine" uid="uid://co7lshemjrro8" path="res://src/enemy/animation_state_machines/IdleStateMachine.tres" id="973_p70s4"] -[ext_resource type="Texture2D" uid="uid://clgh7u21s1fw4" path="res://src/vfx/Enemy/chariot_attack_2.png" id="973_t2646"] [ext_resource type="AnimationNodeStateMachine" uid="uid://cbq8xog50cjjy" path="res://src/enemy/animation_state_machines/PrimaryAttackStateMachine.tres" id="974_jrkfh"] [ext_resource type="AnimationNodeStateMachine" uid="uid://clybvwx3itfeo" path="res://src/enemy/animation_state_machines/SecondaryAttackStateMachine.tres" id="975_mud4o"] [ext_resource type="AnimationNodeStateMachine" uid="uid://cy2ngl55c0rws" path="res://src/enemy/animation_state_machines/WalkingStateMachine.tres" id="976_vxyya"] [ext_resource type="Script" uid="uid://cqm6u7qa8japr" path="res://src/system/Projectile.cs" id="978_jrkfh"] +[ext_resource type="Texture2D" uid="uid://deh34asaj6vv8" path="res://src/vfx/Enemy/chariot_attack2/chariot_attack2_000.png" id="978_oxik5"] +[ext_resource type="Texture2D" uid="uid://djuytlp7ci3wd" path="res://src/vfx/Enemy/chariot_attack2/chariot_attack2_001.png" id="979_gd38f"] [ext_resource type="Script" uid="uid://ctshiyffvt4y5" path="res://src/system/AttackDataResource.cs" id="979_mud4o"] -[ext_resource type="Texture2D" uid="uid://f32ew15v8v30" path="res://src/vfx/Enemy/chariot_projectile.png" id="979_p70s4"] +[ext_resource type="Texture2D" uid="uid://cbcrd126h6dni" path="res://src/vfx/Enemy/chariot_attack2/chariot_attack2_002.png" id="980_h6y4t"] [ext_resource type="Texture2D" uid="uid://dafpnwkwcukp4" path="res://src/vfx/shadow_test_1.png" id="980_jrkfh"] +[ext_resource type="Texture2D" uid="uid://bjlv5d7xgxq45" path="res://src/vfx/Enemy/chariot_projectile/tile000.png" id="981_a5ap1"] +[ext_resource type="Texture2D" uid="uid://ifn1p0hxal20" path="res://src/vfx/Enemy/chariot_attack2/chariot_attack2_003.png" id="981_mslum"] +[ext_resource type="Texture2D" uid="uid://hwr2gf64wiao" path="res://src/vfx/Enemy/chariot_attack2/chariot_attack2_004.png" id="982_cxmvt"] +[ext_resource type="Texture2D" uid="uid://btoglwx2farou" path="res://src/vfx/Enemy/chariot_projectile/tile001.png" id="982_hs2st"] +[ext_resource type="Texture2D" uid="uid://byllvvylyfyjw" path="res://src/vfx/Enemy/chariot_projectile/tile002.png" id="983_ar04x"] +[ext_resource type="Texture2D" uid="uid://c6j2nrst08ijp" path="res://src/vfx/Enemy/chariot_attack2/chariot_attack2_005.png" id="983_e1m87"] +[ext_resource type="Texture2D" uid="uid://dh3x062wk5qca" path="res://src/vfx/Enemy/chariot_projectile/tile003.png" id="984_p1bd3"] +[ext_resource type="Texture2D" uid="uid://cgt80eps0otms" path="res://src/vfx/Enemy/chariot_attack2/chariot_attack2_006.png" id="984_q511f"] +[ext_resource type="Texture2D" uid="uid://dge7nid4tosyn" path="res://src/vfx/Enemy/chariot_attack2/chariot_attack2_007.png" id="985_417nx"] +[ext_resource type="Texture2D" uid="uid://b1mm6jyk15jle" path="res://src/vfx/Enemy/chariot_projectile/tile004.png" id="985_v4lml"] +[ext_resource type="Texture2D" uid="uid://dmuv6evj6xy5v" path="res://src/vfx/Enemy/chariot_attack2/chariot_attack2_008.png" id="986_lcnyh"] +[ext_resource type="Texture2D" uid="uid://brydcb14qg324" path="res://src/vfx/Enemy/chariot_projectile/tile005.png" id="986_m6bpv"] +[ext_resource type="Texture2D" uid="uid://cmr605aikfdgn" path="res://src/vfx/Enemy/chariot_attack2/chariot_attack2_009.png" id="987_mqgjo"] +[ext_resource type="Texture2D" uid="uid://ce1fw1mxegifb" path="res://src/vfx/Enemy/chariot_projectile/tile006.png" id="987_w8cyf"] +[ext_resource type="Texture2D" uid="uid://b2se6n7xmuixi" path="res://src/vfx/Enemy/chariot_projectile/tile007.png" id="988_deod5"] +[ext_resource type="Texture2D" uid="uid://dr1jl30klhdlo" path="res://src/vfx/Enemy/chariot_attack2/chariot_attack2_010.png" id="988_q3kbo"] +[ext_resource type="Texture2D" uid="uid://1b7gyx7oerkp" path="res://src/vfx/Enemy/chariot_projectile/tile008.png" id="989_lhgeh"] +[ext_resource type="Texture2D" uid="uid://b1w6k0gqqigsy" path="res://src/vfx/Enemy/chariot_attack2/chariot_attack2_011.png" id="989_rbn7c"] +[ext_resource type="Texture2D" uid="uid://b6l6qpakndsw7" path="res://src/vfx/Enemy/chariot_attack2/chariot_attack2_012.png" id="990_w7err"] +[ext_resource type="Texture2D" uid="uid://dalsyo1wqamyo" path="res://src/vfx/Enemy/chariot_projectile/tile009.png" id="990_wmwx3"] +[ext_resource type="Texture2D" uid="uid://d1jwiow6k4vjn" path="res://src/vfx/Enemy/chariot_attack2/chariot_attack2_013.png" id="991_1twjx"] +[ext_resource type="Texture2D" uid="uid://da3sd5fjv6qfd" path="res://src/vfx/Enemy/chariot_projectile/tile010.png" id="991_5b1s1"] +[ext_resource type="Texture2D" uid="uid://bekp4xamkvdi" path="res://src/vfx/Enemy/chariot_attack2/chariot_attack2_014.png" id="992_ek71i"] +[ext_resource type="Texture2D" uid="uid://1xsogqc35oii" path="res://src/vfx/Enemy/chariot_projectile/tile011.png" id="992_i4gi3"] +[ext_resource type="Texture2D" uid="uid://cpvafm8pkt2js" path="res://src/vfx/Enemy/chariot_attack2/chariot_attack2_015.png" id="993_c2ofx"] +[ext_resource type="Texture2D" uid="uid://bwcnngjv0muta" path="res://src/vfx/Enemy/chariot_projectile/tile012.png" id="993_ddkmq"] +[ext_resource type="Texture2D" uid="uid://cnrwyo65vi5ln" path="res://src/vfx/Enemy/chariot_attack2/chariot_attack2_016.png" id="994_84u33"] +[ext_resource type="Texture2D" uid="uid://c3tu6s1qsppn5" path="res://src/vfx/Enemy/chariot_projectile/tile013.png" id="994_x0bam"] +[ext_resource type="Texture2D" uid="uid://jauojnk6d0bq" path="res://src/vfx/Enemy/chariot_projectile/tile014.png" id="995_gkwdb"] +[ext_resource type="Texture2D" uid="uid://b8keseswx4hc5" path="res://src/vfx/Enemy/chariot_attack2/chariot_attack2_017.png" id="995_hpdih"] +[ext_resource type="Texture2D" uid="uid://e0jaojem4bce" path="res://src/vfx/Enemy/chariot_projectile/tile015.png" id="996_87eij"] +[ext_resource type="Texture2D" uid="uid://cg8eksa53rd20" path="res://src/vfx/Enemy/chariot_attack2/chariot_attack2_018.png" id="996_la6wx"] +[ext_resource type="Texture2D" uid="uid://bybquttihoyk8" path="res://src/vfx/Enemy/chariot_projectile/tile016.png" id="997_5p0ca"] +[ext_resource type="Texture2D" uid="uid://baoe71nx85q0s" path="res://src/vfx/Enemy/chariot_attack2/chariot_attack2_019.png" id="997_h0b60"] +[ext_resource type="Texture2D" uid="uid://bx8bfxldio1y7" path="res://src/vfx/Enemy/chariot_attack2/chariot_attack2_020.png" id="998_03pvu"] +[ext_resource type="Texture2D" uid="uid://dnlb080whhvn8" path="res://src/vfx/Enemy/chariot_projectile/tile017.png" id="998_emai5"] +[ext_resource type="Texture2D" uid="uid://cupsoqmnrahid" path="res://src/vfx/Enemy/chariot_attack2/chariot_attack2_021.png" id="999_5coqt"] +[ext_resource type="Texture2D" uid="uid://bsgicrtlb8ppq" path="res://src/vfx/Enemy/chariot_projectile/tile018.png" id="999_dvngh"] +[ext_resource type="Texture2D" uid="uid://dk1isdv215iso" path="res://src/vfx/Enemy/chariot_attack2/chariot_attack2_022.png" id="1000_fetm6"] +[ext_resource type="Texture2D" uid="uid://d26pwu65w6neo" path="res://src/vfx/Enemy/chariot_projectile/tile019.png" id="1000_wwv0x"] +[ext_resource type="Texture2D" uid="uid://c6p60beey2lnv" path="res://src/vfx/Enemy/chariot_attack2/chariot_attack2_023.png" id="1001_8aul7"] +[ext_resource type="Texture2D" uid="uid://dw6417lafiga1" path="res://src/vfx/Enemy/chariot_projectile/tile020.png" id="1001_sg6i3"] +[ext_resource type="Texture2D" uid="uid://bo425d6fk8f37" path="res://src/vfx/Enemy/chariot_projectile/tile021.png" id="1002_buowv"] +[ext_resource type="Texture2D" uid="uid://dpafu0ayxxv1r" path="res://src/vfx/Enemy/chariot_attack2/chariot_attack2_024.png" id="1002_yyon1"] +[ext_resource type="Texture2D" uid="uid://c86fo3ri6mojm" path="res://src/vfx/Enemy/chariot_attack2/chariot_attack2_025.png" id="1003_87fyl"] +[ext_resource type="Texture2D" uid="uid://cnoi2gfqtws2r" path="res://src/vfx/Enemy/chariot_projectile/tile022.png" id="1003_fninf"] +[ext_resource type="Texture2D" uid="uid://d1dfg4533npro" path="res://src/vfx/Enemy/chariot_attack2/chariot_attack2_026.png" id="1004_k0840"] +[ext_resource type="Texture2D" uid="uid://b17s637i5l8y" path="res://src/vfx/Enemy/chariot_projectile/tile023.png" id="1004_ox5ei"] +[ext_resource type="Texture2D" uid="uid://fla4uk4jlg3u" path="res://src/vfx/Enemy/chariot_projectile/tile024.png" id="1005_dcci0"] +[ext_resource type="Texture2D" uid="uid://c6v31jvniam1p" path="res://src/vfx/Enemy/chariot_attack2/chariot_attack2_027.png" id="1005_rbt0u"] +[ext_resource type="Texture2D" uid="uid://blxtlqpvc5d1s" path="res://src/vfx/Enemy/chariot_projectile/tile025.png" id="1006_00jqq"] +[ext_resource type="Texture2D" uid="uid://cyg6th68jxohv" path="res://src/vfx/Enemy/chariot_attack2/chariot_attack2_028.png" id="1006_e3tel"] +[ext_resource type="Texture2D" uid="uid://c062e767h5b84" path="res://src/vfx/Enemy/chariot_attack2/chariot_attack2_029.png" id="1007_alx7p"] +[ext_resource type="Texture2D" uid="uid://hqnh4bpvef7f" path="res://src/vfx/Enemy/chariot_projectile/tile026.png" id="1007_jh311"] +[ext_resource type="Texture2D" uid="uid://bqcuhbkk6pppr" path="res://src/vfx/Enemy/chariot_attack2/chariot_attack2_030.png" id="1008_877wc"] +[ext_resource type="Texture2D" uid="uid://svmuqklsmh5u" path="res://src/vfx/Enemy/chariot_projectile/tile027.png" id="1008_l00n2"] +[ext_resource type="Texture2D" uid="uid://ciyqjm4am5nqh" path="res://src/vfx/Enemy/chariot_projectile/tile028.png" id="1009_fn7wo"] +[ext_resource type="Texture2D" uid="uid://duteh5bdicy8h" path="res://src/vfx/Enemy/chariot_attack2/chariot_attack2_031.png" id="1009_rgikn"] +[ext_resource type="Texture2D" uid="uid://cn5xx07gke26" path="res://src/vfx/Enemy/chariot_projectile/tile029.png" id="1010_4qc2s"] +[ext_resource type="Texture2D" uid="uid://c12edfl503vss" path="res://src/vfx/Enemy/chariot_attack2/chariot_attack2_032.png" id="1010_dtjga"] +[ext_resource type="Texture2D" uid="uid://cxwcr0rxtgqjc" path="res://src/vfx/Enemy/chariot_attack2/chariot_attack2_033.png" id="1011_4csfl"] +[ext_resource type="Texture2D" uid="uid://ch475ufimtabf" path="res://src/vfx/Enemy/chariot_projectile/tile030.png" id="1011_25hpt"] +[ext_resource type="Texture2D" uid="uid://7oyjev61x755" path="res://src/vfx/Enemy/chariot_projectile/tile031.png" id="1012_evonl"] +[ext_resource type="Texture2D" uid="uid://cagsq65w15lsh" path="res://src/vfx/Enemy/chariot_attack2/chariot_attack2_034.png" id="1012_xjwck"] +[ext_resource type="Texture2D" uid="uid://c81f1jej357wp" path="res://src/vfx/Enemy/chariot_attack2/chariot_attack2_035.png" id="1013_3npn4"] +[ext_resource type="Texture2D" uid="uid://clo64aev4hfre" path="res://src/vfx/Enemy/chariot_projectile/tile032.png" id="1013_tw6uk"] +[ext_resource type="Texture2D" uid="uid://dor7lnr7ycxge" path="res://src/vfx/Enemy/chariot_projectile/tile033.png" id="1014_jqk27"] +[ext_resource type="Texture2D" uid="uid://c32gsoy5iognq" path="res://src/vfx/Enemy/chariot_attack2/chariot_attack2_036.png" id="1014_mfthy"] +[ext_resource type="Texture2D" uid="uid://bbnv4vfih38k7" path="res://src/vfx/Enemy/chariot_projectile/tile034.png" id="1015_cdubj"] +[ext_resource type="Texture2D" uid="uid://cn26uod48smhh" path="res://src/vfx/Enemy/chariot_attack2/chariot_attack2_037.png" id="1015_ockvq"] +[ext_resource type="Texture2D" uid="uid://da68epxe8ahbj" path="res://src/vfx/Enemy/chariot_projectile/tile035.png" id="1016_8jnnk"] +[ext_resource type="Texture2D" uid="uid://du6eirk28ub31" path="res://src/vfx/Enemy/chariot_attack2/chariot_attack2_038.png" id="1016_cctkk"] +[ext_resource type="Texture2D" uid="uid://c4yawfsjtrunv" path="res://src/vfx/Enemy/chariot_attack2/chariot_attack2_039.png" id="1017_nbkl1"] +[ext_resource type="Texture2D" uid="uid://b6fc4wqvgfocr" path="res://src/vfx/Enemy/chariot_projectile/tile036.png" id="1017_nriup"] +[ext_resource type="Texture2D" uid="uid://b3oj0qieqq6mv" path="res://src/vfx/Enemy/chariot_attack2/chariot_attack2_040.png" id="1018_3pj3s"] +[ext_resource type="Texture2D" uid="uid://bntjcdrcx0owt" path="res://src/vfx/Enemy/chariot_projectile/tile037.png" id="1018_7qxfq"] +[ext_resource type="Texture2D" uid="uid://cv51osffuj6r2" path="res://src/vfx/Enemy/chariot_projectile/tile038.png" id="1019_2jl62"] +[ext_resource type="Texture2D" uid="uid://bwobe4cu0tvvu" path="res://src/vfx/Enemy/chariot_attack2/chariot_attack2_041.png" id="1019_45ohg"] +[ext_resource type="Texture2D" uid="uid://bd6jdfmhwe6ji" path="res://src/vfx/Enemy/chariot_projectile/tile039.png" id="1020_rb45e"] +[ext_resource type="Texture2D" uid="uid://hnchywtdulcl" path="res://src/vfx/Enemy/chariot_attack2/chariot_attack2_042.png" id="1020_tlv7h"] +[ext_resource type="Texture2D" uid="uid://dkuco5r4ub3f2" path="res://src/vfx/Enemy/chariot_projectile/tile040.png" id="1021_cfs7u"] +[ext_resource type="Texture2D" uid="uid://8ka6j158mprc" path="res://src/vfx/Enemy/chariot_attack2/chariot_attack2_043.png" id="1021_lb4y5"] +[ext_resource type="Texture2D" uid="uid://bcdcbosfegpoy" path="res://src/vfx/Enemy/chariot_attack2/chariot_attack2_044.png" id="1022_nbfdc"] +[ext_resource type="Texture2D" uid="uid://duyma48l7sv3d" path="res://src/vfx/Enemy/chariot_projectile/tile041.png" id="1022_ocg5n"] +[ext_resource type="Texture2D" uid="uid://bn4vcj33t6jlv" path="res://src/vfx/Enemy/chariot_projectile/tile042.png" id="1023_a7r78"] +[ext_resource type="Texture2D" uid="uid://cj61ol3ykcdj" path="res://src/vfx/Enemy/chariot_attack2/chariot_attack2_045.png" id="1023_fetx3"] +[ext_resource type="Texture2D" uid="uid://b6wj4myvqcg6o" path="res://src/vfx/Enemy/chariot_projectile/tile043.png" id="1024_1nfcc"] +[ext_resource type="Texture2D" uid="uid://chxrsg7clc8dm" path="res://src/vfx/Enemy/chariot_attack2/chariot_attack2_046.png" id="1024_1yw7k"] +[ext_resource type="Texture2D" uid="uid://cvcorcymshpw5" path="res://src/vfx/Enemy/chariot_attack2/chariot_attack2_047.png" id="1025_gtu6e"] +[ext_resource type="Texture2D" uid="uid://bpi06jlqtw0xc" path="res://src/vfx/Enemy/chariot_projectile/tile044.png" id="1025_v5c43"] +[ext_resource type="Texture2D" uid="uid://cinycrwdsxdc1" path="res://src/vfx/Enemy/chariot_projectile/tile045.png" id="1026_4yu67"] +[ext_resource type="Texture2D" uid="uid://brnncmkqd62hs" path="res://src/vfx/Enemy/chariot_attack2/chariot_attack2_048.png" id="1026_f7dds"] +[ext_resource type="Texture2D" uid="uid://c2ssjf806i4ng" path="res://src/vfx/Enemy/chariot_attack2/chariot_attack2_049.png" id="1027_1icxf"] +[ext_resource type="Texture2D" uid="uid://cvkjnua84g1hn" path="res://src/vfx/Enemy/chariot_projectile/tile046.png" id="1027_ogljb"] +[ext_resource type="Texture2D" uid="uid://cc5mq5tjahs2f" path="res://src/vfx/Enemy/chariot_attack2/chariot_attack2_050.png" id="1028_4hovg"] +[ext_resource type="Texture2D" uid="uid://qujpwp5tkl75" path="res://src/vfx/Enemy/chariot_projectile/tile047.png" id="1028_11ag4"] +[ext_resource type="Texture2D" uid="uid://c4lw2n8csib4v" path="res://src/vfx/Enemy/chariot_attack2/chariot_attack2_051.png" id="1029_2uup0"] +[ext_resource type="Texture2D" uid="uid://bugc6sy7vkqkk" path="res://src/vfx/Enemy/chariot_projectile/tile048.png" id="1029_ntfa6"] +[ext_resource type="Texture2D" uid="uid://d0ugkmj2ab7y3" path="res://src/vfx/Enemy/chariot_projectile/tile049.png" id="1030_bdxy3"] +[ext_resource type="Texture2D" uid="uid://00ldpp5rbp7w" path="res://src/vfx/Enemy/chariot_attack2/chariot_attack2_052.png" id="1030_d6g0r"] +[ext_resource type="Texture2D" uid="uid://d4jafgu6o3p8s" path="res://src/vfx/Enemy/chariot_attack2/chariot_attack2_053.png" id="1031_gk11s"] +[ext_resource type="Texture2D" uid="uid://cmpv712qw5bof" path="res://src/vfx/Enemy/chariot_projectile/tile050.png" id="1031_mflhv"] +[ext_resource type="Texture2D" uid="uid://brwkg5i3kcwdc" path="res://src/vfx/Enemy/chariot_projectile/tile051.png" id="1032_liadx"] +[ext_resource type="Texture2D" uid="uid://bgs173fh84nsh" path="res://src/vfx/Enemy/chariot_attack2/chariot_attack2_054.png" id="1032_nq8o1"] +[ext_resource type="Texture2D" uid="uid://ugu458cmaljq" path="res://src/vfx/Enemy/chariot_projectile/tile052.png" id="1033_it5ph"] +[ext_resource type="Texture2D" uid="uid://ubfpvaqsla46" path="res://src/vfx/Enemy/chariot_attack2/chariot_attack2_055.png" id="1033_tke7j"] +[ext_resource type="Texture2D" uid="uid://kidaj31jo4h8" path="res://src/vfx/Enemy/chariot_attack2/chariot_attack2_056.png" id="1034_b3hok"] +[ext_resource type="Texture2D" uid="uid://wqfborvguw3t" path="res://src/vfx/Enemy/chariot_projectile/tile053.png" id="1034_quson"] +[ext_resource type="Texture2D" uid="uid://nakvuckfntja" path="res://src/vfx/Enemy/chariot_projectile/tile054.png" id="1035_geoiw"] +[ext_resource type="Texture2D" uid="uid://yepr30kjd87g" path="res://src/vfx/Enemy/chariot_attack2/chariot_attack2_057.png" id="1035_jlxpo"] +[ext_resource type="Texture2D" uid="uid://dhff7a6lp1oh4" path="res://src/vfx/Enemy/chariot_attack2/chariot_attack2_058.png" id="1036_8xt1b"] +[ext_resource type="Texture2D" uid="uid://5i1bby5e0ml5" path="res://src/vfx/Enemy/chariot_projectile/tile055.png" id="1036_mufyb"] +[ext_resource type="Texture2D" uid="uid://dbbhwjl4omwoi" path="res://src/vfx/Enemy/chariot_projectile/tile056.png" id="1037_i5j6d"] +[ext_resource type="Texture2D" uid="uid://wc2mylj4wavj" path="res://src/vfx/Enemy/chariot_attack2/chariot_attack2_059.png" id="1037_qtg7y"] +[ext_resource type="Texture2D" uid="uid://bqfomtpvqg5n8" path="res://src/vfx/Enemy/chariot_projectile/tile057.png" id="1038_qj8xu"] +[ext_resource type="Texture2D" uid="uid://gbm56qlakq0v" path="res://src/vfx/Enemy/chariot_attack2/chariot_attack2_060.png" id="1038_r88a7"] +[ext_resource type="Texture2D" uid="uid://bh0wihthstpyf" path="res://src/vfx/Enemy/chariot_attack2/chariot_attack2_061.png" id="1039_1tqkg"] +[ext_resource type="Texture2D" uid="uid://druykclowlb6c" path="res://src/vfx/Enemy/chariot_projectile/tile058.png" id="1039_3n6tb"] +[ext_resource type="Texture2D" uid="uid://b8hem6e15j0ph" path="res://src/vfx/Enemy/chariot_projectile/tile059.png" id="1040_1l44s"] +[ext_resource type="Texture2D" uid="uid://c2dc0a1x2fkd" path="res://src/vfx/Enemy/chariot_attack2/chariot_attack2_062.png" id="1040_mdrnt"] +[ext_resource type="Texture2D" uid="uid://bc7wbfpve6wjl" path="res://src/vfx/Enemy/chariot_projectile/tile060.png" id="1041_tdhdw"] +[ext_resource type="Texture2D" uid="uid://b463bcj4ea2bn" path="res://src/vfx/Enemy/chariot_attack2/chariot_attack2_063.png" id="1041_voe6l"] +[ext_resource type="Texture2D" uid="uid://c3vrosjn5rl4x" path="res://src/vfx/Enemy/chariot_projectile/tile061.png" id="1042_8uix1"] +[ext_resource type="Texture2D" uid="uid://bxy1vdsfud81d" path="res://src/vfx/Enemy/chariot_attack2/chariot_attack2_064.png" id="1042_22avq"] +[ext_resource type="Texture2D" uid="uid://cxacvaik680s6" path="res://src/vfx/Enemy/chariot_attack2/chariot_attack2_065.png" id="1043_72p3c"] +[ext_resource type="Texture2D" uid="uid://bttnlqxhls2qg" path="res://src/vfx/Enemy/chariot_projectile/tile062.png" id="1043_326pe"] +[ext_resource type="Texture2D" uid="uid://dye5yxpkophkx" path="res://src/vfx/Enemy/chariot_projectile/tile063.png" id="1044_sukco"] +[ext_resource type="Texture2D" uid="uid://bmprkwh62i0ol" path="res://src/vfx/Enemy/chariot_attack2/chariot_attack2_066.png" id="1044_yw5v6"] +[ext_resource type="Texture2D" uid="uid://btapsrr02b4nt" path="res://src/vfx/Enemy/chariot_projectile/tile064.png" id="1045_c83ym"] +[ext_resource type="Texture2D" uid="uid://din6vqw0yrv4r" path="res://src/vfx/Enemy/chariot_attack2/chariot_attack2_067.png" id="1045_qefui"] +[ext_resource type="Texture2D" uid="uid://b5t07ab4ihlrb" path="res://src/vfx/Enemy/chariot_projectile/tile065.png" id="1046_0e8dy"] +[ext_resource type="Texture2D" uid="uid://df4dev1qmridn" path="res://src/vfx/Enemy/chariot_attack2/chariot_attack2_068.png" id="1046_miagd"] +[ext_resource type="Texture2D" uid="uid://ft8n64fc6bd2" path="res://src/vfx/Enemy/chariot_projectile/tile066.png" id="1047_bhgth"] +[ext_resource type="Texture2D" uid="uid://b5ret4mhjtxpy" path="res://src/vfx/Enemy/chariot_attack2/chariot_attack2_069.png" id="1047_htv70"] +[ext_resource type="Texture2D" uid="uid://bdgh3is0vbtq3" path="res://src/vfx/Enemy/chariot_projectile/tile067.png" id="1048_214ut"] +[ext_resource type="Texture2D" uid="uid://p8e077wrtrel" path="res://src/vfx/Enemy/chariot_projectile/tile068.png" id="1049_t11um"] +[ext_resource type="Texture2D" uid="uid://cr4s0bg4clq0g" path="res://src/vfx/Enemy/chariot_projectile/tile069.png" id="1050_oxik5"] +[ext_resource type="Texture2D" uid="uid://wy6r8cqa6pou" path="res://src/vfx/Enemy/chariot_projectile/tile070.png" id="1051_gd38f"] +[ext_resource type="Texture2D" uid="uid://crlvlwaun1ma8" path="res://src/vfx/Enemy/chariot_projectile/tile071.png" id="1052_h6y4t"] +[ext_resource type="Texture2D" uid="uid://jen2dfhpvpdv" path="res://src/vfx/Enemy/chariot_projectile/tile072.png" id="1053_mslum"] +[ext_resource type="Texture2D" uid="uid://do3dym108b1fm" path="res://src/vfx/Enemy/chariot_projectile/tile073.png" id="1054_cxmvt"] +[ext_resource type="Texture2D" uid="uid://brf3tc47474vh" path="res://src/vfx/Enemy/chariot_projectile/tile074.png" id="1055_e1m87"] +[ext_resource type="Texture2D" uid="uid://b4eb43ikt3c4i" path="res://src/vfx/Enemy/chariot_projectile/tile075.png" id="1056_q511f"] +[ext_resource type="Texture2D" uid="uid://soyexl43ekol" path="res://src/vfx/Enemy/chariot_projectile/tile076.png" id="1057_417nx"] +[ext_resource type="Texture2D" uid="uid://dujrrv8d7874v" path="res://src/vfx/Enemy/chariot_projectile/tile077.png" id="1058_lcnyh"] +[ext_resource type="Texture2D" uid="uid://b6w85lejy2w8l" path="res://src/vfx/Enemy/chariot_projectile/tile078.png" id="1059_mqgjo"] +[ext_resource type="Texture2D" uid="uid://bg6dakpo6jbr5" path="res://src/vfx/Enemy/chariot_projectile/tile079.png" id="1060_q3kbo"] +[ext_resource type="Texture2D" uid="uid://u6r11foqif60" path="res://src/vfx/Enemy/chariot_projectile/tile080.png" id="1061_rbn7c"] [sub_resource type="Resource" id="Resource_jj0f0"] script = ExtResource("2_vxyya") @@ -4129,102 +4278,6 @@ size = Vector3(1, 0.565, 2) [sub_resource type="Animation" id="Animation_48uqh"] length = 0.001 -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_front"] -} -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("Sprite3D/SubViewportContainer/SubViewport/Lid:animation") -tracks/2/interp = 1 -tracks/2/loop_wrap = true -tracks/2/keys = { -"times": PackedFloat32Array(0), -"transitions": PackedFloat32Array(1), -"update": 1, -"values": [&"front"] -} -tracks/3/type = "value" -tracks/3/imported = false -tracks/3/enabled = true -tracks/3/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/Lid:frame") -tracks/3/interp = 1 -tracks/3/loop_wrap = true -tracks/3/keys = { -"times": PackedFloat32Array(0), -"transitions": PackedFloat32Array(1), -"update": 1, -"values": [0] -} -tracks/4/type = "value" -tracks/4/imported = false -tracks/4/enabled = true -tracks/4/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/Lid:z_index") -tracks/4/interp = 1 -tracks/4/loop_wrap = true -tracks/4/keys = { -"times": PackedFloat32Array(0), -"transitions": PackedFloat32Array(1), -"update": 1, -"values": [0] -} -tracks/5/type = "value" -tracks/5/imported = false -tracks/5/enabled = true -tracks/5/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/Lid:visible") -tracks/5/interp = 1 -tracks/5/loop_wrap = true -tracks/5/keys = { -"times": PackedFloat32Array(0), -"transitions": PackedFloat32Array(1), -"update": 1, -"values": [false] -} -tracks/6/type = "value" -tracks/6/imported = false -tracks/6/enabled = true -tracks/6/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:z_index") -tracks/6/interp = 1 -tracks/6/loop_wrap = true -tracks/6/keys = { -"times": PackedFloat32Array(0), -"transitions": PackedFloat32Array(1), -"update": 1, -"values": [0] -} -tracks/7/type = "value" -tracks/7/imported = false -tracks/7/enabled = true -tracks/7/path = NodePath("Attack VFX Player:current_animation") -tracks/7/interp = 1 -tracks/7/loop_wrap = true -tracks/7/keys = { -"times": PackedFloat32Array(0), -"transitions": PackedFloat32Array(1), -"update": 1, -"values": [""] -} [sub_resource type="Animation" id="Animation_48n28"] resource_name = "activate" @@ -6032,42 +6085,6 @@ _data = { [sub_resource type="Animation" id="Animation_f7k3w"] length = 0.001 -tracks/0/type = "value" -tracks/0/imported = false -tracks/0/enabled = true -tracks/0/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/Scrolls:animation") -tracks/0/interp = 1 -tracks/0/loop_wrap = true -tracks/0/keys = { -"times": PackedFloat32Array(0), -"transitions": PackedFloat32Array(1), -"update": 1, -"values": [&"appear_front"] -} -tracks/1/type = "value" -tracks/1/imported = false -tracks/1/enabled = true -tracks/1/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/Scrolls:frame") -tracks/1/interp = 1 -tracks/1/loop_wrap = true -tracks/1/keys = { -"times": PackedFloat32Array(0), -"transitions": PackedFloat32Array(1), -"update": 1, -"values": [0] -} -tracks/2/type = "value" -tracks/2/imported = false -tracks/2/enabled = true -tracks/2/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/Scrolls:z_index") -tracks/2/interp = 1 -tracks/2/loop_wrap = true -tracks/2/keys = { -"times": PackedFloat32Array(0), -"transitions": PackedFloat32Array(1), -"update": 1, -"values": [-1] -} [sub_resource type="Animation" id="Animation_t2646"] resource_name = "appear_back" @@ -6390,260 +6407,52 @@ _data = { &"right": SubResource("Animation_86buh") } -[sub_resource type="AnimationNodeAnimation" id="AnimationNodeAnimation_p70s4"] -animation = &"appear_back" - -[sub_resource type="AnimationNodeAnimation" id="AnimationNodeAnimation_jrkfh"] -animation = &"appear_front" - -[sub_resource type="AnimationNodeAnimation" id="AnimationNodeAnimation_mud4o"] -animation = &"appear_left" - -[sub_resource type="AnimationNodeAnimation" id="AnimationNodeAnimation_vxyya"] -animation = &"appear_right" - -[sub_resource type="AnimationNodeStateMachineTransition" id="AnimationNodeStateMachineTransition_katqq"] +[sub_resource type="AnimationNodeStateMachineTransition" id="AnimationNodeStateMachineTransition_oxik5"] advance_mode = 2 -[sub_resource type="AnimationNodeStateMachineTransition" id="AnimationNodeStateMachineTransition_50tti"] -reset = false -switch_mode = 1 -advance_mode = 2 -advance_expression = "_enemyDirection == 0" +[sub_resource type="AnimationNodeStateMachineTransition" id="AnimationNodeStateMachineTransition_gd38f"] -[sub_resource type="AnimationNodeStateMachineTransition" id="AnimationNodeStateMachineTransition_3uias"] -reset = false -switch_mode = 1 -advance_mode = 2 -advance_expression = "_enemyDirection == 2" +[sub_resource type="AnimationNodeStateMachineTransition" id="AnimationNodeStateMachineTransition_h6y4t"] -[sub_resource type="AnimationNodeStateMachineTransition" id="AnimationNodeStateMachineTransition_e82ix"] -switch_mode = 1 -advance_mode = 2 -advance_expression = "_enemyDirection == 0" +[sub_resource type="AnimationNodeStateMachineTransition" id="AnimationNodeStateMachineTransition_mslum"] -[sub_resource type="AnimationNodeStateMachineTransition" id="AnimationNodeStateMachineTransition_fxpqr"] -reset = false -switch_mode = 1 -advance_mode = 2 -advance_expression = "_enemyDirection == 1" - -[sub_resource type="AnimationNodeStateMachineTransition" id="AnimationNodeStateMachineTransition_t50im"] -switch_mode = 1 -advance_mode = 2 -advance_expression = "_enemyDirection == 1" - -[sub_resource type="AnimationNodeStateMachineTransition" id="AnimationNodeStateMachineTransition_pf5g7"] -switch_mode = 1 -advance_mode = 2 -advance_expression = "_enemyDirection == 2" - -[sub_resource type="AnimationNodeStateMachineTransition" id="AnimationNodeStateMachineTransition_0qxo1"] -switch_mode = 1 -advance_mode = 2 -advance_expression = "_enemyDirection == 3" - -[sub_resource type="AnimationNodeStateMachineTransition" id="AnimationNodeStateMachineTransition_q68rh"] -switch_mode = 1 -advance_mode = 2 -advance_expression = "_enemyDirection == 2" - -[sub_resource type="AnimationNodeStateMachineTransition" id="AnimationNodeStateMachineTransition_ou1lf"] -switch_mode = 1 -advance_mode = 2 -advance_expression = "_enemyDirection == 1" - -[sub_resource type="AnimationNodeStateMachineTransition" id="AnimationNodeStateMachineTransition_qbpj5"] -switch_mode = 1 -advance_mode = 2 -advance_expression = "_enemyDirection == 3" - -[sub_resource type="AnimationNodeStateMachineTransition" id="AnimationNodeStateMachineTransition_jd70t"] -switch_mode = 1 -advance_mode = 2 -advance_expression = "_enemyDirection == 0" - -[sub_resource type="AnimationNodeStateMachineTransition" id="AnimationNodeStateMachineTransition_ihqjo"] -switch_mode = 1 -advance_mode = 2 -advance_expression = "_enemyDirection == 3" - -[sub_resource type="AnimationNodeStateMachineTransition" id="AnimationNodeStateMachineTransition_sxhkj"] +[sub_resource type="AnimationNodeStateMachineTransition" id="AnimationNodeStateMachineTransition_cxmvt"] switch_mode = 2 advance_mode = 2 -[sub_resource type="AnimationNodeStateMachineTransition" id="AnimationNodeStateMachineTransition_nb6b0"] +[sub_resource type="AnimationNodeStateMachineTransition" id="AnimationNodeStateMachineTransition_e1m87"] + +[sub_resource type="AnimationNodeStateMachineTransition" id="AnimationNodeStateMachineTransition_q511f"] + +[sub_resource type="AnimationNodeStateMachineTransition" id="AnimationNodeStateMachineTransition_417nx"] switch_mode = 2 advance_mode = 2 -[sub_resource type="AnimationNodeStateMachineTransition" id="AnimationNodeStateMachineTransition_n3k46"] +[sub_resource type="AnimationNodeStateMachineTransition" id="AnimationNodeStateMachineTransition_lcnyh"] switch_mode = 2 advance_mode = 2 -[sub_resource type="AnimationNodeStateMachineTransition" id="AnimationNodeStateMachineTransition_73pcy"] -switch_mode = 2 -advance_mode = 2 +[sub_resource type="AnimationNodeStateMachineTransition" id="AnimationNodeStateMachineTransition_mqgjo"] -[sub_resource type="AnimationNodeStateMachine" id="AnimationNodeStateMachine_10rwh"] -states/End/position = Vector2(875, 100) -states/appear_back/node = SubResource("AnimationNodeAnimation_p70s4") -states/appear_back/position = Vector2(526, 207) -states/appear_front/node = SubResource("AnimationNodeAnimation_jrkfh") -states/appear_front/position = Vector2(526, 64) -states/appear_left/node = SubResource("AnimationNodeAnimation_mud4o") -states/appear_left/position = Vector2(390, 140) -states/appear_right/node = SubResource("AnimationNodeAnimation_vxyya") -states/appear_right/position = Vector2(721, 140) -transitions = ["Start", "appear_front", SubResource("AnimationNodeStateMachineTransition_katqq"), "appear_front", "appear_left", SubResource("AnimationNodeStateMachineTransition_50tti"), "appear_left", "appear_front", SubResource("AnimationNodeStateMachineTransition_3uias"), "appear_right", "appear_left", SubResource("AnimationNodeStateMachineTransition_e82ix"), "appear_left", "appear_right", SubResource("AnimationNodeStateMachineTransition_fxpqr"), "appear_front", "appear_right", SubResource("AnimationNodeStateMachineTransition_t50im"), "appear_right", "appear_front", SubResource("AnimationNodeStateMachineTransition_pf5g7"), "appear_front", "appear_back", SubResource("AnimationNodeStateMachineTransition_0qxo1"), "appear_back", "appear_front", SubResource("AnimationNodeStateMachineTransition_q68rh"), "appear_back", "appear_right", SubResource("AnimationNodeStateMachineTransition_ou1lf"), "appear_right", "appear_back", SubResource("AnimationNodeStateMachineTransition_qbpj5"), "appear_back", "appear_left", SubResource("AnimationNodeStateMachineTransition_jd70t"), "appear_left", "appear_back", SubResource("AnimationNodeStateMachineTransition_ihqjo"), "appear_front", "End", SubResource("AnimationNodeStateMachineTransition_sxhkj"), "appear_right", "End", SubResource("AnimationNodeStateMachineTransition_nb6b0"), "appear_left", "End", SubResource("AnimationNodeStateMachineTransition_n3k46"), "appear_back", "End", SubResource("AnimationNodeStateMachineTransition_73pcy")] - -[sub_resource type="AnimationNodeAnimation" id="AnimationNodeAnimation_atau3"] -animation = &"back" - -[sub_resource type="AnimationNodeAnimation" id="AnimationNodeAnimation_17smd"] -animation = &"front" - -[sub_resource type="AnimationNodeAnimation" id="AnimationNodeAnimation_4x58o"] -animation = &"left" - -[sub_resource type="AnimationNodeAnimation" id="AnimationNodeAnimation_c2k77"] -animation = &"right" - -[sub_resource type="AnimationNodeStateMachineTransition" id="AnimationNodeStateMachineTransition_60y1w"] -advance_mode = 2 - -[sub_resource type="AnimationNodeStateMachineTransition" id="AnimationNodeStateMachineTransition_cp5rk"] -switch_mode = 1 -advance_mode = 2 -advance_expression = "_enemyDirection == 0" - -[sub_resource type="AnimationNodeStateMachineTransition" id="AnimationNodeStateMachineTransition_uq53j"] -switch_mode = 1 -advance_mode = 2 -advance_expression = "_enemyDirection == 2" - -[sub_resource type="AnimationNodeStateMachineTransition" id="AnimationNodeStateMachineTransition_rt4gk"] -switch_mode = 1 -advance_mode = 2 -advance_expression = "_enemyDirection == 3" - -[sub_resource type="AnimationNodeStateMachineTransition" id="AnimationNodeStateMachineTransition_uj0a7"] -switch_mode = 1 -advance_mode = 2 -advance_expression = "_enemyDirection == 2" - -[sub_resource type="AnimationNodeStateMachineTransition" id="AnimationNodeStateMachineTransition_64f8u"] -switch_mode = 1 -advance_mode = 2 -advance_expression = "_enemyDirection == 1" - -[sub_resource type="AnimationNodeStateMachineTransition" id="AnimationNodeStateMachineTransition_hcypj"] -switch_mode = 1 -advance_mode = 2 -advance_expression = "_enemyDirection == 2" - -[sub_resource type="AnimationNodeStateMachineTransition" id="AnimationNodeStateMachineTransition_46h58"] -switch_mode = 1 -advance_mode = 2 -advance_expression = "_enemyDirection == 3" - -[sub_resource type="AnimationNodeStateMachineTransition" id="AnimationNodeStateMachineTransition_p3l3v"] -reset = false -switch_mode = 1 -advance_mode = 2 -advance_expression = "_enemyDirection == 0" - -[sub_resource type="AnimationNodeStateMachineTransition" id="AnimationNodeStateMachineTransition_x2b0v"] -switch_mode = 1 -advance_mode = 2 -advance_expression = "_enemyDirection == 1" - -[sub_resource type="AnimationNodeStateMachineTransition" id="AnimationNodeStateMachineTransition_4fxyf"] -switch_mode = 1 -advance_mode = 2 -advance_expression = "_enemyDirection == 0" - -[sub_resource type="AnimationNodeStateMachineTransition" id="AnimationNodeStateMachineTransition_mm4jq"] -switch_mode = 1 -advance_mode = 2 -advance_expression = "_enemyDirection == 1" - -[sub_resource type="AnimationNodeStateMachineTransition" id="AnimationNodeStateMachineTransition_yssn0"] -switch_mode = 1 -advance_mode = 2 -advance_expression = "_enemyDirection == 3" - -[sub_resource type="AnimationNodeStateMachine" id="AnimationNodeStateMachine_2we52"] -states/End/position = Vector2(881, 100) -states/Start/position = Vector2(192, 100) -states/back/node = SubResource("AnimationNodeAnimation_atau3") -states/back/position = Vector2(500, 170) -states/front/node = SubResource("AnimationNodeAnimation_17smd") -states/front/position = Vector2(500, 37) -states/left/node = SubResource("AnimationNodeAnimation_4x58o") -states/left/position = Vector2(378, 100) -states/right/node = SubResource("AnimationNodeAnimation_c2k77") -states/right/position = Vector2(608, 100) -transitions = ["Start", "front", SubResource("AnimationNodeStateMachineTransition_60y1w"), "front", "left", SubResource("AnimationNodeStateMachineTransition_cp5rk"), "left", "front", SubResource("AnimationNodeStateMachineTransition_uq53j"), "front", "back", SubResource("AnimationNodeStateMachineTransition_rt4gk"), "back", "front", SubResource("AnimationNodeStateMachineTransition_uj0a7"), "front", "right", SubResource("AnimationNodeStateMachineTransition_64f8u"), "right", "front", SubResource("AnimationNodeStateMachineTransition_hcypj"), "left", "back", SubResource("AnimationNodeStateMachineTransition_46h58"), "back", "left", SubResource("AnimationNodeStateMachineTransition_p3l3v"), "left", "right", SubResource("AnimationNodeStateMachineTransition_x2b0v"), "right", "left", SubResource("AnimationNodeStateMachineTransition_4fxyf"), "back", "right", SubResource("AnimationNodeStateMachineTransition_mm4jq"), "right", "back", SubResource("AnimationNodeStateMachineTransition_yssn0")] - -[sub_resource type="AnimationNodeStateMachineTransition" id="AnimationNodeStateMachineTransition_qscn7"] -switch_mode = 2 -advance_mode = 2 - -[sub_resource type="AnimationNodeStateMachineTransition" id="AnimationNodeStateMachineTransition_behrq"] - -[sub_resource type="AnimationNodeStateMachine" id="AnimationNodeStateMachine_32cdq"] -states/Activate/node = SubResource("AnimationNodeStateMachine_10rwh") -states/Activate/position = Vector2(238.918, 22) -states/End/position = Vector2(854, 22) -states/Idle/node = SubResource("AnimationNodeStateMachine_2we52") -states/Idle/position = Vector2(452.918, 22) -states/Start/position = Vector2(34, 22) -transitions = ["Activate", "Idle", SubResource("AnimationNodeStateMachineTransition_qscn7"), "Start", "Activate", SubResource("AnimationNodeStateMachineTransition_behrq")] -graph_offset = Vector2(-617.082, -169.416) - -[sub_resource type="AnimationNodeStateMachineTransition" id="AnimationNodeStateMachineTransition_jrkfh"] - -[sub_resource type="AnimationNodeStateMachineTransition" id="AnimationNodeStateMachineTransition_mud4o"] -switch_mode = 2 -advance_mode = 2 - -[sub_resource type="AnimationNodeStateMachineTransition" id="AnimationNodeStateMachineTransition_vxyya"] -switch_mode = 2 -advance_mode = 2 - -[sub_resource type="AnimationNodeStateMachineTransition" id="AnimationNodeStateMachineTransition_jj0f0"] -switch_mode = 2 -advance_mode = 2 - -[sub_resource type="AnimationNodeStateMachineTransition" id="AnimationNodeStateMachineTransition_28bos"] - -[sub_resource type="AnimationNodeStateMachineTransition" id="AnimationNodeStateMachineTransition_ylf7i"] - -[sub_resource type="AnimationNodeStateMachineTransition" id="AnimationNodeStateMachineTransition_86buh"] -advance_mode = 2 - -[sub_resource type="AnimationNodeStateMachineTransition" id="AnimationNodeStateMachineTransition_p70s4"] - -[sub_resource type="AnimationNodeStateMachineTransition" id="AnimationNodeStateMachineTransition_btfu3"] - -[sub_resource type="AnimationNodeStateMachineTransition" id="AnimationNodeStateMachineTransition_yl7ba"] - -[sub_resource type="AnimationNodeStateMachine" id="AnimationNodeStateMachine_katqq"] +[sub_resource type="AnimationNodeStateMachine" id="AnimationNodeStateMachine_sukco"] +state_machine_type = 1 +allow_transition_to_self = true +reset_ends = true states/Activate/node = ExtResource("971_5duvr") -states/Activate/position = Vector2(499, 185) +states/Activate/position = Vector2(487, 197) "states/Activated Idle/node" = ExtResource("972_86buh") -"states/Activated Idle/position" = Vector2(499, 262) -states/Idle/node = ExtResource("973_p70s4") -states/Idle/position = Vector2(366, 100) +"states/Activated Idle/position" = Vector2(487, 300) "states/Primary Attack/node" = ExtResource("974_jrkfh") -"states/Primary Attack/position" = Vector2(342, 345) +"states/Primary Attack/position" = Vector2(780, 197) "states/Secondary Attack/node" = ExtResource("975_mud4o") -"states/Secondary Attack/position" = Vector2(620, 345) -states/Start/position = Vector2(198, 100) +"states/Secondary Attack/position" = Vector2(774, 295) +states/Start/position = Vector2(201, 100) +"states/Unactivated Idle/node" = ExtResource("973_p70s4") +"states/Unactivated Idle/position" = Vector2(401, 100) states/Walking/node = ExtResource("976_vxyya") -states/Walking/position = Vector2(620, 100) -transitions = ["Walking", "Activate", SubResource("AnimationNodeStateMachineTransition_jrkfh"), "Activate", "Activated Idle", SubResource("AnimationNodeStateMachineTransition_mud4o"), "Secondary Attack", "Activated Idle", SubResource("AnimationNodeStateMachineTransition_vxyya"), "Primary Attack", "Activated Idle", SubResource("AnimationNodeStateMachineTransition_jj0f0"), "Activated Idle", "Primary Attack", SubResource("AnimationNodeStateMachineTransition_28bos"), "Activated Idle", "Secondary Attack", SubResource("AnimationNodeStateMachineTransition_ylf7i"), "Start", "Idle", SubResource("AnimationNodeStateMachineTransition_86buh"), "Idle", "Walking", SubResource("AnimationNodeStateMachineTransition_p70s4"), "Walking", "Idle", SubResource("AnimationNodeStateMachineTransition_btfu3"), "Idle", "Activate", SubResource("AnimationNodeStateMachineTransition_yl7ba")] -graph_offset = Vector2(-496.141, 24.3337) +states/Walking/position = Vector2(599, 100) +transitions = ["Start", "Unactivated Idle", SubResource("AnimationNodeStateMachineTransition_oxik5"), "Unactivated Idle", "Walking", SubResource("AnimationNodeStateMachineTransition_gd38f"), "Walking", "Activate", SubResource("AnimationNodeStateMachineTransition_h6y4t"), "Unactivated Idle", "Activate", SubResource("AnimationNodeStateMachineTransition_mslum"), "Activate", "Activated Idle", SubResource("AnimationNodeStateMachineTransition_cxmvt"), "Activated Idle", "Primary Attack", SubResource("AnimationNodeStateMachineTransition_e1m87"), "Activated Idle", "Secondary Attack", SubResource("AnimationNodeStateMachineTransition_q511f"), "Primary Attack", "Activated Idle", SubResource("AnimationNodeStateMachineTransition_417nx"), "Secondary Attack", "Activated Idle", SubResource("AnimationNodeStateMachineTransition_lcnyh"), "Activated Idle", "End", SubResource("AnimationNodeStateMachineTransition_mqgjo")] +graph_offset = Vector2(132, 47) [sub_resource type="Animation" id="Animation_jrkfh"] resource_name = "ATTACK 1" @@ -6955,501 +6764,218 @@ animations = [{ "speed": 30.0 }] -[sub_resource type="AtlasTexture" id="AtlasTexture_n3k46"] -atlas = ExtResource("973_t2646") -region = Rect2(512, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_73pcy"] -atlas = ExtResource("973_t2646") -region = Rect2(1024, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_10rwh"] -atlas = ExtResource("973_t2646") -region = Rect2(1536, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_atau3"] -atlas = ExtResource("973_t2646") -region = Rect2(2048, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_17smd"] -atlas = ExtResource("973_t2646") -region = Rect2(2560, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_4x58o"] -atlas = ExtResource("973_t2646") -region = Rect2(3072, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_c2k77"] -atlas = ExtResource("973_t2646") -region = Rect2(3584, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_60y1w"] -atlas = ExtResource("973_t2646") -region = Rect2(4096, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_cp5rk"] -atlas = ExtResource("973_t2646") -region = Rect2(4608, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_uq53j"] -atlas = ExtResource("973_t2646") -region = Rect2(5120, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_rt4gk"] -atlas = ExtResource("973_t2646") -region = Rect2(5632, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_uj0a7"] -atlas = ExtResource("973_t2646") -region = Rect2(6144, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_64f8u"] -atlas = ExtResource("973_t2646") -region = Rect2(6656, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_hcypj"] -atlas = ExtResource("973_t2646") -region = Rect2(7168, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_46h58"] -atlas = ExtResource("973_t2646") -region = Rect2(7680, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_p3l3v"] -atlas = ExtResource("973_t2646") -region = Rect2(8192, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_x2b0v"] -atlas = ExtResource("973_t2646") -region = Rect2(8704, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_4fxyf"] -atlas = ExtResource("973_t2646") -region = Rect2(9216, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_mm4jq"] -atlas = ExtResource("973_t2646") -region = Rect2(9728, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_yssn0"] -atlas = ExtResource("973_t2646") -region = Rect2(10240, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_2we52"] -atlas = ExtResource("973_t2646") -region = Rect2(10752, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_ku6ya"] -atlas = ExtResource("973_t2646") -region = Rect2(11264, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_qscn7"] -atlas = ExtResource("973_t2646") -region = Rect2(11776, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_5yrlk"] -atlas = ExtResource("973_t2646") -region = Rect2(12288, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_6hp6m"] -atlas = ExtResource("973_t2646") -region = Rect2(12800, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_ala8k"] -atlas = ExtResource("973_t2646") -region = Rect2(13312, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_7idp7"] -atlas = ExtResource("973_t2646") -region = Rect2(13824, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_fhgwp"] -atlas = ExtResource("973_t2646") -region = Rect2(14336, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_45888"] -atlas = ExtResource("973_t2646") -region = Rect2(14848, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_8gqeq"] -atlas = ExtResource("973_t2646") -region = Rect2(15360, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_jth4t"] -atlas = ExtResource("973_t2646") -region = Rect2(15872, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_p04gx"] -atlas = ExtResource("973_t2646") -region = Rect2(0, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_mpijp"] -atlas = ExtResource("973_t2646") -region = Rect2(512, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_ch1hi"] -atlas = ExtResource("973_t2646") -region = Rect2(1024, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_w6bbb"] -atlas = ExtResource("973_t2646") -region = Rect2(1536, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_juo36"] -atlas = ExtResource("973_t2646") -region = Rect2(2048, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_ed7uy"] -atlas = ExtResource("973_t2646") -region = Rect2(2560, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_c52qq"] -atlas = ExtResource("973_t2646") -region = Rect2(3072, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_af57q"] -atlas = ExtResource("973_t2646") -region = Rect2(3584, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_i3g25"] -atlas = ExtResource("973_t2646") -region = Rect2(4096, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_goifa"] -atlas = ExtResource("973_t2646") -region = Rect2(4608, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_r5dgu"] -atlas = ExtResource("973_t2646") -region = Rect2(5120, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_jh88w"] -atlas = ExtResource("973_t2646") -region = Rect2(5632, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_13hcq"] -atlas = ExtResource("973_t2646") -region = Rect2(6144, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_sja2o"] -atlas = ExtResource("973_t2646") -region = Rect2(6656, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_so3ir"] -atlas = ExtResource("973_t2646") -region = Rect2(7168, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_mohbv"] -atlas = ExtResource("973_t2646") -region = Rect2(7680, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_hhoq3"] -atlas = ExtResource("973_t2646") -region = Rect2(8192, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_e1jad"] -atlas = ExtResource("973_t2646") -region = Rect2(8704, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_5olpl"] -atlas = ExtResource("973_t2646") -region = Rect2(9216, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_kvhpe"] -atlas = ExtResource("973_t2646") -region = Rect2(9728, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_2i0l6"] -atlas = ExtResource("973_t2646") -region = Rect2(10240, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_ih4ef"] -atlas = ExtResource("973_t2646") -region = Rect2(10752, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_3617g"] -atlas = ExtResource("973_t2646") -region = Rect2(11264, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_4fpcf"] -atlas = ExtResource("973_t2646") -region = Rect2(11776, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_g5ebe"] -atlas = ExtResource("973_t2646") -region = Rect2(12288, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_4jrnc"] -atlas = ExtResource("973_t2646") -region = Rect2(12800, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_cfktt"] -atlas = ExtResource("973_t2646") -region = Rect2(13312, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_h4hk5"] -atlas = ExtResource("973_t2646") -region = Rect2(13824, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_a5ap1"] -atlas = ExtResource("973_t2646") -region = Rect2(14336, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_hs2st"] -atlas = ExtResource("973_t2646") -region = Rect2(14848, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_ar04x"] -atlas = ExtResource("973_t2646") -region = Rect2(15360, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_p1bd3"] -atlas = ExtResource("973_t2646") -region = Rect2(15872, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_v4lml"] -atlas = ExtResource("973_t2646") -region = Rect2(0, 1024, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_m6bpv"] -atlas = ExtResource("973_t2646") -region = Rect2(512, 1024, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_w8cyf"] -atlas = ExtResource("973_t2646") -region = Rect2(1024, 1024, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_deod5"] -atlas = ExtResource("973_t2646") -region = Rect2(1536, 1024, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_lhgeh"] -atlas = ExtResource("973_t2646") -region = Rect2(2048, 1024, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_wmwx3"] -atlas = ExtResource("973_t2646") -region = Rect2(2560, 1024, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_5b1s1"] -atlas = ExtResource("973_t2646") -region = Rect2(3072, 1024, 512, 512) - [sub_resource type="SpriteFrames" id="SpriteFrames_i4gi3"] animations = [{ "frames": [{ "duration": 1.0, -"texture": null +"texture": ExtResource("978_oxik5") }, { "duration": 1.0, -"texture": SubResource("AtlasTexture_n3k46") +"texture": ExtResource("979_gd38f") }, { "duration": 1.0, -"texture": SubResource("AtlasTexture_73pcy") +"texture": ExtResource("980_h6y4t") }, { "duration": 1.0, -"texture": SubResource("AtlasTexture_10rwh") +"texture": ExtResource("981_mslum") }, { "duration": 1.0, -"texture": SubResource("AtlasTexture_atau3") +"texture": ExtResource("982_cxmvt") }, { "duration": 1.0, -"texture": SubResource("AtlasTexture_17smd") +"texture": ExtResource("983_e1m87") }, { "duration": 1.0, -"texture": SubResource("AtlasTexture_4x58o") +"texture": ExtResource("984_q511f") }, { "duration": 1.0, -"texture": SubResource("AtlasTexture_c2k77") +"texture": ExtResource("985_417nx") }, { "duration": 1.0, -"texture": SubResource("AtlasTexture_60y1w") +"texture": ExtResource("986_lcnyh") }, { "duration": 1.0, -"texture": SubResource("AtlasTexture_cp5rk") +"texture": ExtResource("987_mqgjo") }, { "duration": 1.0, -"texture": SubResource("AtlasTexture_uq53j") +"texture": ExtResource("988_q3kbo") }, { "duration": 1.0, -"texture": SubResource("AtlasTexture_rt4gk") +"texture": ExtResource("989_rbn7c") }, { "duration": 1.0, -"texture": SubResource("AtlasTexture_uj0a7") +"texture": ExtResource("990_w7err") }, { "duration": 1.0, -"texture": SubResource("AtlasTexture_64f8u") +"texture": ExtResource("991_1twjx") }, { "duration": 1.0, -"texture": SubResource("AtlasTexture_hcypj") +"texture": ExtResource("992_ek71i") }, { "duration": 1.0, -"texture": SubResource("AtlasTexture_46h58") +"texture": ExtResource("993_c2ofx") }, { "duration": 1.0, -"texture": SubResource("AtlasTexture_p3l3v") +"texture": ExtResource("994_84u33") }, { "duration": 1.0, -"texture": SubResource("AtlasTexture_x2b0v") +"texture": ExtResource("995_hpdih") }, { "duration": 1.0, -"texture": SubResource("AtlasTexture_4fxyf") +"texture": ExtResource("996_la6wx") }, { "duration": 1.0, -"texture": SubResource("AtlasTexture_mm4jq") +"texture": ExtResource("997_h0b60") }, { "duration": 1.0, -"texture": SubResource("AtlasTexture_yssn0") +"texture": ExtResource("998_03pvu") }, { "duration": 1.0, -"texture": SubResource("AtlasTexture_2we52") +"texture": ExtResource("999_5coqt") }, { "duration": 1.0, -"texture": SubResource("AtlasTexture_ku6ya") +"texture": ExtResource("1000_fetm6") }, { "duration": 1.0, -"texture": SubResource("AtlasTexture_qscn7") +"texture": ExtResource("1001_8aul7") }, { "duration": 1.0, -"texture": SubResource("AtlasTexture_5yrlk") +"texture": ExtResource("1002_yyon1") }, { "duration": 1.0, -"texture": SubResource("AtlasTexture_6hp6m") +"texture": ExtResource("1003_87fyl") }, { "duration": 1.0, -"texture": SubResource("AtlasTexture_ala8k") +"texture": ExtResource("1004_k0840") }, { "duration": 1.0, -"texture": SubResource("AtlasTexture_7idp7") +"texture": ExtResource("1005_rbt0u") }, { "duration": 1.0, -"texture": SubResource("AtlasTexture_fhgwp") +"texture": ExtResource("1006_e3tel") }, { "duration": 1.0, -"texture": SubResource("AtlasTexture_45888") +"texture": ExtResource("1007_alx7p") }, { "duration": 1.0, -"texture": SubResource("AtlasTexture_8gqeq") +"texture": ExtResource("1008_877wc") }, { "duration": 1.0, -"texture": SubResource("AtlasTexture_jth4t") +"texture": ExtResource("1009_rgikn") }, { "duration": 1.0, -"texture": SubResource("AtlasTexture_p04gx") +"texture": ExtResource("1010_dtjga") }, { "duration": 1.0, -"texture": SubResource("AtlasTexture_mpijp") +"texture": ExtResource("1011_4csfl") }, { "duration": 1.0, -"texture": SubResource("AtlasTexture_ch1hi") +"texture": ExtResource("1012_xjwck") }, { "duration": 1.0, -"texture": SubResource("AtlasTexture_w6bbb") +"texture": ExtResource("1013_3npn4") }, { "duration": 1.0, -"texture": SubResource("AtlasTexture_juo36") +"texture": ExtResource("1014_mfthy") }, { "duration": 1.0, -"texture": SubResource("AtlasTexture_ed7uy") +"texture": ExtResource("1015_ockvq") }, { "duration": 1.0, -"texture": SubResource("AtlasTexture_c52qq") +"texture": ExtResource("1016_cctkk") }, { "duration": 1.0, -"texture": SubResource("AtlasTexture_af57q") +"texture": ExtResource("1017_nbkl1") }, { "duration": 1.0, -"texture": SubResource("AtlasTexture_i3g25") +"texture": ExtResource("1018_3pj3s") }, { "duration": 1.0, -"texture": SubResource("AtlasTexture_goifa") +"texture": ExtResource("1019_45ohg") }, { "duration": 1.0, -"texture": SubResource("AtlasTexture_r5dgu") +"texture": ExtResource("1020_tlv7h") }, { "duration": 1.0, -"texture": SubResource("AtlasTexture_jh88w") +"texture": ExtResource("1021_lb4y5") }, { "duration": 1.0, -"texture": SubResource("AtlasTexture_13hcq") +"texture": ExtResource("1022_nbfdc") }, { "duration": 1.0, -"texture": SubResource("AtlasTexture_sja2o") +"texture": ExtResource("1023_fetx3") }, { "duration": 1.0, -"texture": SubResource("AtlasTexture_so3ir") +"texture": ExtResource("1024_1yw7k") }, { "duration": 1.0, -"texture": SubResource("AtlasTexture_mohbv") +"texture": ExtResource("1025_gtu6e") }, { "duration": 1.0, -"texture": SubResource("AtlasTexture_hhoq3") +"texture": ExtResource("1026_f7dds") }, { "duration": 1.0, -"texture": SubResource("AtlasTexture_e1jad") +"texture": ExtResource("1027_1icxf") }, { "duration": 1.0, -"texture": SubResource("AtlasTexture_5olpl") +"texture": ExtResource("1028_4hovg") }, { "duration": 1.0, -"texture": SubResource("AtlasTexture_kvhpe") +"texture": ExtResource("1029_2uup0") }, { "duration": 1.0, -"texture": SubResource("AtlasTexture_2i0l6") +"texture": ExtResource("1030_d6g0r") }, { "duration": 1.0, -"texture": SubResource("AtlasTexture_ih4ef") +"texture": ExtResource("1031_gk11s") }, { "duration": 1.0, -"texture": SubResource("AtlasTexture_3617g") +"texture": ExtResource("1032_nq8o1") }, { "duration": 1.0, -"texture": SubResource("AtlasTexture_4fpcf") +"texture": ExtResource("1033_tke7j") }, { "duration": 1.0, -"texture": SubResource("AtlasTexture_g5ebe") +"texture": ExtResource("1034_b3hok") }, { "duration": 1.0, -"texture": SubResource("AtlasTexture_4jrnc") +"texture": ExtResource("1035_jlxpo") }, { "duration": 1.0, -"texture": SubResource("AtlasTexture_cfktt") +"texture": ExtResource("1036_8xt1b") }, { "duration": 1.0, -"texture": SubResource("AtlasTexture_h4hk5") +"texture": ExtResource("1037_qtg7y") }, { "duration": 1.0, -"texture": SubResource("AtlasTexture_a5ap1") +"texture": ExtResource("1038_r88a7") }, { "duration": 1.0, -"texture": SubResource("AtlasTexture_hs2st") +"texture": ExtResource("1039_1tqkg") }, { "duration": 1.0, -"texture": SubResource("AtlasTexture_ar04x") +"texture": ExtResource("1040_mdrnt") }, { "duration": 1.0, -"texture": SubResource("AtlasTexture_p1bd3") +"texture": ExtResource("1041_voe6l") }, { "duration": 1.0, -"texture": SubResource("AtlasTexture_v4lml") +"texture": ExtResource("1042_22avq") }, { "duration": 1.0, -"texture": SubResource("AtlasTexture_m6bpv") +"texture": ExtResource("1043_72p3c") }, { "duration": 1.0, -"texture": SubResource("AtlasTexture_w8cyf") +"texture": ExtResource("1044_yw5v6") }, { "duration": 1.0, -"texture": SubResource("AtlasTexture_deod5") +"texture": ExtResource("1045_qefui") }, { "duration": 1.0, -"texture": SubResource("AtlasTexture_lhgeh") +"texture": ExtResource("1046_miagd") }, { "duration": 1.0, -"texture": SubResource("AtlasTexture_wmwx3") -}, { -"duration": 1.0, -"texture": SubResource("AtlasTexture_5b1s1") +"texture": ExtResource("1047_htv70") }], "loop": false, "name": &"default", @@ -7462,386 +6988,251 @@ Damage = 10 ElementType = 0 metadata/_custom_type_script = "uid://ctshiyffvt4y5" -[sub_resource type="AtlasTexture" id="AtlasTexture_nb6b0"] -atlas = ExtResource("979_p70s4") -region = Rect2(13312, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_i4gi3"] -atlas = ExtResource("979_p70s4") -region = Rect2(13824, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_ddkmq"] -atlas = ExtResource("979_p70s4") -region = Rect2(14336, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_x0bam"] -atlas = ExtResource("979_p70s4") -region = Rect2(14848, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_gkwdb"] -atlas = ExtResource("979_p70s4") -region = Rect2(15360, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_87eij"] -atlas = ExtResource("979_p70s4") -region = Rect2(15872, 0, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_5p0ca"] -atlas = ExtResource("979_p70s4") -region = Rect2(0, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_emai5"] -atlas = ExtResource("979_p70s4") -region = Rect2(512, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_dvngh"] -atlas = ExtResource("979_p70s4") -region = Rect2(1024, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_wwv0x"] -atlas = ExtResource("979_p70s4") -region = Rect2(1536, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_sg6i3"] -atlas = ExtResource("979_p70s4") -region = Rect2(2048, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_buowv"] -atlas = ExtResource("979_p70s4") -region = Rect2(2560, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_fninf"] -atlas = ExtResource("979_p70s4") -region = Rect2(3072, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_ox5ei"] -atlas = ExtResource("979_p70s4") -region = Rect2(3584, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_dcci0"] -atlas = ExtResource("979_p70s4") -region = Rect2(4096, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_00jqq"] -atlas = ExtResource("979_p70s4") -region = Rect2(4608, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_jh311"] -atlas = ExtResource("979_p70s4") -region = Rect2(5120, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_l00n2"] -atlas = ExtResource("979_p70s4") -region = Rect2(5632, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_fn7wo"] -atlas = ExtResource("979_p70s4") -region = Rect2(6144, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_4qc2s"] -atlas = ExtResource("979_p70s4") -region = Rect2(6656, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_25hpt"] -atlas = ExtResource("979_p70s4") -region = Rect2(7168, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_evonl"] -atlas = ExtResource("979_p70s4") -region = Rect2(7680, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_tw6uk"] -atlas = ExtResource("979_p70s4") -region = Rect2(8192, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_jqk27"] -atlas = ExtResource("979_p70s4") -region = Rect2(8704, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_cdubj"] -atlas = ExtResource("979_p70s4") -region = Rect2(9216, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_8jnnk"] -atlas = ExtResource("979_p70s4") -region = Rect2(9728, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_nriup"] -atlas = ExtResource("979_p70s4") -region = Rect2(10240, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_7qxfq"] -atlas = ExtResource("979_p70s4") -region = Rect2(10752, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_2jl62"] -atlas = ExtResource("979_p70s4") -region = Rect2(11264, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_rb45e"] -atlas = ExtResource("979_p70s4") -region = Rect2(11776, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_cfs7u"] -atlas = ExtResource("979_p70s4") -region = Rect2(12288, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_ocg5n"] -atlas = ExtResource("979_p70s4") -region = Rect2(12800, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_a7r78"] -atlas = ExtResource("979_p70s4") -region = Rect2(13312, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_1nfcc"] -atlas = ExtResource("979_p70s4") -region = Rect2(13824, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_v5c43"] -atlas = ExtResource("979_p70s4") -region = Rect2(14336, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_4yu67"] -atlas = ExtResource("979_p70s4") -region = Rect2(14848, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_ogljb"] -atlas = ExtResource("979_p70s4") -region = Rect2(15360, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_11ag4"] -atlas = ExtResource("979_p70s4") -region = Rect2(15872, 512, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_ntfa6"] -atlas = ExtResource("979_p70s4") -region = Rect2(0, 1024, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_bdxy3"] -atlas = ExtResource("979_p70s4") -region = Rect2(512, 1024, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_mflhv"] -atlas = ExtResource("979_p70s4") -region = Rect2(1024, 1024, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_liadx"] -atlas = ExtResource("979_p70s4") -region = Rect2(1536, 1024, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_it5ph"] -atlas = ExtResource("979_p70s4") -region = Rect2(2048, 1024, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_quson"] -atlas = ExtResource("979_p70s4") -region = Rect2(2560, 1024, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_geoiw"] -atlas = ExtResource("979_p70s4") -region = Rect2(3072, 1024, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_mufyb"] -atlas = ExtResource("979_p70s4") -region = Rect2(3584, 1024, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_i5j6d"] -atlas = ExtResource("979_p70s4") -region = Rect2(4096, 1024, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_qj8xu"] -atlas = ExtResource("979_p70s4") -region = Rect2(4608, 1024, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_3n6tb"] -atlas = ExtResource("979_p70s4") -region = Rect2(5120, 1024, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_1l44s"] -atlas = ExtResource("979_p70s4") -region = Rect2(5632, 1024, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_tdhdw"] -atlas = ExtResource("979_p70s4") -region = Rect2(6144, 1024, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_8uix1"] -atlas = ExtResource("979_p70s4") -region = Rect2(6656, 1024, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_326pe"] -atlas = ExtResource("979_p70s4") -region = Rect2(7168, 1024, 512, 512) - -[sub_resource type="AtlasTexture" id="AtlasTexture_sukco"] -atlas = ExtResource("979_p70s4") -region = Rect2(7680, 1024, 512, 512) - [sub_resource type="SpriteFrames" id="SpriteFrames_brsyt"] animations = [{ "frames": [{ "duration": 1.0, -"texture": SubResource("AtlasTexture_nb6b0") +"texture": ExtResource("981_a5ap1") }, { "duration": 1.0, -"texture": SubResource("AtlasTexture_i4gi3") +"texture": ExtResource("982_hs2st") }, { "duration": 1.0, -"texture": SubResource("AtlasTexture_ddkmq") +"texture": ExtResource("983_ar04x") }, { "duration": 1.0, -"texture": SubResource("AtlasTexture_x0bam") +"texture": ExtResource("984_p1bd3") }, { "duration": 1.0, -"texture": SubResource("AtlasTexture_gkwdb") +"texture": ExtResource("985_v4lml") }, { "duration": 1.0, -"texture": SubResource("AtlasTexture_87eij") +"texture": ExtResource("986_m6bpv") }, { "duration": 1.0, -"texture": SubResource("AtlasTexture_5p0ca") +"texture": ExtResource("987_w8cyf") }, { "duration": 1.0, -"texture": SubResource("AtlasTexture_emai5") +"texture": ExtResource("988_deod5") }, { "duration": 1.0, -"texture": SubResource("AtlasTexture_dvngh") +"texture": ExtResource("989_lhgeh") }, { "duration": 1.0, -"texture": SubResource("AtlasTexture_wwv0x") +"texture": ExtResource("990_wmwx3") }, { "duration": 1.0, -"texture": SubResource("AtlasTexture_sg6i3") +"texture": ExtResource("991_5b1s1") }, { "duration": 1.0, -"texture": SubResource("AtlasTexture_buowv") +"texture": ExtResource("992_i4gi3") }, { "duration": 1.0, -"texture": SubResource("AtlasTexture_fninf") +"texture": ExtResource("993_ddkmq") }, { "duration": 1.0, -"texture": SubResource("AtlasTexture_ox5ei") +"texture": ExtResource("994_x0bam") }, { "duration": 1.0, -"texture": SubResource("AtlasTexture_dcci0") +"texture": ExtResource("995_gkwdb") }, { "duration": 1.0, -"texture": SubResource("AtlasTexture_00jqq") +"texture": ExtResource("996_87eij") }, { "duration": 1.0, -"texture": SubResource("AtlasTexture_jh311") +"texture": ExtResource("997_5p0ca") }, { "duration": 1.0, -"texture": SubResource("AtlasTexture_l00n2") +"texture": ExtResource("998_emai5") }, { "duration": 1.0, -"texture": SubResource("AtlasTexture_fn7wo") +"texture": ExtResource("999_dvngh") }, { "duration": 1.0, -"texture": SubResource("AtlasTexture_4qc2s") +"texture": ExtResource("1000_wwv0x") }, { "duration": 1.0, -"texture": SubResource("AtlasTexture_25hpt") +"texture": ExtResource("1001_sg6i3") }, { "duration": 1.0, -"texture": SubResource("AtlasTexture_evonl") +"texture": ExtResource("1002_buowv") }, { "duration": 1.0, -"texture": SubResource("AtlasTexture_tw6uk") +"texture": ExtResource("1003_fninf") }, { "duration": 1.0, -"texture": SubResource("AtlasTexture_jqk27") +"texture": ExtResource("1004_ox5ei") }, { "duration": 1.0, -"texture": SubResource("AtlasTexture_cdubj") +"texture": ExtResource("1005_dcci0") }, { "duration": 1.0, -"texture": SubResource("AtlasTexture_8jnnk") +"texture": ExtResource("1006_00jqq") }, { "duration": 1.0, -"texture": SubResource("AtlasTexture_nriup") +"texture": ExtResource("1007_jh311") }, { "duration": 1.0, -"texture": SubResource("AtlasTexture_7qxfq") +"texture": ExtResource("1008_l00n2") }, { "duration": 1.0, -"texture": SubResource("AtlasTexture_2jl62") +"texture": ExtResource("1009_fn7wo") }, { "duration": 1.0, -"texture": SubResource("AtlasTexture_rb45e") +"texture": ExtResource("1010_4qc2s") }, { "duration": 1.0, -"texture": SubResource("AtlasTexture_cfs7u") +"texture": ExtResource("1011_25hpt") }, { "duration": 1.0, -"texture": SubResource("AtlasTexture_ocg5n") +"texture": ExtResource("1012_evonl") }, { "duration": 1.0, -"texture": SubResource("AtlasTexture_a7r78") +"texture": ExtResource("1013_tw6uk") }, { "duration": 1.0, -"texture": SubResource("AtlasTexture_1nfcc") +"texture": ExtResource("1014_jqk27") }, { "duration": 1.0, -"texture": SubResource("AtlasTexture_v5c43") +"texture": ExtResource("1015_cdubj") }, { "duration": 1.0, -"texture": SubResource("AtlasTexture_4yu67") +"texture": ExtResource("1016_8jnnk") }, { "duration": 1.0, -"texture": SubResource("AtlasTexture_ogljb") +"texture": ExtResource("1017_nriup") }, { "duration": 1.0, -"texture": SubResource("AtlasTexture_11ag4") +"texture": ExtResource("1018_7qxfq") }, { "duration": 1.0, -"texture": SubResource("AtlasTexture_ntfa6") +"texture": ExtResource("1019_2jl62") }, { "duration": 1.0, -"texture": SubResource("AtlasTexture_bdxy3") +"texture": ExtResource("1020_rb45e") }, { "duration": 1.0, -"texture": SubResource("AtlasTexture_mflhv") +"texture": ExtResource("1021_cfs7u") }, { "duration": 1.0, -"texture": SubResource("AtlasTexture_liadx") +"texture": ExtResource("1022_ocg5n") }, { "duration": 1.0, -"texture": SubResource("AtlasTexture_it5ph") +"texture": ExtResource("1023_a7r78") }, { "duration": 1.0, -"texture": SubResource("AtlasTexture_quson") +"texture": ExtResource("1024_1nfcc") }, { "duration": 1.0, -"texture": SubResource("AtlasTexture_geoiw") +"texture": ExtResource("1025_v5c43") }, { "duration": 1.0, -"texture": SubResource("AtlasTexture_mufyb") +"texture": ExtResource("1026_4yu67") }, { "duration": 1.0, -"texture": SubResource("AtlasTexture_i5j6d") +"texture": ExtResource("1027_ogljb") }, { "duration": 1.0, -"texture": SubResource("AtlasTexture_qj8xu") +"texture": ExtResource("1028_11ag4") }, { "duration": 1.0, -"texture": SubResource("AtlasTexture_3n6tb") +"texture": ExtResource("1029_ntfa6") }, { "duration": 1.0, -"texture": SubResource("AtlasTexture_1l44s") +"texture": ExtResource("1030_bdxy3") }, { "duration": 1.0, -"texture": SubResource("AtlasTexture_tdhdw") +"texture": ExtResource("1031_mflhv") }, { "duration": 1.0, -"texture": SubResource("AtlasTexture_8uix1") +"texture": ExtResource("1032_liadx") }, { "duration": 1.0, -"texture": SubResource("AtlasTexture_326pe") +"texture": ExtResource("1033_it5ph") }, { "duration": 1.0, -"texture": SubResource("AtlasTexture_sukco") +"texture": ExtResource("1034_quson") +}, { +"duration": 1.0, +"texture": ExtResource("1035_geoiw") +}, { +"duration": 1.0, +"texture": ExtResource("1036_mufyb") +}, { +"duration": 1.0, +"texture": ExtResource("1037_i5j6d") +}, { +"duration": 1.0, +"texture": ExtResource("1038_qj8xu") +}, { +"duration": 1.0, +"texture": ExtResource("1039_3n6tb") +}, { +"duration": 1.0, +"texture": ExtResource("1040_1l44s") +}, { +"duration": 1.0, +"texture": ExtResource("1041_tdhdw") +}, { +"duration": 1.0, +"texture": ExtResource("1042_8uix1") +}, { +"duration": 1.0, +"texture": ExtResource("1043_326pe") +}, { +"duration": 1.0, +"texture": ExtResource("1044_sukco") +}, { +"duration": 1.0, +"texture": ExtResource("1045_c83ym") +}, { +"duration": 1.0, +"texture": ExtResource("1046_0e8dy") +}, { +"duration": 1.0, +"texture": ExtResource("1047_bhgth") +}, { +"duration": 1.0, +"texture": ExtResource("1048_214ut") +}, { +"duration": 1.0, +"texture": ExtResource("1049_t11um") +}, { +"duration": 1.0, +"texture": ExtResource("1050_oxik5") +}, { +"duration": 1.0, +"texture": ExtResource("1051_gd38f") +}, { +"duration": 1.0, +"texture": ExtResource("1052_h6y4t") +}, { +"duration": 1.0, +"texture": ExtResource("1053_mslum") +}, { +"duration": 1.0, +"texture": ExtResource("1054_cxmvt") +}, { +"duration": 1.0, +"texture": ExtResource("1055_e1m87") +}, { +"duration": 1.0, +"texture": ExtResource("1056_q511f") +}, { +"duration": 1.0, +"texture": ExtResource("1057_417nx") +}, { +"duration": 1.0, +"texture": ExtResource("1058_lcnyh") +}, { +"duration": 1.0, +"texture": ExtResource("1059_mqgjo") +}, { +"duration": 1.0, +"texture": ExtResource("1060_q3kbo") +}, { +"duration": 1.0, +"texture": ExtResource("1061_rbn7c") }], "loop": true, "name": &"default", @@ -7970,7 +7361,7 @@ EnemyLoreInfo = SubResource("Resource_jj0f0") [node name="Sprite3D" type="Sprite3D" parent="."] unique_name_in_owner = true -transform = Transform3D(1.5, 0, 0, 0, 1.5, 0, 0, 0, 1.5, 0, 0.319186, 0) +transform = Transform3D(1.5, 0, 0, 0, 1.5, 0, 0, 0, 1.5, 0, 1.76462, 0) pixel_size = 0.007 billboard = 2 alpha_cut = 1 @@ -7997,25 +7388,25 @@ unique_name_in_owner = true texture_filter = 1 position = Vector2(500, 500) sprite_frames = SubResource("SpriteFrames_yv1f1") -animation = &"idle_front" +animation = &"" [node name="Lid" type="AnimatedSprite2D" parent="Sprite3D/SubViewportContainer/SubViewport"] unique_name_in_owner = true visible = false sprite_frames = SubResource("SpriteFrames_egi8d") -animation = &"front" +animation = &"" offset = Vector2(500, 500) [node name="Scrolls" type="AnimatedSprite2D" parent="Sprite3D/SubViewportContainer/SubViewport"] unique_name_in_owner = true -z_index = -1 +z_index = 10 position = Vector2(500, 500) sprite_frames = SubResource("SpriteFrames_v10mr") -animation = &"appear_front" +animation = &"appear_back" [node name="Hitbox" type="Area3D" parent="."] unique_name_in_owner = true -transform = Transform3D(-1, 0, -8.74228e-08, 0, 1, 0, 8.74228e-08, 0, -1, -0.153, 1, 0) +transform = Transform3D(-1, 0, -8.74228e-08, 0, 1, 0, 8.74228e-08, 0, -1, -0.153, 2.44543, 0) collision_layer = 64 collision_mask = 64 @@ -8036,18 +7427,10 @@ libraries = { &"": SubResource("AnimationLibrary_bhhf1") } -[node name="ScrollAnimationTree" type="AnimationTree" parent="."] -unique_name_in_owner = true -root_node = NodePath("%ScrollAnimationTree/..") -tree_root = SubResource("AnimationNodeStateMachine_32cdq") -advance_expression_base_node = NodePath("..") -anim_player = NodePath("../ScrollAnimation") - [node name="AnimationTree" type="AnimationTree" parent="."] unique_name_in_owner = true root_node = NodePath("%AnimationTree/..") -tree_root = SubResource("AnimationNodeStateMachine_katqq") -advance_expression_base_node = NodePath("..") +tree_root = SubResource("AnimationNodeStateMachine_sukco") anim_player = NodePath("../AnimationPlayer") [node name="Attack VFX Player" type="AnimationPlayer" parent="."] @@ -8057,15 +7440,16 @@ libraries = { } [node name="Attack 1" type="AnimatedSprite3D" parent="Attack VFX Player"] -transform = Transform3D(0.84, 0, 0, 0, 0.84, 0, 0, 0, 0.84, 0, 0.319186, 0) +transform = Transform3D(0.84, 0, 0, 0, 0.84, 0, 0, 0, 0.84, 0, 1.76462, 0) sprite_frames = SubResource("SpriteFrames_nb6b0") frame = 26 [node name="Attack 2" type="AnimatedSprite3D" parent="Attack VFX Player"] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.319186, 0) +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1.76462, 0) sprite_frames = SubResource("SpriteFrames_i4gi3") [node name="Projectile1" type="Node3D" parent="."] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1.44543, 0) script = ExtResource("978_jrkfh") AttackData = SubResource("Resource_vxyya") @@ -8078,7 +7462,7 @@ offset = Vector2(0, 150) billboard = 1 sprite_frames = SubResource("SpriteFrames_brsyt") autoplay = "default" -frame_progress = 0.79063 +frame_progress = 0.79934 [node name="ProjectileHitbox" type="Area3D" parent="Projectile1/Bullet"] unique_name_in_owner = true @@ -8098,6 +7482,7 @@ libraries = { } [node name="Projectile2" type="Node3D" parent="."] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1.44543, 0) script = ExtResource("978_jrkfh") AttackData = SubResource("Resource_mud4o") @@ -8128,11 +7513,12 @@ libraries = { [node name="WalkSFX" type="AudioStreamPlayer3D" parent="."] unique_name_in_owner = true +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1.44543, 0) autoplay = true bus = &"SFX" [node name="Shadow" type="Sprite3D" parent="."] -transform = Transform3D(1.08, 0, 0, 0, -4.72083e-08, 1.08, 0, -1.08, -4.72083e-08, 0.00393164, -1.49156, 0.0077811) +transform = Transform3D(1.08, 0, 0, 0, -4.72083e-08, 1.08, 0, -1.08, -4.72083e-08, 0.00393164, -0.0461296, 0.0077811) transparency = 0.1 cast_shadow = 0 modulate = Color(1, 1, 1, 0.591) diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/B/0120.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/B/0120.png index aff130bf9..43db18649 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/B/0120.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/B/0120.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/B/0122.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/B/0122.png index 57cf65830..52875289d 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/B/0122.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/B/0122.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/B/0124.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/B/0124.png index 9a2583d56..ace0384ee 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/B/0124.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/B/0124.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/B/0126.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/B/0126.png index 13cb53773..f92818853 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/B/0126.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/B/0126.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/B/0128.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/B/0128.png index baa1748d8..6ebc5abc8 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/B/0128.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/B/0128.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/B/0130.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/B/0130.png index 7f7b03ea2..13ee65761 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/B/0130.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/B/0130.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/B/0132.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/B/0132.png index 4ff59e995..867718544 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/B/0132.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/B/0132.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/B/0134.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/B/0134.png index e594e98a7..1c6bbc02c 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/B/0134.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/B/0134.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/B/0136.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/B/0136.png index 9b42f9a24..854185705 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/B/0136.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/B/0136.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/B/0138.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/B/0138.png index 3e05c890c..34a735f57 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/B/0138.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/B/0138.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/B/0140.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/B/0140.png index 019e37f41..49b75160d 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/B/0140.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/B/0140.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/B/0142.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/B/0142.png index 6cf09d0cd..e2aec30be 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/B/0142.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/B/0142.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/B/0144.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/B/0144.png index 77ba90488..c87e26140 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/B/0144.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/B/0144.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/B/0146.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/B/0146.png index e388a1697..e459b647b 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/B/0146.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/B/0146.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/B/0148.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/B/0148.png index 304fd84c8..bdb36be2f 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/B/0148.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/B/0148.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/B/0150.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/B/0150.png index 656ee43b3..58b8c510e 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/B/0150.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/B/0150.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/B/0152.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/B/0152.png index 1c7a1068d..4e8578d65 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/B/0152.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/B/0152.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/B/0154.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/B/0154.png index c453609c1..bd68f12f8 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/B/0154.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/B/0154.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/B/0156.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/B/0156.png index 4c342e5a2..a2a1a4027 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/B/0156.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/B/0156.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/B/0158.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/B/0158.png index aab50cf80..11338a660 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/B/0158.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/B/0158.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/B/0160.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/B/0160.png index 1f739ab54..f4ece7d03 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/B/0160.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/B/0160.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/B/0162.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/B/0162.png index 9b5a457fb..2ad86baf2 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/B/0162.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/B/0162.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/F/0120.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/F/0120.png index c62e7ea1a..8e3eb4a84 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/F/0120.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/F/0120.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/F/0122.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/F/0122.png index 35014bf39..116e20dc4 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/F/0122.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/F/0122.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/F/0124.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/F/0124.png index 380db7e62..f2e7fe5fa 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/F/0124.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/F/0124.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/F/0126.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/F/0126.png index 229bfe3fc..6aaadccab 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/F/0126.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/F/0126.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/F/0128.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/F/0128.png index 5f52891ed..baae0787f 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/F/0128.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/F/0128.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/F/0130.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/F/0130.png index 25506ac22..b42635786 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/F/0130.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/F/0130.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/F/0132.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/F/0132.png index d836fb248..656cad720 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/F/0132.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/F/0132.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/F/0134.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/F/0134.png index 91629a3bd..39b6bfc18 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/F/0134.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/F/0134.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/F/0136.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/F/0136.png index 4c7ea2a59..f37ef5add 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/F/0136.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/F/0136.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/F/0138.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/F/0138.png index c6de85ece..bb506ebaa 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/F/0138.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/F/0138.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/F/0140.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/F/0140.png index 43e5768fb..6e60935a6 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/F/0140.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/F/0140.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/F/0142.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/F/0142.png index f4560629b..62e977158 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/F/0142.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/F/0142.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/F/0144.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/F/0144.png index 2e0686315..289c70dee 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/F/0144.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/F/0144.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/F/0146.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/F/0146.png index 8234def52..cd4ea95ab 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/F/0146.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/F/0146.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/F/0148.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/F/0148.png index b1cd69c68..d442a0193 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/F/0148.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/F/0148.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/F/0150.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/F/0150.png index f77dccc0a..68712d302 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/F/0150.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/F/0150.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/F/0152.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/F/0152.png index 03de6c28c..8df79192c 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/F/0152.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/F/0152.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/F/0154.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/F/0154.png index 0ac171266..0fe774f5c 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/F/0154.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/F/0154.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/F/0156.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/F/0156.png index 5119a1202..462ea7545 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/F/0156.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/F/0156.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/F/0158.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/F/0158.png index f660ee02f..7ee85741e 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/F/0158.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/F/0158.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/F/0160.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/F/0160.png index 602bd6961..b5a5d252e 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/F/0160.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/F/0160.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/F/0162.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/F/0162.png index 009697beb..be6575921 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/F/0162.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/F/0162.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/L/0120.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/L/0120.png index 6cac03cdb..7119f5141 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/L/0120.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/L/0120.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/L/0122.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/L/0122.png index c08de8f5c..8d81114c2 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/L/0122.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/L/0122.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/L/0124.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/L/0124.png index afe14170c..298c40394 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/L/0124.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/L/0124.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/L/0126.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/L/0126.png index e09fe10c4..a028f93ef 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/L/0126.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/L/0126.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/L/0128.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/L/0128.png index 385bc4855..37c5d5523 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/L/0128.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/L/0128.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/L/0130.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/L/0130.png index 124bb713f..8f19e288d 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/L/0130.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/L/0130.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/L/0132.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/L/0132.png index bd13666c8..8cf99707f 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/L/0132.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/L/0132.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/L/0134.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/L/0134.png index c157d4911..2302d9c1b 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/L/0134.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/L/0134.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/L/0136.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/L/0136.png index 85994b8c6..90876a5ca 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/L/0136.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/L/0136.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/L/0138.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/L/0138.png index 5777fa13e..3ae378bb5 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/L/0138.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/L/0138.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/L/0140.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/L/0140.png index 1be7dc5f4..df05be2ad 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/L/0140.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/L/0140.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/L/0142.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/L/0142.png index a0d586d58..2f2d56ce5 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/L/0142.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/L/0142.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/L/0144.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/L/0144.png index a2009b222..7d7f2402f 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/L/0144.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/L/0144.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/L/0146.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/L/0146.png index 1604ebff0..f89e9e128 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/L/0146.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/L/0146.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/L/0148.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/L/0148.png index b19495b18..7418b12b0 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/L/0148.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/L/0148.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/L/0150.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/L/0150.png index aa6f37cee..f5cac84dc 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/L/0150.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/L/0150.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/L/0152.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/L/0152.png index b4c4bd9e6..885cb1d5e 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/L/0152.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/L/0152.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/L/0154.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/L/0154.png index 078f8b053..c50bedcd7 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/L/0154.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/L/0154.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/L/0156.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/L/0156.png index ca32a9788..e726b242b 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/L/0156.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/L/0156.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/L/0158.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/L/0158.png index f57ca8761..c3d416490 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/L/0158.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/L/0158.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/L/0160.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/L/0160.png index 1b50d7437..09c835158 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/L/0160.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/L/0160.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/L/0162.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/L/0162.png index f7eeab4f3..2873f0703 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/L/0162.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/L/0162.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/R/0120.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/R/0120.png index a517716da..2f656864c 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/R/0120.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/R/0120.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/R/0122.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/R/0122.png index 365bbb4e9..2f26fb81c 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/R/0122.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/R/0122.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/R/0124.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/R/0124.png index 9e9c312d5..b214b1719 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/R/0124.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/R/0124.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/R/0126.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/R/0126.png index 043bd1c1b..ce620518a 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/R/0126.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/R/0126.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/R/0128.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/R/0128.png index b8a40c36f..838f5b397 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/R/0128.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/R/0128.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/R/0130.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/R/0130.png index cdc9247e6..bde18e5c0 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/R/0130.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/R/0130.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/R/0132.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/R/0132.png index f3e28e1ac..24b665983 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/R/0132.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/R/0132.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/R/0134.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/R/0134.png index a0bccec83..a4ecb0894 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/R/0134.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/R/0134.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/R/0136.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/R/0136.png index 1bd348af4..41e6b4d2f 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/R/0136.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/R/0136.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/R/0138.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/R/0138.png index 0c6ed90ed..8e932841a 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/R/0138.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/R/0138.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/R/0140.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/R/0140.png index e3643f4ba..29b97862d 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/R/0140.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/R/0140.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/R/0142.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/R/0142.png index ff584c830..07c3dec1d 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/R/0142.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/R/0142.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/R/0144.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/R/0144.png index e451c3942..2f5aba7f4 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/R/0144.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/R/0144.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/R/0146.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/R/0146.png index d7b8913b2..e73c71f35 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/R/0146.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/R/0146.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/R/0148.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/R/0148.png index 988f5f9d0..bfbb1b493 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/R/0148.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/R/0148.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/R/0150.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/R/0150.png index 7e7128d82..c44c71b7a 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/R/0150.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/R/0150.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/R/0152.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/R/0152.png index 82f1377cd..c49313900 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/R/0152.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/R/0152.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/R/0154.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/R/0154.png index 00fd4ecfd..dfd9f9f4e 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/R/0154.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/R/0154.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/R/0156.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/R/0156.png index b47c23078..108e32dd6 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/R/0156.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/R/0156.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/R/0158.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/R/0158.png index 5efd43466..6dbbac7d5 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/R/0158.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/R/0158.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/R/0160.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/R/0160.png index 5263fc86d..e152f9d12 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/R/0160.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/R/0160.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/R/0162.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/R/0162.png index f281e2e72..02d9aa576 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/R/0162.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A1/R/0162.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/BACK/0165.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/BACK/0165.png index 97f6a48bc..1852575f3 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/BACK/0165.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/BACK/0165.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/BACK/0167.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/BACK/0167.png index 67f6c98b4..3e63da97d 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/BACK/0167.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/BACK/0167.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/BACK/0169.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/BACK/0169.png index ab970697f..f254681be 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/BACK/0169.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/BACK/0169.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/BACK/0171.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/BACK/0171.png index 208b0b205..59b545ccc 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/BACK/0171.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/BACK/0171.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/BACK/0173.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/BACK/0173.png index a6cd84273..f8531509a 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/BACK/0173.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/BACK/0173.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/BACK/0175.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/BACK/0175.png index 9fee621c8..a23b2b695 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/BACK/0175.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/BACK/0175.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/BACK/0177.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/BACK/0177.png index cfd6c2a23..30fb8b9c2 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/BACK/0177.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/BACK/0177.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/BACK/0179.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/BACK/0179.png index 3e158a9d2..b68321440 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/BACK/0179.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/BACK/0179.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/BACK/0181.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/BACK/0181.png index f192cea48..64b346903 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/BACK/0181.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/BACK/0181.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/BACK/0183.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/BACK/0183.png index 8ddc922f6..fe1387a36 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/BACK/0183.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/BACK/0183.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/BACK/0185.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/BACK/0185.png index 8e8f952b9..0b7f97c26 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/BACK/0185.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/BACK/0185.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/BACK/0187.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/BACK/0187.png index 863bc5608..02bfd6ab2 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/BACK/0187.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/BACK/0187.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/BACK/0189.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/BACK/0189.png index 4dc08c3aa..a52ae4d83 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/BACK/0189.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/BACK/0189.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/BACK/0191.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/BACK/0191.png index ef3649fa9..c0e1e4456 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/BACK/0191.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/BACK/0191.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/BACK/0193.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/BACK/0193.png index 18bdea5c6..ce28b1342 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/BACK/0193.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/BACK/0193.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/BACK/0195.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/BACK/0195.png index 9ae49335a..553b66a38 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/BACK/0195.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/BACK/0195.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/BACK/0197.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/BACK/0197.png index 0452d6dbb..518d0d9e5 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/BACK/0197.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/BACK/0197.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/BACK/0199.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/BACK/0199.png index e6abe2de7..5a042c6e7 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/BACK/0199.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/BACK/0199.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/BACK/0201.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/BACK/0201.png index fef88da43..926b15022 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/BACK/0201.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/BACK/0201.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/BACK/0203.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/BACK/0203.png index c6f263a3e..d718e6d98 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/BACK/0203.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/BACK/0203.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/BACK/0205.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/BACK/0205.png index 6a5a3ceef..beeba943f 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/BACK/0205.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/BACK/0205.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/BACK/0207.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/BACK/0207.png index 22b7eac54..5ef8f3315 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/BACK/0207.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/BACK/0207.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/BACK/0209.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/BACK/0209.png index 95148f380..c702faa2e 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/BACK/0209.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/BACK/0209.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/BACK/0211.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/BACK/0211.png index f3be64f36..832d74804 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/BACK/0211.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/BACK/0211.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/BACK/0213.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/BACK/0213.png index 2f5064689..e9a2b64e4 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/BACK/0213.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/BACK/0213.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/BACK/0215.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/BACK/0215.png index 4b7a54f0f..b71ee1b40 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/BACK/0215.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/BACK/0215.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/BACK/0217.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/BACK/0217.png index a47d19485..6cb77d014 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/BACK/0217.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/BACK/0217.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/BACK/0219.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/BACK/0219.png index 6fd177b09..bc2d338eb 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/BACK/0219.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/BACK/0219.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/FRONT/0165.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/FRONT/0165.png index 37cf479f7..f331e088b 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/FRONT/0165.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/FRONT/0165.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/FRONT/0167.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/FRONT/0167.png index 7a3e19aff..42b0f0fe0 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/FRONT/0167.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/FRONT/0167.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/FRONT/0169.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/FRONT/0169.png index 50fa27e39..927d50a4a 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/FRONT/0169.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/FRONT/0169.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/FRONT/0171.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/FRONT/0171.png index 71e546043..41cebf152 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/FRONT/0171.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/FRONT/0171.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/FRONT/0173.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/FRONT/0173.png index 718206c1a..98a641fad 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/FRONT/0173.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/FRONT/0173.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/FRONT/0175.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/FRONT/0175.png index 94541d0b6..f266c1f0d 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/FRONT/0175.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/FRONT/0175.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/FRONT/0177.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/FRONT/0177.png index b2ac12c92..1caa3d6c7 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/FRONT/0177.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/FRONT/0177.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/FRONT/0179.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/FRONT/0179.png index 8a547801b..029d50ece 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/FRONT/0179.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/FRONT/0179.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/FRONT/0181.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/FRONT/0181.png index 14060da08..37521f7c8 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/FRONT/0181.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/FRONT/0181.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/FRONT/0183.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/FRONT/0183.png index 8967dcf4d..e87a4be8d 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/FRONT/0183.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/FRONT/0183.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/FRONT/0185.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/FRONT/0185.png index 62679b064..4e413d343 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/FRONT/0185.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/FRONT/0185.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/FRONT/0187.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/FRONT/0187.png index 4cabafcd1..899a9b274 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/FRONT/0187.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/FRONT/0187.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/FRONT/0189.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/FRONT/0189.png index e9f213d4b..84d5ba07f 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/FRONT/0189.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/FRONT/0189.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/FRONT/0191.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/FRONT/0191.png index a4de28def..85e2f0ee4 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/FRONT/0191.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/FRONT/0191.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/FRONT/0193.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/FRONT/0193.png index 9c2d0c609..ee457493b 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/FRONT/0193.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/FRONT/0193.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/FRONT/0195.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/FRONT/0195.png index 850aedfd4..8ae525cb6 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/FRONT/0195.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/FRONT/0195.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/FRONT/0197.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/FRONT/0197.png index d84af8fab..d614e0118 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/FRONT/0197.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/FRONT/0197.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/FRONT/0199.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/FRONT/0199.png index da20d0fe1..b73dff930 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/FRONT/0199.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/FRONT/0199.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/FRONT/0201.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/FRONT/0201.png index 25146becc..f350122fc 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/FRONT/0201.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/FRONT/0201.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/FRONT/0203.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/FRONT/0203.png index d637992c9..b0cffd796 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/FRONT/0203.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/FRONT/0203.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/FRONT/0205.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/FRONT/0205.png index 69a833b61..94ff10e32 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/FRONT/0205.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/FRONT/0205.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/FRONT/0207.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/FRONT/0207.png index 8c34d25f4..f38141cc4 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/FRONT/0207.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/FRONT/0207.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/FRONT/0209.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/FRONT/0209.png index c9f63c3a5..4b6b8f113 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/FRONT/0209.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/FRONT/0209.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/FRONT/0211.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/FRONT/0211.png index 4a0b61618..6e82ca06c 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/FRONT/0211.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/FRONT/0211.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/FRONT/0213.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/FRONT/0213.png index 9fbfb25b6..4e44f8feb 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/FRONT/0213.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/FRONT/0213.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/FRONT/0215.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/FRONT/0215.png index 176ddb13d..1314cb31b 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/FRONT/0215.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/FRONT/0215.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/FRONT/0217.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/FRONT/0217.png index 751907ff4..eee87b702 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/FRONT/0217.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/FRONT/0217.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/FRONT/0219.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/FRONT/0219.png index d849723f8..d981cb0d2 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/FRONT/0219.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/FRONT/0219.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/LEFT/0165.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/LEFT/0165.png index a88904a37..9cc68c206 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/LEFT/0165.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/LEFT/0165.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/LEFT/0167.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/LEFT/0167.png index 50f370247..2eb9009fd 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/LEFT/0167.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/LEFT/0167.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/LEFT/0169.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/LEFT/0169.png index 8ced06383..b143cbe1d 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/LEFT/0169.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/LEFT/0169.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/LEFT/0171.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/LEFT/0171.png index 52e6d5973..daffdeb84 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/LEFT/0171.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/LEFT/0171.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/LEFT/0173.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/LEFT/0173.png index b5abba6a6..edc45b960 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/LEFT/0173.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/LEFT/0173.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/LEFT/0175.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/LEFT/0175.png index 7cedf1fd1..55490a154 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/LEFT/0175.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/LEFT/0175.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/LEFT/0177.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/LEFT/0177.png index 21bcf1ded..aa06f1680 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/LEFT/0177.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/LEFT/0177.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/LEFT/0179.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/LEFT/0179.png index c85dc8de1..18107bd46 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/LEFT/0179.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/LEFT/0179.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/LEFT/0181.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/LEFT/0181.png index d5904597b..d4d337cf8 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/LEFT/0181.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/LEFT/0181.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/LEFT/0183.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/LEFT/0183.png index 2f5adec02..bd5f8657d 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/LEFT/0183.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/LEFT/0183.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/LEFT/0185.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/LEFT/0185.png index 0f31722f3..69ed32e2f 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/LEFT/0185.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/LEFT/0185.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/LEFT/0187.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/LEFT/0187.png index 3ddb507d7..b5926eae4 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/LEFT/0187.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/LEFT/0187.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/LEFT/0189.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/LEFT/0189.png index 038f41feb..19e4a33fe 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/LEFT/0189.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/LEFT/0189.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/LEFT/0191.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/LEFT/0191.png index 786896825..664dfd34a 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/LEFT/0191.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/LEFT/0191.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/LEFT/0193.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/LEFT/0193.png index 85e3ac989..67dd4625a 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/LEFT/0193.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/LEFT/0193.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/LEFT/0195.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/LEFT/0195.png index 8a22bbe46..87a146edd 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/LEFT/0195.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/LEFT/0195.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/LEFT/0197.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/LEFT/0197.png index d67cb6d87..209aa5c4b 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/LEFT/0197.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/LEFT/0197.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/LEFT/0199.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/LEFT/0199.png index b6072b393..c989cd20a 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/LEFT/0199.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/LEFT/0199.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/LEFT/0201.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/LEFT/0201.png index 1b8f441ad..01027112e 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/LEFT/0201.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/LEFT/0201.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/LEFT/0203.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/LEFT/0203.png index 41ae45ae3..d66ffd6fc 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/LEFT/0203.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/LEFT/0203.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/LEFT/0205.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/LEFT/0205.png index b19de59c1..520cc617c 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/LEFT/0205.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/LEFT/0205.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/LEFT/0207.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/LEFT/0207.png index 9ce8885c2..3c9b0318e 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/LEFT/0207.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/LEFT/0207.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/LEFT/0209.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/LEFT/0209.png index dc03fbedd..aa2f15d51 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/LEFT/0209.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/LEFT/0209.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/LEFT/0211.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/LEFT/0211.png index db50b4ee8..69db259ef 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/LEFT/0211.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/LEFT/0211.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/LEFT/0213.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/LEFT/0213.png index 87fe7c523..2dc8d45cd 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/LEFT/0213.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/LEFT/0213.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/LEFT/0215.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/LEFT/0215.png index 27ae373df..b2521f532 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/LEFT/0215.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/LEFT/0215.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/LEFT/0217.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/LEFT/0217.png index a505520bc..bd33ed824 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/LEFT/0217.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/LEFT/0217.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/LEFT/0219.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/LEFT/0219.png index b8e276b49..52b8a27ab 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/LEFT/0219.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/LEFT/0219.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/RIGHT/0165.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/RIGHT/0165.png index 197d6170a..2536bf128 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/RIGHT/0165.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/RIGHT/0165.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/RIGHT/0167.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/RIGHT/0167.png index 6d9901952..8c45e7187 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/RIGHT/0167.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/RIGHT/0167.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/RIGHT/0169.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/RIGHT/0169.png index 3f882b890..8d00bd798 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/RIGHT/0169.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/RIGHT/0169.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/RIGHT/0171.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/RIGHT/0171.png index eb735a414..8274da7ab 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/RIGHT/0171.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/RIGHT/0171.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/RIGHT/0173.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/RIGHT/0173.png index 0e83d0ac1..88635490a 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/RIGHT/0173.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/RIGHT/0173.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/RIGHT/0175.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/RIGHT/0175.png index 23c0fba51..d669f23d5 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/RIGHT/0175.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/RIGHT/0175.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/RIGHT/0177.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/RIGHT/0177.png index 690f1fcf5..16884b2a5 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/RIGHT/0177.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/RIGHT/0177.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/RIGHT/0179.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/RIGHT/0179.png index b484cb813..07994e9d8 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/RIGHT/0179.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/RIGHT/0179.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/RIGHT/0181.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/RIGHT/0181.png index fc772c266..575860fbf 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/RIGHT/0181.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/RIGHT/0181.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/RIGHT/0183.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/RIGHT/0183.png index ef1279def..70745218d 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/RIGHT/0183.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/RIGHT/0183.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/RIGHT/0185.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/RIGHT/0185.png index d91bcad44..18c179ad6 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/RIGHT/0185.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/RIGHT/0185.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/RIGHT/0187.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/RIGHT/0187.png index 3ceea602c..614b5ac3c 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/RIGHT/0187.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/RIGHT/0187.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/RIGHT/0189.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/RIGHT/0189.png index 5a8ffbd2c..3ae02241d 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/RIGHT/0189.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/RIGHT/0189.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/RIGHT/0191.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/RIGHT/0191.png index 924331a85..fb986d197 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/RIGHT/0191.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/RIGHT/0191.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/RIGHT/0193.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/RIGHT/0193.png index 30931d382..360a8979e 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/RIGHT/0193.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/RIGHT/0193.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/RIGHT/0195.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/RIGHT/0195.png index c771f09fb..2bb1e37ef 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/RIGHT/0195.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/RIGHT/0195.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/RIGHT/0197.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/RIGHT/0197.png index bd23cfa01..5d8041258 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/RIGHT/0197.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/RIGHT/0197.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/RIGHT/0199.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/RIGHT/0199.png index 7bfec9f5f..56a8508ce 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/RIGHT/0199.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/RIGHT/0199.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/RIGHT/0201.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/RIGHT/0201.png index 07cbe6950..70a97787b 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/RIGHT/0201.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/RIGHT/0201.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/RIGHT/0203.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/RIGHT/0203.png index b00318079..d3a359423 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/RIGHT/0203.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/RIGHT/0203.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/RIGHT/0205.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/RIGHT/0205.png index 8e3c34389..1002e381d 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/RIGHT/0205.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/RIGHT/0205.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/RIGHT/0207.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/RIGHT/0207.png index 083cd6193..bb439c44d 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/RIGHT/0207.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/RIGHT/0207.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/RIGHT/0209.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/RIGHT/0209.png index af7f389be..cc459d435 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/RIGHT/0209.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/RIGHT/0209.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/RIGHT/0211.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/RIGHT/0211.png index 22e00d29f..1ff4f1e20 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/RIGHT/0211.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/RIGHT/0211.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/RIGHT/0213.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/RIGHT/0213.png index 9c543ecd2..2784c0e79 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/RIGHT/0213.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/RIGHT/0213.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/RIGHT/0215.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/RIGHT/0215.png index f0f37baf8..c2c6e3e4e 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/RIGHT/0215.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/RIGHT/0215.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/RIGHT/0217.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/RIGHT/0217.png index fe5d33a15..768db6f99 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/RIGHT/0217.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/RIGHT/0217.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/RIGHT/0219.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/RIGHT/0219.png index c86dadf91..0146817f6 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/RIGHT/0219.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/A2/RIGHT/0219.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/APPEAR/L/0051.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/APPEAR/L/0051.png.import index 12cdccc56..76285b284 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/APPEAR/L/0051.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/APPEAR/L/0051.png.import @@ -32,4 +32,4 @@ 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 +detect_3d/compress_to=1 diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/APPEAR/L/0053.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/APPEAR/L/0053.png.import index 07f2e0eec..a9b78470c 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/APPEAR/L/0053.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/APPEAR/L/0053.png.import @@ -32,4 +32,4 @@ 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 +detect_3d/compress_to=1 diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/APPEAR/L/0055.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/APPEAR/L/0055.png.import index 909587f8b..fdd76e21b 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/APPEAR/L/0055.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/APPEAR/L/0055.png.import @@ -32,4 +32,4 @@ 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 +detect_3d/compress_to=1 diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/APPEAR/L/0057.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/APPEAR/L/0057.png.import index f44643b6f..47969b14d 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/APPEAR/L/0057.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/APPEAR/L/0057.png.import @@ -32,4 +32,4 @@ 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 +detect_3d/compress_to=1 diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/APPEAR/L/0059.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/APPEAR/L/0059.png.import index f0a42c035..177d9a820 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/APPEAR/L/0059.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/APPEAR/L/0059.png.import @@ -32,4 +32,4 @@ 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 +detect_3d/compress_to=1 diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/APPEAR/L/0061.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/APPEAR/L/0061.png.import index 948095bf5..5fce43c27 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/APPEAR/L/0061.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/APPEAR/L/0061.png.import @@ -32,4 +32,4 @@ 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 +detect_3d/compress_to=1 diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/APPEAR/L/0063.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/APPEAR/L/0063.png.import index e5a5bd943..1097e024e 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/APPEAR/L/0063.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/APPEAR/L/0063.png.import @@ -32,4 +32,4 @@ 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 +detect_3d/compress_to=1 diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/APPEAR/L/0065.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/APPEAR/L/0065.png.import index e227adbc7..d3440ef79 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/APPEAR/L/0065.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/APPEAR/L/0065.png.import @@ -32,4 +32,4 @@ 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 +detect_3d/compress_to=1 diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/APPEAR/L/0067.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/APPEAR/L/0067.png.import index 047c65a4d..9a9c667f4 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/APPEAR/L/0067.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/APPEAR/L/0067.png.import @@ -32,4 +32,4 @@ 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 +detect_3d/compress_to=1 diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/APPEAR/L/0069.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/APPEAR/L/0069.png.import index 28bc63bad..6205202ce 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/APPEAR/L/0069.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/APPEAR/L/0069.png.import @@ -32,4 +32,4 @@ 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 +detect_3d/compress_to=1 diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/APPEAR/L/0071.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/APPEAR/L/0071.png.import index df09802cf..29fe2df4d 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/APPEAR/L/0071.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/APPEAR/L/0071.png.import @@ -32,4 +32,4 @@ 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 +detect_3d/compress_to=1 diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/APPEAR/L/0073.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/APPEAR/L/0073.png.import index adad8e684..519d29f79 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/APPEAR/L/0073.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/APPEAR/L/0073.png.import @@ -32,4 +32,4 @@ 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 +detect_3d/compress_to=1 diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/APPEAR/L/0075.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/APPEAR/L/0075.png.import index 03644a214..6d90e42cd 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/APPEAR/L/0075.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/APPEAR/L/0075.png.import @@ -32,4 +32,4 @@ 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 +detect_3d/compress_to=1 diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/APPEAR/L/0077.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/APPEAR/L/0077.png.import index a1a4c2e1c..b716bce15 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/APPEAR/L/0077.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/APPEAR/L/0077.png.import @@ -32,4 +32,4 @@ 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 +detect_3d/compress_to=1 diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/APPEAR/L/0079.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/APPEAR/L/0079.png.import index 2071230f3..afb993818 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/APPEAR/L/0079.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/APPEAR/L/0079.png.import @@ -32,4 +32,4 @@ 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 +detect_3d/compress_to=1 diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/APPEAR/L/0081.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/APPEAR/L/0081.png.import index 8a3f55129..7199532ff 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/APPEAR/L/0081.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/APPEAR/L/0081.png.import @@ -32,4 +32,4 @@ 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 +detect_3d/compress_to=1 diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/APPEAR/L/0083.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/APPEAR/L/0083.png.import index 1a3b8692c..fe032dbe5 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/APPEAR/L/0083.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/APPEAR/L/0083.png.import @@ -32,4 +32,4 @@ 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 +detect_3d/compress_to=1 diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/APPEAR/L/0085.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/APPEAR/L/0085.png.import index 9fa2dcc3b..627305f54 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/APPEAR/L/0085.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/APPEAR/L/0085.png.import @@ -32,4 +32,4 @@ 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 +detect_3d/compress_to=1 diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/APPEAR/L/0087.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/APPEAR/L/0087.png.import index f821982b5..65143c1e6 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/APPEAR/L/0087.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/APPEAR/L/0087.png.import @@ -32,4 +32,4 @@ 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 +detect_3d/compress_to=1 diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/APPEAR/L/0089.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/APPEAR/L/0089.png.import index 993a42fe1..d18c5196e 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/APPEAR/L/0089.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/APPEAR/L/0089.png.import @@ -32,4 +32,4 @@ 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 +detect_3d/compress_to=1 diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/APPEAR/L/0091.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/APPEAR/L/0091.png.import index dfb5ff794..3734a3209 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/APPEAR/L/0091.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/APPEAR/L/0091.png.import @@ -32,4 +32,4 @@ 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 +detect_3d/compress_to=1 diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/APPEAR/L/0093.png.import b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/APPEAR/L/0093.png.import index 878477eac..e97993de0 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/APPEAR/L/0093.png.import +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/APPEAR/L/0093.png.import @@ -32,4 +32,4 @@ 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 +detect_3d/compress_to=1 diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/B/0000.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/B/0000.png index 3c7c102c8..dde614d6e 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/B/0000.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/B/0000.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/B/0002.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/B/0002.png index d9079196d..f28984a32 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/B/0002.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/B/0002.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/B/0004.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/B/0004.png index 5912364fe..54dfc1f19 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/B/0004.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/B/0004.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/B/0006.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/B/0006.png index 8a241339a..3902ea367 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/B/0006.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/B/0006.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/B/0008.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/B/0008.png index 4d6dd381e..8914e2d5c 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/B/0008.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/B/0008.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/B/0010.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/B/0010.png index f983aa45f..ea1becda5 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/B/0010.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/B/0010.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/B/0012.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/B/0012.png index 655ee0fc1..8ff305185 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/B/0012.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/B/0012.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/B/0014.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/B/0014.png index 3d5f4cccf..59a77a900 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/B/0014.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/B/0014.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/B/0016.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/B/0016.png index 76c275cb9..dcc4181a9 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/B/0016.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/B/0016.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/B/0018.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/B/0018.png index 157920520..6993ba078 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/B/0018.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/B/0018.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/B/0020.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/B/0020.png index 9ace5791b..4552b4792 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/B/0020.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/B/0020.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/B/0022.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/B/0022.png index 3f7814124..719945f86 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/B/0022.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/B/0022.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/B/0024.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/B/0024.png index 4fab85a55..61744d8fd 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/B/0024.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/B/0024.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/B/0026.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/B/0026.png index a8342429d..ab3f3b4bb 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/B/0026.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/B/0026.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/B/0028.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/B/0028.png index 493dfafd2..2cd3656eb 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/B/0028.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/B/0028.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/B/0030.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/B/0030.png index 4c33820be..ce05b7379 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/B/0030.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/B/0030.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/B/0032.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/B/0032.png index 122f232e9..44eb10cf7 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/B/0032.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/B/0032.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/B/0034.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/B/0034.png index 85aa4f165..282d816c2 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/B/0034.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/B/0034.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/B/0036.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/B/0036.png index a4314ab4f..08bf9e30f 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/B/0036.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/B/0036.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/B/0038.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/B/0038.png index 544f7dab8..de4e03699 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/B/0038.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/B/0038.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/B/0040.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/B/0040.png index a9aca0623..c74bac595 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/B/0040.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/B/0040.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/B/0042.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/B/0042.png index 5280d9600..75d181bca 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/B/0042.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/B/0042.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/B/0044.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/B/0044.png index 8309c7e08..3fc2f4adc 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/B/0044.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/B/0044.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/B/0046.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/B/0046.png index 026ef2915..4270d4579 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/B/0046.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/B/0046.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/B/0048.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/B/0048.png index 6dbea304b..fb0a1ac86 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/B/0048.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/B/0048.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/B/0050.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/B/0050.png index b17521ddf..ed954be39 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/B/0050.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/B/0050.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/F/0000.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/F/0000.png index 34d56ff82..ddac85911 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/F/0000.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/F/0000.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/F/0002.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/F/0002.png index c0735befb..cc3013b09 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/F/0002.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/F/0002.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/F/0004.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/F/0004.png index 27efc2708..e615a9a7b 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/F/0004.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/F/0004.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/F/0006.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/F/0006.png index 4d07b7fe4..9c3d77a72 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/F/0006.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/F/0006.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/F/0008.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/F/0008.png index 9ddd496cd..012638fcf 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/F/0008.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/F/0008.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/F/0010.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/F/0010.png index aae0736cc..455432473 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/F/0010.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/F/0010.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/F/0012.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/F/0012.png index 36f843379..5ce77bbb8 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/F/0012.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/F/0012.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/F/0014.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/F/0014.png index 5ae6ec6e0..7e1ffc6b0 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/F/0014.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/F/0014.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/F/0016.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/F/0016.png index 115668fce..b391eb83a 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/F/0016.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/F/0016.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/F/0018.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/F/0018.png index fe908f92c..4a4653861 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/F/0018.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/F/0018.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/F/0020.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/F/0020.png index 37bf6c3c2..5491eb5b8 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/F/0020.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/F/0020.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/F/0022.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/F/0022.png index 187e26a48..1242d24f4 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/F/0022.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/F/0022.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/F/0024.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/F/0024.png index 6c408b98e..1563f7096 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/F/0024.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/F/0024.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/F/0026.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/F/0026.png index cad6cef2e..b0b6ae2d0 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/F/0026.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/F/0026.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/F/0028.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/F/0028.png index 105a9e21b..8fe722065 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/F/0028.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/F/0028.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/F/0030.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/F/0030.png index 31e8a7d6d..5d9679f4d 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/F/0030.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/F/0030.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/F/0032.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/F/0032.png index c600f39d9..dae5319f0 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/F/0032.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/F/0032.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/F/0034.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/F/0034.png index f124d774b..c30119ddf 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/F/0034.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/F/0034.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/F/0036.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/F/0036.png index 627df426e..6c0b9c092 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/F/0036.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/F/0036.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/F/0038.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/F/0038.png index db0574870..16661216d 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/F/0038.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/F/0038.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/F/0040.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/F/0040.png index 9d3935d41..8971262a8 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/F/0040.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/F/0040.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/F/0042.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/F/0042.png index 12c19e756..55ef85251 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/F/0042.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/F/0042.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/F/0044.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/F/0044.png index c92074b66..34a0b4d09 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/F/0044.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/F/0044.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/F/0046.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/F/0046.png index d6ab02892..180fbafd1 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/F/0046.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/F/0046.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/F/0048.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/F/0048.png index a7b59d153..5004bf7e7 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/F/0048.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/F/0048.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/F/0050.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/F/0050.png index c60ef5902..ed8c0030f 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/F/0050.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/F/0050.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/L/0000.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/L/0000.png index bbbf1c6c3..8fe582653 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/L/0000.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/L/0000.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/L/0002.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/L/0002.png index fe54bc86c..595fce177 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/L/0002.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/L/0002.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/L/0004.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/L/0004.png index 6014e969f..35490675b 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/L/0004.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/L/0004.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/L/0006.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/L/0006.png index 87116f676..7d6a9117c 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/L/0006.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/L/0006.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/L/0008.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/L/0008.png index 6dd3e9837..56a4faf5c 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/L/0008.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/L/0008.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/L/0010.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/L/0010.png index 05ff8308c..eba489eaa 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/L/0010.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/L/0010.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/L/0012.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/L/0012.png index bdc3b7fe6..fb164f18e 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/L/0012.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/L/0012.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/L/0014.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/L/0014.png index 21637d86d..4ec27009a 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/L/0014.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/L/0014.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/L/0016.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/L/0016.png index ea582d22c..7657ab9b3 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/L/0016.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/L/0016.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/L/0018.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/L/0018.png index 4d1074274..6a6850042 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/L/0018.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/L/0018.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/L/0020.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/L/0020.png index c31cb893f..68e704403 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/L/0020.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/L/0020.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/L/0022.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/L/0022.png index 06c4d2e98..3cac2d5cb 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/L/0022.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/L/0022.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/L/0024.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/L/0024.png index e8c83ab2f..5355f0f85 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/L/0024.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/L/0024.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/L/0026.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/L/0026.png index 3359a871a..ad13b810e 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/L/0026.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/L/0026.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/L/0028.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/L/0028.png index d4a51733d..4679b2106 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/L/0028.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/L/0028.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/L/0030.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/L/0030.png index db14de590..36ec14462 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/L/0030.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/L/0030.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/L/0032.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/L/0032.png index 988015ea3..3ad426c0f 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/L/0032.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/L/0032.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/L/0034.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/L/0034.png index 863fd3193..712ed6e2c 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/L/0034.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/L/0034.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/L/0036.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/L/0036.png index 81bb0fd62..6242ac10a 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/L/0036.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/L/0036.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/L/0038.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/L/0038.png index 8124125a0..7b999f306 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/L/0038.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/L/0038.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/L/0040.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/L/0040.png index a57648634..8e38579ea 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/L/0040.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/L/0040.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/L/0042.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/L/0042.png index 28592d915..1e44a150a 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/L/0042.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/L/0042.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/L/0044.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/L/0044.png index d25924f7c..2e5fe6c10 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/L/0044.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/L/0044.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/L/0046.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/L/0046.png index c353baaff..817255320 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/L/0046.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/L/0046.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/L/0048.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/L/0048.png index 0cdd2bbb4..34aa2adbe 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/L/0048.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/L/0048.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/L/0050.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/L/0050.png index defd99cdf..8554a4779 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/L/0050.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/L/0050.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/R/0000.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/R/0000.png index 0f5dac41e..1607a7969 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/R/0000.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/R/0000.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/R/0002.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/R/0002.png index 872c86778..771630c35 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/R/0002.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/R/0002.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/R/0004.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/R/0004.png index 1edfcba83..4125c8af7 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/R/0004.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/R/0004.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/R/0006.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/R/0006.png index 495e86584..590f8010c 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/R/0006.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/R/0006.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/R/0008.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/R/0008.png index b05fa9ca2..7f383d629 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/R/0008.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/R/0008.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/R/0010.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/R/0010.png index 4536b8e4c..b4416089f 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/R/0010.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/R/0010.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/R/0012.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/R/0012.png index 65bab485e..a66a59044 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/R/0012.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/R/0012.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/R/0014.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/R/0014.png index dfee2a2e6..29c3cec72 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/R/0014.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/R/0014.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/R/0016.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/R/0016.png index 7eab4f65a..d1ea277dd 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/R/0016.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/R/0016.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/R/0018.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/R/0018.png index 978680a72..2b5a5ae30 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/R/0018.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/R/0018.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/R/0020.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/R/0020.png index 67ced7cf4..7eb74cf76 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/R/0020.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/R/0020.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/R/0022.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/R/0022.png index 3906e9b17..2df515b48 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/R/0022.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/R/0022.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/R/0024.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/R/0024.png index 43d60020d..dce0af8e7 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/R/0024.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/R/0024.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/R/0026.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/R/0026.png index 5536cd7ee..9f211fc89 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/R/0026.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/R/0026.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/R/0028.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/R/0028.png index fb08425b0..b3feeded4 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/R/0028.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/R/0028.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/R/0030.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/R/0030.png index 295dfff00..90b4e89f3 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/R/0030.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/R/0030.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/R/0032.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/R/0032.png index ae62b4b3c..1d27cca77 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/R/0032.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/R/0032.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/R/0034.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/R/0034.png index 5d0b1cbaf..a0c6ad9ef 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/R/0034.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/R/0034.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/R/0036.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/R/0036.png index 4c9494970..18012d030 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/R/0036.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/R/0036.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/R/0038.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/R/0038.png index a78f82ebe..03e63fd36 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/R/0038.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/R/0038.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/R/0040.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/R/0040.png index 926b72c45..06480ec63 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/R/0040.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/R/0040.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/R/0042.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/R/0042.png index ecdaf683f..492ec4c23 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/R/0042.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/R/0042.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/R/0044.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/R/0044.png index 599f5f827..0a764ffb8 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/R/0044.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/R/0044.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/R/0046.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/R/0046.png index 6c71d74cd..4bdcfcfb0 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/R/0046.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/R/0046.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/R/0048.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/R/0048.png index ec872cffb..dc62ccbf7 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/R/0048.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/R/0048.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/R/0050.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/R/0050.png index a5bd27895..1dfe6dbc5 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/R/0050.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CARMODE/R/0050.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0086.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0086.png index 9e70ef9f8..d0738f3f1 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0086.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0086.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0088.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0088.png index 4bc89a9f2..e1db1adab 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0088.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0088.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0090.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0090.png index a5b062e85..5f800725d 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0090.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0090.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0092.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0092.png index 575fa7c40..6830bc587 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0092.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0092.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0094.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0094.png index 7c7db5fc0..bd88f025b 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0094.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0094.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0096.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0096.png index 604ab571e..629e51a06 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0096.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0096.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0098.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0098.png index 9a2bac0ae..d5f4695d0 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0098.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0098.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0100.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0100.png index 3e30ffadb..02d542846 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0100.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0100.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0102.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0102.png index 083675ef6..ecf891bec 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0102.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0102.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0104.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0104.png index 7cc0e7271..964e7ae32 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0104.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0104.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0106.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0106.png index c15f80681..655461fb5 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0106.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0106.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0108.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0108.png index 9e76092be..f611741a7 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0108.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0108.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0110.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0110.png index 9bce3ffc8..9121e1b4e 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0110.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0110.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0112.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0112.png index 9143c7926..059362cd2 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0112.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0112.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0114.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0114.png index 268071228..4467dcc66 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0114.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0114.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0116.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0116.png index 8feabfc96..ced183596 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0116.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0116.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0118.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0118.png index 7b4a3e939..286c064f8 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0118.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0118.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0120.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0120.png index 30c1e23bc..760367b3b 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0120.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0120.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0122.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0122.png index 931674a55..60530901e 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0122.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0122.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0124.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0124.png index 935c3c0f2..ad628be2a 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0124.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0124.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0126.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0126.png index 1824643bb..b5d318256 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0126.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0126.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0128.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0128.png index 6d75ac005..2c04e909e 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0128.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0128.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0130.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0130.png index 2906adfcd..436de35ba 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0130.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0130.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0132.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0132.png index 50a72fb8d..a3b6d8864 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0132.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0132.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0134.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0134.png index f2d4fee57..9d7c5b229 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0134.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0134.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0136.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0136.png index 06040774d..318cc15b7 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0136.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0136.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0138.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0138.png index 39ebe0a92..a19b504d6 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0138.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0138.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0140.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0140.png index fb2117196..9dbba93c0 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0140.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0140.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0142.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0142.png index 8d80d75e2..d7dae3d41 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0142.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0142.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0144.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0144.png index 105b3be16..7ab49b7d1 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0144.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0144.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0146.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0146.png index 28bd47560..b47c91514 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0146.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0146.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0148.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0148.png index 9677c0c43..7523a7240 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0148.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0148.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0150.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0150.png index 7b82ec74a..015ed3225 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0150.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0150.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0152.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0152.png index b3d2f5a4e..58e8810b4 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0152.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0152.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0154.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0154.png index 5fe313db9..545d7aba1 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0154.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0154.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0156.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0156.png index a29b2aa5a..0fec6957a 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0156.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0156.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0158.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0158.png index d849f7fcc..bf7e72cab 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0158.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0158.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0160.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0160.png index dbc9c11f6..415a4af34 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0160.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0160.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0162.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0162.png index 8d85ad9c6..61faf398f 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0162.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0162.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0164.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0164.png index 206cc1427..f9c133a21 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0164.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0164.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0166.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0166.png index 816df4054..362c83acb 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0166.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0166.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0168.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0168.png index 738e9b787..e0642766b 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0168.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0168.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0170.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0170.png index b7140facd..03e33b20a 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0170.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0170.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0172.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0172.png index 207fe6bf6..e64f98dc0 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0172.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0172.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0174.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0174.png index 8f8564b29..fca616a0d 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0174.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0174.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0176.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0176.png index a146260f5..18b441d90 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0176.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0176.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0178.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0178.png index 1bff28f6e..1640b0aaf 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0178.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0178.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0180.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0180.png index f248b5cd1..ba473f516 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0180.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0180.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0182.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0182.png index 9165ed6ab..9ec459d10 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0182.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0182.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0184.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0184.png index a7bf4fe86..83beb8545 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0184.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0184.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0186.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0186.png index ef640ae63..a200e1b92 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0186.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0186.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0188.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0188.png index 5bf25a14c..a2b48e5b9 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0188.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0188.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0190.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0190.png index a3b96f418..10d86f55d 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0190.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0190.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0192.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0192.png index e7e3074ab..d4d9082c3 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0192.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0192.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0194.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0194.png index d67e59230..02c295fce 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0194.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0194.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0196.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0196.png index 2a7e92ac8..ce089cbcb 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0196.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0196.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0198.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0198.png index 64e8b1ec7..68d9d384c 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0198.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0198.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0200.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0200.png index d82edb968..f8bac3594 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0200.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0200.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0202.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0202.png index 6257bce64..decb12a79 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0202.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0202.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0204.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0204.png index 84462efc3..c49018d5b 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0204.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0204.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0206.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0206.png index 107f6abd5..605ef8364 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0206.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0206.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0208.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0208.png index 123419382..8cd254d2f 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0208.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0208.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0210.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0210.png index 55116e3a3..91710ddae 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0210.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0210.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0212.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0212.png index fbfb947bc..fe946db9d 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0212.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0212.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0214.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0214.png index 552d759f4..8eff11cbb 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0214.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0214.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0216.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0216.png index be53aa50b..fc66d9b1e 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0216.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0216.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0218.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0218.png index 2815cd394..71386ea0d 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0218.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0218.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0220.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0220.png index 2de37f334..c39c5ad6a 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0220.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0220.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0222.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0222.png index 0315365a0..a3a85eecf 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0222.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0222.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0224.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0224.png index d0ab1d669..7a2d3decf 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0224.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0224.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0226.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0226.png index 090039153..67e6d128e 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0226.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0226.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0228.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0228.png index 9326d2b92..b8083ef80 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0228.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0228.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0230.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0230.png index f789f6c8e..1b9dec1bd 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0230.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0230.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0232.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0232.png index 181eafc8a..e841cecbd 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0232.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0232.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0234.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0234.png index c99adca11..b9f8746b2 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0234.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0234.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0236.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0236.png index 6252aa612..ce262e879 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0236.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0236.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0238.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0238.png index 5058bb4bc..596f34aab 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0238.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0238.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0240.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0240.png index c7e3be763..4f63a48ee 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0240.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0240.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0242.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0242.png index bf7b25f88..0ee4f51af 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0242.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0242.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0244.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0244.png index 0a983df95..0c2870aa3 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0244.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0244.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0246.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0246.png index 2eba27389..67f25eebe 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0246.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0246.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0248.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0248.png index ad56e20ae..82325f24d 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0248.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0248.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0250.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0250.png index 5357881bf..6b610dd38 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0250.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0250.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0252.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0252.png index aa6bf67f7..4a7a1d75a 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0252.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0252.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0254.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0254.png index c56eee7ea..6f8460ff0 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0254.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0254.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0256.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0256.png index 453d00c62..e5756ea0e 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0256.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0256.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0258.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0258.png index edfa54a39..3066b91be 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0258.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0258.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0260.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0260.png index 2e7d17b76..3425b5a76 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0260.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0260.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0262.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0262.png index f46df38c6..415bf1565 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0262.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0262.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0264.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0264.png index 224e88826..5fa28164a 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0264.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0264.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0266.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0266.png index 97c4147bf..87d88757c 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0266.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0266.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0268.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0268.png index 9842d4960..a2ee2f568 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0268.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0268.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0270.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0270.png index 43cda9bfd..a2b1f677c 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0270.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0270.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0272.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0272.png index e20709a45..19b21b47c 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0272.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0272.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0274.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0274.png index 222ec82de..039865109 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0274.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0274.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0276.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0276.png index fd0031311..be92e01d7 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0276.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0276.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0278.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0278.png index 74cc8a36e..b8be7239a 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0278.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0278.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0280.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0280.png index 502c36f14..45f6e5ef9 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0280.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0280.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0282.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0282.png index 9a3b14476..aa12a3fc5 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0282.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0282.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0284.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0284.png index 8b8282038..347bf81e9 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0284.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0284.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0286.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0286.png index 995a99020..bd04270f2 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0286.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0286.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0288.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0288.png index 2df3bceb8..779f15757 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0288.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0288.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0290.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0290.png index 2c132df62..50f67a6df 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0290.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0290.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0292.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0292.png index cfbd71595..b6d8337be 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0292.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0292.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0294.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0294.png index 0f4bda1cc..2384223fc 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0294.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0294.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0296.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0296.png index ab0a3715f..537290947 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0296.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0296.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0298.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0298.png index 0dc44b691..bc1022f8e 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0298.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0298.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0300.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0300.png index fa9869228..741c9fccc 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0300.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/BACK/0300.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0086.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0086.png index afed8ffc5..f61ee35e2 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0086.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0086.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0088.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0088.png index e64544a72..d11bd4245 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0088.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0088.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0090.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0090.png index 55cc58679..ff71e9bfb 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0090.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0090.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0092.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0092.png index d970a7941..58a1b7aa5 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0092.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0092.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0094.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0094.png index 33e39ebc6..8ec412fd5 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0094.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0094.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0096.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0096.png index d9a81fe91..8168c2d7e 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0096.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0096.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0098.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0098.png index c2f746598..3d78310b3 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0098.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0098.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0100.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0100.png index 422840a41..695479a26 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0100.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0100.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0102.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0102.png index 779c55027..2503bdc21 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0102.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0102.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0104.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0104.png index bdacdf0d8..eb624e661 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0104.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0104.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0106.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0106.png index 610ddff34..73db88685 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0106.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0106.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0108.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0108.png index 8bf02ca0b..d63b15fa3 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0108.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0108.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0110.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0110.png index f01830d16..0b431bd96 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0110.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0110.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0112.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0112.png index 82b9e4550..847726e6b 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0112.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0112.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0114.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0114.png index b597931cf..8b1fdb85b 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0114.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0114.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0116.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0116.png index 402be7401..c44c7c3ab 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0116.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0116.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0118.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0118.png index 0e60074c4..b64db1107 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0118.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0118.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0120.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0120.png index ef0300cd2..3ec70d3f3 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0120.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0120.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0122.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0122.png index 38a402ad0..ab7d6bb68 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0122.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0122.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0124.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0124.png index f52cfcdf7..c0329d7c3 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0124.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0124.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0126.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0126.png index 4fc0ede57..096ea3f3b 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0126.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0126.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0128.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0128.png index 4356aec8e..2ad7c1322 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0128.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0128.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0130.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0130.png index 3a53bc3ef..4352c52ec 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0130.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0130.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0132.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0132.png index 4b37b1fce..7c3efa324 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0132.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0132.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0134.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0134.png index d480d8953..3315a6cb6 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0134.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0134.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0136.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0136.png index 8df5361ce..ece742372 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0136.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0136.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0138.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0138.png index 6547e344e..72de840df 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0138.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0138.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0140.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0140.png index 78eb67eb1..1f99815c3 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0140.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0140.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0142.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0142.png index 61f6ec06d..181770c8a 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0142.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0142.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0144.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0144.png index 8808bed40..86b2658ff 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0144.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0144.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0146.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0146.png index 6297e5386..4a2a5f307 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0146.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0146.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0148.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0148.png index 7629f25e3..bff8273f8 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0148.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0148.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0150.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0150.png index e39b8cf5b..67143d196 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0150.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0150.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0152.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0152.png index ecb458ba4..be79a78d2 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0152.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0152.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0154.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0154.png index 139ce6148..321ae2081 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0154.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0154.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0156.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0156.png index cdbc84d87..2a88f5f5a 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0156.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0156.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0158.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0158.png index ff9137f71..bc13ff733 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0158.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0158.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0160.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0160.png index 2670be386..0db7a441b 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0160.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0160.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0162.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0162.png index ac01d6d1a..fb30c2fbf 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0162.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0162.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0164.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0164.png index c7fb5525a..9ad8cf53c 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0164.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0164.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0166.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0166.png index 57d4c8d97..4133bb168 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0166.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0166.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0168.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0168.png index 99cc07a6a..1af4c75f0 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0168.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0168.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0170.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0170.png index 750c8fc99..92c75a183 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0170.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0170.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0172.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0172.png index 2a593f00f..4862331b7 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0172.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0172.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0174.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0174.png index a37a9db6f..f395fb869 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0174.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0174.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0176.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0176.png index 60c46423f..1682c3895 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0176.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0176.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0178.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0178.png index 2d4ddb5af..4a4d0d62a 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0178.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0178.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0180.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0180.png index 19b7fcafb..55d72ebeb 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0180.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0180.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0182.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0182.png index 4e47e7f82..6c72d9336 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0182.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0182.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0184.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0184.png index 8a348e71d..ec9abf6a4 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0184.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0184.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0186.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0186.png index d86cb9d4e..de912e9de 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0186.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0186.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0188.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0188.png index ec58ef16a..2ff2d04aa 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0188.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0188.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0190.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0190.png index cd96f4ada..3047c02c5 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0190.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0190.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0192.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0192.png index 54ee521da..7a2ad4142 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0192.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0192.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0194.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0194.png index cce23881e..38c556093 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0194.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0194.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0196.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0196.png index b47c10693..1b1ea46ce 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0196.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0196.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0198.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0198.png index b87d94473..e1447fbd3 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0198.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0198.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0200.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0200.png index f4b53f331..87cdec78c 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0200.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0200.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0202.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0202.png index 75281fca5..57f4283a1 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0202.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0202.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0204.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0204.png index a82a607a3..1ba39a917 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0204.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0204.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0206.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0206.png index a248bb663..4a5caa1f4 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0206.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0206.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0208.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0208.png index 4f1894011..058154f98 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0208.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0208.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0210.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0210.png index 6101795f7..b2a20d06b 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0210.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0210.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0212.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0212.png index 469787b27..e4992cdfa 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0212.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0212.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0214.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0214.png index 951f526e1..5432c1e84 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0214.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0214.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0216.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0216.png index e15c9ee10..a4306ae2e 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0216.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0216.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0218.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0218.png index 489f15188..00a59ccf8 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0218.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0218.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0220.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0220.png index 2effd37d2..964946cf6 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0220.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0220.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0222.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0222.png index 719050ae5..fd43ccee6 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0222.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0222.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0224.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0224.png index cb1b36cda..83f262a71 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0224.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0224.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0226.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0226.png index a6d48d751..0a56c4152 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0226.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0226.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0228.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0228.png index 97a464786..b527d03bf 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0228.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0228.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0230.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0230.png index af1c5177e..43e58decf 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0230.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0230.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0232.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0232.png index 434a24589..ab0157fea 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0232.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0232.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0234.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0234.png index 1051c73cb..1c935cc63 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0234.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0234.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0236.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0236.png index 197d01566..9c14eb854 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0236.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0236.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0238.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0238.png index eb51f8df1..16512998d 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0238.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0238.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0240.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0240.png index 9c4407454..3ae810c5b 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0240.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0240.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0242.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0242.png index c4ded0ac6..dd3dae8c7 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0242.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0242.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0244.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0244.png index c1793592c..097a6ea9b 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0244.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0244.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0246.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0246.png index 3a960f545..f0da3e369 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0246.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0246.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0248.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0248.png index 14f5296ad..52f412f57 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0248.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0248.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0250.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0250.png index d330c8d15..7f0689e51 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0250.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0250.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0252.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0252.png index 12ad6c9b0..fb24512ff 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0252.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0252.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0254.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0254.png index 5ec3f2f4a..845defa13 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0254.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0254.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0256.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0256.png index 6748e8c19..a54edb7f9 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0256.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0256.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0258.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0258.png index bef3fbf27..956447b6e 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0258.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0258.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0260.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0260.png index b6f7787c8..305749fd3 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0260.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0260.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0262.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0262.png index 300e2fc22..dc5aad9b1 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0262.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0262.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0264.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0264.png index 04adf1a16..add073f3e 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0264.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0264.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0266.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0266.png index eb56544aa..a57b8aad7 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0266.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0266.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0268.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0268.png index ab9df3558..81107f9e4 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0268.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0268.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0270.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0270.png index 6b5179048..70ba989b7 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0270.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0270.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0272.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0272.png index 60faa319e..3f201acdb 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0272.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0272.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0274.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0274.png index 48316e41e..034452a62 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0274.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0274.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0276.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0276.png index b9ba30fed..7b9961535 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0276.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0276.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0278.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0278.png index 6381534e5..9638b17e7 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0278.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0278.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0280.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0280.png index ef82d0521..dcb1158e8 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0280.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0280.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0282.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0282.png index 472d57363..f52f68dd6 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0282.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0282.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0284.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0284.png index 5e8c15590..ccfd3236d 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0284.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0284.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0286.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0286.png index b4c3373bd..8dd158082 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0286.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0286.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0288.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0288.png index bbce50ba7..65b6f4059 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0288.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0288.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0290.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0290.png index 0a8dd290b..5bfd029e8 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0290.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0290.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0292.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0292.png index 932040464..1fdc695e1 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0292.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0292.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0294.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0294.png index 604fac628..973d60b0d 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0294.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0294.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0296.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0296.png index 8921c2147..8627b5bbc 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0296.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0296.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0298.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0298.png index d2192e59d..83f50827c 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0298.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0298.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0300.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0300.png index f2215a7d1..a5c5784c4 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0300.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/FRONT/0300.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0086.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0086.png index 0d3a5d563..ad3557116 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0086.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0086.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0088.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0088.png index 51adff288..62d7ca3fa 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0088.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0088.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0090.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0090.png index 374acd302..bf6984847 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0090.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0090.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0092.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0092.png index 5d33301f8..7716de897 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0092.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0092.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0094.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0094.png index 13ea4ce99..48925e8a3 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0094.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0094.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0096.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0096.png index 71d70a479..af0dd95f1 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0096.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0096.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0098.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0098.png index af2e76ea4..0a0f678ef 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0098.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0098.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0100.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0100.png index 6577f595e..6477b2957 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0100.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0100.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0102.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0102.png index 97390e4eb..d5580a2c4 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0102.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0102.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0104.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0104.png index 31f7ec509..58e0b5790 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0104.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0104.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0106.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0106.png index d12e40a46..62a91c28f 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0106.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0106.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0108.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0108.png index 50b0eed00..fc37c9bf1 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0108.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0108.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0110.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0110.png index ddedc3fec..deb0492b1 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0110.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0110.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0112.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0112.png index dbb7c55ec..c356bdb33 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0112.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0112.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0114.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0114.png index 80ad19763..ea29d757b 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0114.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0114.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0116.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0116.png index d80579543..5ecd8245c 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0116.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0116.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0118.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0118.png index 3343b988c..ac547a37c 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0118.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0118.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0120.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0120.png index 98f997d6f..dca78d3a2 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0120.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0120.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0122.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0122.png index ad1d6ee4f..5c9ed31fd 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0122.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0122.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0124.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0124.png index 626167f41..83beca15d 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0124.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0124.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0126.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0126.png index 0b9236785..449f49471 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0126.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0126.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0128.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0128.png index ee58032cc..dc1d92d86 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0128.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0128.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0130.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0130.png index 48d3e30d2..999462082 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0130.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0130.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0132.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0132.png index 1618f82bf..47c3f9b25 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0132.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0132.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0134.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0134.png index 47993aecd..55fc77384 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0134.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0134.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0136.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0136.png index 69d3e1701..c861f6135 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0136.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0136.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0138.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0138.png index 2be4af38b..95db77241 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0138.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0138.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0140.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0140.png index 52d54cb0e..11c70371b 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0140.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0140.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0142.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0142.png index 7a48d741c..d6cd24fa5 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0142.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0142.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0144.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0144.png index ce1143f03..77a6a4184 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0144.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0144.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0146.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0146.png index 35de85e1b..338dbefb3 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0146.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0146.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0148.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0148.png index 19cbc6071..513a4202d 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0148.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0148.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0150.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0150.png index 482113e67..c9ce56710 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0150.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0150.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0152.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0152.png index d42b336c2..6140ac435 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0152.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0152.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0154.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0154.png index 63668caee..7a02cea78 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0154.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0154.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0156.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0156.png index 6403f42b8..64fe58034 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0156.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0156.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0158.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0158.png index 5c5f517a2..b8867d970 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0158.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0158.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0160.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0160.png index aa7ebeb34..4aa11e20f 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0160.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0160.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0162.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0162.png index fb26d5c95..728c9dbf4 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0162.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0162.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0164.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0164.png index 094866c1f..2993b50da 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0164.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0164.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0166.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0166.png index a1e567cb9..03e0a6a6a 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0166.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0166.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0168.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0168.png index 50a8c429a..6d94f2b50 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0168.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0168.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0170.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0170.png index 9a1abaf72..e37e03711 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0170.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0170.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0172.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0172.png index b9109f6db..4b2eccc40 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0172.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0172.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0174.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0174.png index 2c37d6cea..099fc375b 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0174.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0174.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0176.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0176.png index 756bb92c5..899f7481c 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0176.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0176.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0178.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0178.png index a2a7ef5e9..48ab802fb 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0178.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0178.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0180.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0180.png index 2d3f31206..a1b443b4d 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0180.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0180.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0182.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0182.png index db4066389..3d5135111 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0182.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0182.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0184.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0184.png index 3766bd6a3..853e96c54 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0184.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0184.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0186.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0186.png index 9a5d25999..411e730f0 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0186.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0186.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0188.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0188.png index 7a6020c79..27808d0c4 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0188.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0188.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0190.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0190.png index 4cecea550..faf9aa05a 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0190.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0190.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0192.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0192.png index 29455fa6a..4f6f5806f 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0192.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0192.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0194.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0194.png index 350358e9f..f37579ad5 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0194.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0194.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0196.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0196.png index 5a5617ae0..6551948ee 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0196.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0196.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0198.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0198.png index 5babc178d..d1da3319a 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0198.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0198.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0200.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0200.png index 64031a7ea..143115ed6 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0200.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0200.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0202.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0202.png index 5147cf269..3b3c16381 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0202.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0202.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0204.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0204.png index da9d400b2..f29abed47 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0204.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0204.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0206.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0206.png index 9f67fbabe..98d589881 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0206.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0206.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0208.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0208.png index 91086ece0..d1d3e1823 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0208.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0208.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0210.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0210.png index 84bab0a2b..72188af48 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0210.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0210.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0212.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0212.png index f1836f8ad..606a9f39f 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0212.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0212.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0214.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0214.png index 1b81099e2..d53c8c59d 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0214.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0214.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0216.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0216.png index f6ffbd86a..0bd7f4b19 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0216.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0216.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0218.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0218.png index 3bf995a5d..0aa8d4cd8 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0218.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0218.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0220.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0220.png index 4b724c98f..1f6e96fa8 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0220.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0220.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0222.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0222.png index dabe0febe..85a25cba9 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0222.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0222.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0224.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0224.png index 81a42543a..215aba63e 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0224.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0224.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0226.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0226.png index 1b48aacb9..1054f38b5 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0226.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0226.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0228.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0228.png index 808bf0103..68148544d 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0228.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0228.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0230.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0230.png index 11f3c5ce8..a9cfede7c 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0230.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0230.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0232.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0232.png index 67e3b3c05..69d86201a 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0232.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0232.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0234.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0234.png index 4ff575363..ae23de584 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0234.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0234.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0236.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0236.png index 3cbb1b08c..a61840882 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0236.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0236.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0238.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0238.png index a65b44cdf..97fe0875c 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0238.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0238.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0240.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0240.png index fb1b69cda..a90638a8e 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0240.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0240.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0242.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0242.png index 20db6991d..cc937bc1a 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0242.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0242.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0244.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0244.png index b5a13141d..f196a7039 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0244.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0244.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0246.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0246.png index d883baef3..e3f94df93 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0246.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0246.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0248.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0248.png index 119a9b753..db7191cab 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0248.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0248.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0250.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0250.png index b11d73de1..854e4741c 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0250.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0250.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0252.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0252.png index c4fd245fb..8248fad88 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0252.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0252.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0254.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0254.png index 2c2e1c54c..8f2e89567 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0254.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0254.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0256.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0256.png index 97dbf885d..b8b876304 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0256.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0256.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0258.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0258.png index 19bca95ef..3fb4a067c 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0258.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0258.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0260.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0260.png index ee5032fea..fdec0f744 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0260.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0260.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0262.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0262.png index 1f2460633..c5d8283af 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0262.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0262.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0264.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0264.png index e1a006477..73a6fc1ef 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0264.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0264.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0266.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0266.png index f12d91dea..b69e89c35 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0266.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0266.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0268.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0268.png index c4eeba219..93a08f478 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0268.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0268.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0270.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0270.png index e0ded92b7..92dab1841 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0270.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0270.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0272.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0272.png index 33198dc33..c445c4459 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0272.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0272.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0274.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0274.png index c3d693870..9d6ae8c5d 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0274.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0274.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0276.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0276.png index c2d64069a..7515fbdf1 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0276.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0276.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0278.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0278.png index f27ba8261..9c3ccc234 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0278.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0278.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0280.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0280.png index 8748dab06..f446b75c3 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0280.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0280.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0282.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0282.png index e4ec0723a..8e250f44b 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0282.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0282.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0284.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0284.png index 84eb30307..2f5b1c97b 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0284.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0284.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0286.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0286.png index e55e5d185..096f1841c 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0286.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0286.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0288.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0288.png index 9d1548caa..213bb5ffd 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0288.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0288.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0290.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0290.png index b04ccb97f..c53ccc285 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0290.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0290.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0292.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0292.png index 547fdd02d..c4e63cdd5 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0292.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0292.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0294.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0294.png index d46a2163d..9f9f4c405 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0294.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0294.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0296.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0296.png index e894a64a9..5f9bcd50c 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0296.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0296.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0298.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0298.png index 88d6a2a55..e154dc92c 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0298.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0298.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0300.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0300.png index 8e95594db..aaeb6025f 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0300.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/LEFT/0300.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0086.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0086.png index a12bbbba6..f74d8340a 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0086.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0086.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0088.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0088.png index 39ba9d07d..8cd06c57a 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0088.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0088.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0090.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0090.png index 49e8b50ea..aca30b56e 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0090.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0090.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0092.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0092.png index 43b74b043..bceac9c78 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0092.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0092.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0094.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0094.png index 1c4391b01..cf1f9eb84 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0094.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0094.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0096.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0096.png index 1c9d431e1..c6a319564 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0096.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0096.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0098.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0098.png index e137cedde..419d85477 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0098.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0098.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0100.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0100.png index 41af7787d..04eeb43d5 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0100.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0100.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0102.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0102.png index 4040f157e..7060448e4 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0102.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0102.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0104.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0104.png index 4311bfd02..1c67e8842 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0104.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0104.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0106.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0106.png index 071501134..99c616818 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0106.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0106.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0108.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0108.png index ac9ead823..2be0c2b58 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0108.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0108.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0110.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0110.png index 826c7d13c..d10d7cf3e 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0110.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0110.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0112.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0112.png index a27df0e38..32ef7b53a 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0112.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0112.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0114.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0114.png index e27cd9f5b..301f8deed 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0114.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0114.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0116.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0116.png index 1acdf8772..be428a434 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0116.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0116.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0118.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0118.png index cb6c32520..f72016073 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0118.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0118.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0120.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0120.png index f4af43469..8e83690a6 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0120.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0120.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0122.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0122.png index df2571a17..c023b92df 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0122.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0122.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0124.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0124.png index 40105a542..6b89f5652 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0124.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0124.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0126.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0126.png index d58eab5b1..675df6d6e 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0126.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0126.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0128.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0128.png index 3dcd3534c..d9a9144c5 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0128.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0128.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0130.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0130.png index cb15e89a7..742a32af7 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0130.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0130.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0132.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0132.png index 70c7d0980..c817748f6 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0132.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0132.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0134.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0134.png index c948bb411..40c78fcc6 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0134.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0134.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0136.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0136.png index b22236ba7..dae8cd34a 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0136.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0136.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0138.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0138.png index 8f8200ca0..95dc2d084 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0138.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0138.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0140.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0140.png index f8bf99050..0c9b7e2e4 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0140.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0140.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0142.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0142.png index 8dfe133bb..ae0eae5c6 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0142.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0142.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0144.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0144.png index 74108656b..000d56710 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0144.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0144.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0146.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0146.png index ff6126075..0c670ea29 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0146.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0146.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0148.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0148.png index e88487d76..dd90dd331 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0148.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0148.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0150.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0150.png index 527aeff53..961186e57 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0150.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0150.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0152.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0152.png index ba4a9ad49..fc6b6aa07 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0152.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0152.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0154.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0154.png index add83491c..d2bedf728 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0154.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0154.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0156.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0156.png index a3dc5373a..f9e505a13 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0156.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0156.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0158.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0158.png index 129fb1358..22ff1d147 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0158.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0158.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0160.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0160.png index 2e8b9ec13..568fc8190 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0160.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0160.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0162.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0162.png index 856314663..8b68c9eb6 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0162.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0162.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0164.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0164.png index 6899544a3..192542eb9 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0164.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0164.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0166.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0166.png index 82e2749e1..bce62166a 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0166.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0166.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0168.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0168.png index cc3ef0acc..e23188e28 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0168.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0168.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0170.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0170.png index e9ec7d266..95a10ec57 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0170.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0170.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0172.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0172.png index 9bd0000c2..7cf2ea4b5 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0172.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0172.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0174.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0174.png index 27ceb3748..94ee1ef4a 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0174.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0174.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0176.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0176.png index cd3aeb6be..8d3e68d07 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0176.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0176.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0178.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0178.png index 06f367d3a..0d8a69575 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0178.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0178.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0180.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0180.png index 7662dd58c..6c883a008 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0180.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0180.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0182.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0182.png index 72ebe2ce7..487c5f259 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0182.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0182.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0184.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0184.png index dc9d6d2b5..6a7eea4e9 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0184.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0184.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0186.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0186.png index d8a1b18a6..e51971ebb 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0186.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0186.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0188.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0188.png index c5d2380fd..2bbb9384f 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0188.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0188.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0190.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0190.png index 396509e47..f97efb80b 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0190.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0190.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0192.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0192.png index e672b2182..c17ce8a5f 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0192.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0192.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0194.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0194.png index e86320033..5442c5373 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0194.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0194.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0196.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0196.png index 2c02b3db4..e019c3bb1 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0196.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0196.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0198.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0198.png index 878994b30..ba7fb06da 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0198.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0198.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0200.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0200.png index 75f618e7b..2d16b540d 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0200.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0200.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0202.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0202.png index 9815e96c8..c663ef657 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0202.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0202.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0204.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0204.png index 75f7f9904..f3f36c207 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0204.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0204.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0206.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0206.png index 563598647..ff4f5cefd 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0206.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0206.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0208.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0208.png index 43f894877..79a5c1103 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0208.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0208.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0210.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0210.png index 482391d4f..1a5213776 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0210.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0210.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0212.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0212.png index a90e85d2b..019796f07 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0212.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0212.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0214.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0214.png index 26f5f6a58..6f763d921 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0214.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0214.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0216.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0216.png index 1f1da9814..d1bbb3b74 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0216.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0216.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0218.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0218.png index c37772e89..f4c29b14f 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0218.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0218.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0220.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0220.png index d8c0d0868..0cdf7d9ff 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0220.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0220.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0222.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0222.png index 8a38048f6..b30aadcfc 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0222.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0222.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0224.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0224.png index 2829e6128..ada7be3c1 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0224.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0224.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0226.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0226.png index 36e3e5f8d..70aea860f 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0226.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0226.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0228.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0228.png index a575b1bc1..c6584134d 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0228.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0228.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0230.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0230.png index 201d2f022..f2e10f06f 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0230.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0230.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0232.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0232.png index c456431e2..564ddc5b3 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0232.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0232.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0234.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0234.png index 1bf12d7da..8521e46d9 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0234.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0234.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0236.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0236.png index 429b9acde..88b925316 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0236.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0236.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0238.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0238.png index 8e74559a3..c53318674 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0238.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0238.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0240.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0240.png index 8e9869895..e0510add8 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0240.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0240.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0242.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0242.png index c8b932697..6a421dfa5 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0242.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0242.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0244.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0244.png index d76c035dc..aadbbd049 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0244.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0244.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0246.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0246.png index 68e8416e2..2c27cce96 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0246.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0246.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0248.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0248.png index e56d88e92..03d01f373 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0248.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0248.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0250.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0250.png index e5e56ad53..7007afe7c 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0250.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0250.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0252.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0252.png index 18048e2f9..d981ab653 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0252.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0252.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0254.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0254.png index d75bca980..7c6b0ee98 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0254.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0254.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0256.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0256.png index 178cd2b1d..2e5a490b0 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0256.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0256.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0258.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0258.png index d74e64e93..cf16123b8 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0258.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0258.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0260.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0260.png index b0931e5fe..544de2ad5 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0260.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0260.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0262.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0262.png index 3a465a87f..809147cd1 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0262.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0262.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0264.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0264.png index baa4c8330..459202a27 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0264.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0264.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0266.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0266.png index 0b1055aa7..592e5a831 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0266.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0266.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0268.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0268.png index 9015de6e7..9384a510b 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0268.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0268.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0270.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0270.png index 541f9729a..459d0dcf7 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0270.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0270.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0272.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0272.png index ef197245b..3ba84c54f 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0272.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0272.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0274.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0274.png index 1c47d6c09..a991bf259 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0274.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0274.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0276.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0276.png index 9f688869e..35afffe84 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0276.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0276.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0278.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0278.png index 08b7c3604..d1e2c436a 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0278.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0278.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0280.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0280.png index 1ade9db07..7b87a1280 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0280.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0280.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0282.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0282.png index 69872f815..09f16efbc 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0282.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0282.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0284.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0284.png index 168a705fe..e225bf4f5 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0284.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0284.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0286.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0286.png index 335e0c22d..28464d805 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0286.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0286.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0288.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0288.png index 4ec9bccdb..3664ad8be 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0288.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0288.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0290.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0290.png index a2a483726..e98d576cc 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0290.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0290.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0292.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0292.png index 49914a8dc..9d75f9c52 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0292.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0292.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0294.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0294.png index bc262fa07..087a5a694 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0294.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0294.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0296.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0296.png index 9f0318a4e..96afbd1b7 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0296.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0296.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0298.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0298.png index 50e6e958a..ba332074c 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0298.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0298.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0300.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0300.png index 2d4add53a..351430638 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0300.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/CLOTH_LOOP/RIGHT/0300.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/B/0093.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/B/0093.png index fed849c2e..31eedff51 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/B/0093.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/B/0093.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/B/0095.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/B/0095.png index 9533059c2..5a14b5609 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/B/0095.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/B/0095.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/B/0097.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/B/0097.png index f0e7f62c7..09f971bb3 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/B/0097.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/B/0097.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/B/0099.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/B/0099.png index 5bca0370e..d94b2462c 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/B/0099.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/B/0099.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/B/0101.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/B/0101.png index 6c1d5b841..c45d09a43 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/B/0101.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/B/0101.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/B/0103.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/B/0103.png index 10d997510..c1ef487c7 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/B/0103.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/B/0103.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/B/0105.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/B/0105.png index 581667ccd..30e6e278e 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/B/0105.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/B/0105.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/B/0107.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/B/0107.png index 60f26be6a..920092482 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/B/0107.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/B/0107.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/B/0109.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/B/0109.png index 357b24882..6a3060dce 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/B/0109.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/B/0109.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/B/0111.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/B/0111.png index ba6216d1d..b372b94aa 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/B/0111.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/B/0111.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/B/0113.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/B/0113.png index f346ad26c..e152fc9b4 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/B/0113.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/B/0113.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/B/0115.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/B/0115.png index 88e701253..7e943c43e 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/B/0115.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/B/0115.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/B/0117.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/B/0117.png index 9b27a05ec..b814c82eb 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/B/0117.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/B/0117.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/B/0119.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/B/0119.png index 865c34029..bfe673660 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/B/0119.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/B/0119.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/F/0093.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/F/0093.png index cab162f81..2a74fb426 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/F/0093.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/F/0093.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/F/0095.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/F/0095.png index 7e4785b2f..4f22c89d2 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/F/0095.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/F/0095.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/F/0097.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/F/0097.png index 11a2246ca..be67d97f9 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/F/0097.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/F/0097.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/F/0099.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/F/0099.png index c493d5698..6a58aa8e1 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/F/0099.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/F/0099.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/F/0101.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/F/0101.png index 3a87eec70..3ef91ba9f 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/F/0101.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/F/0101.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/F/0103.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/F/0103.png index 481d738a0..b4eebf959 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/F/0103.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/F/0103.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/F/0105.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/F/0105.png index 8f7db5069..124b5ddcb 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/F/0105.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/F/0105.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/F/0107.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/F/0107.png index 84dded908..ba708eb0d 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/F/0107.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/F/0107.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/F/0109.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/F/0109.png index 8df90bb3c..91861770b 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/F/0109.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/F/0109.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/F/0111.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/F/0111.png index 7e0a44707..416e8ea68 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/F/0111.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/F/0111.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/F/0113.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/F/0113.png index d9f8f7e69..f7653eda7 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/F/0113.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/F/0113.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/F/0115.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/F/0115.png index 54bfb0dfa..cfeb53fec 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/F/0115.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/F/0115.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/F/0117.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/F/0117.png index aa6410990..6bd339e70 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/F/0117.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/F/0117.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/F/0119.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/F/0119.png index 864580086..067ea6a23 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/F/0119.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/F/0119.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/L/0093.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/L/0093.png index b2aa1f9b3..1645d6564 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/L/0093.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/L/0093.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/L/0095.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/L/0095.png index 4f8540e9c..0f936c6c3 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/L/0095.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/L/0095.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/L/0097.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/L/0097.png index 1f6bef917..3de2e809d 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/L/0097.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/L/0097.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/L/0099.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/L/0099.png index 38858e8df..8065fa9fd 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/L/0099.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/L/0099.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/L/0101.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/L/0101.png index 863a071fc..8876421a6 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/L/0101.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/L/0101.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/L/0103.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/L/0103.png index 38ec7ac53..79d8a2105 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/L/0103.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/L/0103.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/L/0105.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/L/0105.png index eb65f1950..091e838d9 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/L/0105.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/L/0105.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/L/0107.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/L/0107.png index a8d6834c2..00eb7a5fc 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/L/0107.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/L/0107.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/L/0109.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/L/0109.png index 80b802114..ae628caf0 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/L/0109.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/L/0109.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/L/0111.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/L/0111.png index aa76ba422..d5437119d 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/L/0111.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/L/0111.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/L/0113.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/L/0113.png index e42d2d419..aef1b3157 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/L/0113.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/L/0113.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/L/0115.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/L/0115.png index 35974b6ce..6f7d7f1db 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/L/0115.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/L/0115.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/L/0117.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/L/0117.png index b73cd3b99..2d0d9104b 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/L/0117.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/L/0117.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/L/0119.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/L/0119.png index f5789775f..9e3ddf493 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/L/0119.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/L/0119.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/R/0093.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/R/0093.png index 1739f9e53..6c690b9f2 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/R/0093.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/R/0093.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/R/0095.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/R/0095.png index 722646cae..f8e9e519e 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/R/0095.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/R/0095.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/R/0097.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/R/0097.png index 3eb2bd935..571cc39bd 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/R/0097.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/R/0097.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/R/0099.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/R/0099.png index a4daf8d1d..2a78260e7 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/R/0099.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/R/0099.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/R/0101.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/R/0101.png index 752e1c4ae..e87e478d4 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/R/0101.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/R/0101.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/R/0103.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/R/0103.png index f2c0f1888..decf9dadf 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/R/0103.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/R/0103.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/R/0105.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/R/0105.png index d77c188b3..a6343fb5d 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/R/0105.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/R/0105.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/R/0107.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/R/0107.png index 79bdbf535..bb4facb24 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/R/0107.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/R/0107.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/R/0109.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/R/0109.png index dda614475..1b08c1e52 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/R/0109.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/R/0109.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/R/0111.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/R/0111.png index 6b9afb80d..ee9fcbfc4 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/R/0111.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/R/0111.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/R/0113.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/R/0113.png index 5e7807d01..3882aa980 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/R/0113.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/R/0113.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/R/0115.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/R/0115.png index e07e91a73..77ad64cf4 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/R/0115.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/R/0115.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/R/0117.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/R/0117.png index 665757940..007b8a220 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/R/0117.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/R/0117.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/R/0119.png b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/R/0119.png index 2a1a19ed1..4a058ef52 100644 Binary files a/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/R/0119.png and b/Zennysoft.Game.Ma/src/enemy/enemy_types/06. chariot/animations/IDLE/R/0119.png differ diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/07. chinthe/Chinthe.tscn b/Zennysoft.Game.Ma/src/enemy/enemy_types/07. chinthe/Chinthe.tscn index 64bb361d2..706b9dd4d 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/07. chinthe/Chinthe.tscn +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/07. chinthe/Chinthe.tscn @@ -63,7 +63,7 @@ shape = SubResource("CylinderShape3D_jbgmx") [node name="EnemyModelView" parent="." instance=ExtResource("3_ncr2e")] unique_name_in_owner = true -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1.46013, 0) +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.0461613, 0) EnemyLoreInfo = SubResource("Resource_120m2") [node name="Collision" type="Area3D" parent="."] diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/07. chinthe/ChintheModelView.tscn b/Zennysoft.Game.Ma/src/enemy/enemy_types/07. chinthe/ChintheModelView.tscn index 23801bac9..37a4590bf 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/07. chinthe/ChintheModelView.tscn +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/07. chinthe/ChintheModelView.tscn @@ -3225,7 +3225,7 @@ states/Start/position = Vector2(199, 100) states/Walking/node = SubResource("AnimationNodeStateMachine_7dl50") states/Walking/position = Vector2(348, 400.144) transitions = ["Start", "Unactivated Idle", SubResource("AnimationNodeStateMachineTransition_umemc"), "Unactivated Idle", "Activate", SubResource("AnimationNodeStateMachineTransition_t3xhd"), "Activate", "Idle", SubResource("AnimationNodeStateMachineTransition_5jjkq"), "Primary Attack", "Idle", SubResource("AnimationNodeStateMachineTransition_keq07"), "Idle", "Primary Skill", SubResource("AnimationNodeStateMachineTransition_manul"), "Primary Skill", "Teleport In", SubResource("AnimationNodeStateMachineTransition_auprl"), "Teleport In", "Idle", SubResource("AnimationNodeStateMachineTransition_i5vf2"), "Idle", "Primary Attack", SubResource("AnimationNodeStateMachineTransition_jbhro"), "Stop Walk", "Idle", SubResource("AnimationNodeStateMachineTransition_yu6fp"), "Idle", "Walking", SubResource("AnimationNodeStateMachineTransition_sgkk0"), "Walking", "Stop Walk", SubResource("AnimationNodeStateMachineTransition_8e7of")] -graph_offset = Vector2(-331.563, 111.889) +graph_offset = Vector2(-313.563, 209.889) [sub_resource type="AtlasTexture" id="AtlasTexture_tawq7"] atlas = ExtResource("395_ymova") @@ -3490,7 +3490,7 @@ rings = 8 script = ExtResource("1_6dej3") [node name="Shadow" type="Sprite3D" parent="."] -transform = Transform3D(0.75, 0, 0, 0, -3.27836e-08, 0.75, 0, -0.75, -3.27836e-08, 0.00589746, -1.41595, 0.0116717) +transform = Transform3D(0.75, 0, 0, 0, -3.27836e-08, 0.75, 0, -0.75, -3.27836e-08, 0.00589746, -0.0179769, 0.0116717) transparency = 0.1 cast_shadow = 0 modulate = Color(1, 1, 1, 0.591) @@ -3500,6 +3500,7 @@ texture = ExtResource("392_sgkk0") [node name="Sprite3D" type="Sprite3D" parent="."] unique_name_in_owner = true transform = Transform3D(1.5, 0, 0, 0, 1.5, 0, 0, 0, 1.5, 0, 0, 0) +offset = Vector2(0, 200) pixel_size = 0.005 billboard = 2 shaded = true @@ -3511,6 +3512,7 @@ texture = SubResource("ViewportTexture_h1kaf") visibility_layer = 0 offset_right = 40.0 offset_bottom = 40.0 +metadata/_edit_use_anchors_ = true [node name="SubViewport" type="SubViewport" parent="Sprite3D/SubViewportContainer"] disable_3d = true @@ -3527,7 +3529,7 @@ offset = Vector2(500, 500) [node name="Hitbox" type="Area3D" parent="."] unique_name_in_owner = true -transform = Transform3D(-1, 0, -8.74228e-08, 0, 1, 0, 8.74228e-08, 0, -1, -0.152949, 0, 0) +transform = Transform3D(-1, 0, -8.74228e-08, 0, 1, 0, 8.74228e-08, 0, -1, -0.152949, 1.39797, 0) collision_layer = 64 collision_mask = 64 @@ -3550,7 +3552,7 @@ advance_expression_base_node = NodePath("..") anim_player = NodePath("../AnimationPlayer") [node name="AnimatedSprite3D" type="AnimatedSprite3D" parent="."] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -0.788494, 0.186749, 0.63838) +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -0.788494, 1.58472, 0.63838) billboard = 2 render_priority = 101 sprite_frames = SubResource("SpriteFrames_4f8vl") @@ -3561,6 +3563,7 @@ libraries = { } [node name="GPUParticles3D" type="GPUParticles3D" parent="."] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1.39797, 0) emitting = false amount = 48 lifetime = 2.04 @@ -3571,9 +3574,11 @@ process_material = SubResource("ParticleProcessMaterial_dbwem") draw_pass_1 = SubResource("SphereMesh_xu4hf") [node name="Chinthe SFX" type="AudioStreamPlayer3D" parent="."] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1.39797, 0) max_distance = 25.0 [node name="WalkSFX" type="AudioStreamPlayer3D" parent="."] unique_name_in_owner = true +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1.39797, 0) autoplay = true bus = &"SFX" diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/08a. Ambassador/Ambassador.tscn b/Zennysoft.Game.Ma/src/enemy/enemy_types/08a. Ambassador/Ambassador.tscn index 9c5f10f0d..aa3c95366 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/08a. Ambassador/Ambassador.tscn +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/08a. Ambassador/Ambassador.tscn @@ -70,6 +70,7 @@ transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1.29778, 0) [node name="EnemyModelView" parent="Visual" instance=ExtResource("4_pjmem")] unique_name_in_owner = true +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, -1.26973, 0) [node name="PlayerDetector" type="Area3D" parent="."] unique_name_in_owner = true 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 4200017e3..079f1ca83 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 @@ -260,7 +260,7 @@ [ext_resource type="Texture2D" uid="uid://jcs07eo1xqtj" path="res://src/enemy/enemy_types/08a. Ambassador/animations/SIDE/Layer 171.png" id="258_q2wum"] [ext_resource type="Texture2D" uid="uid://btrum7jo404t0" path="res://src/enemy/enemy_types/08a. Ambassador/animations/SIDE/Layer 172.png" id="259_br04c"] [ext_resource type="AudioStream" uid="uid://bgumf0x52xmby" path="res://src/audio/sfx/enemy_ambassador_kick.ogg" id="260_dcx20"] -[ext_resource type="PackedScene" path="res://src/enemy/TwoAttacksEnemyAnimationTree.tscn" id="261_a705x"] +[ext_resource type="PackedScene" uid="uid://3ax3e5uce27d" path="res://src/enemy/TwoAttacksEnemyAnimationTree.tscn" id="261_a705x"] [ext_resource type="AudioStream" uid="uid://ugc77goiwht0" path="res://src/audio/sfx/enemy_ambassador_punch.ogg" id="261_evddb"] [ext_resource type="AnimationNodeStateMachine" uid="uid://co7lshemjrro8" path="res://src/enemy/animation_state_machines/IdleStateMachine.tres" id="262_rmbbl"] [ext_resource type="AnimationNodeStateMachine" uid="uid://cy2ngl55c0rws" path="res://src/enemy/animation_state_machines/WalkingStateMachine.tres" id="263_312rt"] @@ -2012,6 +2012,7 @@ EnemyLoreInfo = SubResource("Resource_f45wt") [node name="Sprite3D" type="Sprite3D" parent="."] unique_name_in_owner = true transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, -0.765249, 0) +offset = Vector2(0, 75) pixel_size = 0.02 billboard = 2 shaded = true @@ -2041,7 +2042,7 @@ animation = &"idle_front" [node name="Hitbox" type="Area3D" parent="."] unique_name_in_owner = true -transform = Transform3D(-1, 0, -8.74228e-08, 0, 1, 0, 8.74228e-08, 0, -1, -0.152949, 0, 0) +transform = Transform3D(-1, 0, -8.74228e-08, 0, 1, 0, 8.74228e-08, 0, -1, -0.152949, 1.30304, 0) collision_layer = 64 collision_mask = 64 @@ -2062,15 +2063,17 @@ tree_root = SubResource("AnimationNodeStateMachine_sroq1") advance_expression_base_node = NodePath("..") [node name="AudioStreamPlayer3D" type="AudioStreamPlayer3D" parent="."] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1.30304, 0) bus = &"SFX" [node name="WalkSFX" type="AudioStreamPlayer3D" parent="."] unique_name_in_owner = true +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1.30304, 0) autoplay = true bus = &"SFX" [node name="Shadow" type="Sprite3D" parent="."] -transform = Transform3D(0.835, 0, 0, 0, -3.6499e-08, 0.835, 0, -0.835, -3.6499e-08, 0.00393164, -1.31885, 0.0077811) +transform = Transform3D(0.835, 0, 0, 0, -3.6499e-08, 0.835, 0, -0.835, -3.6499e-08, 0.00393164, -0.0158064, 0.0077811) transparency = 0.1 cast_shadow = 0 modulate = Color(1, 1, 1, 0.591) 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 964d2465f..e546ac766 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 @@ -262,7 +262,7 @@ [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="AudioStream" uid="uid://bgumf0x52xmby" path="res://src/audio/sfx/enemy_ambassador_kick.ogg" id="261_qerwx"] [ext_resource type="Texture2D" uid="uid://dafpnwkwcukp4" path="res://src/vfx/shadow_test_1.png" id="261_xxvov"] -[ext_resource type="PackedScene" path="res://src/enemy/TwoAttacksEnemyAnimationTree.tscn" id="262_a3dro"] +[ext_resource type="PackedScene" uid="uid://3ax3e5uce27d" path="res://src/enemy/TwoAttacksEnemyAnimationTree.tscn" id="262_a3dro"] [ext_resource type="AnimationNodeStateMachine" uid="uid://co7lshemjrro8" path="res://src/enemy/animation_state_machines/IdleStateMachine.tres" id="263_qerwx"] [ext_resource type="AnimationNodeStateMachine" uid="uid://cbq8xog50cjjy" path="res://src/enemy/animation_state_machines/PrimaryAttackStateMachine.tres" id="264_xxvov"] [ext_resource type="AnimationNodeStateMachine" uid="uid://clybvwx3itfeo" path="res://src/enemy/animation_state_machines/SecondaryAttackStateMachine.tres" id="265_pta34"] @@ -1955,6 +1955,7 @@ EnemyLoreInfo = SubResource("Resource_f45wt") [node name="Sprite3D" type="Sprite3D" parent="."] unique_name_in_owner = true transform = Transform3D(1.5, 0, 0, 0, 1.5, 0, 0, 0, 1.5, 0, -0.941682, 0) +offset = Vector2(0, 75) pixel_size = 0.015 billboard = 2 shaded = true @@ -1986,7 +1987,7 @@ sprite_frames = SubResource("SpriteFrames_6drt6") animation = &"idle_front" [node name="Shadow" type="Sprite3D" parent="Sprite3D"] -transform = Transform3D(0.29, 0, 0, 0, -1.26763e-08, 0.29, 0, -0.29, -1.26763e-08, 0.00393164, -0.492758, 0.0077811) +transform = Transform3D(0.29, 0, 0, 0, -1.26763e-08, 0.29, 0, -0.29, -1.26763e-08, 0.00393164, 0.594971, 0.0077811) transparency = 0.1 cast_shadow = 0 modulate = Color(1, 1, 1, 0.591) @@ -1995,7 +1996,7 @@ texture = ExtResource("261_xxvov") [node name="Hitbox" type="Area3D" parent="."] unique_name_in_owner = true -transform = Transform3D(-1, 0, -8.74228e-08, 0, 1, 0, 8.74228e-08, 0, -1, -0.152949, 0, 0) +transform = Transform3D(-1, 0, -8.74228e-08, 0, 1, 0, 8.74228e-08, 0, -1, -0.152949, 1.11387, 0) collision_layer = 64 collision_mask = 64 @@ -2016,9 +2017,11 @@ tree_root = SubResource("AnimationNodeStateMachine_1o3cs") advance_expression_base_node = NodePath("..") [node name="AudioStreamPlayer3D" type="AudioStreamPlayer3D" parent="."] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1.63159, 0) bus = &"SFX" [node name="WalkSFX" type="AudioStreamPlayer3D" parent="."] unique_name_in_owner = true +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1.63159, 0) autoplay = true bus = &"SFX" diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/08c. Ambassador (steel)/AmbassadorSteel.tscn b/Zennysoft.Game.Ma/src/enemy/enemy_types/08c. Ambassador (steel)/AmbassadorSteel.tscn index 21b59775a..2147e8fe1 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/08c. Ambassador (steel)/AmbassadorSteel.tscn +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/08c. Ambassador (steel)/AmbassadorSteel.tscn @@ -68,6 +68,7 @@ transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1.32738, 0) [node name="EnemyModelView" parent="Visual" instance=ExtResource("4_kdt1g")] unique_name_in_owner = true +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, -1.28945, 0) [node name="PlayerDetector" type="Area3D" parent="."] unique_name_in_owner = true 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 66a264f35..d07080f24 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 @@ -261,7 +261,7 @@ [ext_resource type="Texture2D" uid="uid://dq238efl5je7g" path="res://src/enemy/enemy_types/08c. Ambassador (steel)/animations/SIDE/Layer 257.png" id="259_lw74j"] [ext_resource type="Texture2D" uid="uid://biaen4nwf0tpg" path="res://src/enemy/enemy_types/08c. Ambassador (steel)/animations/SIDE/Layer 258.png" id="260_3ft46"] [ext_resource type="AudioStream" uid="uid://bgumf0x52xmby" path="res://src/audio/sfx/enemy_ambassador_kick.ogg" id="261_5tr5n"] -[ext_resource type="PackedScene" path="res://src/enemy/TwoAttacksEnemyAnimationTree.tscn" id="262_47uje"] +[ext_resource type="PackedScene" uid="uid://3ax3e5uce27d" path="res://src/enemy/TwoAttacksEnemyAnimationTree.tscn" id="262_47uje"] [ext_resource type="AudioStream" uid="uid://ugc77goiwht0" path="res://src/audio/sfx/enemy_ambassador_punch.ogg" id="262_yj1cx"] [ext_resource type="AnimationNodeStateMachine" uid="uid://co7lshemjrro8" path="res://src/enemy/animation_state_machines/IdleStateMachine.tres" id="263_i2vbx"] [ext_resource type="AnimationNodeStateMachine" uid="uid://cbq8xog50cjjy" path="res://src/enemy/animation_state_machines/PrimaryAttackStateMachine.tres" id="264_5tr5n"] @@ -2016,6 +2016,7 @@ EnemyLoreInfo = SubResource("Resource_f45wt") [node name="Sprite3D" type="Sprite3D" parent="."] unique_name_in_owner = true transform = Transform3D(1.5, 0, 0, 0, 1.5, 0, 0, 0, 1.5, 0, -0.765249, 0) +offset = Vector2(0, 85) billboard = 2 shaded = true texture_filter = 0 @@ -2044,7 +2045,7 @@ animation = &"idle_front" [node name="Hitbox" type="Area3D" parent="."] unique_name_in_owner = true -transform = Transform3D(-1, 0, -8.74228e-08, 0, 1, 0, 8.74228e-08, 0, -1, -0.152949, 0, 0) +transform = Transform3D(-1, 0, -8.74228e-08, 0, 1, 0, 8.74228e-08, 0, -1, -0.152949, 1.2867, 0) collision_layer = 64 collision_mask = 64 @@ -2065,16 +2066,17 @@ tree_root = SubResource("AnimationNodeStateMachine_pjwch") advance_expression_base_node = NodePath("..") [node name="AudioStreamPlayer3D" type="AudioStreamPlayer3D" parent="."] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, -0.765249, 0) +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.521455, 0) bus = &"SFX" [node name="WalkSFX" type="AudioStreamPlayer3D" parent="."] unique_name_in_owner = true +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1.2867, 0) autoplay = true bus = &"SFX" [node name="Shadow" type="Sprite3D" parent="."] -transform = Transform3D(0.665, 0, 0, 0, -2.90681e-08, 0.665, 0, -0.665, -2.90681e-08, 0.00393164, -1.31885, 0.0077811) +transform = Transform3D(0.665, 0, 0, 0, -2.90681e-08, 0.665, 0, -0.665, -2.90681e-08, 0.00393164, -0.0321465, 0.0077811) transparency = 0.1 cast_shadow = 0 modulate = Color(1, 1, 1, 0.591) diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/AgniDemon.tscn b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/AgniDemon.tscn index f6e2e9dfe..acae3c37c 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/AgniDemon.tscn +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/AgniDemon.tscn @@ -10,8 +10,8 @@ [ext_resource type="AudioStream" uid="uid://bf7adfdd857hw" path="res://src/audio/sfx/enemy_morph.ogg" id="8_jvw36"] [sub_resource type="CapsuleShape3D" id="CapsuleShape3D_cwfph"] -radius = 0.226425 -height = 2.02807 +radius = 1.08524 +height = 2.21643 [sub_resource type="CylinderShape3D" id="CylinderShape3D_jbgmx"] height = 5.0 @@ -21,7 +21,7 @@ radius = 1.0 radius = 1.20703 [sub_resource type="CylinderShape3D" id="CylinderShape3D_tbkej"] -radius = 2.0 +radius = 2.55713 [node name="Agni" type="CharacterBody3D"] process_mode = 1 @@ -62,7 +62,7 @@ shape = SubResource("SphereShape3D_8vcnq") [node name="EnemyModelView" parent="." instance=ExtResource("3_tbkej")] unique_name_in_owner = true -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1.47389, 0) +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, -0.0147337, 0) [node name="PlayerDetector" type="Area3D" parent="."] unique_name_in_owner = true diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/AgniDemonModelView.tscn b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/AgniDemonModelView.tscn index 8ff18b201..163d8be64 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/AgniDemonModelView.tscn +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/09. Agni/AgniDemonModelView.tscn @@ -2090,6 +2090,7 @@ EnemyLoreInfo = SubResource("Resource_f45wt") [node name="Sprite3D" type="Sprite3D" parent="."] unique_name_in_owner = true +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1.48862, 0) billboard = 2 texture_filter = 0 render_priority = 100 @@ -2120,7 +2121,7 @@ offset = Vector2(400, 325) [node name="Hitbox" type="Area3D" parent="."] unique_name_in_owner = true -transform = Transform3D(-1, 0, -8.74228e-08, 0, 1, 0, 8.74228e-08, 0, -1, -0.152949, 0, 0) +transform = Transform3D(-1, 0, -8.74228e-08, 0, 1, 0, 8.74228e-08, 0, -1, -0.152949, 1.34728, 0) collision_layer = 64 collision_mask = 64 @@ -2149,14 +2150,14 @@ libraries = { autoplay = "default" [node name="OmniLight3D" type="OmniLight3D" parent="."] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, -0.402678, 0) +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1.08594, 0) light_color = Color(1, 0.690196, 0.333333, 1) light_energy = 2.726 omni_range = 2.507 [node name="Lava Audio" type="AudioStreamPlayer3D" parent="."] process_mode = 3 -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, -0.0108806, 0) +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1.47774, 0) autoplay = true max_distance = 10.0 bus = &"SFX" @@ -2164,5 +2165,6 @@ doppler_tracking = 1 [node name="WalkSFX" type="AudioStreamPlayer3D" parent="."] unique_name_in_owner = true +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1.48862, 0) autoplay = true bus = &"SFX" diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/10. Eden Pillar/Eden Pillar.tscn b/Zennysoft.Game.Ma/src/enemy/enemy_types/10. Eden Pillar/Eden Pillar.tscn index 2f7d6fc9c..f6d605cca 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/10. Eden Pillar/Eden Pillar.tscn +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/10. Eden Pillar/Eden Pillar.tscn @@ -1,10 +1,10 @@ [gd_scene load_steps=17 format=3 uid="uid://bsuv2suwjvla"] [ext_resource type="Script" uid="uid://d2m7esc5ypl7y" path="res://src/enemy/enemy_types/10. Eden Pillar/EdenPillar.cs" id="1_p8jc1"] -[ext_resource type="PackedScene" path="res://src/enemy/enemy_types/10. Eden Pillar/EdenPillarModelView.tscn" id="3_o285m"] -[ext_resource type="PackedScene" path="res://src/enemy/enemy_types/10. Eden Pillar/projectile_1.tscn" id="3_t4xb3"] -[ext_resource type="PackedScene" path="res://src/enemy/enemy_types/10. Eden Pillar/projectile_2.tscn" id="4_gf6oi"] -[ext_resource type="PackedScene" path="res://src/enemy/enemy_types/10. Eden Pillar/projectile_3.tscn" id="5_tahr6"] +[ext_resource type="PackedScene" uid="uid://dykkkt8mr1012" path="res://src/enemy/enemy_types/10. Eden Pillar/EdenPillarModelView.tscn" id="3_o285m"] +[ext_resource type="PackedScene" uid="uid://68xlg6uoenik" path="res://src/enemy/enemy_types/10. Eden Pillar/projectile_1.tscn" id="3_t4xb3"] +[ext_resource type="PackedScene" uid="uid://d1co3mi3bf8yj" path="res://src/enemy/enemy_types/10. Eden Pillar/projectile_2.tscn" id="4_gf6oi"] +[ext_resource type="PackedScene" uid="uid://coif30gd0sh8q" path="res://src/enemy/enemy_types/10. Eden Pillar/projectile_3.tscn" id="5_tahr6"] [ext_resource type="AudioStream" uid="uid://bgvt4kqyvl5gp" path="res://src/audio/sfx/ENEMY_EDEN_FIRE.ogg" id="6_d0njh"] [ext_resource type="AudioStream" uid="uid://ba8xendacec6" path="res://src/audio/sfx/item_kyuu_layer_2.ogg" id="9_gf6oi"] [ext_resource type="AudioStream" uid="uid://b7ycb6qvitpmw" path="res://src/audio/sfx/player_HITENEMY_3.ogg" id="10_tahr6"] @@ -51,7 +51,7 @@ collision_layer = 2 collision_mask = 2 [node name="CollisionShape3D" type="CollisionShape3D" parent="LineOfSight"] -transform = Transform3D(1, 0, 0, 0, -4.37114e-08, 1, 0, -1, -4.37114e-08, 0, 0, -2) +transform = Transform3D(1, 0, 0, 0, -4.37114e-08, 1, 0, -1, -4.37114e-08, 0, 0.83616, -2) shape = SubResource("CylinderShape3D_nveg0") [node name="AttackTimer" type="Timer" parent="."] @@ -79,6 +79,10 @@ unique_name_in_owner = true [node name="Projectile1" parent="." instance=ExtResource("3_t4xb3")] unique_name_in_owner = true +[node name="AnimatedSprite3D" parent="Projectile1/Bullet" index="0"] +transform = Transform3D(0.45, 0, 0, 0, 0.45, 0, 0, 0, 0.45, 0, 1.25, 0) +offset = Vector2(0, 175) + [node name="Projectile2" parent="." instance=ExtResource("4_gf6oi")] unique_name_in_owner = true @@ -142,3 +146,6 @@ collision_mask = 32 [node name="CollisionShape3D" type="CollisionShape3D" parent="LoseTrackOfPlayer"] shape = SubResource("CylinderShape3D_t4xb3") + +[editable path="Projectile1"] +[editable path="Projectile2"] 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 f8bdb8413..4d863bce5 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 @@ -291,7 +291,7 @@ _data = { script = ExtResource("1_qhmtu") [node name="EdenPillar" type="Node3D" parent="."] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, -4.28807, 0) +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1.21786, 0) [node name="MeshInstance" type="MeshInstance3D" parent="EdenPillar"] unique_name_in_owner = true diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/11. Palan/Palan.tscn b/Zennysoft.Game.Ma/src/enemy/enemy_types/11. Palan/Palan.tscn index 00c2f5899..0a521ceac 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/11. Palan/Palan.tscn +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/11. Palan/Palan.tscn @@ -11,15 +11,15 @@ [ext_resource type="AudioStream" uid="uid://mp00rngkpfjg" path="res://src/audio/sfx/enemy_palan_death.ogg" id="9_6scof"] [sub_resource type="CapsuleShape3D" id="CapsuleShape3D_cwfph"] -radius = 0.717471 -height = 2.02807 +radius = 1.7491 +height = 3.49819 [sub_resource type="CylinderShape3D" id="CylinderShape3D_jbgmx"] height = 5.0 radius = 1.0 [sub_resource type="SphereShape3D" id="SphereShape3D_8vcnq"] -radius = 1.20703 +radius = 2.04204 [sub_resource type="CylinderShape3D" id="CylinderShape3D_c82i6"] radius = 2.5 @@ -63,7 +63,7 @@ shape = SubResource("SphereShape3D_8vcnq") [node name="EnemyModelView" parent="." instance=ExtResource("4_3ahu6")] unique_name_in_owner = true -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1.51919, 0) +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.00132132, 0) [node name="PlayerDetector" type="Area3D" parent="."] unique_name_in_owner = true 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 3a3266ad8..34ea32346 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 @@ -2370,7 +2370,7 @@ script = ExtResource("1_yke7o") [node name="Sprite3D" type="Sprite3D" parent="."] unique_name_in_owner = true -transform = Transform3D(1.5, 0, 0, 0, 1.5, 0, 0, 0, 1.5, 0, 0.0366734, 0) +transform = Transform3D(1.5, 0, 0, 0, 1.5, 0, 0, 0, 1.5, 0, 1.58928, 0) pixel_size = 0.005 billboard = 1 alpha_cut = 1 @@ -2406,6 +2406,7 @@ libraries = { [node name="Sunblast" type="AnimatedSprite3D" parent="Sprite3D/AnimationPlayer2"] transform = Transform3D(0.335, 0, 0, 0, 0.335, 0, 0, 0, 0.335, -0.546079, 0.441674, 0) sprite_frames = SubResource("SpriteFrames_skutu") +frame = 15 [node name="Primary Attack" type="AnimatedSprite3D" parent="Sprite3D/AnimationPlayer2"] transform = Transform3D(0.275, 0, 0, 0, 0.275, 0, 0, 0, 0.275, 0, 1.33811, -0.317864) @@ -2415,7 +2416,7 @@ sprite_frames = SubResource("SpriteFrames_j3g1o") [node name="Hitbox" type="Area3D" parent="."] unique_name_in_owner = true -transform = Transform3D(-1, 0, -8.74228e-08, 0, 1, 0, 8.74228e-08, 0, -1, -0.152949, 0, 0) +transform = Transform3D(-1, 0, -8.74228e-08, 0, 1, 0, 8.74228e-08, 0, -1, -0.152949, 1.55261, 0) collision_layer = 64 collision_mask = 64 @@ -2439,19 +2440,22 @@ anim_player = NodePath("../AnimationPlayer") [node name="AudioStreamPlayer3D" type="AudioStreamPlayer3D" parent="."] process_mode = 3 +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1.55261, 0) bus = &"SFX" [node name="Projectile1" parent="." instance=ExtResource("210_lid5r")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1.55261, 0) [node name="Projectile2" parent="." instance=ExtResource("211_au0i1")] [node name="WalkSFX" type="AudioStreamPlayer3D" parent="."] unique_name_in_owner = true +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1.55261, 0) autoplay = true bus = &"SFX" [node name="Shadow" type="Sprite3D" parent="."] -transform = Transform3D(1.445, 0, 0, 0, -6.3163e-08, 1.445, 0, -1.445, -6.3163e-08, 0.00393164, -1.53476, 0.0077811) +transform = Transform3D(1.445, 0, 0, 0, -6.3163e-08, 1.445, 0, -1.445, -6.3163e-08, 0.00393164, 0.0178488, 0.0077811) transparency = 0.1 cast_shadow = 0 modulate = Color(1, 1, 1, 0.591) 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 653c62d5b..11cf6c308 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 @@ -3405,7 +3405,7 @@ script = ExtResource("1_h8pla") [node name="Sprite3D" type="Sprite3D" parent="."] unique_name_in_owner = true -transform = Transform3D(1.5, 0, 0, 0, 1.5, 0, 0, 0, 1.5, 0, 1.12245, 0) +transform = Transform3D(1.5, 0, 0, 0, 1.5, 0, 0, 0, 1.5, 0, 1.70362, 0) pixel_size = 0.005 billboard = 2 alpha_cut = 1 @@ -3433,7 +3433,7 @@ offset = Vector2(200, 200) [node name="Hitbox" type="Area3D" parent="."] unique_name_in_owner = true -transform = Transform3D(-1, 0, -8.74228e-08, 0, 1, 0, 8.74228e-08, 0, -1, -0.152949, 0, 0) +transform = Transform3D(-1, 0, -8.74228e-08, 0, 1, 0, 8.74228e-08, 0, -1, -0.152949, 0.581165, 0) collision_layer = 64 collision_mask = 64 @@ -3457,7 +3457,7 @@ anim_player = NodePath("../AnimationPlayer") [node name="AudioStreamPlayer3D" type="AudioStreamPlayer3D" parent="."] process_mode = 3 -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, -2.74915, 0) +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.0455525, 0) bus = &"SFX" [node name="VFX Animation Player" type="AnimationPlayer" parent="."] @@ -3479,5 +3479,6 @@ sprite_frames = SubResource("SpriteFrames_lgwan") [node name="WalkSFX" type="AudioStreamPlayer3D" parent="."] unique_name_in_owner = true +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.581165, 0) autoplay = true bus = &"SFX" diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/12. Shield of Heaven/ShieldOfHeaven.tscn b/Zennysoft.Game.Ma/src/enemy/enemy_types/12. Shield of Heaven/ShieldOfHeaven.tscn index 242020fee..17a74f2b7 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/12. Shield of Heaven/ShieldOfHeaven.tscn +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/12. Shield of Heaven/ShieldOfHeaven.tscn @@ -11,8 +11,8 @@ [ext_resource type="Texture2D" uid="uid://dafpnwkwcukp4" path="res://src/vfx/shadow_test_1.png" id="9_cacc5"] [sub_resource type="CapsuleShape3D" id="CapsuleShape3D_cwfph"] -radius = 0.226425 -height = 2.02807 +radius = 1.56622 +height = 3.13244 [sub_resource type="CylinderShape3D" id="CylinderShape3D_jbgmx"] height = 5.0 @@ -72,7 +72,7 @@ shape = SubResource("SphereShape3D_8vcnq") [node name="EnemyModelView" parent="." instance=ExtResource("3_r2swr")] unique_name_in_owner = true -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1.1154, 0) +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, -0.110944, 0) [node name="Components" type="Node3D" parent="."] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1.1154, 0) diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/13. gold sproingy/GoldSproingy.tscn b/Zennysoft.Game.Ma/src/enemy/enemy_types/13. gold sproingy/GoldSproingy.tscn index 95321bf59..597b03427 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/13. gold sproingy/GoldSproingy.tscn +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/13. gold sproingy/GoldSproingy.tscn @@ -1,7 +1,7 @@ [gd_scene load_steps=16 format=3 uid="uid://dy5mejtfv16u0"] [ext_resource type="Script" uid="uid://jjulhqd5g3be" path="res://src/enemy/enemy_types/13. gold sproingy/GoldSproingy.cs" id="1_o1o4d"] -[ext_resource type="PackedScene" path="res://src/enemy/enemy_types/13. gold sproingy/GoldSproingyModelView.tscn" id="2_o1o4d"] +[ext_resource type="PackedScene" uid="uid://dw7fyurv4vkd5" path="res://src/enemy/enemy_types/13. gold sproingy/GoldSproingyModelView.tscn" id="2_o1o4d"] [ext_resource type="PackedScene" uid="uid://cn4fv2gv6raql" path="res://src/enemy/behaviors/PatrolBehavior.tscn" id="3_dxqkk"] [ext_resource type="PackedScene" uid="uid://dld534cmm5twd" path="res://src/enemy/behaviors/FleeBehavior.tscn" id="4_58d4o"] [ext_resource type="AudioStream" uid="uid://ba8xendacec6" path="res://src/audio/sfx/item_kyuu_layer_2.ogg" id="5_pi08j"] @@ -88,6 +88,7 @@ transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 2.09874, 0) [node name="EnemyModelView" parent="Visual" instance=ExtResource("2_o1o4d")] unique_name_in_owner = true +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, -2.05694, 0) [node name="Components" type="Node3D" parent="."] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 2.09874, 0) 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 536b2ad9c..ad00ef9c5 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 @@ -611,7 +611,7 @@ EnemyLoreInfo = SubResource("Resource_ivy74") [node name="Sprite3D" type="Sprite3D" parent="."] unique_name_in_owner = true -transform = Transform3D(6, 0, 0, 0, 6, 0, 0, 0, 6, 0, 0, 0) +transform = Transform3D(6, 0, 0, 0, 6, 0, 0, 0, 6, 0, 1.95606, 0) pixel_size = 0.001 billboard = 2 shaded = true @@ -642,7 +642,7 @@ animation = &"idle_left_walk" [node name="Hitbox" type="Area3D" parent="."] unique_name_in_owner = true -transform = Transform3D(-1, 0, -8.74228e-08, 0, 1, 0, 8.74228e-08, 0, -1, -0.152949, 0, 0) +transform = Transform3D(-1, 0, -8.74228e-08, 0, 1, 0, 8.74228e-08, 0, -1, -0.152949, 1.95606, 0) collision_layer = 64 collision_mask = 64 @@ -667,11 +667,12 @@ anim_player = NodePath("../AnimationPlayer") [node name="WalkSFX" type="AudioStreamPlayer3D" parent="."] unique_name_in_owner = true +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1.95606, 0) autoplay = true bus = &"SFX" [node name="Shadow" type="Sprite3D" parent="."] -transform = Transform3D(0.29, 0, 0, 0, -1.26763e-08, 0.29, 0, -0.29, -1.26763e-08, 0.00393164, -1.31885, 0.0077811) +transform = Transform3D(0.29, 0, 0, 0, -1.26763e-08, 0.29, 0, -0.29, -1.26763e-08, 0.00393164, -0.0043391, 0.0077811) transparency = 0.1 cast_shadow = 0 modulate = Color(1, 1, 1, 0.591) diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/14. horse_head/HorseFace.tscn b/Zennysoft.Game.Ma/src/enemy/enemy_types/14. horse_head/HorseFace.tscn index 6e7a10a5d..014338b37 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/14. horse_head/HorseFace.tscn +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/14. horse_head/HorseFace.tscn @@ -33,7 +33,7 @@ shape = SubResource("CapsuleShape3D_nt5fo") [node name="EnemyModelView" parent="." instance=ExtResource("2_x21p4")] unique_name_in_owner = true -transform = Transform3D(0.15, 0, 0, 0, 0.15, 0, 0, 0, 0.15, 0, 0.826525, 0) +transform = Transform3D(0.15, 0, 0, 0, 0.15, 0, 0, 0, 0.15, 0, 0.0857229, 0) [node name="Collision" type="Area3D" parent="."] collision_layer = 2048 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 780f01704..5c198f9bc 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 @@ -4267,6 +4267,7 @@ script = ExtResource("1_58wyj") [node name="Armature" type="Node3D" parent="."] unique_name_in_owner = true +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 14.3398, 0) [node name="Skeleton3D" type="Skeleton3D" parent="Armature"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 1.82093, -1.14387, 2.05488) @@ -4274,7 +4275,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.19517e-08, 1.48981e-06, 0.000155807, -0.00105953, -2.01735) bones/0/enabled = true -bones/0/position = Vector3(0.0996386, -0.305531, -1.53144) +bones/0/position = Vector3(0.0996386, -0.100203, -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" @@ -4303,56 +4304,56 @@ 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.00548408, 0.0659449, 0.205413, 0.976436) +bones/4/rotation = Quaternion(-0.00638545, 0.0590521, 0.183295, 0.981262) bones/4/scale = Vector3(1, 1, 1) bones/5/name = "neck4" bones/5/parent = 4 bones/5/rest = Transform3D(0.999746, -0.0223582, -0.00293604, 0.0225401, 0.994675, 0.10057, 0.000671851, -0.10061, 0.994926, 2.23517e-07, 1.26785, -4.84288e-08) bones/5/enabled = true bones/5/position = Vector3(2.23517e-07, 1.26785, -4.84288e-08) -bones/5/rotation = Quaternion(-0.0503622, -0.000903181, 0.0112395, 0.998667) +bones/5/rotation = Quaternion(-0.0503622, -0.000903206, 0.0112395, 0.998667) bones/5/scale = Vector3(1, 1, 1) bones/6/name = "head1" 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.34044, 0.0518631, -0.487374, 0.80242) +bones/6/rotation = Quaternion(-0.327135, 0.0505906, -0.45005, 0.829384) bones/6/scale = Vector3(1, 1, 1) bones/7/name = "Bone.007" bones/7/parent = 6 bones/7/rest = Transform3D(0.919359, 0.388052, -0.0647639, -0.392726, 0.91499, -0.0925153, 0.0233576, 0.110489, 0.993603, -1.81049e-06, 1.774, 3.31551e-07) bones/7/enabled = true bones/7/position = Vector3(-1.81049e-06, 1.774, 3.31551e-07) -bones/7/rotation = Quaternion(0.051879, -0.02252, -0.199533, 0.978258) +bones/7/rotation = Quaternion(0.0518791, -0.02252, -0.199533, 0.978258) bones/7/scale = Vector3(1, 1, 1) bones/8/name = "TOP OF SKULL" bones/8/parent = 7 bones/8/rest = Transform3D(0.737897, 0.668505, 0.0927902, -0.666136, 0.699281, 0.259362, 0.108498, -0.253193, 0.961312, -1.41654e-06, 1.52173, -1.23307e-06) bones/8/enabled = true bones/8/position = Vector3(-1.41654e-06, 1.52173, -1.23307e-06) -bones/8/rotation = Quaternion(-0.139017, -0.00426026, -0.361986, 0.92175) +bones/8/rotation = Quaternion(-0.139017, -0.00426043, -0.361986, 0.92175) bones/8/scale = Vector3(1, 1, 1) bones/9/name = "Bone.009" bones/9/parent = 6 bones/9/rest = Transform3D(-0.103913, 0.969259, 0.223021, -0.986095, -0.12964, 0.103969, 0.129686, -0.209116, 0.969253, -1.81049e-06, 1.774, 3.31551e-07) bones/9/enabled = true bones/9/position = Vector3(-1.81049e-06, 1.774, 3.31551e-07) -bones/9/rotation = Quaternion(-0.118822, 0.0354223, -0.742093, 0.65873) +bones/9/rotation = Quaternion(-0.118822, 0.0354225, -0.742093, 0.65873) bones/9/scale = Vector3(1, 1, 1) bones/10/name = "Bone.010" bones/10/parent = 9 bones/10/rest = Transform3D(0.73102, -0.682334, -0.00551311, 0.677742, 0.726991, -0.110229, 0.0792208, 0.076843, 0.993891, -2.98023e-07, 2.05216, 2.38419e-07) bones/10/enabled = true bones/10/position = Vector3(-2.98023e-07, 2.05216, 2.38419e-07) -bones/10/rotation = Quaternion(0.0503442, -0.0228033, 0.366019, 0.928965) +bones/10/rotation = Quaternion(0.0503441, -0.0228033, 0.366019, 0.928965) bones/10/scale = Vector3(1, 1, 1) bones/11/name = "arm1_L" 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.807507, -0.0823642, -0.0235502, 0.583604) +bones/11/rotation = Quaternion(-0.814455, -0.0954406, -0.0238501, 0.571826) bones/11/scale = Vector3(1, 1, 1) bones/12/name = "arm2_L" bones/12/parent = 11 @@ -4379,7 +4380,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.0157695, 0.981227, 0.192212, 0.00107862, 3.8461, -0.0821097) bones/15/enabled = true -bones/15/position = Vector3(-0.196922, 3.60726, 0.0837666) +bones/15/position = Vector3(-0.168656, 3.38988, 0.124869) bones/15/rotation = Quaternion(-0.502686, 0.531044, 0.680821, -0.0422068) bones/15/scale = Vector3(1, 1, 1) bones/16/name = "arm2_R" @@ -4394,7 +4395,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.0395544, 0.0971454, 0.267161, 0.957927) +bones/17/rotation = Quaternion(-0.0077377, 0.0960272, 0.278179, 0.955686) bones/17/scale = Vector3(1, 1, 1) bones/18/name = "hand_R" bones/18/parent = 17 @@ -4407,7 +4408,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.0598959, 0.000155807, -0.00105953, -2.01735) bones/19/enabled = true -bones/19/position = Vector3(0.147751, -0.297316, -1.49267) +bones/19/position = Vector3(0.147751, -0.351276, -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" @@ -4415,21 +4416,21 @@ 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.437059, -0.326192, -0.370501, 0.751869) +bones/20/rotation = Quaternion(-0.438031, -0.297412, -0.399899, 0.748168) 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.047834, 0.00188777, 0.382627, 0.922662) +bones/21/rotation = Quaternion(-0.0492879, 0.00187756, 0.394257, 0.917676) bones/21/scale = Vector3(1, 1, 1) bones/22/name = "foot1_L" bones/22/parent = 21 bones/22/rest = Transform3D(0.101237, 0.986735, -0.126909, -0.955585, 0.0609562, -0.288344, -0.276783, 0.150463, 0.94908, 4.47035e-08, 7.00093, 2.65427e-08) bones/22/enabled = true bones/22/position = Vector3(4.47035e-08, 7.00093, 2.65427e-08) -bones/22/rotation = Quaternion(0.150998, 0.0515734, -0.668372, 0.726511) +bones/22/rotation = Quaternion(0.150998, 0.0515735, -0.668372, 0.726511) bones/22/scale = Vector3(1, 1, 1) bones/23/name = "foot2_L" bones/23/parent = 22 @@ -4442,21 +4443,21 @@ bones/24/name = "kneeIK_L" bones/24/parent = -1 bones/24/rest = Transform3D(-0.176321, 1.3411e-06, 0.984333, 0.984333, 1.66893e-06, 0.176321, -1.3411e-06, 1, -1.54972e-06, 1.83022, -6.67107, 3.18901) bones/24/enabled = true -bones/24/position = Vector3(2.31525, -7.34861, 2.3999) -bones/24/rotation = Quaternion(0.350356, 0.345508, 0.703917, 0.512226) +bones/24/position = Vector3(1.83022, -6.67107, 3.18901) +bones/24/rotation = Quaternion(0.453784, 0.542292, 0.542291, 0.453784) bones/24/scale = Vector3(1, 1, 1) bones/25/name = "heelIK_L" bones/25/parent = -1 bones/25/rest = Transform3D(-0.16376, -1.60933e-06, 0.9865, -0.9865, 1.19209e-07, -0.16376, 1.78814e-07, -1, -1.54972e-06, 1.91204, -13.5859, -3.56646) bones/25/enabled = true -bones/25/position = Vector3(2.86478, -12.4291, 1.43256) +bones/25/position = Vector3(2.68465, -12.4291, 1.43256) bones/25/rotation = Quaternion(-0.253375, 0.464951, -0.563517, 0.63409) bones/25/scale = Vector3(1, 1, 1) 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.0598959, -0.000155807, -0.00105953, -2.01735) bones/26/enabled = true -bones/26/position = Vector3(0.0289172, -0.308168, -1.59603) +bones/26/position = Vector3(0.0289171, -0.337192, -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" @@ -4464,21 +4465,21 @@ 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.316438, 0.174848, 0.183985, 0.914027) +bones/27/rotation = Quaternion(-0.306352, 0.192188, 0.173426, 0.916044) 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.269812, 0.0202071, -0.176048, 0.946467) +bones/28/rotation = Quaternion(-0.296585, 0.0199619, -0.193518, 0.934981) bones/28/scale = Vector3(1, 1, 1) bones/29/name = "foot1_R" bones/29/parent = 28 bones/29/rest = Transform3D(0.101237, -0.986735, 0.126909, 0.955585, 0.0609562, -0.288344, 0.276783, 0.150463, 0.94908, -1.2666e-07, 7.00093, 4.19095e-09) bones/29/enabled = true bones/29/position = Vector3(-1.2666e-07, 7.00093, 4.19095e-09) -bones/29/rotation = Quaternion(0.150998, -0.0515734, 0.668372, 0.726511) +bones/29/rotation = Quaternion(0.150998, -0.0515735, 0.668372, 0.726511) bones/29/scale = Vector3(1, 1, 1) bones/30/name = "foot2_R" bones/30/parent = 29 @@ -4498,7 +4499,7 @@ bones/32/name = "heelIK_R" bones/32/parent = -1 bones/32/rest = Transform3D(-0.16376, 1.60933e-06, -0.9865, 0.9865, 1.19209e-07, -0.16376, -1.78814e-07, -1, -1.54972e-06, -1.91204, -13.5859, -3.56646) bones/32/enabled = true -bones/32/position = Vector3(-3.87024, -12.3974, -5.7547) +bones/32/position = Vector3(-3.64758, -12.3224, -5.7547) bones/32/rotation = Quaternion(0.514417, 0.701671, -0.342235, -0.354835) bones/32/scale = Vector3(1, 1, 1) @@ -4508,12 +4509,12 @@ mesh = SubResource("ArrayMesh_jpm24") skin = SubResource("Skin_uxw16") [node name="BoneAttachment3D" type="BoneAttachment3D" parent="Armature/Skeleton3D"] -transform = Transform3D(-0.370165, -0.13327, -0.919357, -0.266254, -0.932916, 0.242438, -0.889993, 0.334525, 0.309849, -2.00357, 8.77453, 6.17365) +transform = Transform3D(-0.370165, -0.13327, -0.919357, -0.304221, -0.917693, 0.255518, -0.87774, 0.374272, 0.299154, -2.00357, 9.05467, 6.3324) bone_name = "TOP OF SKULL" bone_idx = 8 [node name="BoneAttachment3D2" type="BoneAttachment3D" parent="Armature/Skeleton3D"] -transform = Transform3D(0.960238, 0.142738, 0.239935, -0.232277, -0.0683425, 0.970246, 0.154889, -0.987399, -0.0324702, -2.41576, 1.71749, -8.93596) +transform = Transform3D(0.960238, 0.142739, 0.239935, -0.242198, -0.00155824, 0.970226, 0.138862, -0.989759, 0.033075, -2.41575, 1.93321, -9.13936) bone_name = "hand_R" bone_idx = 18 @@ -4545,14 +4546,16 @@ anim_player = NodePath("../AnimationPlayer") [node name="WalkSFX" type="AudioStreamPlayer3D" parent="."] unique_name_in_owner = true +transform = Transform3D(6.66667, 0, 0, 0, 6.66667, 0, 0, 0, 6.66667, 0, 14.3398, 0) autoplay = true bus = &"SFX" [node name="Walk2" type="AudioStreamPlayer3D" parent="."] +transform = Transform3D(6.66667, 0, 0, 0, 6.66667, 0, 0, 0, 6.66667, 0, 14.3398, 0) [node name="ExplodingModel" type="Node3D" parent="."] unique_name_in_owner = true -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -1.7636, -13.2193, -2.82374) +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -1.7636, 1.12053, -2.82374) visible = false [node name="Cube_035" type="MeshInstance3D" parent="ExplodingModel"] @@ -4783,6 +4786,7 @@ libraries = { } [node name="HORSE-FACE 1_1" type="Node3D" parent="."] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 14.3398, 0) [node name="Armature" type="Node3D" parent="HORSE-FACE 1_1"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 1.82093, 13.2705, 2.05488) 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 db75023cc..f4f40a999 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 @@ -2720,7 +2720,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.259574, -0.973649, -1.9731) +bones/0/position = Vector3(-0.259785, -0.997786, -1.97148) bones/0/rotation = Quaternion(0.0915277, -0.692111, -0.0341586, 0.715149) bones/0/scale = Vector3(1, 1, 1) bones/1/name = "spine0" @@ -2763,7 +2763,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.071436, -0.302948, -0.744736, 0.590328) +bones/6/rotation = Quaternion(-0.059088, -0.298461, -0.7445, 0.594264) bones/6/scale = Vector3(1, 1, 1) bones/7/name = "Bone.007" bones/7/parent = 6 @@ -2798,7 +2798,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.784157, -0.0611472, 0.0729822, 0.613215) +bones/11/rotation = Quaternion(-0.782742, -0.0599016, 0.075825, 0.614799) bones/11/scale = Vector3(1, 0.999999, 1) bones/12/name = "arm2_L" bones/12/parent = 11 @@ -2826,7 +2826,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.211209, 0.738719, 0.620737, -0.156111) +bones/15/rotation = Quaternion(-0.212527, 0.74078, 0.618523, -0.153321) bones/15/scale = Vector3(1, 1, 1) bones/16/name = "arm2_R" bones/16/parent = 15 @@ -2853,22 +2853,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.316941, -1.13929, -1.92912) -bones/19/rotation = Quaternion(0.614445, 0.308898, 0.566716, -0.453732) +bones/19/position = Vector3(-0.336379, -1.15767, -1.86507) +bones/19/rotation = Quaternion(0.618535, 0.304061, 0.560249, -0.459436) 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.313974, -0.438157, -0.277744, 0.795171) +bones/20/rotation = Quaternion(-0.318224, -0.43351, -0.284751, 0.793549) 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.0602229, 0.00130024, 0.487507, 0.871039) +bones/21/rotation = Quaternion(-0.0603283, 0.00129951, 0.48836, 0.870553) bones/21/scale = Vector3(1, 1, 1) bones/22/name = "foot1_L" bones/22/parent = 21 @@ -2902,7 +2902,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.211766, -1.11395, -2.01789) +bones/26/position = Vector3(-0.15463, -1.11395, -2.01828) bones/26/rotation = Quaternion(0.608697, -0.3155, -0.575514, -0.445793) bones/26/scale = Vector3(1, 1, 1) bones/27/name = "leg1_R" @@ -2910,14 +2910,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.207023, 0.422027, 0.141418, 0.871227) +bones/27/rotation = Quaternion(-0.205351, 0.42295, 0.140242, 0.871365) 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.063899, -0.00115725, -0.510164, 0.857699) +bones/28/rotation = Quaternion(-0.0635433, -0.00115959, -0.507324, 0.859409) bones/28/scale = Vector3(1, 1, 1) bones/29/name = "foot1_R" bones/29/parent = 28 @@ -2949,7 +2949,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.293698, -0.0788206, -0.952643, -0.329456, -0.927185, 0.178285, -0.897329, 0.366217, 0.246345, -1.66491, 8.29115, 4.94893) +transform = Transform3D(-0.279572, -0.0567501, -0.958446, -0.331841, -0.931021, 0.151922, -0.900955, 0.360526, 0.241455, -1.67751, 8.26145, 4.95195) bone_name = "TOP OF SKULL" bone_idx = 8 @@ -2972,7 +2972,7 @@ mesh = SubResource("ArrayMesh_5ew54") skin = SubResource("Skin_e330f") [node name="BoneAttachment3D2" type="BoneAttachment3D" parent="Armature/Skeleton3D"] -transform = Transform3D(-0.0452505, 0.0224977, -0.998721, -0.0856976, -0.996147, -0.0185572, -0.995291, 0.0847493, 0.0470038, -6.19067, -1.29717, -0.148127) +transform = Transform3D(-0.0460326, 0.0140066, -0.998841, -0.0839117, -0.996421, -0.010106, -0.995408, 0.0833502, 0.0470426, -6.23163, -1.27295, -0.152871) bone_name = "hand_R" bone_idx = 18 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 29917e430..31c84b12d 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 @@ -340,7 +340,7 @@ script = ExtResource("1_r5yku") [node name="LeftArms" type="Node3D" parent="."] unique_name_in_owner = true -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 1.25727, -7.67419, 0) +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 1.25727, -3.86927, 0) [node name="Arm1" parent="LeftArms" instance=ExtResource("1_ell80")] unique_name_in_owner = true @@ -359,7 +359,7 @@ unique_name_in_owner = true [node name="RightArms" type="Node3D" parent="."] unique_name_in_owner = true -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 1.25727, -7.67419, 0) +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 1.25727, -3.86927, 0) [node name="Arm6" parent="RightArms" instance=ExtResource("6_h1yna")] unique_name_in_owner = true @@ -374,7 +374,7 @@ unique_name_in_owner = true unique_name_in_owner = true [node name="DEMON WALL BASE + PIPES" type="Node3D" parent="."] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 1.25727, -7.67419, 0) +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 1.25727, -3.86927, 0) [node name="SMALL FACES" type="MeshInstance3D" parent="DEMON WALL BASE + PIPES"] mesh = SubResource("ArrayMesh_xb46g") @@ -426,11 +426,11 @@ skeleton = NodePath("") [node name="Rotation" type="Node3D" parent="."] unique_name_in_owner = true -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0.141497, 1.79568, 4.38761) +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0.141497, 5.6006, 4.38761) [node name="OpposingWall" type="AnimatableBody3D" parent="."] unique_name_in_owner = true -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 1.25727, -7.67419, 0) +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 1.25727, -3.86927, 0) visible = false collision_layer = 2 collision_mask = 2 @@ -454,6 +454,6 @@ anim_player = NodePath("../AnimationPlayer") [node name="WalkSFX" type="AudioStreamPlayer3D" parent="."] unique_name_in_owner = true -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 1.25727, -7.67419, 0) +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 1.25727, -3.86927, 0) autoplay = true bus = &"SFX" 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 21f9cc54a..b7825cc7e 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 @@ -10,7 +10,7 @@ [ext_resource type="AudioStream" uid="uid://bf7adfdd857hw" path="res://src/audio/sfx/enemy_morph.ogg" id="8_gxnga"] [sub_resource type="CapsuleShape3D" id="CapsuleShape3D_cwfph"] -radius = 0.226425 +radius = 0.997878 height = 2.02807 [sub_resource type="CylinderShape3D" id="CylinderShape3D_jbgmx"] @@ -62,7 +62,7 @@ shape = SubResource("SphereShape3D_8vcnq") [node name="EnemyModelView" parent="." instance=ExtResource("2_0hbxv")] unique_name_in_owner = true -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1.64877, 0) +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.0124374, 0) [node name="PlayerDetector" type="Area3D" parent="."] unique_name_in_owner = true 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 ffb08ea19..ce81967cc 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 @@ -2067,6 +2067,7 @@ EnemyLoreInfo = ExtResource("2_ejhrk") [node name="Sprite3D" type="Sprite3D" parent="."] unique_name_in_owner = true +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1.6405, 0) billboard = 2 texture_filter = 0 render_priority = 100 @@ -2097,7 +2098,7 @@ offset = Vector2(400, 375) [node name="Hitbox" type="Area3D" parent="."] unique_name_in_owner = true -transform = Transform3D(-1, 0, -8.74228e-08, 0, 1, 0, 8.74228e-08, 0, -1, -0.152949, 0, 0) +transform = Transform3D(-1, 0, -8.74228e-08, 0, 1, 0, 8.74228e-08, 0, -1, -0.152949, 1.6405, 0) collision_layer = 64 collision_mask = 64 @@ -2126,10 +2127,11 @@ libraries = { autoplay = "default" [node name="OmniLight3D" type="OmniLight3D" parent="."] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.565754, 0) +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 2.20625, 0) light_color = Color(0.607843, 1, 1, 1) [node name="AudioStreamPlayer3D" type="AudioStreamPlayer3D" parent="."] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1.6405, 0) stream = ExtResource("336_sm161") autoplay = true bus = &"SFX" @@ -2137,5 +2139,6 @@ doppler_tracking = 1 [node name="WalkSFX" type="AudioStreamPlayer3D" parent="."] unique_name_in_owner = true +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1.6405, 0) autoplay = true bus = &"SFX" diff --git a/Zennysoft.Game.Ma/src/data_viewer/BlurSprite3D.gdshader b/Zennysoft.Game.Ma/src/enemy_viewer/BlurSprite3D.gdshader similarity index 100% rename from Zennysoft.Game.Ma/src/data_viewer/BlurSprite3D.gdshader rename to Zennysoft.Game.Ma/src/enemy_viewer/BlurSprite3D.gdshader diff --git a/Zennysoft.Game.Ma/src/data_viewer/BlurSprite3D.gdshader.uid b/Zennysoft.Game.Ma/src/enemy_viewer/BlurSprite3D.gdshader.uid similarity index 100% rename from Zennysoft.Game.Ma/src/data_viewer/BlurSprite3D.gdshader.uid rename to Zennysoft.Game.Ma/src/enemy_viewer/BlurSprite3D.gdshader.uid diff --git a/Zennysoft.Game.Ma/src/data_viewer/DataViewerRepository.cs.uid b/Zennysoft.Game.Ma/src/enemy_viewer/DataViewerRepository.cs.uid similarity index 100% rename from Zennysoft.Game.Ma/src/data_viewer/DataViewerRepository.cs.uid rename to Zennysoft.Game.Ma/src/enemy_viewer/DataViewerRepository.cs.uid diff --git a/Zennysoft.Game.Ma/src/data_viewer/DataViewer.cs b/Zennysoft.Game.Ma/src/enemy_viewer/EnemyViewer.cs similarity index 89% rename from Zennysoft.Game.Ma/src/data_viewer/DataViewer.cs rename to Zennysoft.Game.Ma/src/enemy_viewer/EnemyViewer.cs index fd1ae7eeb..2f4419641 100644 --- a/Zennysoft.Game.Ma/src/data_viewer/DataViewer.cs +++ b/Zennysoft.Game.Ma/src/enemy_viewer/EnemyViewer.cs @@ -8,13 +8,8 @@ using Zennysoft.Game.Abstractions; namespace Zennysoft.Game.Ma; -public interface IDataViewer -{ - -} - [Meta(typeof(IAutoNode))] -public partial class DataViewer : Control, IDataViewer +public partial class EnemyViewer : Control, IEnemyViewer { public override void _Notification(int what) => this.Notify(what); @@ -24,6 +19,9 @@ public partial class DataViewer : Control, IDataViewer [Export] public float _cameraSpeed = 0.01f; + [Export] + public float _distance = 50; + [Node] public Node3D CameraPivot { get; set; } = default!; [Node] public Camera3D Camera3D { get; set; } = default!; @@ -126,19 +124,16 @@ public partial class DataViewer : Control, IDataViewer public override void _Process(double delta) { - if (_currentModel == null || BackButton.HasFocus()) - return; - - var forwardStrength = Input.GetActionStrength(GameInputs.CameraForward); - Camera3D.Position = Camera3D.Position.MoveToward(CameraPivot.Position, _cameraSpeed * forwardStrength * (_cameraStartingPoint / 10)); - var backStrength = Input.GetActionStrength(GameInputs.CameraBack); - Camera3D.Position = Camera3D.Position.MoveToward(CameraPivot.Position, -_cameraSpeed * backStrength * (_cameraStartingPoint / 10)); + var forwardStrength = Input.GetActionStrength(GameInputs.MoveUp); + Camera3D.Position = Camera3D.Position.MoveToward(CameraPivot.Position, _cameraSpeed * forwardStrength * (_cameraStartingPoint / 3)); + var backStrength = Input.GetActionStrength(GameInputs.MoveDown); + Camera3D.Position = Camera3D.Position.MoveToward(CameraPivot.Position, -_cameraSpeed * backStrength * (_cameraStartingPoint / 3)); var leftStrength = Input.GetActionStrength(GameInputs.MoveLeft); CameraPivot.RotateY(_cameraSpeed * leftStrength); var rightStrength = Input.GetActionStrength(GameInputs.MoveRight); CameraPivot.RotateY(-_cameraSpeed * rightStrength); - Camera3D.Position = Camera3D.Position.Clamp(new Vector3(0, 0, _cameraStartingPoint / 2), new Vector3(0, 0, _cameraStartingPoint)); + Camera3D.Position = Camera3D.Position.Clamp(new Vector3(0, 1, _cameraStartingPoint / 2), new Vector3(0, 1, _cameraStartingPoint)); ModelPivot.Rotation = ModelPivot.Rotation.Clamp(Mathf.DegToRad(-60), Mathf.DegToRad(60)); if (_currentModel is EnemyModelView2D enemyModelView2D) @@ -149,13 +144,9 @@ public partial class DataViewer : Control, IDataViewer { _currentModel = _enemies[_currentIndex]; - var size = _currentModel.GetSize(); - if (_currentModel is EnemyModelView2D) - _cameraStartingPoint = size.X / 50; - else - _cameraStartingPoint = size.X * 2; - + _cameraStartingPoint = (float)_currentModel.ViewerSize; Camera3D.Position = new Vector3(Camera3D.Position.X, Camera3D.Position.Y, _cameraStartingPoint); + EnemyName.Text = _currentModel.EnemyLoreInfo != null ? _currentModel.EnemyLoreInfo.Name : "Placeholder Text"; Description.Text = _currentModel.EnemyLoreInfo != null ? _currentModel.EnemyLoreInfo.Description : "Placeholder Text"; HPValue.Text = _currentModel.EnemyLoreInfo != null ? _currentModel.EnemyLoreInfo.MaximumHP : "Placeholder Text"; diff --git a/Zennysoft.Game.Ma/src/data_viewer/DataViewer.cs.uid b/Zennysoft.Game.Ma/src/enemy_viewer/EnemyViewer.cs.uid similarity index 100% rename from Zennysoft.Game.Ma/src/data_viewer/DataViewer.cs.uid rename to Zennysoft.Game.Ma/src/enemy_viewer/EnemyViewer.cs.uid diff --git a/Zennysoft.Game.Ma/src/data_viewer/DataViewer.tscn b/Zennysoft.Game.Ma/src/enemy_viewer/EnemyViewer.tscn similarity index 57% rename from Zennysoft.Game.Ma/src/data_viewer/DataViewer.tscn rename to Zennysoft.Game.Ma/src/enemy_viewer/EnemyViewer.tscn index a946cb16a..30326251d 100644 --- a/Zennysoft.Game.Ma/src/data_viewer/DataViewer.tscn +++ b/Zennysoft.Game.Ma/src/enemy_viewer/EnemyViewer.tscn @@ -1,23 +1,32 @@ -[gd_scene load_steps=19 format=3 uid="uid://b02ykp0nm7cyw"] +[gd_scene load_steps=29 format=3 uid="uid://b02ykp0nm7cyw"] -[ext_resource type="Script" uid="uid://bgaflnnur26vk" path="res://src/data_viewer/DataViewer.cs" id="1_1qako"] +[ext_resource type="Script" uid="uid://bgaflnnur26vk" path="res://src/enemy_viewer/EnemyViewer.cs" id="1_1qako"] [ext_resource type="Texture2D" uid="uid://dsf5l6g8n1tkw" path="res://src/ui/rendered_assets/SCREEN_RENDERS_Viewer_720_16_9.png" id="2_hpkd1"] -[ext_resource type="Texture2D" uid="uid://bophm5or5opdf" path="res://src/data_viewer/bafkreicavupacvvhtig6ii2zb3svww7luvmuknyttza6s4doxm4oursnzm.jpg" id="3_hpkd1"] -[ext_resource type="PackedScene" path="res://src/enemy/enemy_types/01. sproingy/SproingyModelView.tscn" id="3_vk1lh"] -[ext_resource type="Shader" uid="uid://o80s4yvp0rto" path="res://src/data_viewer/BlurSprite3D.gdshader" id="4_vk1lh"] +[ext_resource type="Texture2D" uid="uid://bophm5or5opdf" path="res://src/enemy_viewer/bafkreicavupacvvhtig6ii2zb3svww7luvmuknyttza6s4doxm4oursnzm.jpg" id="3_hpkd1"] +[ext_resource type="PackedScene" uid="uid://bjcqrhtifpcvr" path="res://src/enemy/enemy_types/01. sproingy/SproingyModelView.tscn" id="3_vk1lh"] +[ext_resource type="Shader" uid="uid://o80s4yvp0rto" path="res://src/enemy_viewer/BlurSprite3D.gdshader" id="4_vk1lh"] +[ext_resource type="PackedScene" uid="uid://b6sa6ntu4rbrm" path="res://src/enemy/enemy_types/03. filth_eater/FilthEaterModelView.tscn" id="5_w2r6i"] +[ext_resource type="PackedScene" uid="uid://g84hcmgo3gtl" path="res://src/enemy/enemy_types/04. sara/SaraModelView.tscn" id="6_rdiwx"] [ext_resource type="LabelSettings" uid="uid://b6f8ggy3ulonb" path="res://src/ui/label_settings/GeorgiaItalic.tres" id="6_vk1lh"] [ext_resource type="FontFile" uid="uid://beh6d5lo5ihq0" path="res://src/ui/fonts/georgiai.ttf" id="7_dvixg"] -[ext_resource type="PackedScene" path="res://src/enemy/enemy_types/02. michael/MichaelModelView.tscn" id="8_ekqja"] -[ext_resource type="PackedScene" path="res://src/enemy/enemy_types/05. ballos/BallosModelView.tscn" id="11_icshd"] -[ext_resource type="PackedScene" path="res://src/enemy/enemy_types/14. horse_head/HorseFaceModelView.tscn" id="19_qagkd"] -[ext_resource type="PackedScene" path="res://src/enemy/enemy_types/15. ox_face/OxFaceModelView.tscn" id="20_bw7jv"] -[ext_resource type="PackedScene" path="res://src/enemy/enemy_types/16. demon wall/DemonWallModelView.tscn" id="21_i7aes"] +[ext_resource type="PackedScene" uid="uid://dppmk4nx2le20" path="res://src/enemy/enemy_types/05. ballos/BallosModelView.tscn" id="7_w2r6i"] +[ext_resource type="PackedScene" uid="uid://uqle8gaeajg6" path="res://src/enemy/enemy_types/02. michael/MichaelModelView.tscn" id="8_ekqja"] +[ext_resource type="PackedScene" uid="uid://de6e8yv6mv4fe" path="res://src/enemy/enemy_types/07. chinthe/ChintheModelView.tscn" id="9_rdiwx"] +[ext_resource type="PackedScene" uid="uid://7eo16vsbrgi3" path="res://src/enemy/enemy_types/08a. Ambassador/AmbassadorModelView.tscn" id="10_rdiwx"] +[ext_resource type="PackedScene" uid="uid://d02te8cwjistl" path="res://src/enemy/enemy_types/08b. Ambassador (red)/AmbassadorSmallModelView.tscn" id="11_elpsj"] +[ext_resource type="PackedScene" uid="uid://g8km112r1lqa" path="res://src/enemy/enemy_types/08c. Ambassador (steel)/AmbassadorSteelModelView.tscn" id="12_3kprl"] +[ext_resource type="PackedScene" uid="uid://uynf2cg7wtqo" path="res://src/enemy/enemy_types/09. Agni/AgniDemonModelView.tscn" id="12_dr0jx"] +[ext_resource type="PackedScene" uid="uid://omkas04o46rq" path="res://src/enemy/enemy_types/9b. Aqueos Demon/AqueosModelView.tscn" id="13_dr0jx"] +[ext_resource type="PackedScene" uid="uid://cuar5bbhxie4r" path="res://src/enemy/enemy_types/11. Palan/PalanModelView.tscn" id="15_7bm5s"] +[ext_resource type="PackedScene" uid="uid://bochx2nfql67q" path="res://src/enemy/enemy_types/12. Shield of Heaven/ShieldModelView.tscn" id="16_7bm5s"] +[ext_resource type="PackedScene" uid="uid://dw7fyurv4vkd5" path="res://src/enemy/enemy_types/13. gold sproingy/GoldSproingyModelView.tscn" id="17_c1y0w"] +[ext_resource type="PackedScene" uid="uid://dykkkt8mr1012" path="res://src/enemy/enemy_types/10. Eden Pillar/EdenPillarModelView.tscn" id="18_r2vgt"] +[ext_resource type="PackedScene" uid="uid://c00olwjise7iv" path="res://src/enemy/enemy_types/14. horse_head/HorseFaceModelView.tscn" id="18_tnrj6"] +[ext_resource type="PackedScene" uid="uid://bbvw38l6407s2" path="res://src/enemy/enemy_types/15. ox_face/OxFaceModelView.tscn" id="19_elms1"] +[ext_resource type="PackedScene" uid="uid://b3oupv6tkt4ad" path="res://src/enemy/enemy_types/16. demon wall/DemonWallModelView.tscn" id="20_elms1"] [ext_resource type="StyleBox" uid="uid://bxuy4tnftibfq" path="res://src/options/SelectedOptionsBox.tres" id="25_gdy4a"] [ext_resource type="StyleBox" uid="uid://bl15q835s4ene" path="res://src/options/UnselectedOptionsBox.tres" id="26_br3ej"] - -[sub_resource type="Environment" id="Environment_vk1lh"] - -[sub_resource type="CameraAttributesPhysical" id="CameraAttributesPhysical_dvixg"] +[ext_resource type="Script" uid="uid://bc6iu0oq18y2l" path="res://src/player/DummyPlayer.cs" id="27_v1qxp"] [sub_resource type="ShaderMaterial" id="ShaderMaterial_dvixg"] render_priority = 0 @@ -31,9 +40,6 @@ shader_parameter/blur_y = 50.0 shader_parameter/Rot_Angle = 4.9 shader_parameter/Metal = 0.0 -[sub_resource type="Environment" id="Environment_3wl4s"] -background_mode = 1 - [node name="DataViewer" type="Control"] layout_mode = 3 anchors_preset = 15 @@ -45,6 +51,7 @@ size_flags_horizontal = 3 size_flags_vertical = 3 script = ExtResource("1_1qako") _cameraSpeed = 0.08 +_distance = 200.0 [node name="TextureRect" type="TextureRect" parent="."] layout_mode = 1 @@ -69,52 +76,115 @@ stretch = true [node name="SubViewport" type="SubViewport" parent="CenterContainer2/SubViewportContainer"] process_mode = 1 -own_world_3d = true handle_input_locally = false size = Vector2i(750, 600) render_target_update_mode = 4 -[node name="Light" type="OmniLight3D" parent="CenterContainer2/SubViewportContainer/SubViewport"] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1, 0.401216) -omni_range = 4096.0 - [node name="ModelPivot" type="Node3D" parent="CenterContainer2/SubViewportContainer/SubViewport"] unique_name_in_owner = true -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.82392, 0) [node name="Sproingy" parent="CenterContainer2/SubViewportContainer/SubViewport/ModelPivot" instance=ExtResource("3_vk1lh")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.26108, 0) +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, -1.00286, 0) visible = false +ViewerSize = 1.5 [node name="Michael" parent="CenterContainer2/SubViewportContainer/SubViewport/ModelPivot" instance=ExtResource("8_ekqja")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.20608, 0) +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, -1.00286, 0) visible = false +ViewerSize = 2.0 -[node name="Ballos" parent="CenterContainer2/SubViewportContainer/SubViewport/ModelPivot" instance=ExtResource("11_icshd")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.23608, 0) +[node name="FilthEater" parent="CenterContainer2/SubViewportContainer/SubViewport/ModelPivot" instance=ExtResource("5_w2r6i")] visible = false +ViewerSize = 3.5 -[node name="Horse Face" parent="CenterContainer2/SubViewportContainer/SubViewport/ModelPivot" instance=ExtResource("19_qagkd")] +[node name="Apsara" parent="CenterContainer2/SubViewportContainer/SubViewport/ModelPivot" instance=ExtResource("6_rdiwx")] visible = false +ViewerSize = 3.0 -[node name="Ox Face" parent="CenterContainer2/SubViewportContainer/SubViewport/ModelPivot" instance=ExtResource("20_bw7jv")] +[node name="Ballos" parent="CenterContainer2/SubViewportContainer/SubViewport/ModelPivot" instance=ExtResource("7_w2r6i")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, -0.796934, 0) visible = false +ViewerSize = 4.0 -[node name="Demon Wall" parent="CenterContainer2/SubViewportContainer/SubViewport/ModelPivot" instance=ExtResource("21_i7aes")] +[node name="Chinthe" parent="CenterContainer2/SubViewportContainer/SubViewport/ModelPivot" instance=ExtResource("9_rdiwx")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, -0.41574, 0) visible = false +ViewerSize = 3.5 + +[node name="AmbassadorGreen" parent="CenterContainer2/SubViewportContainer/SubViewport/ModelPivot" instance=ExtResource("10_rdiwx")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, -0.509494, 0) +visible = false +ViewerSize = 3.5 + +[node name="AmbassadorRed" parent="CenterContainer2/SubViewportContainer/SubViewport/ModelPivot" instance=ExtResource("11_elpsj")] +visible = false +ViewerSize = 2.5 + +[node name="AmbassadorSteel" parent="CenterContainer2/SubViewportContainer/SubViewport/ModelPivot" instance=ExtResource("12_3kprl")] +visible = false +ViewerSize = 3.0 + +[node name="AgniDemon" parent="CenterContainer2/SubViewportContainer/SubViewport/ModelPivot" instance=ExtResource("12_dr0jx")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, -0.5, 0) +visible = false +ViewerSize = 4.0 + +[node name="AqueosDemon" parent="CenterContainer2/SubViewportContainer/SubViewport/ModelPivot" instance=ExtResource("13_dr0jx")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, -0.3, 0) +visible = false +ViewerSize = 4.0 + +[node name="Palan" parent="CenterContainer2/SubViewportContainer/SubViewport/ModelPivot" instance=ExtResource("15_7bm5s")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, -0.492472, 0) +visible = false +ViewerSize = 4.0 + +[node name="ShieldOfHeaven" parent="CenterContainer2/SubViewportContainer/SubViewport/ModelPivot" instance=ExtResource("16_7bm5s")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, -0.676215, 0) +visible = false +ViewerSize = 4.0 + +[node name="GoldSproingy" parent="CenterContainer2/SubViewportContainer/SubViewport/ModelPivot" instance=ExtResource("17_c1y0w")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, -0.996254, 0) +visible = false +ViewerSize = 3.0 + +[node name="EdenPillarModelView" parent="CenterContainer2/SubViewportContainer/SubViewport/ModelPivot" instance=ExtResource("18_r2vgt")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, -5.14047, 0) +visible = false +ViewerSize = 17.0 + +[node name="HorseHead" parent="CenterContainer2/SubViewportContainer/SubViewport/ModelPivot" instance=ExtResource("18_tnrj6")] +transform = Transform3D(0.15, 0, 0, 0, 0.15, 0, 0, 0, 0.15, 0, -1.10523, 0) +visible = false +ViewerSize = 8.0 + +[node name="OxFace" parent="CenterContainer2/SubViewportContainer/SubViewport/ModelPivot" instance=ExtResource("19_elms1")] +transform = Transform3D(0.15, 0, 0, 0, 0.15, 0, 0, 0, 0.15, 0, -1.105, 0) +visible = false +ViewerSize = 8.0 + +[node name="DemonWall" parent="CenterContainer2/SubViewportContainer/SubViewport/ModelPivot" instance=ExtResource("20_elms1")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, -2.99034, 0) +visible = false +ViewerSize = 35.0 [node name="CameraPivot" type="Node3D" parent="CenterContainer2/SubViewportContainer/SubViewport"] unique_name_in_owner = true -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1, 0) +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, -0.010191, 0) [node name="Camera3D" type="Camera3D" parent="CenterContainer2/SubViewportContainer/SubViewport/CameraPivot"] unique_name_in_owner = true -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 5) -environment = SubResource("Environment_vk1lh") -attributes = SubResource("CameraAttributesPhysical_dvixg") +transform = Transform3D(1, 0, 0, 0, 0.999848, -0.0174524, 0, 0.0174524, 0.999848, 0.003, 1.05, 3) +cull_mask = 1048569 +doppler_tracking = 1 +current = true +fov = 52.9 +near = 0.01 +far = 9000.0 [node name="Sprite3D" type="Sprite3D" parent="CenterContainer2/SubViewportContainer/SubViewport/CameraPivot/Camera3D"] -transform = Transform3D(-1, 0, 8.74228e-08, 0, 1, 0, -8.74228e-08, 0, -1, 349.344, -203.088, -300) +transform = Transform3D(-1, 0, 8.74228e-08, -1.52574e-09, 0.999848, -0.0174524, -8.74095e-08, -0.0174524, -0.999848, 349.341, -209.25, -288.223) material_override = SubResource("ShaderMaterial_dvixg") pixel_size = 1.0 billboard = 2 @@ -122,6 +192,10 @@ transparent = false texture_filter = 2 texture = ExtResource("3_hpkd1") +[node name="OmniLight3D" type="OmniLight3D" parent="CenterContainer2/SubViewportContainer/SubViewport"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 6.99017, 9.40485) +omni_range = 55.7097 + [node name="MarginContainer" type="MarginContainer" parent="."] layout_mode = 2 anchor_left = 0.5 @@ -283,15 +357,6 @@ theme_override_fonts/normal_font = ExtResource("7_dvixg") theme_override_font_sizes/normal_font_size = 30 text = "Placeholder Text" -[node name="WorldEnvironment" type="WorldEnvironment" parent="."] -environment = SubResource("Environment_3wl4s") - -[node name="SpotLight3D" type="SpotLight3D" parent="."] -transform = Transform3D(1, 0, 0, 0, -0.31977, 0.947495, 0, -0.947495, -0.31977, 0, 6.05742, -1.13242) -light_energy = 8.943 -spot_range = 9.00889 -spot_attenuation = 3.45 - [node name="BackButton" type="Button" parent="."] unique_name_in_owner = true layout_mode = 0 @@ -310,3 +375,6 @@ theme_override_styles/pressed_mirrored = ExtResource("26_br3ej") theme_override_styles/pressed = ExtResource("26_br3ej") theme_override_styles/normal_mirrored = ExtResource("26_br3ej") theme_override_styles/normal = ExtResource("26_br3ej") + +[node name="DummyPlayer" type="CharacterBody3D" parent="."] +script = ExtResource("27_v1qxp") diff --git a/Zennysoft.Game.Ma/src/enemy_viewer/IEnemyViewer.cs b/Zennysoft.Game.Ma/src/enemy_viewer/IEnemyViewer.cs new file mode 100644 index 000000000..7d3c16b18 --- /dev/null +++ b/Zennysoft.Game.Ma/src/enemy_viewer/IEnemyViewer.cs @@ -0,0 +1,6 @@ +namespace Zennysoft.Game.Ma; + +public interface IEnemyViewer +{ + +} diff --git a/Zennysoft.Game.Ma/src/enemy_viewer/IEnemyViewer.cs.uid b/Zennysoft.Game.Ma/src/enemy_viewer/IEnemyViewer.cs.uid new file mode 100644 index 000000000..dc0bba03d --- /dev/null +++ b/Zennysoft.Game.Ma/src/enemy_viewer/IEnemyViewer.cs.uid @@ -0,0 +1 @@ +uid://b38a6d1l2jpmg diff --git a/Zennysoft.Game.Ma/src/data_viewer/bafkreicavupacvvhtig6ii2zb3svww7luvmuknyttza6s4doxm4oursnzm.jpg b/Zennysoft.Game.Ma/src/enemy_viewer/bafkreicavupacvvhtig6ii2zb3svww7luvmuknyttza6s4doxm4oursnzm.jpg similarity index 100% rename from Zennysoft.Game.Ma/src/data_viewer/bafkreicavupacvvhtig6ii2zb3svww7luvmuknyttza6s4doxm4oursnzm.jpg rename to Zennysoft.Game.Ma/src/enemy_viewer/bafkreicavupacvvhtig6ii2zb3svww7luvmuknyttza6s4doxm4oursnzm.jpg diff --git a/Zennysoft.Game.Ma/src/data_viewer/bafkreicavupacvvhtig6ii2zb3svww7luvmuknyttza6s4doxm4oursnzm.jpg.import b/Zennysoft.Game.Ma/src/enemy_viewer/bafkreicavupacvvhtig6ii2zb3svww7luvmuknyttza6s4doxm4oursnzm.jpg.import similarity index 74% rename from Zennysoft.Game.Ma/src/data_viewer/bafkreicavupacvvhtig6ii2zb3svww7luvmuknyttza6s4doxm4oursnzm.jpg.import rename to Zennysoft.Game.Ma/src/enemy_viewer/bafkreicavupacvvhtig6ii2zb3svww7luvmuknyttza6s4doxm4oursnzm.jpg.import index f2afddd25..6106dbd0b 100644 --- a/Zennysoft.Game.Ma/src/data_viewer/bafkreicavupacvvhtig6ii2zb3svww7luvmuknyttza6s4doxm4oursnzm.jpg.import +++ b/Zennysoft.Game.Ma/src/enemy_viewer/bafkreicavupacvvhtig6ii2zb3svww7luvmuknyttza6s4doxm4oursnzm.jpg.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://bophm5or5opdf" -path="res://.godot/imported/bafkreicavupacvvhtig6ii2zb3svww7luvmuknyttza6s4doxm4oursnzm.jpg-c763a9fd7b565d1015c74205c4c551f8.ctex" +path="res://.godot/imported/bafkreicavupacvvhtig6ii2zb3svww7luvmuknyttza6s4doxm4oursnzm.jpg-f88d8853613b3452be42477990890b3a.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/data_viewer/bafkreicavupacvvhtig6ii2zb3svww7luvmuknyttza6s4doxm4oursnzm.jpg" -dest_files=["res://.godot/imported/bafkreicavupacvvhtig6ii2zb3svww7luvmuknyttza6s4doxm4oursnzm.jpg-c763a9fd7b565d1015c74205c4c551f8.ctex"] +source_file="res://src/enemy_viewer/bafkreicavupacvvhtig6ii2zb3svww7luvmuknyttza6s4doxm4oursnzm.jpg" +dest_files=["res://.godot/imported/bafkreicavupacvvhtig6ii2zb3svww7luvmuknyttza6s4doxm4oursnzm.jpg-f88d8853613b3452be42477990890b3a.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/gallery/images/Cover.jpg b/Zennysoft.Game.Ma/src/gallery/images/Cover.jpg new file mode 100644 index 000000000..651df3230 Binary files /dev/null and b/Zennysoft.Game.Ma/src/gallery/images/Cover.jpg differ diff --git a/Zennysoft.Game.Ma/src/gallery/images/Cover.jpg.import b/Zennysoft.Game.Ma/src/gallery/images/Cover.jpg.import new file mode 100644 index 000000000..cf3a5b530 --- /dev/null +++ b/Zennysoft.Game.Ma/src/gallery/images/Cover.jpg.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dlytn0kg56cla" +path.bptc="res://.godot/imported/Cover.jpg-89a20457f9eb377fa54930d372ab7385.bptc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/gallery/images/Cover.jpg" +dest_files=["res://.godot/imported/Cover.jpg-89a20457f9eb377fa54930d372ab7385.bptc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=true +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/gallery/images/FmRGSMGacAEv5zG.jpg b/Zennysoft.Game.Ma/src/gallery/images/FmRGSMGacAEv5zG.jpg new file mode 100644 index 000000000..69490f625 Binary files /dev/null and b/Zennysoft.Game.Ma/src/gallery/images/FmRGSMGacAEv5zG.jpg differ diff --git a/Zennysoft.Game.Ma/src/gallery/images/FmRGSMGacAEv5zG.jpg.import b/Zennysoft.Game.Ma/src/gallery/images/FmRGSMGacAEv5zG.jpg.import new file mode 100644 index 000000000..8905d1fff --- /dev/null +++ b/Zennysoft.Game.Ma/src/gallery/images/FmRGSMGacAEv5zG.jpg.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://tmnxd0tac32t" +path.bptc="res://.godot/imported/FmRGSMGacAEv5zG.jpg-34bc04d90109477cfb2d0dd99cb269e3.bptc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/gallery/images/FmRGSMGacAEv5zG.jpg" +dest_files=["res://.godot/imported/FmRGSMGacAEv5zG.jpg-34bc04d90109477cfb2d0dd99cb269e3.bptc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=true +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/gallery/images/GYW1qS3XMAAyHLl.jpg b/Zennysoft.Game.Ma/src/gallery/images/GYW1qS3XMAAyHLl.jpg new file mode 100644 index 000000000..d8503c331 Binary files /dev/null and b/Zennysoft.Game.Ma/src/gallery/images/GYW1qS3XMAAyHLl.jpg differ diff --git a/Zennysoft.Game.Ma/src/gallery/images/GYW1qS3XMAAyHLl.jpg.import b/Zennysoft.Game.Ma/src/gallery/images/GYW1qS3XMAAyHLl.jpg.import new file mode 100644 index 000000000..d7c27af5c --- /dev/null +++ b/Zennysoft.Game.Ma/src/gallery/images/GYW1qS3XMAAyHLl.jpg.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bbj25c5n13boj" +path.bptc="res://.godot/imported/GYW1qS3XMAAyHLl.jpg-147286b6b64251ba8985160a4b113df2.bptc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/gallery/images/GYW1qS3XMAAyHLl.jpg" +dest_files=["res://.godot/imported/GYW1qS3XMAAyHLl.jpg-147286b6b64251ba8985160a4b113df2.bptc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=true +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/gallery/images/GjwS2fxawAAsyIC.jpg b/Zennysoft.Game.Ma/src/gallery/images/GjwS2fxawAAsyIC.jpg new file mode 100644 index 000000000..059840c7b Binary files /dev/null and b/Zennysoft.Game.Ma/src/gallery/images/GjwS2fxawAAsyIC.jpg differ diff --git a/Zennysoft.Game.Ma/src/gallery/images/GjwS2fxawAAsyIC.jpg.import b/Zennysoft.Game.Ma/src/gallery/images/GjwS2fxawAAsyIC.jpg.import new file mode 100644 index 000000000..96cc77964 --- /dev/null +++ b/Zennysoft.Game.Ma/src/gallery/images/GjwS2fxawAAsyIC.jpg.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bnlxp1murm35n" +path.bptc="res://.godot/imported/GjwS2fxawAAsyIC.jpg-4ea5918315b0ebc98b9ad8c7da2ec01b.bptc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/gallery/images/GjwS2fxawAAsyIC.jpg" +dest_files=["res://.godot/imported/GjwS2fxawAAsyIC.jpg-4ea5918315b0ebc98b9ad8c7da2ec01b.bptc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=true +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/gallery/images/GjwS5GcaYAAVYc9.jpg b/Zennysoft.Game.Ma/src/gallery/images/GjwS5GcaYAAVYc9.jpg new file mode 100644 index 000000000..b273a803e Binary files /dev/null and b/Zennysoft.Game.Ma/src/gallery/images/GjwS5GcaYAAVYc9.jpg differ diff --git a/Zennysoft.Game.Ma/src/gallery/images/GjwS5GcaYAAVYc9.jpg.import b/Zennysoft.Game.Ma/src/gallery/images/GjwS5GcaYAAVYc9.jpg.import new file mode 100644 index 000000000..b24a924a6 --- /dev/null +++ b/Zennysoft.Game.Ma/src/gallery/images/GjwS5GcaYAAVYc9.jpg.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d3j4y5qoediov" +path.bptc="res://.godot/imported/GjwS5GcaYAAVYc9.jpg-21f199f2eb49882cf7a884be50005d0b.bptc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/gallery/images/GjwS5GcaYAAVYc9.jpg" +dest_files=["res://.godot/imported/GjwS5GcaYAAVYc9.jpg-21f199f2eb49882cf7a884be50005d0b.bptc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=true +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/gallery/images/GjwS94Fa4AATFwv.jpg b/Zennysoft.Game.Ma/src/gallery/images/GjwS94Fa4AATFwv.jpg new file mode 100644 index 000000000..c04e10c77 Binary files /dev/null and b/Zennysoft.Game.Ma/src/gallery/images/GjwS94Fa4AATFwv.jpg differ diff --git a/Zennysoft.Game.Ma/src/gallery/images/GjwS94Fa4AATFwv.jpg.import b/Zennysoft.Game.Ma/src/gallery/images/GjwS94Fa4AATFwv.jpg.import new file mode 100644 index 000000000..9e90a25a9 --- /dev/null +++ b/Zennysoft.Game.Ma/src/gallery/images/GjwS94Fa4AATFwv.jpg.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dlykikuegsn3b" +path.bptc="res://.godot/imported/GjwS94Fa4AATFwv.jpg-2620dd00980ea2129dcc0c506c74237d.bptc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/gallery/images/GjwS94Fa4AATFwv.jpg" +dest_files=["res://.godot/imported/GjwS94Fa4AATFwv.jpg-2620dd00980ea2129dcc0c506c74237d.bptc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=true +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/gallery/images/GkOhn7lXYAAP8kr.jpg b/Zennysoft.Game.Ma/src/gallery/images/GkOhn7lXYAAP8kr.jpg new file mode 100644 index 000000000..bc2114059 Binary files /dev/null and b/Zennysoft.Game.Ma/src/gallery/images/GkOhn7lXYAAP8kr.jpg differ diff --git a/Zennysoft.Game.Ma/src/gallery/images/GkOhn7lXYAAP8kr.jpg.import b/Zennysoft.Game.Ma/src/gallery/images/GkOhn7lXYAAP8kr.jpg.import new file mode 100644 index 000000000..52e9fc33c --- /dev/null +++ b/Zennysoft.Game.Ma/src/gallery/images/GkOhn7lXYAAP8kr.jpg.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dr04r7njg5oo5" +path.bptc="res://.godot/imported/GkOhn7lXYAAP8kr.jpg-3bf5db72a9dfbf2cc5336b4da2a0aee6.bptc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/gallery/images/GkOhn7lXYAAP8kr.jpg" +dest_files=["res://.godot/imported/GkOhn7lXYAAP8kr.jpg-3bf5db72a9dfbf2cc5336b4da2a0aee6.bptc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=true +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/gallery/images/GkUQ9tCWcAAXa5Y.jpg b/Zennysoft.Game.Ma/src/gallery/images/GkUQ9tCWcAAXa5Y.jpg new file mode 100644 index 000000000..998e6baab Binary files /dev/null and b/Zennysoft.Game.Ma/src/gallery/images/GkUQ9tCWcAAXa5Y.jpg differ diff --git a/Zennysoft.Game.Ma/src/gallery/images/GkUQ9tCWcAAXa5Y.jpg.import b/Zennysoft.Game.Ma/src/gallery/images/GkUQ9tCWcAAXa5Y.jpg.import new file mode 100644 index 000000000..8db9e41dd --- /dev/null +++ b/Zennysoft.Game.Ma/src/gallery/images/GkUQ9tCWcAAXa5Y.jpg.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bq5u5lujsqjtr" +path.bptc="res://.godot/imported/GkUQ9tCWcAAXa5Y.jpg-74a7ca9785b07b56eb6d81cceb8f9ec2.bptc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/gallery/images/GkUQ9tCWcAAXa5Y.jpg" +dest_files=["res://.godot/imported/GkUQ9tCWcAAXa5Y.jpg-74a7ca9785b07b56eb6d81cceb8f9ec2.bptc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=true +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/gallery/images/GncGcQ6bcAAmK0S.jpg b/Zennysoft.Game.Ma/src/gallery/images/GncGcQ6bcAAmK0S.jpg new file mode 100644 index 000000000..2d3349e5b Binary files /dev/null and b/Zennysoft.Game.Ma/src/gallery/images/GncGcQ6bcAAmK0S.jpg differ diff --git a/Zennysoft.Game.Ma/src/gallery/images/GncGcQ6bcAAmK0S.jpg.import b/Zennysoft.Game.Ma/src/gallery/images/GncGcQ6bcAAmK0S.jpg.import new file mode 100644 index 000000000..cbc52bc11 --- /dev/null +++ b/Zennysoft.Game.Ma/src/gallery/images/GncGcQ6bcAAmK0S.jpg.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dn3vuk5111xr7" +path.bptc="res://.godot/imported/GncGcQ6bcAAmK0S.jpg-24163ee723ec2d363555f56d7d690e3c.bptc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/gallery/images/GncGcQ6bcAAmK0S.jpg" +dest_files=["res://.godot/imported/GncGcQ6bcAAmK0S.jpg-24163ee723ec2d363555f56d7d690e3c.bptc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=true +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/gallery/images/Gpt1yQ8bgAAZrol.jpg b/Zennysoft.Game.Ma/src/gallery/images/Gpt1yQ8bgAAZrol.jpg new file mode 100644 index 000000000..d0e536cf1 Binary files /dev/null and b/Zennysoft.Game.Ma/src/gallery/images/Gpt1yQ8bgAAZrol.jpg differ diff --git a/Zennysoft.Game.Ma/src/gallery/images/Gpt1yQ8bgAAZrol.jpg.import b/Zennysoft.Game.Ma/src/gallery/images/Gpt1yQ8bgAAZrol.jpg.import new file mode 100644 index 000000000..30cd6ddfe --- /dev/null +++ b/Zennysoft.Game.Ma/src/gallery/images/Gpt1yQ8bgAAZrol.jpg.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://xwlgruor45ye" +path.bptc="res://.godot/imported/Gpt1yQ8bgAAZrol.jpg-c23dca2b79255f83453d412bda27ad88.bptc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/gallery/images/Gpt1yQ8bgAAZrol.jpg" +dest_files=["res://.godot/imported/Gpt1yQ8bgAAZrol.jpg-c23dca2b79255f83453d412bda27ad88.bptc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=true +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/gallery/images/Pisces_Flipped.jpg b/Zennysoft.Game.Ma/src/gallery/images/Pisces_Flipped.jpg new file mode 100644 index 000000000..3a95a9684 Binary files /dev/null and b/Zennysoft.Game.Ma/src/gallery/images/Pisces_Flipped.jpg differ diff --git a/Zennysoft.Game.Ma/src/gallery/images/Pisces_Flipped.jpg.import b/Zennysoft.Game.Ma/src/gallery/images/Pisces_Flipped.jpg.import new file mode 100644 index 000000000..1e0fca50a --- /dev/null +++ b/Zennysoft.Game.Ma/src/gallery/images/Pisces_Flipped.jpg.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bfsb3vtxu6sii" +path.bptc="res://.godot/imported/Pisces_Flipped.jpg-2cd38b0e79d3edd5def9f926eec8cea9.bptc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/gallery/images/Pisces_Flipped.jpg" +dest_files=["res://.godot/imported/Pisces_Flipped.jpg-2cd38b0e79d3edd5def9f926eec8cea9.bptc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=true +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/gallery/images/c678aec6e828c899b32a099c14ee882c.png b/Zennysoft.Game.Ma/src/gallery/images/c678aec6e828c899b32a099c14ee882c.png new file mode 100644 index 000000000..304cc0690 Binary files /dev/null and b/Zennysoft.Game.Ma/src/gallery/images/c678aec6e828c899b32a099c14ee882c.png differ diff --git a/Zennysoft.Game.Ma/src/gallery/images/c678aec6e828c899b32a099c14ee882c.png.import b/Zennysoft.Game.Ma/src/gallery/images/c678aec6e828c899b32a099c14ee882c.png.import new file mode 100644 index 000000000..0720af728 --- /dev/null +++ b/Zennysoft.Game.Ma/src/gallery/images/c678aec6e828c899b32a099c14ee882c.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c1l4gyaumqtk0" +path.bptc="res://.godot/imported/c678aec6e828c899b32a099c14ee882c.png-277b9463b58b46393366b5334be94aee.bptc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/gallery/images/c678aec6e828c899b32a099c14ee882c.png" +dest_files=["res://.godot/imported/c678aec6e828c899b32a099c14ee882c.png-277b9463b58b46393366b5334be94aee.bptc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=true +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/gallery/images/kujibiki-unbalance-95365-40553.jpg b/Zennysoft.Game.Ma/src/gallery/images/kujibiki-unbalance-95365-40553.jpg new file mode 100644 index 000000000..23a33baaa Binary files /dev/null and b/Zennysoft.Game.Ma/src/gallery/images/kujibiki-unbalance-95365-40553.jpg differ diff --git a/Zennysoft.Game.Ma/src/gallery/images/kujibiki-unbalance-95365-40553.jpg.import b/Zennysoft.Game.Ma/src/gallery/images/kujibiki-unbalance-95365-40553.jpg.import new file mode 100644 index 000000000..4c5dfc0da --- /dev/null +++ b/Zennysoft.Game.Ma/src/gallery/images/kujibiki-unbalance-95365-40553.jpg.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://2ycg5n87nqud" +path.bptc="res://.godot/imported/kujibiki-unbalance-95365-40553.jpg-a92f9750592f30bc1f9966659e44af9b.bptc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/gallery/images/kujibiki-unbalance-95365-40553.jpg" +dest_files=["res://.godot/imported/kujibiki-unbalance-95365-40553.jpg-a92f9750592f30bc1f9966659e44af9b.bptc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=true +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/map/dungeon/floors/Special Floors/Floor 08 Boss Floor A.tscn b/Zennysoft.Game.Ma/src/map/dungeon/floors/Special Floors/Floor 08 Boss Floor A.tscn index 0cad4a73b..c205e6334 100644 --- a/Zennysoft.Game.Ma/src/map/dungeon/floors/Special Floors/Floor 08 Boss Floor A.tscn +++ b/Zennysoft.Game.Ma/src/map/dungeon/floors/Special Floors/Floor 08 Boss Floor A.tscn @@ -1414,7 +1414,7 @@ transform = Transform3D(-1, 0, 8.74228e-08, 0, 1, 0, -8.74228e-08, 0, -1, -90.84 [node name="OxFaceStatue" parent="Bosses/OxFace" instance=ExtResource("26_futcf")] unique_name_in_owner = true -transform = Transform3D(1, 0, 3.55271e-15, 0, 1, 0, -3.55271e-15, 0, 1, 10.2518, -1.84854, -1.2916) +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 10.2518, -1.9839, -1.2916) [node name="OxFace" parent="Bosses/OxFace" instance=ExtResource("27_g6y6v")] unique_name_in_owner = true @@ -1427,7 +1427,7 @@ transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, -112.3 [node name="HorseHead" parent="Bosses/HorseHead" instance=ExtResource("14_jb41f")] unique_name_in_owner = true -transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, -101.714, -1.38925, 10.8406) +transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, -101.714, -2.7938, 10.841) visible = false InitialHP = 125 diff --git a/Zennysoft.Game.Ma/src/map/dungeon/floors/Special Floors/Floor 16 Boss Floor B.tscn b/Zennysoft.Game.Ma/src/map/dungeon/floors/Special Floors/Floor 16 Boss Floor B.tscn index abaa6e8ac..1a4fdeeaf 100644 --- a/Zennysoft.Game.Ma/src/map/dungeon/floors/Special Floors/Floor 16 Boss Floor B.tscn +++ b/Zennysoft.Game.Ma/src/map/dungeon/floors/Special Floors/Floor 16 Boss Floor B.tscn @@ -181,7 +181,7 @@ shape = SubResource("BoxShape3D_s7h55") [node name="DemonWall" parent="." instance=ExtResource("25_k2q0o")] unique_name_in_owner = true -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -0.747, 3.84071, 55.334) +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -0.747, 0.102548, 55.334) [node name="Lights" type="Node3D" parent="."] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, -25.2903, 0) diff --git a/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld Re-Scaled (Missing Distance Objects)_INTERIOR_STONE_2.png.import b/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld Re-Scaled (Missing Distance Objects)_INTERIOR_STONE_2.png.import index 6b490286d..407f3c100 100644 --- a/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld Re-Scaled (Missing Distance Objects)_INTERIOR_STONE_2.png.import +++ b/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld Re-Scaled (Missing Distance Objects)_INTERIOR_STONE_2.png.import @@ -3,9 +3,10 @@ importer="texture" type="CompressedTexture2D" uid="uid://c7eeom8i1bf81" -path="res://.godot/imported/Overworld Re-Scaled (Missing Distance Objects)_INTERIOR_STONE_2.png-15f0a2ab6588916855688f5a55afcab9.ctex" +path.s3tc="res://.godot/imported/Overworld Re-Scaled (Missing Distance Objects)_INTERIOR_STONE_2.png-15f0a2ab6588916855688f5a55afcab9.s3tc.ctex" metadata={ -"vram_texture": false +"imported_formats": ["s3tc_bptc"], +"vram_texture": true } generator_parameters={ "md5": "5a206a1f8621251ea78a01eec1488f5a" @@ -14,11 +15,11 @@ generator_parameters={ [deps] source_file="res://src/map/overworld/Models/Overworld Re-Scaled (Missing Distance Objects)_INTERIOR_STONE_2.png" -dest_files=["res://.godot/imported/Overworld Re-Scaled (Missing Distance Objects)_INTERIOR_STONE_2.png-15f0a2ab6588916855688f5a55afcab9.ctex"] +dest_files=["res://.godot/imported/Overworld Re-Scaled (Missing Distance Objects)_INTERIOR_STONE_2.png-15f0a2ab6588916855688f5a55afcab9.s3tc.ctex"] [params] -compress/mode=0 +compress/mode=2 compress/high_quality=false compress/lossy_quality=0.7 compress/hdr_compression=1 diff --git a/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld Re-Scaled (Missing Distance Objects)_MOSAIC.png.import b/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld Re-Scaled (Missing Distance Objects)_MOSAIC.png.import index 53018ae29..d22680c59 100644 --- a/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld Re-Scaled (Missing Distance Objects)_MOSAIC.png.import +++ b/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld Re-Scaled (Missing Distance Objects)_MOSAIC.png.import @@ -3,9 +3,10 @@ importer="texture" type="CompressedTexture2D" uid="uid://bwjtytsd87fh3" -path="res://.godot/imported/Overworld Re-Scaled (Missing Distance Objects)_MOSAIC.png-af28f8b18b1bdde24674806bce4f01c7.ctex" +path.s3tc="res://.godot/imported/Overworld Re-Scaled (Missing Distance Objects)_MOSAIC.png-af28f8b18b1bdde24674806bce4f01c7.s3tc.ctex" metadata={ -"vram_texture": false +"imported_formats": ["s3tc_bptc"], +"vram_texture": true } generator_parameters={ "md5": "eabe61d27cef86cb8310fdcb3049e2b0" @@ -14,11 +15,11 @@ generator_parameters={ [deps] source_file="res://src/map/overworld/Models/Overworld Re-Scaled (Missing Distance Objects)_MOSAIC.png" -dest_files=["res://.godot/imported/Overworld Re-Scaled (Missing Distance Objects)_MOSAIC.png-af28f8b18b1bdde24674806bce4f01c7.ctex"] +dest_files=["res://.godot/imported/Overworld Re-Scaled (Missing Distance Objects)_MOSAIC.png-af28f8b18b1bdde24674806bce4f01c7.s3tc.ctex"] [params] -compress/mode=0 +compress/mode=2 compress/high_quality=false compress/lossy_quality=0.7 compress/hdr_compression=1 diff --git a/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld Re-Scaled (Missing Distance Objects)_OW_DARKEST_METAL.png.import b/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld Re-Scaled (Missing Distance Objects)_OW_DARKEST_METAL.png.import index eee44bc8c..c2369501f 100644 --- a/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld Re-Scaled (Missing Distance Objects)_OW_DARKEST_METAL.png.import +++ b/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld Re-Scaled (Missing Distance Objects)_OW_DARKEST_METAL.png.import @@ -3,9 +3,10 @@ importer="texture" type="CompressedTexture2D" uid="uid://bd0sjpe773ac2" -path="res://.godot/imported/Overworld Re-Scaled (Missing Distance Objects)_OW_DARKEST_METAL.png-3ca9455fbb147b7fd706f33ef08eb9c5.ctex" +path.s3tc="res://.godot/imported/Overworld Re-Scaled (Missing Distance Objects)_OW_DARKEST_METAL.png-3ca9455fbb147b7fd706f33ef08eb9c5.s3tc.ctex" metadata={ -"vram_texture": false +"imported_formats": ["s3tc_bptc"], +"vram_texture": true } generator_parameters={ "md5": "4da9381ca1fc26de61546f73fb816d84" @@ -14,11 +15,11 @@ generator_parameters={ [deps] source_file="res://src/map/overworld/Models/Overworld Re-Scaled (Missing Distance Objects)_OW_DARKEST_METAL.png" -dest_files=["res://.godot/imported/Overworld Re-Scaled (Missing Distance Objects)_OW_DARKEST_METAL.png-3ca9455fbb147b7fd706f33ef08eb9c5.ctex"] +dest_files=["res://.godot/imported/Overworld Re-Scaled (Missing Distance Objects)_OW_DARKEST_METAL.png-3ca9455fbb147b7fd706f33ef08eb9c5.s3tc.ctex"] [params] -compress/mode=0 +compress/mode=2 compress/high_quality=false compress/lossy_quality=0.7 compress/hdr_compression=1 diff --git a/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld Re-Scaled (Missing Distance Objects)_OW_METAL.jpg.import b/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld Re-Scaled (Missing Distance Objects)_OW_METAL.jpg.import index f55b16e1f..0ec8b90bd 100644 --- a/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld Re-Scaled (Missing Distance Objects)_OW_METAL.jpg.import +++ b/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld Re-Scaled (Missing Distance Objects)_OW_METAL.jpg.import @@ -3,9 +3,10 @@ importer="texture" type="CompressedTexture2D" uid="uid://cwsgcp7riqq7v" -path="res://.godot/imported/Overworld Re-Scaled (Missing Distance Objects)_OW_METAL.jpg-dfe54db66bc079422286eb78bd218f50.ctex" +path.s3tc="res://.godot/imported/Overworld Re-Scaled (Missing Distance Objects)_OW_METAL.jpg-dfe54db66bc079422286eb78bd218f50.s3tc.ctex" metadata={ -"vram_texture": false +"imported_formats": ["s3tc_bptc"], +"vram_texture": true } generator_parameters={ "md5": "574fdd8a849075fb374effd327bdc641" @@ -14,11 +15,11 @@ generator_parameters={ [deps] source_file="res://src/map/overworld/Models/Overworld Re-Scaled (Missing Distance Objects)_OW_METAL.jpg" -dest_files=["res://.godot/imported/Overworld Re-Scaled (Missing Distance Objects)_OW_METAL.jpg-dfe54db66bc079422286eb78bd218f50.ctex"] +dest_files=["res://.godot/imported/Overworld Re-Scaled (Missing Distance Objects)_OW_METAL.jpg-dfe54db66bc079422286eb78bd218f50.s3tc.ctex"] [params] -compress/mode=0 +compress/mode=2 compress/high_quality=false compress/lossy_quality=0.7 compress/hdr_compression=1 diff --git a/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld Re-Scaled (Missing Distance Objects)_OW_METALISH_1.jpg.import b/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld Re-Scaled (Missing Distance Objects)_OW_METALISH_1.jpg.import index f0c442445..7dd03c69d 100644 --- a/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld Re-Scaled (Missing Distance Objects)_OW_METALISH_1.jpg.import +++ b/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld Re-Scaled (Missing Distance Objects)_OW_METALISH_1.jpg.import @@ -3,9 +3,10 @@ importer="texture" type="CompressedTexture2D" uid="uid://ukxv37qgprlc" -path="res://.godot/imported/Overworld Re-Scaled (Missing Distance Objects)_OW_METALISH_1.jpg-e6d01173617025715a63dc845367b3f4.ctex" +path.s3tc="res://.godot/imported/Overworld Re-Scaled (Missing Distance Objects)_OW_METALISH_1.jpg-e6d01173617025715a63dc845367b3f4.s3tc.ctex" metadata={ -"vram_texture": false +"imported_formats": ["s3tc_bptc"], +"vram_texture": true } generator_parameters={ "md5": "89016c3f267e725c45c21d9805d45267" @@ -14,11 +15,11 @@ generator_parameters={ [deps] source_file="res://src/map/overworld/Models/Overworld Re-Scaled (Missing Distance Objects)_OW_METALISH_1.jpg" -dest_files=["res://.godot/imported/Overworld Re-Scaled (Missing Distance Objects)_OW_METALISH_1.jpg-e6d01173617025715a63dc845367b3f4.ctex"] +dest_files=["res://.godot/imported/Overworld Re-Scaled (Missing Distance Objects)_OW_METALISH_1.jpg-e6d01173617025715a63dc845367b3f4.s3tc.ctex"] [params] -compress/mode=0 +compress/mode=2 compress/high_quality=false compress/lossy_quality=0.7 compress/hdr_compression=1 diff --git a/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld Re-Scaled (Missing Distance Objects)_OW_METAL_COLUM2N.png.import b/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld Re-Scaled (Missing Distance Objects)_OW_METAL_COLUM2N.png.import index a5acbb00e..120b7f955 100644 --- a/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld Re-Scaled (Missing Distance Objects)_OW_METAL_COLUM2N.png.import +++ b/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld Re-Scaled (Missing Distance Objects)_OW_METAL_COLUM2N.png.import @@ -3,9 +3,10 @@ importer="texture" type="CompressedTexture2D" uid="uid://bbi5eytf0ien" -path="res://.godot/imported/Overworld Re-Scaled (Missing Distance Objects)_OW_METAL_COLUM2N.png-d8e5b181c9877a68d62f503a9d20c686.ctex" +path.s3tc="res://.godot/imported/Overworld Re-Scaled (Missing Distance Objects)_OW_METAL_COLUM2N.png-d8e5b181c9877a68d62f503a9d20c686.s3tc.ctex" metadata={ -"vram_texture": false +"imported_formats": ["s3tc_bptc"], +"vram_texture": true } generator_parameters={ "md5": "51550e5497afa15ac6b0645c1657548d" @@ -14,11 +15,11 @@ generator_parameters={ [deps] source_file="res://src/map/overworld/Models/Overworld Re-Scaled (Missing Distance Objects)_OW_METAL_COLUM2N.png" -dest_files=["res://.godot/imported/Overworld Re-Scaled (Missing Distance Objects)_OW_METAL_COLUM2N.png-d8e5b181c9877a68d62f503a9d20c686.ctex"] +dest_files=["res://.godot/imported/Overworld Re-Scaled (Missing Distance Objects)_OW_METAL_COLUM2N.png-d8e5b181c9877a68d62f503a9d20c686.s3tc.ctex"] [params] -compress/mode=0 +compress/mode=2 compress/high_quality=false compress/lossy_quality=0.7 compress/hdr_compression=1 diff --git a/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld Re-Scaled (Missing Distance Objects)_OW_STUCCO.png.import b/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld Re-Scaled (Missing Distance Objects)_OW_STUCCO.png.import index 1576c55b2..31a8a5010 100644 --- a/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld Re-Scaled (Missing Distance Objects)_OW_STUCCO.png.import +++ b/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld Re-Scaled (Missing Distance Objects)_OW_STUCCO.png.import @@ -3,9 +3,10 @@ importer="texture" type="CompressedTexture2D" uid="uid://b8qjvl4uuw0k0" -path="res://.godot/imported/Overworld Re-Scaled (Missing Distance Objects)_OW_STUCCO.png-56286fcfea1de187dfc7ad9bb9b60d00.ctex" +path.s3tc="res://.godot/imported/Overworld Re-Scaled (Missing Distance Objects)_OW_STUCCO.png-56286fcfea1de187dfc7ad9bb9b60d00.s3tc.ctex" metadata={ -"vram_texture": false +"imported_formats": ["s3tc_bptc"], +"vram_texture": true } generator_parameters={ "md5": "185f473ebdfcd11a9890c296b1caee72" @@ -14,11 +15,11 @@ generator_parameters={ [deps] source_file="res://src/map/overworld/Models/Overworld Re-Scaled (Missing Distance Objects)_OW_STUCCO.png" -dest_files=["res://.godot/imported/Overworld Re-Scaled (Missing Distance Objects)_OW_STUCCO.png-56286fcfea1de187dfc7ad9bb9b60d00.ctex"] +dest_files=["res://.godot/imported/Overworld Re-Scaled (Missing Distance Objects)_OW_STUCCO.png-56286fcfea1de187dfc7ad9bb9b60d00.s3tc.ctex"] [params] -compress/mode=0 +compress/mode=2 compress/high_quality=false compress/lossy_quality=0.7 compress/hdr_compression=1 diff --git a/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld Re-Scaled (Missing Distance Objects)_OW_Worked-Stone-Outside.png.import b/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld Re-Scaled (Missing Distance Objects)_OW_Worked-Stone-Outside.png.import index e0e79c151..30b00b5bc 100644 --- a/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld Re-Scaled (Missing Distance Objects)_OW_Worked-Stone-Outside.png.import +++ b/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld Re-Scaled (Missing Distance Objects)_OW_Worked-Stone-Outside.png.import @@ -3,9 +3,10 @@ importer="texture" type="CompressedTexture2D" uid="uid://ypb8vnmolp7e" -path="res://.godot/imported/Overworld Re-Scaled (Missing Distance Objects)_OW_Worked-Stone-Outside.png-25a7c0ea395dd6f6d86c5d4165267871.ctex" +path.s3tc="res://.godot/imported/Overworld Re-Scaled (Missing Distance Objects)_OW_Worked-Stone-Outside.png-25a7c0ea395dd6f6d86c5d4165267871.s3tc.ctex" metadata={ -"vram_texture": false +"imported_formats": ["s3tc_bptc"], +"vram_texture": true } generator_parameters={ "md5": "8cb2c164f2fb83c32b0f1c5e5269359d" @@ -14,11 +15,11 @@ generator_parameters={ [deps] source_file="res://src/map/overworld/Models/Overworld Re-Scaled (Missing Distance Objects)_OW_Worked-Stone-Outside.png" -dest_files=["res://.godot/imported/Overworld Re-Scaled (Missing Distance Objects)_OW_Worked-Stone-Outside.png-25a7c0ea395dd6f6d86c5d4165267871.ctex"] +dest_files=["res://.godot/imported/Overworld Re-Scaled (Missing Distance Objects)_OW_Worked-Stone-Outside.png-25a7c0ea395dd6f6d86c5d4165267871.s3tc.ctex"] [params] -compress/mode=0 +compress/mode=2 compress/high_quality=false compress/lossy_quality=0.7 compress/hdr_compression=1 diff --git a/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld Re-Scaled (Missing Distance Objects)_OW_altar_drae2.png.import b/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld Re-Scaled (Missing Distance Objects)_OW_altar_drae2.png.import index 8f9197148..20fea9b11 100644 --- a/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld Re-Scaled (Missing Distance Objects)_OW_altar_drae2.png.import +++ b/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld Re-Scaled (Missing Distance Objects)_OW_altar_drae2.png.import @@ -3,9 +3,10 @@ importer="texture" type="CompressedTexture2D" uid="uid://bkxhhgqnkpvjr" -path="res://.godot/imported/Overworld Re-Scaled (Missing Distance Objects)_OW_altar_drae2.png-43eec45d74e8bb799861fdfdf87d4ebe.ctex" +path.s3tc="res://.godot/imported/Overworld Re-Scaled (Missing Distance Objects)_OW_altar_drae2.png-43eec45d74e8bb799861fdfdf87d4ebe.s3tc.ctex" metadata={ -"vram_texture": false +"imported_formats": ["s3tc_bptc"], +"vram_texture": true } generator_parameters={ "md5": "266a717900b1ef1d8c73c84a4c342712" @@ -14,11 +15,11 @@ generator_parameters={ [deps] source_file="res://src/map/overworld/Models/Overworld Re-Scaled (Missing Distance Objects)_OW_altar_drae2.png" -dest_files=["res://.godot/imported/Overworld Re-Scaled (Missing Distance Objects)_OW_altar_drae2.png-43eec45d74e8bb799861fdfdf87d4ebe.ctex"] +dest_files=["res://.godot/imported/Overworld Re-Scaled (Missing Distance Objects)_OW_altar_drae2.png-43eec45d74e8bb799861fdfdf87d4ebe.s3tc.ctex"] [params] -compress/mode=0 +compress/mode=2 compress/high_quality=false compress/lossy_quality=0.7 compress/hdr_compression=1 diff --git a/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld Re-Scaled (Missing Distance Objects)_OW_altar_drape.png.import b/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld Re-Scaled (Missing Distance Objects)_OW_altar_drape.png.import index 09787ea5f..6b129fbac 100644 --- a/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld Re-Scaled (Missing Distance Objects)_OW_altar_drape.png.import +++ b/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld Re-Scaled (Missing Distance Objects)_OW_altar_drape.png.import @@ -3,9 +3,10 @@ importer="texture" type="CompressedTexture2D" uid="uid://snwfucmbd3rk" -path="res://.godot/imported/Overworld Re-Scaled (Missing Distance Objects)_OW_altar_drape.png-01e3517cafa00cb986c4e2446b04a3b0.ctex" +path.s3tc="res://.godot/imported/Overworld Re-Scaled (Missing Distance Objects)_OW_altar_drape.png-01e3517cafa00cb986c4e2446b04a3b0.s3tc.ctex" metadata={ -"vram_texture": false +"imported_formats": ["s3tc_bptc"], +"vram_texture": true } generator_parameters={ "md5": "6659f96d07b7cc5baf271ff89803cb17" @@ -14,11 +15,11 @@ generator_parameters={ [deps] source_file="res://src/map/overworld/Models/Overworld Re-Scaled (Missing Distance Objects)_OW_altar_drape.png" -dest_files=["res://.godot/imported/Overworld Re-Scaled (Missing Distance Objects)_OW_altar_drape.png-01e3517cafa00cb986c4e2446b04a3b0.ctex"] +dest_files=["res://.godot/imported/Overworld Re-Scaled (Missing Distance Objects)_OW_altar_drape.png-01e3517cafa00cb986c4e2446b04a3b0.s3tc.ctex"] [params] -compress/mode=0 +compress/mode=2 compress/high_quality=false compress/lossy_quality=0.7 compress/hdr_compression=1 diff --git a/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld Re-Scaled (Missing Distance Objects)_OW_carved_stone_3.png.import b/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld Re-Scaled (Missing Distance Objects)_OW_carved_stone_3.png.import index 59ec4ad27..678d41a7c 100644 --- a/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld Re-Scaled (Missing Distance Objects)_OW_carved_stone_3.png.import +++ b/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld Re-Scaled (Missing Distance Objects)_OW_carved_stone_3.png.import @@ -3,9 +3,10 @@ importer="texture" type="CompressedTexture2D" uid="uid://mnupoey5r1gk" -path="res://.godot/imported/Overworld Re-Scaled (Missing Distance Objects)_OW_carved_stone_3.png-2d1caa7294208790d6c5287577da9146.ctex" +path.s3tc="res://.godot/imported/Overworld Re-Scaled (Missing Distance Objects)_OW_carved_stone_3.png-2d1caa7294208790d6c5287577da9146.s3tc.ctex" metadata={ -"vram_texture": false +"imported_formats": ["s3tc_bptc"], +"vram_texture": true } generator_parameters={ "md5": "2805a3ca0372b9d17a4e720849401414" @@ -14,11 +15,11 @@ generator_parameters={ [deps] source_file="res://src/map/overworld/Models/Overworld Re-Scaled (Missing Distance Objects)_OW_carved_stone_3.png" -dest_files=["res://.godot/imported/Overworld Re-Scaled (Missing Distance Objects)_OW_carved_stone_3.png-2d1caa7294208790d6c5287577da9146.ctex"] +dest_files=["res://.godot/imported/Overworld Re-Scaled (Missing Distance Objects)_OW_carved_stone_3.png-2d1caa7294208790d6c5287577da9146.s3tc.ctex"] [params] -compress/mode=0 +compress/mode=2 compress/high_quality=false compress/lossy_quality=0.7 compress/hdr_compression=1 diff --git a/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld Re-Scaled (Missing Distance Objects)_OW_floraltile.jpg.import b/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld Re-Scaled (Missing Distance Objects)_OW_floraltile.jpg.import index bc2491f7e..fb49994a3 100644 --- a/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld Re-Scaled (Missing Distance Objects)_OW_floraltile.jpg.import +++ b/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld Re-Scaled (Missing Distance Objects)_OW_floraltile.jpg.import @@ -3,9 +3,10 @@ importer="texture" type="CompressedTexture2D" uid="uid://b4g06c8tit5gp" -path="res://.godot/imported/Overworld Re-Scaled (Missing Distance Objects)_OW_floraltile.jpg-f0f15348c2b096932453a06fac449af8.ctex" +path.s3tc="res://.godot/imported/Overworld Re-Scaled (Missing Distance Objects)_OW_floraltile.jpg-f0f15348c2b096932453a06fac449af8.s3tc.ctex" metadata={ -"vram_texture": false +"imported_formats": ["s3tc_bptc"], +"vram_texture": true } generator_parameters={ "md5": "dc1a7a089e18f15021d7c764ecb0d49c" @@ -14,11 +15,11 @@ generator_parameters={ [deps] source_file="res://src/map/overworld/Models/Overworld Re-Scaled (Missing Distance Objects)_OW_floraltile.jpg" -dest_files=["res://.godot/imported/Overworld Re-Scaled (Missing Distance Objects)_OW_floraltile.jpg-f0f15348c2b096932453a06fac449af8.ctex"] +dest_files=["res://.godot/imported/Overworld Re-Scaled (Missing Distance Objects)_OW_floraltile.jpg-f0f15348c2b096932453a06fac449af8.s3tc.ctex"] [params] -compress/mode=0 +compress/mode=2 compress/high_quality=false compress/lossy_quality=0.7 compress/hdr_compression=1 diff --git a/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld Re-Scaled (Missing Distance Objects)_Outside-Laid-Brick.png.import b/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld Re-Scaled (Missing Distance Objects)_Outside-Laid-Brick.png.import index bf1e383cc..98da34085 100644 --- a/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld Re-Scaled (Missing Distance Objects)_Outside-Laid-Brick.png.import +++ b/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld Re-Scaled (Missing Distance Objects)_Outside-Laid-Brick.png.import @@ -3,9 +3,10 @@ importer="texture" type="CompressedTexture2D" uid="uid://ba5oi23s5vbg7" -path="res://.godot/imported/Overworld Re-Scaled (Missing Distance Objects)_Outside-Laid-Brick.png-f28752b3407898440a319ce8848dc25a.ctex" +path.s3tc="res://.godot/imported/Overworld Re-Scaled (Missing Distance Objects)_Outside-Laid-Brick.png-f28752b3407898440a319ce8848dc25a.s3tc.ctex" metadata={ -"vram_texture": false +"imported_formats": ["s3tc_bptc"], +"vram_texture": true } generator_parameters={ "md5": "93138191a9113508ae4841522181cf19" @@ -14,11 +15,11 @@ generator_parameters={ [deps] source_file="res://src/map/overworld/Models/Overworld Re-Scaled (Missing Distance Objects)_Outside-Laid-Brick.png" -dest_files=["res://.godot/imported/Overworld Re-Scaled (Missing Distance Objects)_Outside-Laid-Brick.png-f28752b3407898440a319ce8848dc25a.ctex"] +dest_files=["res://.godot/imported/Overworld Re-Scaled (Missing Distance Objects)_Outside-Laid-Brick.png-f28752b3407898440a319ce8848dc25a.s3tc.ctex"] [params] -compress/mode=0 +compress/mode=2 compress/high_quality=false compress/lossy_quality=0.7 compress/hdr_compression=1 diff --git a/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld Re-Scaled (Missing Distance Objects)_RUBBLE_3.png.import b/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld Re-Scaled (Missing Distance Objects)_RUBBLE_3.png.import index 98e59d0d4..2a573112f 100644 --- a/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld Re-Scaled (Missing Distance Objects)_RUBBLE_3.png.import +++ b/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld Re-Scaled (Missing Distance Objects)_RUBBLE_3.png.import @@ -3,9 +3,10 @@ importer="texture" type="CompressedTexture2D" uid="uid://cei6ammc4j6lc" -path="res://.godot/imported/Overworld Re-Scaled (Missing Distance Objects)_RUBBLE_3.png-f36babd4e8fc06289d8031d387cd5111.ctex" +path.s3tc="res://.godot/imported/Overworld Re-Scaled (Missing Distance Objects)_RUBBLE_3.png-f36babd4e8fc06289d8031d387cd5111.s3tc.ctex" metadata={ -"vram_texture": false +"imported_formats": ["s3tc_bptc"], +"vram_texture": true } generator_parameters={ "md5": "4e19cbbdc3474b11feba54f62c95d69f" @@ -14,11 +15,11 @@ generator_parameters={ [deps] source_file="res://src/map/overworld/Models/Overworld Re-Scaled (Missing Distance Objects)_RUBBLE_3.png" -dest_files=["res://.godot/imported/Overworld Re-Scaled (Missing Distance Objects)_RUBBLE_3.png-f36babd4e8fc06289d8031d387cd5111.ctex"] +dest_files=["res://.godot/imported/Overworld Re-Scaled (Missing Distance Objects)_RUBBLE_3.png-f36babd4e8fc06289d8031d387cd5111.s3tc.ctex"] [params] -compress/mode=0 +compress/mode=2 compress/high_quality=false compress/lossy_quality=0.7 compress/hdr_compression=1 diff --git a/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld Re-Scaled (Missing Distance Objects)_SA132.png.import b/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld Re-Scaled (Missing Distance Objects)_SA132.png.import index d141d755b..ed5370de3 100644 --- a/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld Re-Scaled (Missing Distance Objects)_SA132.png.import +++ b/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld Re-Scaled (Missing Distance Objects)_SA132.png.import @@ -3,9 +3,10 @@ importer="texture" type="CompressedTexture2D" uid="uid://bu1djtirsi5xb" -path="res://.godot/imported/Overworld Re-Scaled (Missing Distance Objects)_SA132.png-a88b5599e66448dbc6e098a05ca603a6.ctex" +path.s3tc="res://.godot/imported/Overworld Re-Scaled (Missing Distance Objects)_SA132.png-a88b5599e66448dbc6e098a05ca603a6.s3tc.ctex" metadata={ -"vram_texture": false +"imported_formats": ["s3tc_bptc"], +"vram_texture": true } generator_parameters={ "md5": "daa1e420082a6bfc12cfc4ff2d80a0bb" @@ -14,11 +15,11 @@ generator_parameters={ [deps] source_file="res://src/map/overworld/Models/Overworld Re-Scaled (Missing Distance Objects)_SA132.png" -dest_files=["res://.godot/imported/Overworld Re-Scaled (Missing Distance Objects)_SA132.png-a88b5599e66448dbc6e098a05ca603a6.ctex"] +dest_files=["res://.godot/imported/Overworld Re-Scaled (Missing Distance Objects)_SA132.png-a88b5599e66448dbc6e098a05ca603a6.s3tc.ctex"] [params] -compress/mode=0 +compress/mode=2 compress/high_quality=false compress/lossy_quality=0.7 compress/hdr_compression=1 diff --git a/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld Re-Scaled (Missing Distance Objects)_TEMPLE_TOP_RAIL.png.import b/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld Re-Scaled (Missing Distance Objects)_TEMPLE_TOP_RAIL.png.import index 7ace83d12..7493886f9 100644 --- a/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld Re-Scaled (Missing Distance Objects)_TEMPLE_TOP_RAIL.png.import +++ b/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld Re-Scaled (Missing Distance Objects)_TEMPLE_TOP_RAIL.png.import @@ -3,9 +3,10 @@ importer="texture" type="CompressedTexture2D" uid="uid://d3yecqpn5g3fr" -path="res://.godot/imported/Overworld Re-Scaled (Missing Distance Objects)_TEMPLE_TOP_RAIL.png-f9a7500b40da2b931e18735e96650aa6.ctex" +path.s3tc="res://.godot/imported/Overworld Re-Scaled (Missing Distance Objects)_TEMPLE_TOP_RAIL.png-f9a7500b40da2b931e18735e96650aa6.s3tc.ctex" metadata={ -"vram_texture": false +"imported_formats": ["s3tc_bptc"], +"vram_texture": true } generator_parameters={ "md5": "d6f026428a8fe6dd3126bcea07100f8e" @@ -14,11 +15,11 @@ generator_parameters={ [deps] source_file="res://src/map/overworld/Models/Overworld Re-Scaled (Missing Distance Objects)_TEMPLE_TOP_RAIL.png" -dest_files=["res://.godot/imported/Overworld Re-Scaled (Missing Distance Objects)_TEMPLE_TOP_RAIL.png-f9a7500b40da2b931e18735e96650aa6.ctex"] +dest_files=["res://.godot/imported/Overworld Re-Scaled (Missing Distance Objects)_TEMPLE_TOP_RAIL.png-f9a7500b40da2b931e18735e96650aa6.s3tc.ctex"] [params] -compress/mode=0 +compress/mode=2 compress/high_quality=false compress/lossy_quality=0.7 compress/hdr_compression=1 diff --git a/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld Re-Scaled (Missing Distance Objects)_TREE-TEXTURES.png.import b/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld Re-Scaled (Missing Distance Objects)_TREE-TEXTURES.png.import index 2e49f7735..169bcbbee 100644 --- a/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld Re-Scaled (Missing Distance Objects)_TREE-TEXTURES.png.import +++ b/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld Re-Scaled (Missing Distance Objects)_TREE-TEXTURES.png.import @@ -3,9 +3,10 @@ importer="texture" type="CompressedTexture2D" uid="uid://cwa8enmhswn5v" -path="res://.godot/imported/Overworld Re-Scaled (Missing Distance Objects)_TREE-TEXTURES.png-31c296ec510a49c76d068f751c979bc3.ctex" +path.s3tc="res://.godot/imported/Overworld Re-Scaled (Missing Distance Objects)_TREE-TEXTURES.png-31c296ec510a49c76d068f751c979bc3.s3tc.ctex" metadata={ -"vram_texture": false +"imported_formats": ["s3tc_bptc"], +"vram_texture": true } generator_parameters={ "md5": "3f49f05b0a56c88d03f1d6e341114fbb" @@ -14,11 +15,11 @@ generator_parameters={ [deps] source_file="res://src/map/overworld/Models/Overworld Re-Scaled (Missing Distance Objects)_TREE-TEXTURES.png" -dest_files=["res://.godot/imported/Overworld Re-Scaled (Missing Distance Objects)_TREE-TEXTURES.png-31c296ec510a49c76d068f751c979bc3.ctex"] +dest_files=["res://.godot/imported/Overworld Re-Scaled (Missing Distance Objects)_TREE-TEXTURES.png-31c296ec510a49c76d068f751c979bc3.s3tc.ctex"] [params] -compress/mode=0 +compress/mode=2 compress/high_quality=false compress/lossy_quality=0.7 compress/hdr_compression=1 diff --git a/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld Re-Scaled (Missing Distance Objects)_VINE.png.import b/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld Re-Scaled (Missing Distance Objects)_VINE.png.import index d0c0f707e..f3912bbfa 100644 --- a/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld Re-Scaled (Missing Distance Objects)_VINE.png.import +++ b/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld Re-Scaled (Missing Distance Objects)_VINE.png.import @@ -3,9 +3,10 @@ importer="texture" type="CompressedTexture2D" uid="uid://ccwe1jcys3uqr" -path="res://.godot/imported/Overworld Re-Scaled (Missing Distance Objects)_VINE.png-681a73806aaafb5c63a303328dc2d965.ctex" +path.s3tc="res://.godot/imported/Overworld Re-Scaled (Missing Distance Objects)_VINE.png-681a73806aaafb5c63a303328dc2d965.s3tc.ctex" metadata={ -"vram_texture": false +"imported_formats": ["s3tc_bptc"], +"vram_texture": true } generator_parameters={ "md5": "15ca62a0cd1a1315de5e2a0a0253f117" @@ -14,11 +15,11 @@ generator_parameters={ [deps] source_file="res://src/map/overworld/Models/Overworld Re-Scaled (Missing Distance Objects)_VINE.png" -dest_files=["res://.godot/imported/Overworld Re-Scaled (Missing Distance Objects)_VINE.png-681a73806aaafb5c63a303328dc2d965.ctex"] +dest_files=["res://.godot/imported/Overworld Re-Scaled (Missing Distance Objects)_VINE.png-681a73806aaafb5c63a303328dc2d965.s3tc.ctex"] [params] -compress/mode=0 +compress/mode=2 compress/high_quality=false compress/lossy_quality=0.7 compress/hdr_compression=1 diff --git a/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld Re-Scaled (Missing Distance Objects)_Wall Columns.png.import b/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld Re-Scaled (Missing Distance Objects)_Wall Columns.png.import index 793cc66d0..f7776c801 100644 --- a/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld Re-Scaled (Missing Distance Objects)_Wall Columns.png.import +++ b/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld Re-Scaled (Missing Distance Objects)_Wall Columns.png.import @@ -3,9 +3,10 @@ importer="texture" type="CompressedTexture2D" uid="uid://wxcy8cmyoig1" -path="res://.godot/imported/Overworld Re-Scaled (Missing Distance Objects)_Wall Columns.png-22aec0e424ce4bbbe2098bb40e7553dd.ctex" +path.s3tc="res://.godot/imported/Overworld Re-Scaled (Missing Distance Objects)_Wall Columns.png-22aec0e424ce4bbbe2098bb40e7553dd.s3tc.ctex" metadata={ -"vram_texture": false +"imported_formats": ["s3tc_bptc"], +"vram_texture": true } generator_parameters={ "md5": "4bd5c7db14e07b8ea5e9336c22c21628" @@ -14,11 +15,11 @@ generator_parameters={ [deps] source_file="res://src/map/overworld/Models/Overworld Re-Scaled (Missing Distance Objects)_Wall Columns.png" -dest_files=["res://.godot/imported/Overworld Re-Scaled (Missing Distance Objects)_Wall Columns.png-22aec0e424ce4bbbe2098bb40e7553dd.ctex"] +dest_files=["res://.godot/imported/Overworld Re-Scaled (Missing Distance Objects)_Wall Columns.png-22aec0e424ce4bbbe2098bb40e7553dd.s3tc.ctex"] [params] -compress/mode=0 +compress/mode=2 compress/high_quality=false compress/lossy_quality=0.7 compress/hdr_compression=1 diff --git a/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld Re-Scaled (Missing Distance Objects)_fern_leaf.png.import b/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld Re-Scaled (Missing Distance Objects)_fern_leaf.png.import index 6bcaf109c..85b0f6474 100644 --- a/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld Re-Scaled (Missing Distance Objects)_fern_leaf.png.import +++ b/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld Re-Scaled (Missing Distance Objects)_fern_leaf.png.import @@ -3,9 +3,10 @@ importer="texture" type="CompressedTexture2D" uid="uid://8cj07vv1dskt" -path="res://.godot/imported/Overworld Re-Scaled (Missing Distance Objects)_fern_leaf.png-cfc1dd0f93f52c2fef55e33309e402ab.ctex" +path.s3tc="res://.godot/imported/Overworld Re-Scaled (Missing Distance Objects)_fern_leaf.png-cfc1dd0f93f52c2fef55e33309e402ab.s3tc.ctex" metadata={ -"vram_texture": false +"imported_formats": ["s3tc_bptc"], +"vram_texture": true } generator_parameters={ "md5": "2b281d88dd84bfb307f46b08c00a74d2" @@ -14,11 +15,11 @@ generator_parameters={ [deps] source_file="res://src/map/overworld/Models/Overworld Re-Scaled (Missing Distance Objects)_fern_leaf.png" -dest_files=["res://.godot/imported/Overworld Re-Scaled (Missing Distance Objects)_fern_leaf.png-cfc1dd0f93f52c2fef55e33309e402ab.ctex"] +dest_files=["res://.godot/imported/Overworld Re-Scaled (Missing Distance Objects)_fern_leaf.png-cfc1dd0f93f52c2fef55e33309e402ab.s3tc.ctex"] [params] -compress/mode=0 +compress/mode=2 compress/high_quality=false compress/lossy_quality=0.7 compress/hdr_compression=1 @@ -28,7 +29,7 @@ mipmaps/generate=true mipmaps/limit=-1 roughness/mode=0 roughness/src_normal="" -process/fix_alpha_border=true +process/fix_alpha_border=false process/premult_alpha=false process/normal_map_invert_y=false process/hdr_as_srgb=false diff --git a/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld Re-Scaled (Missing Distance Objects)_floraltile.jpg.import b/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld Re-Scaled (Missing Distance Objects)_floraltile.jpg.import index 9445bdb66..b2db47f0e 100644 --- a/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld Re-Scaled (Missing Distance Objects)_floraltile.jpg.import +++ b/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld Re-Scaled (Missing Distance Objects)_floraltile.jpg.import @@ -3,9 +3,10 @@ importer="texture" type="CompressedTexture2D" uid="uid://d1nl327vid46h" -path="res://.godot/imported/Overworld Re-Scaled (Missing Distance Objects)_floraltile.jpg-ba672efcfb9d1b819b1492222c47ff83.ctex" +path.s3tc="res://.godot/imported/Overworld Re-Scaled (Missing Distance Objects)_floraltile.jpg-ba672efcfb9d1b819b1492222c47ff83.s3tc.ctex" metadata={ -"vram_texture": false +"imported_formats": ["s3tc_bptc"], +"vram_texture": true } generator_parameters={ "md5": "d6e34c55e9bc263475df1eda53ea9b1c" @@ -14,11 +15,11 @@ generator_parameters={ [deps] source_file="res://src/map/overworld/Models/Overworld Re-Scaled (Missing Distance Objects)_floraltile.jpg" -dest_files=["res://.godot/imported/Overworld Re-Scaled (Missing Distance Objects)_floraltile.jpg-ba672efcfb9d1b819b1492222c47ff83.ctex"] +dest_files=["res://.godot/imported/Overworld Re-Scaled (Missing Distance Objects)_floraltile.jpg-ba672efcfb9d1b819b1492222c47ff83.s3tc.ctex"] [params] -compress/mode=0 +compress/mode=2 compress/high_quality=false compress/lossy_quality=0.7 compress/hdr_compression=1 diff --git a/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld Re-Scaled (Missing Distance Objects)_greenery_!.png.import b/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld Re-Scaled (Missing Distance Objects)_greenery_!.png.import index 677a384e6..aa758bb43 100644 --- a/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld Re-Scaled (Missing Distance Objects)_greenery_!.png.import +++ b/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld Re-Scaled (Missing Distance Objects)_greenery_!.png.import @@ -3,9 +3,10 @@ importer="texture" type="CompressedTexture2D" uid="uid://d2rgsesi6yegu" -path="res://.godot/imported/Overworld Re-Scaled (Missing Distance Objects)_greenery_!.png-5e7505ffa01f2eb33111bebed3f66553.ctex" +path.s3tc="res://.godot/imported/Overworld Re-Scaled (Missing Distance Objects)_greenery_!.png-5e7505ffa01f2eb33111bebed3f66553.s3tc.ctex" metadata={ -"vram_texture": false +"imported_formats": ["s3tc_bptc"], +"vram_texture": true } generator_parameters={ "md5": "2c7cbfb6f06f97da081f7e602845bd77" @@ -14,11 +15,11 @@ generator_parameters={ [deps] source_file="res://src/map/overworld/Models/Overworld Re-Scaled (Missing Distance Objects)_greenery_!.png" -dest_files=["res://.godot/imported/Overworld Re-Scaled (Missing Distance Objects)_greenery_!.png-5e7505ffa01f2eb33111bebed3f66553.ctex"] +dest_files=["res://.godot/imported/Overworld Re-Scaled (Missing Distance Objects)_greenery_!.png-5e7505ffa01f2eb33111bebed3f66553.s3tc.ctex"] [params] -compress/mode=0 +compress/mode=2 compress/high_quality=false compress/lossy_quality=0.7 compress/hdr_compression=1 diff --git a/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld Re-Scaled (Missing Distance Objects)_leafs1.png.import b/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld Re-Scaled (Missing Distance Objects)_leafs1.png.import index 00a35b33a..a26613710 100644 --- a/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld Re-Scaled (Missing Distance Objects)_leafs1.png.import +++ b/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld Re-Scaled (Missing Distance Objects)_leafs1.png.import @@ -3,9 +3,10 @@ importer="texture" type="CompressedTexture2D" uid="uid://cv206faxuk1ew" -path="res://.godot/imported/Overworld Re-Scaled (Missing Distance Objects)_leafs1.png-da1fcbc005bd854cfffa8f72f87e89df.ctex" +path.s3tc="res://.godot/imported/Overworld Re-Scaled (Missing Distance Objects)_leafs1.png-da1fcbc005bd854cfffa8f72f87e89df.s3tc.ctex" metadata={ -"vram_texture": false +"imported_formats": ["s3tc_bptc"], +"vram_texture": true } generator_parameters={ "md5": "ff2987b615c96bd53c12a82b97d62077" @@ -14,11 +15,11 @@ generator_parameters={ [deps] source_file="res://src/map/overworld/Models/Overworld Re-Scaled (Missing Distance Objects)_leafs1.png" -dest_files=["res://.godot/imported/Overworld Re-Scaled (Missing Distance Objects)_leafs1.png-da1fcbc005bd854cfffa8f72f87e89df.ctex"] +dest_files=["res://.godot/imported/Overworld Re-Scaled (Missing Distance Objects)_leafs1.png-da1fcbc005bd854cfffa8f72f87e89df.s3tc.ctex"] [params] -compress/mode=0 +compress/mode=2 compress/high_quality=false compress/lossy_quality=0.7 compress/hdr_compression=1 diff --git a/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld Re-Scaled (Missing Distance Objects)_leafs2.png.import b/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld Re-Scaled (Missing Distance Objects)_leafs2.png.import index 3bb0ae9fa..d66fbcc31 100644 --- a/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld Re-Scaled (Missing Distance Objects)_leafs2.png.import +++ b/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld Re-Scaled (Missing Distance Objects)_leafs2.png.import @@ -3,9 +3,10 @@ importer="texture" type="CompressedTexture2D" uid="uid://s8irxfkgj2l7" -path="res://.godot/imported/Overworld Re-Scaled (Missing Distance Objects)_leafs2.png-bfcb2e4d478ddc722f4a6e1f1423abec.ctex" +path.s3tc="res://.godot/imported/Overworld Re-Scaled (Missing Distance Objects)_leafs2.png-bfcb2e4d478ddc722f4a6e1f1423abec.s3tc.ctex" metadata={ -"vram_texture": false +"imported_formats": ["s3tc_bptc"], +"vram_texture": true } generator_parameters={ "md5": "124e0f0e4330a8aa93655f1412462461" @@ -14,11 +15,11 @@ generator_parameters={ [deps] source_file="res://src/map/overworld/Models/Overworld Re-Scaled (Missing Distance Objects)_leafs2.png" -dest_files=["res://.godot/imported/Overworld Re-Scaled (Missing Distance Objects)_leafs2.png-bfcb2e4d478ddc722f4a6e1f1423abec.ctex"] +dest_files=["res://.godot/imported/Overworld Re-Scaled (Missing Distance Objects)_leafs2.png-bfcb2e4d478ddc722f4a6e1f1423abec.s3tc.ctex"] [params] -compress/mode=0 +compress/mode=2 compress/high_quality=false compress/lossy_quality=0.7 compress/hdr_compression=1 diff --git a/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld Re-Scaled (Missing Distance Objects)_leafs3.png.import b/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld Re-Scaled (Missing Distance Objects)_leafs3.png.import index a9b1fc192..f1cd9c0ae 100644 --- a/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld Re-Scaled (Missing Distance Objects)_leafs3.png.import +++ b/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld Re-Scaled (Missing Distance Objects)_leafs3.png.import @@ -3,9 +3,10 @@ importer="texture" type="CompressedTexture2D" uid="uid://dpg1e7m8jyyct" -path="res://.godot/imported/Overworld Re-Scaled (Missing Distance Objects)_leafs3.png-db286bfed4ed25437516790a1d5cf564.ctex" +path.s3tc="res://.godot/imported/Overworld Re-Scaled (Missing Distance Objects)_leafs3.png-db286bfed4ed25437516790a1d5cf564.s3tc.ctex" metadata={ -"vram_texture": false +"imported_formats": ["s3tc_bptc"], +"vram_texture": true } generator_parameters={ "md5": "8b53f1589d525787ad08a76b79b6f9d9" @@ -14,11 +15,11 @@ generator_parameters={ [deps] source_file="res://src/map/overworld/Models/Overworld Re-Scaled (Missing Distance Objects)_leafs3.png" -dest_files=["res://.godot/imported/Overworld Re-Scaled (Missing Distance Objects)_leafs3.png-db286bfed4ed25437516790a1d5cf564.ctex"] +dest_files=["res://.godot/imported/Overworld Re-Scaled (Missing Distance Objects)_leafs3.png-db286bfed4ed25437516790a1d5cf564.s3tc.ctex"] [params] -compress/mode=0 +compress/mode=2 compress/high_quality=false compress/lossy_quality=0.7 compress/hdr_compression=1 diff --git a/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld Re-Scaled (Missing Distance Objects)_leafs4.png.import b/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld Re-Scaled (Missing Distance Objects)_leafs4.png.import index 3c2ce07bc..0a467eea5 100644 --- a/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld Re-Scaled (Missing Distance Objects)_leafs4.png.import +++ b/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld Re-Scaled (Missing Distance Objects)_leafs4.png.import @@ -3,9 +3,10 @@ importer="texture" type="CompressedTexture2D" uid="uid://crjxo7n10vxcy" -path="res://.godot/imported/Overworld Re-Scaled (Missing Distance Objects)_leafs4.png-0f4ca36a5b40b3cc56f35fa47b897328.ctex" +path.s3tc="res://.godot/imported/Overworld Re-Scaled (Missing Distance Objects)_leafs4.png-0f4ca36a5b40b3cc56f35fa47b897328.s3tc.ctex" metadata={ -"vram_texture": false +"imported_formats": ["s3tc_bptc"], +"vram_texture": true } generator_parameters={ "md5": "2f1359a82503ffed501b4ef658d6470e" @@ -14,11 +15,11 @@ generator_parameters={ [deps] source_file="res://src/map/overworld/Models/Overworld Re-Scaled (Missing Distance Objects)_leafs4.png" -dest_files=["res://.godot/imported/Overworld Re-Scaled (Missing Distance Objects)_leafs4.png-0f4ca36a5b40b3cc56f35fa47b897328.ctex"] +dest_files=["res://.godot/imported/Overworld Re-Scaled (Missing Distance Objects)_leafs4.png-0f4ca36a5b40b3cc56f35fa47b897328.s3tc.ctex"] [params] -compress/mode=0 +compress/mode=2 compress/high_quality=false compress/lossy_quality=0.7 compress/hdr_compression=1 diff --git a/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld Re-Scaled (Missing Distance Objects)_metal_0059_color_1k.jpg.import b/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld Re-Scaled (Missing Distance Objects)_metal_0059_color_1k.jpg.import index b39a5bf20..f418386bb 100644 --- a/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld Re-Scaled (Missing Distance Objects)_metal_0059_color_1k.jpg.import +++ b/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld Re-Scaled (Missing Distance Objects)_metal_0059_color_1k.jpg.import @@ -3,9 +3,10 @@ importer="texture" type="CompressedTexture2D" uid="uid://c0xd0jkq1y1yh" -path="res://.godot/imported/Overworld Re-Scaled (Missing Distance Objects)_metal_0059_color_1k.jpg-9a1c6e0df537df9c315f2682f37f6d35.ctex" +path.s3tc="res://.godot/imported/Overworld Re-Scaled (Missing Distance Objects)_metal_0059_color_1k.jpg-9a1c6e0df537df9c315f2682f37f6d35.s3tc.ctex" metadata={ -"vram_texture": false +"imported_formats": ["s3tc_bptc"], +"vram_texture": true } generator_parameters={ "md5": "ef63815e0837cc6b28ff8f4d8187777a" @@ -14,11 +15,11 @@ generator_parameters={ [deps] source_file="res://src/map/overworld/Models/Overworld Re-Scaled (Missing Distance Objects)_metal_0059_color_1k.jpg" -dest_files=["res://.godot/imported/Overworld Re-Scaled (Missing Distance Objects)_metal_0059_color_1k.jpg-9a1c6e0df537df9c315f2682f37f6d35.ctex"] +dest_files=["res://.godot/imported/Overworld Re-Scaled (Missing Distance Objects)_metal_0059_color_1k.jpg-9a1c6e0df537df9c315f2682f37f6d35.s3tc.ctex"] [params] -compress/mode=0 +compress/mode=2 compress/high_quality=false compress/lossy_quality=0.7 compress/hdr_compression=1 diff --git a/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld Re-Scaled (Missing Distance Objects)_outdoor_railing)colorized2.png.import b/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld Re-Scaled (Missing Distance Objects)_outdoor_railing)colorized2.png.import index 735d0e2d0..e11b642ae 100644 --- a/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld Re-Scaled (Missing Distance Objects)_outdoor_railing)colorized2.png.import +++ b/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld Re-Scaled (Missing Distance Objects)_outdoor_railing)colorized2.png.import @@ -3,9 +3,10 @@ importer="texture" type="CompressedTexture2D" uid="uid://ybhimdiukhhx" -path="res://.godot/imported/Overworld Re-Scaled (Missing Distance Objects)_outdoor_railing)colorized2.png-521f39ea6e966609f3a12c8829c4a5cf.ctex" +path.s3tc="res://.godot/imported/Overworld Re-Scaled (Missing Distance Objects)_outdoor_railing)colorized2.png-521f39ea6e966609f3a12c8829c4a5cf.s3tc.ctex" metadata={ -"vram_texture": false +"imported_formats": ["s3tc_bptc"], +"vram_texture": true } generator_parameters={ "md5": "c041206405a00390905d9abb900fd17d" @@ -14,11 +15,11 @@ generator_parameters={ [deps] source_file="res://src/map/overworld/Models/Overworld Re-Scaled (Missing Distance Objects)_outdoor_railing)colorized2.png" -dest_files=["res://.godot/imported/Overworld Re-Scaled (Missing Distance Objects)_outdoor_railing)colorized2.png-521f39ea6e966609f3a12c8829c4a5cf.ctex"] +dest_files=["res://.godot/imported/Overworld Re-Scaled (Missing Distance Objects)_outdoor_railing)colorized2.png-521f39ea6e966609f3a12c8829c4a5cf.s3tc.ctex"] [params] -compress/mode=0 +compress/mode=2 compress/high_quality=false compress/lossy_quality=0.7 compress/hdr_compression=1 diff --git a/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld Re-Scaled (Missing Distance Objects)_outside_darker_brick.png.import b/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld Re-Scaled (Missing Distance Objects)_outside_darker_brick.png.import index 9abb52da4..bf868803f 100644 --- a/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld Re-Scaled (Missing Distance Objects)_outside_darker_brick.png.import +++ b/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld Re-Scaled (Missing Distance Objects)_outside_darker_brick.png.import @@ -3,9 +3,10 @@ importer="texture" type="CompressedTexture2D" uid="uid://c6bcwd1ym1dcg" -path="res://.godot/imported/Overworld Re-Scaled (Missing Distance Objects)_outside_darker_brick.png-81a95c376e186f77fb5ec62a4837e317.ctex" +path.s3tc="res://.godot/imported/Overworld Re-Scaled (Missing Distance Objects)_outside_darker_brick.png-81a95c376e186f77fb5ec62a4837e317.s3tc.ctex" metadata={ -"vram_texture": false +"imported_formats": ["s3tc_bptc"], +"vram_texture": true } generator_parameters={ "md5": "f5467c68c7881556d0182f607d5a98f9" @@ -14,11 +15,11 @@ generator_parameters={ [deps] source_file="res://src/map/overworld/Models/Overworld Re-Scaled (Missing Distance Objects)_outside_darker_brick.png" -dest_files=["res://.godot/imported/Overworld Re-Scaled (Missing Distance Objects)_outside_darker_brick.png-81a95c376e186f77fb5ec62a4837e317.ctex"] +dest_files=["res://.godot/imported/Overworld Re-Scaled (Missing Distance Objects)_outside_darker_brick.png-81a95c376e186f77fb5ec62a4837e317.s3tc.ctex"] [params] -compress/mode=0 +compress/mode=2 compress/high_quality=false compress/lossy_quality=0.7 compress/hdr_compression=1 diff --git a/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld Re-Scaled (Missing Distance Objects)_rock_outside_colored_CORRECTED1.png.import b/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld Re-Scaled (Missing Distance Objects)_rock_outside_colored_CORRECTED1.png.import index 678d0bd5e..91a555415 100644 --- a/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld Re-Scaled (Missing Distance Objects)_rock_outside_colored_CORRECTED1.png.import +++ b/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld Re-Scaled (Missing Distance Objects)_rock_outside_colored_CORRECTED1.png.import @@ -3,9 +3,10 @@ importer="texture" type="CompressedTexture2D" uid="uid://3jdwlwutijru" -path="res://.godot/imported/Overworld Re-Scaled (Missing Distance Objects)_rock_outside_colored_CORRECTED1.png-77935a6986e2262aabeb3d9bb91614aa.ctex" +path.s3tc="res://.godot/imported/Overworld Re-Scaled (Missing Distance Objects)_rock_outside_colored_CORRECTED1.png-77935a6986e2262aabeb3d9bb91614aa.s3tc.ctex" metadata={ -"vram_texture": false +"imported_formats": ["s3tc_bptc"], +"vram_texture": true } generator_parameters={ "md5": "1dcd83cf7d9dbb97cff982b14b92e498" @@ -14,11 +15,11 @@ generator_parameters={ [deps] source_file="res://src/map/overworld/Models/Overworld Re-Scaled (Missing Distance Objects)_rock_outside_colored_CORRECTED1.png" -dest_files=["res://.godot/imported/Overworld Re-Scaled (Missing Distance Objects)_rock_outside_colored_CORRECTED1.png-77935a6986e2262aabeb3d9bb91614aa.ctex"] +dest_files=["res://.godot/imported/Overworld Re-Scaled (Missing Distance Objects)_rock_outside_colored_CORRECTED1.png-77935a6986e2262aabeb3d9bb91614aa.s3tc.ctex"] [params] -compress/mode=0 +compress/mode=2 compress/high_quality=false compress/lossy_quality=0.7 compress/hdr_compression=1 diff --git a/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld Re-Scaled (Missing Distance Objects)_shrubbery2.png.import b/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld Re-Scaled (Missing Distance Objects)_shrubbery2.png.import index c893275d0..d770e609d 100644 --- a/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld Re-Scaled (Missing Distance Objects)_shrubbery2.png.import +++ b/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld Re-Scaled (Missing Distance Objects)_shrubbery2.png.import @@ -3,9 +3,10 @@ importer="texture" type="CompressedTexture2D" uid="uid://ijp8lorinwge" -path="res://.godot/imported/Overworld Re-Scaled (Missing Distance Objects)_shrubbery2.png-c651317f0671079affbaaf29a4194000.ctex" +path.s3tc="res://.godot/imported/Overworld Re-Scaled (Missing Distance Objects)_shrubbery2.png-c651317f0671079affbaaf29a4194000.s3tc.ctex" metadata={ -"vram_texture": false +"imported_formats": ["s3tc_bptc"], +"vram_texture": true } generator_parameters={ "md5": "7d7d1d2743a7f013ac7c3570808b6715" @@ -14,11 +15,11 @@ generator_parameters={ [deps] source_file="res://src/map/overworld/Models/Overworld Re-Scaled (Missing Distance Objects)_shrubbery2.png" -dest_files=["res://.godot/imported/Overworld Re-Scaled (Missing Distance Objects)_shrubbery2.png-c651317f0671079affbaaf29a4194000.ctex"] +dest_files=["res://.godot/imported/Overworld Re-Scaled (Missing Distance Objects)_shrubbery2.png-c651317f0671079affbaaf29a4194000.s3tc.ctex"] [params] -compress/mode=0 +compress/mode=2 compress/high_quality=false compress/lossy_quality=0.7 compress/hdr_compression=1 diff --git a/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld Re-Scaled (Missing Distance Objects)_stone_column_carved.png.import b/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld Re-Scaled (Missing Distance Objects)_stone_column_carved.png.import index 72230dd57..13c01f254 100644 --- a/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld Re-Scaled (Missing Distance Objects)_stone_column_carved.png.import +++ b/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld Re-Scaled (Missing Distance Objects)_stone_column_carved.png.import @@ -3,9 +3,10 @@ importer="texture" type="CompressedTexture2D" uid="uid://s8y4xcx33gh8" -path="res://.godot/imported/Overworld Re-Scaled (Missing Distance Objects)_stone_column_carved.png-ff826f77639f66a61ed255c10b39098b.ctex" +path.s3tc="res://.godot/imported/Overworld Re-Scaled (Missing Distance Objects)_stone_column_carved.png-ff826f77639f66a61ed255c10b39098b.s3tc.ctex" metadata={ -"vram_texture": false +"imported_formats": ["s3tc_bptc"], +"vram_texture": true } generator_parameters={ "md5": "ef2ae48ff9cd6fd05e4b483decbd7394" @@ -14,11 +15,11 @@ generator_parameters={ [deps] source_file="res://src/map/overworld/Models/Overworld Re-Scaled (Missing Distance Objects)_stone_column_carved.png" -dest_files=["res://.godot/imported/Overworld Re-Scaled (Missing Distance Objects)_stone_column_carved.png-ff826f77639f66a61ed255c10b39098b.ctex"] +dest_files=["res://.godot/imported/Overworld Re-Scaled (Missing Distance Objects)_stone_column_carved.png-ff826f77639f66a61ed255c10b39098b.s3tc.ctex"] [params] -compress/mode=0 +compress/mode=2 compress/high_quality=false compress/lossy_quality=0.7 compress/hdr_compression=1 diff --git a/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld Re-Scaled (Missing Distance Objects)_stone_weirdlytiled_color corrected.png.import b/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld Re-Scaled (Missing Distance Objects)_stone_weirdlytiled_color corrected.png.import index bc0522664..b1bfb3dc9 100644 --- a/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld Re-Scaled (Missing Distance Objects)_stone_weirdlytiled_color corrected.png.import +++ b/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld Re-Scaled (Missing Distance Objects)_stone_weirdlytiled_color corrected.png.import @@ -3,9 +3,10 @@ importer="texture" type="CompressedTexture2D" uid="uid://cr7t5bqaj7f3p" -path="res://.godot/imported/Overworld Re-Scaled (Missing Distance Objects)_stone_weirdlytiled_color corrected.png-d7204e7833efc01a26bbaed01ed3a319.ctex" +path.s3tc="res://.godot/imported/Overworld Re-Scaled (Missing Distance Objects)_stone_weirdlytiled_color corrected.png-d7204e7833efc01a26bbaed01ed3a319.s3tc.ctex" metadata={ -"vram_texture": false +"imported_formats": ["s3tc_bptc"], +"vram_texture": true } generator_parameters={ "md5": "3d76072eb51d25e991ce9c34761890f5" @@ -14,11 +15,11 @@ generator_parameters={ [deps] source_file="res://src/map/overworld/Models/Overworld Re-Scaled (Missing Distance Objects)_stone_weirdlytiled_color corrected.png" -dest_files=["res://.godot/imported/Overworld Re-Scaled (Missing Distance Objects)_stone_weirdlytiled_color corrected.png-d7204e7833efc01a26bbaed01ed3a319.ctex"] +dest_files=["res://.godot/imported/Overworld Re-Scaled (Missing Distance Objects)_stone_weirdlytiled_color corrected.png-d7204e7833efc01a26bbaed01ed3a319.s3tc.ctex"] [params] -compress/mode=0 +compress/mode=2 compress/high_quality=false compress/lossy_quality=0.7 compress/hdr_compression=1 diff --git a/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld Re-Scaled (Missing Distance Objects)_swirled_column.png.import b/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld Re-Scaled (Missing Distance Objects)_swirled_column.png.import index bcacabbc5..67a018417 100644 --- a/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld Re-Scaled (Missing Distance Objects)_swirled_column.png.import +++ b/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld Re-Scaled (Missing Distance Objects)_swirled_column.png.import @@ -3,9 +3,10 @@ importer="texture" type="CompressedTexture2D" uid="uid://chqb4cyqhr43f" -path="res://.godot/imported/Overworld Re-Scaled (Missing Distance Objects)_swirled_column.png-69d75ffbea7ed07d8f3f5701e1f010aa.ctex" +path.s3tc="res://.godot/imported/Overworld Re-Scaled (Missing Distance Objects)_swirled_column.png-69d75ffbea7ed07d8f3f5701e1f010aa.s3tc.ctex" metadata={ -"vram_texture": false +"imported_formats": ["s3tc_bptc"], +"vram_texture": true } generator_parameters={ "md5": "b95255ab479b02e2d0ee83096779cac5" @@ -14,11 +15,11 @@ generator_parameters={ [deps] source_file="res://src/map/overworld/Models/Overworld Re-Scaled (Missing Distance Objects)_swirled_column.png" -dest_files=["res://.godot/imported/Overworld Re-Scaled (Missing Distance Objects)_swirled_column.png-69d75ffbea7ed07d8f3f5701e1f010aa.ctex"] +dest_files=["res://.godot/imported/Overworld Re-Scaled (Missing Distance Objects)_swirled_column.png-69d75ffbea7ed07d8f3f5701e1f010aa.s3tc.ctex"] [params] -compress/mode=0 +compress/mode=2 compress/high_quality=false compress/lossy_quality=0.7 compress/hdr_compression=1 diff --git a/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld Re-Scaled (Missing Distance Objects)_wood_0003_color_1k.jpg.import b/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld Re-Scaled (Missing Distance Objects)_wood_0003_color_1k.jpg.import index 3072b5a1d..af07c6a94 100644 --- a/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld Re-Scaled (Missing Distance Objects)_wood_0003_color_1k.jpg.import +++ b/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld Re-Scaled (Missing Distance Objects)_wood_0003_color_1k.jpg.import @@ -3,9 +3,10 @@ importer="texture" type="CompressedTexture2D" uid="uid://61t7qaq2vlno" -path="res://.godot/imported/Overworld Re-Scaled (Missing Distance Objects)_wood_0003_color_1k.jpg-822ef0c711565d303434e62eefda0d2f.ctex" +path.s3tc="res://.godot/imported/Overworld Re-Scaled (Missing Distance Objects)_wood_0003_color_1k.jpg-822ef0c711565d303434e62eefda0d2f.s3tc.ctex" metadata={ -"vram_texture": false +"imported_formats": ["s3tc_bptc"], +"vram_texture": true } generator_parameters={ "md5": "d039830769483cf36bda4228e7471daf" @@ -14,11 +15,11 @@ generator_parameters={ [deps] source_file="res://src/map/overworld/Models/Overworld Re-Scaled (Missing Distance Objects)_wood_0003_color_1k.jpg" -dest_files=["res://.godot/imported/Overworld Re-Scaled (Missing Distance Objects)_wood_0003_color_1k.jpg-822ef0c711565d303434e62eefda0d2f.ctex"] +dest_files=["res://.godot/imported/Overworld Re-Scaled (Missing Distance Objects)_wood_0003_color_1k.jpg-822ef0c711565d303434e62eefda0d2f.s3tc.ctex"] [params] -compress/mode=0 +compress/mode=2 compress/high_quality=false compress/lossy_quality=0.7 compress/hdr_compression=1 diff --git a/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld_CLOUD_RINGS_INNER_33.png.import b/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld_CLOUD_RINGS_INNER_33.png.import index 85517509d..6083cd477 100644 --- a/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld_CLOUD_RINGS_INNER_33.png.import +++ b/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld_CLOUD_RINGS_INNER_33.png.import @@ -3,9 +3,10 @@ importer="texture" type="CompressedTexture2D" uid="uid://cb4pyjgv8p0bt" -path="res://.godot/imported/Overworld_CLOUD_RINGS_INNER_33.png-054a32f64b4bf3fd29b08121b946e596.ctex" +path.s3tc="res://.godot/imported/Overworld_CLOUD_RINGS_INNER_33.png-054a32f64b4bf3fd29b08121b946e596.s3tc.ctex" metadata={ -"vram_texture": false +"imported_formats": ["s3tc_bptc"], +"vram_texture": true } generator_parameters={ "md5": "baaffec5384812a09086c7148060d202" @@ -14,11 +15,11 @@ generator_parameters={ [deps] source_file="res://src/map/overworld/Models/Overworld_CLOUD_RINGS_INNER_33.png" -dest_files=["res://.godot/imported/Overworld_CLOUD_RINGS_INNER_33.png-054a32f64b4bf3fd29b08121b946e596.ctex"] +dest_files=["res://.godot/imported/Overworld_CLOUD_RINGS_INNER_33.png-054a32f64b4bf3fd29b08121b946e596.s3tc.ctex"] [params] -compress/mode=0 +compress/mode=2 compress/high_quality=false compress/lossy_quality=0.7 compress/hdr_compression=1 diff --git a/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld_CLOUD_RINGS_INNER_37.png.import b/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld_CLOUD_RINGS_INNER_37.png.import index 61de8b36d..5995225ae 100644 --- a/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld_CLOUD_RINGS_INNER_37.png.import +++ b/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld_CLOUD_RINGS_INNER_37.png.import @@ -3,9 +3,10 @@ importer="texture" type="CompressedTexture2D" uid="uid://w33fr6exryiy" -path="res://.godot/imported/Overworld_CLOUD_RINGS_INNER_37.png-7a4ba4042820c22b731f1084d7614b53.ctex" +path.s3tc="res://.godot/imported/Overworld_CLOUD_RINGS_INNER_37.png-7a4ba4042820c22b731f1084d7614b53.s3tc.ctex" metadata={ -"vram_texture": false +"imported_formats": ["s3tc_bptc"], +"vram_texture": true } generator_parameters={ "md5": "fed75d8e167d3c6998056f72bcc5b96d" @@ -14,11 +15,11 @@ generator_parameters={ [deps] source_file="res://src/map/overworld/Models/Overworld_CLOUD_RINGS_INNER_37.png" -dest_files=["res://.godot/imported/Overworld_CLOUD_RINGS_INNER_37.png-7a4ba4042820c22b731f1084d7614b53.ctex"] +dest_files=["res://.godot/imported/Overworld_CLOUD_RINGS_INNER_37.png-7a4ba4042820c22b731f1084d7614b53.s3tc.ctex"] [params] -compress/mode=0 +compress/mode=2 compress/high_quality=false compress/lossy_quality=0.7 compress/hdr_compression=1 diff --git a/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld_CLOUD_RINGS_INNER_39.png.import b/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld_CLOUD_RINGS_INNER_39.png.import index a4b4055ab..37b840959 100644 --- a/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld_CLOUD_RINGS_INNER_39.png.import +++ b/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld_CLOUD_RINGS_INNER_39.png.import @@ -3,9 +3,10 @@ importer="texture" type="CompressedTexture2D" uid="uid://cla7f1bobkvls" -path="res://.godot/imported/Overworld_CLOUD_RINGS_INNER_39.png-74413ae8faecce93b7ccd8090d49004a.ctex" +path.s3tc="res://.godot/imported/Overworld_CLOUD_RINGS_INNER_39.png-74413ae8faecce93b7ccd8090d49004a.s3tc.ctex" metadata={ -"vram_texture": false +"imported_formats": ["s3tc_bptc"], +"vram_texture": true } generator_parameters={ "md5": "370bbd3ce85a4019000dcc3f266ca215" @@ -14,11 +15,11 @@ generator_parameters={ [deps] source_file="res://src/map/overworld/Models/Overworld_CLOUD_RINGS_INNER_39.png" -dest_files=["res://.godot/imported/Overworld_CLOUD_RINGS_INNER_39.png-74413ae8faecce93b7ccd8090d49004a.ctex"] +dest_files=["res://.godot/imported/Overworld_CLOUD_RINGS_INNER_39.png-74413ae8faecce93b7ccd8090d49004a.s3tc.ctex"] [params] -compress/mode=0 +compress/mode=2 compress/high_quality=false compress/lossy_quality=0.7 compress/hdr_compression=1 diff --git a/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld_CLOUD_RINGS_INNER_45.png.import b/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld_CLOUD_RINGS_INNER_45.png.import index 5fe5e3081..980d60866 100644 --- a/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld_CLOUD_RINGS_INNER_45.png.import +++ b/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld_CLOUD_RINGS_INNER_45.png.import @@ -3,9 +3,10 @@ importer="texture" type="CompressedTexture2D" uid="uid://ds1xkflh1wvsn" -path="res://.godot/imported/Overworld_CLOUD_RINGS_INNER_45.png-f5b61c28df65672eb9271899cf69aba5.ctex" +path.s3tc="res://.godot/imported/Overworld_CLOUD_RINGS_INNER_45.png-f5b61c28df65672eb9271899cf69aba5.s3tc.ctex" metadata={ -"vram_texture": false +"imported_formats": ["s3tc_bptc"], +"vram_texture": true } generator_parameters={ "md5": "446ce9cd7b01aa9dd347b3215b98700d" @@ -14,11 +15,11 @@ generator_parameters={ [deps] source_file="res://src/map/overworld/Models/Overworld_CLOUD_RINGS_INNER_45.png" -dest_files=["res://.godot/imported/Overworld_CLOUD_RINGS_INNER_45.png-f5b61c28df65672eb9271899cf69aba5.ctex"] +dest_files=["res://.godot/imported/Overworld_CLOUD_RINGS_INNER_45.png-f5b61c28df65672eb9271899cf69aba5.s3tc.ctex"] [params] -compress/mode=0 +compress/mode=2 compress/high_quality=false compress/lossy_quality=0.7 compress/hdr_compression=1 diff --git a/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld_CLOUD_RINGS_INNER_46.png.import b/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld_CLOUD_RINGS_INNER_46.png.import index 634cc28da..a269e3cf6 100644 --- a/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld_CLOUD_RINGS_INNER_46.png.import +++ b/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld_CLOUD_RINGS_INNER_46.png.import @@ -3,9 +3,10 @@ importer="texture" type="CompressedTexture2D" uid="uid://nxu6dwxxyxkw" -path="res://.godot/imported/Overworld_CLOUD_RINGS_INNER_46.png-f6d59c494beb599d7b117f58937f5222.ctex" +path.s3tc="res://.godot/imported/Overworld_CLOUD_RINGS_INNER_46.png-f6d59c494beb599d7b117f58937f5222.s3tc.ctex" metadata={ -"vram_texture": false +"imported_formats": ["s3tc_bptc"], +"vram_texture": true } generator_parameters={ "md5": "ef42747fe6c72014c73ba6d89978f80c" @@ -14,11 +15,11 @@ generator_parameters={ [deps] source_file="res://src/map/overworld/Models/Overworld_CLOUD_RINGS_INNER_46.png" -dest_files=["res://.godot/imported/Overworld_CLOUD_RINGS_INNER_46.png-f6d59c494beb599d7b117f58937f5222.ctex"] +dest_files=["res://.godot/imported/Overworld_CLOUD_RINGS_INNER_46.png-f6d59c494beb599d7b117f58937f5222.s3tc.ctex"] [params] -compress/mode=0 +compress/mode=2 compress/high_quality=false compress/lossy_quality=0.7 compress/hdr_compression=1 diff --git a/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld_CLOUD_RINGS_INNER_63.png.import b/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld_CLOUD_RINGS_INNER_63.png.import index 53eca6dd1..13a8655bb 100644 --- a/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld_CLOUD_RINGS_INNER_63.png.import +++ b/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld_CLOUD_RINGS_INNER_63.png.import @@ -3,9 +3,10 @@ importer="texture" type="CompressedTexture2D" uid="uid://co6h8vyi11sl2" -path="res://.godot/imported/Overworld_CLOUD_RINGS_INNER_63.png-1ba129e16bdef6905cd911ec6b102ab0.ctex" +path.s3tc="res://.godot/imported/Overworld_CLOUD_RINGS_INNER_63.png-1ba129e16bdef6905cd911ec6b102ab0.s3tc.ctex" metadata={ -"vram_texture": false +"imported_formats": ["s3tc_bptc"], +"vram_texture": true } generator_parameters={ "md5": "8e8abf413eacccbe6b0a4d1a1fcb6fc1" @@ -14,11 +15,11 @@ generator_parameters={ [deps] source_file="res://src/map/overworld/Models/Overworld_CLOUD_RINGS_INNER_63.png" -dest_files=["res://.godot/imported/Overworld_CLOUD_RINGS_INNER_63.png-1ba129e16bdef6905cd911ec6b102ab0.ctex"] +dest_files=["res://.godot/imported/Overworld_CLOUD_RINGS_INNER_63.png-1ba129e16bdef6905cd911ec6b102ab0.s3tc.ctex"] [params] -compress/mode=0 +compress/mode=2 compress/high_quality=false compress/lossy_quality=0.7 compress/hdr_compression=1 diff --git a/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld_CLOUD_RINGS_INNER_71.png.import b/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld_CLOUD_RINGS_INNER_71.png.import index 98e8c719a..5b7169d20 100644 --- a/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld_CLOUD_RINGS_INNER_71.png.import +++ b/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld_CLOUD_RINGS_INNER_71.png.import @@ -3,9 +3,10 @@ importer="texture" type="CompressedTexture2D" uid="uid://dv10yaqvp3mub" -path="res://.godot/imported/Overworld_CLOUD_RINGS_INNER_71.png-d65ecaebd34f6f8a96f017697e8e22df.ctex" +path.s3tc="res://.godot/imported/Overworld_CLOUD_RINGS_INNER_71.png-d65ecaebd34f6f8a96f017697e8e22df.s3tc.ctex" metadata={ -"vram_texture": false +"imported_formats": ["s3tc_bptc"], +"vram_texture": true } generator_parameters={ "md5": "75267561eaf51aa57c6fc4fdeb9cf40b" @@ -14,11 +15,11 @@ generator_parameters={ [deps] source_file="res://src/map/overworld/Models/Overworld_CLOUD_RINGS_INNER_71.png" -dest_files=["res://.godot/imported/Overworld_CLOUD_RINGS_INNER_71.png-d65ecaebd34f6f8a96f017697e8e22df.ctex"] +dest_files=["res://.godot/imported/Overworld_CLOUD_RINGS_INNER_71.png-d65ecaebd34f6f8a96f017697e8e22df.s3tc.ctex"] [params] -compress/mode=0 +compress/mode=2 compress/high_quality=false compress/lossy_quality=0.7 compress/hdr_compression=1 diff --git a/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld_CLOUD_RINGS_OUTTER_33.png.import b/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld_CLOUD_RINGS_OUTTER_33.png.import index 369c0d038..565203368 100644 --- a/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld_CLOUD_RINGS_OUTTER_33.png.import +++ b/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld_CLOUD_RINGS_OUTTER_33.png.import @@ -3,9 +3,10 @@ importer="texture" type="CompressedTexture2D" uid="uid://dicwnhepupj5a" -path="res://.godot/imported/Overworld_CLOUD_RINGS_OUTTER_33.png-1a74decf5adba654c1710f1ab7a85775.ctex" +path.s3tc="res://.godot/imported/Overworld_CLOUD_RINGS_OUTTER_33.png-1a74decf5adba654c1710f1ab7a85775.s3tc.ctex" metadata={ -"vram_texture": false +"imported_formats": ["s3tc_bptc"], +"vram_texture": true } generator_parameters={ "md5": "baaffec5384812a09086c7148060d202" @@ -14,11 +15,11 @@ generator_parameters={ [deps] source_file="res://src/map/overworld/Models/Overworld_CLOUD_RINGS_OUTTER_33.png" -dest_files=["res://.godot/imported/Overworld_CLOUD_RINGS_OUTTER_33.png-1a74decf5adba654c1710f1ab7a85775.ctex"] +dest_files=["res://.godot/imported/Overworld_CLOUD_RINGS_OUTTER_33.png-1a74decf5adba654c1710f1ab7a85775.s3tc.ctex"] [params] -compress/mode=0 +compress/mode=2 compress/high_quality=false compress/lossy_quality=0.7 compress/hdr_compression=1 diff --git a/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld_CLOUD_RINGS_OUTTER_37.png.import b/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld_CLOUD_RINGS_OUTTER_37.png.import index 117aa0de7..bce4d9be0 100644 --- a/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld_CLOUD_RINGS_OUTTER_37.png.import +++ b/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld_CLOUD_RINGS_OUTTER_37.png.import @@ -3,9 +3,10 @@ importer="texture" type="CompressedTexture2D" uid="uid://bq8stlhr68aoa" -path="res://.godot/imported/Overworld_CLOUD_RINGS_OUTTER_37.png-85c9200d8a566d788e8b05a78f5a65c6.ctex" +path.s3tc="res://.godot/imported/Overworld_CLOUD_RINGS_OUTTER_37.png-85c9200d8a566d788e8b05a78f5a65c6.s3tc.ctex" metadata={ -"vram_texture": false +"imported_formats": ["s3tc_bptc"], +"vram_texture": true } generator_parameters={ "md5": "fed75d8e167d3c6998056f72bcc5b96d" @@ -14,11 +15,11 @@ generator_parameters={ [deps] source_file="res://src/map/overworld/Models/Overworld_CLOUD_RINGS_OUTTER_37.png" -dest_files=["res://.godot/imported/Overworld_CLOUD_RINGS_OUTTER_37.png-85c9200d8a566d788e8b05a78f5a65c6.ctex"] +dest_files=["res://.godot/imported/Overworld_CLOUD_RINGS_OUTTER_37.png-85c9200d8a566d788e8b05a78f5a65c6.s3tc.ctex"] [params] -compress/mode=0 +compress/mode=2 compress/high_quality=false compress/lossy_quality=0.7 compress/hdr_compression=1 diff --git a/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld_CLOUD_RINGS_OUTTER_39.png.import b/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld_CLOUD_RINGS_OUTTER_39.png.import index 405c58861..440b07dd2 100644 --- a/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld_CLOUD_RINGS_OUTTER_39.png.import +++ b/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld_CLOUD_RINGS_OUTTER_39.png.import @@ -3,9 +3,10 @@ importer="texture" type="CompressedTexture2D" uid="uid://cxbhw65ev7ajr" -path="res://.godot/imported/Overworld_CLOUD_RINGS_OUTTER_39.png-d911bfe460708f98235570e757a0c951.ctex" +path.s3tc="res://.godot/imported/Overworld_CLOUD_RINGS_OUTTER_39.png-d911bfe460708f98235570e757a0c951.s3tc.ctex" metadata={ -"vram_texture": false +"imported_formats": ["s3tc_bptc"], +"vram_texture": true } generator_parameters={ "md5": "370bbd3ce85a4019000dcc3f266ca215" @@ -14,11 +15,11 @@ generator_parameters={ [deps] source_file="res://src/map/overworld/Models/Overworld_CLOUD_RINGS_OUTTER_39.png" -dest_files=["res://.godot/imported/Overworld_CLOUD_RINGS_OUTTER_39.png-d911bfe460708f98235570e757a0c951.ctex"] +dest_files=["res://.godot/imported/Overworld_CLOUD_RINGS_OUTTER_39.png-d911bfe460708f98235570e757a0c951.s3tc.ctex"] [params] -compress/mode=0 +compress/mode=2 compress/high_quality=false compress/lossy_quality=0.7 compress/hdr_compression=1 diff --git a/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld_CLOUD_RINGS_OUTTER_45.png.import b/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld_CLOUD_RINGS_OUTTER_45.png.import index 5d37a88d4..07fa86b44 100644 --- a/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld_CLOUD_RINGS_OUTTER_45.png.import +++ b/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld_CLOUD_RINGS_OUTTER_45.png.import @@ -3,9 +3,10 @@ importer="texture" type="CompressedTexture2D" uid="uid://cqdgiqejuwy1v" -path="res://.godot/imported/Overworld_CLOUD_RINGS_OUTTER_45.png-9d05b922fc4a525548a049faa1e037e0.ctex" +path.s3tc="res://.godot/imported/Overworld_CLOUD_RINGS_OUTTER_45.png-9d05b922fc4a525548a049faa1e037e0.s3tc.ctex" metadata={ -"vram_texture": false +"imported_formats": ["s3tc_bptc"], +"vram_texture": true } generator_parameters={ "md5": "446ce9cd7b01aa9dd347b3215b98700d" @@ -14,11 +15,11 @@ generator_parameters={ [deps] source_file="res://src/map/overworld/Models/Overworld_CLOUD_RINGS_OUTTER_45.png" -dest_files=["res://.godot/imported/Overworld_CLOUD_RINGS_OUTTER_45.png-9d05b922fc4a525548a049faa1e037e0.ctex"] +dest_files=["res://.godot/imported/Overworld_CLOUD_RINGS_OUTTER_45.png-9d05b922fc4a525548a049faa1e037e0.s3tc.ctex"] [params] -compress/mode=0 +compress/mode=2 compress/high_quality=false compress/lossy_quality=0.7 compress/hdr_compression=1 diff --git a/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld_CLOUD_RINGS_OUTTER_46.png.import b/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld_CLOUD_RINGS_OUTTER_46.png.import index 879c53f1c..cad425957 100644 --- a/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld_CLOUD_RINGS_OUTTER_46.png.import +++ b/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld_CLOUD_RINGS_OUTTER_46.png.import @@ -3,9 +3,10 @@ importer="texture" type="CompressedTexture2D" uid="uid://bj11280ljrj2b" -path="res://.godot/imported/Overworld_CLOUD_RINGS_OUTTER_46.png-e16b352793b486f66206c01a6085b564.ctex" +path.s3tc="res://.godot/imported/Overworld_CLOUD_RINGS_OUTTER_46.png-e16b352793b486f66206c01a6085b564.s3tc.ctex" metadata={ -"vram_texture": false +"imported_formats": ["s3tc_bptc"], +"vram_texture": true } generator_parameters={ "md5": "ef42747fe6c72014c73ba6d89978f80c" @@ -14,11 +15,11 @@ generator_parameters={ [deps] source_file="res://src/map/overworld/Models/Overworld_CLOUD_RINGS_OUTTER_46.png" -dest_files=["res://.godot/imported/Overworld_CLOUD_RINGS_OUTTER_46.png-e16b352793b486f66206c01a6085b564.ctex"] +dest_files=["res://.godot/imported/Overworld_CLOUD_RINGS_OUTTER_46.png-e16b352793b486f66206c01a6085b564.s3tc.ctex"] [params] -compress/mode=0 +compress/mode=2 compress/high_quality=false compress/lossy_quality=0.7 compress/hdr_compression=1 diff --git a/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld_CLOUD_RINGS_OUTTER_63.png.import b/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld_CLOUD_RINGS_OUTTER_63.png.import index a27378b9a..687ed7d8d 100644 --- a/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld_CLOUD_RINGS_OUTTER_63.png.import +++ b/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld_CLOUD_RINGS_OUTTER_63.png.import @@ -3,9 +3,10 @@ importer="texture" type="CompressedTexture2D" uid="uid://n6najxyyui7d" -path="res://.godot/imported/Overworld_CLOUD_RINGS_OUTTER_63.png-0fda9c9bc45d0f3943ce56c129709a3a.ctex" +path.s3tc="res://.godot/imported/Overworld_CLOUD_RINGS_OUTTER_63.png-0fda9c9bc45d0f3943ce56c129709a3a.s3tc.ctex" metadata={ -"vram_texture": false +"imported_formats": ["s3tc_bptc"], +"vram_texture": true } generator_parameters={ "md5": "8e8abf413eacccbe6b0a4d1a1fcb6fc1" @@ -14,11 +15,11 @@ generator_parameters={ [deps] source_file="res://src/map/overworld/Models/Overworld_CLOUD_RINGS_OUTTER_63.png" -dest_files=["res://.godot/imported/Overworld_CLOUD_RINGS_OUTTER_63.png-0fda9c9bc45d0f3943ce56c129709a3a.ctex"] +dest_files=["res://.godot/imported/Overworld_CLOUD_RINGS_OUTTER_63.png-0fda9c9bc45d0f3943ce56c129709a3a.s3tc.ctex"] [params] -compress/mode=0 +compress/mode=2 compress/high_quality=false compress/lossy_quality=0.7 compress/hdr_compression=1 diff --git a/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld_CLOUD_RINGS_OUTTER_71.png.import b/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld_CLOUD_RINGS_OUTTER_71.png.import index 9b11a4309..01841f6b0 100644 --- a/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld_CLOUD_RINGS_OUTTER_71.png.import +++ b/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld_CLOUD_RINGS_OUTTER_71.png.import @@ -3,9 +3,10 @@ importer="texture" type="CompressedTexture2D" uid="uid://o0an407sgqg" -path="res://.godot/imported/Overworld_CLOUD_RINGS_OUTTER_71.png-5db86bcbc34e5e71384a91acb6ff9bbc.ctex" +path.s3tc="res://.godot/imported/Overworld_CLOUD_RINGS_OUTTER_71.png-5db86bcbc34e5e71384a91acb6ff9bbc.s3tc.ctex" metadata={ -"vram_texture": false +"imported_formats": ["s3tc_bptc"], +"vram_texture": true } generator_parameters={ "md5": "75267561eaf51aa57c6fc4fdeb9cf40b" @@ -14,11 +15,11 @@ generator_parameters={ [deps] source_file="res://src/map/overworld/Models/Overworld_CLOUD_RINGS_OUTTER_71.png" -dest_files=["res://.godot/imported/Overworld_CLOUD_RINGS_OUTTER_71.png-5db86bcbc34e5e71384a91acb6ff9bbc.ctex"] +dest_files=["res://.godot/imported/Overworld_CLOUD_RINGS_OUTTER_71.png-5db86bcbc34e5e71384a91acb6ff9bbc.s3tc.ctex"] [params] -compress/mode=0 +compress/mode=2 compress/high_quality=false compress/lossy_quality=0.7 compress/hdr_compression=1 diff --git a/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld_weird assetts_OW_STUCCO.png.import b/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld_weird assetts_OW_STUCCO.png.import index 782927d8c..360845e93 100644 --- a/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld_weird assetts_OW_STUCCO.png.import +++ b/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld_weird assetts_OW_STUCCO.png.import @@ -3,9 +3,10 @@ importer="texture" type="CompressedTexture2D" uid="uid://b16wndlutn12t" -path="res://.godot/imported/Overworld_weird assetts_OW_STUCCO.png-4d00e326296e182a15f1ebdb7e38f930.ctex" +path.s3tc="res://.godot/imported/Overworld_weird assetts_OW_STUCCO.png-4d00e326296e182a15f1ebdb7e38f930.s3tc.ctex" metadata={ -"vram_texture": false +"imported_formats": ["s3tc_bptc"], +"vram_texture": true } generator_parameters={ "md5": "185f473ebdfcd11a9890c296b1caee72" @@ -14,17 +15,17 @@ generator_parameters={ [deps] source_file="res://src/map/overworld/Models/Overworld_weird assetts_OW_STUCCO.png" -dest_files=["res://.godot/imported/Overworld_weird assetts_OW_STUCCO.png-4d00e326296e182a15f1ebdb7e38f930.ctex"] +dest_files=["res://.godot/imported/Overworld_weird assetts_OW_STUCCO.png-4d00e326296e182a15f1ebdb7e38f930.s3tc.ctex"] [params] -compress/mode=0 +compress/mode=2 compress/high_quality=false compress/lossy_quality=0.7 compress/hdr_compression=1 compress/normal_map=0 compress/channel_pack=0 -mipmaps/generate=true +mipmaps/generate=false mipmaps/limit=-1 roughness/mode=0 roughness/src_normal="" @@ -34,4 +35,4 @@ 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 +detect_3d/compress_to=1 diff --git a/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld_weird assetts_OW_Worked-Stone-Outside.png.import b/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld_weird assetts_OW_Worked-Stone-Outside.png.import index 0eb1c92d6..25704191d 100644 --- a/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld_weird assetts_OW_Worked-Stone-Outside.png.import +++ b/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld_weird assetts_OW_Worked-Stone-Outside.png.import @@ -3,9 +3,10 @@ importer="texture" type="CompressedTexture2D" uid="uid://cm33r6dnif7ad" -path="res://.godot/imported/Overworld_weird assetts_OW_Worked-Stone-Outside.png-2352e47c1779f73f897899e0e933453d.ctex" +path.s3tc="res://.godot/imported/Overworld_weird assetts_OW_Worked-Stone-Outside.png-2352e47c1779f73f897899e0e933453d.s3tc.ctex" metadata={ -"vram_texture": false +"imported_formats": ["s3tc_bptc"], +"vram_texture": true } generator_parameters={ "md5": "8cb2c164f2fb83c32b0f1c5e5269359d" @@ -14,17 +15,17 @@ generator_parameters={ [deps] source_file="res://src/map/overworld/Models/Overworld_weird assetts_OW_Worked-Stone-Outside.png" -dest_files=["res://.godot/imported/Overworld_weird assetts_OW_Worked-Stone-Outside.png-2352e47c1779f73f897899e0e933453d.ctex"] +dest_files=["res://.godot/imported/Overworld_weird assetts_OW_Worked-Stone-Outside.png-2352e47c1779f73f897899e0e933453d.s3tc.ctex"] [params] -compress/mode=0 +compress/mode=2 compress/high_quality=false compress/lossy_quality=0.7 compress/hdr_compression=1 compress/normal_map=0 compress/channel_pack=0 -mipmaps/generate=true +mipmaps/generate=false mipmaps/limit=-1 roughness/mode=0 roughness/src_normal="" @@ -34,4 +35,4 @@ 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 +detect_3d/compress_to=1 diff --git a/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld_weird assetts_TREE-TEXTURES.png.import b/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld_weird assetts_TREE-TEXTURES.png.import index 70a5c0e1a..cbed3a1b2 100644 --- a/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld_weird assetts_TREE-TEXTURES.png.import +++ b/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld_weird assetts_TREE-TEXTURES.png.import @@ -3,9 +3,10 @@ importer="texture" type="CompressedTexture2D" uid="uid://brtp2wfy8t4yk" -path="res://.godot/imported/Overworld_weird assetts_TREE-TEXTURES.png-01ab75d16157a1e25a1f8b0d5bb06b67.ctex" +path.s3tc="res://.godot/imported/Overworld_weird assetts_TREE-TEXTURES.png-01ab75d16157a1e25a1f8b0d5bb06b67.s3tc.ctex" metadata={ -"vram_texture": false +"imported_formats": ["s3tc_bptc"], +"vram_texture": true } generator_parameters={ "md5": "3f49f05b0a56c88d03f1d6e341114fbb" @@ -14,17 +15,17 @@ generator_parameters={ [deps] source_file="res://src/map/overworld/Models/Overworld_weird assetts_TREE-TEXTURES.png" -dest_files=["res://.godot/imported/Overworld_weird assetts_TREE-TEXTURES.png-01ab75d16157a1e25a1f8b0d5bb06b67.ctex"] +dest_files=["res://.godot/imported/Overworld_weird assetts_TREE-TEXTURES.png-01ab75d16157a1e25a1f8b0d5bb06b67.s3tc.ctex"] [params] -compress/mode=0 +compress/mode=2 compress/high_quality=false compress/lossy_quality=0.7 compress/hdr_compression=1 compress/normal_map=0 compress/channel_pack=0 -mipmaps/generate=true +mipmaps/generate=false mipmaps/limit=-1 roughness/mode=0 roughness/src_normal="" @@ -34,4 +35,4 @@ 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 +detect_3d/compress_to=1 diff --git a/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld_weird assetts_rock_outside_colored_CORRECTED1.png.import b/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld_weird assetts_rock_outside_colored_CORRECTED1.png.import index 48682cef0..18d24578d 100644 --- a/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld_weird assetts_rock_outside_colored_CORRECTED1.png.import +++ b/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld_weird assetts_rock_outside_colored_CORRECTED1.png.import @@ -3,9 +3,10 @@ importer="texture" type="CompressedTexture2D" uid="uid://3dp7oew6xtkf" -path="res://.godot/imported/Overworld_weird assetts_rock_outside_colored_CORRECTED1.png-bfe6cd42b31fac486afb0ad4eb072570.ctex" +path.s3tc="res://.godot/imported/Overworld_weird assetts_rock_outside_colored_CORRECTED1.png-bfe6cd42b31fac486afb0ad4eb072570.s3tc.ctex" metadata={ -"vram_texture": false +"imported_formats": ["s3tc_bptc"], +"vram_texture": true } generator_parameters={ "md5": "1dcd83cf7d9dbb97cff982b14b92e498" @@ -14,17 +15,17 @@ generator_parameters={ [deps] source_file="res://src/map/overworld/Models/Overworld_weird assetts_rock_outside_colored_CORRECTED1.png" -dest_files=["res://.godot/imported/Overworld_weird assetts_rock_outside_colored_CORRECTED1.png-bfe6cd42b31fac486afb0ad4eb072570.ctex"] +dest_files=["res://.godot/imported/Overworld_weird assetts_rock_outside_colored_CORRECTED1.png-bfe6cd42b31fac486afb0ad4eb072570.s3tc.ctex"] [params] -compress/mode=0 +compress/mode=2 compress/high_quality=false compress/lossy_quality=0.7 compress/hdr_compression=1 compress/normal_map=0 compress/channel_pack=0 -mipmaps/generate=true +mipmaps/generate=false mipmaps/limit=-1 roughness/mode=0 roughness/src_normal="" @@ -34,4 +35,4 @@ 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 +detect_3d/compress_to=1 diff --git a/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld_weird assetts_stone_column_carved.png.import b/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld_weird assetts_stone_column_carved.png.import index e28c33aae..7cf33345b 100644 --- a/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld_weird assetts_stone_column_carved.png.import +++ b/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld_weird assetts_stone_column_carved.png.import @@ -3,9 +3,10 @@ importer="texture" type="CompressedTexture2D" uid="uid://bbsr50cxpctj5" -path="res://.godot/imported/Overworld_weird assetts_stone_column_carved.png-10bb1df756443bd4643f1e16b4a28419.ctex" +path.s3tc="res://.godot/imported/Overworld_weird assetts_stone_column_carved.png-10bb1df756443bd4643f1e16b4a28419.s3tc.ctex" metadata={ -"vram_texture": false +"imported_formats": ["s3tc_bptc"], +"vram_texture": true } generator_parameters={ "md5": "ef2ae48ff9cd6fd05e4b483decbd7394" @@ -14,17 +15,17 @@ generator_parameters={ [deps] source_file="res://src/map/overworld/Models/Overworld_weird assetts_stone_column_carved.png" -dest_files=["res://.godot/imported/Overworld_weird assetts_stone_column_carved.png-10bb1df756443bd4643f1e16b4a28419.ctex"] +dest_files=["res://.godot/imported/Overworld_weird assetts_stone_column_carved.png-10bb1df756443bd4643f1e16b4a28419.s3tc.ctex"] [params] -compress/mode=0 +compress/mode=2 compress/high_quality=false compress/lossy_quality=0.7 compress/hdr_compression=1 compress/normal_map=0 compress/channel_pack=0 -mipmaps/generate=true +mipmaps/generate=false mipmaps/limit=-1 roughness/mode=0 roughness/src_normal="" @@ -34,4 +35,4 @@ 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 +detect_3d/compress_to=1 diff --git a/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld_weird assetts_stone_weirdlytiled_color corrected.png.import b/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld_weird assetts_stone_weirdlytiled_color corrected.png.import index f4a0ef09a..06ae5a572 100644 --- a/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld_weird assetts_stone_weirdlytiled_color corrected.png.import +++ b/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld_weird assetts_stone_weirdlytiled_color corrected.png.import @@ -3,9 +3,10 @@ importer="texture" type="CompressedTexture2D" uid="uid://c7yhcvgpv8i3t" -path="res://.godot/imported/Overworld_weird assetts_stone_weirdlytiled_color corrected.png-865aa65f583214a6707ede61b6a7204c.ctex" +path.s3tc="res://.godot/imported/Overworld_weird assetts_stone_weirdlytiled_color corrected.png-865aa65f583214a6707ede61b6a7204c.s3tc.ctex" metadata={ -"vram_texture": false +"imported_formats": ["s3tc_bptc"], +"vram_texture": true } generator_parameters={ "md5": "3d76072eb51d25e991ce9c34761890f5" @@ -14,17 +15,17 @@ generator_parameters={ [deps] source_file="res://src/map/overworld/Models/Overworld_weird assetts_stone_weirdlytiled_color corrected.png" -dest_files=["res://.godot/imported/Overworld_weird assetts_stone_weirdlytiled_color corrected.png-865aa65f583214a6707ede61b6a7204c.ctex"] +dest_files=["res://.godot/imported/Overworld_weird assetts_stone_weirdlytiled_color corrected.png-865aa65f583214a6707ede61b6a7204c.s3tc.ctex"] [params] -compress/mode=0 +compress/mode=2 compress/high_quality=false compress/lossy_quality=0.7 compress/hdr_compression=1 compress/normal_map=0 compress/channel_pack=0 -mipmaps/generate=true +mipmaps/generate=false mipmaps/limit=-1 roughness/mode=0 roughness/src_normal="" @@ -34,4 +35,4 @@ 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 +detect_3d/compress_to=1 diff --git a/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld_weird assetts_swirled_column.png.import b/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld_weird assetts_swirled_column.png.import index 0f6b061b5..ddff1b116 100644 --- a/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld_weird assetts_swirled_column.png.import +++ b/Zennysoft.Game.Ma/src/map/overworld/Models/Overworld_weird assetts_swirled_column.png.import @@ -3,9 +3,10 @@ importer="texture" type="CompressedTexture2D" uid="uid://dbhh03351btow" -path="res://.godot/imported/Overworld_weird assetts_swirled_column.png-a815cfdff0fac47031d868b4e281c806.ctex" +path.s3tc="res://.godot/imported/Overworld_weird assetts_swirled_column.png-a815cfdff0fac47031d868b4e281c806.s3tc.ctex" metadata={ -"vram_texture": false +"imported_formats": ["s3tc_bptc"], +"vram_texture": true } generator_parameters={ "md5": "b95255ab479b02e2d0ee83096779cac5" @@ -14,17 +15,17 @@ generator_parameters={ [deps] source_file="res://src/map/overworld/Models/Overworld_weird assetts_swirled_column.png" -dest_files=["res://.godot/imported/Overworld_weird assetts_swirled_column.png-a815cfdff0fac47031d868b4e281c806.ctex"] +dest_files=["res://.godot/imported/Overworld_weird assetts_swirled_column.png-a815cfdff0fac47031d868b4e281c806.s3tc.ctex"] [params] -compress/mode=0 +compress/mode=2 compress/high_quality=false compress/lossy_quality=0.7 compress/hdr_compression=1 compress/normal_map=0 compress/channel_pack=0 -mipmaps/generate=true +mipmaps/generate=false mipmaps/limit=-1 roughness/mode=0 roughness/src_normal="" @@ -34,4 +35,4 @@ 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 +detect_3d/compress_to=1 diff --git a/Zennysoft.Game.Ma/src/player/DummyPlayer.cs b/Zennysoft.Game.Ma/src/player/DummyPlayer.cs new file mode 100644 index 000000000..9dcd48048 --- /dev/null +++ b/Zennysoft.Game.Ma/src/player/DummyPlayer.cs @@ -0,0 +1,42 @@ +using Godot; +using System; +using Zennysoft.Ma.Adapter; + +namespace Zennysoft.Game.Ma; + +public partial class DummyPlayer : CharacterBody3D, IPlayer +{ + public IInventory Inventory { get; } + public IHealthComponent HealthComponent { get; } + public IVTComponent VTComponent { get; } + public IAttackComponent AttackComponent { get; } + public IDefenseComponent DefenseComponent { get; } + public IExperiencePointsComponent ExperiencePointsComponent { get; } + public ILuckComponent LuckComponent { get; } + public IEquipmentComponent EquipmentComponent { get; } + public bool AutoRevive { get; set; } + public int TotalAttack { get; } + public int TotalDefense { get; } + public int TotalLuck { get; } + public int HealthTimerHPRate { get; set; } + public float HealthTimerSpeedModifier { get; } + public bool AutoIdentifyItems { get; set; } + + public event Action PlayerDied; + + public void Activate() => throw new NotImplementedException(); + public void ApplyNewAugment(IAugmentItem jewel, IAugmentableItem equipableItem) => throw new NotImplementedException(); + public void Deactivate() => throw new NotImplementedException(); + public void Die() => throw new NotImplementedException(); + public void Equip(IEquipableItem equipable) => throw new NotImplementedException(); + public void IdentifyItem(IBaseInventoryItem unidentifiedItem) => throw new NotImplementedException(); + public void Knockback(float impulse) => throw new NotImplementedException(); + public void LevelUp() => throw new NotImplementedException(); + public void ModifyHealthTimerSpeed(float newModifier) => throw new NotImplementedException(); + public void PlayJumpScareAnimation() => throw new NotImplementedException(); + public void ResetPlayerData() => throw new NotImplementedException(); + public void SetHealthTimerStatus(bool isActive) => throw new NotImplementedException(); + public void TakeDamage(AttackData damage) => throw new NotImplementedException(); + public void TeleportPlayer((Vector3 Rotation, Vector3 Position) newTransform) => throw new NotImplementedException(); + public void Unequip(IEquipableItem equipable) => throw new NotImplementedException(); +} diff --git a/Zennysoft.Game.Ma/src/player/DummyPlayer.cs.uid b/Zennysoft.Game.Ma/src/player/DummyPlayer.cs.uid new file mode 100644 index 000000000..56023f712 --- /dev/null +++ b/Zennysoft.Game.Ma/src/player/DummyPlayer.cs.uid @@ -0,0 +1 @@ +uid://bc6iu0oq18y2l diff --git a/Zennysoft.Game.Ma/src/player/Player.tscn b/Zennysoft.Game.Ma/src/player/Player.tscn index bb69a2ee0..3b792b4e5 100644 --- a/Zennysoft.Game.Ma/src/player/Player.tscn +++ b/Zennysoft.Game.Ma/src/player/Player.tscn @@ -548,10 +548,10 @@ radius = 1.0 height = 3.07596 -[sub_resource type="ShaderMaterial" id="ShaderMaterial_jtmj1"] +[sub_resource type="ShaderMaterial" id="ShaderMaterial_cqsul"] [sub_resource type="QuadMesh" id="QuadMesh_ebyyx"] -material = SubResource("ShaderMaterial_jtmj1") +material = SubResource("ShaderMaterial_cqsul") flip_faces = true size = Vector2(2, 2) diff --git a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_000.png b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_000.png new file mode 100644 index 000000000..86cdabbdc Binary files /dev/null and b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_000.png differ diff --git a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_000.png.import b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_000.png.import new file mode 100644 index 000000000..1ebd366fe --- /dev/null +++ b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_000.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://deh34asaj6vv8" +path.bptc="res://.godot/imported/chariot_attack2_000.png-0fa63b2f4f37a8a674be857d2ce2d269.bptc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/vfx/Enemy/chariot_attack2/chariot_attack2_000.png" +dest_files=["res://.godot/imported/chariot_attack2_000.png-0fa63b2f4f37a8a674be857d2ce2d269.bptc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=true +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/Enemy/chariot_attack2/chariot_attack2_001.png b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_001.png new file mode 100644 index 000000000..f733bcf56 Binary files /dev/null and b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_001.png differ diff --git a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_001.png.import b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_001.png.import new file mode 100644 index 000000000..54c0c898c --- /dev/null +++ b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_001.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://djuytlp7ci3wd" +path.bptc="res://.godot/imported/chariot_attack2_001.png-057703783a1c717d53a60c6844ddae6e.bptc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/vfx/Enemy/chariot_attack2/chariot_attack2_001.png" +dest_files=["res://.godot/imported/chariot_attack2_001.png-057703783a1c717d53a60c6844ddae6e.bptc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=true +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/Enemy/chariot_attack2/chariot_attack2_002.png b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_002.png new file mode 100644 index 000000000..0b8b2d110 Binary files /dev/null and b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_002.png differ diff --git a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_002.png.import b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_002.png.import new file mode 100644 index 000000000..f6b77a963 --- /dev/null +++ b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_002.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cbcrd126h6dni" +path.bptc="res://.godot/imported/chariot_attack2_002.png-7e885792bd0879baa69b9d9360844e8d.bptc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/vfx/Enemy/chariot_attack2/chariot_attack2_002.png" +dest_files=["res://.godot/imported/chariot_attack2_002.png-7e885792bd0879baa69b9d9360844e8d.bptc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=true +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/Enemy/chariot_attack2/chariot_attack2_003.png b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_003.png new file mode 100644 index 000000000..05a1bf01e Binary files /dev/null and b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_003.png differ diff --git a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_003.png.import b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_003.png.import new file mode 100644 index 000000000..f22ee54eb --- /dev/null +++ b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_003.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ifn1p0hxal20" +path.bptc="res://.godot/imported/chariot_attack2_003.png-6061f3f4ed6ba5634aa872cae8fac812.bptc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/vfx/Enemy/chariot_attack2/chariot_attack2_003.png" +dest_files=["res://.godot/imported/chariot_attack2_003.png-6061f3f4ed6ba5634aa872cae8fac812.bptc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=true +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/Enemy/chariot_attack2/chariot_attack2_004.png b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_004.png new file mode 100644 index 000000000..aa24d2f0c Binary files /dev/null and b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_004.png differ diff --git a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_004.png.import b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_004.png.import new file mode 100644 index 000000000..17480205a --- /dev/null +++ b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_004.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://hwr2gf64wiao" +path.bptc="res://.godot/imported/chariot_attack2_004.png-046fe15913a5f1f24f1893adb786f5cd.bptc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/vfx/Enemy/chariot_attack2/chariot_attack2_004.png" +dest_files=["res://.godot/imported/chariot_attack2_004.png-046fe15913a5f1f24f1893adb786f5cd.bptc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=true +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/Enemy/chariot_attack2/chariot_attack2_005.png b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_005.png new file mode 100644 index 000000000..0f5004537 Binary files /dev/null and b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_005.png differ diff --git a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_005.png.import b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_005.png.import new file mode 100644 index 000000000..34158edf8 --- /dev/null +++ b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_005.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c6j2nrst08ijp" +path.bptc="res://.godot/imported/chariot_attack2_005.png-c9377e522a81e4e9502a8267a8da3920.bptc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/vfx/Enemy/chariot_attack2/chariot_attack2_005.png" +dest_files=["res://.godot/imported/chariot_attack2_005.png-c9377e522a81e4e9502a8267a8da3920.bptc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=true +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/Enemy/chariot_attack2/chariot_attack2_006.png b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_006.png new file mode 100644 index 000000000..5f6274893 Binary files /dev/null and b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_006.png differ diff --git a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_006.png.import b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_006.png.import new file mode 100644 index 000000000..bdbf918f1 --- /dev/null +++ b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_006.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cgt80eps0otms" +path.bptc="res://.godot/imported/chariot_attack2_006.png-6dc9536623768adb325e46053e28dda5.bptc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/vfx/Enemy/chariot_attack2/chariot_attack2_006.png" +dest_files=["res://.godot/imported/chariot_attack2_006.png-6dc9536623768adb325e46053e28dda5.bptc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=true +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/Enemy/chariot_attack2/chariot_attack2_007.png b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_007.png new file mode 100644 index 000000000..2cd7e421f Binary files /dev/null and b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_007.png differ diff --git a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_007.png.import b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_007.png.import new file mode 100644 index 000000000..254ebcf78 --- /dev/null +++ b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_007.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dge7nid4tosyn" +path.bptc="res://.godot/imported/chariot_attack2_007.png-e5d1f263e03c36a069b1a8860bda805d.bptc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/vfx/Enemy/chariot_attack2/chariot_attack2_007.png" +dest_files=["res://.godot/imported/chariot_attack2_007.png-e5d1f263e03c36a069b1a8860bda805d.bptc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=true +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/Enemy/chariot_attack2/chariot_attack2_008.png b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_008.png new file mode 100644 index 000000000..0b6049faa Binary files /dev/null and b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_008.png differ diff --git a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_008.png.import b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_008.png.import new file mode 100644 index 000000000..75f1cb401 --- /dev/null +++ b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_008.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dmuv6evj6xy5v" +path.bptc="res://.godot/imported/chariot_attack2_008.png-d877ea32c24c6cb18d58455824e1cdc6.bptc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/vfx/Enemy/chariot_attack2/chariot_attack2_008.png" +dest_files=["res://.godot/imported/chariot_attack2_008.png-d877ea32c24c6cb18d58455824e1cdc6.bptc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=true +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/Enemy/chariot_attack2/chariot_attack2_009.png b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_009.png new file mode 100644 index 000000000..0c744db7b Binary files /dev/null and b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_009.png differ diff --git a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_009.png.import b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_009.png.import new file mode 100644 index 000000000..f023e9529 --- /dev/null +++ b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_009.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cmr605aikfdgn" +path.bptc="res://.godot/imported/chariot_attack2_009.png-29d46fb01a27ac170575d8447f77264c.bptc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/vfx/Enemy/chariot_attack2/chariot_attack2_009.png" +dest_files=["res://.godot/imported/chariot_attack2_009.png-29d46fb01a27ac170575d8447f77264c.bptc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=true +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/Enemy/chariot_attack2/chariot_attack2_010.png b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_010.png new file mode 100644 index 000000000..477102eed Binary files /dev/null and b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_010.png differ diff --git a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_010.png.import b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_010.png.import new file mode 100644 index 000000000..4b67f71b5 --- /dev/null +++ b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_010.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dr1jl30klhdlo" +path.bptc="res://.godot/imported/chariot_attack2_010.png-f15b27d34a495cd8e6ecca5f7a41a502.bptc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/vfx/Enemy/chariot_attack2/chariot_attack2_010.png" +dest_files=["res://.godot/imported/chariot_attack2_010.png-f15b27d34a495cd8e6ecca5f7a41a502.bptc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=true +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/Enemy/chariot_attack2/chariot_attack2_011.png b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_011.png new file mode 100644 index 000000000..0e0fc112a Binary files /dev/null and b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_011.png differ diff --git a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_011.png.import b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_011.png.import new file mode 100644 index 000000000..efc1ea77c --- /dev/null +++ b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_011.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b1w6k0gqqigsy" +path.bptc="res://.godot/imported/chariot_attack2_011.png-3f9e99698fd848e79c49ab47629fde70.bptc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/vfx/Enemy/chariot_attack2/chariot_attack2_011.png" +dest_files=["res://.godot/imported/chariot_attack2_011.png-3f9e99698fd848e79c49ab47629fde70.bptc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=true +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/Enemy/chariot_attack2/chariot_attack2_012.png b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_012.png new file mode 100644 index 000000000..b2a3dbd9d Binary files /dev/null and b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_012.png differ diff --git a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_012.png.import b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_012.png.import new file mode 100644 index 000000000..cf8ae1b7d --- /dev/null +++ b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_012.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b6l6qpakndsw7" +path.bptc="res://.godot/imported/chariot_attack2_012.png-14432fde13de2b8a1e7fc337a0493a1d.bptc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/vfx/Enemy/chariot_attack2/chariot_attack2_012.png" +dest_files=["res://.godot/imported/chariot_attack2_012.png-14432fde13de2b8a1e7fc337a0493a1d.bptc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=true +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/Enemy/chariot_attack2/chariot_attack2_013.png b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_013.png new file mode 100644 index 000000000..579c5d779 Binary files /dev/null and b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_013.png differ diff --git a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_013.png.import b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_013.png.import new file mode 100644 index 000000000..c2f24f5a0 --- /dev/null +++ b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_013.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d1jwiow6k4vjn" +path.bptc="res://.godot/imported/chariot_attack2_013.png-862c38f58b7e91e8430ba4572df5dd91.bptc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/vfx/Enemy/chariot_attack2/chariot_attack2_013.png" +dest_files=["res://.godot/imported/chariot_attack2_013.png-862c38f58b7e91e8430ba4572df5dd91.bptc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=true +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/Enemy/chariot_attack2/chariot_attack2_014.png b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_014.png new file mode 100644 index 000000000..96f2b4c71 Binary files /dev/null and b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_014.png differ diff --git a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_014.png.import b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_014.png.import new file mode 100644 index 000000000..0098fb7ab --- /dev/null +++ b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_014.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bekp4xamkvdi" +path.bptc="res://.godot/imported/chariot_attack2_014.png-ef4affc9d2c72ced5ce8efd5601b891b.bptc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/vfx/Enemy/chariot_attack2/chariot_attack2_014.png" +dest_files=["res://.godot/imported/chariot_attack2_014.png-ef4affc9d2c72ced5ce8efd5601b891b.bptc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=true +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/Enemy/chariot_attack2/chariot_attack2_015.png b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_015.png new file mode 100644 index 000000000..fd5c5a996 Binary files /dev/null and b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_015.png differ diff --git a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_015.png.import b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_015.png.import new file mode 100644 index 000000000..6bbd989c4 --- /dev/null +++ b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_015.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cpvafm8pkt2js" +path.bptc="res://.godot/imported/chariot_attack2_015.png-1f0f2c3aafd86224cb21c57eea914324.bptc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/vfx/Enemy/chariot_attack2/chariot_attack2_015.png" +dest_files=["res://.godot/imported/chariot_attack2_015.png-1f0f2c3aafd86224cb21c57eea914324.bptc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=true +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/Enemy/chariot_attack2/chariot_attack2_016.png b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_016.png new file mode 100644 index 000000000..f2a2f2fad Binary files /dev/null and b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_016.png differ diff --git a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_016.png.import b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_016.png.import new file mode 100644 index 000000000..7ddc9a9f6 --- /dev/null +++ b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_016.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cnrwyo65vi5ln" +path.bptc="res://.godot/imported/chariot_attack2_016.png-7a4573a33b9285522a73e295e96842f2.bptc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/vfx/Enemy/chariot_attack2/chariot_attack2_016.png" +dest_files=["res://.godot/imported/chariot_attack2_016.png-7a4573a33b9285522a73e295e96842f2.bptc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=true +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/Enemy/chariot_attack2/chariot_attack2_017.png b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_017.png new file mode 100644 index 000000000..edca51cc9 Binary files /dev/null and b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_017.png differ diff --git a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_017.png.import b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_017.png.import new file mode 100644 index 000000000..0ca76fca8 --- /dev/null +++ b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_017.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b8keseswx4hc5" +path.bptc="res://.godot/imported/chariot_attack2_017.png-765dffd8f8df08db8915f4748c7e862f.bptc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/vfx/Enemy/chariot_attack2/chariot_attack2_017.png" +dest_files=["res://.godot/imported/chariot_attack2_017.png-765dffd8f8df08db8915f4748c7e862f.bptc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=true +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/Enemy/chariot_attack2/chariot_attack2_018.png b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_018.png new file mode 100644 index 000000000..7fb8af7c7 Binary files /dev/null and b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_018.png differ diff --git a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_018.png.import b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_018.png.import new file mode 100644 index 000000000..3185e545d --- /dev/null +++ b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_018.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cg8eksa53rd20" +path.bptc="res://.godot/imported/chariot_attack2_018.png-58bc42968fe38e362e8e998c89d84a3b.bptc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/vfx/Enemy/chariot_attack2/chariot_attack2_018.png" +dest_files=["res://.godot/imported/chariot_attack2_018.png-58bc42968fe38e362e8e998c89d84a3b.bptc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=true +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/Enemy/chariot_attack2/chariot_attack2_019.png b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_019.png new file mode 100644 index 000000000..ca12ee515 Binary files /dev/null and b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_019.png differ diff --git a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_019.png.import b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_019.png.import new file mode 100644 index 000000000..35983105c --- /dev/null +++ b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_019.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://baoe71nx85q0s" +path.bptc="res://.godot/imported/chariot_attack2_019.png-438084a4b35e7f89653f69ea15850040.bptc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/vfx/Enemy/chariot_attack2/chariot_attack2_019.png" +dest_files=["res://.godot/imported/chariot_attack2_019.png-438084a4b35e7f89653f69ea15850040.bptc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=true +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/Enemy/chariot_attack2/chariot_attack2_020.png b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_020.png new file mode 100644 index 000000000..bf49f8413 Binary files /dev/null and b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_020.png differ diff --git a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_020.png.import b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_020.png.import new file mode 100644 index 000000000..055b45fb9 --- /dev/null +++ b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_020.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bx8bfxldio1y7" +path.bptc="res://.godot/imported/chariot_attack2_020.png-0005397f33b6f9d0d02d052e403f5670.bptc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/vfx/Enemy/chariot_attack2/chariot_attack2_020.png" +dest_files=["res://.godot/imported/chariot_attack2_020.png-0005397f33b6f9d0d02d052e403f5670.bptc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=true +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/Enemy/chariot_attack2/chariot_attack2_021.png b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_021.png new file mode 100644 index 000000000..8b5d7796e Binary files /dev/null and b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_021.png differ diff --git a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_021.png.import b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_021.png.import new file mode 100644 index 000000000..a90768868 --- /dev/null +++ b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_021.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cupsoqmnrahid" +path.bptc="res://.godot/imported/chariot_attack2_021.png-4dc4c1d234d226d53b13544e30f1dd5f.bptc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/vfx/Enemy/chariot_attack2/chariot_attack2_021.png" +dest_files=["res://.godot/imported/chariot_attack2_021.png-4dc4c1d234d226d53b13544e30f1dd5f.bptc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=true +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/Enemy/chariot_attack2/chariot_attack2_022.png b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_022.png new file mode 100644 index 000000000..068789eb5 Binary files /dev/null and b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_022.png differ diff --git a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_022.png.import b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_022.png.import new file mode 100644 index 000000000..49fe3e147 --- /dev/null +++ b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_022.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dk1isdv215iso" +path.bptc="res://.godot/imported/chariot_attack2_022.png-877b71920809d252210e7f69ddb6a0f5.bptc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/vfx/Enemy/chariot_attack2/chariot_attack2_022.png" +dest_files=["res://.godot/imported/chariot_attack2_022.png-877b71920809d252210e7f69ddb6a0f5.bptc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=true +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/Enemy/chariot_attack2/chariot_attack2_023.png b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_023.png new file mode 100644 index 000000000..f3ba0dfe1 Binary files /dev/null and b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_023.png differ diff --git a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_023.png.import b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_023.png.import new file mode 100644 index 000000000..35e615f8f --- /dev/null +++ b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_023.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c6p60beey2lnv" +path.bptc="res://.godot/imported/chariot_attack2_023.png-7aaca051123a71b3f54434e14e1986ef.bptc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/vfx/Enemy/chariot_attack2/chariot_attack2_023.png" +dest_files=["res://.godot/imported/chariot_attack2_023.png-7aaca051123a71b3f54434e14e1986ef.bptc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=true +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/Enemy/chariot_attack2/chariot_attack2_024.png b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_024.png new file mode 100644 index 000000000..4f91880f7 Binary files /dev/null and b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_024.png differ diff --git a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_024.png.import b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_024.png.import new file mode 100644 index 000000000..ee06438e0 --- /dev/null +++ b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_024.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dpafu0ayxxv1r" +path.bptc="res://.godot/imported/chariot_attack2_024.png-3ed8e9411072eac1901ed9e0ab5c876b.bptc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/vfx/Enemy/chariot_attack2/chariot_attack2_024.png" +dest_files=["res://.godot/imported/chariot_attack2_024.png-3ed8e9411072eac1901ed9e0ab5c876b.bptc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=true +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/Enemy/chariot_attack2/chariot_attack2_025.png b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_025.png new file mode 100644 index 000000000..5608cb423 Binary files /dev/null and b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_025.png differ diff --git a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_025.png.import b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_025.png.import new file mode 100644 index 000000000..825fcc0ae --- /dev/null +++ b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_025.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c86fo3ri6mojm" +path.bptc="res://.godot/imported/chariot_attack2_025.png-42ab1ce597293c03107cd1689deceb07.bptc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/vfx/Enemy/chariot_attack2/chariot_attack2_025.png" +dest_files=["res://.godot/imported/chariot_attack2_025.png-42ab1ce597293c03107cd1689deceb07.bptc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=true +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/Enemy/chariot_attack2/chariot_attack2_026.png b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_026.png new file mode 100644 index 000000000..04ab2d47b Binary files /dev/null and b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_026.png differ diff --git a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_026.png.import b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_026.png.import new file mode 100644 index 000000000..b80404b39 --- /dev/null +++ b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_026.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d1dfg4533npro" +path.bptc="res://.godot/imported/chariot_attack2_026.png-275e25f127e7c51fd20d3a797a1a239b.bptc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/vfx/Enemy/chariot_attack2/chariot_attack2_026.png" +dest_files=["res://.godot/imported/chariot_attack2_026.png-275e25f127e7c51fd20d3a797a1a239b.bptc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=true +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/Enemy/chariot_attack2/chariot_attack2_027.png b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_027.png new file mode 100644 index 000000000..a7acce82a Binary files /dev/null and b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_027.png differ diff --git a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_027.png.import b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_027.png.import new file mode 100644 index 000000000..5fe2ca751 --- /dev/null +++ b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_027.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c6v31jvniam1p" +path.bptc="res://.godot/imported/chariot_attack2_027.png-4c86f82dcd9476904d28b7717a66f5fa.bptc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/vfx/Enemy/chariot_attack2/chariot_attack2_027.png" +dest_files=["res://.godot/imported/chariot_attack2_027.png-4c86f82dcd9476904d28b7717a66f5fa.bptc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=true +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/Enemy/chariot_attack2/chariot_attack2_028.png b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_028.png new file mode 100644 index 000000000..1f9bd82f1 Binary files /dev/null and b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_028.png differ diff --git a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_028.png.import b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_028.png.import new file mode 100644 index 000000000..8d8455cd7 --- /dev/null +++ b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_028.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cyg6th68jxohv" +path.bptc="res://.godot/imported/chariot_attack2_028.png-508577db3fb8d4723df3fe3e6ce6e03e.bptc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/vfx/Enemy/chariot_attack2/chariot_attack2_028.png" +dest_files=["res://.godot/imported/chariot_attack2_028.png-508577db3fb8d4723df3fe3e6ce6e03e.bptc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=true +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/Enemy/chariot_attack2/chariot_attack2_029.png b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_029.png new file mode 100644 index 000000000..0b2208f71 Binary files /dev/null and b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_029.png differ diff --git a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_029.png.import b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_029.png.import new file mode 100644 index 000000000..1e5c3de7e --- /dev/null +++ b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_029.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c062e767h5b84" +path.bptc="res://.godot/imported/chariot_attack2_029.png-b001b4868aa451a00d5336e1ad146217.bptc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/vfx/Enemy/chariot_attack2/chariot_attack2_029.png" +dest_files=["res://.godot/imported/chariot_attack2_029.png-b001b4868aa451a00d5336e1ad146217.bptc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=true +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/Enemy/chariot_attack2/chariot_attack2_030.png b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_030.png new file mode 100644 index 000000000..3341a86fe Binary files /dev/null and b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_030.png differ diff --git a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_030.png.import b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_030.png.import new file mode 100644 index 000000000..6ebe2fc8d --- /dev/null +++ b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_030.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bqcuhbkk6pppr" +path.bptc="res://.godot/imported/chariot_attack2_030.png-18dfc7a4934653dc0367a5d2eaaaa517.bptc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/vfx/Enemy/chariot_attack2/chariot_attack2_030.png" +dest_files=["res://.godot/imported/chariot_attack2_030.png-18dfc7a4934653dc0367a5d2eaaaa517.bptc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=true +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/Enemy/chariot_attack2/chariot_attack2_031.png b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_031.png new file mode 100644 index 000000000..c8471e08e Binary files /dev/null and b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_031.png differ diff --git a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_031.png.import b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_031.png.import new file mode 100644 index 000000000..327b85a67 --- /dev/null +++ b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_031.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://duteh5bdicy8h" +path.bptc="res://.godot/imported/chariot_attack2_031.png-9f6f65223f25b2130d56e4deed2de1cf.bptc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/vfx/Enemy/chariot_attack2/chariot_attack2_031.png" +dest_files=["res://.godot/imported/chariot_attack2_031.png-9f6f65223f25b2130d56e4deed2de1cf.bptc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=true +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/Enemy/chariot_attack2/chariot_attack2_032.png b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_032.png new file mode 100644 index 000000000..1149d7ee6 Binary files /dev/null and b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_032.png differ diff --git a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_032.png.import b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_032.png.import new file mode 100644 index 000000000..8074ffb0d --- /dev/null +++ b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_032.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c12edfl503vss" +path.bptc="res://.godot/imported/chariot_attack2_032.png-3d03611f4eecda68d7070485fbef3142.bptc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/vfx/Enemy/chariot_attack2/chariot_attack2_032.png" +dest_files=["res://.godot/imported/chariot_attack2_032.png-3d03611f4eecda68d7070485fbef3142.bptc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=true +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/Enemy/chariot_attack2/chariot_attack2_033.png b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_033.png new file mode 100644 index 000000000..f9f928b48 Binary files /dev/null and b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_033.png differ diff --git a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_033.png.import b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_033.png.import new file mode 100644 index 000000000..6b3551062 --- /dev/null +++ b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_033.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cxwcr0rxtgqjc" +path.bptc="res://.godot/imported/chariot_attack2_033.png-db31bf75073a107900a982727eb4b4ab.bptc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/vfx/Enemy/chariot_attack2/chariot_attack2_033.png" +dest_files=["res://.godot/imported/chariot_attack2_033.png-db31bf75073a107900a982727eb4b4ab.bptc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=true +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/Enemy/chariot_attack2/chariot_attack2_034.png b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_034.png new file mode 100644 index 000000000..faee894f4 Binary files /dev/null and b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_034.png differ diff --git a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_034.png.import b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_034.png.import new file mode 100644 index 000000000..b91d073b6 --- /dev/null +++ b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_034.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cagsq65w15lsh" +path.bptc="res://.godot/imported/chariot_attack2_034.png-cb8db24b5b49b0988b448d04e1c50b72.bptc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/vfx/Enemy/chariot_attack2/chariot_attack2_034.png" +dest_files=["res://.godot/imported/chariot_attack2_034.png-cb8db24b5b49b0988b448d04e1c50b72.bptc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=true +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/Enemy/chariot_attack2/chariot_attack2_035.png b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_035.png new file mode 100644 index 000000000..12ebcb063 Binary files /dev/null and b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_035.png differ diff --git a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_035.png.import b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_035.png.import new file mode 100644 index 000000000..a09877a65 --- /dev/null +++ b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_035.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c81f1jej357wp" +path.bptc="res://.godot/imported/chariot_attack2_035.png-2218a3aa863b92b10934ded48b75ea55.bptc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/vfx/Enemy/chariot_attack2/chariot_attack2_035.png" +dest_files=["res://.godot/imported/chariot_attack2_035.png-2218a3aa863b92b10934ded48b75ea55.bptc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=true +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/Enemy/chariot_attack2/chariot_attack2_036.png b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_036.png new file mode 100644 index 000000000..1ccec6d68 Binary files /dev/null and b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_036.png differ diff --git a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_036.png.import b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_036.png.import new file mode 100644 index 000000000..b27f9e937 --- /dev/null +++ b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_036.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c32gsoy5iognq" +path.bptc="res://.godot/imported/chariot_attack2_036.png-bd0bda1b11588e8da78a1a3c3b426bae.bptc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/vfx/Enemy/chariot_attack2/chariot_attack2_036.png" +dest_files=["res://.godot/imported/chariot_attack2_036.png-bd0bda1b11588e8da78a1a3c3b426bae.bptc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=true +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/Enemy/chariot_attack2/chariot_attack2_037.png b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_037.png new file mode 100644 index 000000000..3ba0a377f Binary files /dev/null and b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_037.png differ diff --git a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_037.png.import b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_037.png.import new file mode 100644 index 000000000..d5f3fe0b5 --- /dev/null +++ b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_037.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cn26uod48smhh" +path.bptc="res://.godot/imported/chariot_attack2_037.png-7b7f275d7325da2da56b8fb78891ed38.bptc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/vfx/Enemy/chariot_attack2/chariot_attack2_037.png" +dest_files=["res://.godot/imported/chariot_attack2_037.png-7b7f275d7325da2da56b8fb78891ed38.bptc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=true +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/Enemy/chariot_attack2/chariot_attack2_038.png b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_038.png new file mode 100644 index 000000000..7d02e653c Binary files /dev/null and b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_038.png differ diff --git a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_038.png.import b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_038.png.import new file mode 100644 index 000000000..9d94401c9 --- /dev/null +++ b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_038.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://du6eirk28ub31" +path.bptc="res://.godot/imported/chariot_attack2_038.png-9038eb9941016fbb84366b6be32217d4.bptc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/vfx/Enemy/chariot_attack2/chariot_attack2_038.png" +dest_files=["res://.godot/imported/chariot_attack2_038.png-9038eb9941016fbb84366b6be32217d4.bptc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=true +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/Enemy/chariot_attack2/chariot_attack2_039.png b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_039.png new file mode 100644 index 000000000..051610160 Binary files /dev/null and b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_039.png differ diff --git a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_039.png.import b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_039.png.import new file mode 100644 index 000000000..f2e58ef3a --- /dev/null +++ b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_039.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c4yawfsjtrunv" +path.bptc="res://.godot/imported/chariot_attack2_039.png-6fe56cbfb137b2b297dd22b09ae52dfa.bptc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/vfx/Enemy/chariot_attack2/chariot_attack2_039.png" +dest_files=["res://.godot/imported/chariot_attack2_039.png-6fe56cbfb137b2b297dd22b09ae52dfa.bptc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=true +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/Enemy/chariot_attack2/chariot_attack2_040.png b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_040.png new file mode 100644 index 000000000..e913a12d4 Binary files /dev/null and b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_040.png differ diff --git a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_040.png.import b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_040.png.import new file mode 100644 index 000000000..07d4adb6d --- /dev/null +++ b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_040.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b3oj0qieqq6mv" +path.bptc="res://.godot/imported/chariot_attack2_040.png-4fa787756e637dfeccb63af12e99a8db.bptc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/vfx/Enemy/chariot_attack2/chariot_attack2_040.png" +dest_files=["res://.godot/imported/chariot_attack2_040.png-4fa787756e637dfeccb63af12e99a8db.bptc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=true +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/Enemy/chariot_attack2/chariot_attack2_041.png b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_041.png new file mode 100644 index 000000000..a973dec36 Binary files /dev/null and b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_041.png differ diff --git a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_041.png.import b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_041.png.import new file mode 100644 index 000000000..fa83698d7 --- /dev/null +++ b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_041.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bwobe4cu0tvvu" +path.bptc="res://.godot/imported/chariot_attack2_041.png-2980b0017c517d760098c9cdbc0355d2.bptc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/vfx/Enemy/chariot_attack2/chariot_attack2_041.png" +dest_files=["res://.godot/imported/chariot_attack2_041.png-2980b0017c517d760098c9cdbc0355d2.bptc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=true +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/Enemy/chariot_attack2/chariot_attack2_042.png b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_042.png new file mode 100644 index 000000000..77656fb45 Binary files /dev/null and b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_042.png differ diff --git a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_042.png.import b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_042.png.import new file mode 100644 index 000000000..d6d02d6c8 --- /dev/null +++ b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_042.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://hnchywtdulcl" +path.bptc="res://.godot/imported/chariot_attack2_042.png-d68523080063b1acaa263ac5296f40d1.bptc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/vfx/Enemy/chariot_attack2/chariot_attack2_042.png" +dest_files=["res://.godot/imported/chariot_attack2_042.png-d68523080063b1acaa263ac5296f40d1.bptc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=true +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/Enemy/chariot_attack2/chariot_attack2_043.png b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_043.png new file mode 100644 index 000000000..66bbf77c2 Binary files /dev/null and b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_043.png differ diff --git a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_043.png.import b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_043.png.import new file mode 100644 index 000000000..8a7e51f6b --- /dev/null +++ b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_043.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://8ka6j158mprc" +path.bptc="res://.godot/imported/chariot_attack2_043.png-4f1b84f1f1708769dece9f75832276de.bptc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/vfx/Enemy/chariot_attack2/chariot_attack2_043.png" +dest_files=["res://.godot/imported/chariot_attack2_043.png-4f1b84f1f1708769dece9f75832276de.bptc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=true +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/Enemy/chariot_attack2/chariot_attack2_044.png b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_044.png new file mode 100644 index 000000000..da8e3d704 Binary files /dev/null and b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_044.png differ diff --git a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_044.png.import b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_044.png.import new file mode 100644 index 000000000..533593976 --- /dev/null +++ b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_044.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bcdcbosfegpoy" +path.bptc="res://.godot/imported/chariot_attack2_044.png-4025c57a749295e48a2876e673505223.bptc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/vfx/Enemy/chariot_attack2/chariot_attack2_044.png" +dest_files=["res://.godot/imported/chariot_attack2_044.png-4025c57a749295e48a2876e673505223.bptc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=true +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/Enemy/chariot_attack2/chariot_attack2_045.png b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_045.png new file mode 100644 index 000000000..bba457918 Binary files /dev/null and b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_045.png differ diff --git a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_045.png.import b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_045.png.import new file mode 100644 index 000000000..aef5c5624 --- /dev/null +++ b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_045.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cj61ol3ykcdj" +path.bptc="res://.godot/imported/chariot_attack2_045.png-b25d962d4197e261eb25d3e056561332.bptc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/vfx/Enemy/chariot_attack2/chariot_attack2_045.png" +dest_files=["res://.godot/imported/chariot_attack2_045.png-b25d962d4197e261eb25d3e056561332.bptc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=true +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/Enemy/chariot_attack2/chariot_attack2_046.png b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_046.png new file mode 100644 index 000000000..4164d579a Binary files /dev/null and b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_046.png differ diff --git a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_046.png.import b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_046.png.import new file mode 100644 index 000000000..c54e98ef5 --- /dev/null +++ b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_046.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://chxrsg7clc8dm" +path.bptc="res://.godot/imported/chariot_attack2_046.png-f794c32177b6ee96691a22d5dd5dcd28.bptc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/vfx/Enemy/chariot_attack2/chariot_attack2_046.png" +dest_files=["res://.godot/imported/chariot_attack2_046.png-f794c32177b6ee96691a22d5dd5dcd28.bptc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=true +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/Enemy/chariot_attack2/chariot_attack2_047.png b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_047.png new file mode 100644 index 000000000..71210faa0 Binary files /dev/null and b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_047.png differ diff --git a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_047.png.import b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_047.png.import new file mode 100644 index 000000000..d6e2b3bfc --- /dev/null +++ b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_047.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cvcorcymshpw5" +path.bptc="res://.godot/imported/chariot_attack2_047.png-83c196ffcd69770ed196bc578f9c060e.bptc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/vfx/Enemy/chariot_attack2/chariot_attack2_047.png" +dest_files=["res://.godot/imported/chariot_attack2_047.png-83c196ffcd69770ed196bc578f9c060e.bptc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=true +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/Enemy/chariot_attack2/chariot_attack2_048.png b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_048.png new file mode 100644 index 000000000..6579efbb7 Binary files /dev/null and b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_048.png differ diff --git a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_048.png.import b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_048.png.import new file mode 100644 index 000000000..45c5120f1 --- /dev/null +++ b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_048.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://brnncmkqd62hs" +path.bptc="res://.godot/imported/chariot_attack2_048.png-2c67958e41e0b33b70e3e781644e287b.bptc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/vfx/Enemy/chariot_attack2/chariot_attack2_048.png" +dest_files=["res://.godot/imported/chariot_attack2_048.png-2c67958e41e0b33b70e3e781644e287b.bptc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=true +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/Enemy/chariot_attack2/chariot_attack2_049.png b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_049.png new file mode 100644 index 000000000..03b735285 Binary files /dev/null and b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_049.png differ diff --git a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_049.png.import b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_049.png.import new file mode 100644 index 000000000..56a832c36 --- /dev/null +++ b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_049.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c2ssjf806i4ng" +path.bptc="res://.godot/imported/chariot_attack2_049.png-93acdb2abf8fdfdc6841f30545802548.bptc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/vfx/Enemy/chariot_attack2/chariot_attack2_049.png" +dest_files=["res://.godot/imported/chariot_attack2_049.png-93acdb2abf8fdfdc6841f30545802548.bptc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=true +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/Enemy/chariot_attack2/chariot_attack2_050.png b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_050.png new file mode 100644 index 000000000..d3c2b2571 Binary files /dev/null and b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_050.png differ diff --git a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_050.png.import b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_050.png.import new file mode 100644 index 000000000..f29f86f4a --- /dev/null +++ b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_050.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cc5mq5tjahs2f" +path.bptc="res://.godot/imported/chariot_attack2_050.png-50146a1d1c25db2d92333e3559210be2.bptc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/vfx/Enemy/chariot_attack2/chariot_attack2_050.png" +dest_files=["res://.godot/imported/chariot_attack2_050.png-50146a1d1c25db2d92333e3559210be2.bptc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=true +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/Enemy/chariot_attack2/chariot_attack2_051.png b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_051.png new file mode 100644 index 000000000..a885ed1db Binary files /dev/null and b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_051.png differ diff --git a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_051.png.import b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_051.png.import new file mode 100644 index 000000000..298203cb5 --- /dev/null +++ b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_051.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c4lw2n8csib4v" +path.bptc="res://.godot/imported/chariot_attack2_051.png-813d79a0251b5abbbc36121cac302ef9.bptc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/vfx/Enemy/chariot_attack2/chariot_attack2_051.png" +dest_files=["res://.godot/imported/chariot_attack2_051.png-813d79a0251b5abbbc36121cac302ef9.bptc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=true +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/Enemy/chariot_attack2/chariot_attack2_052.png b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_052.png new file mode 100644 index 000000000..a501f92d6 Binary files /dev/null and b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_052.png differ diff --git a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_052.png.import b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_052.png.import new file mode 100644 index 000000000..81035fcc9 --- /dev/null +++ b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_052.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://00ldpp5rbp7w" +path.bptc="res://.godot/imported/chariot_attack2_052.png-fe1392078a811cc4d5bc58def4ed6cb0.bptc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/vfx/Enemy/chariot_attack2/chariot_attack2_052.png" +dest_files=["res://.godot/imported/chariot_attack2_052.png-fe1392078a811cc4d5bc58def4ed6cb0.bptc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=true +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/Enemy/chariot_attack2/chariot_attack2_053.png b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_053.png new file mode 100644 index 000000000..3fd683399 Binary files /dev/null and b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_053.png differ diff --git a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_053.png.import b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_053.png.import new file mode 100644 index 000000000..fd3041c29 --- /dev/null +++ b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_053.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d4jafgu6o3p8s" +path.bptc="res://.godot/imported/chariot_attack2_053.png-6d750ffe5c6bb1f739e2a54e5b328021.bptc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/vfx/Enemy/chariot_attack2/chariot_attack2_053.png" +dest_files=["res://.godot/imported/chariot_attack2_053.png-6d750ffe5c6bb1f739e2a54e5b328021.bptc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=true +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/Enemy/chariot_attack2/chariot_attack2_054.png b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_054.png new file mode 100644 index 000000000..a415f742a Binary files /dev/null and b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_054.png differ diff --git a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_054.png.import b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_054.png.import new file mode 100644 index 000000000..714dc31fe --- /dev/null +++ b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_054.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bgs173fh84nsh" +path.bptc="res://.godot/imported/chariot_attack2_054.png-27d895628f0ba04798d40b3003cfc083.bptc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/vfx/Enemy/chariot_attack2/chariot_attack2_054.png" +dest_files=["res://.godot/imported/chariot_attack2_054.png-27d895628f0ba04798d40b3003cfc083.bptc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=true +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/Enemy/chariot_attack2/chariot_attack2_055.png b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_055.png new file mode 100644 index 000000000..26a09e7e7 Binary files /dev/null and b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_055.png differ diff --git a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_055.png.import b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_055.png.import new file mode 100644 index 000000000..d4542732b --- /dev/null +++ b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_055.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ubfpvaqsla46" +path.bptc="res://.godot/imported/chariot_attack2_055.png-639f588d1fef1301b552e439948753e2.bptc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/vfx/Enemy/chariot_attack2/chariot_attack2_055.png" +dest_files=["res://.godot/imported/chariot_attack2_055.png-639f588d1fef1301b552e439948753e2.bptc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=true +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/Enemy/chariot_attack2/chariot_attack2_056.png b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_056.png new file mode 100644 index 000000000..10550814b Binary files /dev/null and b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_056.png differ diff --git a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_056.png.import b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_056.png.import new file mode 100644 index 000000000..ca1c249cf --- /dev/null +++ b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_056.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://kidaj31jo4h8" +path.bptc="res://.godot/imported/chariot_attack2_056.png-fa0b9fd0b3e5855bf18c61dc500c5ae6.bptc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/vfx/Enemy/chariot_attack2/chariot_attack2_056.png" +dest_files=["res://.godot/imported/chariot_attack2_056.png-fa0b9fd0b3e5855bf18c61dc500c5ae6.bptc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=true +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/Enemy/chariot_attack2/chariot_attack2_057.png b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_057.png new file mode 100644 index 000000000..77a22ba05 Binary files /dev/null and b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_057.png differ diff --git a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_057.png.import b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_057.png.import new file mode 100644 index 000000000..dc119d084 --- /dev/null +++ b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_057.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://yepr30kjd87g" +path.bptc="res://.godot/imported/chariot_attack2_057.png-8e9ed38a41b0c0fa4523a07f9987e10b.bptc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/vfx/Enemy/chariot_attack2/chariot_attack2_057.png" +dest_files=["res://.godot/imported/chariot_attack2_057.png-8e9ed38a41b0c0fa4523a07f9987e10b.bptc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=true +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/Enemy/chariot_attack2/chariot_attack2_058.png b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_058.png new file mode 100644 index 000000000..c626895df Binary files /dev/null and b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_058.png differ diff --git a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_058.png.import b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_058.png.import new file mode 100644 index 000000000..1e87ef207 --- /dev/null +++ b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_058.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dhff7a6lp1oh4" +path.bptc="res://.godot/imported/chariot_attack2_058.png-17a03228c40d73a337fff706f7e3931b.bptc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/vfx/Enemy/chariot_attack2/chariot_attack2_058.png" +dest_files=["res://.godot/imported/chariot_attack2_058.png-17a03228c40d73a337fff706f7e3931b.bptc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=true +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/Enemy/chariot_attack2/chariot_attack2_059.png b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_059.png new file mode 100644 index 000000000..02ac7932f Binary files /dev/null and b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_059.png differ diff --git a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_059.png.import b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_059.png.import new file mode 100644 index 000000000..47e1e1ccc --- /dev/null +++ b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_059.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://wc2mylj4wavj" +path.bptc="res://.godot/imported/chariot_attack2_059.png-8092714fe61c1d9be8880acd4fed30dd.bptc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/vfx/Enemy/chariot_attack2/chariot_attack2_059.png" +dest_files=["res://.godot/imported/chariot_attack2_059.png-8092714fe61c1d9be8880acd4fed30dd.bptc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=true +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/Enemy/chariot_attack2/chariot_attack2_060.png b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_060.png new file mode 100644 index 000000000..0d1475b48 Binary files /dev/null and b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_060.png differ diff --git a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_060.png.import b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_060.png.import new file mode 100644 index 000000000..339e5fa8d --- /dev/null +++ b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_060.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://gbm56qlakq0v" +path.bptc="res://.godot/imported/chariot_attack2_060.png-621460150790cc0ba21be20b7c0c41cf.bptc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/vfx/Enemy/chariot_attack2/chariot_attack2_060.png" +dest_files=["res://.godot/imported/chariot_attack2_060.png-621460150790cc0ba21be20b7c0c41cf.bptc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=true +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/Enemy/chariot_attack2/chariot_attack2_061.png b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_061.png new file mode 100644 index 000000000..1bcf6aecc Binary files /dev/null and b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_061.png differ diff --git a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_061.png.import b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_061.png.import new file mode 100644 index 000000000..e016c55ee --- /dev/null +++ b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_061.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bh0wihthstpyf" +path.bptc="res://.godot/imported/chariot_attack2_061.png-fcdc248f2450267f2db7a85ef91d80ec.bptc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/vfx/Enemy/chariot_attack2/chariot_attack2_061.png" +dest_files=["res://.godot/imported/chariot_attack2_061.png-fcdc248f2450267f2db7a85ef91d80ec.bptc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=true +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/Enemy/chariot_attack2/chariot_attack2_062.png b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_062.png new file mode 100644 index 000000000..bd9868b14 Binary files /dev/null and b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_062.png differ diff --git a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_062.png.import b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_062.png.import new file mode 100644 index 000000000..d6ab1b8ce --- /dev/null +++ b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_062.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c2dc0a1x2fkd" +path.bptc="res://.godot/imported/chariot_attack2_062.png-75500282e9858bf7cf12cd6d16e44d14.bptc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/vfx/Enemy/chariot_attack2/chariot_attack2_062.png" +dest_files=["res://.godot/imported/chariot_attack2_062.png-75500282e9858bf7cf12cd6d16e44d14.bptc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=true +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/Enemy/chariot_attack2/chariot_attack2_063.png b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_063.png new file mode 100644 index 000000000..80da5411b Binary files /dev/null and b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_063.png differ diff --git a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_063.png.import b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_063.png.import new file mode 100644 index 000000000..b0ec77369 --- /dev/null +++ b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_063.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b463bcj4ea2bn" +path.bptc="res://.godot/imported/chariot_attack2_063.png-cd0d84f6b62619ae1276578672df8122.bptc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/vfx/Enemy/chariot_attack2/chariot_attack2_063.png" +dest_files=["res://.godot/imported/chariot_attack2_063.png-cd0d84f6b62619ae1276578672df8122.bptc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=true +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/Enemy/chariot_attack2/chariot_attack2_064.png b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_064.png new file mode 100644 index 000000000..3a75b3c5c Binary files /dev/null and b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_064.png differ diff --git a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_064.png.import b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_064.png.import new file mode 100644 index 000000000..3a414fada --- /dev/null +++ b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_064.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bxy1vdsfud81d" +path.bptc="res://.godot/imported/chariot_attack2_064.png-932114fc1374f0b62827eb854b6811f4.bptc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/vfx/Enemy/chariot_attack2/chariot_attack2_064.png" +dest_files=["res://.godot/imported/chariot_attack2_064.png-932114fc1374f0b62827eb854b6811f4.bptc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=true +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/Enemy/chariot_attack2/chariot_attack2_065.png b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_065.png new file mode 100644 index 000000000..de0da3174 Binary files /dev/null and b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_065.png differ diff --git a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_065.png.import b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_065.png.import new file mode 100644 index 000000000..a1f7189a2 --- /dev/null +++ b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_065.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cxacvaik680s6" +path.bptc="res://.godot/imported/chariot_attack2_065.png-429c0ff041c7b1860941d26d3c262abf.bptc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/vfx/Enemy/chariot_attack2/chariot_attack2_065.png" +dest_files=["res://.godot/imported/chariot_attack2_065.png-429c0ff041c7b1860941d26d3c262abf.bptc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=true +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/Enemy/chariot_attack2/chariot_attack2_066.png b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_066.png new file mode 100644 index 000000000..cb98c8642 Binary files /dev/null and b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_066.png differ diff --git a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_066.png.import b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_066.png.import new file mode 100644 index 000000000..1037ebf6a --- /dev/null +++ b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_066.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bmprkwh62i0ol" +path.bptc="res://.godot/imported/chariot_attack2_066.png-521b7837a041ddceb45c6bfa443b1856.bptc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/vfx/Enemy/chariot_attack2/chariot_attack2_066.png" +dest_files=["res://.godot/imported/chariot_attack2_066.png-521b7837a041ddceb45c6bfa443b1856.bptc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=true +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/Enemy/chariot_attack2/chariot_attack2_067.png b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_067.png new file mode 100644 index 000000000..3b20652f0 Binary files /dev/null and b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_067.png differ diff --git a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_067.png.import b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_067.png.import new file mode 100644 index 000000000..b533aeabe --- /dev/null +++ b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_067.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://din6vqw0yrv4r" +path.bptc="res://.godot/imported/chariot_attack2_067.png-bbcff04221d8826560bde6f9efa9733f.bptc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/vfx/Enemy/chariot_attack2/chariot_attack2_067.png" +dest_files=["res://.godot/imported/chariot_attack2_067.png-bbcff04221d8826560bde6f9efa9733f.bptc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=true +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/Enemy/chariot_attack2/chariot_attack2_068.png b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_068.png new file mode 100644 index 000000000..90faa82bb Binary files /dev/null and b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_068.png differ diff --git a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_068.png.import b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_068.png.import new file mode 100644 index 000000000..7215c2d6c --- /dev/null +++ b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_068.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://df4dev1qmridn" +path.bptc="res://.godot/imported/chariot_attack2_068.png-980b26cfb7d4a424d0cc76527dad5860.bptc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/vfx/Enemy/chariot_attack2/chariot_attack2_068.png" +dest_files=["res://.godot/imported/chariot_attack2_068.png-980b26cfb7d4a424d0cc76527dad5860.bptc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=true +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/Enemy/chariot_attack2/chariot_attack2_069.png b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_069.png new file mode 100644 index 000000000..99166ff90 Binary files /dev/null and b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_069.png differ diff --git a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_069.png.import b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_069.png.import new file mode 100644 index 000000000..841763d22 --- /dev/null +++ b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_069.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b5ret4mhjtxpy" +path.bptc="res://.godot/imported/chariot_attack2_069.png-eeab5f7526ed334c6d55131af2edb0e8.bptc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/vfx/Enemy/chariot_attack2/chariot_attack2_069.png" +dest_files=["res://.godot/imported/chariot_attack2_069.png-eeab5f7526ed334c6d55131af2edb0e8.bptc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=true +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/Enemy/chariot_attack2/chariot_attack2_070.png b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_070.png new file mode 100644 index 000000000..99166ff90 Binary files /dev/null and b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_070.png differ diff --git a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_070.png.import b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_070.png.import new file mode 100644 index 000000000..29f4ec8fd --- /dev/null +++ b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_070.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ekgk0nxep3su" +path.bptc="res://.godot/imported/chariot_attack2_070.png-4184d22582ac0ec71aae1ee252929a41.bptc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/vfx/Enemy/chariot_attack2/chariot_attack2_070.png" +dest_files=["res://.godot/imported/chariot_attack2_070.png-4184d22582ac0ec71aae1ee252929a41.bptc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=true +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/Enemy/chariot_attack2/chariot_attack2_071.png b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_071.png new file mode 100644 index 000000000..99166ff90 Binary files /dev/null and b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_071.png differ diff --git a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_071.png.import b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_071.png.import new file mode 100644 index 000000000..717bcd98b --- /dev/null +++ b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_071.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dwuu7ik20m5yq" +path.bptc="res://.godot/imported/chariot_attack2_071.png-3d0b47d5f5547bd32b53abe8cf7a8831.bptc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/vfx/Enemy/chariot_attack2/chariot_attack2_071.png" +dest_files=["res://.godot/imported/chariot_attack2_071.png-3d0b47d5f5547bd32b53abe8cf7a8831.bptc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=true +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/Enemy/chariot_attack2/chariot_attack2_072.png b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_072.png new file mode 100644 index 000000000..99166ff90 Binary files /dev/null and b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_072.png differ diff --git a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_072.png.import b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_072.png.import new file mode 100644 index 000000000..0368220e2 --- /dev/null +++ b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_072.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bt2w56lbc316c" +path.bptc="res://.godot/imported/chariot_attack2_072.png-141f5034baae14968104020ffdae1b8d.bptc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/vfx/Enemy/chariot_attack2/chariot_attack2_072.png" +dest_files=["res://.godot/imported/chariot_attack2_072.png-141f5034baae14968104020ffdae1b8d.bptc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=true +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/Enemy/chariot_attack2/chariot_attack2_073.png b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_073.png new file mode 100644 index 000000000..99166ff90 Binary files /dev/null and b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_073.png differ diff --git a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_073.png.import b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_073.png.import new file mode 100644 index 000000000..45b8ae525 --- /dev/null +++ b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_073.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://1u0j35tshird" +path.bptc="res://.godot/imported/chariot_attack2_073.png-6582dc79768b599e7b154a04f7404d54.bptc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/vfx/Enemy/chariot_attack2/chariot_attack2_073.png" +dest_files=["res://.godot/imported/chariot_attack2_073.png-6582dc79768b599e7b154a04f7404d54.bptc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=true +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/Enemy/chariot_attack2/chariot_attack2_074.png b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_074.png new file mode 100644 index 000000000..99166ff90 Binary files /dev/null and b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_074.png differ diff --git a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_074.png.import b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_074.png.import new file mode 100644 index 000000000..55bba5e79 --- /dev/null +++ b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_074.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ci1phg0hus6i1" +path.bptc="res://.godot/imported/chariot_attack2_074.png-afdd9e2f89ef9ad963c55fbd31034cee.bptc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/vfx/Enemy/chariot_attack2/chariot_attack2_074.png" +dest_files=["res://.godot/imported/chariot_attack2_074.png-afdd9e2f89ef9ad963c55fbd31034cee.bptc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=true +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/Enemy/chariot_attack2/chariot_attack2_075.png b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_075.png new file mode 100644 index 000000000..99166ff90 Binary files /dev/null and b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_075.png differ diff --git a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_075.png.import b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_075.png.import new file mode 100644 index 000000000..4ef01ea48 --- /dev/null +++ b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_075.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bvgpgbly8nlmc" +path.bptc="res://.godot/imported/chariot_attack2_075.png-9883e393e741eaf84401cec72395460b.bptc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/vfx/Enemy/chariot_attack2/chariot_attack2_075.png" +dest_files=["res://.godot/imported/chariot_attack2_075.png-9883e393e741eaf84401cec72395460b.bptc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=true +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/Enemy/chariot_attack2/chariot_attack2_076.png b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_076.png new file mode 100644 index 000000000..99166ff90 Binary files /dev/null and b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_076.png differ diff --git a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_076.png.import b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_076.png.import new file mode 100644 index 000000000..d6b2dbf86 --- /dev/null +++ b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_076.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dqtsp4inp3y34" +path.bptc="res://.godot/imported/chariot_attack2_076.png-b86934382b16b1bf180c6685fd646488.bptc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/vfx/Enemy/chariot_attack2/chariot_attack2_076.png" +dest_files=["res://.godot/imported/chariot_attack2_076.png-b86934382b16b1bf180c6685fd646488.bptc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=true +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/Enemy/chariot_attack2/chariot_attack2_077.png b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_077.png new file mode 100644 index 000000000..99166ff90 Binary files /dev/null and b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_077.png differ diff --git a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_077.png.import b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_077.png.import new file mode 100644 index 000000000..bbd5538a4 --- /dev/null +++ b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_077.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://o68mqrca8q5o" +path.bptc="res://.godot/imported/chariot_attack2_077.png-cdd901e28934320d454a12fb12b4a156.bptc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/vfx/Enemy/chariot_attack2/chariot_attack2_077.png" +dest_files=["res://.godot/imported/chariot_attack2_077.png-cdd901e28934320d454a12fb12b4a156.bptc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=true +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/Enemy/chariot_attack2/chariot_attack2_078.png b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_078.png new file mode 100644 index 000000000..99166ff90 Binary files /dev/null and b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_078.png differ diff --git a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_078.png.import b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_078.png.import new file mode 100644 index 000000000..9a60c44d3 --- /dev/null +++ b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_078.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cf0akn36igweb" +path.bptc="res://.godot/imported/chariot_attack2_078.png-e0693c8945f78a2aad537717b828914b.bptc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/vfx/Enemy/chariot_attack2/chariot_attack2_078.png" +dest_files=["res://.godot/imported/chariot_attack2_078.png-e0693c8945f78a2aad537717b828914b.bptc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=true +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/Enemy/chariot_attack2/chariot_attack2_079.png b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_079.png new file mode 100644 index 000000000..99166ff90 Binary files /dev/null and b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_079.png differ diff --git a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_079.png.import b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_079.png.import new file mode 100644 index 000000000..85b73324f --- /dev/null +++ b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_079.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d2gdpi7qufspo" +path.bptc="res://.godot/imported/chariot_attack2_079.png-6a5547859122d8584bc7c24eefa0d7c5.bptc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/vfx/Enemy/chariot_attack2/chariot_attack2_079.png" +dest_files=["res://.godot/imported/chariot_attack2_079.png-6a5547859122d8584bc7c24eefa0d7c5.bptc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=true +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/Enemy/chariot_attack2/chariot_attack2_080.png b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_080.png new file mode 100644 index 000000000..99166ff90 Binary files /dev/null and b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_080.png differ diff --git a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_080.png.import b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_080.png.import new file mode 100644 index 000000000..ee9e3e73c --- /dev/null +++ b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_080.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c2cp1r1ior2g6" +path.bptc="res://.godot/imported/chariot_attack2_080.png-502a49a0adf2cbe11e74a0fa4057c6e2.bptc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/vfx/Enemy/chariot_attack2/chariot_attack2_080.png" +dest_files=["res://.godot/imported/chariot_attack2_080.png-502a49a0adf2cbe11e74a0fa4057c6e2.bptc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=true +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/Enemy/chariot_attack2/chariot_attack2_081.png b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_081.png new file mode 100644 index 000000000..99166ff90 Binary files /dev/null and b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_081.png differ diff --git a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_081.png.import b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_081.png.import new file mode 100644 index 000000000..1efc8d973 --- /dev/null +++ b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_081.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cb4qs381vjbp6" +path.bptc="res://.godot/imported/chariot_attack2_081.png-0f4d433e9454bddce3c93494d1e6fdb6.bptc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/vfx/Enemy/chariot_attack2/chariot_attack2_081.png" +dest_files=["res://.godot/imported/chariot_attack2_081.png-0f4d433e9454bddce3c93494d1e6fdb6.bptc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=true +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/Enemy/chariot_attack2/chariot_attack2_082.png b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_082.png new file mode 100644 index 000000000..99166ff90 Binary files /dev/null and b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_082.png differ diff --git a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_082.png.import b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_082.png.import new file mode 100644 index 000000000..4313cc38b --- /dev/null +++ b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_082.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ysno1da5rwva" +path.bptc="res://.godot/imported/chariot_attack2_082.png-831443b1c9f90c47a9dc7311b1d510b0.bptc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/vfx/Enemy/chariot_attack2/chariot_attack2_082.png" +dest_files=["res://.godot/imported/chariot_attack2_082.png-831443b1c9f90c47a9dc7311b1d510b0.bptc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=true +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/Enemy/chariot_attack2/chariot_attack2_083.png b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_083.png new file mode 100644 index 000000000..99166ff90 Binary files /dev/null and b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_083.png differ diff --git a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_083.png.import b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_083.png.import new file mode 100644 index 000000000..8ace314bb --- /dev/null +++ b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_083.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://6xvfgp72lamf" +path.bptc="res://.godot/imported/chariot_attack2_083.png-831fd405c0c703d497fff08a29b67bf4.bptc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/vfx/Enemy/chariot_attack2/chariot_attack2_083.png" +dest_files=["res://.godot/imported/chariot_attack2_083.png-831fd405c0c703d497fff08a29b67bf4.bptc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=true +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/Enemy/chariot_attack2/chariot_attack2_084.png b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_084.png new file mode 100644 index 000000000..99166ff90 Binary files /dev/null and b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_084.png differ diff --git a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_084.png.import b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_084.png.import new file mode 100644 index 000000000..c764b7a3f --- /dev/null +++ b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_084.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bpxivh5iyfx0c" +path.bptc="res://.godot/imported/chariot_attack2_084.png-804e06b9f950d069ae3eaddd97b44f94.bptc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/vfx/Enemy/chariot_attack2/chariot_attack2_084.png" +dest_files=["res://.godot/imported/chariot_attack2_084.png-804e06b9f950d069ae3eaddd97b44f94.bptc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=true +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/Enemy/chariot_attack2/chariot_attack2_085.png b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_085.png new file mode 100644 index 000000000..99166ff90 Binary files /dev/null and b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_085.png differ diff --git a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_085.png.import b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_085.png.import new file mode 100644 index 000000000..6313b5275 --- /dev/null +++ b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_085.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://2w7asyjyefl7" +path.bptc="res://.godot/imported/chariot_attack2_085.png-cf9320e7e8166807da49e901f4b3d5ed.bptc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/vfx/Enemy/chariot_attack2/chariot_attack2_085.png" +dest_files=["res://.godot/imported/chariot_attack2_085.png-cf9320e7e8166807da49e901f4b3d5ed.bptc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=true +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/Enemy/chariot_attack2/chariot_attack2_086.png b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_086.png new file mode 100644 index 000000000..99166ff90 Binary files /dev/null and b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_086.png differ diff --git a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_086.png.import b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_086.png.import new file mode 100644 index 000000000..8b9e4c6c4 --- /dev/null +++ b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_086.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cevdcwcv2ws35" +path.bptc="res://.godot/imported/chariot_attack2_086.png-4c44198db4d8e43cbda1034c9301e1f1.bptc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/vfx/Enemy/chariot_attack2/chariot_attack2_086.png" +dest_files=["res://.godot/imported/chariot_attack2_086.png-4c44198db4d8e43cbda1034c9301e1f1.bptc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=true +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/Enemy/chariot_attack2/chariot_attack2_087.png b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_087.png new file mode 100644 index 000000000..99166ff90 Binary files /dev/null and b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_087.png differ diff --git a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_087.png.import b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_087.png.import new file mode 100644 index 000000000..05ff9011a --- /dev/null +++ b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_087.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bagudcndylbf3" +path.bptc="res://.godot/imported/chariot_attack2_087.png-2ac10f77fcf9006281f9f39f87859982.bptc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/vfx/Enemy/chariot_attack2/chariot_attack2_087.png" +dest_files=["res://.godot/imported/chariot_attack2_087.png-2ac10f77fcf9006281f9f39f87859982.bptc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=true +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/Enemy/chariot_attack2/chariot_attack2_088.png b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_088.png new file mode 100644 index 000000000..99166ff90 Binary files /dev/null and b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_088.png differ diff --git a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_088.png.import b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_088.png.import new file mode 100644 index 000000000..f1d52835b --- /dev/null +++ b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_088.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://begbuw25pjc4j" +path.bptc="res://.godot/imported/chariot_attack2_088.png-0284f940818607665b9c9d49bcf1e44e.bptc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/vfx/Enemy/chariot_attack2/chariot_attack2_088.png" +dest_files=["res://.godot/imported/chariot_attack2_088.png-0284f940818607665b9c9d49bcf1e44e.bptc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=true +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/Enemy/chariot_attack2/chariot_attack2_089.png b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_089.png new file mode 100644 index 000000000..99166ff90 Binary files /dev/null and b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_089.png differ diff --git a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_089.png.import b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_089.png.import new file mode 100644 index 000000000..67ac3036c --- /dev/null +++ b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_089.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ceqhk100hriq8" +path.bptc="res://.godot/imported/chariot_attack2_089.png-be73d8ca621f46e2bde07a3a88aff4b0.bptc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/vfx/Enemy/chariot_attack2/chariot_attack2_089.png" +dest_files=["res://.godot/imported/chariot_attack2_089.png-be73d8ca621f46e2bde07a3a88aff4b0.bptc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=true +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/Enemy/chariot_attack2/chariot_attack2_090.png b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_090.png new file mode 100644 index 000000000..99166ff90 Binary files /dev/null and b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_090.png differ diff --git a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_090.png.import b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_090.png.import new file mode 100644 index 000000000..f0defcb60 --- /dev/null +++ b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_090.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dmmxb6r66ouss" +path.bptc="res://.godot/imported/chariot_attack2_090.png-d8d15b9a3730b01e485f8124b3dbff64.bptc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/vfx/Enemy/chariot_attack2/chariot_attack2_090.png" +dest_files=["res://.godot/imported/chariot_attack2_090.png-d8d15b9a3730b01e485f8124b3dbff64.bptc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=true +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/Enemy/chariot_attack2/chariot_attack2_091.png b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_091.png new file mode 100644 index 000000000..99166ff90 Binary files /dev/null and b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_091.png differ diff --git a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_091.png.import b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_091.png.import new file mode 100644 index 000000000..85949aaa5 --- /dev/null +++ b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_091.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b30nbhds6glys" +path.bptc="res://.godot/imported/chariot_attack2_091.png-5ae836014a343a6d8e530e00e97a84c2.bptc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/vfx/Enemy/chariot_attack2/chariot_attack2_091.png" +dest_files=["res://.godot/imported/chariot_attack2_091.png-5ae836014a343a6d8e530e00e97a84c2.bptc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=true +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/Enemy/chariot_attack2/chariot_attack2_092.png b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_092.png new file mode 100644 index 000000000..99166ff90 Binary files /dev/null and b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_092.png differ diff --git a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_092.png.import b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_092.png.import new file mode 100644 index 000000000..6604c592a --- /dev/null +++ b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_092.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dghwdk3r6sway" +path.bptc="res://.godot/imported/chariot_attack2_092.png-eb88e6cfbc60cf56a29444efd4107022.bptc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/vfx/Enemy/chariot_attack2/chariot_attack2_092.png" +dest_files=["res://.godot/imported/chariot_attack2_092.png-eb88e6cfbc60cf56a29444efd4107022.bptc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=true +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/Enemy/chariot_attack2/chariot_attack2_093.png b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_093.png new file mode 100644 index 000000000..99166ff90 Binary files /dev/null and b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_093.png differ diff --git a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_093.png.import b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_093.png.import new file mode 100644 index 000000000..17336da11 --- /dev/null +++ b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_093.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://otl5ete4s258" +path.bptc="res://.godot/imported/chariot_attack2_093.png-c7f6be66bf6b39b32fdd7003a55d22fc.bptc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/vfx/Enemy/chariot_attack2/chariot_attack2_093.png" +dest_files=["res://.godot/imported/chariot_attack2_093.png-c7f6be66bf6b39b32fdd7003a55d22fc.bptc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=true +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/Enemy/chariot_attack2/chariot_attack2_094.png b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_094.png new file mode 100644 index 000000000..99166ff90 Binary files /dev/null and b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_094.png differ diff --git a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_094.png.import b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_094.png.import new file mode 100644 index 000000000..37b7d2b5b --- /dev/null +++ b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_094.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c6uujjvldqtf7" +path.bptc="res://.godot/imported/chariot_attack2_094.png-754ca9796669fbfd974a214ae45c2831.bptc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/vfx/Enemy/chariot_attack2/chariot_attack2_094.png" +dest_files=["res://.godot/imported/chariot_attack2_094.png-754ca9796669fbfd974a214ae45c2831.bptc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=true +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/Enemy/chariot_attack2/chariot_attack2_095.png b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_095.png new file mode 100644 index 000000000..99166ff90 Binary files /dev/null and b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_095.png differ diff --git a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_095.png.import b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_095.png.import new file mode 100644 index 000000000..52aec64b4 --- /dev/null +++ b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_attack2/chariot_attack2_095.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c8c6vhpfqtsjh" +path.bptc="res://.godot/imported/chariot_attack2_095.png-3159cb8ef27448971bd7cba2144fb445.bptc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/vfx/Enemy/chariot_attack2/chariot_attack2_095.png" +dest_files=["res://.godot/imported/chariot_attack2_095.png-3159cb8ef27448971bd7cba2144fb445.bptc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=true +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/Enemy/chariot_projectile.png b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile.png deleted file mode 100644 index c44ae62a1..000000000 Binary files a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile.png and /dev/null differ diff --git a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile000.png b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile000.png new file mode 100644 index 000000000..f99c169f0 Binary files /dev/null and b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile000.png differ diff --git a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile000.png.import b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile000.png.import new file mode 100644 index 000000000..d322b078e --- /dev/null +++ b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile000.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bjlv5d7xgxq45" +path.s3tc="res://.godot/imported/tile000.png-d33f4e9fe5c8f1fbe10377f29c353987.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/vfx/Enemy/chariot_projectile/tile000.png" +dest_files=["res://.godot/imported/tile000.png-d33f4e9fe5c8f1fbe10377f29c353987.s3tc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=2 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +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/Enemy/chariot_projectile/tile001.png b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile001.png new file mode 100644 index 000000000..c4a1f7f0f Binary files /dev/null and b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile001.png differ diff --git a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile001.png.import b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile001.png.import new file mode 100644 index 000000000..b85703b8a --- /dev/null +++ b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile001.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://btoglwx2farou" +path.s3tc="res://.godot/imported/tile001.png-a39915f0162961a340ea51e2692df3af.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/vfx/Enemy/chariot_projectile/tile001.png" +dest_files=["res://.godot/imported/tile001.png-a39915f0162961a340ea51e2692df3af.s3tc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=2 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +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/Enemy/chariot_projectile/tile002.png b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile002.png new file mode 100644 index 000000000..db80499fa Binary files /dev/null and b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile002.png differ diff --git a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile002.png.import b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile002.png.import new file mode 100644 index 000000000..2441546dc --- /dev/null +++ b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile002.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://byllvvylyfyjw" +path.s3tc="res://.godot/imported/tile002.png-854bd42bc883bfff5ca0773bcd0f6476.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/vfx/Enemy/chariot_projectile/tile002.png" +dest_files=["res://.godot/imported/tile002.png-854bd42bc883bfff5ca0773bcd0f6476.s3tc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=2 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +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/Enemy/chariot_projectile/tile003.png b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile003.png new file mode 100644 index 000000000..49acbc070 Binary files /dev/null and b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile003.png differ diff --git a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile003.png.import b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile003.png.import new file mode 100644 index 000000000..f9d09f38f --- /dev/null +++ b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile003.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dh3x062wk5qca" +path.s3tc="res://.godot/imported/tile003.png-cb06a269c065a4fd1330e44980e2e50b.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/vfx/Enemy/chariot_projectile/tile003.png" +dest_files=["res://.godot/imported/tile003.png-cb06a269c065a4fd1330e44980e2e50b.s3tc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=2 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +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/Enemy/chariot_projectile/tile004.png b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile004.png new file mode 100644 index 000000000..7dcb4025d Binary files /dev/null and b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile004.png differ diff --git a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile004.png.import b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile004.png.import new file mode 100644 index 000000000..f371cc7b3 --- /dev/null +++ b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile004.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b1mm6jyk15jle" +path.s3tc="res://.godot/imported/tile004.png-4daae7676587371c2812389e51c73208.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/vfx/Enemy/chariot_projectile/tile004.png" +dest_files=["res://.godot/imported/tile004.png-4daae7676587371c2812389e51c73208.s3tc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=2 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +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/Enemy/chariot_projectile/tile005.png b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile005.png new file mode 100644 index 000000000..6dbd77e65 Binary files /dev/null and b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile005.png differ diff --git a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile005.png.import b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile005.png.import new file mode 100644 index 000000000..b09f255de --- /dev/null +++ b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile005.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://brydcb14qg324" +path.s3tc="res://.godot/imported/tile005.png-30a5225649109207a6980ca9cfa0ec97.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/vfx/Enemy/chariot_projectile/tile005.png" +dest_files=["res://.godot/imported/tile005.png-30a5225649109207a6980ca9cfa0ec97.s3tc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=2 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +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/Enemy/chariot_projectile/tile006.png b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile006.png new file mode 100644 index 000000000..e2ef8cdcf Binary files /dev/null and b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile006.png differ diff --git a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile006.png.import b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile006.png.import new file mode 100644 index 000000000..f58b3bd44 --- /dev/null +++ b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile006.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ce1fw1mxegifb" +path.s3tc="res://.godot/imported/tile006.png-312b58f64e63f2aa12135118886d47a6.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/vfx/Enemy/chariot_projectile/tile006.png" +dest_files=["res://.godot/imported/tile006.png-312b58f64e63f2aa12135118886d47a6.s3tc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=2 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +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/Enemy/chariot_projectile/tile007.png b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile007.png new file mode 100644 index 000000000..e9bca8bc3 Binary files /dev/null and b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile007.png differ diff --git a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile007.png.import b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile007.png.import new file mode 100644 index 000000000..9f78bd23e --- /dev/null +++ b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile007.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b2se6n7xmuixi" +path.s3tc="res://.godot/imported/tile007.png-73dc647b72816e85dde80391f9d59f77.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/vfx/Enemy/chariot_projectile/tile007.png" +dest_files=["res://.godot/imported/tile007.png-73dc647b72816e85dde80391f9d59f77.s3tc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=2 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +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/Enemy/chariot_projectile/tile008.png b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile008.png new file mode 100644 index 000000000..cb0055474 Binary files /dev/null and b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile008.png differ diff --git a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile008.png.import b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile008.png.import new file mode 100644 index 000000000..7b186eff4 --- /dev/null +++ b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile008.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://1b7gyx7oerkp" +path.s3tc="res://.godot/imported/tile008.png-003aebaf06003bfddf2b156f73fc6e2d.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/vfx/Enemy/chariot_projectile/tile008.png" +dest_files=["res://.godot/imported/tile008.png-003aebaf06003bfddf2b156f73fc6e2d.s3tc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=2 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +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/Enemy/chariot_projectile/tile009.png b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile009.png new file mode 100644 index 000000000..1ff6c250a Binary files /dev/null and b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile009.png differ diff --git a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile009.png.import b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile009.png.import new file mode 100644 index 000000000..a8544174a --- /dev/null +++ b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile009.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dalsyo1wqamyo" +path.s3tc="res://.godot/imported/tile009.png-335f56d609efd215114c07b2a628621a.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/vfx/Enemy/chariot_projectile/tile009.png" +dest_files=["res://.godot/imported/tile009.png-335f56d609efd215114c07b2a628621a.s3tc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=2 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +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/Enemy/chariot_projectile/tile010.png b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile010.png new file mode 100644 index 000000000..73fd00a70 Binary files /dev/null and b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile010.png differ diff --git a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile010.png.import b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile010.png.import new file mode 100644 index 000000000..974b420f3 --- /dev/null +++ b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile010.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://da3sd5fjv6qfd" +path.s3tc="res://.godot/imported/tile010.png-4925b34618198f5e1d089c5191aebfc6.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/vfx/Enemy/chariot_projectile/tile010.png" +dest_files=["res://.godot/imported/tile010.png-4925b34618198f5e1d089c5191aebfc6.s3tc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=2 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +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/Enemy/chariot_projectile/tile011.png b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile011.png new file mode 100644 index 000000000..7fd744c5e Binary files /dev/null and b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile011.png differ diff --git a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile011.png.import b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile011.png.import new file mode 100644 index 000000000..cec0859ea --- /dev/null +++ b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile011.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://1xsogqc35oii" +path.s3tc="res://.godot/imported/tile011.png-12438c0dd4bea8d82d6ac605fd96f487.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/vfx/Enemy/chariot_projectile/tile011.png" +dest_files=["res://.godot/imported/tile011.png-12438c0dd4bea8d82d6ac605fd96f487.s3tc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=2 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +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/Enemy/chariot_projectile/tile012.png b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile012.png new file mode 100644 index 000000000..f597827cf Binary files /dev/null and b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile012.png differ diff --git a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile012.png.import b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile012.png.import new file mode 100644 index 000000000..2453932ec --- /dev/null +++ b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile012.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bwcnngjv0muta" +path.s3tc="res://.godot/imported/tile012.png-e82c9d9839801d9e1445157852e7e79b.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/vfx/Enemy/chariot_projectile/tile012.png" +dest_files=["res://.godot/imported/tile012.png-e82c9d9839801d9e1445157852e7e79b.s3tc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=2 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +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/Enemy/chariot_projectile/tile013.png b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile013.png new file mode 100644 index 000000000..b2a7d0f39 Binary files /dev/null and b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile013.png differ diff --git a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile013.png.import b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile013.png.import new file mode 100644 index 000000000..bad114f2d --- /dev/null +++ b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile013.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c3tu6s1qsppn5" +path.s3tc="res://.godot/imported/tile013.png-d91d433f5d6a9d248681a8f45b1bfbb0.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/vfx/Enemy/chariot_projectile/tile013.png" +dest_files=["res://.godot/imported/tile013.png-d91d433f5d6a9d248681a8f45b1bfbb0.s3tc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=2 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +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/Enemy/chariot_projectile/tile014.png b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile014.png new file mode 100644 index 000000000..893b5b35b Binary files /dev/null and b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile014.png differ diff --git a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile014.png.import b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile014.png.import new file mode 100644 index 000000000..f601c131c --- /dev/null +++ b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile014.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://jauojnk6d0bq" +path.s3tc="res://.godot/imported/tile014.png-b7e28229fd00db7e7f8ae6c493e6584d.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/vfx/Enemy/chariot_projectile/tile014.png" +dest_files=["res://.godot/imported/tile014.png-b7e28229fd00db7e7f8ae6c493e6584d.s3tc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=2 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +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/Enemy/chariot_projectile/tile015.png b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile015.png new file mode 100644 index 000000000..0a298498a Binary files /dev/null and b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile015.png differ diff --git a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile015.png.import b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile015.png.import new file mode 100644 index 000000000..996963bc2 --- /dev/null +++ b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile015.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://e0jaojem4bce" +path.s3tc="res://.godot/imported/tile015.png-27a85bdd4caa127f45e369a70aa2722e.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/vfx/Enemy/chariot_projectile/tile015.png" +dest_files=["res://.godot/imported/tile015.png-27a85bdd4caa127f45e369a70aa2722e.s3tc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=2 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +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/Enemy/chariot_projectile/tile016.png b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile016.png new file mode 100644 index 000000000..ac71f95fd Binary files /dev/null and b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile016.png differ diff --git a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile016.png.import b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile016.png.import new file mode 100644 index 000000000..1c92287c1 --- /dev/null +++ b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile016.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bybquttihoyk8" +path.s3tc="res://.godot/imported/tile016.png-84f030ee513f79ea034bc7ce4bda8174.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/vfx/Enemy/chariot_projectile/tile016.png" +dest_files=["res://.godot/imported/tile016.png-84f030ee513f79ea034bc7ce4bda8174.s3tc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=2 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +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/Enemy/chariot_projectile/tile017.png b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile017.png new file mode 100644 index 000000000..fefd53a0a Binary files /dev/null and b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile017.png differ diff --git a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile017.png.import b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile017.png.import new file mode 100644 index 000000000..0f2d5a86b --- /dev/null +++ b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile017.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dnlb080whhvn8" +path.s3tc="res://.godot/imported/tile017.png-f5fcd2a733bfe30d72bd25fda5d86163.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/vfx/Enemy/chariot_projectile/tile017.png" +dest_files=["res://.godot/imported/tile017.png-f5fcd2a733bfe30d72bd25fda5d86163.s3tc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=2 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +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/Enemy/chariot_projectile/tile018.png b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile018.png new file mode 100644 index 000000000..f0a637d18 Binary files /dev/null and b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile018.png differ diff --git a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile018.png.import b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile018.png.import new file mode 100644 index 000000000..761bdb036 --- /dev/null +++ b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile018.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bsgicrtlb8ppq" +path.s3tc="res://.godot/imported/tile018.png-eecf9d479cf8c29cc95448b63e8a04b3.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/vfx/Enemy/chariot_projectile/tile018.png" +dest_files=["res://.godot/imported/tile018.png-eecf9d479cf8c29cc95448b63e8a04b3.s3tc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=2 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +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/Enemy/chariot_projectile/tile019.png b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile019.png new file mode 100644 index 000000000..b660750ac Binary files /dev/null and b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile019.png differ diff --git a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile019.png.import b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile019.png.import new file mode 100644 index 000000000..110c49ed3 --- /dev/null +++ b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile019.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d26pwu65w6neo" +path.s3tc="res://.godot/imported/tile019.png-d4563d7fd04da90406ae8d6d1c11d4a8.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/vfx/Enemy/chariot_projectile/tile019.png" +dest_files=["res://.godot/imported/tile019.png-d4563d7fd04da90406ae8d6d1c11d4a8.s3tc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=2 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +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/Enemy/chariot_projectile/tile020.png b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile020.png new file mode 100644 index 000000000..a8df46220 Binary files /dev/null and b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile020.png differ diff --git a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile020.png.import b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile020.png.import new file mode 100644 index 000000000..d0523913e --- /dev/null +++ b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile020.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dw6417lafiga1" +path.s3tc="res://.godot/imported/tile020.png-224b864ae1f6fb5b5ea07fc33f900276.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/vfx/Enemy/chariot_projectile/tile020.png" +dest_files=["res://.godot/imported/tile020.png-224b864ae1f6fb5b5ea07fc33f900276.s3tc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=2 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +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/Enemy/chariot_projectile/tile021.png b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile021.png new file mode 100644 index 000000000..3952acaf5 Binary files /dev/null and b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile021.png differ diff --git a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile021.png.import b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile021.png.import new file mode 100644 index 000000000..34e2ef4b4 --- /dev/null +++ b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile021.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bo425d6fk8f37" +path.s3tc="res://.godot/imported/tile021.png-ddb588cf85367de8529d75e10ff86a3d.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/vfx/Enemy/chariot_projectile/tile021.png" +dest_files=["res://.godot/imported/tile021.png-ddb588cf85367de8529d75e10ff86a3d.s3tc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=2 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +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/Enemy/chariot_projectile/tile022.png b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile022.png new file mode 100644 index 000000000..d129dde7d Binary files /dev/null and b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile022.png differ diff --git a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile022.png.import b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile022.png.import new file mode 100644 index 000000000..b30c4c025 --- /dev/null +++ b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile022.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cnoi2gfqtws2r" +path.s3tc="res://.godot/imported/tile022.png-cb1b46e17791a42aeb1a6393a898022d.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/vfx/Enemy/chariot_projectile/tile022.png" +dest_files=["res://.godot/imported/tile022.png-cb1b46e17791a42aeb1a6393a898022d.s3tc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=2 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +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/Enemy/chariot_projectile/tile023.png b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile023.png new file mode 100644 index 000000000..284215d4a Binary files /dev/null and b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile023.png differ diff --git a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile023.png.import b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile023.png.import new file mode 100644 index 000000000..15192917f --- /dev/null +++ b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile023.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b17s637i5l8y" +path.s3tc="res://.godot/imported/tile023.png-d758baa97356508879bd3e5f637e9e43.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/vfx/Enemy/chariot_projectile/tile023.png" +dest_files=["res://.godot/imported/tile023.png-d758baa97356508879bd3e5f637e9e43.s3tc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=2 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +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/Enemy/chariot_projectile/tile024.png b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile024.png new file mode 100644 index 000000000..7b9c9e70a Binary files /dev/null and b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile024.png differ diff --git a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile024.png.import b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile024.png.import new file mode 100644 index 000000000..1cdf4ce5f --- /dev/null +++ b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile024.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://fla4uk4jlg3u" +path.s3tc="res://.godot/imported/tile024.png-1f4f7f566ce7851ad451152b1831d5dd.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/vfx/Enemy/chariot_projectile/tile024.png" +dest_files=["res://.godot/imported/tile024.png-1f4f7f566ce7851ad451152b1831d5dd.s3tc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=2 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +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/Enemy/chariot_projectile/tile025.png b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile025.png new file mode 100644 index 000000000..e31ec03e9 Binary files /dev/null and b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile025.png differ diff --git a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile025.png.import b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile025.png.import new file mode 100644 index 000000000..181a52019 --- /dev/null +++ b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile025.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://blxtlqpvc5d1s" +path.s3tc="res://.godot/imported/tile025.png-1ba4b98dd9a9ce4b58b8bfa7b44ddcb6.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/vfx/Enemy/chariot_projectile/tile025.png" +dest_files=["res://.godot/imported/tile025.png-1ba4b98dd9a9ce4b58b8bfa7b44ddcb6.s3tc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=2 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +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/Enemy/chariot_projectile/tile026.png b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile026.png new file mode 100644 index 000000000..1f07539a7 Binary files /dev/null and b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile026.png differ diff --git a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile026.png.import b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile026.png.import new file mode 100644 index 000000000..12807de7d --- /dev/null +++ b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile026.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://hqnh4bpvef7f" +path.s3tc="res://.godot/imported/tile026.png-ba40449cc2f65dfed80c2dcdf78c02f1.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/vfx/Enemy/chariot_projectile/tile026.png" +dest_files=["res://.godot/imported/tile026.png-ba40449cc2f65dfed80c2dcdf78c02f1.s3tc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=2 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +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/Enemy/chariot_projectile/tile027.png b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile027.png new file mode 100644 index 000000000..d29a5afb6 Binary files /dev/null and b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile027.png differ diff --git a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile027.png.import b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile027.png.import new file mode 100644 index 000000000..cd2d7ad1b --- /dev/null +++ b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile027.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://svmuqklsmh5u" +path.s3tc="res://.godot/imported/tile027.png-046f271581af959c5e122f2c06a934dc.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/vfx/Enemy/chariot_projectile/tile027.png" +dest_files=["res://.godot/imported/tile027.png-046f271581af959c5e122f2c06a934dc.s3tc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=2 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +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/Enemy/chariot_projectile/tile028.png b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile028.png new file mode 100644 index 000000000..1d60b6ac4 Binary files /dev/null and b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile028.png differ diff --git a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile028.png.import b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile028.png.import new file mode 100644 index 000000000..cb035183a --- /dev/null +++ b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile028.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ciyqjm4am5nqh" +path.s3tc="res://.godot/imported/tile028.png-737ea9813880c79a9be51f8cd51c81fd.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/vfx/Enemy/chariot_projectile/tile028.png" +dest_files=["res://.godot/imported/tile028.png-737ea9813880c79a9be51f8cd51c81fd.s3tc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=2 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +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/Enemy/chariot_projectile/tile029.png b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile029.png new file mode 100644 index 000000000..7c5978c91 Binary files /dev/null and b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile029.png differ diff --git a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile029.png.import b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile029.png.import new file mode 100644 index 000000000..16e312e10 --- /dev/null +++ b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile029.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cn5xx07gke26" +path.s3tc="res://.godot/imported/tile029.png-8555531a6a69ff7de697f61b945912b0.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/vfx/Enemy/chariot_projectile/tile029.png" +dest_files=["res://.godot/imported/tile029.png-8555531a6a69ff7de697f61b945912b0.s3tc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=2 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +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/Enemy/chariot_projectile/tile030.png b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile030.png new file mode 100644 index 000000000..0bafebe84 Binary files /dev/null and b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile030.png differ diff --git a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile030.png.import b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile030.png.import new file mode 100644 index 000000000..e2b11657e --- /dev/null +++ b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile030.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ch475ufimtabf" +path.s3tc="res://.godot/imported/tile030.png-7746afdda368a903487ff1fc6a3555d1.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/vfx/Enemy/chariot_projectile/tile030.png" +dest_files=["res://.godot/imported/tile030.png-7746afdda368a903487ff1fc6a3555d1.s3tc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=2 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +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/Enemy/chariot_projectile/tile031.png b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile031.png new file mode 100644 index 000000000..2d93358e9 Binary files /dev/null and b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile031.png differ diff --git a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile031.png.import b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile031.png.import new file mode 100644 index 000000000..7fe1c1027 --- /dev/null +++ b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile031.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://7oyjev61x755" +path.s3tc="res://.godot/imported/tile031.png-25b39ec11dc2b0dc55126927bd8102f9.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/vfx/Enemy/chariot_projectile/tile031.png" +dest_files=["res://.godot/imported/tile031.png-25b39ec11dc2b0dc55126927bd8102f9.s3tc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=2 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +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/Enemy/chariot_projectile/tile032.png b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile032.png new file mode 100644 index 000000000..fd110e0b8 Binary files /dev/null and b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile032.png differ diff --git a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile032.png.import b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile032.png.import new file mode 100644 index 000000000..ce3b99ce6 --- /dev/null +++ b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile032.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://clo64aev4hfre" +path.s3tc="res://.godot/imported/tile032.png-38d23f88648a3fb89ed803478a84d1f8.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/vfx/Enemy/chariot_projectile/tile032.png" +dest_files=["res://.godot/imported/tile032.png-38d23f88648a3fb89ed803478a84d1f8.s3tc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=2 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +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/Enemy/chariot_projectile/tile033.png b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile033.png new file mode 100644 index 000000000..d2056f909 Binary files /dev/null and b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile033.png differ diff --git a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile033.png.import b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile033.png.import new file mode 100644 index 000000000..773c66873 --- /dev/null +++ b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile033.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dor7lnr7ycxge" +path.s3tc="res://.godot/imported/tile033.png-dfd6e35a109ebc512fa741565e4289b2.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/vfx/Enemy/chariot_projectile/tile033.png" +dest_files=["res://.godot/imported/tile033.png-dfd6e35a109ebc512fa741565e4289b2.s3tc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=2 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +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/Enemy/chariot_projectile/tile034.png b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile034.png new file mode 100644 index 000000000..b681933aa Binary files /dev/null and b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile034.png differ diff --git a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile034.png.import b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile034.png.import new file mode 100644 index 000000000..50669587e --- /dev/null +++ b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile034.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bbnv4vfih38k7" +path.s3tc="res://.godot/imported/tile034.png-12526eb2e51b72d317c2df5a5ce9e910.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/vfx/Enemy/chariot_projectile/tile034.png" +dest_files=["res://.godot/imported/tile034.png-12526eb2e51b72d317c2df5a5ce9e910.s3tc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=2 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +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/Enemy/chariot_projectile/tile035.png b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile035.png new file mode 100644 index 000000000..e737c99ef Binary files /dev/null and b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile035.png differ diff --git a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile035.png.import b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile035.png.import new file mode 100644 index 000000000..3cb9fd7a1 --- /dev/null +++ b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile035.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://da68epxe8ahbj" +path.s3tc="res://.godot/imported/tile035.png-04ba4efd47e23b83fea37faa25a94e46.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/vfx/Enemy/chariot_projectile/tile035.png" +dest_files=["res://.godot/imported/tile035.png-04ba4efd47e23b83fea37faa25a94e46.s3tc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=2 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +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/Enemy/chariot_projectile/tile036.png b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile036.png new file mode 100644 index 000000000..5423484d9 Binary files /dev/null and b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile036.png differ diff --git a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile036.png.import b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile036.png.import new file mode 100644 index 000000000..6d57ae608 --- /dev/null +++ b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile036.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b6fc4wqvgfocr" +path.s3tc="res://.godot/imported/tile036.png-866c7a10a912ba213de3d87bc471004d.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/vfx/Enemy/chariot_projectile/tile036.png" +dest_files=["res://.godot/imported/tile036.png-866c7a10a912ba213de3d87bc471004d.s3tc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=2 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +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/Enemy/chariot_projectile/tile037.png b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile037.png new file mode 100644 index 000000000..2cfff944a Binary files /dev/null and b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile037.png differ diff --git a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile037.png.import b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile037.png.import new file mode 100644 index 000000000..ab4aaa5e0 --- /dev/null +++ b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile037.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bntjcdrcx0owt" +path.s3tc="res://.godot/imported/tile037.png-37991182914effb3bbf2bf489dfce8a6.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/vfx/Enemy/chariot_projectile/tile037.png" +dest_files=["res://.godot/imported/tile037.png-37991182914effb3bbf2bf489dfce8a6.s3tc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=2 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +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/Enemy/chariot_projectile/tile038.png b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile038.png new file mode 100644 index 000000000..d86042ff2 Binary files /dev/null and b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile038.png differ diff --git a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile038.png.import b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile038.png.import new file mode 100644 index 000000000..84acc633f --- /dev/null +++ b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile038.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cv51osffuj6r2" +path.s3tc="res://.godot/imported/tile038.png-aee7700a211aea581b77dd6f7e89895f.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/vfx/Enemy/chariot_projectile/tile038.png" +dest_files=["res://.godot/imported/tile038.png-aee7700a211aea581b77dd6f7e89895f.s3tc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=2 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +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/Enemy/chariot_projectile/tile039.png b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile039.png new file mode 100644 index 000000000..95b8eb8e1 Binary files /dev/null and b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile039.png differ diff --git a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile039.png.import b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile039.png.import new file mode 100644 index 000000000..de4fdeff2 --- /dev/null +++ b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile039.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bd6jdfmhwe6ji" +path.s3tc="res://.godot/imported/tile039.png-2c742b5c582aabafa37a49541cab5bf3.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/vfx/Enemy/chariot_projectile/tile039.png" +dest_files=["res://.godot/imported/tile039.png-2c742b5c582aabafa37a49541cab5bf3.s3tc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=2 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +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/Enemy/chariot_projectile/tile040.png b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile040.png new file mode 100644 index 000000000..2c8f8076a Binary files /dev/null and b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile040.png differ diff --git a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile040.png.import b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile040.png.import new file mode 100644 index 000000000..55a66bede --- /dev/null +++ b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile040.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dkuco5r4ub3f2" +path.s3tc="res://.godot/imported/tile040.png-8ab0e83d4a60662474bd49de71f73b00.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/vfx/Enemy/chariot_projectile/tile040.png" +dest_files=["res://.godot/imported/tile040.png-8ab0e83d4a60662474bd49de71f73b00.s3tc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=2 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +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/Enemy/chariot_projectile/tile041.png b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile041.png new file mode 100644 index 000000000..33cb9f9b7 Binary files /dev/null and b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile041.png differ diff --git a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile041.png.import b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile041.png.import new file mode 100644 index 000000000..70f90cabe --- /dev/null +++ b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile041.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://duyma48l7sv3d" +path.s3tc="res://.godot/imported/tile041.png-5e173aabe4450de014b02b9581345028.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/vfx/Enemy/chariot_projectile/tile041.png" +dest_files=["res://.godot/imported/tile041.png-5e173aabe4450de014b02b9581345028.s3tc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=2 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +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/Enemy/chariot_projectile/tile042.png b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile042.png new file mode 100644 index 000000000..ec79610a6 Binary files /dev/null and b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile042.png differ diff --git a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile042.png.import b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile042.png.import new file mode 100644 index 000000000..964f35605 --- /dev/null +++ b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile042.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bn4vcj33t6jlv" +path.s3tc="res://.godot/imported/tile042.png-292fef3428cef8d9b897030ca7b92a88.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/vfx/Enemy/chariot_projectile/tile042.png" +dest_files=["res://.godot/imported/tile042.png-292fef3428cef8d9b897030ca7b92a88.s3tc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=2 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +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/Enemy/chariot_projectile/tile043.png b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile043.png new file mode 100644 index 000000000..65704ab3c Binary files /dev/null and b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile043.png differ diff --git a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile043.png.import b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile043.png.import new file mode 100644 index 000000000..dee95041e --- /dev/null +++ b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile043.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b6wj4myvqcg6o" +path.s3tc="res://.godot/imported/tile043.png-1ba4bad570737f2280549018c494e678.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/vfx/Enemy/chariot_projectile/tile043.png" +dest_files=["res://.godot/imported/tile043.png-1ba4bad570737f2280549018c494e678.s3tc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=2 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +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/Enemy/chariot_projectile/tile044.png b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile044.png new file mode 100644 index 000000000..adbc31abb Binary files /dev/null and b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile044.png differ diff --git a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile044.png.import b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile044.png.import new file mode 100644 index 000000000..93d608e74 --- /dev/null +++ b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile044.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bpi06jlqtw0xc" +path.s3tc="res://.godot/imported/tile044.png-5f1b29fdfef8d923db06a89fca327d4a.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/vfx/Enemy/chariot_projectile/tile044.png" +dest_files=["res://.godot/imported/tile044.png-5f1b29fdfef8d923db06a89fca327d4a.s3tc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=2 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +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/Enemy/chariot_projectile/tile045.png b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile045.png new file mode 100644 index 000000000..c4d7c6143 Binary files /dev/null and b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile045.png differ diff --git a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile045.png.import b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile045.png.import new file mode 100644 index 000000000..6f4e8f7da --- /dev/null +++ b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile045.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cinycrwdsxdc1" +path.s3tc="res://.godot/imported/tile045.png-40c6c20a297d1a13e84aab78cbe97c0d.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/vfx/Enemy/chariot_projectile/tile045.png" +dest_files=["res://.godot/imported/tile045.png-40c6c20a297d1a13e84aab78cbe97c0d.s3tc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=2 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +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/Enemy/chariot_projectile/tile046.png b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile046.png new file mode 100644 index 000000000..564b4f462 Binary files /dev/null and b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile046.png differ diff --git a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile046.png.import b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile046.png.import new file mode 100644 index 000000000..f42b3240f --- /dev/null +++ b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile046.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cvkjnua84g1hn" +path.s3tc="res://.godot/imported/tile046.png-e53fa6d1c96958c4556c5cc6022573e8.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/vfx/Enemy/chariot_projectile/tile046.png" +dest_files=["res://.godot/imported/tile046.png-e53fa6d1c96958c4556c5cc6022573e8.s3tc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=2 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +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/Enemy/chariot_projectile/tile047.png b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile047.png new file mode 100644 index 000000000..2737fb2c3 Binary files /dev/null and b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile047.png differ diff --git a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile047.png.import b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile047.png.import new file mode 100644 index 000000000..a5d19b182 --- /dev/null +++ b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile047.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://qujpwp5tkl75" +path.s3tc="res://.godot/imported/tile047.png-e900d9bec4ca89d35fc5e5640861b1ca.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/vfx/Enemy/chariot_projectile/tile047.png" +dest_files=["res://.godot/imported/tile047.png-e900d9bec4ca89d35fc5e5640861b1ca.s3tc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=2 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +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/Enemy/chariot_projectile/tile048.png b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile048.png new file mode 100644 index 000000000..aa00a88d5 Binary files /dev/null and b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile048.png differ diff --git a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile048.png.import b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile048.png.import new file mode 100644 index 000000000..3b35204d5 --- /dev/null +++ b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile048.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bugc6sy7vkqkk" +path.s3tc="res://.godot/imported/tile048.png-5d0e74812d82e9c49b73515567395dc8.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/vfx/Enemy/chariot_projectile/tile048.png" +dest_files=["res://.godot/imported/tile048.png-5d0e74812d82e9c49b73515567395dc8.s3tc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=2 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +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/Enemy/chariot_projectile/tile049.png b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile049.png new file mode 100644 index 000000000..1624e8a43 Binary files /dev/null and b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile049.png differ diff --git a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile049.png.import b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile049.png.import new file mode 100644 index 000000000..4a73c9b0b --- /dev/null +++ b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile049.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d0ugkmj2ab7y3" +path.s3tc="res://.godot/imported/tile049.png-53b426fc872729fb167c01e94c64854c.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/vfx/Enemy/chariot_projectile/tile049.png" +dest_files=["res://.godot/imported/tile049.png-53b426fc872729fb167c01e94c64854c.s3tc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=2 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +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/Enemy/chariot_projectile/tile050.png b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile050.png new file mode 100644 index 000000000..b057bfd5b Binary files /dev/null and b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile050.png differ diff --git a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile050.png.import b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile050.png.import new file mode 100644 index 000000000..f1afc7071 --- /dev/null +++ b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile050.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cmpv712qw5bof" +path.s3tc="res://.godot/imported/tile050.png-fa44dbb8e15861991dcba6049dc71a7c.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/vfx/Enemy/chariot_projectile/tile050.png" +dest_files=["res://.godot/imported/tile050.png-fa44dbb8e15861991dcba6049dc71a7c.s3tc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=2 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +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/Enemy/chariot_projectile/tile051.png b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile051.png new file mode 100644 index 000000000..951c763be Binary files /dev/null and b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile051.png differ diff --git a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile051.png.import b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile051.png.import new file mode 100644 index 000000000..f7a18ee54 --- /dev/null +++ b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile051.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://brwkg5i3kcwdc" +path.s3tc="res://.godot/imported/tile051.png-e2d2692bac5f29a02e5453d3af9b8042.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/vfx/Enemy/chariot_projectile/tile051.png" +dest_files=["res://.godot/imported/tile051.png-e2d2692bac5f29a02e5453d3af9b8042.s3tc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=2 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +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/Enemy/chariot_projectile/tile052.png b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile052.png new file mode 100644 index 000000000..2a7911858 Binary files /dev/null and b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile052.png differ diff --git a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile052.png.import b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile052.png.import new file mode 100644 index 000000000..478302d0f --- /dev/null +++ b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile052.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ugu458cmaljq" +path.s3tc="res://.godot/imported/tile052.png-9e91276b730c6bfa1dd372a53b55e864.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/vfx/Enemy/chariot_projectile/tile052.png" +dest_files=["res://.godot/imported/tile052.png-9e91276b730c6bfa1dd372a53b55e864.s3tc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=2 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +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/Enemy/chariot_projectile/tile053.png b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile053.png new file mode 100644 index 000000000..7d8c34ab2 Binary files /dev/null and b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile053.png differ diff --git a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile053.png.import b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile053.png.import new file mode 100644 index 000000000..39aaa495f --- /dev/null +++ b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile053.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://wqfborvguw3t" +path.s3tc="res://.godot/imported/tile053.png-945880d71b3f17d6fdad946baf562f5d.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/vfx/Enemy/chariot_projectile/tile053.png" +dest_files=["res://.godot/imported/tile053.png-945880d71b3f17d6fdad946baf562f5d.s3tc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=2 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +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/Enemy/chariot_projectile/tile054.png b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile054.png new file mode 100644 index 000000000..e9cddb848 Binary files /dev/null and b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile054.png differ diff --git a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile054.png.import b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile054.png.import new file mode 100644 index 000000000..fb5c6f52a --- /dev/null +++ b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile054.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://nakvuckfntja" +path.s3tc="res://.godot/imported/tile054.png-4a3d4fd029d17295912764b173f23c8e.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/vfx/Enemy/chariot_projectile/tile054.png" +dest_files=["res://.godot/imported/tile054.png-4a3d4fd029d17295912764b173f23c8e.s3tc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=2 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +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/Enemy/chariot_projectile/tile055.png b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile055.png new file mode 100644 index 000000000..a36c130d6 Binary files /dev/null and b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile055.png differ diff --git a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile055.png.import b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile055.png.import new file mode 100644 index 000000000..79b9dbb05 --- /dev/null +++ b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile055.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://5i1bby5e0ml5" +path.s3tc="res://.godot/imported/tile055.png-fffeeedc09becdaec7d942216655b278.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/vfx/Enemy/chariot_projectile/tile055.png" +dest_files=["res://.godot/imported/tile055.png-fffeeedc09becdaec7d942216655b278.s3tc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=2 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +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/Enemy/chariot_projectile/tile056.png b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile056.png new file mode 100644 index 000000000..e50a8e156 Binary files /dev/null and b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile056.png differ diff --git a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile056.png.import b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile056.png.import new file mode 100644 index 000000000..235b3e058 --- /dev/null +++ b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile056.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dbbhwjl4omwoi" +path.s3tc="res://.godot/imported/tile056.png-dea16a8d632b8131b392fce91b661ff2.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/vfx/Enemy/chariot_projectile/tile056.png" +dest_files=["res://.godot/imported/tile056.png-dea16a8d632b8131b392fce91b661ff2.s3tc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=2 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +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/Enemy/chariot_projectile/tile057.png b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile057.png new file mode 100644 index 000000000..317a77b47 Binary files /dev/null and b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile057.png differ diff --git a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile057.png.import b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile057.png.import new file mode 100644 index 000000000..693997854 --- /dev/null +++ b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile057.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bqfomtpvqg5n8" +path.s3tc="res://.godot/imported/tile057.png-1ab642df1f85550039664b59e9f969b2.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/vfx/Enemy/chariot_projectile/tile057.png" +dest_files=["res://.godot/imported/tile057.png-1ab642df1f85550039664b59e9f969b2.s3tc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=2 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +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/Enemy/chariot_projectile/tile058.png b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile058.png new file mode 100644 index 000000000..4d0773bd2 Binary files /dev/null and b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile058.png differ diff --git a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile058.png.import b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile058.png.import new file mode 100644 index 000000000..c9dbc1edf --- /dev/null +++ b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile058.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://druykclowlb6c" +path.s3tc="res://.godot/imported/tile058.png-28c9e0a2fa821376ffa1471ac4842b9b.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/vfx/Enemy/chariot_projectile/tile058.png" +dest_files=["res://.godot/imported/tile058.png-28c9e0a2fa821376ffa1471ac4842b9b.s3tc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=2 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +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/Enemy/chariot_projectile/tile059.png b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile059.png new file mode 100644 index 000000000..c2ca54b46 Binary files /dev/null and b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile059.png differ diff --git a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile059.png.import b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile059.png.import new file mode 100644 index 000000000..02bb2db3f --- /dev/null +++ b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile059.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b8hem6e15j0ph" +path.s3tc="res://.godot/imported/tile059.png-e84ed01cf6bc9280fbb2c73b852def60.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/vfx/Enemy/chariot_projectile/tile059.png" +dest_files=["res://.godot/imported/tile059.png-e84ed01cf6bc9280fbb2c73b852def60.s3tc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=2 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +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/Enemy/chariot_projectile/tile060.png b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile060.png new file mode 100644 index 000000000..e32443b5d Binary files /dev/null and b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile060.png differ diff --git a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile060.png.import b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile060.png.import new file mode 100644 index 000000000..d1b0a6803 --- /dev/null +++ b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile060.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bc7wbfpve6wjl" +path.s3tc="res://.godot/imported/tile060.png-92e7b92011c712d7ca3690c270baa31b.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/vfx/Enemy/chariot_projectile/tile060.png" +dest_files=["res://.godot/imported/tile060.png-92e7b92011c712d7ca3690c270baa31b.s3tc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=2 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +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/Enemy/chariot_projectile/tile061.png b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile061.png new file mode 100644 index 000000000..ce7a9dada Binary files /dev/null and b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile061.png differ diff --git a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile061.png.import b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile061.png.import new file mode 100644 index 000000000..3a5e2e0e5 --- /dev/null +++ b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile061.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c3vrosjn5rl4x" +path.s3tc="res://.godot/imported/tile061.png-11536880f6a865a090c2eca60c27a675.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/vfx/Enemy/chariot_projectile/tile061.png" +dest_files=["res://.godot/imported/tile061.png-11536880f6a865a090c2eca60c27a675.s3tc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=2 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +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/Enemy/chariot_projectile/tile062.png b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile062.png new file mode 100644 index 000000000..9251a36ed Binary files /dev/null and b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile062.png differ diff --git a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile062.png.import b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile062.png.import new file mode 100644 index 000000000..feab0d48a --- /dev/null +++ b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile062.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bttnlqxhls2qg" +path.s3tc="res://.godot/imported/tile062.png-c8d56025ec3fbc0605c6ae564ba71096.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/vfx/Enemy/chariot_projectile/tile062.png" +dest_files=["res://.godot/imported/tile062.png-c8d56025ec3fbc0605c6ae564ba71096.s3tc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=2 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +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/Enemy/chariot_projectile/tile063.png b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile063.png new file mode 100644 index 000000000..ba1f797aa Binary files /dev/null and b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile063.png differ diff --git a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile063.png.import b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile063.png.import new file mode 100644 index 000000000..720f629a6 --- /dev/null +++ b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile063.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dye5yxpkophkx" +path.s3tc="res://.godot/imported/tile063.png-7f2f33d8d90fb3e696a93c741294a10e.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/vfx/Enemy/chariot_projectile/tile063.png" +dest_files=["res://.godot/imported/tile063.png-7f2f33d8d90fb3e696a93c741294a10e.s3tc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=2 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +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/Enemy/chariot_projectile/tile064.png b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile064.png new file mode 100644 index 000000000..302694b13 Binary files /dev/null and b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile064.png differ diff --git a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile064.png.import b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile064.png.import new file mode 100644 index 000000000..dc62dc56e --- /dev/null +++ b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile064.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://btapsrr02b4nt" +path.s3tc="res://.godot/imported/tile064.png-abf3e11e5744c237389cd3904b978b6b.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/vfx/Enemy/chariot_projectile/tile064.png" +dest_files=["res://.godot/imported/tile064.png-abf3e11e5744c237389cd3904b978b6b.s3tc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=2 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +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/Enemy/chariot_projectile/tile065.png b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile065.png new file mode 100644 index 000000000..ce3d72fc0 Binary files /dev/null and b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile065.png differ diff --git a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile065.png.import b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile065.png.import new file mode 100644 index 000000000..67288e6d9 --- /dev/null +++ b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile065.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b5t07ab4ihlrb" +path.s3tc="res://.godot/imported/tile065.png-f69dd48f9560772e7793a3ead3027fcc.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/vfx/Enemy/chariot_projectile/tile065.png" +dest_files=["res://.godot/imported/tile065.png-f69dd48f9560772e7793a3ead3027fcc.s3tc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=2 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +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/Enemy/chariot_projectile/tile066.png b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile066.png new file mode 100644 index 000000000..1d2f65f8c Binary files /dev/null and b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile066.png differ diff --git a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile066.png.import b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile066.png.import new file mode 100644 index 000000000..cdf8072be --- /dev/null +++ b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile066.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ft8n64fc6bd2" +path.s3tc="res://.godot/imported/tile066.png-b869d2e216c1bc080507d0243eece160.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/vfx/Enemy/chariot_projectile/tile066.png" +dest_files=["res://.godot/imported/tile066.png-b869d2e216c1bc080507d0243eece160.s3tc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=2 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +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/Enemy/chariot_projectile/tile067.png b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile067.png new file mode 100644 index 000000000..879cf66c4 Binary files /dev/null and b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile067.png differ diff --git a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile067.png.import b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile067.png.import new file mode 100644 index 000000000..473073dfb --- /dev/null +++ b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile067.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bdgh3is0vbtq3" +path.s3tc="res://.godot/imported/tile067.png-d7cff8b09b7f9f1571358e57975106cf.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/vfx/Enemy/chariot_projectile/tile067.png" +dest_files=["res://.godot/imported/tile067.png-d7cff8b09b7f9f1571358e57975106cf.s3tc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=2 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +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/Enemy/chariot_projectile/tile068.png b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile068.png new file mode 100644 index 000000000..c9cd3ffe0 Binary files /dev/null and b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile068.png differ diff --git a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile068.png.import b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile068.png.import new file mode 100644 index 000000000..e51999b35 --- /dev/null +++ b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile068.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://p8e077wrtrel" +path.s3tc="res://.godot/imported/tile068.png-91e3d0cb155cf9db1edab5f121870294.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/vfx/Enemy/chariot_projectile/tile068.png" +dest_files=["res://.godot/imported/tile068.png-91e3d0cb155cf9db1edab5f121870294.s3tc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=2 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +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/Enemy/chariot_projectile/tile069.png b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile069.png new file mode 100644 index 000000000..e40127553 Binary files /dev/null and b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile069.png differ diff --git a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile069.png.import b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile069.png.import new file mode 100644 index 000000000..bf21fc1a0 --- /dev/null +++ b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile069.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cr4s0bg4clq0g" +path.s3tc="res://.godot/imported/tile069.png-df4891171d7130a21d2dbb2b001e850b.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/vfx/Enemy/chariot_projectile/tile069.png" +dest_files=["res://.godot/imported/tile069.png-df4891171d7130a21d2dbb2b001e850b.s3tc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=2 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +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/Enemy/chariot_projectile/tile070.png b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile070.png new file mode 100644 index 000000000..4a1189222 Binary files /dev/null and b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile070.png differ diff --git a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile070.png.import b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile070.png.import new file mode 100644 index 000000000..4e5bf5a14 --- /dev/null +++ b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile070.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://wy6r8cqa6pou" +path.s3tc="res://.godot/imported/tile070.png-f26d24df088a09045a62283061f86787.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/vfx/Enemy/chariot_projectile/tile070.png" +dest_files=["res://.godot/imported/tile070.png-f26d24df088a09045a62283061f86787.s3tc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=2 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +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/Enemy/chariot_projectile/tile071.png b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile071.png new file mode 100644 index 000000000..0262d26a6 Binary files /dev/null and b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile071.png differ diff --git a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile071.png.import b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile071.png.import new file mode 100644 index 000000000..a16dd4fb8 --- /dev/null +++ b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile071.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://crlvlwaun1ma8" +path.s3tc="res://.godot/imported/tile071.png-b4460eaf9f3a4d9a573f2c8c674cdf1a.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/vfx/Enemy/chariot_projectile/tile071.png" +dest_files=["res://.godot/imported/tile071.png-b4460eaf9f3a4d9a573f2c8c674cdf1a.s3tc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=2 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +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/Enemy/chariot_projectile/tile072.png b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile072.png new file mode 100644 index 000000000..ba2db1133 Binary files /dev/null and b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile072.png differ diff --git a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile072.png.import b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile072.png.import new file mode 100644 index 000000000..5c54d9ce8 --- /dev/null +++ b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile072.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://jen2dfhpvpdv" +path.s3tc="res://.godot/imported/tile072.png-ef753261ab5de123733e16707163e82e.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/vfx/Enemy/chariot_projectile/tile072.png" +dest_files=["res://.godot/imported/tile072.png-ef753261ab5de123733e16707163e82e.s3tc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=2 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +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/Enemy/chariot_projectile/tile073.png b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile073.png new file mode 100644 index 000000000..577280cb6 Binary files /dev/null and b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile073.png differ diff --git a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile073.png.import b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile073.png.import new file mode 100644 index 000000000..a5ab6b310 --- /dev/null +++ b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile073.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://do3dym108b1fm" +path.s3tc="res://.godot/imported/tile073.png-4b09055212df7b864a90756bac3bc039.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/vfx/Enemy/chariot_projectile/tile073.png" +dest_files=["res://.godot/imported/tile073.png-4b09055212df7b864a90756bac3bc039.s3tc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=2 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +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/Enemy/chariot_projectile/tile074.png b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile074.png new file mode 100644 index 000000000..e15d3f458 Binary files /dev/null and b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile074.png differ diff --git a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile074.png.import b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile074.png.import new file mode 100644 index 000000000..07fa06749 --- /dev/null +++ b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile074.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://brf3tc47474vh" +path.s3tc="res://.godot/imported/tile074.png-e0e91ec329c59bc61582bd36224549f7.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/vfx/Enemy/chariot_projectile/tile074.png" +dest_files=["res://.godot/imported/tile074.png-e0e91ec329c59bc61582bd36224549f7.s3tc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=2 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +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/Enemy/chariot_projectile/tile075.png b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile075.png new file mode 100644 index 000000000..c152214e3 Binary files /dev/null and b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile075.png differ diff --git a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile075.png.import b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile075.png.import new file mode 100644 index 000000000..f24cefddc --- /dev/null +++ b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile075.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b4eb43ikt3c4i" +path.s3tc="res://.godot/imported/tile075.png-f5417d002215146a774287164efbe478.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/vfx/Enemy/chariot_projectile/tile075.png" +dest_files=["res://.godot/imported/tile075.png-f5417d002215146a774287164efbe478.s3tc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=2 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +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/Enemy/chariot_projectile/tile076.png b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile076.png new file mode 100644 index 000000000..4b2cd4078 Binary files /dev/null and b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile076.png differ diff --git a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile076.png.import b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile076.png.import new file mode 100644 index 000000000..e9e7d1910 --- /dev/null +++ b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile076.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://soyexl43ekol" +path.s3tc="res://.godot/imported/tile076.png-77fe9baf4cc33821e9c931ec55f53385.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/vfx/Enemy/chariot_projectile/tile076.png" +dest_files=["res://.godot/imported/tile076.png-77fe9baf4cc33821e9c931ec55f53385.s3tc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=2 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +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/Enemy/chariot_projectile/tile077.png b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile077.png new file mode 100644 index 000000000..d35869bfe Binary files /dev/null and b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile077.png differ diff --git a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile077.png.import b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile077.png.import new file mode 100644 index 000000000..8c4810136 --- /dev/null +++ b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile077.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dujrrv8d7874v" +path.s3tc="res://.godot/imported/tile077.png-c33c8d91c324d3f4bf78744bbe579226.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/vfx/Enemy/chariot_projectile/tile077.png" +dest_files=["res://.godot/imported/tile077.png-c33c8d91c324d3f4bf78744bbe579226.s3tc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=2 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +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/Enemy/chariot_projectile/tile078.png b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile078.png new file mode 100644 index 000000000..47515dcf1 Binary files /dev/null and b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile078.png differ diff --git a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile078.png.import b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile078.png.import new file mode 100644 index 000000000..8597ad0cc --- /dev/null +++ b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile078.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b6w85lejy2w8l" +path.s3tc="res://.godot/imported/tile078.png-7464622a71c1f9c5a64f9f622b21b64e.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/vfx/Enemy/chariot_projectile/tile078.png" +dest_files=["res://.godot/imported/tile078.png-7464622a71c1f9c5a64f9f622b21b64e.s3tc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=2 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +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/Enemy/chariot_projectile/tile079.png b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile079.png new file mode 100644 index 000000000..32066a0b2 Binary files /dev/null and b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile079.png differ diff --git a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile079.png.import b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile079.png.import new file mode 100644 index 000000000..3fc221321 --- /dev/null +++ b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile079.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bg6dakpo6jbr5" +path.s3tc="res://.godot/imported/tile079.png-9c062c90ca1be609406061e0effb9274.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/vfx/Enemy/chariot_projectile/tile079.png" +dest_files=["res://.godot/imported/tile079.png-9c062c90ca1be609406061e0effb9274.s3tc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=2 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +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/Enemy/chariot_projectile/tile080.png b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile080.png new file mode 100644 index 000000000..ed8aa9c4c Binary files /dev/null and b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile080.png differ diff --git a/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile080.png.import b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile080.png.import new file mode 100644 index 000000000..574ce06a1 --- /dev/null +++ b/Zennysoft.Game.Ma/src/vfx/Enemy/chariot_projectile/tile080.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://u6r11foqif60" +path.s3tc="res://.godot/imported/tile080.png-cd4d703cb42bcd8ee1b16da4b16df9da.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/vfx/Enemy/chariot_projectile/tile080.png" +dest_files=["res://.godot/imported/tile080.png-cd4d703cb42bcd8ee1b16da4b16df9da.s3tc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=2 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +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