diff --git a/src/boss/state/states/BossLogic.State.Activated.cs.uid b/src/boss/state/states/BossLogic.State.Activated.cs.uid new file mode 100644 index 00000000..7864eb51 --- /dev/null +++ b/src/boss/state/states/BossLogic.State.Activated.cs.uid @@ -0,0 +1 @@ +uid://dk60nmw42pm82 diff --git a/src/boss/state/states/BossLogic.State.Attacking.cs.uid b/src/boss/state/states/BossLogic.State.Attacking.cs.uid new file mode 100644 index 00000000..f4009f3c --- /dev/null +++ b/src/boss/state/states/BossLogic.State.Attacking.cs.uid @@ -0,0 +1 @@ +uid://crsw8t5nr4ots diff --git a/src/boss/state/states/BossLogic.State.FollowPlayer.cs.uid b/src/boss/state/states/BossLogic.State.FollowPlayer.cs.uid new file mode 100644 index 00000000..b38fc2e1 --- /dev/null +++ b/src/boss/state/states/BossLogic.State.FollowPlayer.cs.uid @@ -0,0 +1 @@ +uid://0uou7c2gl6jr diff --git a/src/boss/state/states/BossLogic.State.Unactivated.cs.uid b/src/boss/state/states/BossLogic.State.Unactivated.cs.uid new file mode 100644 index 00000000..3f2f0bf8 --- /dev/null +++ b/src/boss/state/states/BossLogic.State.Unactivated.cs.uid @@ -0,0 +1 @@ +uid://hns6fpqiyru2 diff --git a/src/enemy/Enemy.cs b/src/enemy/Enemy.cs index 4e475863..6ebab6d0 100644 --- a/src/enemy/Enemy.cs +++ b/src/enemy/Enemy.cs @@ -30,6 +30,8 @@ public partial class Enemy : RigidBody3D, IEnemy, IProvide #endregion #region Node Dependencies + [Node] private CollisionShape3D CollisionShape { get; set; } = default!; + [Node] private NavigationAgent3D NavAgent { get; set; } = default!; [Node] private Area3D LineOfSight { get; set; } = default!; @@ -109,6 +111,7 @@ public partial class Enemy : RigidBody3D, IEnemy, IProvide public void Die() { _enemyLogic.Input(new EnemyLogic.Input.EnemyDefeated()); + CollisionShape.SetDeferred("disabled", true); EnemyModelView.PlayDeathAnimation(); var tweener = GetTree().CreateTween(); tweener.TweenInterval(1.0f); diff --git a/src/enemy/enemy_types/1. sproingy/Sproingy.cs b/src/enemy/enemy_types/1. sproingy/Sproingy.cs index e9ac421c..5a55a9be 100644 --- a/src/enemy/enemy_types/1. sproingy/Sproingy.cs +++ b/src/enemy/enemy_types/1. sproingy/Sproingy.cs @@ -24,11 +24,11 @@ public partial class Sproingy : Enemy, IHasPrimaryAttack { _enemyLogic.Input(new EnemyLogic.Input.PhysicsTick(delta)); - if (_enemyLogic.Value is EnemyLogic.State.FollowPlayer && GlobalPosition.DistanceTo(Player.CurrentPosition) < 2.5f) + if (_enemyLogic.Value is EnemyLogic.State.FollowPlayer && GlobalPosition.DistanceTo(Player.CurrentPosition) < 5f) _enemyLogic.Input(new EnemyLogic.Input.StartAttacking()); if (_enemyLogic.Value is EnemyLogic.State.FollowPlayer && GlobalPosition.DistanceTo(Player.CurrentPosition) > 45f) _enemyLogic.Input(new EnemyLogic.Input.LostPlayer()); - if (_enemyLogic.Value is EnemyLogic.State.Attacking && GlobalPosition.DistanceTo(Player.CurrentPosition) > 2.5f) + if (_enemyLogic.Value is EnemyLogic.State.Attacking && GlobalPosition.DistanceTo(Player.CurrentPosition) > 5f) _enemyLogic.Input(new EnemyLogic.Input.Alerted()); } diff --git a/src/enemy/enemy_types/1. sproingy/Sproingy.cs.uid b/src/enemy/enemy_types/1. sproingy/Sproingy.cs.uid index 241ed3c3..94a693eb 100644 --- a/src/enemy/enemy_types/1. sproingy/Sproingy.cs.uid +++ b/src/enemy/enemy_types/1. sproingy/Sproingy.cs.uid @@ -1 +1 @@ -uid://jjulhqd5g3be +uid://jjulhqd5g3bd diff --git a/src/enemy/enemy_types/1. sproingy/Sproingy.tscn b/src/enemy/enemy_types/1. sproingy/Sproingy.tscn index ae6cd3d2..87bb44bf 100644 --- a/src/enemy/enemy_types/1. sproingy/Sproingy.tscn +++ b/src/enemy/enemy_types/1. sproingy/Sproingy.tscn @@ -1,17 +1,17 @@ [gd_scene load_steps=8 format=3 uid="uid://bksq62muhk3h5"] -[ext_resource type="Script" uid="uid://jjulhqd5g3be" path="res://src/enemy/enemy_types/13. gold sproingy/GoldSproingy.cs" id="1_ldo22"] -[ext_resource type="Script" uid="uid://dnkmr0eq1sij0" path="res://src/enemy/EnemyStatResource.cs" id="2_8vcnq"] +[ext_resource type="Script" uid="uid://jjulhqd5g3bd" path="res://src/enemy/enemy_types/1. sproingy/Sproingy.cs" id="1_xsluo"] +[ext_resource type="Script" uid="uid://dnkmr0eq1sij0" path="res://src/enemy/EnemyStatResource.cs" id="2_oln85"] [ext_resource type="PackedScene" uid="uid://bli0t0d6ommvi" path="res://src/enemy/enemy_types/1. sproingy/SproingyModelView.tscn" id="4_o3b7p"] -[sub_resource type="Resource" id="Resource_o3b7p"] -script = ExtResource("2_8vcnq") -CurrentHP = 50.0 -MaximumHP = 50.0 -CurrentAttack = 20 -CurrentDefense = 5 -MaxAttack = 20 -MaxDefense = 5 +[sub_resource type="Resource" id="Resource_oln85"] +script = ExtResource("2_oln85") +CurrentHP = 30.0 +MaximumHP = 30.0 +CurrentAttack = 12 +CurrentDefense = 7 +MaxAttack = 12 +MaxDefense = 7 ExpFromDefeat = 15 Luck = 0.05 TelluricResistance = 0.0 @@ -20,10 +20,10 @@ HydricResistance = 0.0 IgneousResistance = 0.0 FerrumResistance = 0.0 DropsSoulGemChance = 0.75 -metadata/_custom_type_script = ExtResource("2_8vcnq") +metadata/_custom_type_script = ExtResource("2_oln85") [sub_resource type="CapsuleShape3D" id="CapsuleShape3D_cwfph"] -radius = 0.226425 +radius = 0.62699 height = 2.02807 [sub_resource type="CylinderShape3D" id="CylinderShape3D_jbgmx"] @@ -42,10 +42,11 @@ axis_lock_linear_y = true axis_lock_angular_x = true contact_monitor = true max_contacts_reported = 1 -script = ExtResource("1_ldo22") -_enemyStatResource = SubResource("Resource_o3b7p") +script = ExtResource("1_xsluo") +_enemyStatResource = SubResource("Resource_oln85") -[node name="CollisionShape3D" type="CollisionShape3D" parent="."] +[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, 0, 0) shape = SubResource("CapsuleShape3D_cwfph") diff --git a/src/enemy/enemy_types/1. sproingy/SproingyModelView.tscn b/src/enemy/enemy_types/1. sproingy/SproingyModelView.tscn index 29e7df95..b74df850 100644 --- a/src/enemy/enemy_types/1. sproingy/SproingyModelView.tscn +++ b/src/enemy/enemy_types/1. sproingy/SproingyModelView.tscn @@ -60,7 +60,7 @@ [ext_resource type="Script" uid="uid://6edayafleq8y" path="res://src/hitbox/Hitbox.cs" id="57_lae8t"] [sub_resource type="ViewportTexture" id="ViewportTexture_h1kaf"] -viewport_path = NodePath("Sprite3D/SubViewport") +viewport_path = NodePath("Sprite3D/SubViewportContainer/SubViewport") [sub_resource type="SpriteFrames" id="SpriteFrames_6drt6"] resource_local_to_scene = true @@ -259,7 +259,7 @@ length = 0.001 tracks/0/type = "value" tracks/0/imported = false tracks/0/enabled = true -tracks/0/path = NodePath("Sprite3D/SubViewport/AnimatedSprite:animation") +tracks/0/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:animation") tracks/0/interp = 1 tracks/0/loop_wrap = true tracks/0/keys = { @@ -271,7 +271,7 @@ tracks/0/keys = { tracks/1/type = "value" tracks/1/imported = false tracks/1/enabled = true -tracks/1/path = NodePath("Sprite3D/SubViewport/AnimatedSprite:frame") +tracks/1/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:frame") tracks/1/interp = 1 tracks/1/loop_wrap = true tracks/1/keys = { @@ -301,7 +301,7 @@ step = 0.0833333 tracks/0/type = "value" tracks/0/imported = false tracks/0/enabled = true -tracks/0/path = NodePath("Sprite3D/SubViewport/AnimatedSprite:animation") +tracks/0/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:animation") tracks/0/interp = 1 tracks/0/loop_wrap = true tracks/0/keys = { @@ -313,7 +313,7 @@ tracks/0/keys = { tracks/1/type = "value" tracks/1/imported = false tracks/1/enabled = true -tracks/1/path = NodePath("Sprite3D/SubViewport/AnimatedSprite:frame") +tracks/1/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:frame") tracks/1/interp = 1 tracks/1/loop_wrap = true tracks/1/keys = { @@ -331,7 +331,7 @@ step = 0.0833333 tracks/0/type = "value" tracks/0/imported = false tracks/0/enabled = true -tracks/0/path = NodePath("Sprite3D/SubViewport/AnimatedSprite:animation") +tracks/0/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:animation") tracks/0/interp = 1 tracks/0/loop_wrap = true tracks/0/keys = { @@ -343,7 +343,7 @@ tracks/0/keys = { tracks/1/type = "value" tracks/1/imported = false tracks/1/enabled = true -tracks/1/path = NodePath("Sprite3D/SubViewport/AnimatedSprite:frame") +tracks/1/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:frame") tracks/1/interp = 1 tracks/1/loop_wrap = true tracks/1/keys = { @@ -361,7 +361,7 @@ step = 0.0833333 tracks/0/type = "value" tracks/0/imported = false tracks/0/enabled = true -tracks/0/path = NodePath("Sprite3D/SubViewport/AnimatedSprite:animation") +tracks/0/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:animation") tracks/0/interp = 1 tracks/0/loop_wrap = true tracks/0/keys = { @@ -373,7 +373,7 @@ tracks/0/keys = { tracks/1/type = "value" tracks/1/imported = false tracks/1/enabled = true -tracks/1/path = NodePath("Sprite3D/SubViewport/AnimatedSprite:frame") +tracks/1/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:frame") tracks/1/interp = 1 tracks/1/loop_wrap = true tracks/1/keys = { @@ -391,7 +391,7 @@ step = 0.0833333 tracks/0/type = "value" tracks/0/imported = false tracks/0/enabled = true -tracks/0/path = NodePath("Sprite3D/SubViewport/AnimatedSprite:animation") +tracks/0/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:animation") tracks/0/interp = 1 tracks/0/loop_wrap = true tracks/0/keys = { @@ -403,7 +403,7 @@ tracks/0/keys = { tracks/1/type = "value" tracks/1/imported = false tracks/1/enabled = true -tracks/1/path = NodePath("Sprite3D/SubViewport/AnimatedSprite:frame") +tracks/1/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:frame") tracks/1/interp = 1 tracks/1/loop_wrap = true tracks/1/keys = { @@ -421,7 +421,7 @@ step = 0.0833333 tracks/0/type = "value" tracks/0/imported = false tracks/0/enabled = true -tracks/0/path = NodePath("Sprite3D/SubViewport/AnimatedSprite:frame") +tracks/0/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:frame") tracks/0/interp = 1 tracks/0/loop_wrap = true tracks/0/keys = { @@ -433,7 +433,7 @@ tracks/0/keys = { tracks/1/type = "value" tracks/1/imported = false tracks/1/enabled = true -tracks/1/path = NodePath("Sprite3D/SubViewport/AnimatedSprite:animation") +tracks/1/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:animation") tracks/1/interp = 1 tracks/1/loop_wrap = true tracks/1/keys = { @@ -451,7 +451,7 @@ step = 0.0833333 tracks/0/type = "value" tracks/0/imported = false tracks/0/enabled = true -tracks/0/path = NodePath("Sprite3D/SubViewport/AnimatedSprite:frame") +tracks/0/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:frame") tracks/0/interp = 1 tracks/0/loop_wrap = true tracks/0/keys = { @@ -463,7 +463,7 @@ tracks/0/keys = { tracks/1/type = "value" tracks/1/imported = false tracks/1/enabled = true -tracks/1/path = NodePath("Sprite3D/SubViewport/AnimatedSprite:animation") +tracks/1/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:animation") tracks/1/interp = 1 tracks/1/loop_wrap = true tracks/1/keys = { @@ -480,7 +480,7 @@ step = 0.0833333 tracks/0/type = "value" tracks/0/imported = false tracks/0/enabled = true -tracks/0/path = NodePath("Sprite3D/SubViewport/AnimatedSprite:animation") +tracks/0/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:animation") tracks/0/interp = 1 tracks/0/loop_wrap = true tracks/0/keys = { @@ -492,7 +492,7 @@ tracks/0/keys = { tracks/1/type = "value" tracks/1/imported = false tracks/1/enabled = true -tracks/1/path = NodePath("Sprite3D/SubViewport/AnimatedSprite:frame") +tracks/1/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:frame") tracks/1/interp = 1 tracks/1/loop_wrap = true tracks/1/keys = { @@ -696,14 +696,19 @@ texture_filter = 0 render_priority = 100 texture = SubResource("ViewportTexture_h1kaf") -[node name="SubViewport" type="SubViewport" parent="Sprite3D"] +[node name="SubViewportContainer" type="SubViewportContainer" parent="Sprite3D"] +visibility_layer = 0 +offset_right = 40.0 +offset_bottom = 40.0 + +[node name="SubViewport" type="SubViewport" parent="Sprite3D/SubViewportContainer"] disable_3d = true transparent_bg = true handle_input_locally = false size = Vector2i(200, 200) render_target_update_mode = 4 -[node name="AnimatedSprite" type="AnimatedSprite2D" parent="Sprite3D/SubViewport"] +[node name="AnimatedSprite" type="AnimatedSprite2D" parent="Sprite3D/SubViewportContainer/SubViewport"] unique_name_in_owner = true texture_filter = 1 position = Vector2(100, 100) diff --git a/src/enemy/enemy_types/13. gold sproingy/GoldSproingy.tscn b/src/enemy/enemy_types/13. gold sproingy/GoldSproingy.tscn deleted file mode 100644 index 3103beec..00000000 --- a/src/enemy/enemy_types/13. gold sproingy/GoldSproingy.tscn +++ /dev/null @@ -1,92 +0,0 @@ -[gd_scene load_steps=8 format=3 uid="uid://bkj1kyqu7reul"] - -[ext_resource type="Script" uid="uid://jjulhqd5g3be" path="res://src/enemy/enemy_types/13. gold sproingy/GoldSproingy.cs" id="1_bh4x8"] -[ext_resource type="Script" uid="uid://dnkmr0eq1sij0" path="res://src/enemy/EnemyStatResource.cs" id="2_vuobh"] -[ext_resource type="PackedScene" uid="uid://cwlgxsk6iojrd" path="res://src/enemy/enemy_types/13. gold sproingy/GoldSproingyModelView.tscn" id="3_o1o4d"] - -[sub_resource type="Resource" id="Resource_o3b7p"] -script = ExtResource("2_vuobh") -CurrentHP = 50.0 -MaximumHP = 50.0 -CurrentAttack = 20 -CurrentDefense = 5 -MaxAttack = 20 -MaxDefense = 5 -ExpFromDefeat = 15 -Luck = 0.05 -TelluricResistance = 0.0 -AeolicResistance = 0.0 -HydricResistance = 0.0 -IgneousResistance = 0.0 -FerrumResistance = 0.0 -DropsSoulGemChance = 0.75 -metadata/_custom_type_script = ExtResource("2_vuobh") - -[sub_resource type="CapsuleShape3D" id="CapsuleShape3D_cwfph"] -radius = 0.226425 -height = 2.02807 - -[sub_resource type="CylinderShape3D" id="CylinderShape3D_jbgmx"] -height = 5.0 -radius = 1.0 - -[sub_resource type="SphereShape3D" id="SphereShape3D_8vcnq"] -radius = 1.20703 - -[node name="Gold Sproingy" type="RigidBody3D"] -process_mode = 1 -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, -1, 0) -collision_layer = 10 -collision_mask = 11 -axis_lock_linear_y = true -axis_lock_angular_x = true -contact_monitor = true -max_contacts_reported = 1 -script = ExtResource("1_bh4x8") -_enemyStatResource = SubResource("Resource_o3b7p") - -[node name="CollisionShape3D" type="CollisionShape3D" parent="."] -transform = Transform3D(-1, 0, -8.74228e-08, 0, 1, 0, 8.74228e-08, 0, -1, 0, 0, 0) -shape = SubResource("CapsuleShape3D_cwfph") - -[node name="NavAgent" type="NavigationAgent3D" parent="."] -unique_name_in_owner = true -path_max_distance = 3.01 -simplify_path = true -avoidance_enabled = true -radius = 2.0 -debug_path_custom_color = Color(1, 0, 0, 1) - -[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, 0, 0) -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) -shape = SubResource("CylinderShape3D_jbgmx") - -[node name="PatrolTimer" type="Timer" parent="."] -unique_name_in_owner = true -wait_time = 10.0 -autostart = true - -[node name="AttackTimer" type="Timer" parent="."] -unique_name_in_owner = true -wait_time = 0.8 -autostart = true - -[node name="Raycast" type="RayCast3D" parent="."] -unique_name_in_owner = true -target_position = Vector3(0, 0, -5) -collision_mask = 3 - -[node name="EnemyModelView" parent="." instance=ExtResource("3_o1o4d")] - -[node name="Collision" type="Area3D" parent="."] -collision_layer = 2048 -collision_mask = 0 - -[node name="CollisionShape3D" type="CollisionShape3D" parent="Collision"] -shape = SubResource("SphereShape3D_8vcnq") diff --git a/src/enemy/enemy_types/13. gold sproingy/GoldSproingyModelView.tscn b/src/enemy/enemy_types/13. gold sproingy/GoldSproingyModelView.tscn index b689b4f7..3736a218 100644 --- a/src/enemy/enemy_types/13. gold sproingy/GoldSproingyModelView.tscn +++ b/src/enemy/enemy_types/13. gold sproingy/GoldSproingyModelView.tscn @@ -50,7 +50,7 @@ [ext_resource type="Script" uid="uid://6edayafleq8y" path="res://src/hitbox/Hitbox.cs" id="58_471ij"] [sub_resource type="ViewportTexture" id="ViewportTexture_h1kaf"] -viewport_path = NodePath("Sprite3D/SubViewport") +viewport_path = NodePath("Sprite3D/SubViewportContainer/SubViewport") [sub_resource type="SpriteFrames" id="SpriteFrames_srd2v"] animations = [{ @@ -213,7 +213,7 @@ length = 0.001 tracks/0/type = "value" tracks/0/imported = false tracks/0/enabled = true -tracks/0/path = NodePath("Sprite3D/SubViewport/AnimatedSprite:animation") +tracks/0/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:animation") tracks/0/interp = 1 tracks/0/loop_wrap = true tracks/0/keys = { @@ -225,7 +225,7 @@ tracks/0/keys = { tracks/1/type = "value" tracks/1/imported = false tracks/1/enabled = true -tracks/1/path = NodePath("Sprite3D/SubViewport/AnimatedSprite:frame") +tracks/1/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:frame") tracks/1/interp = 1 tracks/1/loop_wrap = true tracks/1/keys = { @@ -242,7 +242,7 @@ step = 0.0833333 tracks/0/type = "value" tracks/0/imported = false tracks/0/enabled = true -tracks/0/path = NodePath("Sprite3D/SubViewport/AnimatedSprite:animation") +tracks/0/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:animation") tracks/0/interp = 1 tracks/0/loop_wrap = true tracks/0/keys = { @@ -254,7 +254,7 @@ tracks/0/keys = { tracks/1/type = "value" tracks/1/imported = false tracks/1/enabled = true -tracks/1/path = NodePath("Sprite3D/SubViewport/AnimatedSprite:frame") +tracks/1/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:frame") tracks/1/interp = 1 tracks/1/loop_wrap = true tracks/1/keys = { @@ -271,7 +271,7 @@ step = 0.0833333 tracks/0/type = "value" tracks/0/imported = false tracks/0/enabled = true -tracks/0/path = NodePath("Sprite3D/SubViewport/AnimatedSprite:animation") +tracks/0/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:animation") tracks/0/interp = 1 tracks/0/loop_wrap = true tracks/0/keys = { @@ -283,7 +283,7 @@ tracks/0/keys = { tracks/1/type = "value" tracks/1/imported = false tracks/1/enabled = true -tracks/1/path = NodePath("Sprite3D/SubViewport/AnimatedSprite:frame") +tracks/1/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:frame") tracks/1/interp = 1 tracks/1/loop_wrap = true tracks/1/keys = { @@ -300,7 +300,7 @@ step = 0.0833333 tracks/0/type = "value" tracks/0/imported = false tracks/0/enabled = true -tracks/0/path = NodePath("Sprite3D/SubViewport/AnimatedSprite:animation") +tracks/0/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:animation") tracks/0/interp = 1 tracks/0/loop_wrap = true tracks/0/keys = { @@ -312,7 +312,7 @@ tracks/0/keys = { tracks/1/type = "value" tracks/1/imported = false tracks/1/enabled = true -tracks/1/path = NodePath("Sprite3D/SubViewport/AnimatedSprite:frame") +tracks/1/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:frame") tracks/1/interp = 1 tracks/1/loop_wrap = true tracks/1/keys = { @@ -499,14 +499,19 @@ texture_filter = 0 render_priority = 100 texture = SubResource("ViewportTexture_h1kaf") -[node name="SubViewport" type="SubViewport" parent="Sprite3D"] +[node name="SubViewportContainer" type="SubViewportContainer" parent="Sprite3D"] +visibility_layer = 0 +offset_right = 40.0 +offset_bottom = 40.0 + +[node name="SubViewport" type="SubViewport" parent="Sprite3D/SubViewportContainer"] disable_3d = true transparent_bg = true handle_input_locally = false size = Vector2i(200, 200) render_target_update_mode = 4 -[node name="AnimatedSprite" type="AnimatedSprite2D" parent="Sprite3D/SubViewport"] +[node name="AnimatedSprite" type="AnimatedSprite2D" parent="Sprite3D/SubViewportContainer/SubViewport"] unique_name_in_owner = true position = Vector2(100, 100) sprite_frames = SubResource("SpriteFrames_srd2v") diff --git a/src/enemy/enemy_types/2. michael/Michael.tscn b/src/enemy/enemy_types/2. michael/Michael.tscn index 370986a8..6f7fccf9 100644 --- a/src/enemy/enemy_types/2. michael/Michael.tscn +++ b/src/enemy/enemy_types/2. michael/Michael.tscn @@ -27,7 +27,7 @@ height = 5.0 radius = 1.0 [sub_resource type="CapsuleShape3D" id="CapsuleShape3D_0h5s2"] -radius = 0.193181 +radius = 0.404629 [sub_resource type="SphereShape3D" id="SphereShape3D_wrps7"] radius = 1.0 @@ -68,7 +68,8 @@ transform = Transform3D(-1, 0, -8.74228e-08, 0, 1, 0, 8.74228e-08, 0, -1, 0, 0, target_position = Vector3(0, 0, -5) collision_mask = 3 -[node name="CollisionShape3D" type="CollisionShape3D" parent="."] +[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.0824751, 0.212459, 0) shape = SubResource("CapsuleShape3D_0h5s2") diff --git a/src/enemy/enemy_types/2. michael/MichaelModelView.tscn b/src/enemy/enemy_types/2. michael/MichaelModelView.tscn index ce4d3c90..05d55920 100644 --- a/src/enemy/enemy_types/2. michael/MichaelModelView.tscn +++ b/src/enemy/enemy_types/2. michael/MichaelModelView.tscn @@ -74,7 +74,7 @@ [ext_resource type="Script" uid="uid://6edayafleq8y" path="res://src/hitbox/Hitbox.cs" id="71_ul4dn"] [sub_resource type="ViewportTexture" id="ViewportTexture_v7t0v"] -viewport_path = NodePath("Sprite/SubViewport") +viewport_path = NodePath("Sprite/SubViewportContainer/SubViewport") [sub_resource type="ShaderMaterial" id="ShaderMaterial_wey7h"] @@ -323,7 +323,7 @@ tracks/0/keys = { tracks/1/type = "value" tracks/1/imported = false tracks/1/enabled = true -tracks/1/path = NodePath("Sprite/SubViewport/AnimatedSprite:frame") +tracks/1/path = NodePath("Sprite/SubViewportContainer/SubViewport/AnimatedSprite:frame") tracks/1/interp = 1 tracks/1/loop_wrap = true tracks/1/keys = { @@ -335,7 +335,7 @@ tracks/1/keys = { tracks/2/type = "value" tracks/2/imported = false tracks/2/enabled = true -tracks/2/path = NodePath("Sprite/SubViewport/AnimatedSprite:animation") +tracks/2/path = NodePath("Sprite/SubViewportContainer/SubViewport/AnimatedSprite:animation") tracks/2/interp = 1 tracks/2/loop_wrap = true tracks/2/keys = { @@ -353,7 +353,7 @@ step = 0.0833333 tracks/0/type = "value" tracks/0/imported = false tracks/0/enabled = true -tracks/0/path = NodePath("Sprite/SubViewport/AnimatedSprite:frame") +tracks/0/path = NodePath("Sprite/SubViewportContainer/SubViewport/AnimatedSprite:frame") tracks/0/interp = 1 tracks/0/loop_wrap = true tracks/0/keys = { @@ -365,7 +365,7 @@ tracks/0/keys = { tracks/1/type = "value" tracks/1/imported = false tracks/1/enabled = true -tracks/1/path = NodePath("Sprite/SubViewport/AnimatedSprite:animation") +tracks/1/path = NodePath("Sprite/SubViewportContainer/SubViewport/AnimatedSprite:animation") tracks/1/interp = 1 tracks/1/loop_wrap = true tracks/1/keys = { @@ -383,7 +383,7 @@ step = 0.0833333 tracks/0/type = "value" tracks/0/imported = false tracks/0/enabled = true -tracks/0/path = NodePath("Sprite/SubViewport/AnimatedSprite:frame") +tracks/0/path = NodePath("Sprite/SubViewportContainer/SubViewport/AnimatedSprite:frame") tracks/0/interp = 1 tracks/0/loop_wrap = true tracks/0/keys = { @@ -395,7 +395,7 @@ tracks/0/keys = { tracks/1/type = "value" tracks/1/imported = false tracks/1/enabled = true -tracks/1/path = NodePath("Sprite/SubViewport/AnimatedSprite:animation") +tracks/1/path = NodePath("Sprite/SubViewportContainer/SubViewport/AnimatedSprite:animation") tracks/1/interp = 1 tracks/1/loop_wrap = true tracks/1/keys = { @@ -413,7 +413,7 @@ step = 0.0833333 tracks/0/type = "value" tracks/0/imported = false tracks/0/enabled = true -tracks/0/path = NodePath("Sprite/SubViewport/AnimatedSprite:frame") +tracks/0/path = NodePath("Sprite/SubViewportContainer/SubViewport/AnimatedSprite:frame") tracks/0/interp = 1 tracks/0/loop_wrap = true tracks/0/keys = { @@ -425,7 +425,7 @@ tracks/0/keys = { tracks/1/type = "value" tracks/1/imported = false tracks/1/enabled = true -tracks/1/path = NodePath("Sprite/SubViewport/AnimatedSprite:animation") +tracks/1/path = NodePath("Sprite/SubViewportContainer/SubViewport/AnimatedSprite:animation") tracks/1/interp = 1 tracks/1/loop_wrap = true tracks/1/keys = { @@ -443,7 +443,7 @@ step = 0.0833333 tracks/0/type = "value" tracks/0/imported = false tracks/0/enabled = true -tracks/0/path = NodePath("Sprite/SubViewport/AnimatedSprite:frame") +tracks/0/path = NodePath("Sprite/SubViewportContainer/SubViewport/AnimatedSprite:frame") tracks/0/interp = 1 tracks/0/loop_wrap = true tracks/0/keys = { @@ -455,7 +455,7 @@ tracks/0/keys = { tracks/1/type = "value" tracks/1/imported = false tracks/1/enabled = true -tracks/1/path = NodePath("Sprite/SubViewport/AnimatedSprite:animation") +tracks/1/path = NodePath("Sprite/SubViewportContainer/SubViewport/AnimatedSprite:animation") tracks/1/interp = 1 tracks/1/loop_wrap = true tracks/1/keys = { @@ -473,7 +473,7 @@ step = 0.0833333 tracks/0/type = "value" tracks/0/imported = false tracks/0/enabled = true -tracks/0/path = NodePath("Sprite/SubViewport/AnimatedSprite:frame") +tracks/0/path = NodePath("Sprite/SubViewportContainer/SubViewport/AnimatedSprite:frame") tracks/0/interp = 1 tracks/0/loop_wrap = true tracks/0/keys = { @@ -485,7 +485,7 @@ tracks/0/keys = { tracks/1/type = "value" tracks/1/imported = false tracks/1/enabled = true -tracks/1/path = NodePath("Sprite/SubViewport/AnimatedSprite:animation") +tracks/1/path = NodePath("Sprite/SubViewportContainer/SubViewport/AnimatedSprite:animation") tracks/1/interp = 1 tracks/1/loop_wrap = true tracks/1/keys = { @@ -503,7 +503,7 @@ step = 0.0833333 tracks/0/type = "value" tracks/0/imported = false tracks/0/enabled = true -tracks/0/path = NodePath("Sprite/SubViewport/AnimatedSprite:frame") +tracks/0/path = NodePath("Sprite/SubViewportContainer/SubViewport/AnimatedSprite:frame") tracks/0/interp = 1 tracks/0/loop_wrap = true tracks/0/keys = { @@ -515,7 +515,7 @@ tracks/0/keys = { tracks/1/type = "value" tracks/1/imported = false tracks/1/enabled = true -tracks/1/path = NodePath("Sprite/SubViewport/AnimatedSprite:animation") +tracks/1/path = NodePath("Sprite/SubViewportContainer/SubViewport/AnimatedSprite:animation") tracks/1/interp = 1 tracks/1/loop_wrap = true tracks/1/keys = { @@ -544,7 +544,7 @@ tracks/0/keys = { tracks/1/type = "value" tracks/1/imported = false tracks/1/enabled = true -tracks/1/path = NodePath("Sprite/SubViewport/AnimatedSprite:animation") +tracks/1/path = NodePath("Sprite/SubViewportContainer/SubViewport/AnimatedSprite:animation") tracks/1/interp = 1 tracks/1/loop_wrap = true tracks/1/keys = { @@ -556,7 +556,7 @@ tracks/1/keys = { tracks/2/type = "value" tracks/2/imported = false tracks/2/enabled = true -tracks/2/path = NodePath("Sprite/SubViewport/AnimatedSprite:frame") +tracks/2/path = NodePath("Sprite/SubViewportContainer/SubViewport/AnimatedSprite:frame") tracks/2/interp = 1 tracks/2/loop_wrap = true tracks/2/keys = { @@ -732,13 +732,19 @@ texture_filter = 0 render_priority = 100 texture = SubResource("ViewportTexture_v7t0v") -[node name="SubViewport" type="SubViewport" parent="Sprite"] +[node name="SubViewportContainer" type="SubViewportContainer" parent="Sprite"] +visibility_layer = 0 +offset_right = 40.0 +offset_bottom = 40.0 + +[node name="SubViewport" type="SubViewport" parent="Sprite/SubViewportContainer"] disable_3d = true transparent_bg = true handle_input_locally = false size = Vector2i(200, 200) +render_target_update_mode = 4 -[node name="AnimatedSprite" type="AnimatedSprite2D" parent="Sprite/SubViewport"] +[node name="AnimatedSprite" type="AnimatedSprite2D" parent="Sprite/SubViewportContainer/SubViewport"] unique_name_in_owner = true texture_filter = 1 texture_repeat = 1 diff --git a/src/enemy/enemy_types/3. filth_eater/FilthEater.tscn b/src/enemy/enemy_types/3. filth_eater/FilthEater.tscn index 46decc17..a6d65d5e 100644 --- a/src/enemy/enemy_types/3. filth_eater/FilthEater.tscn +++ b/src/enemy/enemy_types/3. filth_eater/FilthEater.tscn @@ -53,7 +53,8 @@ SecondaryAttackElementalType = 2 SecondaryAttackElementalDamageBonus = 1.15 _enemyStatResource = SubResource("Resource_0y048") -[node name="CollisionShape3D" type="CollisionShape3D" parent="."] +[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, 0, 0) shape = SubResource("CapsuleShape3D_cwfph") diff --git a/src/enemy/enemy_types/3. filth_eater/FilthEaterModelView.tscn b/src/enemy/enemy_types/3. filth_eater/FilthEaterModelView.tscn index 0fb5131f..990f0ad8 100644 --- a/src/enemy/enemy_types/3. filth_eater/FilthEaterModelView.tscn +++ b/src/enemy/enemy_types/3. filth_eater/FilthEaterModelView.tscn @@ -90,7 +90,7 @@ [ext_resource type="Script" uid="uid://6edayafleq8y" path="res://src/hitbox/Hitbox.cs" id="87_7tggm"] [sub_resource type="ViewportTexture" id="ViewportTexture_7tggm"] -viewport_path = NodePath("Sprite3D/SubViewport") +viewport_path = NodePath("Sprite3D/SubViewportContainer/SubViewport") [sub_resource type="SpriteFrames" id="SpriteFrames_673a4"] animations = [{ @@ -383,7 +383,7 @@ length = 0.001 tracks/0/type = "value" tracks/0/imported = false tracks/0/enabled = true -tracks/0/path = NodePath("Sprite3D/SubViewport/AnimatedSprite:frame") +tracks/0/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:frame") tracks/0/interp = 1 tracks/0/loop_wrap = true tracks/0/keys = { @@ -395,7 +395,7 @@ tracks/0/keys = { tracks/1/type = "value" tracks/1/imported = false tracks/1/enabled = true -tracks/1/path = NodePath("Sprite3D/SubViewport/AnimatedSprite:animation") +tracks/1/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:animation") tracks/1/interp = 1 tracks/1/loop_wrap = true tracks/1/keys = { @@ -422,7 +422,7 @@ resource_name = "idle_back" tracks/0/type = "value" tracks/0/imported = false tracks/0/enabled = true -tracks/0/path = NodePath("Sprite3D/SubViewport/AnimatedSprite:animation") +tracks/0/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:animation") tracks/0/interp = 1 tracks/0/loop_wrap = true tracks/0/keys = { @@ -434,7 +434,7 @@ tracks/0/keys = { tracks/1/type = "value" tracks/1/imported = false tracks/1/enabled = true -tracks/1/path = NodePath("Sprite3D/SubViewport/AnimatedSprite:frame") +tracks/1/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:frame") tracks/1/interp = 1 tracks/1/loop_wrap = true tracks/1/keys = { @@ -452,7 +452,7 @@ step = 0.0833333 tracks/0/type = "value" tracks/0/imported = false tracks/0/enabled = true -tracks/0/path = NodePath("Sprite3D/SubViewport/AnimatedSprite:frame") +tracks/0/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:frame") tracks/0/interp = 1 tracks/0/loop_wrap = true tracks/0/keys = { @@ -464,7 +464,7 @@ tracks/0/keys = { tracks/1/type = "value" tracks/1/imported = false tracks/1/enabled = true -tracks/1/path = NodePath("Sprite3D/SubViewport/AnimatedSprite:animation") +tracks/1/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:animation") tracks/1/interp = 1 tracks/1/loop_wrap = true tracks/1/keys = { @@ -480,7 +480,7 @@ loop_mode = 1 tracks/0/type = "value" tracks/0/imported = false tracks/0/enabled = true -tracks/0/path = NodePath("Sprite3D/SubViewport/AnimatedSprite:frame") +tracks/0/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:frame") tracks/0/interp = 1 tracks/0/loop_wrap = true tracks/0/keys = { @@ -492,7 +492,7 @@ tracks/0/keys = { tracks/1/type = "value" tracks/1/imported = false tracks/1/enabled = true -tracks/1/path = NodePath("Sprite3D/SubViewport/AnimatedSprite:animation") +tracks/1/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:animation") tracks/1/interp = 1 tracks/1/loop_wrap = true tracks/1/keys = { @@ -510,7 +510,7 @@ step = 0.0833333 tracks/0/type = "value" tracks/0/imported = false tracks/0/enabled = true -tracks/0/path = NodePath("Sprite3D/SubViewport/AnimatedSprite:frame") +tracks/0/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:frame") tracks/0/interp = 1 tracks/0/loop_wrap = true tracks/0/keys = { @@ -522,7 +522,7 @@ tracks/0/keys = { tracks/1/type = "value" tracks/1/imported = false tracks/1/enabled = true -tracks/1/path = NodePath("Sprite3D/SubViewport/AnimatedSprite:animation") +tracks/1/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:animation") tracks/1/interp = 1 tracks/1/loop_wrap = true tracks/1/keys = { @@ -537,7 +537,7 @@ resource_name = "idle_left" tracks/0/type = "value" tracks/0/imported = false tracks/0/enabled = true -tracks/0/path = NodePath("Sprite3D/SubViewport/AnimatedSprite:animation") +tracks/0/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:animation") tracks/0/interp = 1 tracks/0/loop_wrap = true tracks/0/keys = { @@ -549,7 +549,7 @@ tracks/0/keys = { tracks/1/type = "value" tracks/1/imported = false tracks/1/enabled = true -tracks/1/path = NodePath("Sprite3D/SubViewport/AnimatedSprite:frame") +tracks/1/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:frame") tracks/1/interp = 1 tracks/1/loop_wrap = true tracks/1/keys = { @@ -567,7 +567,7 @@ step = 0.0833333 tracks/0/type = "value" tracks/0/imported = false tracks/0/enabled = true -tracks/0/path = NodePath("Sprite3D/SubViewport/AnimatedSprite:animation") +tracks/0/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:animation") tracks/0/interp = 1 tracks/0/loop_wrap = true tracks/0/keys = { @@ -579,7 +579,7 @@ tracks/0/keys = { tracks/1/type = "value" tracks/1/imported = false tracks/1/enabled = true -tracks/1/path = NodePath("Sprite3D/SubViewport/AnimatedSprite:frame") +tracks/1/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:frame") tracks/1/interp = 1 tracks/1/loop_wrap = true tracks/1/keys = { @@ -596,7 +596,7 @@ step = 0.0833333 tracks/0/type = "value" tracks/0/imported = false tracks/0/enabled = true -tracks/0/path = NodePath("Sprite3D/SubViewport/AnimatedSprite:animation") +tracks/0/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:animation") tracks/0/interp = 1 tracks/0/loop_wrap = true tracks/0/keys = { @@ -608,7 +608,7 @@ tracks/0/keys = { tracks/1/type = "value" tracks/1/imported = false tracks/1/enabled = true -tracks/1/path = NodePath("Sprite3D/SubViewport/AnimatedSprite:frame") +tracks/1/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:frame") tracks/1/interp = 1 tracks/1/loop_wrap = true tracks/1/keys = { @@ -637,7 +637,7 @@ step = 0.0833333 tracks/0/type = "value" tracks/0/imported = false tracks/0/enabled = true -tracks/0/path = NodePath("Sprite3D/SubViewport/AnimatedSprite:animation") +tracks/0/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:animation") tracks/0/interp = 1 tracks/0/loop_wrap = true tracks/0/keys = { @@ -649,7 +649,7 @@ tracks/0/keys = { tracks/1/type = "value" tracks/1/imported = false tracks/1/enabled = true -tracks/1/path = NodePath("Sprite3D/SubViewport/AnimatedSprite:frame") +tracks/1/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:frame") tracks/1/interp = 1 tracks/1/loop_wrap = true tracks/1/keys = { @@ -855,14 +855,19 @@ texture_filter = 0 render_priority = 100 texture = SubResource("ViewportTexture_7tggm") -[node name="SubViewport" type="SubViewport" parent="Sprite3D"] +[node name="SubViewportContainer" type="SubViewportContainer" parent="Sprite3D"] +visibility_layer = 0 +offset_right = 40.0 +offset_bottom = 40.0 + +[node name="SubViewport" type="SubViewport" parent="Sprite3D/SubViewportContainer"] disable_3d = true transparent_bg = true handle_input_locally = false size = Vector2i(300, 300) render_target_update_mode = 4 -[node name="AnimatedSprite" type="AnimatedSprite2D" parent="Sprite3D/SubViewport"] +[node name="AnimatedSprite" type="AnimatedSprite2D" parent="Sprite3D/SubViewportContainer/SubViewport"] unique_name_in_owner = true position = Vector2(150, 150) sprite_frames = SubResource("SpriteFrames_673a4") diff --git a/src/enemy/enemy_types/5. ballos/Ballos.tscn b/src/enemy/enemy_types/5. ballos/Ballos.tscn index d0ccf426..c1ce5823 100644 --- a/src/enemy/enemy_types/5. ballos/Ballos.tscn +++ b/src/enemy/enemy_types/5. ballos/Ballos.tscn @@ -4,7 +4,7 @@ [ext_resource type="PackedScene" uid="uid://c5xijwxkg4pf6" path="res://src/enemy/enemy_types/5. ballos/BallosModelView.tscn" id="2_v2urn"] [sub_resource type="CapsuleShape3D" id="CapsuleShape3D_cwfph"] -radius = 0.226425 +radius = 0.717471 height = 2.02807 [sub_resource type="CylinderShape3D" id="CylinderShape3D_jbgmx"] @@ -25,7 +25,8 @@ contact_monitor = true max_contacts_reported = 1 script = ExtResource("1_v2urn") -[node name="CollisionShape3D" type="CollisionShape3D" parent="."] +[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, 0, 0) shape = SubResource("CapsuleShape3D_cwfph") diff --git a/src/enemy/enemy_types/5. ballos/BallosModelView.tscn b/src/enemy/enemy_types/5. ballos/BallosModelView.tscn index c6b92b91..782bfb79 100644 --- a/src/enemy/enemy_types/5. ballos/BallosModelView.tscn +++ b/src/enemy/enemy_types/5. ballos/BallosModelView.tscn @@ -72,7 +72,7 @@ [ext_resource type="Texture2D" uid="uid://bnowktk238eax" path="res://src/enemy/enemy_types/5. ballos/ATTACK 2 FRONT/8.png" id="69_lf0o8"] [sub_resource type="ViewportTexture" id="ViewportTexture_h1kaf"] -viewport_path = NodePath("Sprite3D/SubViewport") +viewport_path = NodePath("Sprite3D/SubViewportContainer/SubViewport") [sub_resource type="SpriteFrames" id="SpriteFrames_mlptn"] animations = [{ @@ -311,7 +311,7 @@ length = 0.001 tracks/0/type = "value" tracks/0/imported = false tracks/0/enabled = true -tracks/0/path = NodePath("Sprite3D/SubViewport/AnimatedSprite:frame") +tracks/0/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:frame") tracks/0/interp = 1 tracks/0/loop_wrap = true tracks/0/keys = { @@ -323,7 +323,7 @@ tracks/0/keys = { tracks/1/type = "value" tracks/1/imported = false tracks/1/enabled = true -tracks/1/path = NodePath("Sprite3D/SubViewport/AnimatedSprite:animation") +tracks/1/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:animation") tracks/1/interp = 1 tracks/1/loop_wrap = true tracks/1/keys = { @@ -352,7 +352,7 @@ step = 0.0833333 tracks/0/type = "value" tracks/0/imported = false tracks/0/enabled = true -tracks/0/path = NodePath("Sprite3D/SubViewport/AnimatedSprite:animation") +tracks/0/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:animation") tracks/0/interp = 1 tracks/0/loop_wrap = true tracks/0/keys = { @@ -364,7 +364,7 @@ tracks/0/keys = { tracks/1/type = "value" tracks/1/imported = false tracks/1/enabled = true -tracks/1/path = NodePath("Sprite3D/SubViewport/AnimatedSprite:frame") +tracks/1/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:frame") tracks/1/interp = 1 tracks/1/loop_wrap = true tracks/1/keys = { @@ -381,7 +381,7 @@ step = 0.0833333 tracks/0/type = "value" tracks/0/imported = false tracks/0/enabled = true -tracks/0/path = NodePath("Sprite3D/SubViewport/AnimatedSprite:animation") +tracks/0/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:animation") tracks/0/interp = 1 tracks/0/loop_wrap = true tracks/0/keys = { @@ -393,7 +393,7 @@ tracks/0/keys = { tracks/1/type = "value" tracks/1/imported = false tracks/1/enabled = true -tracks/1/path = NodePath("Sprite3D/SubViewport/AnimatedSprite:frame") +tracks/1/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:frame") tracks/1/interp = 1 tracks/1/loop_wrap = true tracks/1/keys = { @@ -410,7 +410,7 @@ step = 0.0833333 tracks/0/type = "value" tracks/0/imported = false tracks/0/enabled = true -tracks/0/path = NodePath("Sprite3D/SubViewport/AnimatedSprite:frame") +tracks/0/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:frame") tracks/0/interp = 1 tracks/0/loop_wrap = true tracks/0/keys = { @@ -422,7 +422,7 @@ tracks/0/keys = { tracks/1/type = "value" tracks/1/imported = false tracks/1/enabled = true -tracks/1/path = NodePath("Sprite3D/SubViewport/AnimatedSprite:animation") +tracks/1/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:animation") tracks/1/interp = 1 tracks/1/loop_wrap = true tracks/1/keys = { @@ -439,7 +439,7 @@ step = 0.0833333 tracks/0/type = "value" tracks/0/imported = false tracks/0/enabled = true -tracks/0/path = NodePath("Sprite3D/SubViewport/AnimatedSprite:animation") +tracks/0/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:animation") tracks/0/interp = 1 tracks/0/loop_wrap = true tracks/0/keys = { @@ -451,7 +451,7 @@ tracks/0/keys = { tracks/1/type = "value" tracks/1/imported = false tracks/1/enabled = true -tracks/1/path = NodePath("Sprite3D/SubViewport/AnimatedSprite:frame") +tracks/1/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:frame") tracks/1/interp = 1 tracks/1/loop_wrap = true tracks/1/keys = { @@ -468,7 +468,7 @@ step = 0.0833333 tracks/0/type = "value" tracks/0/imported = false tracks/0/enabled = true -tracks/0/path = NodePath("Sprite3D/SubViewport/AnimatedSprite:animation") +tracks/0/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:animation") tracks/0/interp = 1 tracks/0/loop_wrap = true tracks/0/keys = { @@ -480,7 +480,7 @@ tracks/0/keys = { tracks/1/type = "value" tracks/1/imported = false tracks/1/enabled = true -tracks/1/path = NodePath("Sprite3D/SubViewport/AnimatedSprite:frame") +tracks/1/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:frame") tracks/1/interp = 1 tracks/1/loop_wrap = true tracks/1/keys = { @@ -498,7 +498,7 @@ step = 0.0833333 tracks/0/type = "value" tracks/0/imported = false tracks/0/enabled = true -tracks/0/path = NodePath("Sprite3D/SubViewport/AnimatedSprite:animation") +tracks/0/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:animation") tracks/0/interp = 1 tracks/0/loop_wrap = true tracks/0/keys = { @@ -510,7 +510,7 @@ tracks/0/keys = { tracks/1/type = "value" tracks/1/imported = false tracks/1/enabled = true -tracks/1/path = NodePath("Sprite3D/SubViewport/AnimatedSprite:frame") +tracks/1/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:frame") tracks/1/interp = 1 tracks/1/loop_wrap = true tracks/1/keys = { @@ -527,7 +527,7 @@ step = 0.0833333 tracks/0/type = "value" tracks/0/imported = false tracks/0/enabled = true -tracks/0/path = NodePath("Sprite3D/SubViewport/AnimatedSprite:animation") +tracks/0/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:animation") tracks/0/interp = 1 tracks/0/loop_wrap = true tracks/0/keys = { @@ -539,7 +539,7 @@ tracks/0/keys = { tracks/1/type = "value" tracks/1/imported = false tracks/1/enabled = true -tracks/1/path = NodePath("Sprite3D/SubViewport/AnimatedSprite:frame") +tracks/1/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:frame") tracks/1/interp = 1 tracks/1/loop_wrap = true tracks/1/keys = { @@ -568,7 +568,7 @@ step = 0.0833333 tracks/0/type = "value" tracks/0/imported = false tracks/0/enabled = true -tracks/0/path = NodePath("Sprite3D/SubViewport/AnimatedSprite:animation") +tracks/0/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:animation") tracks/0/interp = 1 tracks/0/loop_wrap = true tracks/0/keys = { @@ -580,7 +580,7 @@ tracks/0/keys = { tracks/1/type = "value" tracks/1/imported = false tracks/1/enabled = true -tracks/1/path = NodePath("Sprite3D/SubViewport/AnimatedSprite:frame") +tracks/1/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:frame") tracks/1/interp = 1 tracks/1/loop_wrap = true tracks/1/keys = { @@ -785,14 +785,19 @@ texture_filter = 0 render_priority = 100 texture = SubResource("ViewportTexture_h1kaf") -[node name="SubViewport" type="SubViewport" parent="Sprite3D"] +[node name="SubViewportContainer" type="SubViewportContainer" parent="Sprite3D"] +visibility_layer = 0 +offset_right = 40.0 +offset_bottom = 40.0 + +[node name="SubViewport" type="SubViewport" parent="Sprite3D/SubViewportContainer"] disable_3d = true transparent_bg = true handle_input_locally = false size = Vector2i(400, 400) render_target_update_mode = 4 -[node name="AnimatedSprite" type="AnimatedSprite2D" parent="Sprite3D/SubViewport"] +[node name="AnimatedSprite" type="AnimatedSprite2D" parent="Sprite3D/SubViewportContainer/SubViewport"] sprite_frames = SubResource("SpriteFrames_mlptn") animation = &"idle_front_walk" offset = Vector2(200, 200) diff --git a/src/enemy/enemy_types/6. chariot/Chariot.tscn b/src/enemy/enemy_types/6. chariot/Chariot.tscn index 940d1166..6a827d51 100644 --- a/src/enemy/enemy_types/6. chariot/Chariot.tscn +++ b/src/enemy/enemy_types/6. chariot/Chariot.tscn @@ -43,7 +43,8 @@ max_contacts_reported = 1 script = ExtResource("1_hqeyd") _enemyStatResource = SubResource("Resource_dvne1") -[node name="CollisionShape3D" type="CollisionShape3D" parent="."] +[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, 0, 0) shape = SubResource("CapsuleShape3D_cwfph") diff --git a/src/enemy/enemy_types/6. chariot/ChariotModelView.tscn b/src/enemy/enemy_types/6. chariot/ChariotModelView.tscn index a6ce6c27..5f436afa 100644 --- a/src/enemy/enemy_types/6. chariot/ChariotModelView.tscn +++ b/src/enemy/enemy_types/6. chariot/ChariotModelView.tscn @@ -623,6 +623,7 @@ render_priority = 100 texture = SubResource("ViewportTexture_vr4bf") [node name="SubViewportContainer" type="SubViewportContainer" parent="Sprite3D"] +visibility_layer = 0 anchors_preset = -1 anchor_right = 0.348 anchor_bottom = 0.356 diff --git a/src/enemy/enemy_types/7. chinte/animations/HOP BACK/HOP-BACK_page_0008.png.import b/src/enemy/enemy_types/7. chinte/animations/HOP BACK/HOP-BACK_page_0008.png.import deleted file mode 100644 index 14717425..00000000 --- a/src/enemy/enemy_types/7. chinte/animations/HOP BACK/HOP-BACK_page_0008.png.import +++ /dev/null @@ -1,34 +0,0 @@ -[remap] - -importer="texture" -type="CompressedTexture2D" -uid="uid://b3ytuouobuup" -path="res://.godot/imported/HOP-BACK_page_0008.png-8ed311f68d7c10ab871ee20439da6773.ctex" -metadata={ -"vram_texture": false -} - -[deps] - -source_file="res://src/enemy/enemy_types/7. chinte/animations/HOP BACK/HOP-BACK_page_0008.png" -dest_files=["res://.godot/imported/HOP-BACK_page_0008.png-8ed311f68d7c10ab871ee20439da6773.ctex"] - -[params] - -compress/mode=0 -compress/high_quality=false -compress/lossy_quality=0.7 -compress/hdr_compression=1 -compress/normal_map=0 -compress/channel_pack=0 -mipmaps/generate=false -mipmaps/limit=-1 -roughness/mode=0 -roughness/src_normal="" -process/fix_alpha_border=true -process/premult_alpha=false -process/normal_map_invert_y=false -process/hdr_as_srgb=false -process/hdr_clamp_exposure=false -process/size_limit=0 -detect_3d/compress_to=0 diff --git a/src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0003.png.import b/src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0003.png.import deleted file mode 100644 index fa5c00f0..00000000 --- a/src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0003.png.import +++ /dev/null @@ -1,34 +0,0 @@ -[remap] - -importer="texture" -type="CompressedTexture2D" -uid="uid://q7k840guefqk" -path="res://.godot/imported/IDLE-FRONT_page_0003.png-31c154506a3887a45154a98bc719e0f8.ctex" -metadata={ -"vram_texture": false -} - -[deps] - -source_file="res://src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0003.png" -dest_files=["res://.godot/imported/IDLE-FRONT_page_0003.png-31c154506a3887a45154a98bc719e0f8.ctex"] - -[params] - -compress/mode=0 -compress/high_quality=false -compress/lossy_quality=0.7 -compress/hdr_compression=1 -compress/normal_map=0 -compress/channel_pack=0 -mipmaps/generate=false -mipmaps/limit=-1 -roughness/mode=0 -roughness/src_normal="" -process/fix_alpha_border=true -process/premult_alpha=false -process/normal_map_invert_y=false -process/hdr_as_srgb=false -process/hdr_clamp_exposure=false -process/size_limit=0 -detect_3d/compress_to=0 diff --git a/src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0004.png.import b/src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0004.png.import deleted file mode 100644 index abffbeb3..00000000 --- a/src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0004.png.import +++ /dev/null @@ -1,34 +0,0 @@ -[remap] - -importer="texture" -type="CompressedTexture2D" -uid="uid://bexb8p0l0cve3" -path="res://.godot/imported/IDLE-FRONT_page_0004.png-fd6e2d60ef3485800f047e21af0daa80.ctex" -metadata={ -"vram_texture": false -} - -[deps] - -source_file="res://src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0004.png" -dest_files=["res://.godot/imported/IDLE-FRONT_page_0004.png-fd6e2d60ef3485800f047e21af0daa80.ctex"] - -[params] - -compress/mode=0 -compress/high_quality=false -compress/lossy_quality=0.7 -compress/hdr_compression=1 -compress/normal_map=0 -compress/channel_pack=0 -mipmaps/generate=false -mipmaps/limit=-1 -roughness/mode=0 -roughness/src_normal="" -process/fix_alpha_border=true -process/premult_alpha=false -process/normal_map_invert_y=false -process/hdr_as_srgb=false -process/hdr_clamp_exposure=false -process/size_limit=0 -detect_3d/compress_to=0 diff --git a/src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0029.png.import b/src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0029.png.import deleted file mode 100644 index ed302e04..00000000 --- a/src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0029.png.import +++ /dev/null @@ -1,34 +0,0 @@ -[remap] - -importer="texture" -type="CompressedTexture2D" -uid="uid://bqtg2bdgpq2rv" -path="res://.godot/imported/IDLE-FRONT_page_0029.png-13036ac47021778db0efdcc6a288d030.ctex" -metadata={ -"vram_texture": false -} - -[deps] - -source_file="res://src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0029.png" -dest_files=["res://.godot/imported/IDLE-FRONT_page_0029.png-13036ac47021778db0efdcc6a288d030.ctex"] - -[params] - -compress/mode=0 -compress/high_quality=false -compress/lossy_quality=0.7 -compress/hdr_compression=1 -compress/normal_map=0 -compress/channel_pack=0 -mipmaps/generate=false -mipmaps/limit=-1 -roughness/mode=0 -roughness/src_normal="" -process/fix_alpha_border=true -process/premult_alpha=false -process/normal_map_invert_y=false -process/hdr_as_srgb=false -process/hdr_clamp_exposure=false -process/size_limit=0 -detect_3d/compress_to=0 diff --git a/src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0038.png.import b/src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0038.png.import deleted file mode 100644 index e04b682d..00000000 --- a/src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0038.png.import +++ /dev/null @@ -1,34 +0,0 @@ -[remap] - -importer="texture" -type="CompressedTexture2D" -uid="uid://cs3ffswn6r2vj" -path="res://.godot/imported/IDLE-FRONT_page_0038.png-6a18842dc285c6b2896978c6c5a13270.ctex" -metadata={ -"vram_texture": false -} - -[deps] - -source_file="res://src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0038.png" -dest_files=["res://.godot/imported/IDLE-FRONT_page_0038.png-6a18842dc285c6b2896978c6c5a13270.ctex"] - -[params] - -compress/mode=0 -compress/high_quality=false -compress/lossy_quality=0.7 -compress/hdr_compression=1 -compress/normal_map=0 -compress/channel_pack=0 -mipmaps/generate=false -mipmaps/limit=-1 -roughness/mode=0 -roughness/src_normal="" -process/fix_alpha_border=true -process/premult_alpha=false -process/normal_map_invert_y=false -process/hdr_as_srgb=false -process/hdr_clamp_exposure=false -process/size_limit=0 -detect_3d/compress_to=0 diff --git a/src/enemy/enemy_types/7. chinte/ChinteLoreInfo.tres b/src/enemy/enemy_types/7. chinthe/ChinteLoreInfo.tres similarity index 100% rename from src/enemy/enemy_types/7. chinte/ChinteLoreInfo.tres rename to src/enemy/enemy_types/7. chinthe/ChinteLoreInfo.tres diff --git a/src/enemy/enemy_types/7. chinte/ChinteModelView.tscn b/src/enemy/enemy_types/7. chinthe/ChinteModelView.tscn similarity index 75% rename from src/enemy/enemy_types/7. chinte/ChinteModelView.tscn rename to src/enemy/enemy_types/7. chinthe/ChinteModelView.tscn index 3eb99da5..fa191b23 100644 --- a/src/enemy/enemy_types/7. chinte/ChinteModelView.tscn +++ b/src/enemy/enemy_types/7. chinthe/ChinteModelView.tscn @@ -1,166 +1,166 @@ [gd_scene load_steps=230 format=3 uid="uid://byd7cwxq1be6f"] [ext_resource type="Script" uid="uid://chymnqdw7hibn" path="res://src/enemy/EnemyModelView.cs" id="1_v8om3"] -[ext_resource type="Resource" uid="uid://2j714tuwhbdu" path="res://src/enemy/enemy_types/7. chinte/ChinteLoreInfo.tres" id="2_syjm0"] -[ext_resource type="Texture2D" uid="uid://8qj6se762l6e" path="res://src/enemy/enemy_types/7. chinte/animations/ACTIVATE-BACK/ACTIVATE-BACK_page_0001.png" id="3_fn0g1"] -[ext_resource type="Texture2D" uid="uid://bicx2m6q0vqdw" path="res://src/enemy/enemy_types/7. chinte/animations/HOP FRONT/HOP-FRONT_page_0001.png" id="3_kc1ey"] -[ext_resource type="Texture2D" uid="uid://u2xjqc5ksrms" path="res://src/enemy/enemy_types/7. chinte/animations/HOP BACK/HOP-BACK_page_0001.png" id="3_wc61w"] -[ext_resource type="Texture2D" uid="uid://cejvyh381ei1u" path="res://src/enemy/enemy_types/7. chinte/animations/HOP FRONT/HOP-FRONT_page_0002.png" id="4_46p8q"] -[ext_resource type="Texture2D" uid="uid://bvry4nr83oonj" path="res://src/enemy/enemy_types/7. chinte/animations/HOP BACK/HOP-BACK_page_0002.png" id="4_50r4w"] -[ext_resource type="Texture2D" uid="uid://cstm3bc1iyiou" path="res://src/enemy/enemy_types/7. chinte/animations/ACTIVATE-BACK/ACTIVATE-BACK_page_0002.png" id="4_a1a5a"] -[ext_resource type="Texture2D" uid="uid://b7lk817ih82o7" path="res://src/enemy/enemy_types/7. chinte/animations/HOP FRONT/HOP-FRONT_page_0003.png" id="5_7yoax"] -[ext_resource type="Texture2D" uid="uid://dip1urkpqfsgj" path="res://src/enemy/enemy_types/7. chinte/animations/ACTIVATE-BACK/ACTIVATE-BACK_page_0003.png" id="5_h1q27"] -[ext_resource type="Texture2D" uid="uid://bgfqim1idm4kp" path="res://src/enemy/enemy_types/7. chinte/animations/HOP BACK/HOP-BACK_page_0003.png" id="5_hcjtk"] -[ext_resource type="Texture2D" uid="uid://bmd5cgqk2vg5o" path="res://src/enemy/enemy_types/7. chinte/animations/ACTIVATE-BACK/ACTIVATE-BACK_page_0004.png" id="6_5nhn3"] -[ext_resource type="Texture2D" uid="uid://d0jap5uvy72rj" path="res://src/enemy/enemy_types/7. chinte/animations/HOP BACK/HOP-BACK_page_0004.png" id="6_8vac7"] -[ext_resource type="Texture2D" uid="uid://bseiwgxwdj8ih" path="res://src/enemy/enemy_types/7. chinte/animations/HOP FRONT/HOP-FRONT_page_0004.png" id="6_by6kh"] -[ext_resource type="Texture2D" uid="uid://cxxeds0c84a8j" path="res://src/enemy/enemy_types/7. chinte/animations/ACTIVATE-BACK/ACTIVATE-BACK_page_0005.png" id="7_bgt1u"] -[ext_resource type="Texture2D" uid="uid://b15t1kc6bu42u" path="res://src/enemy/enemy_types/7. chinte/animations/HOP FRONT/HOP-FRONT_page_0005.png" id="7_ci7tq"] -[ext_resource type="Texture2D" uid="uid://cxwualwcihxf6" path="res://src/enemy/enemy_types/7. chinte/animations/HOP BACK/HOP-BACK_page_0005.png" id="7_u7uex"] -[ext_resource type="Texture2D" uid="uid://cr2opgprfenav" path="res://src/enemy/enemy_types/7. chinte/animations/HOP FRONT/HOP-FRONT_page_0006.png" id="8_an5j3"] -[ext_resource type="Texture2D" uid="uid://bfsocf0k8yioa" path="res://src/enemy/enemy_types/7. chinte/animations/HOP BACK/HOP-BACK_page_0006.png" id="8_crifn"] -[ext_resource type="Texture2D" uid="uid://c14icwfjwg50p" path="res://src/enemy/enemy_types/7. chinte/animations/ACTIVATE-BACK/ACTIVATE-BACK_page_0006.png" id="8_lo6gm"] -[ext_resource type="Texture2D" uid="uid://dbxdjn6o36k3c" path="res://src/enemy/enemy_types/7. chinte/animations/HOP FRONT/HOP-FRONT_page_0007.png" id="9_ah8eo"] -[ext_resource type="Texture2D" uid="uid://c2nutnin4pm3" path="res://src/enemy/enemy_types/7. chinte/animations/HOP BACK/HOP-BACK_page_0007.png" id="9_f2uxp"] -[ext_resource type="Texture2D" uid="uid://dxkjrr3wneg7p" path="res://src/enemy/enemy_types/7. chinte/animations/ACTIVATE-FRONT/ACTIVATE-FRONT_page_0001.png" id="9_yrerp"] -[ext_resource type="Texture2D" uid="uid://ceyvr048ccsff" path="res://src/enemy/enemy_types/7. chinte/animations/HOP FRONT/HOP-FRONT_page_0008.png" id="10_2o34q"] -[ext_resource type="Texture2D" uid="uid://b3ytuouobuup" path="res://src/enemy/enemy_types/7. chinte/animations/HOP BACK/HOP-BACK_page_0008.png" id="10_bjvhl"] -[ext_resource type="Texture2D" uid="uid://dryfs7kwpt05m" path="res://src/enemy/enemy_types/7. chinte/animations/ACTIVATE-FRONT/ACTIVATE-FRONT_page_0002.png" id="10_e08pp"] -[ext_resource type="Texture2D" uid="uid://beff1mhve0psp" path="res://src/enemy/enemy_types/7. chinte/animations/HOP BACK/HOP-BACK_page_0009.png" id="11_04akx"] -[ext_resource type="Texture2D" uid="uid://cyir2u6s0a803" path="res://src/enemy/enemy_types/7. chinte/animations/HOP FRONT/HOP-FRONT_page_0009.png" id="11_acq66"] -[ext_resource type="Texture2D" uid="uid://cdsong01o1xof" path="res://src/enemy/enemy_types/7. chinte/animations/ACTIVATE-FRONT/ACTIVATE-FRONT_page_0003.png" id="11_rkc3l"] -[ext_resource type="Texture2D" uid="uid://cjowfifu2ds1k" path="res://src/enemy/enemy_types/7. chinte/animations/HOP BACK/HOP-BACK_page_0010.png" id="12_3vtes"] -[ext_resource type="Texture2D" uid="uid://qi6ykbimr36j" path="res://src/enemy/enemy_types/7. chinte/animations/HOP FRONT/HOP-FRONT_page_0010.png" id="12_r73tb"] -[ext_resource type="Texture2D" uid="uid://b756p2shusa0y" path="res://src/enemy/enemy_types/7. chinte/animations/ACTIVATE-FRONT/ACTIVATE-FRONT_page_0004.png" id="12_w023d"] -[ext_resource type="Texture2D" uid="uid://c0ixmdqj6728s" path="res://src/enemy/enemy_types/7. chinte/animations/HOP FRONT/HOP-FRONT_page_0011.png" id="13_c0pct"] -[ext_resource type="Texture2D" uid="uid://ccf5cdmbnv8xr" path="res://src/enemy/enemy_types/7. chinte/animations/ACTIVATE-FRONT/ACTIVATE-FRONT_page_0005.png" id="13_gsd4b"] -[ext_resource type="Texture2D" uid="uid://dk3yw0kma6jrw" path="res://src/enemy/enemy_types/7. chinte/animations/HOP BACK/HOP-BACK_page_0011.png" id="13_okyxa"] -[ext_resource type="Texture2D" uid="uid://dlga6cbuomfhi" path="res://src/enemy/enemy_types/7. chinte/animations/HOP FRONT/HOP-FRONT_page_0012.png" id="14_fxh0g"] -[ext_resource type="Texture2D" uid="uid://bhxt86sqswrb8" path="res://src/enemy/enemy_types/7. chinte/animations/HOP BACK/HOP-BACK_page_0012.png" id="14_vb0q8"] -[ext_resource type="Texture2D" uid="uid://bx2tm5grtctlp" path="res://src/enemy/enemy_types/7. chinte/animations/ACTIVATE-FRONT/ACTIVATE-FRONT_page_0006.png" id="14_w3lnt"] -[ext_resource type="Texture2D" uid="uid://bqrd222snxwnl" path="res://src/enemy/enemy_types/7. chinte/animations/ACTIVATE-SIDE/ACTIVATE-SIDE_page_0001.png" id="15_hflxm"] -[ext_resource type="Texture2D" uid="uid://b26x8xh3o81vs" path="res://src/enemy/enemy_types/7. chinte/animations/HOP FRONT/HOP-FRONT_page_0013.png" id="15_rernf"] -[ext_resource type="Texture2D" uid="uid://cheahf8qonbgf" path="res://src/enemy/enemy_types/7. chinte/animations/HOP BACK/HOP-BACK_page_0013.png" id="15_v8ycu"] -[ext_resource type="Texture2D" uid="uid://0knojjfwjtgv" path="res://src/enemy/enemy_types/7. chinte/animations/HOP BACK/HOP-BACK_page_0014.png" id="16_3awat"] -[ext_resource type="Texture2D" uid="uid://dw3qwomarv3p5" path="res://src/enemy/enemy_types/7. chinte/animations/HOP FRONT/HOP-FRONT_page_0014.png" id="16_pvgkg"] -[ext_resource type="Texture2D" uid="uid://do8v0wcpvcm5y" path="res://src/enemy/enemy_types/7. chinte/animations/ACTIVATE-SIDE/ACTIVATE-SIDE_page_0002.png" id="16_tkoig"] -[ext_resource type="Texture2D" uid="uid://454bwm8i6to3" path="res://src/enemy/enemy_types/7. chinte/animations/HOP FRONT/HOP-FRONT_page_0015.png" id="17_20o86"] -[ext_resource type="Texture2D" uid="uid://2jc2fo5rn4qt" path="res://src/enemy/enemy_types/7. chinte/animations/ACTIVATE-SIDE/ACTIVATE-SIDE_page_0003.png" id="17_fe8py"] -[ext_resource type="Texture2D" uid="uid://gawp5d82ei1v" path="res://src/enemy/enemy_types/7. chinte/animations/HOP BACK/HOP-BACK_page_0015.png" id="17_odt21"] -[ext_resource type="Texture2D" uid="uid://btau6dotyy0ia" path="res://src/enemy/enemy_types/7. chinte/animations/HOP BACK/HOP-BACK_page_0016.png" id="18_fpbkg"] -[ext_resource type="Texture2D" uid="uid://iaisooai5b00" path="res://src/enemy/enemy_types/7. chinte/animations/ACTIVATE-SIDE/ACTIVATE-SIDE_page_0004.png" id="18_r30cm"] -[ext_resource type="Texture2D" uid="uid://bt0pwh1vkb2s7" path="res://src/enemy/enemy_types/7. chinte/animations/HOP FRONT/HOP-FRONT_page_0016.png" id="18_sfrde"] -[ext_resource type="Texture2D" uid="uid://bo1n0em5ko127" path="res://src/enemy/enemy_types/7. chinte/animations/HOP FRONT/HOP-FRONT_page_0017.png" id="19_71etv"] -[ext_resource type="Texture2D" uid="uid://031jvbacuqil" path="res://src/enemy/enemy_types/7. chinte/animations/HOP BACK/HOP-BACK_page_0017.png" id="19_76pi0"] -[ext_resource type="Texture2D" uid="uid://b2rg4bvpyecdx" path="res://src/enemy/enemy_types/7. chinte/animations/ACTIVATE-SIDE/ACTIVATE-SIDE_page_0005.png" id="19_pu4mr"] -[ext_resource type="Texture2D" uid="uid://kb65mk270fi1" path="res://src/enemy/enemy_types/7. chinte/animations/HOP BACK/HOP-BACK_page_0018.png" id="20_o3gx4"] -[ext_resource type="Texture2D" uid="uid://df6kiuum5x8mr" path="res://src/enemy/enemy_types/7. chinte/animations/ACTIVATE-SIDE/ACTIVATE-SIDE_page_0006.png" id="20_whlmf"] -[ext_resource type="Texture2D" uid="uid://eh6puu82rihh" path="res://src/enemy/enemy_types/7. chinte/animations/HOP FRONT/HOP-FRONT_page_0018.png" id="20_yjq2w"] -[ext_resource type="Texture2D" uid="uid://ca116jnrpdthm" path="res://src/enemy/enemy_types/7. chinte/animations/HOP SIDE/HOP-SIDE_page_0001.png" id="39_bqkpb"] -[ext_resource type="Texture2D" uid="uid://dt8pg4upblis8" path="res://src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0001.png" id="39_cd8wr"] -[ext_resource type="Texture2D" uid="uid://72xvqeu4hl6q" path="res://src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0002.png" id="40_wn63w"] -[ext_resource type="Texture2D" uid="uid://bgd2y8bohe3qg" path="res://src/enemy/enemy_types/7. chinte/animations/HOP SIDE/HOP-SIDE_page_0002.png" id="40_xt6k1"] -[ext_resource type="Texture2D" uid="uid://do6eu4jk5n3od" path="res://src/enemy/enemy_types/7. chinte/animations/HOP SIDE/HOP-SIDE_page_0003.png" id="41_527rs"] -[ext_resource type="Texture2D" uid="uid://q7k840guefqk" path="res://src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0003.png" id="41_sjxqo"] -[ext_resource type="Texture2D" uid="uid://bexb8p0l0cve3" path="res://src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0004.png" id="42_oxbfk"] -[ext_resource type="Texture2D" uid="uid://c7h56b5iwvf2c" path="res://src/enemy/enemy_types/7. chinte/animations/HOP SIDE/HOP-SIDE_page_0004.png" id="42_wnf4a"] -[ext_resource type="Texture2D" uid="uid://cns2ntxssdwi8" path="res://src/enemy/enemy_types/7. chinte/animations/HOP SIDE/HOP-SIDE_page_0005.png" id="43_khm33"] -[ext_resource type="Texture2D" uid="uid://dgpwachsks3xp" path="res://src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0005.png" id="43_tk877"] -[ext_resource type="Texture2D" uid="uid://b11jugjoeemwi" path="res://src/enemy/enemy_types/7. chinte/animations/HOP SIDE/HOP-SIDE_page_0006.png" id="44_q25x3"] -[ext_resource type="Texture2D" uid="uid://bcwjdqnly70nt" path="res://src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0006.png" id="44_taq5y"] -[ext_resource type="Texture2D" uid="uid://d37b67irukipu" path="res://src/enemy/enemy_types/7. chinte/animations/HOP SIDE/HOP-SIDE_page_0007.png" id="45_3iu4q"] -[ext_resource type="Texture2D" uid="uid://c3oh1wfc5jqai" path="res://src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0007.png" id="45_abf28"] -[ext_resource type="Texture2D" uid="uid://do5dhoe355yyh" path="res://src/enemy/enemy_types/7. chinte/animations/HOP SIDE/HOP-SIDE_page_0008.png" id="46_f7m0w"] -[ext_resource type="Texture2D" uid="uid://wsvvrx6ek2e3" path="res://src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0008.png" id="46_yv3t6"] -[ext_resource type="Texture2D" uid="uid://cbijkmo1hob35" path="res://src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0009.png" id="47_8sbse"] -[ext_resource type="Texture2D" uid="uid://b8kccsf3n2biq" path="res://src/enemy/enemy_types/7. chinte/animations/HOP SIDE/HOP-SIDE_page_0009.png" id="47_ajo64"] -[ext_resource type="Texture2D" uid="uid://dl3vfxi5rndxd" path="res://src/enemy/enemy_types/7. chinte/animations/HOP SIDE/HOP-SIDE_page_0010.png" id="48_ptk6f"] -[ext_resource type="Texture2D" uid="uid://eso4qhcusm4" path="res://src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0010.png" id="48_qffrk"] -[ext_resource type="Texture2D" uid="uid://bg45bxbu16vol" path="res://src/enemy/enemy_types/7. chinte/animations/HOP SIDE/HOP-SIDE_page_0011.png" id="49_2530t"] -[ext_resource type="Texture2D" uid="uid://dvaqbv6n525lb" path="res://src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0011.png" id="49_efex0"] -[ext_resource type="Texture2D" uid="uid://bw8p1oe3353uy" path="res://src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0012.png" id="50_1cgr5"] -[ext_resource type="Texture2D" uid="uid://b4gd3j0a0tb8a" path="res://src/enemy/enemy_types/7. chinte/animations/HOP SIDE/HOP-SIDE_page_0012.png" id="50_shci7"] -[ext_resource type="Texture2D" uid="uid://5pj6asie3de1" path="res://src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0013.png" id="51_slsns"] -[ext_resource type="Texture2D" uid="uid://b40l6fsdqsad1" path="res://src/enemy/enemy_types/7. chinte/animations/HOP SIDE/HOP-SIDE_page_0013.png" id="51_x6i3u"] -[ext_resource type="Texture2D" uid="uid://1r5sm6vvn2m6" path="res://src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0014.png" id="52_g4ewi"] -[ext_resource type="Texture2D" uid="uid://duwfyn662tspf" path="res://src/enemy/enemy_types/7. chinte/animations/HOP SIDE/HOP-SIDE_page_0014.png" id="52_syjm0"] -[ext_resource type="Texture2D" uid="uid://8xj0ko2g2deg" path="res://src/enemy/enemy_types/7. chinte/animations/HOP SIDE/HOP-SIDE_page_0015.png" id="53_u06t8"] -[ext_resource type="Texture2D" uid="uid://m4clglkawftb" path="res://src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0015.png" id="53_udart"] -[ext_resource type="Texture2D" uid="uid://do1ewuo4yifrq" path="res://src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0016.png" id="54_kilb8"] -[ext_resource type="Texture2D" uid="uid://dshrqgojp4yca" path="res://src/enemy/enemy_types/7. chinte/animations/HOP SIDE/HOP-SIDE_page_0016.png" id="54_onul4"] -[ext_resource type="Texture2D" uid="uid://drmbggwyc3lhu" path="res://src/enemy/enemy_types/7. chinte/animations/HOP SIDE/HOP-SIDE_page_0017.png" id="55_5syoy"] -[ext_resource type="Texture2D" uid="uid://ccx6r2ddh1i7a" path="res://src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0017.png" id="55_sapra"] -[ext_resource type="Texture2D" uid="uid://5lo4a55mwhmc" path="res://src/enemy/enemy_types/7. chinte/animations/HOP SIDE/HOP-SIDE_page_0018.png" id="56_1bw8i"] -[ext_resource type="Texture2D" uid="uid://jlk8y8njpr2h" path="res://src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0018.png" id="56_37mk7"] -[ext_resource type="Texture2D" uid="uid://di6654s8itcp0" path="res://src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0019.png" id="57_pyfpi"] -[ext_resource type="Texture2D" uid="uid://cfedqk2w3nb24" path="res://src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0001.png" id="57_syjm0"] -[ext_resource type="Texture2D" uid="uid://6rwqt33pm75r" path="res://src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0020.png" id="58_bo0u7"] +[ext_resource type="Resource" uid="uid://2j714tuwhbdu" path="res://src/enemy/enemy_types/7. chinthe/ChinteLoreInfo.tres" id="2_syjm0"] +[ext_resource type="Texture2D" uid="uid://8qj6se762l6e" path="res://src/enemy/enemy_types/7. chinthe/animations/ACTIVATE-BACK/ACTIVATE-BACK_page_0001.png" id="3_fn0g1"] +[ext_resource type="Texture2D" uid="uid://bicx2m6q0vqdw" path="res://src/enemy/enemy_types/7. chinthe/animations/HOP FRONT/HOP-FRONT_page_0001.png" id="3_kc1ey"] +[ext_resource type="Texture2D" uid="uid://u2xjqc5ksrms" path="res://src/enemy/enemy_types/7. chinthe/animations/HOP BACK/HOP-BACK_page_0001.png" id="3_wc61w"] +[ext_resource type="Texture2D" uid="uid://cejvyh381ei1u" path="res://src/enemy/enemy_types/7. chinthe/animations/HOP FRONT/HOP-FRONT_page_0002.png" id="4_46p8q"] +[ext_resource type="Texture2D" uid="uid://bvry4nr83oonj" path="res://src/enemy/enemy_types/7. chinthe/animations/HOP BACK/HOP-BACK_page_0002.png" id="4_50r4w"] +[ext_resource type="Texture2D" uid="uid://cstm3bc1iyiou" path="res://src/enemy/enemy_types/7. chinthe/animations/ACTIVATE-BACK/ACTIVATE-BACK_page_0002.png" id="4_a1a5a"] +[ext_resource type="Texture2D" uid="uid://b7lk817ih82o7" path="res://src/enemy/enemy_types/7. chinthe/animations/HOP FRONT/HOP-FRONT_page_0003.png" id="5_7yoax"] +[ext_resource type="Texture2D" uid="uid://dip1urkpqfsgj" path="res://src/enemy/enemy_types/7. chinthe/animations/ACTIVATE-BACK/ACTIVATE-BACK_page_0003.png" id="5_h1q27"] +[ext_resource type="Texture2D" uid="uid://bgfqim1idm4kp" path="res://src/enemy/enemy_types/7. chinthe/animations/HOP BACK/HOP-BACK_page_0003.png" id="5_hcjtk"] +[ext_resource type="Texture2D" uid="uid://bmd5cgqk2vg5o" path="res://src/enemy/enemy_types/7. chinthe/animations/ACTIVATE-BACK/ACTIVATE-BACK_page_0004.png" id="6_5nhn3"] +[ext_resource type="Texture2D" uid="uid://d0jap5uvy72rj" path="res://src/enemy/enemy_types/7. chinthe/animations/HOP BACK/HOP-BACK_page_0004.png" id="6_8vac7"] +[ext_resource type="Texture2D" uid="uid://bseiwgxwdj8ih" path="res://src/enemy/enemy_types/7. chinthe/animations/HOP FRONT/HOP-FRONT_page_0004.png" id="6_by6kh"] +[ext_resource type="Texture2D" uid="uid://cxxeds0c84a8j" path="res://src/enemy/enemy_types/7. chinthe/animations/ACTIVATE-BACK/ACTIVATE-BACK_page_0005.png" id="7_bgt1u"] +[ext_resource type="Texture2D" uid="uid://b15t1kc6bu42u" path="res://src/enemy/enemy_types/7. chinthe/animations/HOP FRONT/HOP-FRONT_page_0005.png" id="7_ci7tq"] +[ext_resource type="Texture2D" uid="uid://cxwualwcihxf6" path="res://src/enemy/enemy_types/7. chinthe/animations/HOP BACK/HOP-BACK_page_0005.png" id="7_u7uex"] +[ext_resource type="Texture2D" uid="uid://cr2opgprfenav" path="res://src/enemy/enemy_types/7. chinthe/animations/HOP FRONT/HOP-FRONT_page_0006.png" id="8_an5j3"] +[ext_resource type="Texture2D" uid="uid://bfsocf0k8yioa" path="res://src/enemy/enemy_types/7. chinthe/animations/HOP BACK/HOP-BACK_page_0006.png" id="8_crifn"] +[ext_resource type="Texture2D" uid="uid://c14icwfjwg50p" path="res://src/enemy/enemy_types/7. chinthe/animations/ACTIVATE-BACK/ACTIVATE-BACK_page_0006.png" id="8_lo6gm"] +[ext_resource type="Texture2D" uid="uid://dbxdjn6o36k3c" path="res://src/enemy/enemy_types/7. chinthe/animations/HOP FRONT/HOP-FRONT_page_0007.png" id="9_ah8eo"] +[ext_resource type="Texture2D" uid="uid://c2nutnin4pm3" path="res://src/enemy/enemy_types/7. chinthe/animations/HOP BACK/HOP-BACK_page_0007.png" id="9_f2uxp"] +[ext_resource type="Texture2D" uid="uid://dxkjrr3wneg7p" path="res://src/enemy/enemy_types/7. chinthe/animations/ACTIVATE-FRONT/ACTIVATE-FRONT_page_0001.png" id="9_yrerp"] +[ext_resource type="Texture2D" uid="uid://ceyvr048ccsff" path="res://src/enemy/enemy_types/7. chinthe/animations/HOP FRONT/HOP-FRONT_page_0008.png" id="10_2o34q"] +[ext_resource type="Texture2D" uid="uid://b3ytuouobuup" path="res://src/enemy/enemy_types/7. chinthe/animations/HOP BACK/HOP-BACK_page_0008.png" id="10_bjvhl"] +[ext_resource type="Texture2D" uid="uid://dryfs7kwpt05m" path="res://src/enemy/enemy_types/7. chinthe/animations/ACTIVATE-FRONT/ACTIVATE-FRONT_page_0002.png" id="10_e08pp"] +[ext_resource type="Texture2D" uid="uid://beff1mhve0psp" path="res://src/enemy/enemy_types/7. chinthe/animations/HOP BACK/HOP-BACK_page_0009.png" id="11_04akx"] +[ext_resource type="Texture2D" uid="uid://cyir2u6s0a803" path="res://src/enemy/enemy_types/7. chinthe/animations/HOP FRONT/HOP-FRONT_page_0009.png" id="11_acq66"] +[ext_resource type="Texture2D" uid="uid://cdsong01o1xof" path="res://src/enemy/enemy_types/7. chinthe/animations/ACTIVATE-FRONT/ACTIVATE-FRONT_page_0003.png" id="11_rkc3l"] +[ext_resource type="Texture2D" uid="uid://cjowfifu2ds1k" path="res://src/enemy/enemy_types/7. chinthe/animations/HOP BACK/HOP-BACK_page_0010.png" id="12_3vtes"] +[ext_resource type="Texture2D" uid="uid://qi6ykbimr36j" path="res://src/enemy/enemy_types/7. chinthe/animations/HOP FRONT/HOP-FRONT_page_0010.png" id="12_r73tb"] +[ext_resource type="Texture2D" uid="uid://b756p2shusa0y" path="res://src/enemy/enemy_types/7. chinthe/animations/ACTIVATE-FRONT/ACTIVATE-FRONT_page_0004.png" id="12_w023d"] +[ext_resource type="Texture2D" uid="uid://c0ixmdqj6728s" path="res://src/enemy/enemy_types/7. chinthe/animations/HOP FRONT/HOP-FRONT_page_0011.png" id="13_c0pct"] +[ext_resource type="Texture2D" uid="uid://ccf5cdmbnv8xr" path="res://src/enemy/enemy_types/7. chinthe/animations/ACTIVATE-FRONT/ACTIVATE-FRONT_page_0005.png" id="13_gsd4b"] +[ext_resource type="Texture2D" uid="uid://dk3yw0kma6jrw" path="res://src/enemy/enemy_types/7. chinthe/animations/HOP BACK/HOP-BACK_page_0011.png" id="13_okyxa"] +[ext_resource type="Texture2D" uid="uid://dlga6cbuomfhi" path="res://src/enemy/enemy_types/7. chinthe/animations/HOP FRONT/HOP-FRONT_page_0012.png" id="14_fxh0g"] +[ext_resource type="Texture2D" uid="uid://bhxt86sqswrb8" path="res://src/enemy/enemy_types/7. chinthe/animations/HOP BACK/HOP-BACK_page_0012.png" id="14_vb0q8"] +[ext_resource type="Texture2D" uid="uid://bx2tm5grtctlp" path="res://src/enemy/enemy_types/7. chinthe/animations/ACTIVATE-FRONT/ACTIVATE-FRONT_page_0006.png" id="14_w3lnt"] +[ext_resource type="Texture2D" uid="uid://bqrd222snxwnl" path="res://src/enemy/enemy_types/7. chinthe/animations/ACTIVATE-SIDE/ACTIVATE-SIDE_page_0001.png" id="15_hflxm"] +[ext_resource type="Texture2D" uid="uid://b26x8xh3o81vs" path="res://src/enemy/enemy_types/7. chinthe/animations/HOP FRONT/HOP-FRONT_page_0013.png" id="15_rernf"] +[ext_resource type="Texture2D" uid="uid://cheahf8qonbgf" path="res://src/enemy/enemy_types/7. chinthe/animations/HOP BACK/HOP-BACK_page_0013.png" id="15_v8ycu"] +[ext_resource type="Texture2D" uid="uid://0knojjfwjtgv" path="res://src/enemy/enemy_types/7. chinthe/animations/HOP BACK/HOP-BACK_page_0014.png" id="16_3awat"] +[ext_resource type="Texture2D" uid="uid://dw3qwomarv3p5" path="res://src/enemy/enemy_types/7. chinthe/animations/HOP FRONT/HOP-FRONT_page_0014.png" id="16_pvgkg"] +[ext_resource type="Texture2D" uid="uid://do8v0wcpvcm5y" path="res://src/enemy/enemy_types/7. chinthe/animations/ACTIVATE-SIDE/ACTIVATE-SIDE_page_0002.png" id="16_tkoig"] +[ext_resource type="Texture2D" uid="uid://454bwm8i6to3" path="res://src/enemy/enemy_types/7. chinthe/animations/HOP FRONT/HOP-FRONT_page_0015.png" id="17_20o86"] +[ext_resource type="Texture2D" uid="uid://2jc2fo5rn4qt" path="res://src/enemy/enemy_types/7. chinthe/animations/ACTIVATE-SIDE/ACTIVATE-SIDE_page_0003.png" id="17_fe8py"] +[ext_resource type="Texture2D" uid="uid://gawp5d82ei1v" path="res://src/enemy/enemy_types/7. chinthe/animations/HOP BACK/HOP-BACK_page_0015.png" id="17_odt21"] +[ext_resource type="Texture2D" uid="uid://btau6dotyy0ia" path="res://src/enemy/enemy_types/7. chinthe/animations/HOP BACK/HOP-BACK_page_0016.png" id="18_fpbkg"] +[ext_resource type="Texture2D" uid="uid://iaisooai5b00" path="res://src/enemy/enemy_types/7. chinthe/animations/ACTIVATE-SIDE/ACTIVATE-SIDE_page_0004.png" id="18_r30cm"] +[ext_resource type="Texture2D" uid="uid://bt0pwh1vkb2s7" path="res://src/enemy/enemy_types/7. chinthe/animations/HOP FRONT/HOP-FRONT_page_0016.png" id="18_sfrde"] +[ext_resource type="Texture2D" uid="uid://bo1n0em5ko127" path="res://src/enemy/enemy_types/7. chinthe/animations/HOP FRONT/HOP-FRONT_page_0017.png" id="19_71etv"] +[ext_resource type="Texture2D" uid="uid://031jvbacuqil" path="res://src/enemy/enemy_types/7. chinthe/animations/HOP BACK/HOP-BACK_page_0017.png" id="19_76pi0"] +[ext_resource type="Texture2D" uid="uid://b2rg4bvpyecdx" path="res://src/enemy/enemy_types/7. chinthe/animations/ACTIVATE-SIDE/ACTIVATE-SIDE_page_0005.png" id="19_pu4mr"] +[ext_resource type="Texture2D" uid="uid://kb65mk270fi1" path="res://src/enemy/enemy_types/7. chinthe/animations/HOP BACK/HOP-BACK_page_0018.png" id="20_o3gx4"] +[ext_resource type="Texture2D" uid="uid://df6kiuum5x8mr" path="res://src/enemy/enemy_types/7. chinthe/animations/ACTIVATE-SIDE/ACTIVATE-SIDE_page_0006.png" id="20_whlmf"] +[ext_resource type="Texture2D" uid="uid://eh6puu82rihh" path="res://src/enemy/enemy_types/7. chinthe/animations/HOP FRONT/HOP-FRONT_page_0018.png" id="20_yjq2w"] +[ext_resource type="Texture2D" uid="uid://ca116jnrpdthm" path="res://src/enemy/enemy_types/7. chinthe/animations/HOP SIDE/HOP-SIDE_page_0001.png" id="39_bqkpb"] +[ext_resource type="Texture2D" uid="uid://dt8pg4upblis8" path="res://src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0001.png" id="39_cd8wr"] +[ext_resource type="Texture2D" uid="uid://72xvqeu4hl6q" path="res://src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0002.png" id="40_wn63w"] +[ext_resource type="Texture2D" uid="uid://bgd2y8bohe3qg" path="res://src/enemy/enemy_types/7. chinthe/animations/HOP SIDE/HOP-SIDE_page_0002.png" id="40_xt6k1"] +[ext_resource type="Texture2D" uid="uid://do6eu4jk5n3od" path="res://src/enemy/enemy_types/7. chinthe/animations/HOP SIDE/HOP-SIDE_page_0003.png" id="41_527rs"] +[ext_resource type="Texture2D" uid="uid://q7k840guefqk" path="res://src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0003.png" id="41_sjxqo"] +[ext_resource type="Texture2D" uid="uid://bexb8p0l0cve3" path="res://src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0004.png" id="42_oxbfk"] +[ext_resource type="Texture2D" uid="uid://c7h56b5iwvf2c" path="res://src/enemy/enemy_types/7. chinthe/animations/HOP SIDE/HOP-SIDE_page_0004.png" id="42_wnf4a"] +[ext_resource type="Texture2D" uid="uid://cns2ntxssdwi8" path="res://src/enemy/enemy_types/7. chinthe/animations/HOP SIDE/HOP-SIDE_page_0005.png" id="43_khm33"] +[ext_resource type="Texture2D" uid="uid://dgpwachsks3xp" path="res://src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0005.png" id="43_tk877"] +[ext_resource type="Texture2D" uid="uid://b11jugjoeemwi" path="res://src/enemy/enemy_types/7. chinthe/animations/HOP SIDE/HOP-SIDE_page_0006.png" id="44_q25x3"] +[ext_resource type="Texture2D" uid="uid://bcwjdqnly70nt" path="res://src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0006.png" id="44_taq5y"] +[ext_resource type="Texture2D" uid="uid://d37b67irukipu" path="res://src/enemy/enemy_types/7. chinthe/animations/HOP SIDE/HOP-SIDE_page_0007.png" id="45_3iu4q"] +[ext_resource type="Texture2D" uid="uid://c3oh1wfc5jqai" path="res://src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0007.png" id="45_abf28"] +[ext_resource type="Texture2D" uid="uid://do5dhoe355yyh" path="res://src/enemy/enemy_types/7. chinthe/animations/HOP SIDE/HOP-SIDE_page_0008.png" id="46_f7m0w"] +[ext_resource type="Texture2D" uid="uid://wsvvrx6ek2e3" path="res://src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0008.png" id="46_yv3t6"] +[ext_resource type="Texture2D" uid="uid://cbijkmo1hob35" path="res://src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0009.png" id="47_8sbse"] +[ext_resource type="Texture2D" uid="uid://b8kccsf3n2biq" path="res://src/enemy/enemy_types/7. chinthe/animations/HOP SIDE/HOP-SIDE_page_0009.png" id="47_ajo64"] +[ext_resource type="Texture2D" uid="uid://dl3vfxi5rndxd" path="res://src/enemy/enemy_types/7. chinthe/animations/HOP SIDE/HOP-SIDE_page_0010.png" id="48_ptk6f"] +[ext_resource type="Texture2D" uid="uid://eso4qhcusm4" path="res://src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0010.png" id="48_qffrk"] +[ext_resource type="Texture2D" uid="uid://bg45bxbu16vol" path="res://src/enemy/enemy_types/7. chinthe/animations/HOP SIDE/HOP-SIDE_page_0011.png" id="49_2530t"] +[ext_resource type="Texture2D" uid="uid://dvaqbv6n525lb" path="res://src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0011.png" id="49_efex0"] +[ext_resource type="Texture2D" uid="uid://bw8p1oe3353uy" path="res://src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0012.png" id="50_1cgr5"] +[ext_resource type="Texture2D" uid="uid://b4gd3j0a0tb8a" path="res://src/enemy/enemy_types/7. chinthe/animations/HOP SIDE/HOP-SIDE_page_0012.png" id="50_shci7"] +[ext_resource type="Texture2D" uid="uid://5pj6asie3de1" path="res://src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0013.png" id="51_slsns"] +[ext_resource type="Texture2D" uid="uid://b40l6fsdqsad1" path="res://src/enemy/enemy_types/7. chinthe/animations/HOP SIDE/HOP-SIDE_page_0013.png" id="51_x6i3u"] +[ext_resource type="Texture2D" uid="uid://1r5sm6vvn2m6" path="res://src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0014.png" id="52_g4ewi"] +[ext_resource type="Texture2D" uid="uid://duwfyn662tspf" path="res://src/enemy/enemy_types/7. chinthe/animations/HOP SIDE/HOP-SIDE_page_0014.png" id="52_syjm0"] +[ext_resource type="Texture2D" uid="uid://8xj0ko2g2deg" path="res://src/enemy/enemy_types/7. chinthe/animations/HOP SIDE/HOP-SIDE_page_0015.png" id="53_u06t8"] +[ext_resource type="Texture2D" uid="uid://m4clglkawftb" path="res://src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0015.png" id="53_udart"] +[ext_resource type="Texture2D" uid="uid://do1ewuo4yifrq" path="res://src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0016.png" id="54_kilb8"] +[ext_resource type="Texture2D" uid="uid://dshrqgojp4yca" path="res://src/enemy/enemy_types/7. chinthe/animations/HOP SIDE/HOP-SIDE_page_0016.png" id="54_onul4"] +[ext_resource type="Texture2D" uid="uid://drmbggwyc3lhu" path="res://src/enemy/enemy_types/7. chinthe/animations/HOP SIDE/HOP-SIDE_page_0017.png" id="55_5syoy"] +[ext_resource type="Texture2D" uid="uid://ccx6r2ddh1i7a" path="res://src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0017.png" id="55_sapra"] +[ext_resource type="Texture2D" uid="uid://5lo4a55mwhmc" path="res://src/enemy/enemy_types/7. chinthe/animations/HOP SIDE/HOP-SIDE_page_0018.png" id="56_1bw8i"] +[ext_resource type="Texture2D" uid="uid://jlk8y8njpr2h" path="res://src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0018.png" id="56_37mk7"] +[ext_resource type="Texture2D" uid="uid://di6654s8itcp0" path="res://src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0019.png" id="57_pyfpi"] +[ext_resource type="Texture2D" uid="uid://cfedqk2w3nb24" path="res://src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0001.png" id="57_syjm0"] +[ext_resource type="Texture2D" uid="uid://6rwqt33pm75r" path="res://src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0020.png" id="58_bo0u7"] [ext_resource type="Script" uid="uid://6edayafleq8y" path="res://src/hitbox/Hitbox.cs" id="58_o4frm"] -[ext_resource type="Texture2D" uid="uid://v46ar0apf4lh" path="res://src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0002.png" id="58_u06t8"] -[ext_resource type="Texture2D" uid="uid://dp3qnmhbdq6yb" path="res://src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0021.png" id="59_mmg6v"] -[ext_resource type="Texture2D" uid="uid://dlxfcvj1a23cd" path="res://src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0003.png" id="59_onul4"] -[ext_resource type="Texture2D" uid="uid://cx5f8gqwhii0s" path="res://src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0004.png" id="60_5syoy"] -[ext_resource type="Texture2D" uid="uid://kij4jgwp18tt" path="res://src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0022.png" id="60_ugn17"] -[ext_resource type="Texture2D" uid="uid://c1q0orfx8blpl" path="res://src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0005.png" id="61_1bw8i"] -[ext_resource type="Texture2D" uid="uid://1pp0crfb7hks" path="res://src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0023.png" id="61_6avl1"] -[ext_resource type="Texture2D" uid="uid://do6gxsfcuw0a7" path="res://src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0024.png" id="62_4qj4l"] -[ext_resource type="Texture2D" uid="uid://df871udy5qulr" path="res://src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0006.png" id="62_wjklo"] -[ext_resource type="Texture2D" uid="uid://bo4u5kafsy054" path="res://src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0025.png" id="63_65528"] -[ext_resource type="Texture2D" uid="uid://br4ygmwb3nh4w" path="res://src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0007.png" id="63_sodds"] -[ext_resource type="Texture2D" uid="uid://b7q1ipnk2ephr" path="res://src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0008.png" id="64_dh2jp"] -[ext_resource type="Texture2D" uid="uid://dtkqg5y1nhy6r" path="res://src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0026.png" id="64_gu26t"] -[ext_resource type="Texture2D" uid="uid://dadsnney0x42" path="res://src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0009.png" id="65_l2ena"] -[ext_resource type="Texture2D" uid="uid://co1vs3bnsoa7" path="res://src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0027.png" id="65_ynv1n"] -[ext_resource type="Texture2D" uid="uid://y8a3iou4qln8" path="res://src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0028.png" id="66_gixwu"] -[ext_resource type="Texture2D" uid="uid://vmx05ymn63li" path="res://src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0010.png" id="66_s6jhv"] -[ext_resource type="Texture2D" uid="uid://csf7n7f36uipy" path="res://src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0011.png" id="67_e64o6"] -[ext_resource type="Texture2D" uid="uid://bqtg2bdgpq2rv" path="res://src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0029.png" id="67_g8xjv"] -[ext_resource type="Texture2D" uid="uid://cg0ha8j7o1oyu" path="res://src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0012.png" id="68_eyy1p"] -[ext_resource type="Texture2D" uid="uid://cj4gajmey2ffu" path="res://src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0030.png" id="68_xgubf"] -[ext_resource type="Texture2D" uid="uid://capfbno5347av" path="res://src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0031.png" id="69_spgx8"] -[ext_resource type="Texture2D" uid="uid://d2k0e3e6wrge6" path="res://src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0013.png" id="69_yof82"] -[ext_resource type="Texture2D" uid="uid://bdg54lnig84jf" path="res://src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0032.png" id="70_gjh07"] -[ext_resource type="Texture2D" uid="uid://dj25eww6n0s14" path="res://src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0014.png" id="70_nossm"] -[ext_resource type="Texture2D" uid="uid://clkh7swfacmnl" path="res://src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0015.png" id="71_amnwg"] -[ext_resource type="Texture2D" uid="uid://d2ih2oqngbsln" path="res://src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0033.png" id="71_cr2rb"] -[ext_resource type="Texture2D" uid="uid://dr4tn3h51btjv" path="res://src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0034.png" id="72_bupp5"] -[ext_resource type="Texture2D" uid="uid://b5nslpq2nf5j" path="res://src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0016.png" id="72_ycqjk"] -[ext_resource type="Texture2D" uid="uid://c8mgfqsjkltk4" path="res://src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0017.png" id="73_hv728"] -[ext_resource type="Texture2D" uid="uid://dojq8vxobaqqa" path="res://src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0035.png" id="73_j8se3"] -[ext_resource type="Texture2D" uid="uid://cbr4c44urpquh" path="res://src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0036.png" id="74_7n2ap"] -[ext_resource type="Texture2D" uid="uid://cl4ahinbw38km" path="res://src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0018.png" id="74_enbvd"] -[ext_resource type="Texture2D" uid="uid://b2i1up3o1thk8" path="res://src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0037.png" id="75_c05ix"] -[ext_resource type="Texture2D" uid="uid://ddumhx8gbawkt" path="res://src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0019.png" id="75_fn0g1"] -[ext_resource type="Texture2D" uid="uid://cvx6bqxlqic28" path="res://src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0020.png" id="76_a1a5a"] -[ext_resource type="Texture2D" uid="uid://cs3ffswn6r2vj" path="res://src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0038.png" id="76_o4sme"] -[ext_resource type="Texture2D" uid="uid://d0jwb06jsit3k" path="res://src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0039.png" id="77_5laso"] -[ext_resource type="Texture2D" uid="uid://dp4dyxjvvf11t" path="res://src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0021.png" id="77_h1q27"] -[ext_resource type="Texture2D" uid="uid://bfgpfrnu55fvd" path="res://src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0022.png" id="78_5nhn3"] -[ext_resource type="Texture2D" uid="uid://bc340i18dejwu" path="res://src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0040.png" id="78_7mbxa"] -[ext_resource type="Texture2D" uid="uid://blyndvuc8elvn" path="res://src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0023.png" id="79_bgt1u"] -[ext_resource type="Texture2D" uid="uid://b0yfrwc83u6yu" path="res://src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0041.png" id="79_m1x6w"] -[ext_resource type="Texture2D" uid="uid://bxufrxhi1f6w1" path="res://src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0024.png" id="80_lo6gm"] -[ext_resource type="Texture2D" uid="uid://b7sbrrb6uth4m" path="res://src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0025.png" id="81_yrerp"] -[ext_resource type="Texture2D" uid="uid://g3jg26dtwbwn" path="res://src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0026.png" id="82_e08pp"] -[ext_resource type="Texture2D" uid="uid://b16jouwprfqwa" path="res://src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0027.png" id="83_rkc3l"] -[ext_resource type="Texture2D" uid="uid://b34kahr1kgxxw" path="res://src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0028.png" id="84_w023d"] -[ext_resource type="Texture2D" uid="uid://catbl4pjo72ox" path="res://src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0029.png" id="85_gsd4b"] -[ext_resource type="Texture2D" uid="uid://dbg3r41b0pq72" path="res://src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0030.png" id="86_w3lnt"] -[ext_resource type="Texture2D" uid="uid://b575g3v01jphe" path="res://src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0031.png" id="87_hflxm"] -[ext_resource type="Texture2D" uid="uid://cc3evj00rj3a4" path="res://src/enemy/enemy_types/7. chinte/animations/INACTIVE BACK.png" id="116_8ver2"] -[ext_resource type="Texture2D" uid="uid://bxv6qhhnwljcu" path="res://src/enemy/enemy_types/7. chinte/animations/INACTIVE FRONT.png" id="117_bpa81"] -[ext_resource type="Texture2D" uid="uid://6og6nw440rba" path="res://src/enemy/enemy_types/7. chinte/animations/INACTIVE SIDE.png" id="118_f7hsl"] -[ext_resource type="Texture2D" uid="uid://c321u4x7ii5i2" path="res://src/enemy/enemy_types/7. chinte/animations/TELEPORT/TELEPORT_page_0001.png" id="150_1cgr5"] -[ext_resource type="Texture2D" uid="uid://bjn32jqcqlm70" path="res://src/enemy/enemy_types/7. chinte/animations/TELEPORT/TELEPORT_page_0002.png" id="151_slsns"] -[ext_resource type="Texture2D" uid="uid://0arlp5ks8xb2" path="res://src/enemy/enemy_types/7. chinte/animations/TELEPORT/TELEPORT_page_0003.png" id="152_g4ewi"] -[ext_resource type="Texture2D" uid="uid://35ujy0kklmeh" path="res://src/enemy/enemy_types/7. chinte/animations/TELEPORT/TELEPORT_page_0004.png" id="153_udart"] -[ext_resource type="Texture2D" uid="uid://dye6h7vfurqam" path="res://src/enemy/enemy_types/7. chinte/animations/TELEPORT/TELEPORT_page_0005.png" id="154_kilb8"] -[ext_resource type="Texture2D" uid="uid://cndpxx2puyhlu" path="res://src/enemy/enemy_types/7. chinte/animations/TELEPORT/TELEPORT_page_0006.png" id="155_sapra"] -[ext_resource type="Texture2D" uid="uid://7i6ax70hh880" path="res://src/enemy/enemy_types/7. chinte/animations/TELEPORT/TELEPORT_page_0007.png" id="156_37mk7"] -[ext_resource type="Texture2D" uid="uid://7q8kbguc0odk" path="res://src/enemy/enemy_types/7. chinte/animations/TELEPORT/TELEPORT_page_0008.png" id="157_pyfpi"] -[ext_resource type="Texture2D" uid="uid://75mrdvb1vy77" path="res://src/enemy/enemy_types/7. chinte/animations/TELEPORT/TELEPORT_page_0009.png" id="158_bo0u7"] -[ext_resource type="Texture2D" uid="uid://xp31l3govdc6" path="res://src/enemy/enemy_types/7. chinte/animations/TELEPORT/TELEPORT_page_0010.png" id="159_mmg6v"] -[ext_resource type="Texture2D" uid="uid://cdv6qy3hdbqnb" path="res://src/enemy/enemy_types/7. chinte/animations/TELEPORT/TELEPORT_page_0011.png" id="160_ugn17"] +[ext_resource type="Texture2D" uid="uid://v46ar0apf4lh" path="res://src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0002.png" id="58_u06t8"] +[ext_resource type="Texture2D" uid="uid://dp3qnmhbdq6yb" path="res://src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0021.png" id="59_mmg6v"] +[ext_resource type="Texture2D" uid="uid://dlxfcvj1a23cd" path="res://src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0003.png" id="59_onul4"] +[ext_resource type="Texture2D" uid="uid://cx5f8gqwhii0s" path="res://src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0004.png" id="60_5syoy"] +[ext_resource type="Texture2D" uid="uid://kij4jgwp18tt" path="res://src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0022.png" id="60_ugn17"] +[ext_resource type="Texture2D" uid="uid://c1q0orfx8blpl" path="res://src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0005.png" id="61_1bw8i"] +[ext_resource type="Texture2D" uid="uid://1pp0crfb7hks" path="res://src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0023.png" id="61_6avl1"] +[ext_resource type="Texture2D" uid="uid://do6gxsfcuw0a7" path="res://src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0024.png" id="62_4qj4l"] +[ext_resource type="Texture2D" uid="uid://df871udy5qulr" path="res://src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0006.png" id="62_wjklo"] +[ext_resource type="Texture2D" uid="uid://bo4u5kafsy054" path="res://src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0025.png" id="63_65528"] +[ext_resource type="Texture2D" uid="uid://br4ygmwb3nh4w" path="res://src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0007.png" id="63_sodds"] +[ext_resource type="Texture2D" uid="uid://b7q1ipnk2ephr" path="res://src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0008.png" id="64_dh2jp"] +[ext_resource type="Texture2D" uid="uid://dtkqg5y1nhy6r" path="res://src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0026.png" id="64_gu26t"] +[ext_resource type="Texture2D" uid="uid://dadsnney0x42" path="res://src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0009.png" id="65_l2ena"] +[ext_resource type="Texture2D" uid="uid://co1vs3bnsoa7" path="res://src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0027.png" id="65_ynv1n"] +[ext_resource type="Texture2D" uid="uid://y8a3iou4qln8" path="res://src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0028.png" id="66_gixwu"] +[ext_resource type="Texture2D" uid="uid://vmx05ymn63li" path="res://src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0010.png" id="66_s6jhv"] +[ext_resource type="Texture2D" uid="uid://csf7n7f36uipy" path="res://src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0011.png" id="67_e64o6"] +[ext_resource type="Texture2D" uid="uid://bqtg2bdgpq2rv" path="res://src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0029.png" id="67_g8xjv"] +[ext_resource type="Texture2D" uid="uid://cg0ha8j7o1oyu" path="res://src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0012.png" id="68_eyy1p"] +[ext_resource type="Texture2D" uid="uid://cj4gajmey2ffu" path="res://src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0030.png" id="68_xgubf"] +[ext_resource type="Texture2D" uid="uid://capfbno5347av" path="res://src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0031.png" id="69_spgx8"] +[ext_resource type="Texture2D" uid="uid://d2k0e3e6wrge6" path="res://src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0013.png" id="69_yof82"] +[ext_resource type="Texture2D" uid="uid://bdg54lnig84jf" path="res://src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0032.png" id="70_gjh07"] +[ext_resource type="Texture2D" uid="uid://dj25eww6n0s14" path="res://src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0014.png" id="70_nossm"] +[ext_resource type="Texture2D" uid="uid://clkh7swfacmnl" path="res://src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0015.png" id="71_amnwg"] +[ext_resource type="Texture2D" uid="uid://d2ih2oqngbsln" path="res://src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0033.png" id="71_cr2rb"] +[ext_resource type="Texture2D" uid="uid://dr4tn3h51btjv" path="res://src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0034.png" id="72_bupp5"] +[ext_resource type="Texture2D" uid="uid://b5nslpq2nf5j" path="res://src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0016.png" id="72_ycqjk"] +[ext_resource type="Texture2D" uid="uid://c8mgfqsjkltk4" path="res://src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0017.png" id="73_hv728"] +[ext_resource type="Texture2D" uid="uid://dojq8vxobaqqa" path="res://src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0035.png" id="73_j8se3"] +[ext_resource type="Texture2D" uid="uid://cbr4c44urpquh" path="res://src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0036.png" id="74_7n2ap"] +[ext_resource type="Texture2D" uid="uid://cl4ahinbw38km" path="res://src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0018.png" id="74_enbvd"] +[ext_resource type="Texture2D" uid="uid://b2i1up3o1thk8" path="res://src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0037.png" id="75_c05ix"] +[ext_resource type="Texture2D" uid="uid://ddumhx8gbawkt" path="res://src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0019.png" id="75_fn0g1"] +[ext_resource type="Texture2D" uid="uid://cvx6bqxlqic28" path="res://src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0020.png" id="76_a1a5a"] +[ext_resource type="Texture2D" uid="uid://cs3ffswn6r2vj" path="res://src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0038.png" id="76_o4sme"] +[ext_resource type="Texture2D" uid="uid://d0jwb06jsit3k" path="res://src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0039.png" id="77_5laso"] +[ext_resource type="Texture2D" uid="uid://dp4dyxjvvf11t" path="res://src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0021.png" id="77_h1q27"] +[ext_resource type="Texture2D" uid="uid://bfgpfrnu55fvd" path="res://src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0022.png" id="78_5nhn3"] +[ext_resource type="Texture2D" uid="uid://bc340i18dejwu" path="res://src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0040.png" id="78_7mbxa"] +[ext_resource type="Texture2D" uid="uid://blyndvuc8elvn" path="res://src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0023.png" id="79_bgt1u"] +[ext_resource type="Texture2D" uid="uid://b0yfrwc83u6yu" path="res://src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0041.png" id="79_m1x6w"] +[ext_resource type="Texture2D" uid="uid://bxufrxhi1f6w1" path="res://src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0024.png" id="80_lo6gm"] +[ext_resource type="Texture2D" uid="uid://b7sbrrb6uth4m" path="res://src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0025.png" id="81_yrerp"] +[ext_resource type="Texture2D" uid="uid://g3jg26dtwbwn" path="res://src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0026.png" id="82_e08pp"] +[ext_resource type="Texture2D" uid="uid://b16jouwprfqwa" path="res://src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0027.png" id="83_rkc3l"] +[ext_resource type="Texture2D" uid="uid://b34kahr1kgxxw" path="res://src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0028.png" id="84_w023d"] +[ext_resource type="Texture2D" uid="uid://catbl4pjo72ox" path="res://src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0029.png" id="85_gsd4b"] +[ext_resource type="Texture2D" uid="uid://dbg3r41b0pq72" path="res://src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0030.png" id="86_w3lnt"] +[ext_resource type="Texture2D" uid="uid://b575g3v01jphe" path="res://src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0031.png" id="87_hflxm"] +[ext_resource type="Texture2D" uid="uid://cc3evj00rj3a4" path="res://src/enemy/enemy_types/7. chinthe/animations/INACTIVE BACK.png" id="116_8ver2"] +[ext_resource type="Texture2D" uid="uid://bxv6qhhnwljcu" path="res://src/enemy/enemy_types/7. chinthe/animations/INACTIVE FRONT.png" id="117_bpa81"] +[ext_resource type="Texture2D" uid="uid://6og6nw440rba" path="res://src/enemy/enemy_types/7. chinthe/animations/INACTIVE SIDE.png" id="118_f7hsl"] +[ext_resource type="Texture2D" uid="uid://c321u4x7ii5i2" path="res://src/enemy/enemy_types/7. chinthe/animations/TELEPORT/TELEPORT_page_0001.png" id="150_1cgr5"] +[ext_resource type="Texture2D" uid="uid://bjn32jqcqlm70" path="res://src/enemy/enemy_types/7. chinthe/animations/TELEPORT/TELEPORT_page_0002.png" id="151_slsns"] +[ext_resource type="Texture2D" uid="uid://0arlp5ks8xb2" path="res://src/enemy/enemy_types/7. chinthe/animations/TELEPORT/TELEPORT_page_0003.png" id="152_g4ewi"] +[ext_resource type="Texture2D" uid="uid://35ujy0kklmeh" path="res://src/enemy/enemy_types/7. chinthe/animations/TELEPORT/TELEPORT_page_0004.png" id="153_udart"] +[ext_resource type="Texture2D" uid="uid://dye6h7vfurqam" path="res://src/enemy/enemy_types/7. chinthe/animations/TELEPORT/TELEPORT_page_0005.png" id="154_kilb8"] +[ext_resource type="Texture2D" uid="uid://cndpxx2puyhlu" path="res://src/enemy/enemy_types/7. chinthe/animations/TELEPORT/TELEPORT_page_0006.png" id="155_sapra"] +[ext_resource type="Texture2D" uid="uid://7i6ax70hh880" path="res://src/enemy/enemy_types/7. chinthe/animations/TELEPORT/TELEPORT_page_0007.png" id="156_37mk7"] +[ext_resource type="Texture2D" uid="uid://7q8kbguc0odk" path="res://src/enemy/enemy_types/7. chinthe/animations/TELEPORT/TELEPORT_page_0008.png" id="157_pyfpi"] +[ext_resource type="Texture2D" uid="uid://75mrdvb1vy77" path="res://src/enemy/enemy_types/7. chinthe/animations/TELEPORT/TELEPORT_page_0009.png" id="158_bo0u7"] +[ext_resource type="Texture2D" uid="uid://xp31l3govdc6" path="res://src/enemy/enemy_types/7. chinthe/animations/TELEPORT/TELEPORT_page_0010.png" id="159_mmg6v"] +[ext_resource type="Texture2D" uid="uid://cdv6qy3hdbqnb" path="res://src/enemy/enemy_types/7. chinthe/animations/TELEPORT/TELEPORT_page_0011.png" id="160_ugn17"] [sub_resource type="ViewportTexture" id="ViewportTexture_h1kaf"] viewport_path = NodePath("Sprite3D/SubViewportContainer/SubViewport") @@ -1368,6 +1368,7 @@ render_priority = 100 texture = SubResource("ViewportTexture_h1kaf") [node name="SubViewportContainer" type="SubViewportContainer" parent="Sprite3D"] +visibility_layer = 0 offset_right = 40.0 offset_bottom = 40.0 diff --git a/src/enemy/enemy_types/7. chinte/Chinte.cs b/src/enemy/enemy_types/7. chinthe/Chinthe.cs similarity index 100% rename from src/enemy/enemy_types/7. chinte/Chinte.cs rename to src/enemy/enemy_types/7. chinthe/Chinthe.cs diff --git a/src/enemy/enemy_types/7. chinte/Chinte.cs.uid b/src/enemy/enemy_types/7. chinthe/Chinthe.cs.uid similarity index 100% rename from src/enemy/enemy_types/7. chinte/Chinte.cs.uid rename to src/enemy/enemy_types/7. chinthe/Chinthe.cs.uid diff --git a/src/enemy/enemy_types/7. chinte/Chinte.tscn b/src/enemy/enemy_types/7. chinthe/Chinthe.tscn similarity index 67% rename from src/enemy/enemy_types/7. chinte/Chinte.tscn rename to src/enemy/enemy_types/7. chinthe/Chinthe.tscn index 74b8b0ad..fc9d43f8 100644 --- a/src/enemy/enemy_types/7. chinte/Chinte.tscn +++ b/src/enemy/enemy_types/7. chinthe/Chinthe.tscn @@ -1,26 +1,7 @@ -[gd_scene load_steps=8 format=3 uid="uid://c6tqt27ql8s35"] +[gd_scene load_steps=6 format=3 uid="uid://c6tqt27ql8s35"] -[ext_resource type="Script" uid="uid://jjulhqd5g3be" path="res://src/enemy/enemy_types/13. gold sproingy/GoldSproingy.cs" id="1_ekh38"] -[ext_resource type="Script" uid="uid://dnkmr0eq1sij0" path="res://src/enemy/EnemyStatResource.cs" id="2_cqc5j"] -[ext_resource type="PackedScene" uid="uid://byd7cwxq1be6f" path="res://src/enemy/enemy_types/7. chinte/ChinteModelView.tscn" id="3_ncr2e"] - -[sub_resource type="Resource" id="Resource_o3b7p"] -script = ExtResource("2_cqc5j") -CurrentHP = 50.0 -MaximumHP = 50.0 -CurrentAttack = 20 -CurrentDefense = 5 -MaxAttack = 20 -MaxDefense = 5 -ExpFromDefeat = 15 -Luck = 0.05 -TelluricResistance = 0.0 -AeolicResistance = 0.0 -HydricResistance = 0.0 -IgneousResistance = 0.0 -FerrumResistance = 0.0 -DropsSoulGemChance = 0.75 -metadata/_custom_type_script = ExtResource("2_cqc5j") +[ext_resource type="Script" uid="uid://fwtjthix6awv" path="res://src/enemy/enemy_types/7. chinthe/Chinthe.cs" id="1_vw2ww"] +[ext_resource type="PackedScene" uid="uid://byd7cwxq1be6f" path="res://src/enemy/enemy_types/7. chinthe/ChinteModelView.tscn" id="3_ncr2e"] [sub_resource type="CapsuleShape3D" id="CapsuleShape3D_cwfph"] radius = 0.226425 @@ -41,10 +22,10 @@ axis_lock_linear_y = true axis_lock_angular_x = true contact_monitor = true max_contacts_reported = 1 -script = ExtResource("1_ekh38") -_enemyStatResource = SubResource("Resource_o3b7p") +script = ExtResource("1_vw2ww") -[node name="CollisionShape3D" type="CollisionShape3D" parent="."] +[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, 0, 0) shape = SubResource("CapsuleShape3D_cwfph") diff --git a/src/enemy/enemy_types/7. chinte/animations/ACTIVATE-BACK/ACTIVATE-BACK_page_0001.png b/src/enemy/enemy_types/7. chinthe/animations/ACTIVATE-BACK/ACTIVATE-BACK_page_0001.png similarity index 100% rename from src/enemy/enemy_types/7. chinte/animations/ACTIVATE-BACK/ACTIVATE-BACK_page_0001.png rename to src/enemy/enemy_types/7. chinthe/animations/ACTIVATE-BACK/ACTIVATE-BACK_page_0001.png diff --git a/src/enemy/enemy_types/7. chinte/animations/ACTIVATE-BACK/ACTIVATE-BACK_page_0001.png.import b/src/enemy/enemy_types/7. chinthe/animations/ACTIVATE-BACK/ACTIVATE-BACK_page_0001.png.import similarity index 64% rename from src/enemy/enemy_types/7. chinte/animations/ACTIVATE-BACK/ACTIVATE-BACK_page_0001.png.import rename to src/enemy/enemy_types/7. chinthe/animations/ACTIVATE-BACK/ACTIVATE-BACK_page_0001.png.import index f3d10a00..51f47521 100644 --- a/src/enemy/enemy_types/7. chinte/animations/ACTIVATE-BACK/ACTIVATE-BACK_page_0001.png.import +++ b/src/enemy/enemy_types/7. chinthe/animations/ACTIVATE-BACK/ACTIVATE-BACK_page_0001.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://8qj6se762l6e" -path="res://.godot/imported/ACTIVATE-BACK_page_0001.png-f1a414d245df5675a6a7e9fadf9b2ce3.ctex" +path="res://.godot/imported/ACTIVATE-BACK_page_0001.png-9927c971ce2bf5abc560e9fc27f79fc9.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/7. chinte/animations/ACTIVATE-BACK/ACTIVATE-BACK_page_0001.png" -dest_files=["res://.godot/imported/ACTIVATE-BACK_page_0001.png-f1a414d245df5675a6a7e9fadf9b2ce3.ctex"] +source_file="res://src/enemy/enemy_types/7. chinthe/animations/ACTIVATE-BACK/ACTIVATE-BACK_page_0001.png" +dest_files=["res://.godot/imported/ACTIVATE-BACK_page_0001.png-9927c971ce2bf5abc560e9fc27f79fc9.ctex"] [params] diff --git a/src/enemy/enemy_types/7. chinte/animations/ACTIVATE-BACK/ACTIVATE-BACK_page_0002.png b/src/enemy/enemy_types/7. chinthe/animations/ACTIVATE-BACK/ACTIVATE-BACK_page_0002.png similarity index 100% rename from src/enemy/enemy_types/7. chinte/animations/ACTIVATE-BACK/ACTIVATE-BACK_page_0002.png rename to src/enemy/enemy_types/7. chinthe/animations/ACTIVATE-BACK/ACTIVATE-BACK_page_0002.png diff --git a/src/enemy/enemy_types/7. chinte/animations/ACTIVATE-BACK/ACTIVATE-BACK_page_0002.png.import b/src/enemy/enemy_types/7. chinthe/animations/ACTIVATE-BACK/ACTIVATE-BACK_page_0002.png.import similarity index 64% rename from src/enemy/enemy_types/7. chinte/animations/ACTIVATE-BACK/ACTIVATE-BACK_page_0002.png.import rename to src/enemy/enemy_types/7. chinthe/animations/ACTIVATE-BACK/ACTIVATE-BACK_page_0002.png.import index 5c3ee16a..7c89ed02 100644 --- a/src/enemy/enemy_types/7. chinte/animations/ACTIVATE-BACK/ACTIVATE-BACK_page_0002.png.import +++ b/src/enemy/enemy_types/7. chinthe/animations/ACTIVATE-BACK/ACTIVATE-BACK_page_0002.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://cstm3bc1iyiou" -path="res://.godot/imported/ACTIVATE-BACK_page_0002.png-6506036f557ae6a150bec42c116a3544.ctex" +path="res://.godot/imported/ACTIVATE-BACK_page_0002.png-74dc4c48c06181b680d1f291847107f1.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/7. chinte/animations/ACTIVATE-BACK/ACTIVATE-BACK_page_0002.png" -dest_files=["res://.godot/imported/ACTIVATE-BACK_page_0002.png-6506036f557ae6a150bec42c116a3544.ctex"] +source_file="res://src/enemy/enemy_types/7. chinthe/animations/ACTIVATE-BACK/ACTIVATE-BACK_page_0002.png" +dest_files=["res://.godot/imported/ACTIVATE-BACK_page_0002.png-74dc4c48c06181b680d1f291847107f1.ctex"] [params] diff --git a/src/enemy/enemy_types/7. chinte/animations/ACTIVATE-BACK/ACTIVATE-BACK_page_0003.png b/src/enemy/enemy_types/7. chinthe/animations/ACTIVATE-BACK/ACTIVATE-BACK_page_0003.png similarity index 100% rename from src/enemy/enemy_types/7. chinte/animations/ACTIVATE-BACK/ACTIVATE-BACK_page_0003.png rename to src/enemy/enemy_types/7. chinthe/animations/ACTIVATE-BACK/ACTIVATE-BACK_page_0003.png diff --git a/src/enemy/enemy_types/7. chinte/animations/ACTIVATE-BACK/ACTIVATE-BACK_page_0003.png.import b/src/enemy/enemy_types/7. chinthe/animations/ACTIVATE-BACK/ACTIVATE-BACK_page_0003.png.import similarity index 64% rename from src/enemy/enemy_types/7. chinte/animations/ACTIVATE-BACK/ACTIVATE-BACK_page_0003.png.import rename to src/enemy/enemy_types/7. chinthe/animations/ACTIVATE-BACK/ACTIVATE-BACK_page_0003.png.import index bcc77b22..cdbe2cb7 100644 --- a/src/enemy/enemy_types/7. chinte/animations/ACTIVATE-BACK/ACTIVATE-BACK_page_0003.png.import +++ b/src/enemy/enemy_types/7. chinthe/animations/ACTIVATE-BACK/ACTIVATE-BACK_page_0003.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://dip1urkpqfsgj" -path="res://.godot/imported/ACTIVATE-BACK_page_0003.png-86dbce37e5253e33bea75529fbdb5ff3.ctex" +path="res://.godot/imported/ACTIVATE-BACK_page_0003.png-11941924a649b5d4ff585d88dccbc573.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/7. chinte/animations/ACTIVATE-BACK/ACTIVATE-BACK_page_0003.png" -dest_files=["res://.godot/imported/ACTIVATE-BACK_page_0003.png-86dbce37e5253e33bea75529fbdb5ff3.ctex"] +source_file="res://src/enemy/enemy_types/7. chinthe/animations/ACTIVATE-BACK/ACTIVATE-BACK_page_0003.png" +dest_files=["res://.godot/imported/ACTIVATE-BACK_page_0003.png-11941924a649b5d4ff585d88dccbc573.ctex"] [params] diff --git a/src/enemy/enemy_types/7. chinte/animations/ACTIVATE-BACK/ACTIVATE-BACK_page_0004.png b/src/enemy/enemy_types/7. chinthe/animations/ACTIVATE-BACK/ACTIVATE-BACK_page_0004.png similarity index 100% rename from src/enemy/enemy_types/7. chinte/animations/ACTIVATE-BACK/ACTIVATE-BACK_page_0004.png rename to src/enemy/enemy_types/7. chinthe/animations/ACTIVATE-BACK/ACTIVATE-BACK_page_0004.png diff --git a/src/enemy/enemy_types/7. chinte/animations/ACTIVATE-BACK/ACTIVATE-BACK_page_0004.png.import b/src/enemy/enemy_types/7. chinthe/animations/ACTIVATE-BACK/ACTIVATE-BACK_page_0004.png.import similarity index 64% rename from src/enemy/enemy_types/7. chinte/animations/ACTIVATE-BACK/ACTIVATE-BACK_page_0004.png.import rename to src/enemy/enemy_types/7. chinthe/animations/ACTIVATE-BACK/ACTIVATE-BACK_page_0004.png.import index de2b58ce..f72d1f24 100644 --- a/src/enemy/enemy_types/7. chinte/animations/ACTIVATE-BACK/ACTIVATE-BACK_page_0004.png.import +++ b/src/enemy/enemy_types/7. chinthe/animations/ACTIVATE-BACK/ACTIVATE-BACK_page_0004.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://bmd5cgqk2vg5o" -path="res://.godot/imported/ACTIVATE-BACK_page_0004.png-7409748461b2c0dd7e259dc181a7185a.ctex" +path="res://.godot/imported/ACTIVATE-BACK_page_0004.png-a015ebfbc84db6474b3091c80979b8d9.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/7. chinte/animations/ACTIVATE-BACK/ACTIVATE-BACK_page_0004.png" -dest_files=["res://.godot/imported/ACTIVATE-BACK_page_0004.png-7409748461b2c0dd7e259dc181a7185a.ctex"] +source_file="res://src/enemy/enemy_types/7. chinthe/animations/ACTIVATE-BACK/ACTIVATE-BACK_page_0004.png" +dest_files=["res://.godot/imported/ACTIVATE-BACK_page_0004.png-a015ebfbc84db6474b3091c80979b8d9.ctex"] [params] diff --git a/src/enemy/enemy_types/7. chinte/animations/ACTIVATE-BACK/ACTIVATE-BACK_page_0005.png b/src/enemy/enemy_types/7. chinthe/animations/ACTIVATE-BACK/ACTIVATE-BACK_page_0005.png similarity index 100% rename from src/enemy/enemy_types/7. chinte/animations/ACTIVATE-BACK/ACTIVATE-BACK_page_0005.png rename to src/enemy/enemy_types/7. chinthe/animations/ACTIVATE-BACK/ACTIVATE-BACK_page_0005.png diff --git a/src/enemy/enemy_types/7. chinte/animations/ACTIVATE-BACK/ACTIVATE-BACK_page_0005.png.import b/src/enemy/enemy_types/7. chinthe/animations/ACTIVATE-BACK/ACTIVATE-BACK_page_0005.png.import similarity index 64% rename from src/enemy/enemy_types/7. chinte/animations/ACTIVATE-BACK/ACTIVATE-BACK_page_0005.png.import rename to src/enemy/enemy_types/7. chinthe/animations/ACTIVATE-BACK/ACTIVATE-BACK_page_0005.png.import index 625772ae..7162cbe7 100644 --- a/src/enemy/enemy_types/7. chinte/animations/ACTIVATE-BACK/ACTIVATE-BACK_page_0005.png.import +++ b/src/enemy/enemy_types/7. chinthe/animations/ACTIVATE-BACK/ACTIVATE-BACK_page_0005.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://cxxeds0c84a8j" -path="res://.godot/imported/ACTIVATE-BACK_page_0005.png-96fd6de77d680d85c4b4330bf02bfaf4.ctex" +path="res://.godot/imported/ACTIVATE-BACK_page_0005.png-0aa7b04f159e3030bc3a3bf0ac8c0628.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/7. chinte/animations/ACTIVATE-BACK/ACTIVATE-BACK_page_0005.png" -dest_files=["res://.godot/imported/ACTIVATE-BACK_page_0005.png-96fd6de77d680d85c4b4330bf02bfaf4.ctex"] +source_file="res://src/enemy/enemy_types/7. chinthe/animations/ACTIVATE-BACK/ACTIVATE-BACK_page_0005.png" +dest_files=["res://.godot/imported/ACTIVATE-BACK_page_0005.png-0aa7b04f159e3030bc3a3bf0ac8c0628.ctex"] [params] diff --git a/src/enemy/enemy_types/7. chinte/animations/ACTIVATE-BACK/ACTIVATE-BACK_page_0006.png b/src/enemy/enemy_types/7. chinthe/animations/ACTIVATE-BACK/ACTIVATE-BACK_page_0006.png similarity index 100% rename from src/enemy/enemy_types/7. chinte/animations/ACTIVATE-BACK/ACTIVATE-BACK_page_0006.png rename to src/enemy/enemy_types/7. chinthe/animations/ACTIVATE-BACK/ACTIVATE-BACK_page_0006.png diff --git a/src/enemy/enemy_types/7. chinte/animations/ACTIVATE-BACK/ACTIVATE-BACK_page_0006.png.import b/src/enemy/enemy_types/7. chinthe/animations/ACTIVATE-BACK/ACTIVATE-BACK_page_0006.png.import similarity index 64% rename from src/enemy/enemy_types/7. chinte/animations/ACTIVATE-BACK/ACTIVATE-BACK_page_0006.png.import rename to src/enemy/enemy_types/7. chinthe/animations/ACTIVATE-BACK/ACTIVATE-BACK_page_0006.png.import index fb6e5ee8..00db2c54 100644 --- a/src/enemy/enemy_types/7. chinte/animations/ACTIVATE-BACK/ACTIVATE-BACK_page_0006.png.import +++ b/src/enemy/enemy_types/7. chinthe/animations/ACTIVATE-BACK/ACTIVATE-BACK_page_0006.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://c14icwfjwg50p" -path="res://.godot/imported/ACTIVATE-BACK_page_0006.png-7c17e5cdf694e77d498907ad53dffd42.ctex" +path="res://.godot/imported/ACTIVATE-BACK_page_0006.png-6329c31abd1c638681f1e76a02fb012a.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/7. chinte/animations/ACTIVATE-BACK/ACTIVATE-BACK_page_0006.png" -dest_files=["res://.godot/imported/ACTIVATE-BACK_page_0006.png-7c17e5cdf694e77d498907ad53dffd42.ctex"] +source_file="res://src/enemy/enemy_types/7. chinthe/animations/ACTIVATE-BACK/ACTIVATE-BACK_page_0006.png" +dest_files=["res://.godot/imported/ACTIVATE-BACK_page_0006.png-6329c31abd1c638681f1e76a02fb012a.ctex"] [params] diff --git a/src/enemy/enemy_types/7. chinte/animations/ACTIVATE-FRONT/ACTIVATE-FRONT_page_0001.png b/src/enemy/enemy_types/7. chinthe/animations/ACTIVATE-FRONT/ACTIVATE-FRONT_page_0001.png similarity index 100% rename from src/enemy/enemy_types/7. chinte/animations/ACTIVATE-FRONT/ACTIVATE-FRONT_page_0001.png rename to src/enemy/enemy_types/7. chinthe/animations/ACTIVATE-FRONT/ACTIVATE-FRONT_page_0001.png diff --git a/src/enemy/enemy_types/7. chinte/animations/ACTIVATE-FRONT/ACTIVATE-FRONT_page_0001.png.import b/src/enemy/enemy_types/7. chinthe/animations/ACTIVATE-FRONT/ACTIVATE-FRONT_page_0001.png.import similarity index 71% rename from src/enemy/enemy_types/7. chinte/animations/ACTIVATE-FRONT/ACTIVATE-FRONT_page_0001.png.import rename to src/enemy/enemy_types/7. chinthe/animations/ACTIVATE-FRONT/ACTIVATE-FRONT_page_0001.png.import index 6c09dd16..4ef06c6a 100644 --- a/src/enemy/enemy_types/7. chinte/animations/ACTIVATE-FRONT/ACTIVATE-FRONT_page_0001.png.import +++ b/src/enemy/enemy_types/7. chinthe/animations/ACTIVATE-FRONT/ACTIVATE-FRONT_page_0001.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://dxkjrr3wneg7p" -path="res://.godot/imported/ACTIVATE-FRONT_page_0001.png-49a3b422cb2bd761f1569d40f77f361b.ctex" +path="res://.godot/imported/ACTIVATE-FRONT_page_0001.png-bafe78ed594692fd92a9bd4f40a55250.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/7. chinte/animations/ACTIVATE-FRONT/ACTIVATE-FRONT_page_0001.png" -dest_files=["res://.godot/imported/ACTIVATE-FRONT_page_0001.png-49a3b422cb2bd761f1569d40f77f361b.ctex"] +source_file="res://src/enemy/enemy_types/7. chinthe/animations/ACTIVATE-FRONT/ACTIVATE-FRONT_page_0001.png" +dest_files=["res://.godot/imported/ACTIVATE-FRONT_page_0001.png-bafe78ed594692fd92a9bd4f40a55250.ctex"] [params] diff --git a/src/enemy/enemy_types/7. chinte/animations/ACTIVATE-FRONT/ACTIVATE-FRONT_page_0002.png b/src/enemy/enemy_types/7. chinthe/animations/ACTIVATE-FRONT/ACTIVATE-FRONT_page_0002.png similarity index 100% rename from src/enemy/enemy_types/7. chinte/animations/ACTIVATE-FRONT/ACTIVATE-FRONT_page_0002.png rename to src/enemy/enemy_types/7. chinthe/animations/ACTIVATE-FRONT/ACTIVATE-FRONT_page_0002.png diff --git a/src/enemy/enemy_types/7. chinte/animations/ACTIVATE-FRONT/ACTIVATE-FRONT_page_0002.png.import b/src/enemy/enemy_types/7. chinthe/animations/ACTIVATE-FRONT/ACTIVATE-FRONT_page_0002.png.import similarity index 71% rename from src/enemy/enemy_types/7. chinte/animations/ACTIVATE-FRONT/ACTIVATE-FRONT_page_0002.png.import rename to src/enemy/enemy_types/7. chinthe/animations/ACTIVATE-FRONT/ACTIVATE-FRONT_page_0002.png.import index f857ed8a..4cff51e1 100644 --- a/src/enemy/enemy_types/7. chinte/animations/ACTIVATE-FRONT/ACTIVATE-FRONT_page_0002.png.import +++ b/src/enemy/enemy_types/7. chinthe/animations/ACTIVATE-FRONT/ACTIVATE-FRONT_page_0002.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://dryfs7kwpt05m" -path="res://.godot/imported/ACTIVATE-FRONT_page_0002.png-ed28c46c5d195d874f4af61d42e367ef.ctex" +path="res://.godot/imported/ACTIVATE-FRONT_page_0002.png-9d38cb86eb1e1bcfb8aa3456a4bdcea9.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/7. chinte/animations/ACTIVATE-FRONT/ACTIVATE-FRONT_page_0002.png" -dest_files=["res://.godot/imported/ACTIVATE-FRONT_page_0002.png-ed28c46c5d195d874f4af61d42e367ef.ctex"] +source_file="res://src/enemy/enemy_types/7. chinthe/animations/ACTIVATE-FRONT/ACTIVATE-FRONT_page_0002.png" +dest_files=["res://.godot/imported/ACTIVATE-FRONT_page_0002.png-9d38cb86eb1e1bcfb8aa3456a4bdcea9.ctex"] [params] diff --git a/src/enemy/enemy_types/7. chinte/animations/ACTIVATE-FRONT/ACTIVATE-FRONT_page_0003.png b/src/enemy/enemy_types/7. chinthe/animations/ACTIVATE-FRONT/ACTIVATE-FRONT_page_0003.png similarity index 100% rename from src/enemy/enemy_types/7. chinte/animations/ACTIVATE-FRONT/ACTIVATE-FRONT_page_0003.png rename to src/enemy/enemy_types/7. chinthe/animations/ACTIVATE-FRONT/ACTIVATE-FRONT_page_0003.png diff --git a/src/enemy/enemy_types/7. chinte/animations/ACTIVATE-FRONT/ACTIVATE-FRONT_page_0003.png.import b/src/enemy/enemy_types/7. chinthe/animations/ACTIVATE-FRONT/ACTIVATE-FRONT_page_0003.png.import similarity index 71% rename from src/enemy/enemy_types/7. chinte/animations/ACTIVATE-FRONT/ACTIVATE-FRONT_page_0003.png.import rename to src/enemy/enemy_types/7. chinthe/animations/ACTIVATE-FRONT/ACTIVATE-FRONT_page_0003.png.import index 680bfa99..4da1a28a 100644 --- a/src/enemy/enemy_types/7. chinte/animations/ACTIVATE-FRONT/ACTIVATE-FRONT_page_0003.png.import +++ b/src/enemy/enemy_types/7. chinthe/animations/ACTIVATE-FRONT/ACTIVATE-FRONT_page_0003.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://cdsong01o1xof" -path="res://.godot/imported/ACTIVATE-FRONT_page_0003.png-db23aab30b26bafd3b89442b3ecdbdd5.ctex" +path="res://.godot/imported/ACTIVATE-FRONT_page_0003.png-6fb7551374b6473e65dffabd1cc13b78.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/7. chinte/animations/ACTIVATE-FRONT/ACTIVATE-FRONT_page_0003.png" -dest_files=["res://.godot/imported/ACTIVATE-FRONT_page_0003.png-db23aab30b26bafd3b89442b3ecdbdd5.ctex"] +source_file="res://src/enemy/enemy_types/7. chinthe/animations/ACTIVATE-FRONT/ACTIVATE-FRONT_page_0003.png" +dest_files=["res://.godot/imported/ACTIVATE-FRONT_page_0003.png-6fb7551374b6473e65dffabd1cc13b78.ctex"] [params] diff --git a/src/enemy/enemy_types/7. chinte/animations/ACTIVATE-FRONT/ACTIVATE-FRONT_page_0004.png b/src/enemy/enemy_types/7. chinthe/animations/ACTIVATE-FRONT/ACTIVATE-FRONT_page_0004.png similarity index 100% rename from src/enemy/enemy_types/7. chinte/animations/ACTIVATE-FRONT/ACTIVATE-FRONT_page_0004.png rename to src/enemy/enemy_types/7. chinthe/animations/ACTIVATE-FRONT/ACTIVATE-FRONT_page_0004.png diff --git a/src/enemy/enemy_types/7. chinte/animations/ACTIVATE-FRONT/ACTIVATE-FRONT_page_0004.png.import b/src/enemy/enemy_types/7. chinthe/animations/ACTIVATE-FRONT/ACTIVATE-FRONT_page_0004.png.import similarity index 71% rename from src/enemy/enemy_types/7. chinte/animations/ACTIVATE-FRONT/ACTIVATE-FRONT_page_0004.png.import rename to src/enemy/enemy_types/7. chinthe/animations/ACTIVATE-FRONT/ACTIVATE-FRONT_page_0004.png.import index c610d20e..cdcde060 100644 --- a/src/enemy/enemy_types/7. chinte/animations/ACTIVATE-FRONT/ACTIVATE-FRONT_page_0004.png.import +++ b/src/enemy/enemy_types/7. chinthe/animations/ACTIVATE-FRONT/ACTIVATE-FRONT_page_0004.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://b756p2shusa0y" -path="res://.godot/imported/ACTIVATE-FRONT_page_0004.png-b1cf913694bc542c1c1cbaf6fdf88560.ctex" +path="res://.godot/imported/ACTIVATE-FRONT_page_0004.png-0d2ce2f85166172b5b7e5b6306a476e1.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/7. chinte/animations/ACTIVATE-FRONT/ACTIVATE-FRONT_page_0004.png" -dest_files=["res://.godot/imported/ACTIVATE-FRONT_page_0004.png-b1cf913694bc542c1c1cbaf6fdf88560.ctex"] +source_file="res://src/enemy/enemy_types/7. chinthe/animations/ACTIVATE-FRONT/ACTIVATE-FRONT_page_0004.png" +dest_files=["res://.godot/imported/ACTIVATE-FRONT_page_0004.png-0d2ce2f85166172b5b7e5b6306a476e1.ctex"] [params] diff --git a/src/enemy/enemy_types/7. chinte/animations/ACTIVATE-FRONT/ACTIVATE-FRONT_page_0005.png b/src/enemy/enemy_types/7. chinthe/animations/ACTIVATE-FRONT/ACTIVATE-FRONT_page_0005.png similarity index 100% rename from src/enemy/enemy_types/7. chinte/animations/ACTIVATE-FRONT/ACTIVATE-FRONT_page_0005.png rename to src/enemy/enemy_types/7. chinthe/animations/ACTIVATE-FRONT/ACTIVATE-FRONT_page_0005.png diff --git a/src/enemy/enemy_types/7. chinte/animations/ACTIVATE-FRONT/ACTIVATE-FRONT_page_0005.png.import b/src/enemy/enemy_types/7. chinthe/animations/ACTIVATE-FRONT/ACTIVATE-FRONT_page_0005.png.import similarity index 71% rename from src/enemy/enemy_types/7. chinte/animations/ACTIVATE-FRONT/ACTIVATE-FRONT_page_0005.png.import rename to src/enemy/enemy_types/7. chinthe/animations/ACTIVATE-FRONT/ACTIVATE-FRONT_page_0005.png.import index 93a9c254..88837388 100644 --- a/src/enemy/enemy_types/7. chinte/animations/ACTIVATE-FRONT/ACTIVATE-FRONT_page_0005.png.import +++ b/src/enemy/enemy_types/7. chinthe/animations/ACTIVATE-FRONT/ACTIVATE-FRONT_page_0005.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://ccf5cdmbnv8xr" -path="res://.godot/imported/ACTIVATE-FRONT_page_0005.png-4b64c302a59038e58cbd67f47f08622c.ctex" +path="res://.godot/imported/ACTIVATE-FRONT_page_0005.png-b3e2bcac180ae1f63386b4ad126278c8.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/7. chinte/animations/ACTIVATE-FRONT/ACTIVATE-FRONT_page_0005.png" -dest_files=["res://.godot/imported/ACTIVATE-FRONT_page_0005.png-4b64c302a59038e58cbd67f47f08622c.ctex"] +source_file="res://src/enemy/enemy_types/7. chinthe/animations/ACTIVATE-FRONT/ACTIVATE-FRONT_page_0005.png" +dest_files=["res://.godot/imported/ACTIVATE-FRONT_page_0005.png-b3e2bcac180ae1f63386b4ad126278c8.ctex"] [params] diff --git a/src/enemy/enemy_types/7. chinte/animations/ACTIVATE-FRONT/ACTIVATE-FRONT_page_0006.png b/src/enemy/enemy_types/7. chinthe/animations/ACTIVATE-FRONT/ACTIVATE-FRONT_page_0006.png similarity index 100% rename from src/enemy/enemy_types/7. chinte/animations/ACTIVATE-FRONT/ACTIVATE-FRONT_page_0006.png rename to src/enemy/enemy_types/7. chinthe/animations/ACTIVATE-FRONT/ACTIVATE-FRONT_page_0006.png diff --git a/src/enemy/enemy_types/7. chinte/animations/ACTIVATE-FRONT/ACTIVATE-FRONT_page_0006.png.import b/src/enemy/enemy_types/7. chinthe/animations/ACTIVATE-FRONT/ACTIVATE-FRONT_page_0006.png.import similarity index 71% rename from src/enemy/enemy_types/7. chinte/animations/ACTIVATE-FRONT/ACTIVATE-FRONT_page_0006.png.import rename to src/enemy/enemy_types/7. chinthe/animations/ACTIVATE-FRONT/ACTIVATE-FRONT_page_0006.png.import index 41aa5aaf..825f4615 100644 --- a/src/enemy/enemy_types/7. chinte/animations/ACTIVATE-FRONT/ACTIVATE-FRONT_page_0006.png.import +++ b/src/enemy/enemy_types/7. chinthe/animations/ACTIVATE-FRONT/ACTIVATE-FRONT_page_0006.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://bx2tm5grtctlp" -path="res://.godot/imported/ACTIVATE-FRONT_page_0006.png-b95c9c6819430a558e5dffa6489459bf.ctex" +path="res://.godot/imported/ACTIVATE-FRONT_page_0006.png-f5ce557dbe3b0ec8a1a511f3fc70a4ab.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/7. chinte/animations/ACTIVATE-FRONT/ACTIVATE-FRONT_page_0006.png" -dest_files=["res://.godot/imported/ACTIVATE-FRONT_page_0006.png-b95c9c6819430a558e5dffa6489459bf.ctex"] +source_file="res://src/enemy/enemy_types/7. chinthe/animations/ACTIVATE-FRONT/ACTIVATE-FRONT_page_0006.png" +dest_files=["res://.godot/imported/ACTIVATE-FRONT_page_0006.png-f5ce557dbe3b0ec8a1a511f3fc70a4ab.ctex"] [params] diff --git a/src/enemy/enemy_types/7. chinte/animations/ACTIVATE-SIDE/ACTIVATE-SIDE_page_0001.png b/src/enemy/enemy_types/7. chinthe/animations/ACTIVATE-SIDE/ACTIVATE-SIDE_page_0001.png similarity index 100% rename from src/enemy/enemy_types/7. chinte/animations/ACTIVATE-SIDE/ACTIVATE-SIDE_page_0001.png rename to src/enemy/enemy_types/7. chinthe/animations/ACTIVATE-SIDE/ACTIVATE-SIDE_page_0001.png diff --git a/src/enemy/enemy_types/7. chinte/animations/ACTIVATE-SIDE/ACTIVATE-SIDE_page_0001.png.import b/src/enemy/enemy_types/7. chinthe/animations/ACTIVATE-SIDE/ACTIVATE-SIDE_page_0001.png.import similarity index 64% rename from src/enemy/enemy_types/7. chinte/animations/ACTIVATE-SIDE/ACTIVATE-SIDE_page_0001.png.import rename to src/enemy/enemy_types/7. chinthe/animations/ACTIVATE-SIDE/ACTIVATE-SIDE_page_0001.png.import index 5906e4ba..3abe5d9e 100644 --- a/src/enemy/enemy_types/7. chinte/animations/ACTIVATE-SIDE/ACTIVATE-SIDE_page_0001.png.import +++ b/src/enemy/enemy_types/7. chinthe/animations/ACTIVATE-SIDE/ACTIVATE-SIDE_page_0001.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://bqrd222snxwnl" -path="res://.godot/imported/ACTIVATE-SIDE_page_0001.png-22c2d914fee27b42a06db9cc8f6d5528.ctex" +path="res://.godot/imported/ACTIVATE-SIDE_page_0001.png-15fc362992f5590d7744abfebe0f877b.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/7. chinte/animations/ACTIVATE-SIDE/ACTIVATE-SIDE_page_0001.png" -dest_files=["res://.godot/imported/ACTIVATE-SIDE_page_0001.png-22c2d914fee27b42a06db9cc8f6d5528.ctex"] +source_file="res://src/enemy/enemy_types/7. chinthe/animations/ACTIVATE-SIDE/ACTIVATE-SIDE_page_0001.png" +dest_files=["res://.godot/imported/ACTIVATE-SIDE_page_0001.png-15fc362992f5590d7744abfebe0f877b.ctex"] [params] diff --git a/src/enemy/enemy_types/7. chinte/animations/ACTIVATE-SIDE/ACTIVATE-SIDE_page_0002.png b/src/enemy/enemy_types/7. chinthe/animations/ACTIVATE-SIDE/ACTIVATE-SIDE_page_0002.png similarity index 100% rename from src/enemy/enemy_types/7. chinte/animations/ACTIVATE-SIDE/ACTIVATE-SIDE_page_0002.png rename to src/enemy/enemy_types/7. chinthe/animations/ACTIVATE-SIDE/ACTIVATE-SIDE_page_0002.png diff --git a/src/enemy/enemy_types/7. chinte/animations/ACTIVATE-SIDE/ACTIVATE-SIDE_page_0002.png.import b/src/enemy/enemy_types/7. chinthe/animations/ACTIVATE-SIDE/ACTIVATE-SIDE_page_0002.png.import similarity index 64% rename from src/enemy/enemy_types/7. chinte/animations/ACTIVATE-SIDE/ACTIVATE-SIDE_page_0002.png.import rename to src/enemy/enemy_types/7. chinthe/animations/ACTIVATE-SIDE/ACTIVATE-SIDE_page_0002.png.import index aeada19b..51349892 100644 --- a/src/enemy/enemy_types/7. chinte/animations/ACTIVATE-SIDE/ACTIVATE-SIDE_page_0002.png.import +++ b/src/enemy/enemy_types/7. chinthe/animations/ACTIVATE-SIDE/ACTIVATE-SIDE_page_0002.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://do8v0wcpvcm5y" -path="res://.godot/imported/ACTIVATE-SIDE_page_0002.png-5e962fe9481c24bf33fae650b51205f3.ctex" +path="res://.godot/imported/ACTIVATE-SIDE_page_0002.png-bb9e925c3bad31bd7b7bae86394e3c42.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/7. chinte/animations/ACTIVATE-SIDE/ACTIVATE-SIDE_page_0002.png" -dest_files=["res://.godot/imported/ACTIVATE-SIDE_page_0002.png-5e962fe9481c24bf33fae650b51205f3.ctex"] +source_file="res://src/enemy/enemy_types/7. chinthe/animations/ACTIVATE-SIDE/ACTIVATE-SIDE_page_0002.png" +dest_files=["res://.godot/imported/ACTIVATE-SIDE_page_0002.png-bb9e925c3bad31bd7b7bae86394e3c42.ctex"] [params] diff --git a/src/enemy/enemy_types/7. chinte/animations/ACTIVATE-SIDE/ACTIVATE-SIDE_page_0003.png b/src/enemy/enemy_types/7. chinthe/animations/ACTIVATE-SIDE/ACTIVATE-SIDE_page_0003.png similarity index 100% rename from src/enemy/enemy_types/7. chinte/animations/ACTIVATE-SIDE/ACTIVATE-SIDE_page_0003.png rename to src/enemy/enemy_types/7. chinthe/animations/ACTIVATE-SIDE/ACTIVATE-SIDE_page_0003.png diff --git a/src/enemy/enemy_types/7. chinte/animations/ACTIVATE-SIDE/ACTIVATE-SIDE_page_0003.png.import b/src/enemy/enemy_types/7. chinthe/animations/ACTIVATE-SIDE/ACTIVATE-SIDE_page_0003.png.import similarity index 64% rename from src/enemy/enemy_types/7. chinte/animations/ACTIVATE-SIDE/ACTIVATE-SIDE_page_0003.png.import rename to src/enemy/enemy_types/7. chinthe/animations/ACTIVATE-SIDE/ACTIVATE-SIDE_page_0003.png.import index f6f802ba..8392001f 100644 --- a/src/enemy/enemy_types/7. chinte/animations/ACTIVATE-SIDE/ACTIVATE-SIDE_page_0003.png.import +++ b/src/enemy/enemy_types/7. chinthe/animations/ACTIVATE-SIDE/ACTIVATE-SIDE_page_0003.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://2jc2fo5rn4qt" -path="res://.godot/imported/ACTIVATE-SIDE_page_0003.png-8213fd6682c16d678dea58e20c4c97ca.ctex" +path="res://.godot/imported/ACTIVATE-SIDE_page_0003.png-19af166c8132eaada2e42ba593cdec6d.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/7. chinte/animations/ACTIVATE-SIDE/ACTIVATE-SIDE_page_0003.png" -dest_files=["res://.godot/imported/ACTIVATE-SIDE_page_0003.png-8213fd6682c16d678dea58e20c4c97ca.ctex"] +source_file="res://src/enemy/enemy_types/7. chinthe/animations/ACTIVATE-SIDE/ACTIVATE-SIDE_page_0003.png" +dest_files=["res://.godot/imported/ACTIVATE-SIDE_page_0003.png-19af166c8132eaada2e42ba593cdec6d.ctex"] [params] diff --git a/src/enemy/enemy_types/7. chinte/animations/ACTIVATE-SIDE/ACTIVATE-SIDE_page_0004.png b/src/enemy/enemy_types/7. chinthe/animations/ACTIVATE-SIDE/ACTIVATE-SIDE_page_0004.png similarity index 100% rename from src/enemy/enemy_types/7. chinte/animations/ACTIVATE-SIDE/ACTIVATE-SIDE_page_0004.png rename to src/enemy/enemy_types/7. chinthe/animations/ACTIVATE-SIDE/ACTIVATE-SIDE_page_0004.png diff --git a/src/enemy/enemy_types/7. chinte/animations/ACTIVATE-SIDE/ACTIVATE-SIDE_page_0004.png.import b/src/enemy/enemy_types/7. chinthe/animations/ACTIVATE-SIDE/ACTIVATE-SIDE_page_0004.png.import similarity index 64% rename from src/enemy/enemy_types/7. chinte/animations/ACTIVATE-SIDE/ACTIVATE-SIDE_page_0004.png.import rename to src/enemy/enemy_types/7. chinthe/animations/ACTIVATE-SIDE/ACTIVATE-SIDE_page_0004.png.import index 24f0776e..b8eed13e 100644 --- a/src/enemy/enemy_types/7. chinte/animations/ACTIVATE-SIDE/ACTIVATE-SIDE_page_0004.png.import +++ b/src/enemy/enemy_types/7. chinthe/animations/ACTIVATE-SIDE/ACTIVATE-SIDE_page_0004.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://iaisooai5b00" -path="res://.godot/imported/ACTIVATE-SIDE_page_0004.png-37a9d8ab45dbbd2a5be74662bfd1196a.ctex" +path="res://.godot/imported/ACTIVATE-SIDE_page_0004.png-403ed317d01809b0b2294255ae29deac.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/7. chinte/animations/ACTIVATE-SIDE/ACTIVATE-SIDE_page_0004.png" -dest_files=["res://.godot/imported/ACTIVATE-SIDE_page_0004.png-37a9d8ab45dbbd2a5be74662bfd1196a.ctex"] +source_file="res://src/enemy/enemy_types/7. chinthe/animations/ACTIVATE-SIDE/ACTIVATE-SIDE_page_0004.png" +dest_files=["res://.godot/imported/ACTIVATE-SIDE_page_0004.png-403ed317d01809b0b2294255ae29deac.ctex"] [params] diff --git a/src/enemy/enemy_types/7. chinte/animations/ACTIVATE-SIDE/ACTIVATE-SIDE_page_0005.png b/src/enemy/enemy_types/7. chinthe/animations/ACTIVATE-SIDE/ACTIVATE-SIDE_page_0005.png similarity index 100% rename from src/enemy/enemy_types/7. chinte/animations/ACTIVATE-SIDE/ACTIVATE-SIDE_page_0005.png rename to src/enemy/enemy_types/7. chinthe/animations/ACTIVATE-SIDE/ACTIVATE-SIDE_page_0005.png diff --git a/src/enemy/enemy_types/7. chinte/animations/ACTIVATE-SIDE/ACTIVATE-SIDE_page_0005.png.import b/src/enemy/enemy_types/7. chinthe/animations/ACTIVATE-SIDE/ACTIVATE-SIDE_page_0005.png.import similarity index 64% rename from src/enemy/enemy_types/7. chinte/animations/ACTIVATE-SIDE/ACTIVATE-SIDE_page_0005.png.import rename to src/enemy/enemy_types/7. chinthe/animations/ACTIVATE-SIDE/ACTIVATE-SIDE_page_0005.png.import index af664756..7c0c8c0e 100644 --- a/src/enemy/enemy_types/7. chinte/animations/ACTIVATE-SIDE/ACTIVATE-SIDE_page_0005.png.import +++ b/src/enemy/enemy_types/7. chinthe/animations/ACTIVATE-SIDE/ACTIVATE-SIDE_page_0005.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://b2rg4bvpyecdx" -path="res://.godot/imported/ACTIVATE-SIDE_page_0005.png-f0a7ed184874c3fd8623134603d800e2.ctex" +path="res://.godot/imported/ACTIVATE-SIDE_page_0005.png-1362e347dcd13292706c8a1874ecbb2e.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/7. chinte/animations/ACTIVATE-SIDE/ACTIVATE-SIDE_page_0005.png" -dest_files=["res://.godot/imported/ACTIVATE-SIDE_page_0005.png-f0a7ed184874c3fd8623134603d800e2.ctex"] +source_file="res://src/enemy/enemy_types/7. chinthe/animations/ACTIVATE-SIDE/ACTIVATE-SIDE_page_0005.png" +dest_files=["res://.godot/imported/ACTIVATE-SIDE_page_0005.png-1362e347dcd13292706c8a1874ecbb2e.ctex"] [params] diff --git a/src/enemy/enemy_types/7. chinte/animations/ACTIVATE-SIDE/ACTIVATE-SIDE_page_0006.png b/src/enemy/enemy_types/7. chinthe/animations/ACTIVATE-SIDE/ACTIVATE-SIDE_page_0006.png similarity index 100% rename from src/enemy/enemy_types/7. chinte/animations/ACTIVATE-SIDE/ACTIVATE-SIDE_page_0006.png rename to src/enemy/enemy_types/7. chinthe/animations/ACTIVATE-SIDE/ACTIVATE-SIDE_page_0006.png diff --git a/src/enemy/enemy_types/7. chinte/animations/ACTIVATE-SIDE/ACTIVATE-SIDE_page_0006.png.import b/src/enemy/enemy_types/7. chinthe/animations/ACTIVATE-SIDE/ACTIVATE-SIDE_page_0006.png.import similarity index 64% rename from src/enemy/enemy_types/7. chinte/animations/ACTIVATE-SIDE/ACTIVATE-SIDE_page_0006.png.import rename to src/enemy/enemy_types/7. chinthe/animations/ACTIVATE-SIDE/ACTIVATE-SIDE_page_0006.png.import index 8e819670..477615c8 100644 --- a/src/enemy/enemy_types/7. chinte/animations/ACTIVATE-SIDE/ACTIVATE-SIDE_page_0006.png.import +++ b/src/enemy/enemy_types/7. chinthe/animations/ACTIVATE-SIDE/ACTIVATE-SIDE_page_0006.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://df6kiuum5x8mr" -path="res://.godot/imported/ACTIVATE-SIDE_page_0006.png-b49939d1e8e93932f9e9bb6987bf6633.ctex" +path="res://.godot/imported/ACTIVATE-SIDE_page_0006.png-344ea40ae145cbba43da8b03d9fa6a0d.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/7. chinte/animations/ACTIVATE-SIDE/ACTIVATE-SIDE_page_0006.png" -dest_files=["res://.godot/imported/ACTIVATE-SIDE_page_0006.png-b49939d1e8e93932f9e9bb6987bf6633.ctex"] +source_file="res://src/enemy/enemy_types/7. chinthe/animations/ACTIVATE-SIDE/ACTIVATE-SIDE_page_0006.png" +dest_files=["res://.godot/imported/ACTIVATE-SIDE_page_0006.png-344ea40ae145cbba43da8b03d9fa6a0d.ctex"] [params] diff --git a/src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0001.png b/src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0001.png similarity index 100% rename from src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0001.png rename to src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0001.png diff --git a/src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0001.png.import b/src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0001.png.import similarity index 65% rename from src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0001.png.import rename to src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0001.png.import index 4eb53e0c..7f2a59bd 100644 --- a/src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0001.png.import +++ b/src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0001.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://cfedqk2w3nb24" -path="res://.godot/imported/ATTACK1-FRONT_page_0001.png-e8d412c6bf752bc9424198d1c9ebdd50.ctex" +path="res://.godot/imported/ATTACK1-FRONT_page_0001.png-6990c51f93a0ac5a6e5767eaa310fc7b.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0001.png" -dest_files=["res://.godot/imported/ATTACK1-FRONT_page_0001.png-e8d412c6bf752bc9424198d1c9ebdd50.ctex"] +source_file="res://src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0001.png" +dest_files=["res://.godot/imported/ATTACK1-FRONT_page_0001.png-6990c51f93a0ac5a6e5767eaa310fc7b.ctex"] [params] diff --git a/src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0002.png b/src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0002.png similarity index 100% rename from src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0002.png rename to src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0002.png diff --git a/src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0002.png.import b/src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0002.png.import similarity index 65% rename from src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0002.png.import rename to src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0002.png.import index f50cf533..81fb9560 100644 --- a/src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0002.png.import +++ b/src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0002.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://v46ar0apf4lh" -path="res://.godot/imported/ATTACK1-FRONT_page_0002.png-0a03dcb3de751ea0cb0a5352b07ebd0f.ctex" +path="res://.godot/imported/ATTACK1-FRONT_page_0002.png-fbe8619ddbb1c5a50f4b5791429cfd82.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0002.png" -dest_files=["res://.godot/imported/ATTACK1-FRONT_page_0002.png-0a03dcb3de751ea0cb0a5352b07ebd0f.ctex"] +source_file="res://src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0002.png" +dest_files=["res://.godot/imported/ATTACK1-FRONT_page_0002.png-fbe8619ddbb1c5a50f4b5791429cfd82.ctex"] [params] diff --git a/src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0003.png b/src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0003.png similarity index 100% rename from src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0003.png rename to src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0003.png diff --git a/src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0003.png.import b/src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0003.png.import similarity index 72% rename from src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0003.png.import rename to src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0003.png.import index 349e7ecb..c769536a 100644 --- a/src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0003.png.import +++ b/src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0003.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://dlxfcvj1a23cd" -path="res://.godot/imported/ATTACK1-FRONT_page_0003.png-084bf42c6b5d46582bb8ccc39a4e176c.ctex" +path="res://.godot/imported/ATTACK1-FRONT_page_0003.png-0d7088d83ea72a749046811b6b7d0dac.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0003.png" -dest_files=["res://.godot/imported/ATTACK1-FRONT_page_0003.png-084bf42c6b5d46582bb8ccc39a4e176c.ctex"] +source_file="res://src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0003.png" +dest_files=["res://.godot/imported/ATTACK1-FRONT_page_0003.png-0d7088d83ea72a749046811b6b7d0dac.ctex"] [params] diff --git a/src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0004.png b/src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0004.png similarity index 100% rename from src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0004.png rename to src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0004.png diff --git a/src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0004.png.import b/src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0004.png.import similarity index 65% rename from src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0004.png.import rename to src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0004.png.import index 84cb3637..307769db 100644 --- a/src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0004.png.import +++ b/src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0004.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://cx5f8gqwhii0s" -path="res://.godot/imported/ATTACK1-FRONT_page_0004.png-cc3998357e2468258611270ebbfb8a8e.ctex" +path="res://.godot/imported/ATTACK1-FRONT_page_0004.png-01a330a531875f6faa70c92163c67d0b.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0004.png" -dest_files=["res://.godot/imported/ATTACK1-FRONT_page_0004.png-cc3998357e2468258611270ebbfb8a8e.ctex"] +source_file="res://src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0004.png" +dest_files=["res://.godot/imported/ATTACK1-FRONT_page_0004.png-01a330a531875f6faa70c92163c67d0b.ctex"] [params] diff --git a/src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0005.png b/src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0005.png similarity index 100% rename from src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0005.png rename to src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0005.png diff --git a/src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0005.png.import b/src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0005.png.import similarity index 65% rename from src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0005.png.import rename to src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0005.png.import index c1c59673..1b0b672f 100644 --- a/src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0005.png.import +++ b/src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0005.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://c1q0orfx8blpl" -path="res://.godot/imported/ATTACK1-FRONT_page_0005.png-68984f4ef18c0b93763fa396bf824a9c.ctex" +path="res://.godot/imported/ATTACK1-FRONT_page_0005.png-e1bdb705ecbd7ec785a4803aedc3ef72.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0005.png" -dest_files=["res://.godot/imported/ATTACK1-FRONT_page_0005.png-68984f4ef18c0b93763fa396bf824a9c.ctex"] +source_file="res://src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0005.png" +dest_files=["res://.godot/imported/ATTACK1-FRONT_page_0005.png-e1bdb705ecbd7ec785a4803aedc3ef72.ctex"] [params] diff --git a/src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0006.png b/src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0006.png similarity index 100% rename from src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0006.png rename to src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0006.png diff --git a/src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0006.png.import b/src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0006.png.import similarity index 65% rename from src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0006.png.import rename to src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0006.png.import index fd1835ed..220534fc 100644 --- a/src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0006.png.import +++ b/src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0006.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://df871udy5qulr" -path="res://.godot/imported/ATTACK1-FRONT_page_0006.png-f8892820fcbdccde304be1b817b82ae5.ctex" +path="res://.godot/imported/ATTACK1-FRONT_page_0006.png-76259aa281ab0daf28b5a41ad2e3932a.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0006.png" -dest_files=["res://.godot/imported/ATTACK1-FRONT_page_0006.png-f8892820fcbdccde304be1b817b82ae5.ctex"] +source_file="res://src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0006.png" +dest_files=["res://.godot/imported/ATTACK1-FRONT_page_0006.png-76259aa281ab0daf28b5a41ad2e3932a.ctex"] [params] diff --git a/src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0007.png b/src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0007.png similarity index 100% rename from src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0007.png rename to src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0007.png diff --git a/src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0007.png.import b/src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0007.png.import similarity index 65% rename from src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0007.png.import rename to src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0007.png.import index fe171bfc..ae289a0b 100644 --- a/src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0007.png.import +++ b/src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0007.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://br4ygmwb3nh4w" -path="res://.godot/imported/ATTACK1-FRONT_page_0007.png-14a62edd1ffc7706317f560bcbd6a40c.ctex" +path="res://.godot/imported/ATTACK1-FRONT_page_0007.png-3d8c92ca94ff93a2d82c8b06283ad315.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0007.png" -dest_files=["res://.godot/imported/ATTACK1-FRONT_page_0007.png-14a62edd1ffc7706317f560bcbd6a40c.ctex"] +source_file="res://src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0007.png" +dest_files=["res://.godot/imported/ATTACK1-FRONT_page_0007.png-3d8c92ca94ff93a2d82c8b06283ad315.ctex"] [params] diff --git a/src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0008.png b/src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0008.png similarity index 100% rename from src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0008.png rename to src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0008.png diff --git a/src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0008.png.import b/src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0008.png.import similarity index 65% rename from src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0008.png.import rename to src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0008.png.import index d9864996..8e411755 100644 --- a/src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0008.png.import +++ b/src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0008.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://b7q1ipnk2ephr" -path="res://.godot/imported/ATTACK1-FRONT_page_0008.png-6fee8855a9feab656e64524c18af4c52.ctex" +path="res://.godot/imported/ATTACK1-FRONT_page_0008.png-46ddfeafe1b02a3af2cef15844ee22a9.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0008.png" -dest_files=["res://.godot/imported/ATTACK1-FRONT_page_0008.png-6fee8855a9feab656e64524c18af4c52.ctex"] +source_file="res://src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0008.png" +dest_files=["res://.godot/imported/ATTACK1-FRONT_page_0008.png-46ddfeafe1b02a3af2cef15844ee22a9.ctex"] [params] diff --git a/src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0009.png b/src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0009.png similarity index 100% rename from src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0009.png rename to src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0009.png diff --git a/src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0009.png.import b/src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0009.png.import similarity index 65% rename from src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0009.png.import rename to src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0009.png.import index c659800d..b41d86a9 100644 --- a/src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0009.png.import +++ b/src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0009.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://dadsnney0x42" -path="res://.godot/imported/ATTACK1-FRONT_page_0009.png-b81b5aecefe109fbf30eb8b64dafe4ce.ctex" +path="res://.godot/imported/ATTACK1-FRONT_page_0009.png-5502b6eeb1e8f80f7b53b9900f593b25.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0009.png" -dest_files=["res://.godot/imported/ATTACK1-FRONT_page_0009.png-b81b5aecefe109fbf30eb8b64dafe4ce.ctex"] +source_file="res://src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0009.png" +dest_files=["res://.godot/imported/ATTACK1-FRONT_page_0009.png-5502b6eeb1e8f80f7b53b9900f593b25.ctex"] [params] diff --git a/src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0010.png b/src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0010.png similarity index 100% rename from src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0010.png rename to src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0010.png diff --git a/src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0010.png.import b/src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0010.png.import similarity index 65% rename from src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0010.png.import rename to src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0010.png.import index a828d959..3221603d 100644 --- a/src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0010.png.import +++ b/src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0010.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://vmx05ymn63li" -path="res://.godot/imported/ATTACK1-FRONT_page_0010.png-4464ef11ad4a20eacf0cc07cbe07c699.ctex" +path="res://.godot/imported/ATTACK1-FRONT_page_0010.png-ba2e1c472fa262cd3ded626f496bb4a2.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0010.png" -dest_files=["res://.godot/imported/ATTACK1-FRONT_page_0010.png-4464ef11ad4a20eacf0cc07cbe07c699.ctex"] +source_file="res://src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0010.png" +dest_files=["res://.godot/imported/ATTACK1-FRONT_page_0010.png-ba2e1c472fa262cd3ded626f496bb4a2.ctex"] [params] diff --git a/src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0011.png b/src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0011.png similarity index 100% rename from src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0011.png rename to src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0011.png diff --git a/src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0011.png.import b/src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0011.png.import similarity index 65% rename from src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0011.png.import rename to src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0011.png.import index 3654560e..ee0a80f0 100644 --- a/src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0011.png.import +++ b/src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0011.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://csf7n7f36uipy" -path="res://.godot/imported/ATTACK1-FRONT_page_0011.png-2c958b711edcfe12daaa9e7400342469.ctex" +path="res://.godot/imported/ATTACK1-FRONT_page_0011.png-66a4ecd1eb8fa0ab092a6cdb0cae10f8.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0011.png" -dest_files=["res://.godot/imported/ATTACK1-FRONT_page_0011.png-2c958b711edcfe12daaa9e7400342469.ctex"] +source_file="res://src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0011.png" +dest_files=["res://.godot/imported/ATTACK1-FRONT_page_0011.png-66a4ecd1eb8fa0ab092a6cdb0cae10f8.ctex"] [params] diff --git a/src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0012.png b/src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0012.png similarity index 100% rename from src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0012.png rename to src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0012.png diff --git a/src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0012.png.import b/src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0012.png.import similarity index 65% rename from src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0012.png.import rename to src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0012.png.import index 2c69901f..144482ac 100644 --- a/src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0012.png.import +++ b/src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0012.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://cg0ha8j7o1oyu" -path="res://.godot/imported/ATTACK1-FRONT_page_0012.png-d932907a782249c603b12dfb70d3dd76.ctex" +path="res://.godot/imported/ATTACK1-FRONT_page_0012.png-a725fcbaed92c54f92b6b654d927a0bb.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0012.png" -dest_files=["res://.godot/imported/ATTACK1-FRONT_page_0012.png-d932907a782249c603b12dfb70d3dd76.ctex"] +source_file="res://src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0012.png" +dest_files=["res://.godot/imported/ATTACK1-FRONT_page_0012.png-a725fcbaed92c54f92b6b654d927a0bb.ctex"] [params] diff --git a/src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0013.png b/src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0013.png similarity index 100% rename from src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0013.png rename to src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0013.png diff --git a/src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0013.png.import b/src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0013.png.import similarity index 65% rename from src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0013.png.import rename to src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0013.png.import index bbabf151..81d3038e 100644 --- a/src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0013.png.import +++ b/src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0013.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://d2k0e3e6wrge6" -path="res://.godot/imported/ATTACK1-FRONT_page_0013.png-b1d21a4a844382decb39bd78282f3b99.ctex" +path="res://.godot/imported/ATTACK1-FRONT_page_0013.png-1b0789e56aa7602447b338947d1e02fb.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0013.png" -dest_files=["res://.godot/imported/ATTACK1-FRONT_page_0013.png-b1d21a4a844382decb39bd78282f3b99.ctex"] +source_file="res://src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0013.png" +dest_files=["res://.godot/imported/ATTACK1-FRONT_page_0013.png-1b0789e56aa7602447b338947d1e02fb.ctex"] [params] diff --git a/src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0014.png b/src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0014.png similarity index 100% rename from src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0014.png rename to src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0014.png diff --git a/src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0014.png.import b/src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0014.png.import similarity index 65% rename from src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0014.png.import rename to src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0014.png.import index 846d5eca..dc141681 100644 --- a/src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0014.png.import +++ b/src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0014.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://dj25eww6n0s14" -path="res://.godot/imported/ATTACK1-FRONT_page_0014.png-bd11e74dc0ee272d63f7992fbb5b9c66.ctex" +path="res://.godot/imported/ATTACK1-FRONT_page_0014.png-d263e23eb1cc174624dff8e66cbb55ce.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0014.png" -dest_files=["res://.godot/imported/ATTACK1-FRONT_page_0014.png-bd11e74dc0ee272d63f7992fbb5b9c66.ctex"] +source_file="res://src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0014.png" +dest_files=["res://.godot/imported/ATTACK1-FRONT_page_0014.png-d263e23eb1cc174624dff8e66cbb55ce.ctex"] [params] diff --git a/src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0015.png b/src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0015.png similarity index 100% rename from src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0015.png rename to src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0015.png diff --git a/src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0015.png.import b/src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0015.png.import similarity index 65% rename from src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0015.png.import rename to src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0015.png.import index 6dfb2104..18a89fac 100644 --- a/src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0015.png.import +++ b/src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0015.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://clkh7swfacmnl" -path="res://.godot/imported/ATTACK1-FRONT_page_0015.png-56e57e104ab5c6e1d135d856641aa990.ctex" +path="res://.godot/imported/ATTACK1-FRONT_page_0015.png-17d16f8660e2d5ea21edac20a099db36.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0015.png" -dest_files=["res://.godot/imported/ATTACK1-FRONT_page_0015.png-56e57e104ab5c6e1d135d856641aa990.ctex"] +source_file="res://src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0015.png" +dest_files=["res://.godot/imported/ATTACK1-FRONT_page_0015.png-17d16f8660e2d5ea21edac20a099db36.ctex"] [params] diff --git a/src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0016.png b/src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0016.png similarity index 100% rename from src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0016.png rename to src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0016.png diff --git a/src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0016.png.import b/src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0016.png.import similarity index 65% rename from src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0016.png.import rename to src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0016.png.import index 3733a1e2..1c6a3097 100644 --- a/src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0016.png.import +++ b/src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0016.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://b5nslpq2nf5j" -path="res://.godot/imported/ATTACK1-FRONT_page_0016.png-e69d9e5485cf2efbb8d1f7b600d67d04.ctex" +path="res://.godot/imported/ATTACK1-FRONT_page_0016.png-4b364ece194688ba41484d533674480a.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0016.png" -dest_files=["res://.godot/imported/ATTACK1-FRONT_page_0016.png-e69d9e5485cf2efbb8d1f7b600d67d04.ctex"] +source_file="res://src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0016.png" +dest_files=["res://.godot/imported/ATTACK1-FRONT_page_0016.png-4b364ece194688ba41484d533674480a.ctex"] [params] diff --git a/src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0017.png b/src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0017.png similarity index 100% rename from src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0017.png rename to src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0017.png diff --git a/src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0017.png.import b/src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0017.png.import similarity index 65% rename from src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0017.png.import rename to src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0017.png.import index 3adf03c2..34978d7b 100644 --- a/src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0017.png.import +++ b/src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0017.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://c8mgfqsjkltk4" -path="res://.godot/imported/ATTACK1-FRONT_page_0017.png-8f83b00c510a2368f7c4a2e8c1b51f4d.ctex" +path="res://.godot/imported/ATTACK1-FRONT_page_0017.png-52c0b6f1ff2954e407684e2d45f36b9b.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0017.png" -dest_files=["res://.godot/imported/ATTACK1-FRONT_page_0017.png-8f83b00c510a2368f7c4a2e8c1b51f4d.ctex"] +source_file="res://src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0017.png" +dest_files=["res://.godot/imported/ATTACK1-FRONT_page_0017.png-52c0b6f1ff2954e407684e2d45f36b9b.ctex"] [params] diff --git a/src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0018.png b/src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0018.png similarity index 100% rename from src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0018.png rename to src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0018.png diff --git a/src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0018.png.import b/src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0018.png.import similarity index 65% rename from src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0018.png.import rename to src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0018.png.import index 13ca138b..3bcdb232 100644 --- a/src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0018.png.import +++ b/src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0018.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://cl4ahinbw38km" -path="res://.godot/imported/ATTACK1-FRONT_page_0018.png-56a4890aeb2421cb3a34c611ed8223a8.ctex" +path="res://.godot/imported/ATTACK1-FRONT_page_0018.png-4a5c2e461c6f2f5f1c38dfcfa544b8e3.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0018.png" -dest_files=["res://.godot/imported/ATTACK1-FRONT_page_0018.png-56a4890aeb2421cb3a34c611ed8223a8.ctex"] +source_file="res://src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0018.png" +dest_files=["res://.godot/imported/ATTACK1-FRONT_page_0018.png-4a5c2e461c6f2f5f1c38dfcfa544b8e3.ctex"] [params] diff --git a/src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0019.png b/src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0019.png similarity index 100% rename from src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0019.png rename to src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0019.png diff --git a/src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0019.png.import b/src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0019.png.import similarity index 65% rename from src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0019.png.import rename to src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0019.png.import index ded4c04f..fe23cafa 100644 --- a/src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0019.png.import +++ b/src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0019.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://ddumhx8gbawkt" -path="res://.godot/imported/ATTACK1-FRONT_page_0019.png-abf760a49aaecd6283519a6b29518004.ctex" +path="res://.godot/imported/ATTACK1-FRONT_page_0019.png-6da56d8469e39a8d3522d44bd7319160.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0019.png" -dest_files=["res://.godot/imported/ATTACK1-FRONT_page_0019.png-abf760a49aaecd6283519a6b29518004.ctex"] +source_file="res://src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0019.png" +dest_files=["res://.godot/imported/ATTACK1-FRONT_page_0019.png-6da56d8469e39a8d3522d44bd7319160.ctex"] [params] diff --git a/src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0020.png b/src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0020.png similarity index 100% rename from src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0020.png rename to src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0020.png diff --git a/src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0020.png.import b/src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0020.png.import similarity index 65% rename from src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0020.png.import rename to src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0020.png.import index d9abb2df..6834352d 100644 --- a/src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0020.png.import +++ b/src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0020.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://cvx6bqxlqic28" -path="res://.godot/imported/ATTACK1-FRONT_page_0020.png-abff410aef23d553385c61aa3b57e3b0.ctex" +path="res://.godot/imported/ATTACK1-FRONT_page_0020.png-05814e88a4ce73b6aecfb4ca7b2c1d16.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0020.png" -dest_files=["res://.godot/imported/ATTACK1-FRONT_page_0020.png-abff410aef23d553385c61aa3b57e3b0.ctex"] +source_file="res://src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0020.png" +dest_files=["res://.godot/imported/ATTACK1-FRONT_page_0020.png-05814e88a4ce73b6aecfb4ca7b2c1d16.ctex"] [params] diff --git a/src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0021.png b/src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0021.png similarity index 100% rename from src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0021.png rename to src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0021.png diff --git a/src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0021.png.import b/src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0021.png.import similarity index 65% rename from src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0021.png.import rename to src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0021.png.import index a644ae03..181f4c2f 100644 --- a/src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0021.png.import +++ b/src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0021.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://dp4dyxjvvf11t" -path="res://.godot/imported/ATTACK1-FRONT_page_0021.png-e53d8349a7757341ccbf4961354cd465.ctex" +path="res://.godot/imported/ATTACK1-FRONT_page_0021.png-a704861c46a7b9f4a93261b2b7deb9ec.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0021.png" -dest_files=["res://.godot/imported/ATTACK1-FRONT_page_0021.png-e53d8349a7757341ccbf4961354cd465.ctex"] +source_file="res://src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0021.png" +dest_files=["res://.godot/imported/ATTACK1-FRONT_page_0021.png-a704861c46a7b9f4a93261b2b7deb9ec.ctex"] [params] diff --git a/src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0022.png b/src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0022.png similarity index 100% rename from src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0022.png rename to src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0022.png diff --git a/src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0022.png.import b/src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0022.png.import similarity index 65% rename from src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0022.png.import rename to src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0022.png.import index c097b61c..ab8083fe 100644 --- a/src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0022.png.import +++ b/src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0022.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://bfgpfrnu55fvd" -path="res://.godot/imported/ATTACK1-FRONT_page_0022.png-ebdda7ac4d32dec0f28515771ef82944.ctex" +path="res://.godot/imported/ATTACK1-FRONT_page_0022.png-78f0fa8292ed6ce016bb3b3d25c27c49.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0022.png" -dest_files=["res://.godot/imported/ATTACK1-FRONT_page_0022.png-ebdda7ac4d32dec0f28515771ef82944.ctex"] +source_file="res://src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0022.png" +dest_files=["res://.godot/imported/ATTACK1-FRONT_page_0022.png-78f0fa8292ed6ce016bb3b3d25c27c49.ctex"] [params] diff --git a/src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0023.png b/src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0023.png similarity index 100% rename from src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0023.png rename to src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0023.png diff --git a/src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0023.png.import b/src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0023.png.import similarity index 65% rename from src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0023.png.import rename to src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0023.png.import index 020cada3..38eacc75 100644 --- a/src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0023.png.import +++ b/src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0023.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://blyndvuc8elvn" -path="res://.godot/imported/ATTACK1-FRONT_page_0023.png-abc772b90094dac5a15600cee2f7f64f.ctex" +path="res://.godot/imported/ATTACK1-FRONT_page_0023.png-cf716d675b8e2237f4918759c7a565f4.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0023.png" -dest_files=["res://.godot/imported/ATTACK1-FRONT_page_0023.png-abc772b90094dac5a15600cee2f7f64f.ctex"] +source_file="res://src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0023.png" +dest_files=["res://.godot/imported/ATTACK1-FRONT_page_0023.png-cf716d675b8e2237f4918759c7a565f4.ctex"] [params] diff --git a/src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0024.png b/src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0024.png similarity index 100% rename from src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0024.png rename to src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0024.png diff --git a/src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0024.png.import b/src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0024.png.import similarity index 65% rename from src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0024.png.import rename to src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0024.png.import index dcd6de0a..3e465821 100644 --- a/src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0024.png.import +++ b/src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0024.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://bxufrxhi1f6w1" -path="res://.godot/imported/ATTACK1-FRONT_page_0024.png-16cf3b738aa850b012e8507948461867.ctex" +path="res://.godot/imported/ATTACK1-FRONT_page_0024.png-a4fdee470e0510229f1a5d06e98a4e87.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0024.png" -dest_files=["res://.godot/imported/ATTACK1-FRONT_page_0024.png-16cf3b738aa850b012e8507948461867.ctex"] +source_file="res://src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0024.png" +dest_files=["res://.godot/imported/ATTACK1-FRONT_page_0024.png-a4fdee470e0510229f1a5d06e98a4e87.ctex"] [params] diff --git a/src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0025.png b/src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0025.png similarity index 100% rename from src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0025.png rename to src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0025.png diff --git a/src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0025.png.import b/src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0025.png.import similarity index 65% rename from src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0025.png.import rename to src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0025.png.import index d1e676f6..20c01175 100644 --- a/src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0025.png.import +++ b/src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0025.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://b7sbrrb6uth4m" -path="res://.godot/imported/ATTACK1-FRONT_page_0025.png-7af552d5cfd9f35e8c18952612ae625f.ctex" +path="res://.godot/imported/ATTACK1-FRONT_page_0025.png-41d0c470094870410e82009cc1402456.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0025.png" -dest_files=["res://.godot/imported/ATTACK1-FRONT_page_0025.png-7af552d5cfd9f35e8c18952612ae625f.ctex"] +source_file="res://src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0025.png" +dest_files=["res://.godot/imported/ATTACK1-FRONT_page_0025.png-41d0c470094870410e82009cc1402456.ctex"] [params] diff --git a/src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0026.png b/src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0026.png similarity index 100% rename from src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0026.png rename to src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0026.png diff --git a/src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0026.png.import b/src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0026.png.import new file mode 100644 index 00000000..a929029b --- /dev/null +++ b/src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0026.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://g3jg26dtwbwn" +path="res://.godot/imported/ATTACK1-FRONT_page_0026.png-8c487e04b232c6bd495e8c5cd6b6b648.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0026.png" +dest_files=["res://.godot/imported/ATTACK1-FRONT_page_0026.png-8c487e04b232c6bd495e8c5cd6b6b648.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0027.png b/src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0027.png similarity index 100% rename from src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0027.png rename to src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0027.png diff --git a/src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0027.png.import b/src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0027.png.import similarity index 65% rename from src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0027.png.import rename to src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0027.png.import index 82a00e7a..b3ccdb8e 100644 --- a/src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0027.png.import +++ b/src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0027.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://b16jouwprfqwa" -path="res://.godot/imported/ATTACK1-FRONT_page_0027.png-18e6fa3f78a902b76eae0fc9d619a93f.ctex" +path="res://.godot/imported/ATTACK1-FRONT_page_0027.png-21b2654c5bb22ad05e7e805eb16bc956.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0027.png" -dest_files=["res://.godot/imported/ATTACK1-FRONT_page_0027.png-18e6fa3f78a902b76eae0fc9d619a93f.ctex"] +source_file="res://src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0027.png" +dest_files=["res://.godot/imported/ATTACK1-FRONT_page_0027.png-21b2654c5bb22ad05e7e805eb16bc956.ctex"] [params] diff --git a/src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0028.png b/src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0028.png similarity index 100% rename from src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0028.png rename to src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0028.png diff --git a/src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0028.png.import b/src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0028.png.import similarity index 65% rename from src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0028.png.import rename to src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0028.png.import index 85cdd4c0..ba816f5d 100644 --- a/src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0028.png.import +++ b/src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0028.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://b34kahr1kgxxw" -path="res://.godot/imported/ATTACK1-FRONT_page_0028.png-b18e09605ad69a058b8ca78ee074b3a7.ctex" +path="res://.godot/imported/ATTACK1-FRONT_page_0028.png-7b2cf6f63e621f0409c77fc5d1830f38.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0028.png" -dest_files=["res://.godot/imported/ATTACK1-FRONT_page_0028.png-b18e09605ad69a058b8ca78ee074b3a7.ctex"] +source_file="res://src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0028.png" +dest_files=["res://.godot/imported/ATTACK1-FRONT_page_0028.png-7b2cf6f63e621f0409c77fc5d1830f38.ctex"] [params] diff --git a/src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0029.png b/src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0029.png similarity index 100% rename from src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0029.png rename to src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0029.png diff --git a/src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0029.png.import b/src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0029.png.import similarity index 65% rename from src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0029.png.import rename to src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0029.png.import index 1739d381..5e00db0d 100644 --- a/src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0029.png.import +++ b/src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0029.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://catbl4pjo72ox" -path="res://.godot/imported/ATTACK1-FRONT_page_0029.png-fbb1a551a49d442cc2aeb26f4c70b423.ctex" +path="res://.godot/imported/ATTACK1-FRONT_page_0029.png-66741b7f92b0fc147840b8cbe0c2d3c1.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0029.png" -dest_files=["res://.godot/imported/ATTACK1-FRONT_page_0029.png-fbb1a551a49d442cc2aeb26f4c70b423.ctex"] +source_file="res://src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0029.png" +dest_files=["res://.godot/imported/ATTACK1-FRONT_page_0029.png-66741b7f92b0fc147840b8cbe0c2d3c1.ctex"] [params] diff --git a/src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0030.png b/src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0030.png similarity index 100% rename from src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0030.png rename to src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0030.png diff --git a/src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0030.png.import b/src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0030.png.import similarity index 65% rename from src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0030.png.import rename to src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0030.png.import index 629d0f4b..083b3399 100644 --- a/src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0030.png.import +++ b/src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0030.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://dbg3r41b0pq72" -path="res://.godot/imported/ATTACK1-FRONT_page_0030.png-e041f9300577d2450e4ac07e20b0e366.ctex" +path="res://.godot/imported/ATTACK1-FRONT_page_0030.png-ab88964f080dda1d2f4d567786078daa.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0030.png" -dest_files=["res://.godot/imported/ATTACK1-FRONT_page_0030.png-e041f9300577d2450e4ac07e20b0e366.ctex"] +source_file="res://src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0030.png" +dest_files=["res://.godot/imported/ATTACK1-FRONT_page_0030.png-ab88964f080dda1d2f4d567786078daa.ctex"] [params] diff --git a/src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0031.png b/src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0031.png similarity index 100% rename from src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0031.png rename to src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0031.png diff --git a/src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0031.png.import b/src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0031.png.import similarity index 65% rename from src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0031.png.import rename to src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0031.png.import index cd7b0c71..48236ae4 100644 --- a/src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0031.png.import +++ b/src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0031.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://b575g3v01jphe" -path="res://.godot/imported/ATTACK1-FRONT_page_0031.png-31f432149a6a87081b9e1e8252692fd6.ctex" +path="res://.godot/imported/ATTACK1-FRONT_page_0031.png-5ee3563d7fe4abea3f6e5d15114a7ab6.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0031.png" -dest_files=["res://.godot/imported/ATTACK1-FRONT_page_0031.png-31f432149a6a87081b9e1e8252692fd6.ctex"] +source_file="res://src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0031.png" +dest_files=["res://.godot/imported/ATTACK1-FRONT_page_0031.png-5ee3563d7fe4abea3f6e5d15114a7ab6.ctex"] [params] diff --git a/src/enemy/enemy_types/7. chinte/animations/HOP BACK/HOP-BACK_page_0001.png b/src/enemy/enemy_types/7. chinthe/animations/HOP BACK/HOP-BACK_page_0001.png similarity index 100% rename from src/enemy/enemy_types/7. chinte/animations/HOP BACK/HOP-BACK_page_0001.png rename to src/enemy/enemy_types/7. chinthe/animations/HOP BACK/HOP-BACK_page_0001.png diff --git a/src/enemy/enemy_types/7. chinte/animations/HOP BACK/HOP-BACK_page_0001.png.import b/src/enemy/enemy_types/7. chinthe/animations/HOP BACK/HOP-BACK_page_0001.png.import similarity index 66% rename from src/enemy/enemy_types/7. chinte/animations/HOP BACK/HOP-BACK_page_0001.png.import rename to src/enemy/enemy_types/7. chinthe/animations/HOP BACK/HOP-BACK_page_0001.png.import index 983be57e..5b5eb551 100644 --- a/src/enemy/enemy_types/7. chinte/animations/HOP BACK/HOP-BACK_page_0001.png.import +++ b/src/enemy/enemy_types/7. chinthe/animations/HOP BACK/HOP-BACK_page_0001.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://u2xjqc5ksrms" -path="res://.godot/imported/HOP-BACK_page_0001.png-3fdba413833e9d8c02f6311849b82500.ctex" +path="res://.godot/imported/HOP-BACK_page_0001.png-8314d8e4f23f6c16b457c5fbb1233b88.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/7. chinte/animations/HOP BACK/HOP-BACK_page_0001.png" -dest_files=["res://.godot/imported/HOP-BACK_page_0001.png-3fdba413833e9d8c02f6311849b82500.ctex"] +source_file="res://src/enemy/enemy_types/7. chinthe/animations/HOP BACK/HOP-BACK_page_0001.png" +dest_files=["res://.godot/imported/HOP-BACK_page_0001.png-8314d8e4f23f6c16b457c5fbb1233b88.ctex"] [params] diff --git a/src/enemy/enemy_types/7. chinte/animations/HOP BACK/HOP-BACK_page_0002.png b/src/enemy/enemy_types/7. chinthe/animations/HOP BACK/HOP-BACK_page_0002.png similarity index 100% rename from src/enemy/enemy_types/7. chinte/animations/HOP BACK/HOP-BACK_page_0002.png rename to src/enemy/enemy_types/7. chinthe/animations/HOP BACK/HOP-BACK_page_0002.png diff --git a/src/enemy/enemy_types/7. chinte/animations/HOP BACK/HOP-BACK_page_0002.png.import b/src/enemy/enemy_types/7. chinthe/animations/HOP BACK/HOP-BACK_page_0002.png.import similarity index 66% rename from src/enemy/enemy_types/7. chinte/animations/HOP BACK/HOP-BACK_page_0002.png.import rename to src/enemy/enemy_types/7. chinthe/animations/HOP BACK/HOP-BACK_page_0002.png.import index b27e0687..be11df1a 100644 --- a/src/enemy/enemy_types/7. chinte/animations/HOP BACK/HOP-BACK_page_0002.png.import +++ b/src/enemy/enemy_types/7. chinthe/animations/HOP BACK/HOP-BACK_page_0002.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://bvry4nr83oonj" -path="res://.godot/imported/HOP-BACK_page_0002.png-1156fe93f9a53994914c047f8d2a6afe.ctex" +path="res://.godot/imported/HOP-BACK_page_0002.png-4706abdd34f1c27c39b8fc3d6f13e0c8.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/7. chinte/animations/HOP BACK/HOP-BACK_page_0002.png" -dest_files=["res://.godot/imported/HOP-BACK_page_0002.png-1156fe93f9a53994914c047f8d2a6afe.ctex"] +source_file="res://src/enemy/enemy_types/7. chinthe/animations/HOP BACK/HOP-BACK_page_0002.png" +dest_files=["res://.godot/imported/HOP-BACK_page_0002.png-4706abdd34f1c27c39b8fc3d6f13e0c8.ctex"] [params] diff --git a/src/enemy/enemy_types/7. chinte/animations/HOP BACK/HOP-BACK_page_0003.png b/src/enemy/enemy_types/7. chinthe/animations/HOP BACK/HOP-BACK_page_0003.png similarity index 100% rename from src/enemy/enemy_types/7. chinte/animations/HOP BACK/HOP-BACK_page_0003.png rename to src/enemy/enemy_types/7. chinthe/animations/HOP BACK/HOP-BACK_page_0003.png diff --git a/src/enemy/enemy_types/7. chinte/animations/HOP BACK/HOP-BACK_page_0003.png.import b/src/enemy/enemy_types/7. chinthe/animations/HOP BACK/HOP-BACK_page_0003.png.import similarity index 66% rename from src/enemy/enemy_types/7. chinte/animations/HOP BACK/HOP-BACK_page_0003.png.import rename to src/enemy/enemy_types/7. chinthe/animations/HOP BACK/HOP-BACK_page_0003.png.import index 710f5314..33506f40 100644 --- a/src/enemy/enemy_types/7. chinte/animations/HOP BACK/HOP-BACK_page_0003.png.import +++ b/src/enemy/enemy_types/7. chinthe/animations/HOP BACK/HOP-BACK_page_0003.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://bgfqim1idm4kp" -path="res://.godot/imported/HOP-BACK_page_0003.png-45f1b1402d114e1e22992663f2dc9a42.ctex" +path="res://.godot/imported/HOP-BACK_page_0003.png-c9743c41ee370a1e25300100234dc641.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/7. chinte/animations/HOP BACK/HOP-BACK_page_0003.png" -dest_files=["res://.godot/imported/HOP-BACK_page_0003.png-45f1b1402d114e1e22992663f2dc9a42.ctex"] +source_file="res://src/enemy/enemy_types/7. chinthe/animations/HOP BACK/HOP-BACK_page_0003.png" +dest_files=["res://.godot/imported/HOP-BACK_page_0003.png-c9743c41ee370a1e25300100234dc641.ctex"] [params] diff --git a/src/enemy/enemy_types/7. chinte/animations/HOP BACK/HOP-BACK_page_0004.png b/src/enemy/enemy_types/7. chinthe/animations/HOP BACK/HOP-BACK_page_0004.png similarity index 100% rename from src/enemy/enemy_types/7. chinte/animations/HOP BACK/HOP-BACK_page_0004.png rename to src/enemy/enemy_types/7. chinthe/animations/HOP BACK/HOP-BACK_page_0004.png diff --git a/src/enemy/enemy_types/7. chinte/animations/HOP BACK/HOP-BACK_page_0004.png.import b/src/enemy/enemy_types/7. chinthe/animations/HOP BACK/HOP-BACK_page_0004.png.import similarity index 66% rename from src/enemy/enemy_types/7. chinte/animations/HOP BACK/HOP-BACK_page_0004.png.import rename to src/enemy/enemy_types/7. chinthe/animations/HOP BACK/HOP-BACK_page_0004.png.import index 44da2d3f..69640897 100644 --- a/src/enemy/enemy_types/7. chinte/animations/HOP BACK/HOP-BACK_page_0004.png.import +++ b/src/enemy/enemy_types/7. chinthe/animations/HOP BACK/HOP-BACK_page_0004.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://d0jap5uvy72rj" -path="res://.godot/imported/HOP-BACK_page_0004.png-756e87b6f8a65a6377eb599c10233189.ctex" +path="res://.godot/imported/HOP-BACK_page_0004.png-4e0b6c53700f1d1c6e8a80da64dd074f.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/7. chinte/animations/HOP BACK/HOP-BACK_page_0004.png" -dest_files=["res://.godot/imported/HOP-BACK_page_0004.png-756e87b6f8a65a6377eb599c10233189.ctex"] +source_file="res://src/enemy/enemy_types/7. chinthe/animations/HOP BACK/HOP-BACK_page_0004.png" +dest_files=["res://.godot/imported/HOP-BACK_page_0004.png-4e0b6c53700f1d1c6e8a80da64dd074f.ctex"] [params] diff --git a/src/enemy/enemy_types/7. chinte/animations/HOP BACK/HOP-BACK_page_0005.png b/src/enemy/enemy_types/7. chinthe/animations/HOP BACK/HOP-BACK_page_0005.png similarity index 100% rename from src/enemy/enemy_types/7. chinte/animations/HOP BACK/HOP-BACK_page_0005.png rename to src/enemy/enemy_types/7. chinthe/animations/HOP BACK/HOP-BACK_page_0005.png diff --git a/src/enemy/enemy_types/7. chinte/animations/HOP BACK/HOP-BACK_page_0005.png.import b/src/enemy/enemy_types/7. chinthe/animations/HOP BACK/HOP-BACK_page_0005.png.import similarity index 66% rename from src/enemy/enemy_types/7. chinte/animations/HOP BACK/HOP-BACK_page_0005.png.import rename to src/enemy/enemy_types/7. chinthe/animations/HOP BACK/HOP-BACK_page_0005.png.import index 31b11776..289cffa7 100644 --- a/src/enemy/enemy_types/7. chinte/animations/HOP BACK/HOP-BACK_page_0005.png.import +++ b/src/enemy/enemy_types/7. chinthe/animations/HOP BACK/HOP-BACK_page_0005.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://cxwualwcihxf6" -path="res://.godot/imported/HOP-BACK_page_0005.png-833517afb0d260fc9619f37c9b4216df.ctex" +path="res://.godot/imported/HOP-BACK_page_0005.png-2699bafd5a778048d3b967d2f951b223.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/7. chinte/animations/HOP BACK/HOP-BACK_page_0005.png" -dest_files=["res://.godot/imported/HOP-BACK_page_0005.png-833517afb0d260fc9619f37c9b4216df.ctex"] +source_file="res://src/enemy/enemy_types/7. chinthe/animations/HOP BACK/HOP-BACK_page_0005.png" +dest_files=["res://.godot/imported/HOP-BACK_page_0005.png-2699bafd5a778048d3b967d2f951b223.ctex"] [params] diff --git a/src/enemy/enemy_types/7. chinte/animations/HOP BACK/HOP-BACK_page_0006.png b/src/enemy/enemy_types/7. chinthe/animations/HOP BACK/HOP-BACK_page_0006.png similarity index 100% rename from src/enemy/enemy_types/7. chinte/animations/HOP BACK/HOP-BACK_page_0006.png rename to src/enemy/enemy_types/7. chinthe/animations/HOP BACK/HOP-BACK_page_0006.png diff --git a/src/enemy/enemy_types/7. chinte/animations/HOP BACK/HOP-BACK_page_0006.png.import b/src/enemy/enemy_types/7. chinthe/animations/HOP BACK/HOP-BACK_page_0006.png.import similarity index 66% rename from src/enemy/enemy_types/7. chinte/animations/HOP BACK/HOP-BACK_page_0006.png.import rename to src/enemy/enemy_types/7. chinthe/animations/HOP BACK/HOP-BACK_page_0006.png.import index 382ee05a..2db98b60 100644 --- a/src/enemy/enemy_types/7. chinte/animations/HOP BACK/HOP-BACK_page_0006.png.import +++ b/src/enemy/enemy_types/7. chinthe/animations/HOP BACK/HOP-BACK_page_0006.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://bfsocf0k8yioa" -path="res://.godot/imported/HOP-BACK_page_0006.png-4b4e78195421afccfbd9220dab35b441.ctex" +path="res://.godot/imported/HOP-BACK_page_0006.png-80f582cad686a3784c601471e864f21f.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/7. chinte/animations/HOP BACK/HOP-BACK_page_0006.png" -dest_files=["res://.godot/imported/HOP-BACK_page_0006.png-4b4e78195421afccfbd9220dab35b441.ctex"] +source_file="res://src/enemy/enemy_types/7. chinthe/animations/HOP BACK/HOP-BACK_page_0006.png" +dest_files=["res://.godot/imported/HOP-BACK_page_0006.png-80f582cad686a3784c601471e864f21f.ctex"] [params] diff --git a/src/enemy/enemy_types/7. chinte/animations/HOP BACK/HOP-BACK_page_0007.png b/src/enemy/enemy_types/7. chinthe/animations/HOP BACK/HOP-BACK_page_0007.png similarity index 100% rename from src/enemy/enemy_types/7. chinte/animations/HOP BACK/HOP-BACK_page_0007.png rename to src/enemy/enemy_types/7. chinthe/animations/HOP BACK/HOP-BACK_page_0007.png diff --git a/src/enemy/enemy_types/7. chinte/animations/HOP BACK/HOP-BACK_page_0007.png.import b/src/enemy/enemy_types/7. chinthe/animations/HOP BACK/HOP-BACK_page_0007.png.import similarity index 66% rename from src/enemy/enemy_types/7. chinte/animations/HOP BACK/HOP-BACK_page_0007.png.import rename to src/enemy/enemy_types/7. chinthe/animations/HOP BACK/HOP-BACK_page_0007.png.import index 26831e6e..c9fd320c 100644 --- a/src/enemy/enemy_types/7. chinte/animations/HOP BACK/HOP-BACK_page_0007.png.import +++ b/src/enemy/enemy_types/7. chinthe/animations/HOP BACK/HOP-BACK_page_0007.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://c2nutnin4pm3" -path="res://.godot/imported/HOP-BACK_page_0007.png-abb9e036fb866668ade7289cc2c1bfec.ctex" +path="res://.godot/imported/HOP-BACK_page_0007.png-b3723130ca418ee3188b69edc6d5332b.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/7. chinte/animations/HOP BACK/HOP-BACK_page_0007.png" -dest_files=["res://.godot/imported/HOP-BACK_page_0007.png-abb9e036fb866668ade7289cc2c1bfec.ctex"] +source_file="res://src/enemy/enemy_types/7. chinthe/animations/HOP BACK/HOP-BACK_page_0007.png" +dest_files=["res://.godot/imported/HOP-BACK_page_0007.png-b3723130ca418ee3188b69edc6d5332b.ctex"] [params] diff --git a/src/enemy/enemy_types/7. chinte/animations/HOP BACK/HOP-BACK_page_0008.png b/src/enemy/enemy_types/7. chinthe/animations/HOP BACK/HOP-BACK_page_0008.png similarity index 100% rename from src/enemy/enemy_types/7. chinte/animations/HOP BACK/HOP-BACK_page_0008.png rename to src/enemy/enemy_types/7. chinthe/animations/HOP BACK/HOP-BACK_page_0008.png diff --git a/src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0026.png.import b/src/enemy/enemy_types/7. chinthe/animations/HOP BACK/HOP-BACK_page_0008.png.import similarity index 66% rename from src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0026.png.import rename to src/enemy/enemy_types/7. chinthe/animations/HOP BACK/HOP-BACK_page_0008.png.import index cbaf2eed..79214edb 100644 --- a/src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0026.png.import +++ b/src/enemy/enemy_types/7. chinthe/animations/HOP BACK/HOP-BACK_page_0008.png.import @@ -2,16 +2,16 @@ importer="texture" type="CompressedTexture2D" -uid="uid://g3jg26dtwbwn" -path="res://.godot/imported/ATTACK1-FRONT_page_0026.png-fb4fd668a9b3ce334f66206fa5a59d94.ctex" +uid="uid://b3ytuouobuup" +path="res://.godot/imported/HOP-BACK_page_0008.png-5c2bdbc4b4fef123417ae38b2747ccb0.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0026.png" -dest_files=["res://.godot/imported/ATTACK1-FRONT_page_0026.png-fb4fd668a9b3ce334f66206fa5a59d94.ctex"] +source_file="res://src/enemy/enemy_types/7. chinthe/animations/HOP BACK/HOP-BACK_page_0008.png" +dest_files=["res://.godot/imported/HOP-BACK_page_0008.png-5c2bdbc4b4fef123417ae38b2747ccb0.ctex"] [params] diff --git a/src/enemy/enemy_types/7. chinte/animations/HOP BACK/HOP-BACK_page_0009.png b/src/enemy/enemy_types/7. chinthe/animations/HOP BACK/HOP-BACK_page_0009.png similarity index 100% rename from src/enemy/enemy_types/7. chinte/animations/HOP BACK/HOP-BACK_page_0009.png rename to src/enemy/enemy_types/7. chinthe/animations/HOP BACK/HOP-BACK_page_0009.png diff --git a/src/enemy/enemy_types/7. chinte/animations/HOP BACK/HOP-BACK_page_0009.png.import b/src/enemy/enemy_types/7. chinthe/animations/HOP BACK/HOP-BACK_page_0009.png.import similarity index 66% rename from src/enemy/enemy_types/7. chinte/animations/HOP BACK/HOP-BACK_page_0009.png.import rename to src/enemy/enemy_types/7. chinthe/animations/HOP BACK/HOP-BACK_page_0009.png.import index a7b45b3b..8338c56c 100644 --- a/src/enemy/enemy_types/7. chinte/animations/HOP BACK/HOP-BACK_page_0009.png.import +++ b/src/enemy/enemy_types/7. chinthe/animations/HOP BACK/HOP-BACK_page_0009.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://beff1mhve0psp" -path="res://.godot/imported/HOP-BACK_page_0009.png-6a532345fca0440cce5eb9ab17cbbfc7.ctex" +path="res://.godot/imported/HOP-BACK_page_0009.png-4cb4f72cb684d5c77a7852802b1c245a.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/7. chinte/animations/HOP BACK/HOP-BACK_page_0009.png" -dest_files=["res://.godot/imported/HOP-BACK_page_0009.png-6a532345fca0440cce5eb9ab17cbbfc7.ctex"] +source_file="res://src/enemy/enemy_types/7. chinthe/animations/HOP BACK/HOP-BACK_page_0009.png" +dest_files=["res://.godot/imported/HOP-BACK_page_0009.png-4cb4f72cb684d5c77a7852802b1c245a.ctex"] [params] diff --git a/src/enemy/enemy_types/7. chinte/animations/HOP BACK/HOP-BACK_page_0010.png b/src/enemy/enemy_types/7. chinthe/animations/HOP BACK/HOP-BACK_page_0010.png similarity index 100% rename from src/enemy/enemy_types/7. chinte/animations/HOP BACK/HOP-BACK_page_0010.png rename to src/enemy/enemy_types/7. chinthe/animations/HOP BACK/HOP-BACK_page_0010.png diff --git a/src/enemy/enemy_types/7. chinte/animations/HOP BACK/HOP-BACK_page_0010.png.import b/src/enemy/enemy_types/7. chinthe/animations/HOP BACK/HOP-BACK_page_0010.png.import similarity index 66% rename from src/enemy/enemy_types/7. chinte/animations/HOP BACK/HOP-BACK_page_0010.png.import rename to src/enemy/enemy_types/7. chinthe/animations/HOP BACK/HOP-BACK_page_0010.png.import index 744c474e..3f12f916 100644 --- a/src/enemy/enemy_types/7. chinte/animations/HOP BACK/HOP-BACK_page_0010.png.import +++ b/src/enemy/enemy_types/7. chinthe/animations/HOP BACK/HOP-BACK_page_0010.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://cjowfifu2ds1k" -path="res://.godot/imported/HOP-BACK_page_0010.png-ae337546ecf78c03e8ecbe87e56532fb.ctex" +path="res://.godot/imported/HOP-BACK_page_0010.png-72c9f427fb2e2ac776994bfd1faec5ed.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/7. chinte/animations/HOP BACK/HOP-BACK_page_0010.png" -dest_files=["res://.godot/imported/HOP-BACK_page_0010.png-ae337546ecf78c03e8ecbe87e56532fb.ctex"] +source_file="res://src/enemy/enemy_types/7. chinthe/animations/HOP BACK/HOP-BACK_page_0010.png" +dest_files=["res://.godot/imported/HOP-BACK_page_0010.png-72c9f427fb2e2ac776994bfd1faec5ed.ctex"] [params] diff --git a/src/enemy/enemy_types/7. chinte/animations/HOP BACK/HOP-BACK_page_0011.png b/src/enemy/enemy_types/7. chinthe/animations/HOP BACK/HOP-BACK_page_0011.png similarity index 100% rename from src/enemy/enemy_types/7. chinte/animations/HOP BACK/HOP-BACK_page_0011.png rename to src/enemy/enemy_types/7. chinthe/animations/HOP BACK/HOP-BACK_page_0011.png diff --git a/src/enemy/enemy_types/7. chinte/animations/HOP BACK/HOP-BACK_page_0011.png.import b/src/enemy/enemy_types/7. chinthe/animations/HOP BACK/HOP-BACK_page_0011.png.import similarity index 66% rename from src/enemy/enemy_types/7. chinte/animations/HOP BACK/HOP-BACK_page_0011.png.import rename to src/enemy/enemy_types/7. chinthe/animations/HOP BACK/HOP-BACK_page_0011.png.import index a386a332..bbb888d8 100644 --- a/src/enemy/enemy_types/7. chinte/animations/HOP BACK/HOP-BACK_page_0011.png.import +++ b/src/enemy/enemy_types/7. chinthe/animations/HOP BACK/HOP-BACK_page_0011.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://dk3yw0kma6jrw" -path="res://.godot/imported/HOP-BACK_page_0011.png-90aada3241d621a497858387c2559f39.ctex" +path="res://.godot/imported/HOP-BACK_page_0011.png-05558b7506256ed66aac7216f497dd92.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/7. chinte/animations/HOP BACK/HOP-BACK_page_0011.png" -dest_files=["res://.godot/imported/HOP-BACK_page_0011.png-90aada3241d621a497858387c2559f39.ctex"] +source_file="res://src/enemy/enemy_types/7. chinthe/animations/HOP BACK/HOP-BACK_page_0011.png" +dest_files=["res://.godot/imported/HOP-BACK_page_0011.png-05558b7506256ed66aac7216f497dd92.ctex"] [params] diff --git a/src/enemy/enemy_types/7. chinte/animations/HOP BACK/HOP-BACK_page_0012.png b/src/enemy/enemy_types/7. chinthe/animations/HOP BACK/HOP-BACK_page_0012.png similarity index 100% rename from src/enemy/enemy_types/7. chinte/animations/HOP BACK/HOP-BACK_page_0012.png rename to src/enemy/enemy_types/7. chinthe/animations/HOP BACK/HOP-BACK_page_0012.png diff --git a/src/enemy/enemy_types/7. chinte/animations/HOP BACK/HOP-BACK_page_0012.png.import b/src/enemy/enemy_types/7. chinthe/animations/HOP BACK/HOP-BACK_page_0012.png.import similarity index 66% rename from src/enemy/enemy_types/7. chinte/animations/HOP BACK/HOP-BACK_page_0012.png.import rename to src/enemy/enemy_types/7. chinthe/animations/HOP BACK/HOP-BACK_page_0012.png.import index ed417f3f..10f8cbbd 100644 --- a/src/enemy/enemy_types/7. chinte/animations/HOP BACK/HOP-BACK_page_0012.png.import +++ b/src/enemy/enemy_types/7. chinthe/animations/HOP BACK/HOP-BACK_page_0012.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://bhxt86sqswrb8" -path="res://.godot/imported/HOP-BACK_page_0012.png-927eeb3f6aaf97eccf02f029f11a23cc.ctex" +path="res://.godot/imported/HOP-BACK_page_0012.png-e9a37d8bf624c9ba6c2652f3a8892ee1.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/7. chinte/animations/HOP BACK/HOP-BACK_page_0012.png" -dest_files=["res://.godot/imported/HOP-BACK_page_0012.png-927eeb3f6aaf97eccf02f029f11a23cc.ctex"] +source_file="res://src/enemy/enemy_types/7. chinthe/animations/HOP BACK/HOP-BACK_page_0012.png" +dest_files=["res://.godot/imported/HOP-BACK_page_0012.png-e9a37d8bf624c9ba6c2652f3a8892ee1.ctex"] [params] diff --git a/src/enemy/enemy_types/7. chinte/animations/HOP BACK/HOP-BACK_page_0013.png b/src/enemy/enemy_types/7. chinthe/animations/HOP BACK/HOP-BACK_page_0013.png similarity index 100% rename from src/enemy/enemy_types/7. chinte/animations/HOP BACK/HOP-BACK_page_0013.png rename to src/enemy/enemy_types/7. chinthe/animations/HOP BACK/HOP-BACK_page_0013.png diff --git a/src/enemy/enemy_types/7. chinte/animations/HOP BACK/HOP-BACK_page_0013.png.import b/src/enemy/enemy_types/7. chinthe/animations/HOP BACK/HOP-BACK_page_0013.png.import similarity index 66% rename from src/enemy/enemy_types/7. chinte/animations/HOP BACK/HOP-BACK_page_0013.png.import rename to src/enemy/enemy_types/7. chinthe/animations/HOP BACK/HOP-BACK_page_0013.png.import index 16991724..b6a2f4cc 100644 --- a/src/enemy/enemy_types/7. chinte/animations/HOP BACK/HOP-BACK_page_0013.png.import +++ b/src/enemy/enemy_types/7. chinthe/animations/HOP BACK/HOP-BACK_page_0013.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://cheahf8qonbgf" -path="res://.godot/imported/HOP-BACK_page_0013.png-21506e3494154890b1dae42c1d9e1127.ctex" +path="res://.godot/imported/HOP-BACK_page_0013.png-89b703d2a45807906ceeab100baf6f5e.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/7. chinte/animations/HOP BACK/HOP-BACK_page_0013.png" -dest_files=["res://.godot/imported/HOP-BACK_page_0013.png-21506e3494154890b1dae42c1d9e1127.ctex"] +source_file="res://src/enemy/enemy_types/7. chinthe/animations/HOP BACK/HOP-BACK_page_0013.png" +dest_files=["res://.godot/imported/HOP-BACK_page_0013.png-89b703d2a45807906ceeab100baf6f5e.ctex"] [params] diff --git a/src/enemy/enemy_types/7. chinte/animations/HOP BACK/HOP-BACK_page_0014.png b/src/enemy/enemy_types/7. chinthe/animations/HOP BACK/HOP-BACK_page_0014.png similarity index 100% rename from src/enemy/enemy_types/7. chinte/animations/HOP BACK/HOP-BACK_page_0014.png rename to src/enemy/enemy_types/7. chinthe/animations/HOP BACK/HOP-BACK_page_0014.png diff --git a/src/enemy/enemy_types/7. chinte/animations/HOP BACK/HOP-BACK_page_0014.png.import b/src/enemy/enemy_types/7. chinthe/animations/HOP BACK/HOP-BACK_page_0014.png.import similarity index 66% rename from src/enemy/enemy_types/7. chinte/animations/HOP BACK/HOP-BACK_page_0014.png.import rename to src/enemy/enemy_types/7. chinthe/animations/HOP BACK/HOP-BACK_page_0014.png.import index 2573628b..7150d12b 100644 --- a/src/enemy/enemy_types/7. chinte/animations/HOP BACK/HOP-BACK_page_0014.png.import +++ b/src/enemy/enemy_types/7. chinthe/animations/HOP BACK/HOP-BACK_page_0014.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://0knojjfwjtgv" -path="res://.godot/imported/HOP-BACK_page_0014.png-9e07645521e6194ff82ee26401c4c4f1.ctex" +path="res://.godot/imported/HOP-BACK_page_0014.png-b80c19df032cef11f492565ebc075177.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/7. chinte/animations/HOP BACK/HOP-BACK_page_0014.png" -dest_files=["res://.godot/imported/HOP-BACK_page_0014.png-9e07645521e6194ff82ee26401c4c4f1.ctex"] +source_file="res://src/enemy/enemy_types/7. chinthe/animations/HOP BACK/HOP-BACK_page_0014.png" +dest_files=["res://.godot/imported/HOP-BACK_page_0014.png-b80c19df032cef11f492565ebc075177.ctex"] [params] diff --git a/src/enemy/enemy_types/7. chinte/animations/HOP BACK/HOP-BACK_page_0015.png b/src/enemy/enemy_types/7. chinthe/animations/HOP BACK/HOP-BACK_page_0015.png similarity index 100% rename from src/enemy/enemy_types/7. chinte/animations/HOP BACK/HOP-BACK_page_0015.png rename to src/enemy/enemy_types/7. chinthe/animations/HOP BACK/HOP-BACK_page_0015.png diff --git a/src/enemy/enemy_types/7. chinte/animations/HOP BACK/HOP-BACK_page_0015.png.import b/src/enemy/enemy_types/7. chinthe/animations/HOP BACK/HOP-BACK_page_0015.png.import similarity index 66% rename from src/enemy/enemy_types/7. chinte/animations/HOP BACK/HOP-BACK_page_0015.png.import rename to src/enemy/enemy_types/7. chinthe/animations/HOP BACK/HOP-BACK_page_0015.png.import index 9d97fbfe..14ab785e 100644 --- a/src/enemy/enemy_types/7. chinte/animations/HOP BACK/HOP-BACK_page_0015.png.import +++ b/src/enemy/enemy_types/7. chinthe/animations/HOP BACK/HOP-BACK_page_0015.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://gawp5d82ei1v" -path="res://.godot/imported/HOP-BACK_page_0015.png-8aeeb1ef080ec68ddc4d64a8292435c2.ctex" +path="res://.godot/imported/HOP-BACK_page_0015.png-ee3618f3535a649e660c27992ae9b495.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/7. chinte/animations/HOP BACK/HOP-BACK_page_0015.png" -dest_files=["res://.godot/imported/HOP-BACK_page_0015.png-8aeeb1ef080ec68ddc4d64a8292435c2.ctex"] +source_file="res://src/enemy/enemy_types/7. chinthe/animations/HOP BACK/HOP-BACK_page_0015.png" +dest_files=["res://.godot/imported/HOP-BACK_page_0015.png-ee3618f3535a649e660c27992ae9b495.ctex"] [params] diff --git a/src/enemy/enemy_types/7. chinte/animations/HOP BACK/HOP-BACK_page_0016.png b/src/enemy/enemy_types/7. chinthe/animations/HOP BACK/HOP-BACK_page_0016.png similarity index 100% rename from src/enemy/enemy_types/7. chinte/animations/HOP BACK/HOP-BACK_page_0016.png rename to src/enemy/enemy_types/7. chinthe/animations/HOP BACK/HOP-BACK_page_0016.png diff --git a/src/enemy/enemy_types/7. chinte/animations/HOP BACK/HOP-BACK_page_0016.png.import b/src/enemy/enemy_types/7. chinthe/animations/HOP BACK/HOP-BACK_page_0016.png.import similarity index 66% rename from src/enemy/enemy_types/7. chinte/animations/HOP BACK/HOP-BACK_page_0016.png.import rename to src/enemy/enemy_types/7. chinthe/animations/HOP BACK/HOP-BACK_page_0016.png.import index e7648743..b3b3d52c 100644 --- a/src/enemy/enemy_types/7. chinte/animations/HOP BACK/HOP-BACK_page_0016.png.import +++ b/src/enemy/enemy_types/7. chinthe/animations/HOP BACK/HOP-BACK_page_0016.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://btau6dotyy0ia" -path="res://.godot/imported/HOP-BACK_page_0016.png-d82ed2cdc4fdb737cf5c431cad98be65.ctex" +path="res://.godot/imported/HOP-BACK_page_0016.png-ff0101a74b9ba97fc4a1bcd7f1c9389e.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/7. chinte/animations/HOP BACK/HOP-BACK_page_0016.png" -dest_files=["res://.godot/imported/HOP-BACK_page_0016.png-d82ed2cdc4fdb737cf5c431cad98be65.ctex"] +source_file="res://src/enemy/enemy_types/7. chinthe/animations/HOP BACK/HOP-BACK_page_0016.png" +dest_files=["res://.godot/imported/HOP-BACK_page_0016.png-ff0101a74b9ba97fc4a1bcd7f1c9389e.ctex"] [params] diff --git a/src/enemy/enemy_types/7. chinte/animations/HOP BACK/HOP-BACK_page_0017.png b/src/enemy/enemy_types/7. chinthe/animations/HOP BACK/HOP-BACK_page_0017.png similarity index 100% rename from src/enemy/enemy_types/7. chinte/animations/HOP BACK/HOP-BACK_page_0017.png rename to src/enemy/enemy_types/7. chinthe/animations/HOP BACK/HOP-BACK_page_0017.png diff --git a/src/enemy/enemy_types/7. chinte/animations/HOP BACK/HOP-BACK_page_0017.png.import b/src/enemy/enemy_types/7. chinthe/animations/HOP BACK/HOP-BACK_page_0017.png.import similarity index 66% rename from src/enemy/enemy_types/7. chinte/animations/HOP BACK/HOP-BACK_page_0017.png.import rename to src/enemy/enemy_types/7. chinthe/animations/HOP BACK/HOP-BACK_page_0017.png.import index 7be54be3..dc2f6a94 100644 --- a/src/enemy/enemy_types/7. chinte/animations/HOP BACK/HOP-BACK_page_0017.png.import +++ b/src/enemy/enemy_types/7. chinthe/animations/HOP BACK/HOP-BACK_page_0017.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://031jvbacuqil" -path="res://.godot/imported/HOP-BACK_page_0017.png-8811015902cd1131764c9eceac95c9ee.ctex" +path="res://.godot/imported/HOP-BACK_page_0017.png-42fb8439b080c40d74fdd8f8e2a2a4d5.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/7. chinte/animations/HOP BACK/HOP-BACK_page_0017.png" -dest_files=["res://.godot/imported/HOP-BACK_page_0017.png-8811015902cd1131764c9eceac95c9ee.ctex"] +source_file="res://src/enemy/enemy_types/7. chinthe/animations/HOP BACK/HOP-BACK_page_0017.png" +dest_files=["res://.godot/imported/HOP-BACK_page_0017.png-42fb8439b080c40d74fdd8f8e2a2a4d5.ctex"] [params] diff --git a/src/enemy/enemy_types/7. chinte/animations/HOP BACK/HOP-BACK_page_0018.png b/src/enemy/enemy_types/7. chinthe/animations/HOP BACK/HOP-BACK_page_0018.png similarity index 100% rename from src/enemy/enemy_types/7. chinte/animations/HOP BACK/HOP-BACK_page_0018.png rename to src/enemy/enemy_types/7. chinthe/animations/HOP BACK/HOP-BACK_page_0018.png diff --git a/src/enemy/enemy_types/7. chinte/animations/HOP BACK/HOP-BACK_page_0018.png.import b/src/enemy/enemy_types/7. chinthe/animations/HOP BACK/HOP-BACK_page_0018.png.import similarity index 66% rename from src/enemy/enemy_types/7. chinte/animations/HOP BACK/HOP-BACK_page_0018.png.import rename to src/enemy/enemy_types/7. chinthe/animations/HOP BACK/HOP-BACK_page_0018.png.import index 56a440e1..608aee6f 100644 --- a/src/enemy/enemy_types/7. chinte/animations/HOP BACK/HOP-BACK_page_0018.png.import +++ b/src/enemy/enemy_types/7. chinthe/animations/HOP BACK/HOP-BACK_page_0018.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://kb65mk270fi1" -path="res://.godot/imported/HOP-BACK_page_0018.png-cb07445a6658d81c3539707e9cbe9234.ctex" +path="res://.godot/imported/HOP-BACK_page_0018.png-20ee020b288d3998e0c1e97d54168a20.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/7. chinte/animations/HOP BACK/HOP-BACK_page_0018.png" -dest_files=["res://.godot/imported/HOP-BACK_page_0018.png-cb07445a6658d81c3539707e9cbe9234.ctex"] +source_file="res://src/enemy/enemy_types/7. chinthe/animations/HOP BACK/HOP-BACK_page_0018.png" +dest_files=["res://.godot/imported/HOP-BACK_page_0018.png-20ee020b288d3998e0c1e97d54168a20.ctex"] [params] diff --git a/src/enemy/enemy_types/7. chinte/animations/HOP FRONT/HOP-FRONT_page_0001.png b/src/enemy/enemy_types/7. chinthe/animations/HOP FRONT/HOP-FRONT_page_0001.png similarity index 100% rename from src/enemy/enemy_types/7. chinte/animations/HOP FRONT/HOP-FRONT_page_0001.png rename to src/enemy/enemy_types/7. chinthe/animations/HOP FRONT/HOP-FRONT_page_0001.png diff --git a/src/enemy/enemy_types/7. chinte/animations/HOP FRONT/HOP-FRONT_page_0001.png.import b/src/enemy/enemy_types/7. chinthe/animations/HOP FRONT/HOP-FRONT_page_0001.png.import similarity index 65% rename from src/enemy/enemy_types/7. chinte/animations/HOP FRONT/HOP-FRONT_page_0001.png.import rename to src/enemy/enemy_types/7. chinthe/animations/HOP FRONT/HOP-FRONT_page_0001.png.import index 8ddd6a4c..15cd1344 100644 --- a/src/enemy/enemy_types/7. chinte/animations/HOP FRONT/HOP-FRONT_page_0001.png.import +++ b/src/enemy/enemy_types/7. chinthe/animations/HOP FRONT/HOP-FRONT_page_0001.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://bicx2m6q0vqdw" -path="res://.godot/imported/HOP-FRONT_page_0001.png-49a40825ba1823e7bd354e849854b772.ctex" +path="res://.godot/imported/HOP-FRONT_page_0001.png-754d4c10f45d57b94d466d65342da5a6.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/7. chinte/animations/HOP FRONT/HOP-FRONT_page_0001.png" -dest_files=["res://.godot/imported/HOP-FRONT_page_0001.png-49a40825ba1823e7bd354e849854b772.ctex"] +source_file="res://src/enemy/enemy_types/7. chinthe/animations/HOP FRONT/HOP-FRONT_page_0001.png" +dest_files=["res://.godot/imported/HOP-FRONT_page_0001.png-754d4c10f45d57b94d466d65342da5a6.ctex"] [params] diff --git a/src/enemy/enemy_types/7. chinte/animations/HOP FRONT/HOP-FRONT_page_0002.png b/src/enemy/enemy_types/7. chinthe/animations/HOP FRONT/HOP-FRONT_page_0002.png similarity index 100% rename from src/enemy/enemy_types/7. chinte/animations/HOP FRONT/HOP-FRONT_page_0002.png rename to src/enemy/enemy_types/7. chinthe/animations/HOP FRONT/HOP-FRONT_page_0002.png diff --git a/src/enemy/enemy_types/7. chinte/animations/HOP FRONT/HOP-FRONT_page_0002.png.import b/src/enemy/enemy_types/7. chinthe/animations/HOP FRONT/HOP-FRONT_page_0002.png.import similarity index 65% rename from src/enemy/enemy_types/7. chinte/animations/HOP FRONT/HOP-FRONT_page_0002.png.import rename to src/enemy/enemy_types/7. chinthe/animations/HOP FRONT/HOP-FRONT_page_0002.png.import index ecd4b828..c2d24a29 100644 --- a/src/enemy/enemy_types/7. chinte/animations/HOP FRONT/HOP-FRONT_page_0002.png.import +++ b/src/enemy/enemy_types/7. chinthe/animations/HOP FRONT/HOP-FRONT_page_0002.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://cejvyh381ei1u" -path="res://.godot/imported/HOP-FRONT_page_0002.png-976f99ebe7a066bc2ed4f3f3b5790a8f.ctex" +path="res://.godot/imported/HOP-FRONT_page_0002.png-f6a100bfe4772c82db266e0d33aed617.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/7. chinte/animations/HOP FRONT/HOP-FRONT_page_0002.png" -dest_files=["res://.godot/imported/HOP-FRONT_page_0002.png-976f99ebe7a066bc2ed4f3f3b5790a8f.ctex"] +source_file="res://src/enemy/enemy_types/7. chinthe/animations/HOP FRONT/HOP-FRONT_page_0002.png" +dest_files=["res://.godot/imported/HOP-FRONT_page_0002.png-f6a100bfe4772c82db266e0d33aed617.ctex"] [params] diff --git a/src/enemy/enemy_types/7. chinte/animations/HOP FRONT/HOP-FRONT_page_0003.png b/src/enemy/enemy_types/7. chinthe/animations/HOP FRONT/HOP-FRONT_page_0003.png similarity index 100% rename from src/enemy/enemy_types/7. chinte/animations/HOP FRONT/HOP-FRONT_page_0003.png rename to src/enemy/enemy_types/7. chinthe/animations/HOP FRONT/HOP-FRONT_page_0003.png diff --git a/src/enemy/enemy_types/7. chinte/animations/HOP FRONT/HOP-FRONT_page_0003.png.import b/src/enemy/enemy_types/7. chinthe/animations/HOP FRONT/HOP-FRONT_page_0003.png.import similarity index 65% rename from src/enemy/enemy_types/7. chinte/animations/HOP FRONT/HOP-FRONT_page_0003.png.import rename to src/enemy/enemy_types/7. chinthe/animations/HOP FRONT/HOP-FRONT_page_0003.png.import index 15f7a91c..97040dc5 100644 --- a/src/enemy/enemy_types/7. chinte/animations/HOP FRONT/HOP-FRONT_page_0003.png.import +++ b/src/enemy/enemy_types/7. chinthe/animations/HOP FRONT/HOP-FRONT_page_0003.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://b7lk817ih82o7" -path="res://.godot/imported/HOP-FRONT_page_0003.png-3e5a23dd3d732cf4006ec68d2475ed60.ctex" +path="res://.godot/imported/HOP-FRONT_page_0003.png-e3d89c78420b84ee8500ddd0564afd03.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/7. chinte/animations/HOP FRONT/HOP-FRONT_page_0003.png" -dest_files=["res://.godot/imported/HOP-FRONT_page_0003.png-3e5a23dd3d732cf4006ec68d2475ed60.ctex"] +source_file="res://src/enemy/enemy_types/7. chinthe/animations/HOP FRONT/HOP-FRONT_page_0003.png" +dest_files=["res://.godot/imported/HOP-FRONT_page_0003.png-e3d89c78420b84ee8500ddd0564afd03.ctex"] [params] diff --git a/src/enemy/enemy_types/7. chinte/animations/HOP FRONT/HOP-FRONT_page_0004.png b/src/enemy/enemy_types/7. chinthe/animations/HOP FRONT/HOP-FRONT_page_0004.png similarity index 100% rename from src/enemy/enemy_types/7. chinte/animations/HOP FRONT/HOP-FRONT_page_0004.png rename to src/enemy/enemy_types/7. chinthe/animations/HOP FRONT/HOP-FRONT_page_0004.png diff --git a/src/enemy/enemy_types/7. chinte/animations/HOP FRONT/HOP-FRONT_page_0004.png.import b/src/enemy/enemy_types/7. chinthe/animations/HOP FRONT/HOP-FRONT_page_0004.png.import similarity index 65% rename from src/enemy/enemy_types/7. chinte/animations/HOP FRONT/HOP-FRONT_page_0004.png.import rename to src/enemy/enemy_types/7. chinthe/animations/HOP FRONT/HOP-FRONT_page_0004.png.import index 0bd33fd5..c4f6c0a3 100644 --- a/src/enemy/enemy_types/7. chinte/animations/HOP FRONT/HOP-FRONT_page_0004.png.import +++ b/src/enemy/enemy_types/7. chinthe/animations/HOP FRONT/HOP-FRONT_page_0004.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://bseiwgxwdj8ih" -path="res://.godot/imported/HOP-FRONT_page_0004.png-15ad91cfd41e3b27fd85c201802d03f7.ctex" +path="res://.godot/imported/HOP-FRONT_page_0004.png-47af4352d28cbb974d1e9ad7b474a93a.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/7. chinte/animations/HOP FRONT/HOP-FRONT_page_0004.png" -dest_files=["res://.godot/imported/HOP-FRONT_page_0004.png-15ad91cfd41e3b27fd85c201802d03f7.ctex"] +source_file="res://src/enemy/enemy_types/7. chinthe/animations/HOP FRONT/HOP-FRONT_page_0004.png" +dest_files=["res://.godot/imported/HOP-FRONT_page_0004.png-47af4352d28cbb974d1e9ad7b474a93a.ctex"] [params] diff --git a/src/enemy/enemy_types/7. chinte/animations/HOP FRONT/HOP-FRONT_page_0005.png b/src/enemy/enemy_types/7. chinthe/animations/HOP FRONT/HOP-FRONT_page_0005.png similarity index 100% rename from src/enemy/enemy_types/7. chinte/animations/HOP FRONT/HOP-FRONT_page_0005.png rename to src/enemy/enemy_types/7. chinthe/animations/HOP FRONT/HOP-FRONT_page_0005.png diff --git a/src/enemy/enemy_types/7. chinte/animations/HOP FRONT/HOP-FRONT_page_0005.png.import b/src/enemy/enemy_types/7. chinthe/animations/HOP FRONT/HOP-FRONT_page_0005.png.import similarity index 65% rename from src/enemy/enemy_types/7. chinte/animations/HOP FRONT/HOP-FRONT_page_0005.png.import rename to src/enemy/enemy_types/7. chinthe/animations/HOP FRONT/HOP-FRONT_page_0005.png.import index 66c3e8bc..f67a14ee 100644 --- a/src/enemy/enemy_types/7. chinte/animations/HOP FRONT/HOP-FRONT_page_0005.png.import +++ b/src/enemy/enemy_types/7. chinthe/animations/HOP FRONT/HOP-FRONT_page_0005.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://b15t1kc6bu42u" -path="res://.godot/imported/HOP-FRONT_page_0005.png-745afcf3cccdf8bc614fa011c5e734e8.ctex" +path="res://.godot/imported/HOP-FRONT_page_0005.png-0524dd5d4810bdc86c3d197fa799d562.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/7. chinte/animations/HOP FRONT/HOP-FRONT_page_0005.png" -dest_files=["res://.godot/imported/HOP-FRONT_page_0005.png-745afcf3cccdf8bc614fa011c5e734e8.ctex"] +source_file="res://src/enemy/enemy_types/7. chinthe/animations/HOP FRONT/HOP-FRONT_page_0005.png" +dest_files=["res://.godot/imported/HOP-FRONT_page_0005.png-0524dd5d4810bdc86c3d197fa799d562.ctex"] [params] diff --git a/src/enemy/enemy_types/7. chinte/animations/HOP FRONT/HOP-FRONT_page_0006.png b/src/enemy/enemy_types/7. chinthe/animations/HOP FRONT/HOP-FRONT_page_0006.png similarity index 100% rename from src/enemy/enemy_types/7. chinte/animations/HOP FRONT/HOP-FRONT_page_0006.png rename to src/enemy/enemy_types/7. chinthe/animations/HOP FRONT/HOP-FRONT_page_0006.png diff --git a/src/enemy/enemy_types/7. chinte/animations/HOP FRONT/HOP-FRONT_page_0006.png.import b/src/enemy/enemy_types/7. chinthe/animations/HOP FRONT/HOP-FRONT_page_0006.png.import similarity index 65% rename from src/enemy/enemy_types/7. chinte/animations/HOP FRONT/HOP-FRONT_page_0006.png.import rename to src/enemy/enemy_types/7. chinthe/animations/HOP FRONT/HOP-FRONT_page_0006.png.import index a04c154a..c2890a90 100644 --- a/src/enemy/enemy_types/7. chinte/animations/HOP FRONT/HOP-FRONT_page_0006.png.import +++ b/src/enemy/enemy_types/7. chinthe/animations/HOP FRONT/HOP-FRONT_page_0006.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://cr2opgprfenav" -path="res://.godot/imported/HOP-FRONT_page_0006.png-b855b3f25851b6ead483af799556fcfb.ctex" +path="res://.godot/imported/HOP-FRONT_page_0006.png-285b3d4f2095b06b34655442f908cd4a.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/7. chinte/animations/HOP FRONT/HOP-FRONT_page_0006.png" -dest_files=["res://.godot/imported/HOP-FRONT_page_0006.png-b855b3f25851b6ead483af799556fcfb.ctex"] +source_file="res://src/enemy/enemy_types/7. chinthe/animations/HOP FRONT/HOP-FRONT_page_0006.png" +dest_files=["res://.godot/imported/HOP-FRONT_page_0006.png-285b3d4f2095b06b34655442f908cd4a.ctex"] [params] diff --git a/src/enemy/enemy_types/7. chinte/animations/HOP FRONT/HOP-FRONT_page_0007.png b/src/enemy/enemy_types/7. chinthe/animations/HOP FRONT/HOP-FRONT_page_0007.png similarity index 100% rename from src/enemy/enemy_types/7. chinte/animations/HOP FRONT/HOP-FRONT_page_0007.png rename to src/enemy/enemy_types/7. chinthe/animations/HOP FRONT/HOP-FRONT_page_0007.png diff --git a/src/enemy/enemy_types/7. chinte/animations/HOP FRONT/HOP-FRONT_page_0007.png.import b/src/enemy/enemy_types/7. chinthe/animations/HOP FRONT/HOP-FRONT_page_0007.png.import similarity index 65% rename from src/enemy/enemy_types/7. chinte/animations/HOP FRONT/HOP-FRONT_page_0007.png.import rename to src/enemy/enemy_types/7. chinthe/animations/HOP FRONT/HOP-FRONT_page_0007.png.import index c42048eb..08c0badc 100644 --- a/src/enemy/enemy_types/7. chinte/animations/HOP FRONT/HOP-FRONT_page_0007.png.import +++ b/src/enemy/enemy_types/7. chinthe/animations/HOP FRONT/HOP-FRONT_page_0007.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://dbxdjn6o36k3c" -path="res://.godot/imported/HOP-FRONT_page_0007.png-2a7ea2f08a070c0e83414ef91a3b883f.ctex" +path="res://.godot/imported/HOP-FRONT_page_0007.png-26173fe45bf226ec51a250982789b130.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/7. chinte/animations/HOP FRONT/HOP-FRONT_page_0007.png" -dest_files=["res://.godot/imported/HOP-FRONT_page_0007.png-2a7ea2f08a070c0e83414ef91a3b883f.ctex"] +source_file="res://src/enemy/enemy_types/7. chinthe/animations/HOP FRONT/HOP-FRONT_page_0007.png" +dest_files=["res://.godot/imported/HOP-FRONT_page_0007.png-26173fe45bf226ec51a250982789b130.ctex"] [params] diff --git a/src/enemy/enemy_types/7. chinte/animations/HOP FRONT/HOP-FRONT_page_0008.png b/src/enemy/enemy_types/7. chinthe/animations/HOP FRONT/HOP-FRONT_page_0008.png similarity index 100% rename from src/enemy/enemy_types/7. chinte/animations/HOP FRONT/HOP-FRONT_page_0008.png rename to src/enemy/enemy_types/7. chinthe/animations/HOP FRONT/HOP-FRONT_page_0008.png diff --git a/src/enemy/enemy_types/7. chinte/animations/HOP FRONT/HOP-FRONT_page_0008.png.import b/src/enemy/enemy_types/7. chinthe/animations/HOP FRONT/HOP-FRONT_page_0008.png.import similarity index 65% rename from src/enemy/enemy_types/7. chinte/animations/HOP FRONT/HOP-FRONT_page_0008.png.import rename to src/enemy/enemy_types/7. chinthe/animations/HOP FRONT/HOP-FRONT_page_0008.png.import index 43c94171..8d07a69d 100644 --- a/src/enemy/enemy_types/7. chinte/animations/HOP FRONT/HOP-FRONT_page_0008.png.import +++ b/src/enemy/enemy_types/7. chinthe/animations/HOP FRONT/HOP-FRONT_page_0008.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://ceyvr048ccsff" -path="res://.godot/imported/HOP-FRONT_page_0008.png-744773ed5999e52a4f196faf65a0a463.ctex" +path="res://.godot/imported/HOP-FRONT_page_0008.png-2021830abf2d338f0ab09fc8fdd36887.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/7. chinte/animations/HOP FRONT/HOP-FRONT_page_0008.png" -dest_files=["res://.godot/imported/HOP-FRONT_page_0008.png-744773ed5999e52a4f196faf65a0a463.ctex"] +source_file="res://src/enemy/enemy_types/7. chinthe/animations/HOP FRONT/HOP-FRONT_page_0008.png" +dest_files=["res://.godot/imported/HOP-FRONT_page_0008.png-2021830abf2d338f0ab09fc8fdd36887.ctex"] [params] diff --git a/src/enemy/enemy_types/7. chinte/animations/HOP FRONT/HOP-FRONT_page_0009.png b/src/enemy/enemy_types/7. chinthe/animations/HOP FRONT/HOP-FRONT_page_0009.png similarity index 100% rename from src/enemy/enemy_types/7. chinte/animations/HOP FRONT/HOP-FRONT_page_0009.png rename to src/enemy/enemy_types/7. chinthe/animations/HOP FRONT/HOP-FRONT_page_0009.png diff --git a/src/enemy/enemy_types/7. chinte/animations/HOP FRONT/HOP-FRONT_page_0009.png.import b/src/enemy/enemy_types/7. chinthe/animations/HOP FRONT/HOP-FRONT_page_0009.png.import similarity index 65% rename from src/enemy/enemy_types/7. chinte/animations/HOP FRONT/HOP-FRONT_page_0009.png.import rename to src/enemy/enemy_types/7. chinthe/animations/HOP FRONT/HOP-FRONT_page_0009.png.import index 50c91e37..4b2c1170 100644 --- a/src/enemy/enemy_types/7. chinte/animations/HOP FRONT/HOP-FRONT_page_0009.png.import +++ b/src/enemy/enemy_types/7. chinthe/animations/HOP FRONT/HOP-FRONT_page_0009.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://cyir2u6s0a803" -path="res://.godot/imported/HOP-FRONT_page_0009.png-adb2f02e30824a632529f5296f289d9a.ctex" +path="res://.godot/imported/HOP-FRONT_page_0009.png-e7bc7445cf43649ac93aa4e82c56ab18.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/7. chinte/animations/HOP FRONT/HOP-FRONT_page_0009.png" -dest_files=["res://.godot/imported/HOP-FRONT_page_0009.png-adb2f02e30824a632529f5296f289d9a.ctex"] +source_file="res://src/enemy/enemy_types/7. chinthe/animations/HOP FRONT/HOP-FRONT_page_0009.png" +dest_files=["res://.godot/imported/HOP-FRONT_page_0009.png-e7bc7445cf43649ac93aa4e82c56ab18.ctex"] [params] diff --git a/src/enemy/enemy_types/7. chinte/animations/HOP FRONT/HOP-FRONT_page_0010.png b/src/enemy/enemy_types/7. chinthe/animations/HOP FRONT/HOP-FRONT_page_0010.png similarity index 100% rename from src/enemy/enemy_types/7. chinte/animations/HOP FRONT/HOP-FRONT_page_0010.png rename to src/enemy/enemy_types/7. chinthe/animations/HOP FRONT/HOP-FRONT_page_0010.png diff --git a/src/enemy/enemy_types/7. chinte/animations/HOP FRONT/HOP-FRONT_page_0010.png.import b/src/enemy/enemy_types/7. chinthe/animations/HOP FRONT/HOP-FRONT_page_0010.png.import similarity index 65% rename from src/enemy/enemy_types/7. chinte/animations/HOP FRONT/HOP-FRONT_page_0010.png.import rename to src/enemy/enemy_types/7. chinthe/animations/HOP FRONT/HOP-FRONT_page_0010.png.import index 10ab040c..b0e44943 100644 --- a/src/enemy/enemy_types/7. chinte/animations/HOP FRONT/HOP-FRONT_page_0010.png.import +++ b/src/enemy/enemy_types/7. chinthe/animations/HOP FRONT/HOP-FRONT_page_0010.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://qi6ykbimr36j" -path="res://.godot/imported/HOP-FRONT_page_0010.png-2ad8ba16dcf8944d3e0834e3df870136.ctex" +path="res://.godot/imported/HOP-FRONT_page_0010.png-de4d2128207a7679881440c1a875b587.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/7. chinte/animations/HOP FRONT/HOP-FRONT_page_0010.png" -dest_files=["res://.godot/imported/HOP-FRONT_page_0010.png-2ad8ba16dcf8944d3e0834e3df870136.ctex"] +source_file="res://src/enemy/enemy_types/7. chinthe/animations/HOP FRONT/HOP-FRONT_page_0010.png" +dest_files=["res://.godot/imported/HOP-FRONT_page_0010.png-de4d2128207a7679881440c1a875b587.ctex"] [params] diff --git a/src/enemy/enemy_types/7. chinte/animations/HOP FRONT/HOP-FRONT_page_0011.png b/src/enemy/enemy_types/7. chinthe/animations/HOP FRONT/HOP-FRONT_page_0011.png similarity index 100% rename from src/enemy/enemy_types/7. chinte/animations/HOP FRONT/HOP-FRONT_page_0011.png rename to src/enemy/enemy_types/7. chinthe/animations/HOP FRONT/HOP-FRONT_page_0011.png diff --git a/src/enemy/enemy_types/7. chinte/animations/HOP FRONT/HOP-FRONT_page_0011.png.import b/src/enemy/enemy_types/7. chinthe/animations/HOP FRONT/HOP-FRONT_page_0011.png.import similarity index 65% rename from src/enemy/enemy_types/7. chinte/animations/HOP FRONT/HOP-FRONT_page_0011.png.import rename to src/enemy/enemy_types/7. chinthe/animations/HOP FRONT/HOP-FRONT_page_0011.png.import index a2a01a67..4f3966f0 100644 --- a/src/enemy/enemy_types/7. chinte/animations/HOP FRONT/HOP-FRONT_page_0011.png.import +++ b/src/enemy/enemy_types/7. chinthe/animations/HOP FRONT/HOP-FRONT_page_0011.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://c0ixmdqj6728s" -path="res://.godot/imported/HOP-FRONT_page_0011.png-22c5074c8348d60ab96aa1d3dddb1d5b.ctex" +path="res://.godot/imported/HOP-FRONT_page_0011.png-0ae2a717a98f0b356c3cf8b4b0fbe2f9.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/7. chinte/animations/HOP FRONT/HOP-FRONT_page_0011.png" -dest_files=["res://.godot/imported/HOP-FRONT_page_0011.png-22c5074c8348d60ab96aa1d3dddb1d5b.ctex"] +source_file="res://src/enemy/enemy_types/7. chinthe/animations/HOP FRONT/HOP-FRONT_page_0011.png" +dest_files=["res://.godot/imported/HOP-FRONT_page_0011.png-0ae2a717a98f0b356c3cf8b4b0fbe2f9.ctex"] [params] diff --git a/src/enemy/enemy_types/7. chinte/animations/HOP FRONT/HOP-FRONT_page_0012.png b/src/enemy/enemy_types/7. chinthe/animations/HOP FRONT/HOP-FRONT_page_0012.png similarity index 100% rename from src/enemy/enemy_types/7. chinte/animations/HOP FRONT/HOP-FRONT_page_0012.png rename to src/enemy/enemy_types/7. chinthe/animations/HOP FRONT/HOP-FRONT_page_0012.png diff --git a/src/enemy/enemy_types/7. chinte/animations/HOP FRONT/HOP-FRONT_page_0012.png.import b/src/enemy/enemy_types/7. chinthe/animations/HOP FRONT/HOP-FRONT_page_0012.png.import similarity index 65% rename from src/enemy/enemy_types/7. chinte/animations/HOP FRONT/HOP-FRONT_page_0012.png.import rename to src/enemy/enemy_types/7. chinthe/animations/HOP FRONT/HOP-FRONT_page_0012.png.import index fcd99b63..1ef262a0 100644 --- a/src/enemy/enemy_types/7. chinte/animations/HOP FRONT/HOP-FRONT_page_0012.png.import +++ b/src/enemy/enemy_types/7. chinthe/animations/HOP FRONT/HOP-FRONT_page_0012.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://dlga6cbuomfhi" -path="res://.godot/imported/HOP-FRONT_page_0012.png-6b0461b8252a7d59daaf3f2317a3b658.ctex" +path="res://.godot/imported/HOP-FRONT_page_0012.png-5e8768250b360eda2ff492ed58882018.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/7. chinte/animations/HOP FRONT/HOP-FRONT_page_0012.png" -dest_files=["res://.godot/imported/HOP-FRONT_page_0012.png-6b0461b8252a7d59daaf3f2317a3b658.ctex"] +source_file="res://src/enemy/enemy_types/7. chinthe/animations/HOP FRONT/HOP-FRONT_page_0012.png" +dest_files=["res://.godot/imported/HOP-FRONT_page_0012.png-5e8768250b360eda2ff492ed58882018.ctex"] [params] diff --git a/src/enemy/enemy_types/7. chinte/animations/HOP FRONT/HOP-FRONT_page_0013.png b/src/enemy/enemy_types/7. chinthe/animations/HOP FRONT/HOP-FRONT_page_0013.png similarity index 100% rename from src/enemy/enemy_types/7. chinte/animations/HOP FRONT/HOP-FRONT_page_0013.png rename to src/enemy/enemy_types/7. chinthe/animations/HOP FRONT/HOP-FRONT_page_0013.png diff --git a/src/enemy/enemy_types/7. chinte/animations/HOP FRONT/HOP-FRONT_page_0013.png.import b/src/enemy/enemy_types/7. chinthe/animations/HOP FRONT/HOP-FRONT_page_0013.png.import similarity index 65% rename from src/enemy/enemy_types/7. chinte/animations/HOP FRONT/HOP-FRONT_page_0013.png.import rename to src/enemy/enemy_types/7. chinthe/animations/HOP FRONT/HOP-FRONT_page_0013.png.import index f64ad06b..9b2a22f2 100644 --- a/src/enemy/enemy_types/7. chinte/animations/HOP FRONT/HOP-FRONT_page_0013.png.import +++ b/src/enemy/enemy_types/7. chinthe/animations/HOP FRONT/HOP-FRONT_page_0013.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://b26x8xh3o81vs" -path="res://.godot/imported/HOP-FRONT_page_0013.png-604bf956a03435389dc1093b46f55444.ctex" +path="res://.godot/imported/HOP-FRONT_page_0013.png-6eb7a1dde5cc17b9db86603a4a2dbc3d.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/7. chinte/animations/HOP FRONT/HOP-FRONT_page_0013.png" -dest_files=["res://.godot/imported/HOP-FRONT_page_0013.png-604bf956a03435389dc1093b46f55444.ctex"] +source_file="res://src/enemy/enemy_types/7. chinthe/animations/HOP FRONT/HOP-FRONT_page_0013.png" +dest_files=["res://.godot/imported/HOP-FRONT_page_0013.png-6eb7a1dde5cc17b9db86603a4a2dbc3d.ctex"] [params] diff --git a/src/enemy/enemy_types/7. chinte/animations/HOP FRONT/HOP-FRONT_page_0014.png b/src/enemy/enemy_types/7. chinthe/animations/HOP FRONT/HOP-FRONT_page_0014.png similarity index 100% rename from src/enemy/enemy_types/7. chinte/animations/HOP FRONT/HOP-FRONT_page_0014.png rename to src/enemy/enemy_types/7. chinthe/animations/HOP FRONT/HOP-FRONT_page_0014.png diff --git a/src/enemy/enemy_types/7. chinte/animations/HOP FRONT/HOP-FRONT_page_0014.png.import b/src/enemy/enemy_types/7. chinthe/animations/HOP FRONT/HOP-FRONT_page_0014.png.import similarity index 65% rename from src/enemy/enemy_types/7. chinte/animations/HOP FRONT/HOP-FRONT_page_0014.png.import rename to src/enemy/enemy_types/7. chinthe/animations/HOP FRONT/HOP-FRONT_page_0014.png.import index 193067ce..d09f1b79 100644 --- a/src/enemy/enemy_types/7. chinte/animations/HOP FRONT/HOP-FRONT_page_0014.png.import +++ b/src/enemy/enemy_types/7. chinthe/animations/HOP FRONT/HOP-FRONT_page_0014.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://dw3qwomarv3p5" -path="res://.godot/imported/HOP-FRONT_page_0014.png-3d786ea5bc037ae2ed349c3095540feb.ctex" +path="res://.godot/imported/HOP-FRONT_page_0014.png-970614443420ae7e7e38553615a315aa.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/7. chinte/animations/HOP FRONT/HOP-FRONT_page_0014.png" -dest_files=["res://.godot/imported/HOP-FRONT_page_0014.png-3d786ea5bc037ae2ed349c3095540feb.ctex"] +source_file="res://src/enemy/enemy_types/7. chinthe/animations/HOP FRONT/HOP-FRONT_page_0014.png" +dest_files=["res://.godot/imported/HOP-FRONT_page_0014.png-970614443420ae7e7e38553615a315aa.ctex"] [params] diff --git a/src/enemy/enemy_types/7. chinte/animations/HOP FRONT/HOP-FRONT_page_0015.png b/src/enemy/enemy_types/7. chinthe/animations/HOP FRONT/HOP-FRONT_page_0015.png similarity index 100% rename from src/enemy/enemy_types/7. chinte/animations/HOP FRONT/HOP-FRONT_page_0015.png rename to src/enemy/enemy_types/7. chinthe/animations/HOP FRONT/HOP-FRONT_page_0015.png diff --git a/src/enemy/enemy_types/7. chinte/animations/HOP FRONT/HOP-FRONT_page_0015.png.import b/src/enemy/enemy_types/7. chinthe/animations/HOP FRONT/HOP-FRONT_page_0015.png.import similarity index 65% rename from src/enemy/enemy_types/7. chinte/animations/HOP FRONT/HOP-FRONT_page_0015.png.import rename to src/enemy/enemy_types/7. chinthe/animations/HOP FRONT/HOP-FRONT_page_0015.png.import index 3fcc4eb2..cb1b26b5 100644 --- a/src/enemy/enemy_types/7. chinte/animations/HOP FRONT/HOP-FRONT_page_0015.png.import +++ b/src/enemy/enemy_types/7. chinthe/animations/HOP FRONT/HOP-FRONT_page_0015.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://454bwm8i6to3" -path="res://.godot/imported/HOP-FRONT_page_0015.png-837409a1406038ae5f9baae9ad4d1325.ctex" +path="res://.godot/imported/HOP-FRONT_page_0015.png-847c09d2bd2fb751b0f7a6d5e3bf74aa.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/7. chinte/animations/HOP FRONT/HOP-FRONT_page_0015.png" -dest_files=["res://.godot/imported/HOP-FRONT_page_0015.png-837409a1406038ae5f9baae9ad4d1325.ctex"] +source_file="res://src/enemy/enemy_types/7. chinthe/animations/HOP FRONT/HOP-FRONT_page_0015.png" +dest_files=["res://.godot/imported/HOP-FRONT_page_0015.png-847c09d2bd2fb751b0f7a6d5e3bf74aa.ctex"] [params] diff --git a/src/enemy/enemy_types/7. chinte/animations/HOP FRONT/HOP-FRONT_page_0016.png b/src/enemy/enemy_types/7. chinthe/animations/HOP FRONT/HOP-FRONT_page_0016.png similarity index 100% rename from src/enemy/enemy_types/7. chinte/animations/HOP FRONT/HOP-FRONT_page_0016.png rename to src/enemy/enemy_types/7. chinthe/animations/HOP FRONT/HOP-FRONT_page_0016.png diff --git a/src/enemy/enemy_types/7. chinte/animations/HOP FRONT/HOP-FRONT_page_0016.png.import b/src/enemy/enemy_types/7. chinthe/animations/HOP FRONT/HOP-FRONT_page_0016.png.import similarity index 65% rename from src/enemy/enemy_types/7. chinte/animations/HOP FRONT/HOP-FRONT_page_0016.png.import rename to src/enemy/enemy_types/7. chinthe/animations/HOP FRONT/HOP-FRONT_page_0016.png.import index dcfebf54..7cc3186d 100644 --- a/src/enemy/enemy_types/7. chinte/animations/HOP FRONT/HOP-FRONT_page_0016.png.import +++ b/src/enemy/enemy_types/7. chinthe/animations/HOP FRONT/HOP-FRONT_page_0016.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://bt0pwh1vkb2s7" -path="res://.godot/imported/HOP-FRONT_page_0016.png-bcbfdfbfbef5f8161e310ee584c0d694.ctex" +path="res://.godot/imported/HOP-FRONT_page_0016.png-e2cd7a1349fe3ff6043d356dcf64e851.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/7. chinte/animations/HOP FRONT/HOP-FRONT_page_0016.png" -dest_files=["res://.godot/imported/HOP-FRONT_page_0016.png-bcbfdfbfbef5f8161e310ee584c0d694.ctex"] +source_file="res://src/enemy/enemy_types/7. chinthe/animations/HOP FRONT/HOP-FRONT_page_0016.png" +dest_files=["res://.godot/imported/HOP-FRONT_page_0016.png-e2cd7a1349fe3ff6043d356dcf64e851.ctex"] [params] diff --git a/src/enemy/enemy_types/7. chinte/animations/HOP FRONT/HOP-FRONT_page_0017.png b/src/enemy/enemy_types/7. chinthe/animations/HOP FRONT/HOP-FRONT_page_0017.png similarity index 100% rename from src/enemy/enemy_types/7. chinte/animations/HOP FRONT/HOP-FRONT_page_0017.png rename to src/enemy/enemy_types/7. chinthe/animations/HOP FRONT/HOP-FRONT_page_0017.png diff --git a/src/enemy/enemy_types/7. chinte/animations/HOP FRONT/HOP-FRONT_page_0017.png.import b/src/enemy/enemy_types/7. chinthe/animations/HOP FRONT/HOP-FRONT_page_0017.png.import similarity index 65% rename from src/enemy/enemy_types/7. chinte/animations/HOP FRONT/HOP-FRONT_page_0017.png.import rename to src/enemy/enemy_types/7. chinthe/animations/HOP FRONT/HOP-FRONT_page_0017.png.import index 3d8318fb..b9b7e4ea 100644 --- a/src/enemy/enemy_types/7. chinte/animations/HOP FRONT/HOP-FRONT_page_0017.png.import +++ b/src/enemy/enemy_types/7. chinthe/animations/HOP FRONT/HOP-FRONT_page_0017.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://bo1n0em5ko127" -path="res://.godot/imported/HOP-FRONT_page_0017.png-72cae49c988122f932b96b32effd62a4.ctex" +path="res://.godot/imported/HOP-FRONT_page_0017.png-3a47beabcbb93805147555f134cb3493.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/7. chinte/animations/HOP FRONT/HOP-FRONT_page_0017.png" -dest_files=["res://.godot/imported/HOP-FRONT_page_0017.png-72cae49c988122f932b96b32effd62a4.ctex"] +source_file="res://src/enemy/enemy_types/7. chinthe/animations/HOP FRONT/HOP-FRONT_page_0017.png" +dest_files=["res://.godot/imported/HOP-FRONT_page_0017.png-3a47beabcbb93805147555f134cb3493.ctex"] [params] diff --git a/src/enemy/enemy_types/7. chinte/animations/HOP FRONT/HOP-FRONT_page_0018.png b/src/enemy/enemy_types/7. chinthe/animations/HOP FRONT/HOP-FRONT_page_0018.png similarity index 100% rename from src/enemy/enemy_types/7. chinte/animations/HOP FRONT/HOP-FRONT_page_0018.png rename to src/enemy/enemy_types/7. chinthe/animations/HOP FRONT/HOP-FRONT_page_0018.png diff --git a/src/enemy/enemy_types/7. chinte/animations/HOP FRONT/HOP-FRONT_page_0018.png.import b/src/enemy/enemy_types/7. chinthe/animations/HOP FRONT/HOP-FRONT_page_0018.png.import similarity index 65% rename from src/enemy/enemy_types/7. chinte/animations/HOP FRONT/HOP-FRONT_page_0018.png.import rename to src/enemy/enemy_types/7. chinthe/animations/HOP FRONT/HOP-FRONT_page_0018.png.import index b549069d..a9dca848 100644 --- a/src/enemy/enemy_types/7. chinte/animations/HOP FRONT/HOP-FRONT_page_0018.png.import +++ b/src/enemy/enemy_types/7. chinthe/animations/HOP FRONT/HOP-FRONT_page_0018.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://eh6puu82rihh" -path="res://.godot/imported/HOP-FRONT_page_0018.png-24b929ed16a50358fd469d5519fa20c2.ctex" +path="res://.godot/imported/HOP-FRONT_page_0018.png-71531732238e514c56ba2989e2a7f209.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/7. chinte/animations/HOP FRONT/HOP-FRONT_page_0018.png" -dest_files=["res://.godot/imported/HOP-FRONT_page_0018.png-24b929ed16a50358fd469d5519fa20c2.ctex"] +source_file="res://src/enemy/enemy_types/7. chinthe/animations/HOP FRONT/HOP-FRONT_page_0018.png" +dest_files=["res://.godot/imported/HOP-FRONT_page_0018.png-71531732238e514c56ba2989e2a7f209.ctex"] [params] diff --git a/src/enemy/enemy_types/7. chinte/animations/HOP SIDE/HOP-SIDE_page_0001.png b/src/enemy/enemy_types/7. chinthe/animations/HOP SIDE/HOP-SIDE_page_0001.png similarity index 100% rename from src/enemy/enemy_types/7. chinte/animations/HOP SIDE/HOP-SIDE_page_0001.png rename to src/enemy/enemy_types/7. chinthe/animations/HOP SIDE/HOP-SIDE_page_0001.png diff --git a/src/enemy/enemy_types/7. chinte/animations/HOP SIDE/HOP-SIDE_page_0001.png.import b/src/enemy/enemy_types/7. chinthe/animations/HOP SIDE/HOP-SIDE_page_0001.png.import similarity index 66% rename from src/enemy/enemy_types/7. chinte/animations/HOP SIDE/HOP-SIDE_page_0001.png.import rename to src/enemy/enemy_types/7. chinthe/animations/HOP SIDE/HOP-SIDE_page_0001.png.import index d2db26c9..73d7ced2 100644 --- a/src/enemy/enemy_types/7. chinte/animations/HOP SIDE/HOP-SIDE_page_0001.png.import +++ b/src/enemy/enemy_types/7. chinthe/animations/HOP SIDE/HOP-SIDE_page_0001.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://ca116jnrpdthm" -path="res://.godot/imported/HOP-SIDE_page_0001.png-18e08361ad168d7b964bc1e8f0f06aea.ctex" +path="res://.godot/imported/HOP-SIDE_page_0001.png-6a444f07b1f179c07a326a120f1e3937.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/7. chinte/animations/HOP SIDE/HOP-SIDE_page_0001.png" -dest_files=["res://.godot/imported/HOP-SIDE_page_0001.png-18e08361ad168d7b964bc1e8f0f06aea.ctex"] +source_file="res://src/enemy/enemy_types/7. chinthe/animations/HOP SIDE/HOP-SIDE_page_0001.png" +dest_files=["res://.godot/imported/HOP-SIDE_page_0001.png-6a444f07b1f179c07a326a120f1e3937.ctex"] [params] diff --git a/src/enemy/enemy_types/7. chinte/animations/HOP SIDE/HOP-SIDE_page_0002.png b/src/enemy/enemy_types/7. chinthe/animations/HOP SIDE/HOP-SIDE_page_0002.png similarity index 100% rename from src/enemy/enemy_types/7. chinte/animations/HOP SIDE/HOP-SIDE_page_0002.png rename to src/enemy/enemy_types/7. chinthe/animations/HOP SIDE/HOP-SIDE_page_0002.png diff --git a/src/enemy/enemy_types/7. chinte/animations/HOP SIDE/HOP-SIDE_page_0002.png.import b/src/enemy/enemy_types/7. chinthe/animations/HOP SIDE/HOP-SIDE_page_0002.png.import similarity index 66% rename from src/enemy/enemy_types/7. chinte/animations/HOP SIDE/HOP-SIDE_page_0002.png.import rename to src/enemy/enemy_types/7. chinthe/animations/HOP SIDE/HOP-SIDE_page_0002.png.import index ce4b7067..3b3efc9d 100644 --- a/src/enemy/enemy_types/7. chinte/animations/HOP SIDE/HOP-SIDE_page_0002.png.import +++ b/src/enemy/enemy_types/7. chinthe/animations/HOP SIDE/HOP-SIDE_page_0002.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://bgd2y8bohe3qg" -path="res://.godot/imported/HOP-SIDE_page_0002.png-cf499fa2e24d90cbe88e957de8d81665.ctex" +path="res://.godot/imported/HOP-SIDE_page_0002.png-67beee6be03cc888f03999c0eaecd3b3.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/7. chinte/animations/HOP SIDE/HOP-SIDE_page_0002.png" -dest_files=["res://.godot/imported/HOP-SIDE_page_0002.png-cf499fa2e24d90cbe88e957de8d81665.ctex"] +source_file="res://src/enemy/enemy_types/7. chinthe/animations/HOP SIDE/HOP-SIDE_page_0002.png" +dest_files=["res://.godot/imported/HOP-SIDE_page_0002.png-67beee6be03cc888f03999c0eaecd3b3.ctex"] [params] diff --git a/src/enemy/enemy_types/7. chinte/animations/HOP SIDE/HOP-SIDE_page_0003.png b/src/enemy/enemy_types/7. chinthe/animations/HOP SIDE/HOP-SIDE_page_0003.png similarity index 100% rename from src/enemy/enemy_types/7. chinte/animations/HOP SIDE/HOP-SIDE_page_0003.png rename to src/enemy/enemy_types/7. chinthe/animations/HOP SIDE/HOP-SIDE_page_0003.png diff --git a/src/enemy/enemy_types/7. chinte/animations/HOP SIDE/HOP-SIDE_page_0003.png.import b/src/enemy/enemy_types/7. chinthe/animations/HOP SIDE/HOP-SIDE_page_0003.png.import similarity index 66% rename from src/enemy/enemy_types/7. chinte/animations/HOP SIDE/HOP-SIDE_page_0003.png.import rename to src/enemy/enemy_types/7. chinthe/animations/HOP SIDE/HOP-SIDE_page_0003.png.import index 964dbe7b..4e5dceee 100644 --- a/src/enemy/enemy_types/7. chinte/animations/HOP SIDE/HOP-SIDE_page_0003.png.import +++ b/src/enemy/enemy_types/7. chinthe/animations/HOP SIDE/HOP-SIDE_page_0003.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://do6eu4jk5n3od" -path="res://.godot/imported/HOP-SIDE_page_0003.png-40ac5d015cb689de21068d28b450aaf8.ctex" +path="res://.godot/imported/HOP-SIDE_page_0003.png-83ac2575fdd49cd44a7ed7482f7d6a6c.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/7. chinte/animations/HOP SIDE/HOP-SIDE_page_0003.png" -dest_files=["res://.godot/imported/HOP-SIDE_page_0003.png-40ac5d015cb689de21068d28b450aaf8.ctex"] +source_file="res://src/enemy/enemy_types/7. chinthe/animations/HOP SIDE/HOP-SIDE_page_0003.png" +dest_files=["res://.godot/imported/HOP-SIDE_page_0003.png-83ac2575fdd49cd44a7ed7482f7d6a6c.ctex"] [params] diff --git a/src/enemy/enemy_types/7. chinte/animations/HOP SIDE/HOP-SIDE_page_0004.png b/src/enemy/enemy_types/7. chinthe/animations/HOP SIDE/HOP-SIDE_page_0004.png similarity index 100% rename from src/enemy/enemy_types/7. chinte/animations/HOP SIDE/HOP-SIDE_page_0004.png rename to src/enemy/enemy_types/7. chinthe/animations/HOP SIDE/HOP-SIDE_page_0004.png diff --git a/src/enemy/enemy_types/7. chinte/animations/HOP SIDE/HOP-SIDE_page_0004.png.import b/src/enemy/enemy_types/7. chinthe/animations/HOP SIDE/HOP-SIDE_page_0004.png.import similarity index 66% rename from src/enemy/enemy_types/7. chinte/animations/HOP SIDE/HOP-SIDE_page_0004.png.import rename to src/enemy/enemy_types/7. chinthe/animations/HOP SIDE/HOP-SIDE_page_0004.png.import index 0f3ef83a..c600d527 100644 --- a/src/enemy/enemy_types/7. chinte/animations/HOP SIDE/HOP-SIDE_page_0004.png.import +++ b/src/enemy/enemy_types/7. chinthe/animations/HOP SIDE/HOP-SIDE_page_0004.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://c7h56b5iwvf2c" -path="res://.godot/imported/HOP-SIDE_page_0004.png-d461ec85d338c735d4345d9a2b6e9eb2.ctex" +path="res://.godot/imported/HOP-SIDE_page_0004.png-ffef7564a59809c7c0a33490972d952b.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/7. chinte/animations/HOP SIDE/HOP-SIDE_page_0004.png" -dest_files=["res://.godot/imported/HOP-SIDE_page_0004.png-d461ec85d338c735d4345d9a2b6e9eb2.ctex"] +source_file="res://src/enemy/enemy_types/7. chinthe/animations/HOP SIDE/HOP-SIDE_page_0004.png" +dest_files=["res://.godot/imported/HOP-SIDE_page_0004.png-ffef7564a59809c7c0a33490972d952b.ctex"] [params] diff --git a/src/enemy/enemy_types/7. chinte/animations/HOP SIDE/HOP-SIDE_page_0005.png b/src/enemy/enemy_types/7. chinthe/animations/HOP SIDE/HOP-SIDE_page_0005.png similarity index 100% rename from src/enemy/enemy_types/7. chinte/animations/HOP SIDE/HOP-SIDE_page_0005.png rename to src/enemy/enemy_types/7. chinthe/animations/HOP SIDE/HOP-SIDE_page_0005.png diff --git a/src/enemy/enemy_types/7. chinte/animations/HOP SIDE/HOP-SIDE_page_0005.png.import b/src/enemy/enemy_types/7. chinthe/animations/HOP SIDE/HOP-SIDE_page_0005.png.import similarity index 66% rename from src/enemy/enemy_types/7. chinte/animations/HOP SIDE/HOP-SIDE_page_0005.png.import rename to src/enemy/enemy_types/7. chinthe/animations/HOP SIDE/HOP-SIDE_page_0005.png.import index 686059e8..26a63985 100644 --- a/src/enemy/enemy_types/7. chinte/animations/HOP SIDE/HOP-SIDE_page_0005.png.import +++ b/src/enemy/enemy_types/7. chinthe/animations/HOP SIDE/HOP-SIDE_page_0005.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://cns2ntxssdwi8" -path="res://.godot/imported/HOP-SIDE_page_0005.png-514362aa179eb4d634a691cbff05819c.ctex" +path="res://.godot/imported/HOP-SIDE_page_0005.png-8c9568cd43b4becedfc7bdf3a99b6de6.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/7. chinte/animations/HOP SIDE/HOP-SIDE_page_0005.png" -dest_files=["res://.godot/imported/HOP-SIDE_page_0005.png-514362aa179eb4d634a691cbff05819c.ctex"] +source_file="res://src/enemy/enemy_types/7. chinthe/animations/HOP SIDE/HOP-SIDE_page_0005.png" +dest_files=["res://.godot/imported/HOP-SIDE_page_0005.png-8c9568cd43b4becedfc7bdf3a99b6de6.ctex"] [params] diff --git a/src/enemy/enemy_types/7. chinte/animations/HOP SIDE/HOP-SIDE_page_0006.png b/src/enemy/enemy_types/7. chinthe/animations/HOP SIDE/HOP-SIDE_page_0006.png similarity index 100% rename from src/enemy/enemy_types/7. chinte/animations/HOP SIDE/HOP-SIDE_page_0006.png rename to src/enemy/enemy_types/7. chinthe/animations/HOP SIDE/HOP-SIDE_page_0006.png diff --git a/src/enemy/enemy_types/7. chinte/animations/HOP SIDE/HOP-SIDE_page_0006.png.import b/src/enemy/enemy_types/7. chinthe/animations/HOP SIDE/HOP-SIDE_page_0006.png.import similarity index 66% rename from src/enemy/enemy_types/7. chinte/animations/HOP SIDE/HOP-SIDE_page_0006.png.import rename to src/enemy/enemy_types/7. chinthe/animations/HOP SIDE/HOP-SIDE_page_0006.png.import index cf28c4cd..a9b1eeea 100644 --- a/src/enemy/enemy_types/7. chinte/animations/HOP SIDE/HOP-SIDE_page_0006.png.import +++ b/src/enemy/enemy_types/7. chinthe/animations/HOP SIDE/HOP-SIDE_page_0006.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://b11jugjoeemwi" -path="res://.godot/imported/HOP-SIDE_page_0006.png-17579d9c30962dc15b69b6bd899aca59.ctex" +path="res://.godot/imported/HOP-SIDE_page_0006.png-7de22f18a26310da5cd26771d262e821.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/7. chinte/animations/HOP SIDE/HOP-SIDE_page_0006.png" -dest_files=["res://.godot/imported/HOP-SIDE_page_0006.png-17579d9c30962dc15b69b6bd899aca59.ctex"] +source_file="res://src/enemy/enemy_types/7. chinthe/animations/HOP SIDE/HOP-SIDE_page_0006.png" +dest_files=["res://.godot/imported/HOP-SIDE_page_0006.png-7de22f18a26310da5cd26771d262e821.ctex"] [params] diff --git a/src/enemy/enemy_types/7. chinte/animations/HOP SIDE/HOP-SIDE_page_0007.png b/src/enemy/enemy_types/7. chinthe/animations/HOP SIDE/HOP-SIDE_page_0007.png similarity index 100% rename from src/enemy/enemy_types/7. chinte/animations/HOP SIDE/HOP-SIDE_page_0007.png rename to src/enemy/enemy_types/7. chinthe/animations/HOP SIDE/HOP-SIDE_page_0007.png diff --git a/src/enemy/enemy_types/7. chinte/animations/HOP SIDE/HOP-SIDE_page_0007.png.import b/src/enemy/enemy_types/7. chinthe/animations/HOP SIDE/HOP-SIDE_page_0007.png.import similarity index 66% rename from src/enemy/enemy_types/7. chinte/animations/HOP SIDE/HOP-SIDE_page_0007.png.import rename to src/enemy/enemy_types/7. chinthe/animations/HOP SIDE/HOP-SIDE_page_0007.png.import index 4133630c..50bb57ea 100644 --- a/src/enemy/enemy_types/7. chinte/animations/HOP SIDE/HOP-SIDE_page_0007.png.import +++ b/src/enemy/enemy_types/7. chinthe/animations/HOP SIDE/HOP-SIDE_page_0007.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://d37b67irukipu" -path="res://.godot/imported/HOP-SIDE_page_0007.png-22c248937347ea39de0ef9053b4fea2b.ctex" +path="res://.godot/imported/HOP-SIDE_page_0007.png-51eb05ea4e86e54de2567dfb59a59857.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/7. chinte/animations/HOP SIDE/HOP-SIDE_page_0007.png" -dest_files=["res://.godot/imported/HOP-SIDE_page_0007.png-22c248937347ea39de0ef9053b4fea2b.ctex"] +source_file="res://src/enemy/enemy_types/7. chinthe/animations/HOP SIDE/HOP-SIDE_page_0007.png" +dest_files=["res://.godot/imported/HOP-SIDE_page_0007.png-51eb05ea4e86e54de2567dfb59a59857.ctex"] [params] diff --git a/src/enemy/enemy_types/7. chinte/animations/HOP SIDE/HOP-SIDE_page_0008.png b/src/enemy/enemy_types/7. chinthe/animations/HOP SIDE/HOP-SIDE_page_0008.png similarity index 100% rename from src/enemy/enemy_types/7. chinte/animations/HOP SIDE/HOP-SIDE_page_0008.png rename to src/enemy/enemy_types/7. chinthe/animations/HOP SIDE/HOP-SIDE_page_0008.png diff --git a/src/enemy/enemy_types/7. chinte/animations/HOP SIDE/HOP-SIDE_page_0008.png.import b/src/enemy/enemy_types/7. chinthe/animations/HOP SIDE/HOP-SIDE_page_0008.png.import similarity index 66% rename from src/enemy/enemy_types/7. chinte/animations/HOP SIDE/HOP-SIDE_page_0008.png.import rename to src/enemy/enemy_types/7. chinthe/animations/HOP SIDE/HOP-SIDE_page_0008.png.import index 1d45dbeb..cf15683d 100644 --- a/src/enemy/enemy_types/7. chinte/animations/HOP SIDE/HOP-SIDE_page_0008.png.import +++ b/src/enemy/enemy_types/7. chinthe/animations/HOP SIDE/HOP-SIDE_page_0008.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://do5dhoe355yyh" -path="res://.godot/imported/HOP-SIDE_page_0008.png-7fd51a5b474a5d1caf8aa0abf4c221fe.ctex" +path="res://.godot/imported/HOP-SIDE_page_0008.png-7f8298d9a6015fe16ef7345ee2509b78.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/7. chinte/animations/HOP SIDE/HOP-SIDE_page_0008.png" -dest_files=["res://.godot/imported/HOP-SIDE_page_0008.png-7fd51a5b474a5d1caf8aa0abf4c221fe.ctex"] +source_file="res://src/enemy/enemy_types/7. chinthe/animations/HOP SIDE/HOP-SIDE_page_0008.png" +dest_files=["res://.godot/imported/HOP-SIDE_page_0008.png-7f8298d9a6015fe16ef7345ee2509b78.ctex"] [params] diff --git a/src/enemy/enemy_types/7. chinte/animations/HOP SIDE/HOP-SIDE_page_0009.png b/src/enemy/enemy_types/7. chinthe/animations/HOP SIDE/HOP-SIDE_page_0009.png similarity index 100% rename from src/enemy/enemy_types/7. chinte/animations/HOP SIDE/HOP-SIDE_page_0009.png rename to src/enemy/enemy_types/7. chinthe/animations/HOP SIDE/HOP-SIDE_page_0009.png diff --git a/src/enemy/enemy_types/7. chinte/animations/HOP SIDE/HOP-SIDE_page_0009.png.import b/src/enemy/enemy_types/7. chinthe/animations/HOP SIDE/HOP-SIDE_page_0009.png.import similarity index 66% rename from src/enemy/enemy_types/7. chinte/animations/HOP SIDE/HOP-SIDE_page_0009.png.import rename to src/enemy/enemy_types/7. chinthe/animations/HOP SIDE/HOP-SIDE_page_0009.png.import index 5308711d..8b032889 100644 --- a/src/enemy/enemy_types/7. chinte/animations/HOP SIDE/HOP-SIDE_page_0009.png.import +++ b/src/enemy/enemy_types/7. chinthe/animations/HOP SIDE/HOP-SIDE_page_0009.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://b8kccsf3n2biq" -path="res://.godot/imported/HOP-SIDE_page_0009.png-7e5822d6fa03199bb97e98f6286a4215.ctex" +path="res://.godot/imported/HOP-SIDE_page_0009.png-a07cd99446bf97a2644e30d297092537.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/7. chinte/animations/HOP SIDE/HOP-SIDE_page_0009.png" -dest_files=["res://.godot/imported/HOP-SIDE_page_0009.png-7e5822d6fa03199bb97e98f6286a4215.ctex"] +source_file="res://src/enemy/enemy_types/7. chinthe/animations/HOP SIDE/HOP-SIDE_page_0009.png" +dest_files=["res://.godot/imported/HOP-SIDE_page_0009.png-a07cd99446bf97a2644e30d297092537.ctex"] [params] diff --git a/src/enemy/enemy_types/7. chinte/animations/HOP SIDE/HOP-SIDE_page_0010.png b/src/enemy/enemy_types/7. chinthe/animations/HOP SIDE/HOP-SIDE_page_0010.png similarity index 100% rename from src/enemy/enemy_types/7. chinte/animations/HOP SIDE/HOP-SIDE_page_0010.png rename to src/enemy/enemy_types/7. chinthe/animations/HOP SIDE/HOP-SIDE_page_0010.png diff --git a/src/enemy/enemy_types/7. chinte/animations/HOP SIDE/HOP-SIDE_page_0010.png.import b/src/enemy/enemy_types/7. chinthe/animations/HOP SIDE/HOP-SIDE_page_0010.png.import similarity index 66% rename from src/enemy/enemy_types/7. chinte/animations/HOP SIDE/HOP-SIDE_page_0010.png.import rename to src/enemy/enemy_types/7. chinthe/animations/HOP SIDE/HOP-SIDE_page_0010.png.import index f35a6bfe..743f57df 100644 --- a/src/enemy/enemy_types/7. chinte/animations/HOP SIDE/HOP-SIDE_page_0010.png.import +++ b/src/enemy/enemy_types/7. chinthe/animations/HOP SIDE/HOP-SIDE_page_0010.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://dl3vfxi5rndxd" -path="res://.godot/imported/HOP-SIDE_page_0010.png-c6360b1839963d76c2375daee9445735.ctex" +path="res://.godot/imported/HOP-SIDE_page_0010.png-172c1efb6091e94a6c77770e2e5bc07f.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/7. chinte/animations/HOP SIDE/HOP-SIDE_page_0010.png" -dest_files=["res://.godot/imported/HOP-SIDE_page_0010.png-c6360b1839963d76c2375daee9445735.ctex"] +source_file="res://src/enemy/enemy_types/7. chinthe/animations/HOP SIDE/HOP-SIDE_page_0010.png" +dest_files=["res://.godot/imported/HOP-SIDE_page_0010.png-172c1efb6091e94a6c77770e2e5bc07f.ctex"] [params] diff --git a/src/enemy/enemy_types/7. chinte/animations/HOP SIDE/HOP-SIDE_page_0011.png b/src/enemy/enemy_types/7. chinthe/animations/HOP SIDE/HOP-SIDE_page_0011.png similarity index 100% rename from src/enemy/enemy_types/7. chinte/animations/HOP SIDE/HOP-SIDE_page_0011.png rename to src/enemy/enemy_types/7. chinthe/animations/HOP SIDE/HOP-SIDE_page_0011.png diff --git a/src/enemy/enemy_types/7. chinte/animations/HOP SIDE/HOP-SIDE_page_0011.png.import b/src/enemy/enemy_types/7. chinthe/animations/HOP SIDE/HOP-SIDE_page_0011.png.import similarity index 66% rename from src/enemy/enemy_types/7. chinte/animations/HOP SIDE/HOP-SIDE_page_0011.png.import rename to src/enemy/enemy_types/7. chinthe/animations/HOP SIDE/HOP-SIDE_page_0011.png.import index 192446d0..d08149d5 100644 --- a/src/enemy/enemy_types/7. chinte/animations/HOP SIDE/HOP-SIDE_page_0011.png.import +++ b/src/enemy/enemy_types/7. chinthe/animations/HOP SIDE/HOP-SIDE_page_0011.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://bg45bxbu16vol" -path="res://.godot/imported/HOP-SIDE_page_0011.png-9a23ccb9c75ed3f14b3daeb2a2b89fb7.ctex" +path="res://.godot/imported/HOP-SIDE_page_0011.png-5f856262fec7418ffc403895a6461dda.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/7. chinte/animations/HOP SIDE/HOP-SIDE_page_0011.png" -dest_files=["res://.godot/imported/HOP-SIDE_page_0011.png-9a23ccb9c75ed3f14b3daeb2a2b89fb7.ctex"] +source_file="res://src/enemy/enemy_types/7. chinthe/animations/HOP SIDE/HOP-SIDE_page_0011.png" +dest_files=["res://.godot/imported/HOP-SIDE_page_0011.png-5f856262fec7418ffc403895a6461dda.ctex"] [params] diff --git a/src/enemy/enemy_types/7. chinte/animations/HOP SIDE/HOP-SIDE_page_0012.png b/src/enemy/enemy_types/7. chinthe/animations/HOP SIDE/HOP-SIDE_page_0012.png similarity index 100% rename from src/enemy/enemy_types/7. chinte/animations/HOP SIDE/HOP-SIDE_page_0012.png rename to src/enemy/enemy_types/7. chinthe/animations/HOP SIDE/HOP-SIDE_page_0012.png diff --git a/src/enemy/enemy_types/7. chinte/animations/HOP SIDE/HOP-SIDE_page_0012.png.import b/src/enemy/enemy_types/7. chinthe/animations/HOP SIDE/HOP-SIDE_page_0012.png.import similarity index 66% rename from src/enemy/enemy_types/7. chinte/animations/HOP SIDE/HOP-SIDE_page_0012.png.import rename to src/enemy/enemy_types/7. chinthe/animations/HOP SIDE/HOP-SIDE_page_0012.png.import index 32926581..2164efe0 100644 --- a/src/enemy/enemy_types/7. chinte/animations/HOP SIDE/HOP-SIDE_page_0012.png.import +++ b/src/enemy/enemy_types/7. chinthe/animations/HOP SIDE/HOP-SIDE_page_0012.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://b4gd3j0a0tb8a" -path="res://.godot/imported/HOP-SIDE_page_0012.png-dff2c87904f6470ee8b28e4364c8830d.ctex" +path="res://.godot/imported/HOP-SIDE_page_0012.png-0d024c31eff435143af285785494e627.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/7. chinte/animations/HOP SIDE/HOP-SIDE_page_0012.png" -dest_files=["res://.godot/imported/HOP-SIDE_page_0012.png-dff2c87904f6470ee8b28e4364c8830d.ctex"] +source_file="res://src/enemy/enemy_types/7. chinthe/animations/HOP SIDE/HOP-SIDE_page_0012.png" +dest_files=["res://.godot/imported/HOP-SIDE_page_0012.png-0d024c31eff435143af285785494e627.ctex"] [params] diff --git a/src/enemy/enemy_types/7. chinte/animations/HOP SIDE/HOP-SIDE_page_0013.png b/src/enemy/enemy_types/7. chinthe/animations/HOP SIDE/HOP-SIDE_page_0013.png similarity index 100% rename from src/enemy/enemy_types/7. chinte/animations/HOP SIDE/HOP-SIDE_page_0013.png rename to src/enemy/enemy_types/7. chinthe/animations/HOP SIDE/HOP-SIDE_page_0013.png diff --git a/src/enemy/enemy_types/7. chinte/animations/HOP SIDE/HOP-SIDE_page_0013.png.import b/src/enemy/enemy_types/7. chinthe/animations/HOP SIDE/HOP-SIDE_page_0013.png.import similarity index 66% rename from src/enemy/enemy_types/7. chinte/animations/HOP SIDE/HOP-SIDE_page_0013.png.import rename to src/enemy/enemy_types/7. chinthe/animations/HOP SIDE/HOP-SIDE_page_0013.png.import index 218c13e0..63bec916 100644 --- a/src/enemy/enemy_types/7. chinte/animations/HOP SIDE/HOP-SIDE_page_0013.png.import +++ b/src/enemy/enemy_types/7. chinthe/animations/HOP SIDE/HOP-SIDE_page_0013.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://b40l6fsdqsad1" -path="res://.godot/imported/HOP-SIDE_page_0013.png-73d40bcc7fa36ae06e21fa03b2bc2df8.ctex" +path="res://.godot/imported/HOP-SIDE_page_0013.png-0224a0f089b19a73650c226c5a854f82.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/7. chinte/animations/HOP SIDE/HOP-SIDE_page_0013.png" -dest_files=["res://.godot/imported/HOP-SIDE_page_0013.png-73d40bcc7fa36ae06e21fa03b2bc2df8.ctex"] +source_file="res://src/enemy/enemy_types/7. chinthe/animations/HOP SIDE/HOP-SIDE_page_0013.png" +dest_files=["res://.godot/imported/HOP-SIDE_page_0013.png-0224a0f089b19a73650c226c5a854f82.ctex"] [params] diff --git a/src/enemy/enemy_types/7. chinte/animations/HOP SIDE/HOP-SIDE_page_0014.png b/src/enemy/enemy_types/7. chinthe/animations/HOP SIDE/HOP-SIDE_page_0014.png similarity index 100% rename from src/enemy/enemy_types/7. chinte/animations/HOP SIDE/HOP-SIDE_page_0014.png rename to src/enemy/enemy_types/7. chinthe/animations/HOP SIDE/HOP-SIDE_page_0014.png diff --git a/src/enemy/enemy_types/7. chinte/animations/HOP SIDE/HOP-SIDE_page_0014.png.import b/src/enemy/enemy_types/7. chinthe/animations/HOP SIDE/HOP-SIDE_page_0014.png.import similarity index 66% rename from src/enemy/enemy_types/7. chinte/animations/HOP SIDE/HOP-SIDE_page_0014.png.import rename to src/enemy/enemy_types/7. chinthe/animations/HOP SIDE/HOP-SIDE_page_0014.png.import index 8d11c6b6..11406cba 100644 --- a/src/enemy/enemy_types/7. chinte/animations/HOP SIDE/HOP-SIDE_page_0014.png.import +++ b/src/enemy/enemy_types/7. chinthe/animations/HOP SIDE/HOP-SIDE_page_0014.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://duwfyn662tspf" -path="res://.godot/imported/HOP-SIDE_page_0014.png-00bb4e5d0ece8ae3b44f5e2a614083df.ctex" +path="res://.godot/imported/HOP-SIDE_page_0014.png-312e5eba49690103a0fd2393fc757321.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/7. chinte/animations/HOP SIDE/HOP-SIDE_page_0014.png" -dest_files=["res://.godot/imported/HOP-SIDE_page_0014.png-00bb4e5d0ece8ae3b44f5e2a614083df.ctex"] +source_file="res://src/enemy/enemy_types/7. chinthe/animations/HOP SIDE/HOP-SIDE_page_0014.png" +dest_files=["res://.godot/imported/HOP-SIDE_page_0014.png-312e5eba49690103a0fd2393fc757321.ctex"] [params] diff --git a/src/enemy/enemy_types/7. chinte/animations/HOP SIDE/HOP-SIDE_page_0015.png b/src/enemy/enemy_types/7. chinthe/animations/HOP SIDE/HOP-SIDE_page_0015.png similarity index 100% rename from src/enemy/enemy_types/7. chinte/animations/HOP SIDE/HOP-SIDE_page_0015.png rename to src/enemy/enemy_types/7. chinthe/animations/HOP SIDE/HOP-SIDE_page_0015.png diff --git a/src/enemy/enemy_types/7. chinte/animations/HOP SIDE/HOP-SIDE_page_0015.png.import b/src/enemy/enemy_types/7. chinthe/animations/HOP SIDE/HOP-SIDE_page_0015.png.import similarity index 66% rename from src/enemy/enemy_types/7. chinte/animations/HOP SIDE/HOP-SIDE_page_0015.png.import rename to src/enemy/enemy_types/7. chinthe/animations/HOP SIDE/HOP-SIDE_page_0015.png.import index 0e047318..a4eabcdb 100644 --- a/src/enemy/enemy_types/7. chinte/animations/HOP SIDE/HOP-SIDE_page_0015.png.import +++ b/src/enemy/enemy_types/7. chinthe/animations/HOP SIDE/HOP-SIDE_page_0015.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://8xj0ko2g2deg" -path="res://.godot/imported/HOP-SIDE_page_0015.png-2cb8e6e4ed149c63bf0bd9a14ca27f54.ctex" +path="res://.godot/imported/HOP-SIDE_page_0015.png-759db23bd629fef62bbebae109a98587.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/7. chinte/animations/HOP SIDE/HOP-SIDE_page_0015.png" -dest_files=["res://.godot/imported/HOP-SIDE_page_0015.png-2cb8e6e4ed149c63bf0bd9a14ca27f54.ctex"] +source_file="res://src/enemy/enemy_types/7. chinthe/animations/HOP SIDE/HOP-SIDE_page_0015.png" +dest_files=["res://.godot/imported/HOP-SIDE_page_0015.png-759db23bd629fef62bbebae109a98587.ctex"] [params] diff --git a/src/enemy/enemy_types/7. chinte/animations/HOP SIDE/HOP-SIDE_page_0016.png b/src/enemy/enemy_types/7. chinthe/animations/HOP SIDE/HOP-SIDE_page_0016.png similarity index 100% rename from src/enemy/enemy_types/7. chinte/animations/HOP SIDE/HOP-SIDE_page_0016.png rename to src/enemy/enemy_types/7. chinthe/animations/HOP SIDE/HOP-SIDE_page_0016.png diff --git a/src/enemy/enemy_types/7. chinte/animations/HOP SIDE/HOP-SIDE_page_0016.png.import b/src/enemy/enemy_types/7. chinthe/animations/HOP SIDE/HOP-SIDE_page_0016.png.import similarity index 66% rename from src/enemy/enemy_types/7. chinte/animations/HOP SIDE/HOP-SIDE_page_0016.png.import rename to src/enemy/enemy_types/7. chinthe/animations/HOP SIDE/HOP-SIDE_page_0016.png.import index 0c8d877d..7a970c8d 100644 --- a/src/enemy/enemy_types/7. chinte/animations/HOP SIDE/HOP-SIDE_page_0016.png.import +++ b/src/enemy/enemy_types/7. chinthe/animations/HOP SIDE/HOP-SIDE_page_0016.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://dshrqgojp4yca" -path="res://.godot/imported/HOP-SIDE_page_0016.png-7d605a6d1fe75f68cfde67039b8c6f8b.ctex" +path="res://.godot/imported/HOP-SIDE_page_0016.png-d4e07b0a496720493e5ff9a49d4b83e1.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/7. chinte/animations/HOP SIDE/HOP-SIDE_page_0016.png" -dest_files=["res://.godot/imported/HOP-SIDE_page_0016.png-7d605a6d1fe75f68cfde67039b8c6f8b.ctex"] +source_file="res://src/enemy/enemy_types/7. chinthe/animations/HOP SIDE/HOP-SIDE_page_0016.png" +dest_files=["res://.godot/imported/HOP-SIDE_page_0016.png-d4e07b0a496720493e5ff9a49d4b83e1.ctex"] [params] diff --git a/src/enemy/enemy_types/7. chinte/animations/HOP SIDE/HOP-SIDE_page_0017.png b/src/enemy/enemy_types/7. chinthe/animations/HOP SIDE/HOP-SIDE_page_0017.png similarity index 100% rename from src/enemy/enemy_types/7. chinte/animations/HOP SIDE/HOP-SIDE_page_0017.png rename to src/enemy/enemy_types/7. chinthe/animations/HOP SIDE/HOP-SIDE_page_0017.png diff --git a/src/enemy/enemy_types/7. chinte/animations/HOP SIDE/HOP-SIDE_page_0017.png.import b/src/enemy/enemy_types/7. chinthe/animations/HOP SIDE/HOP-SIDE_page_0017.png.import similarity index 66% rename from src/enemy/enemy_types/7. chinte/animations/HOP SIDE/HOP-SIDE_page_0017.png.import rename to src/enemy/enemy_types/7. chinthe/animations/HOP SIDE/HOP-SIDE_page_0017.png.import index f4ebabe3..4e178467 100644 --- a/src/enemy/enemy_types/7. chinte/animations/HOP SIDE/HOP-SIDE_page_0017.png.import +++ b/src/enemy/enemy_types/7. chinthe/animations/HOP SIDE/HOP-SIDE_page_0017.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://drmbggwyc3lhu" -path="res://.godot/imported/HOP-SIDE_page_0017.png-f206c0685c45f6adb31730464f9a6d36.ctex" +path="res://.godot/imported/HOP-SIDE_page_0017.png-d825308f9f1aaf6139b148f800807dc4.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/7. chinte/animations/HOP SIDE/HOP-SIDE_page_0017.png" -dest_files=["res://.godot/imported/HOP-SIDE_page_0017.png-f206c0685c45f6adb31730464f9a6d36.ctex"] +source_file="res://src/enemy/enemy_types/7. chinthe/animations/HOP SIDE/HOP-SIDE_page_0017.png" +dest_files=["res://.godot/imported/HOP-SIDE_page_0017.png-d825308f9f1aaf6139b148f800807dc4.ctex"] [params] diff --git a/src/enemy/enemy_types/7. chinte/animations/HOP SIDE/HOP-SIDE_page_0018.png b/src/enemy/enemy_types/7. chinthe/animations/HOP SIDE/HOP-SIDE_page_0018.png similarity index 100% rename from src/enemy/enemy_types/7. chinte/animations/HOP SIDE/HOP-SIDE_page_0018.png rename to src/enemy/enemy_types/7. chinthe/animations/HOP SIDE/HOP-SIDE_page_0018.png diff --git a/src/enemy/enemy_types/7. chinte/animations/HOP SIDE/HOP-SIDE_page_0018.png.import b/src/enemy/enemy_types/7. chinthe/animations/HOP SIDE/HOP-SIDE_page_0018.png.import similarity index 66% rename from src/enemy/enemy_types/7. chinte/animations/HOP SIDE/HOP-SIDE_page_0018.png.import rename to src/enemy/enemy_types/7. chinthe/animations/HOP SIDE/HOP-SIDE_page_0018.png.import index b069aa95..6c4f4803 100644 --- a/src/enemy/enemy_types/7. chinte/animations/HOP SIDE/HOP-SIDE_page_0018.png.import +++ b/src/enemy/enemy_types/7. chinthe/animations/HOP SIDE/HOP-SIDE_page_0018.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://5lo4a55mwhmc" -path="res://.godot/imported/HOP-SIDE_page_0018.png-f6dc9146c4b7f6323804ff792bdc1492.ctex" +path="res://.godot/imported/HOP-SIDE_page_0018.png-d664bcf65d4bc34ad02eb1b73c55a8b3.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/7. chinte/animations/HOP SIDE/HOP-SIDE_page_0018.png" -dest_files=["res://.godot/imported/HOP-SIDE_page_0018.png-f6dc9146c4b7f6323804ff792bdc1492.ctex"] +source_file="res://src/enemy/enemy_types/7. chinthe/animations/HOP SIDE/HOP-SIDE_page_0018.png" +dest_files=["res://.godot/imported/HOP-SIDE_page_0018.png-d664bcf65d4bc34ad02eb1b73c55a8b3.ctex"] [params] diff --git a/src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0001.png b/src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0001.png similarity index 100% rename from src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0001.png rename to src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0001.png diff --git a/src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0001.png.import b/src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0001.png.import new file mode 100644 index 00000000..ab859d5d --- /dev/null +++ b/src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0001.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dt8pg4upblis8" +path="res://.godot/imported/IDLE-FRONT_page_0001.png-5592d1920034c79d8810fca8e9d6a95a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0001.png" +dest_files=["res://.godot/imported/IDLE-FRONT_page_0001.png-5592d1920034c79d8810fca8e9d6a95a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0002.png b/src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0002.png similarity index 100% rename from src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0002.png rename to src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0002.png diff --git a/src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0002.png.import b/src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0002.png.import similarity index 65% rename from src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0002.png.import rename to src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0002.png.import index 2b871ffd..ad1dc1a5 100644 --- a/src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0002.png.import +++ b/src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0002.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://72xvqeu4hl6q" -path="res://.godot/imported/IDLE-FRONT_page_0002.png-ef0a0ed9792f087c19712590fb0b81c4.ctex" +path="res://.godot/imported/IDLE-FRONT_page_0002.png-f09addb5ac76b7dc2752eaa7a61eacd1.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0002.png" -dest_files=["res://.godot/imported/IDLE-FRONT_page_0002.png-ef0a0ed9792f087c19712590fb0b81c4.ctex"] +source_file="res://src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0002.png" +dest_files=["res://.godot/imported/IDLE-FRONT_page_0002.png-f09addb5ac76b7dc2752eaa7a61eacd1.ctex"] [params] diff --git a/src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0003.png b/src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0003.png similarity index 100% rename from src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0003.png rename to src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0003.png diff --git a/src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0001.png.import b/src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0003.png.import similarity index 66% rename from src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0001.png.import rename to src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0003.png.import index bd726755..cf6948e8 100644 --- a/src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0001.png.import +++ b/src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0003.png.import @@ -2,16 +2,16 @@ importer="texture" type="CompressedTexture2D" -uid="uid://dt8pg4upblis8" -path="res://.godot/imported/IDLE-FRONT_page_0001.png-bc886f6588b2d2510446196003f0cf33.ctex" +uid="uid://q7k840guefqk" +path="res://.godot/imported/IDLE-FRONT_page_0003.png-2c2d330604b91b1ac8c3a0490d09f929.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0001.png" -dest_files=["res://.godot/imported/IDLE-FRONT_page_0001.png-bc886f6588b2d2510446196003f0cf33.ctex"] +source_file="res://src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0003.png" +dest_files=["res://.godot/imported/IDLE-FRONT_page_0003.png-2c2d330604b91b1ac8c3a0490d09f929.ctex"] [params] diff --git a/src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0004.png b/src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0004.png similarity index 100% rename from src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0004.png rename to src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0004.png diff --git a/src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0010.png.import b/src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0004.png.import similarity index 66% rename from src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0010.png.import rename to src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0004.png.import index c2617876..5d074b1a 100644 --- a/src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0010.png.import +++ b/src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0004.png.import @@ -2,16 +2,16 @@ importer="texture" type="CompressedTexture2D" -uid="uid://eso4qhcusm4" -path="res://.godot/imported/IDLE-FRONT_page_0010.png-ea462e79592396d386c70e027fb48a29.ctex" +uid="uid://bexb8p0l0cve3" +path="res://.godot/imported/IDLE-FRONT_page_0004.png-3c8d15e9b0b2f263bd55248d40cd73ad.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0010.png" -dest_files=["res://.godot/imported/IDLE-FRONT_page_0010.png-ea462e79592396d386c70e027fb48a29.ctex"] +source_file="res://src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0004.png" +dest_files=["res://.godot/imported/IDLE-FRONT_page_0004.png-3c8d15e9b0b2f263bd55248d40cd73ad.ctex"] [params] diff --git a/src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0005.png b/src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0005.png similarity index 100% rename from src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0005.png rename to src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0005.png diff --git a/src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0005.png.import b/src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0005.png.import similarity index 65% rename from src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0005.png.import rename to src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0005.png.import index 7de6a618..1ff165d7 100644 --- a/src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0005.png.import +++ b/src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0005.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://dgpwachsks3xp" -path="res://.godot/imported/IDLE-FRONT_page_0005.png-11630bad011e98f59c86fb8b51fc6b71.ctex" +path="res://.godot/imported/IDLE-FRONT_page_0005.png-2e48c6ba049ffc6043de10b5f929d435.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0005.png" -dest_files=["res://.godot/imported/IDLE-FRONT_page_0005.png-11630bad011e98f59c86fb8b51fc6b71.ctex"] +source_file="res://src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0005.png" +dest_files=["res://.godot/imported/IDLE-FRONT_page_0005.png-2e48c6ba049ffc6043de10b5f929d435.ctex"] [params] diff --git a/src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0006.png b/src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0006.png similarity index 100% rename from src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0006.png rename to src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0006.png diff --git a/src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0006.png.import b/src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0006.png.import similarity index 65% rename from src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0006.png.import rename to src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0006.png.import index 5fe838c8..ededa33b 100644 --- a/src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0006.png.import +++ b/src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0006.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://bcwjdqnly70nt" -path="res://.godot/imported/IDLE-FRONT_page_0006.png-f1c7cbc205c864b26059e5ce34c56908.ctex" +path="res://.godot/imported/IDLE-FRONT_page_0006.png-1650c88e03ca31620b16979556e3f9d1.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0006.png" -dest_files=["res://.godot/imported/IDLE-FRONT_page_0006.png-f1c7cbc205c864b26059e5ce34c56908.ctex"] +source_file="res://src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0006.png" +dest_files=["res://.godot/imported/IDLE-FRONT_page_0006.png-1650c88e03ca31620b16979556e3f9d1.ctex"] [params] diff --git a/src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0007.png b/src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0007.png similarity index 100% rename from src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0007.png rename to src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0007.png diff --git a/src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0007.png.import b/src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0007.png.import similarity index 65% rename from src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0007.png.import rename to src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0007.png.import index a9b9564f..05e76bd2 100644 --- a/src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0007.png.import +++ b/src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0007.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://c3oh1wfc5jqai" -path="res://.godot/imported/IDLE-FRONT_page_0007.png-17dcda34969f5d5beca4744f406aaba5.ctex" +path="res://.godot/imported/IDLE-FRONT_page_0007.png-5a516f2105368ba25d3a77d0e0294e7f.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0007.png" -dest_files=["res://.godot/imported/IDLE-FRONT_page_0007.png-17dcda34969f5d5beca4744f406aaba5.ctex"] +source_file="res://src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0007.png" +dest_files=["res://.godot/imported/IDLE-FRONT_page_0007.png-5a516f2105368ba25d3a77d0e0294e7f.ctex"] [params] diff --git a/src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0008.png b/src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0008.png similarity index 100% rename from src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0008.png rename to src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0008.png diff --git a/src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0008.png.import b/src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0008.png.import similarity index 65% rename from src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0008.png.import rename to src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0008.png.import index dcbb2a3e..27118148 100644 --- a/src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0008.png.import +++ b/src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0008.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://wsvvrx6ek2e3" -path="res://.godot/imported/IDLE-FRONT_page_0008.png-cfc5ce06edb2e23458878c8de0769e3a.ctex" +path="res://.godot/imported/IDLE-FRONT_page_0008.png-8d20207037078205cbff6d3f0ea385f2.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0008.png" -dest_files=["res://.godot/imported/IDLE-FRONT_page_0008.png-cfc5ce06edb2e23458878c8de0769e3a.ctex"] +source_file="res://src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0008.png" +dest_files=["res://.godot/imported/IDLE-FRONT_page_0008.png-8d20207037078205cbff6d3f0ea385f2.ctex"] [params] diff --git a/src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0009.png b/src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0009.png similarity index 100% rename from src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0009.png rename to src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0009.png diff --git a/src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0009.png.import b/src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0009.png.import similarity index 65% rename from src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0009.png.import rename to src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0009.png.import index 30a5f251..ea79798b 100644 --- a/src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0009.png.import +++ b/src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0009.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://cbijkmo1hob35" -path="res://.godot/imported/IDLE-FRONT_page_0009.png-9c2eacab052d3472401a9ef220146979.ctex" +path="res://.godot/imported/IDLE-FRONT_page_0009.png-6cc1585252ba96a8fd5b62f5c9b39af7.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0009.png" -dest_files=["res://.godot/imported/IDLE-FRONT_page_0009.png-9c2eacab052d3472401a9ef220146979.ctex"] +source_file="res://src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0009.png" +dest_files=["res://.godot/imported/IDLE-FRONT_page_0009.png-6cc1585252ba96a8fd5b62f5c9b39af7.ctex"] [params] diff --git a/src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0010.png b/src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0010.png similarity index 100% rename from src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0010.png rename to src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0010.png diff --git a/src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0010.png.import b/src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0010.png.import new file mode 100644 index 00000000..135f339b --- /dev/null +++ b/src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0010.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://eso4qhcusm4" +path="res://.godot/imported/IDLE-FRONT_page_0010.png-1500154853bc1a582ed6cc8e61bbe05c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0010.png" +dest_files=["res://.godot/imported/IDLE-FRONT_page_0010.png-1500154853bc1a582ed6cc8e61bbe05c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0011.png b/src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0011.png similarity index 100% rename from src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0011.png rename to src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0011.png diff --git a/src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0011.png.import b/src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0011.png.import similarity index 65% rename from src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0011.png.import rename to src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0011.png.import index 27945b70..e7061fbd 100644 --- a/src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0011.png.import +++ b/src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0011.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://dvaqbv6n525lb" -path="res://.godot/imported/IDLE-FRONT_page_0011.png-bfacc84406e73eb640d3d3026864ac7a.ctex" +path="res://.godot/imported/IDLE-FRONT_page_0011.png-1f53137577c84c8436e423795bd97ab2.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0011.png" -dest_files=["res://.godot/imported/IDLE-FRONT_page_0011.png-bfacc84406e73eb640d3d3026864ac7a.ctex"] +source_file="res://src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0011.png" +dest_files=["res://.godot/imported/IDLE-FRONT_page_0011.png-1f53137577c84c8436e423795bd97ab2.ctex"] [params] diff --git a/src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0012.png b/src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0012.png similarity index 100% rename from src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0012.png rename to src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0012.png diff --git a/src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0012.png.import b/src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0012.png.import similarity index 65% rename from src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0012.png.import rename to src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0012.png.import index 420c2471..e32c05ef 100644 --- a/src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0012.png.import +++ b/src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0012.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://bw8p1oe3353uy" -path="res://.godot/imported/IDLE-FRONT_page_0012.png-6dc0146fbfd80d1f456622c47d61e376.ctex" +path="res://.godot/imported/IDLE-FRONT_page_0012.png-5dc259e0d6e3c59959a07d028ccaa811.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0012.png" -dest_files=["res://.godot/imported/IDLE-FRONT_page_0012.png-6dc0146fbfd80d1f456622c47d61e376.ctex"] +source_file="res://src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0012.png" +dest_files=["res://.godot/imported/IDLE-FRONT_page_0012.png-5dc259e0d6e3c59959a07d028ccaa811.ctex"] [params] diff --git a/src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0013.png b/src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0013.png similarity index 100% rename from src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0013.png rename to src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0013.png diff --git a/src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0013.png.import b/src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0013.png.import similarity index 65% rename from src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0013.png.import rename to src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0013.png.import index 9d7a89ee..91593ec0 100644 --- a/src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0013.png.import +++ b/src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0013.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://5pj6asie3de1" -path="res://.godot/imported/IDLE-FRONT_page_0013.png-b63f0cb94b56e12e234b2eab3eeee4c8.ctex" +path="res://.godot/imported/IDLE-FRONT_page_0013.png-2ed9b2ad3ac28986f1e1f87d811010c4.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0013.png" -dest_files=["res://.godot/imported/IDLE-FRONT_page_0013.png-b63f0cb94b56e12e234b2eab3eeee4c8.ctex"] +source_file="res://src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0013.png" +dest_files=["res://.godot/imported/IDLE-FRONT_page_0013.png-2ed9b2ad3ac28986f1e1f87d811010c4.ctex"] [params] diff --git a/src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0014.png b/src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0014.png similarity index 100% rename from src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0014.png rename to src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0014.png diff --git a/src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0014.png.import b/src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0014.png.import similarity index 65% rename from src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0014.png.import rename to src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0014.png.import index 7a4a5246..bae774d6 100644 --- a/src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0014.png.import +++ b/src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0014.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://1r5sm6vvn2m6" -path="res://.godot/imported/IDLE-FRONT_page_0014.png-15d059657311d0c4487f62cd387a37cf.ctex" +path="res://.godot/imported/IDLE-FRONT_page_0014.png-b7f04eb1711860fe37620d5f60c3c5bc.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0014.png" -dest_files=["res://.godot/imported/IDLE-FRONT_page_0014.png-15d059657311d0c4487f62cd387a37cf.ctex"] +source_file="res://src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0014.png" +dest_files=["res://.godot/imported/IDLE-FRONT_page_0014.png-b7f04eb1711860fe37620d5f60c3c5bc.ctex"] [params] diff --git a/src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0015.png b/src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0015.png similarity index 100% rename from src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0015.png rename to src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0015.png diff --git a/src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0015.png.import b/src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0015.png.import similarity index 65% rename from src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0015.png.import rename to src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0015.png.import index 1e58e648..f6a65666 100644 --- a/src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0015.png.import +++ b/src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0015.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://m4clglkawftb" -path="res://.godot/imported/IDLE-FRONT_page_0015.png-6ec9b0fa211fbcbe31c5871b3709eaf8.ctex" +path="res://.godot/imported/IDLE-FRONT_page_0015.png-5fc7ffab6c47ff504e757feef79a9762.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0015.png" -dest_files=["res://.godot/imported/IDLE-FRONT_page_0015.png-6ec9b0fa211fbcbe31c5871b3709eaf8.ctex"] +source_file="res://src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0015.png" +dest_files=["res://.godot/imported/IDLE-FRONT_page_0015.png-5fc7ffab6c47ff504e757feef79a9762.ctex"] [params] diff --git a/src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0016.png b/src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0016.png similarity index 100% rename from src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0016.png rename to src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0016.png diff --git a/src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0016.png.import b/src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0016.png.import similarity index 65% rename from src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0016.png.import rename to src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0016.png.import index 3b4ca251..c686cae4 100644 --- a/src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0016.png.import +++ b/src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0016.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://do1ewuo4yifrq" -path="res://.godot/imported/IDLE-FRONT_page_0016.png-b894132460c2a3fee408c9294f3c9d9b.ctex" +path="res://.godot/imported/IDLE-FRONT_page_0016.png-45bb2576131ac255ad2656e5e4223051.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0016.png" -dest_files=["res://.godot/imported/IDLE-FRONT_page_0016.png-b894132460c2a3fee408c9294f3c9d9b.ctex"] +source_file="res://src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0016.png" +dest_files=["res://.godot/imported/IDLE-FRONT_page_0016.png-45bb2576131ac255ad2656e5e4223051.ctex"] [params] diff --git a/src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0017.png b/src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0017.png similarity index 100% rename from src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0017.png rename to src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0017.png diff --git a/src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0017.png.import b/src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0017.png.import similarity index 65% rename from src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0017.png.import rename to src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0017.png.import index 662897f6..31d5beb8 100644 --- a/src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0017.png.import +++ b/src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0017.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://ccx6r2ddh1i7a" -path="res://.godot/imported/IDLE-FRONT_page_0017.png-6a6f17f54357bfb3002cf694526d6ae0.ctex" +path="res://.godot/imported/IDLE-FRONT_page_0017.png-852ff8c8dada2cd696c7ed167a74b4a0.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0017.png" -dest_files=["res://.godot/imported/IDLE-FRONT_page_0017.png-6a6f17f54357bfb3002cf694526d6ae0.ctex"] +source_file="res://src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0017.png" +dest_files=["res://.godot/imported/IDLE-FRONT_page_0017.png-852ff8c8dada2cd696c7ed167a74b4a0.ctex"] [params] diff --git a/src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0018.png b/src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0018.png similarity index 100% rename from src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0018.png rename to src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0018.png diff --git a/src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0018.png.import b/src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0018.png.import similarity index 65% rename from src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0018.png.import rename to src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0018.png.import index f8a8f90f..8339c640 100644 --- a/src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0018.png.import +++ b/src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0018.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://jlk8y8njpr2h" -path="res://.godot/imported/IDLE-FRONT_page_0018.png-b4dbc6f12f463852c25aa331660a9705.ctex" +path="res://.godot/imported/IDLE-FRONT_page_0018.png-8d168e514c383443d2009f699054180b.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0018.png" -dest_files=["res://.godot/imported/IDLE-FRONT_page_0018.png-b4dbc6f12f463852c25aa331660a9705.ctex"] +source_file="res://src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0018.png" +dest_files=["res://.godot/imported/IDLE-FRONT_page_0018.png-8d168e514c383443d2009f699054180b.ctex"] [params] diff --git a/src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0019.png b/src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0019.png similarity index 100% rename from src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0019.png rename to src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0019.png diff --git a/src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0019.png.import b/src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0019.png.import similarity index 65% rename from src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0019.png.import rename to src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0019.png.import index 9f1b7845..f04229bd 100644 --- a/src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0019.png.import +++ b/src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0019.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://di6654s8itcp0" -path="res://.godot/imported/IDLE-FRONT_page_0019.png-20813bb60e94070329423d79fe64e2fa.ctex" +path="res://.godot/imported/IDLE-FRONT_page_0019.png-c02c52034ddec5ab021f514b774d03bc.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0019.png" -dest_files=["res://.godot/imported/IDLE-FRONT_page_0019.png-20813bb60e94070329423d79fe64e2fa.ctex"] +source_file="res://src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0019.png" +dest_files=["res://.godot/imported/IDLE-FRONT_page_0019.png-c02c52034ddec5ab021f514b774d03bc.ctex"] [params] diff --git a/src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0020.png b/src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0020.png similarity index 100% rename from src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0020.png rename to src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0020.png diff --git a/src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0020.png.import b/src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0020.png.import similarity index 65% rename from src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0020.png.import rename to src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0020.png.import index f02b1fcc..aecf649f 100644 --- a/src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0020.png.import +++ b/src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0020.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://6rwqt33pm75r" -path="res://.godot/imported/IDLE-FRONT_page_0020.png-c8ad76df7f01dc45c836294ceae72961.ctex" +path="res://.godot/imported/IDLE-FRONT_page_0020.png-43a376ef2999ba66358e88b17a20a37d.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0020.png" -dest_files=["res://.godot/imported/IDLE-FRONT_page_0020.png-c8ad76df7f01dc45c836294ceae72961.ctex"] +source_file="res://src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0020.png" +dest_files=["res://.godot/imported/IDLE-FRONT_page_0020.png-43a376ef2999ba66358e88b17a20a37d.ctex"] [params] diff --git a/src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0021.png b/src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0021.png similarity index 100% rename from src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0021.png rename to src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0021.png diff --git a/src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0021.png.import b/src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0021.png.import similarity index 65% rename from src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0021.png.import rename to src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0021.png.import index 3874eae4..f58ef080 100644 --- a/src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0021.png.import +++ b/src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0021.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://dp3qnmhbdq6yb" -path="res://.godot/imported/IDLE-FRONT_page_0021.png-f30902738b8b60f6dec2a3f71107a4f5.ctex" +path="res://.godot/imported/IDLE-FRONT_page_0021.png-a21009ac228410bce899e83557b6da4d.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0021.png" -dest_files=["res://.godot/imported/IDLE-FRONT_page_0021.png-f30902738b8b60f6dec2a3f71107a4f5.ctex"] +source_file="res://src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0021.png" +dest_files=["res://.godot/imported/IDLE-FRONT_page_0021.png-a21009ac228410bce899e83557b6da4d.ctex"] [params] diff --git a/src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0022.png b/src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0022.png similarity index 100% rename from src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0022.png rename to src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0022.png diff --git a/src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0022.png.import b/src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0022.png.import similarity index 65% rename from src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0022.png.import rename to src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0022.png.import index e78a8d5f..877c03ac 100644 --- a/src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0022.png.import +++ b/src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0022.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://kij4jgwp18tt" -path="res://.godot/imported/IDLE-FRONT_page_0022.png-53d1aa8d7ab6b7f445f6e61df03418d7.ctex" +path="res://.godot/imported/IDLE-FRONT_page_0022.png-6e6ac75a413171223e3175de22b36501.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0022.png" -dest_files=["res://.godot/imported/IDLE-FRONT_page_0022.png-53d1aa8d7ab6b7f445f6e61df03418d7.ctex"] +source_file="res://src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0022.png" +dest_files=["res://.godot/imported/IDLE-FRONT_page_0022.png-6e6ac75a413171223e3175de22b36501.ctex"] [params] diff --git a/src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0023.png b/src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0023.png similarity index 100% rename from src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0023.png rename to src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0023.png diff --git a/src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0023.png.import b/src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0023.png.import similarity index 65% rename from src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0023.png.import rename to src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0023.png.import index 155a220a..ebb14f66 100644 --- a/src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0023.png.import +++ b/src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0023.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://1pp0crfb7hks" -path="res://.godot/imported/IDLE-FRONT_page_0023.png-e43a0fbae3353914650729f2d14beeef.ctex" +path="res://.godot/imported/IDLE-FRONT_page_0023.png-e6adc581b5c60126b188c20ad0bae952.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0023.png" -dest_files=["res://.godot/imported/IDLE-FRONT_page_0023.png-e43a0fbae3353914650729f2d14beeef.ctex"] +source_file="res://src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0023.png" +dest_files=["res://.godot/imported/IDLE-FRONT_page_0023.png-e6adc581b5c60126b188c20ad0bae952.ctex"] [params] diff --git a/src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0024.png b/src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0024.png similarity index 100% rename from src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0024.png rename to src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0024.png diff --git a/src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0024.png.import b/src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0024.png.import similarity index 65% rename from src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0024.png.import rename to src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0024.png.import index 811bb428..bc0f8edf 100644 --- a/src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0024.png.import +++ b/src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0024.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://do6gxsfcuw0a7" -path="res://.godot/imported/IDLE-FRONT_page_0024.png-57b7e806c9b99efe9f8e22052b9bc55f.ctex" +path="res://.godot/imported/IDLE-FRONT_page_0024.png-c1c342bd6388f33d75dd184d3b64b29d.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0024.png" -dest_files=["res://.godot/imported/IDLE-FRONT_page_0024.png-57b7e806c9b99efe9f8e22052b9bc55f.ctex"] +source_file="res://src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0024.png" +dest_files=["res://.godot/imported/IDLE-FRONT_page_0024.png-c1c342bd6388f33d75dd184d3b64b29d.ctex"] [params] diff --git a/src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0025.png b/src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0025.png similarity index 100% rename from src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0025.png rename to src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0025.png diff --git a/src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0025.png.import b/src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0025.png.import similarity index 65% rename from src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0025.png.import rename to src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0025.png.import index b0613fb9..9acadeaa 100644 --- a/src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0025.png.import +++ b/src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0025.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://bo4u5kafsy054" -path="res://.godot/imported/IDLE-FRONT_page_0025.png-0b69e5c2a9c50f0912fe70bfcdf8a861.ctex" +path="res://.godot/imported/IDLE-FRONT_page_0025.png-4ed8490d7475295b8c3ddaa97ba64ff7.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0025.png" -dest_files=["res://.godot/imported/IDLE-FRONT_page_0025.png-0b69e5c2a9c50f0912fe70bfcdf8a861.ctex"] +source_file="res://src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0025.png" +dest_files=["res://.godot/imported/IDLE-FRONT_page_0025.png-4ed8490d7475295b8c3ddaa97ba64ff7.ctex"] [params] diff --git a/src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0026.png b/src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0026.png similarity index 100% rename from src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0026.png rename to src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0026.png diff --git a/src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0026.png.import b/src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0026.png.import similarity index 65% rename from src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0026.png.import rename to src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0026.png.import index 14845b25..cb394b5f 100644 --- a/src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0026.png.import +++ b/src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0026.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://dtkqg5y1nhy6r" -path="res://.godot/imported/IDLE-FRONT_page_0026.png-f9b6dec7ee763f14544410f385815975.ctex" +path="res://.godot/imported/IDLE-FRONT_page_0026.png-138b4c018e8fe2fbcff8fa0e8d86327d.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0026.png" -dest_files=["res://.godot/imported/IDLE-FRONT_page_0026.png-f9b6dec7ee763f14544410f385815975.ctex"] +source_file="res://src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0026.png" +dest_files=["res://.godot/imported/IDLE-FRONT_page_0026.png-138b4c018e8fe2fbcff8fa0e8d86327d.ctex"] [params] diff --git a/src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0027.png b/src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0027.png similarity index 100% rename from src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0027.png rename to src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0027.png diff --git a/src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0027.png.import b/src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0027.png.import similarity index 65% rename from src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0027.png.import rename to src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0027.png.import index 402c0388..a6e13ebc 100644 --- a/src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0027.png.import +++ b/src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0027.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://co1vs3bnsoa7" -path="res://.godot/imported/IDLE-FRONT_page_0027.png-70fb98eeb38fabeb1225ac7486d6940a.ctex" +path="res://.godot/imported/IDLE-FRONT_page_0027.png-405a774d92048dfcf9c9f6ac21f30850.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0027.png" -dest_files=["res://.godot/imported/IDLE-FRONT_page_0027.png-70fb98eeb38fabeb1225ac7486d6940a.ctex"] +source_file="res://src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0027.png" +dest_files=["res://.godot/imported/IDLE-FRONT_page_0027.png-405a774d92048dfcf9c9f6ac21f30850.ctex"] [params] diff --git a/src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0028.png b/src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0028.png similarity index 100% rename from src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0028.png rename to src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0028.png diff --git a/src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0028.png.import b/src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0028.png.import similarity index 65% rename from src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0028.png.import rename to src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0028.png.import index af1d4262..5030fad0 100644 --- a/src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0028.png.import +++ b/src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0028.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://y8a3iou4qln8" -path="res://.godot/imported/IDLE-FRONT_page_0028.png-4eb275f6672793870c028f3e37732a2c.ctex" +path="res://.godot/imported/IDLE-FRONT_page_0028.png-d1ef2bf4b8fac64fdd63f3d700396a8b.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0028.png" -dest_files=["res://.godot/imported/IDLE-FRONT_page_0028.png-4eb275f6672793870c028f3e37732a2c.ctex"] +source_file="res://src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0028.png" +dest_files=["res://.godot/imported/IDLE-FRONT_page_0028.png-d1ef2bf4b8fac64fdd63f3d700396a8b.ctex"] [params] diff --git a/src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0029.png b/src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0029.png similarity index 100% rename from src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0029.png rename to src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0029.png diff --git a/src/enemy/enemy_types/7. chinte/animations/TELEPORT/TELEPORT_page_0004.png.import b/src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0029.png.import similarity index 66% rename from src/enemy/enemy_types/7. chinte/animations/TELEPORT/TELEPORT_page_0004.png.import rename to src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0029.png.import index d26fb074..0f81b672 100644 --- a/src/enemy/enemy_types/7. chinte/animations/TELEPORT/TELEPORT_page_0004.png.import +++ b/src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0029.png.import @@ -2,16 +2,16 @@ importer="texture" type="CompressedTexture2D" -uid="uid://35ujy0kklmeh" -path="res://.godot/imported/TELEPORT_page_0004.png-ba7e36b56b69737a2b50ee6e552a27c2.ctex" +uid="uid://bqtg2bdgpq2rv" +path="res://.godot/imported/IDLE-FRONT_page_0029.png-177e5c3d172b22b959c3c20d36d01055.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/7. chinte/animations/TELEPORT/TELEPORT_page_0004.png" -dest_files=["res://.godot/imported/TELEPORT_page_0004.png-ba7e36b56b69737a2b50ee6e552a27c2.ctex"] +source_file="res://src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0029.png" +dest_files=["res://.godot/imported/IDLE-FRONT_page_0029.png-177e5c3d172b22b959c3c20d36d01055.ctex"] [params] diff --git a/src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0030.png b/src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0030.png similarity index 100% rename from src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0030.png rename to src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0030.png diff --git a/src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0030.png.import b/src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0030.png.import similarity index 65% rename from src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0030.png.import rename to src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0030.png.import index 0d0978ba..265cf0b6 100644 --- a/src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0030.png.import +++ b/src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0030.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://cj4gajmey2ffu" -path="res://.godot/imported/IDLE-FRONT_page_0030.png-b669ec5cea21bc6f5b4fbd80ecd0af87.ctex" +path="res://.godot/imported/IDLE-FRONT_page_0030.png-f9d069be8a1e9606a574f8ffe428e4ce.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0030.png" -dest_files=["res://.godot/imported/IDLE-FRONT_page_0030.png-b669ec5cea21bc6f5b4fbd80ecd0af87.ctex"] +source_file="res://src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0030.png" +dest_files=["res://.godot/imported/IDLE-FRONT_page_0030.png-f9d069be8a1e9606a574f8ffe428e4ce.ctex"] [params] diff --git a/src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0031.png b/src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0031.png similarity index 100% rename from src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0031.png rename to src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0031.png diff --git a/src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0031.png.import b/src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0031.png.import new file mode 100644 index 00000000..c8492307 --- /dev/null +++ b/src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0031.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://capfbno5347av" +path="res://.godot/imported/IDLE-FRONT_page_0031.png-b3ff8cc15b4369c9dda6f15b277864b1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0031.png" +dest_files=["res://.godot/imported/IDLE-FRONT_page_0031.png-b3ff8cc15b4369c9dda6f15b277864b1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0032.png b/src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0032.png similarity index 100% rename from src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0032.png rename to src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0032.png diff --git a/src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0032.png.import b/src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0032.png.import similarity index 65% rename from src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0032.png.import rename to src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0032.png.import index 90d451d4..8d700f63 100644 --- a/src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0032.png.import +++ b/src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0032.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://bdg54lnig84jf" -path="res://.godot/imported/IDLE-FRONT_page_0032.png-106a5d6e2338d73fef0d1e1d475f96e6.ctex" +path="res://.godot/imported/IDLE-FRONT_page_0032.png-3e79971b492d9525d8467bf76b71bc4d.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0032.png" -dest_files=["res://.godot/imported/IDLE-FRONT_page_0032.png-106a5d6e2338d73fef0d1e1d475f96e6.ctex"] +source_file="res://src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0032.png" +dest_files=["res://.godot/imported/IDLE-FRONT_page_0032.png-3e79971b492d9525d8467bf76b71bc4d.ctex"] [params] diff --git a/src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0033.png b/src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0033.png similarity index 100% rename from src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0033.png rename to src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0033.png diff --git a/src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0033.png.import b/src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0033.png.import similarity index 65% rename from src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0033.png.import rename to src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0033.png.import index f424fced..0befdbf4 100644 --- a/src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0033.png.import +++ b/src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0033.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://d2ih2oqngbsln" -path="res://.godot/imported/IDLE-FRONT_page_0033.png-95975e901119440715ecee5675a2f5f7.ctex" +path="res://.godot/imported/IDLE-FRONT_page_0033.png-a1d00cb6a592f70ad7e26c915a53df88.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0033.png" -dest_files=["res://.godot/imported/IDLE-FRONT_page_0033.png-95975e901119440715ecee5675a2f5f7.ctex"] +source_file="res://src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0033.png" +dest_files=["res://.godot/imported/IDLE-FRONT_page_0033.png-a1d00cb6a592f70ad7e26c915a53df88.ctex"] [params] diff --git a/src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0034.png b/src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0034.png similarity index 100% rename from src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0034.png rename to src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0034.png diff --git a/src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0034.png.import b/src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0034.png.import similarity index 65% rename from src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0034.png.import rename to src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0034.png.import index 311ebce9..d63deae9 100644 --- a/src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0034.png.import +++ b/src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0034.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://dr4tn3h51btjv" -path="res://.godot/imported/IDLE-FRONT_page_0034.png-44668dc9c809c653c47c250ccbdde855.ctex" +path="res://.godot/imported/IDLE-FRONT_page_0034.png-2b08f8e826a71a7b31d6de90c85dd1b3.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0034.png" -dest_files=["res://.godot/imported/IDLE-FRONT_page_0034.png-44668dc9c809c653c47c250ccbdde855.ctex"] +source_file="res://src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0034.png" +dest_files=["res://.godot/imported/IDLE-FRONT_page_0034.png-2b08f8e826a71a7b31d6de90c85dd1b3.ctex"] [params] diff --git a/src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0035.png b/src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0035.png similarity index 100% rename from src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0035.png rename to src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0035.png diff --git a/src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0035.png.import b/src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0035.png.import similarity index 65% rename from src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0035.png.import rename to src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0035.png.import index a0cd25c9..e67d2fe6 100644 --- a/src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0035.png.import +++ b/src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0035.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://dojq8vxobaqqa" -path="res://.godot/imported/IDLE-FRONT_page_0035.png-c4f41e3e19705eea9429fe56eb6e1a34.ctex" +path="res://.godot/imported/IDLE-FRONT_page_0035.png-6855f16afeb6a6344b71ae37d0b80d7c.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0035.png" -dest_files=["res://.godot/imported/IDLE-FRONT_page_0035.png-c4f41e3e19705eea9429fe56eb6e1a34.ctex"] +source_file="res://src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0035.png" +dest_files=["res://.godot/imported/IDLE-FRONT_page_0035.png-6855f16afeb6a6344b71ae37d0b80d7c.ctex"] [params] diff --git a/src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0036.png b/src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0036.png similarity index 100% rename from src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0036.png rename to src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0036.png diff --git a/src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0036.png.import b/src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0036.png.import similarity index 65% rename from src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0036.png.import rename to src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0036.png.import index 075a1c16..25703cbb 100644 --- a/src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0036.png.import +++ b/src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0036.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://cbr4c44urpquh" -path="res://.godot/imported/IDLE-FRONT_page_0036.png-bf857fba8d7649e7bdaa28a9934696c4.ctex" +path="res://.godot/imported/IDLE-FRONT_page_0036.png-94c51d0f612f6585e9782fc25d292219.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0036.png" -dest_files=["res://.godot/imported/IDLE-FRONT_page_0036.png-bf857fba8d7649e7bdaa28a9934696c4.ctex"] +source_file="res://src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0036.png" +dest_files=["res://.godot/imported/IDLE-FRONT_page_0036.png-94c51d0f612f6585e9782fc25d292219.ctex"] [params] diff --git a/src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0037.png b/src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0037.png similarity index 100% rename from src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0037.png rename to src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0037.png diff --git a/src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0037.png.import b/src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0037.png.import similarity index 65% rename from src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0037.png.import rename to src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0037.png.import index dfd6d40c..395d4a54 100644 --- a/src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0037.png.import +++ b/src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0037.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://b2i1up3o1thk8" -path="res://.godot/imported/IDLE-FRONT_page_0037.png-dbf5b33a0c95d201c40de68e02f30c36.ctex" +path="res://.godot/imported/IDLE-FRONT_page_0037.png-6aea49fc34e729af924f9fac080ac254.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0037.png" -dest_files=["res://.godot/imported/IDLE-FRONT_page_0037.png-dbf5b33a0c95d201c40de68e02f30c36.ctex"] +source_file="res://src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0037.png" +dest_files=["res://.godot/imported/IDLE-FRONT_page_0037.png-6aea49fc34e729af924f9fac080ac254.ctex"] [params] diff --git a/src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0038.png b/src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0038.png similarity index 100% rename from src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0038.png rename to src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0038.png diff --git a/src/enemy/enemy_types/7. chinte/animations/INACTIVE BACK.png.import b/src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0038.png.import similarity index 70% rename from src/enemy/enemy_types/7. chinte/animations/INACTIVE BACK.png.import rename to src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0038.png.import index b4e13bed..a3254d97 100644 --- a/src/enemy/enemy_types/7. chinte/animations/INACTIVE BACK.png.import +++ b/src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0038.png.import @@ -2,16 +2,16 @@ importer="texture" type="CompressedTexture2D" -uid="uid://cc3evj00rj3a4" -path="res://.godot/imported/INACTIVE BACK.png-460234046042a4e83bfacf6ac69d4df3.ctex" +uid="uid://cs3ffswn6r2vj" +path="res://.godot/imported/IDLE-FRONT_page_0038.png-87c1863556e601dad4d6dffff009c91d.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/7. chinte/animations/INACTIVE BACK.png" -dest_files=["res://.godot/imported/INACTIVE BACK.png-460234046042a4e83bfacf6ac69d4df3.ctex"] +source_file="res://src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0038.png" +dest_files=["res://.godot/imported/IDLE-FRONT_page_0038.png-87c1863556e601dad4d6dffff009c91d.ctex"] [params] diff --git a/src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0039.png b/src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0039.png similarity index 100% rename from src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0039.png rename to src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0039.png diff --git a/src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0039.png.import b/src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0039.png.import similarity index 65% rename from src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0039.png.import rename to src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0039.png.import index 02569d98..24107a0f 100644 --- a/src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0039.png.import +++ b/src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0039.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://d0jwb06jsit3k" -path="res://.godot/imported/IDLE-FRONT_page_0039.png-ccd6c24fe8b3208b470d39a3898ea895.ctex" +path="res://.godot/imported/IDLE-FRONT_page_0039.png-0dd2e925c126b7ba333155c9c87a49aa.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0039.png" -dest_files=["res://.godot/imported/IDLE-FRONT_page_0039.png-ccd6c24fe8b3208b470d39a3898ea895.ctex"] +source_file="res://src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0039.png" +dest_files=["res://.godot/imported/IDLE-FRONT_page_0039.png-0dd2e925c126b7ba333155c9c87a49aa.ctex"] [params] diff --git a/src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0040.png b/src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0040.png similarity index 100% rename from src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0040.png rename to src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0040.png diff --git a/src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0040.png.import b/src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0040.png.import similarity index 65% rename from src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0040.png.import rename to src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0040.png.import index 4c047d40..58eb1707 100644 --- a/src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0040.png.import +++ b/src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0040.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://bc340i18dejwu" -path="res://.godot/imported/IDLE-FRONT_page_0040.png-3a0f84dfc6f3b18f35d87aa292a0c7c8.ctex" +path="res://.godot/imported/IDLE-FRONT_page_0040.png-e949b66345bf58d98658ab984af74f62.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0040.png" -dest_files=["res://.godot/imported/IDLE-FRONT_page_0040.png-3a0f84dfc6f3b18f35d87aa292a0c7c8.ctex"] +source_file="res://src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0040.png" +dest_files=["res://.godot/imported/IDLE-FRONT_page_0040.png-e949b66345bf58d98658ab984af74f62.ctex"] [params] diff --git a/src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0041.png b/src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0041.png similarity index 100% rename from src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0041.png rename to src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0041.png diff --git a/src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0041.png.import b/src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0041.png.import similarity index 65% rename from src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0041.png.import rename to src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0041.png.import index 071e0732..9d56e65d 100644 --- a/src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0041.png.import +++ b/src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0041.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://b0yfrwc83u6yu" -path="res://.godot/imported/IDLE-FRONT_page_0041.png-35968402b045c0b88ba1093a2bc34b6c.ctex" +path="res://.godot/imported/IDLE-FRONT_page_0041.png-262bbd09c4d4f015c63ac04427619adf.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0041.png" -dest_files=["res://.godot/imported/IDLE-FRONT_page_0041.png-35968402b045c0b88ba1093a2bc34b6c.ctex"] +source_file="res://src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0041.png" +dest_files=["res://.godot/imported/IDLE-FRONT_page_0041.png-262bbd09c4d4f015c63ac04427619adf.ctex"] [params] diff --git a/src/enemy/enemy_types/7. chinte/animations/INACTIVE BACK.png b/src/enemy/enemy_types/7. chinthe/animations/INACTIVE BACK.png similarity index 100% rename from src/enemy/enemy_types/7. chinte/animations/INACTIVE BACK.png rename to src/enemy/enemy_types/7. chinthe/animations/INACTIVE BACK.png diff --git a/src/enemy/enemy_types/7. chinthe/animations/INACTIVE BACK.png.import b/src/enemy/enemy_types/7. chinthe/animations/INACTIVE BACK.png.import new file mode 100644 index 00000000..fa6107dd --- /dev/null +++ b/src/enemy/enemy_types/7. chinthe/animations/INACTIVE BACK.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cc3evj00rj3a4" +path="res://.godot/imported/INACTIVE BACK.png-44339c77368f30736dcfcb278a058bdf.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://src/enemy/enemy_types/7. chinthe/animations/INACTIVE BACK.png" +dest_files=["res://.godot/imported/INACTIVE BACK.png-44339c77368f30736dcfcb278a058bdf.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/src/enemy/enemy_types/7. chinte/animations/INACTIVE FRONT.png b/src/enemy/enemy_types/7. chinthe/animations/INACTIVE FRONT.png similarity index 100% rename from src/enemy/enemy_types/7. chinte/animations/INACTIVE FRONT.png rename to src/enemy/enemy_types/7. chinthe/animations/INACTIVE FRONT.png diff --git a/src/enemy/enemy_types/7. chinte/animations/INACTIVE FRONT.png.import b/src/enemy/enemy_types/7. chinthe/animations/INACTIVE FRONT.png.import similarity index 67% rename from src/enemy/enemy_types/7. chinte/animations/INACTIVE FRONT.png.import rename to src/enemy/enemy_types/7. chinthe/animations/INACTIVE FRONT.png.import index c6146038..3ea7a14e 100644 --- a/src/enemy/enemy_types/7. chinte/animations/INACTIVE FRONT.png.import +++ b/src/enemy/enemy_types/7. chinthe/animations/INACTIVE FRONT.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://bxv6qhhnwljcu" -path="res://.godot/imported/INACTIVE FRONT.png-630bfe011d347deec011eca2c7aa647c.ctex" +path="res://.godot/imported/INACTIVE FRONT.png-ecbc25c51810d87fc6b3ed58d206e56e.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/7. chinte/animations/INACTIVE FRONT.png" -dest_files=["res://.godot/imported/INACTIVE FRONT.png-630bfe011d347deec011eca2c7aa647c.ctex"] +source_file="res://src/enemy/enemy_types/7. chinthe/animations/INACTIVE FRONT.png" +dest_files=["res://.godot/imported/INACTIVE FRONT.png-ecbc25c51810d87fc6b3ed58d206e56e.ctex"] [params] diff --git a/src/enemy/enemy_types/7. chinte/animations/INACTIVE SIDE.png b/src/enemy/enemy_types/7. chinthe/animations/INACTIVE SIDE.png similarity index 100% rename from src/enemy/enemy_types/7. chinte/animations/INACTIVE SIDE.png rename to src/enemy/enemy_types/7. chinthe/animations/INACTIVE SIDE.png diff --git a/src/enemy/enemy_types/7. chinte/animations/INACTIVE SIDE.png.import b/src/enemy/enemy_types/7. chinthe/animations/INACTIVE SIDE.png.import similarity index 68% rename from src/enemy/enemy_types/7. chinte/animations/INACTIVE SIDE.png.import rename to src/enemy/enemy_types/7. chinthe/animations/INACTIVE SIDE.png.import index 4ce334a9..6bff1762 100644 --- a/src/enemy/enemy_types/7. chinte/animations/INACTIVE SIDE.png.import +++ b/src/enemy/enemy_types/7. chinthe/animations/INACTIVE SIDE.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://6og6nw440rba" -path="res://.godot/imported/INACTIVE SIDE.png-90a729c6006ce0e23b06edc0742a2c7b.ctex" +path="res://.godot/imported/INACTIVE SIDE.png-d5afade3a2136b1a01ac9fd288e3b205.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/7. chinte/animations/INACTIVE SIDE.png" -dest_files=["res://.godot/imported/INACTIVE SIDE.png-90a729c6006ce0e23b06edc0742a2c7b.ctex"] +source_file="res://src/enemy/enemy_types/7. chinthe/animations/INACTIVE SIDE.png" +dest_files=["res://.godot/imported/INACTIVE SIDE.png-d5afade3a2136b1a01ac9fd288e3b205.ctex"] [params] diff --git a/src/enemy/enemy_types/7. chinte/animations/TELEPORT/TELEPORT_page_0001.png b/src/enemy/enemy_types/7. chinthe/animations/TELEPORT/TELEPORT_page_0001.png similarity index 100% rename from src/enemy/enemy_types/7. chinte/animations/TELEPORT/TELEPORT_page_0001.png rename to src/enemy/enemy_types/7. chinthe/animations/TELEPORT/TELEPORT_page_0001.png diff --git a/src/enemy/enemy_types/7. chinte/animations/TELEPORT/TELEPORT_page_0001.png.import b/src/enemy/enemy_types/7. chinthe/animations/TELEPORT/TELEPORT_page_0001.png.import similarity index 66% rename from src/enemy/enemy_types/7. chinte/animations/TELEPORT/TELEPORT_page_0001.png.import rename to src/enemy/enemy_types/7. chinthe/animations/TELEPORT/TELEPORT_page_0001.png.import index 10e2a360..ab784d22 100644 --- a/src/enemy/enemy_types/7. chinte/animations/TELEPORT/TELEPORT_page_0001.png.import +++ b/src/enemy/enemy_types/7. chinthe/animations/TELEPORT/TELEPORT_page_0001.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://c321u4x7ii5i2" -path="res://.godot/imported/TELEPORT_page_0001.png-560f114b16d5eb8d28dba09264c64df6.ctex" +path="res://.godot/imported/TELEPORT_page_0001.png-d6e729effefbfad2dd0c9cb26629f3f0.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/7. chinte/animations/TELEPORT/TELEPORT_page_0001.png" -dest_files=["res://.godot/imported/TELEPORT_page_0001.png-560f114b16d5eb8d28dba09264c64df6.ctex"] +source_file="res://src/enemy/enemy_types/7. chinthe/animations/TELEPORT/TELEPORT_page_0001.png" +dest_files=["res://.godot/imported/TELEPORT_page_0001.png-d6e729effefbfad2dd0c9cb26629f3f0.ctex"] [params] diff --git a/src/enemy/enemy_types/7. chinte/animations/TELEPORT/TELEPORT_page_0002.png b/src/enemy/enemy_types/7. chinthe/animations/TELEPORT/TELEPORT_page_0002.png similarity index 100% rename from src/enemy/enemy_types/7. chinte/animations/TELEPORT/TELEPORT_page_0002.png rename to src/enemy/enemy_types/7. chinthe/animations/TELEPORT/TELEPORT_page_0002.png diff --git a/src/enemy/enemy_types/7. chinte/animations/TELEPORT/TELEPORT_page_0002.png.import b/src/enemy/enemy_types/7. chinthe/animations/TELEPORT/TELEPORT_page_0002.png.import similarity index 66% rename from src/enemy/enemy_types/7. chinte/animations/TELEPORT/TELEPORT_page_0002.png.import rename to src/enemy/enemy_types/7. chinthe/animations/TELEPORT/TELEPORT_page_0002.png.import index fb68d2ba..a92150e3 100644 --- a/src/enemy/enemy_types/7. chinte/animations/TELEPORT/TELEPORT_page_0002.png.import +++ b/src/enemy/enemy_types/7. chinthe/animations/TELEPORT/TELEPORT_page_0002.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://bjn32jqcqlm70" -path="res://.godot/imported/TELEPORT_page_0002.png-3e932e8028a8304d20f202cc65b46ff4.ctex" +path="res://.godot/imported/TELEPORT_page_0002.png-467f925a0928ad8ad271e3e4eaa1279d.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/7. chinte/animations/TELEPORT/TELEPORT_page_0002.png" -dest_files=["res://.godot/imported/TELEPORT_page_0002.png-3e932e8028a8304d20f202cc65b46ff4.ctex"] +source_file="res://src/enemy/enemy_types/7. chinthe/animations/TELEPORT/TELEPORT_page_0002.png" +dest_files=["res://.godot/imported/TELEPORT_page_0002.png-467f925a0928ad8ad271e3e4eaa1279d.ctex"] [params] diff --git a/src/enemy/enemy_types/7. chinte/animations/TELEPORT/TELEPORT_page_0003.png b/src/enemy/enemy_types/7. chinthe/animations/TELEPORT/TELEPORT_page_0003.png similarity index 100% rename from src/enemy/enemy_types/7. chinte/animations/TELEPORT/TELEPORT_page_0003.png rename to src/enemy/enemy_types/7. chinthe/animations/TELEPORT/TELEPORT_page_0003.png diff --git a/src/enemy/enemy_types/7. chinte/animations/TELEPORT/TELEPORT_page_0003.png.import b/src/enemy/enemy_types/7. chinthe/animations/TELEPORT/TELEPORT_page_0003.png.import similarity index 66% rename from src/enemy/enemy_types/7. chinte/animations/TELEPORT/TELEPORT_page_0003.png.import rename to src/enemy/enemy_types/7. chinthe/animations/TELEPORT/TELEPORT_page_0003.png.import index d921c3b4..33a23785 100644 --- a/src/enemy/enemy_types/7. chinte/animations/TELEPORT/TELEPORT_page_0003.png.import +++ b/src/enemy/enemy_types/7. chinthe/animations/TELEPORT/TELEPORT_page_0003.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://0arlp5ks8xb2" -path="res://.godot/imported/TELEPORT_page_0003.png-23d996d7403ebfd93390b0dedc5a1455.ctex" +path="res://.godot/imported/TELEPORT_page_0003.png-bbbec8fc4c723e94491dabfda53504c4.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/7. chinte/animations/TELEPORT/TELEPORT_page_0003.png" -dest_files=["res://.godot/imported/TELEPORT_page_0003.png-23d996d7403ebfd93390b0dedc5a1455.ctex"] +source_file="res://src/enemy/enemy_types/7. chinthe/animations/TELEPORT/TELEPORT_page_0003.png" +dest_files=["res://.godot/imported/TELEPORT_page_0003.png-bbbec8fc4c723e94491dabfda53504c4.ctex"] [params] diff --git a/src/enemy/enemy_types/7. chinte/animations/TELEPORT/TELEPORT_page_0004.png b/src/enemy/enemy_types/7. chinthe/animations/TELEPORT/TELEPORT_page_0004.png similarity index 100% rename from src/enemy/enemy_types/7. chinte/animations/TELEPORT/TELEPORT_page_0004.png rename to src/enemy/enemy_types/7. chinthe/animations/TELEPORT/TELEPORT_page_0004.png diff --git a/src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0031.png.import b/src/enemy/enemy_types/7. chinthe/animations/TELEPORT/TELEPORT_page_0004.png.import similarity index 66% rename from src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0031.png.import rename to src/enemy/enemy_types/7. chinthe/animations/TELEPORT/TELEPORT_page_0004.png.import index 2e26d5f8..9b9a270b 100644 --- a/src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0031.png.import +++ b/src/enemy/enemy_types/7. chinthe/animations/TELEPORT/TELEPORT_page_0004.png.import @@ -2,16 +2,16 @@ importer="texture" type="CompressedTexture2D" -uid="uid://capfbno5347av" -path="res://.godot/imported/IDLE-FRONT_page_0031.png-33433c9a19dd4b10bb574cd364d54fdc.ctex" +uid="uid://35ujy0kklmeh" +path="res://.godot/imported/TELEPORT_page_0004.png-ebf6fc78de612a5314bcbdf8bb941843.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0031.png" -dest_files=["res://.godot/imported/IDLE-FRONT_page_0031.png-33433c9a19dd4b10bb574cd364d54fdc.ctex"] +source_file="res://src/enemy/enemy_types/7. chinthe/animations/TELEPORT/TELEPORT_page_0004.png" +dest_files=["res://.godot/imported/TELEPORT_page_0004.png-ebf6fc78de612a5314bcbdf8bb941843.ctex"] [params] diff --git a/src/enemy/enemy_types/7. chinte/animations/TELEPORT/TELEPORT_page_0005.png b/src/enemy/enemy_types/7. chinthe/animations/TELEPORT/TELEPORT_page_0005.png similarity index 100% rename from src/enemy/enemy_types/7. chinte/animations/TELEPORT/TELEPORT_page_0005.png rename to src/enemy/enemy_types/7. chinthe/animations/TELEPORT/TELEPORT_page_0005.png diff --git a/src/enemy/enemy_types/7. chinte/animations/TELEPORT/TELEPORT_page_0005.png.import b/src/enemy/enemy_types/7. chinthe/animations/TELEPORT/TELEPORT_page_0005.png.import similarity index 66% rename from src/enemy/enemy_types/7. chinte/animations/TELEPORT/TELEPORT_page_0005.png.import rename to src/enemy/enemy_types/7. chinthe/animations/TELEPORT/TELEPORT_page_0005.png.import index 00b26dde..527539f9 100644 --- a/src/enemy/enemy_types/7. chinte/animations/TELEPORT/TELEPORT_page_0005.png.import +++ b/src/enemy/enemy_types/7. chinthe/animations/TELEPORT/TELEPORT_page_0005.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://dye6h7vfurqam" -path="res://.godot/imported/TELEPORT_page_0005.png-da5035394a61e9822144705f46019027.ctex" +path="res://.godot/imported/TELEPORT_page_0005.png-1c9584d4709092ea4f2c754514e53c3b.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/7. chinte/animations/TELEPORT/TELEPORT_page_0005.png" -dest_files=["res://.godot/imported/TELEPORT_page_0005.png-da5035394a61e9822144705f46019027.ctex"] +source_file="res://src/enemy/enemy_types/7. chinthe/animations/TELEPORT/TELEPORT_page_0005.png" +dest_files=["res://.godot/imported/TELEPORT_page_0005.png-1c9584d4709092ea4f2c754514e53c3b.ctex"] [params] diff --git a/src/enemy/enemy_types/7. chinte/animations/TELEPORT/TELEPORT_page_0006.png b/src/enemy/enemy_types/7. chinthe/animations/TELEPORT/TELEPORT_page_0006.png similarity index 100% rename from src/enemy/enemy_types/7. chinte/animations/TELEPORT/TELEPORT_page_0006.png rename to src/enemy/enemy_types/7. chinthe/animations/TELEPORT/TELEPORT_page_0006.png diff --git a/src/enemy/enemy_types/7. chinte/animations/TELEPORT/TELEPORT_page_0006.png.import b/src/enemy/enemy_types/7. chinthe/animations/TELEPORT/TELEPORT_page_0006.png.import similarity index 66% rename from src/enemy/enemy_types/7. chinte/animations/TELEPORT/TELEPORT_page_0006.png.import rename to src/enemy/enemy_types/7. chinthe/animations/TELEPORT/TELEPORT_page_0006.png.import index b6ce1be2..65381642 100644 --- a/src/enemy/enemy_types/7. chinte/animations/TELEPORT/TELEPORT_page_0006.png.import +++ b/src/enemy/enemy_types/7. chinthe/animations/TELEPORT/TELEPORT_page_0006.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://cndpxx2puyhlu" -path="res://.godot/imported/TELEPORT_page_0006.png-379df12aed4adbd7d8f6385ba89cc7a5.ctex" +path="res://.godot/imported/TELEPORT_page_0006.png-05cf4f4fa3e08753641883e719a18bab.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/7. chinte/animations/TELEPORT/TELEPORT_page_0006.png" -dest_files=["res://.godot/imported/TELEPORT_page_0006.png-379df12aed4adbd7d8f6385ba89cc7a5.ctex"] +source_file="res://src/enemy/enemy_types/7. chinthe/animations/TELEPORT/TELEPORT_page_0006.png" +dest_files=["res://.godot/imported/TELEPORT_page_0006.png-05cf4f4fa3e08753641883e719a18bab.ctex"] [params] diff --git a/src/enemy/enemy_types/7. chinte/animations/TELEPORT/TELEPORT_page_0007.png b/src/enemy/enemy_types/7. chinthe/animations/TELEPORT/TELEPORT_page_0007.png similarity index 100% rename from src/enemy/enemy_types/7. chinte/animations/TELEPORT/TELEPORT_page_0007.png rename to src/enemy/enemy_types/7. chinthe/animations/TELEPORT/TELEPORT_page_0007.png diff --git a/src/enemy/enemy_types/7. chinte/animations/TELEPORT/TELEPORT_page_0007.png.import b/src/enemy/enemy_types/7. chinthe/animations/TELEPORT/TELEPORT_page_0007.png.import similarity index 66% rename from src/enemy/enemy_types/7. chinte/animations/TELEPORT/TELEPORT_page_0007.png.import rename to src/enemy/enemy_types/7. chinthe/animations/TELEPORT/TELEPORT_page_0007.png.import index 82405309..602290b9 100644 --- a/src/enemy/enemy_types/7. chinte/animations/TELEPORT/TELEPORT_page_0007.png.import +++ b/src/enemy/enemy_types/7. chinthe/animations/TELEPORT/TELEPORT_page_0007.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://7i6ax70hh880" -path="res://.godot/imported/TELEPORT_page_0007.png-7db29f7a231c40946a88aa7e88472ac4.ctex" +path="res://.godot/imported/TELEPORT_page_0007.png-b10c1eb293cdab268a554dde5c08f20b.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/7. chinte/animations/TELEPORT/TELEPORT_page_0007.png" -dest_files=["res://.godot/imported/TELEPORT_page_0007.png-7db29f7a231c40946a88aa7e88472ac4.ctex"] +source_file="res://src/enemy/enemy_types/7. chinthe/animations/TELEPORT/TELEPORT_page_0007.png" +dest_files=["res://.godot/imported/TELEPORT_page_0007.png-b10c1eb293cdab268a554dde5c08f20b.ctex"] [params] diff --git a/src/enemy/enemy_types/7. chinte/animations/TELEPORT/TELEPORT_page_0008.png b/src/enemy/enemy_types/7. chinthe/animations/TELEPORT/TELEPORT_page_0008.png similarity index 100% rename from src/enemy/enemy_types/7. chinte/animations/TELEPORT/TELEPORT_page_0008.png rename to src/enemy/enemy_types/7. chinthe/animations/TELEPORT/TELEPORT_page_0008.png diff --git a/src/enemy/enemy_types/7. chinte/animations/TELEPORT/TELEPORT_page_0008.png.import b/src/enemy/enemy_types/7. chinthe/animations/TELEPORT/TELEPORT_page_0008.png.import similarity index 66% rename from src/enemy/enemy_types/7. chinte/animations/TELEPORT/TELEPORT_page_0008.png.import rename to src/enemy/enemy_types/7. chinthe/animations/TELEPORT/TELEPORT_page_0008.png.import index ea28417e..efc4ff59 100644 --- a/src/enemy/enemy_types/7. chinte/animations/TELEPORT/TELEPORT_page_0008.png.import +++ b/src/enemy/enemy_types/7. chinthe/animations/TELEPORT/TELEPORT_page_0008.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://7q8kbguc0odk" -path="res://.godot/imported/TELEPORT_page_0008.png-75d59ef944e96a13b1af887c66c1e223.ctex" +path="res://.godot/imported/TELEPORT_page_0008.png-c9d74a48508b82f4e653f7af53aac6d3.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/7. chinte/animations/TELEPORT/TELEPORT_page_0008.png" -dest_files=["res://.godot/imported/TELEPORT_page_0008.png-75d59ef944e96a13b1af887c66c1e223.ctex"] +source_file="res://src/enemy/enemy_types/7. chinthe/animations/TELEPORT/TELEPORT_page_0008.png" +dest_files=["res://.godot/imported/TELEPORT_page_0008.png-c9d74a48508b82f4e653f7af53aac6d3.ctex"] [params] diff --git a/src/enemy/enemy_types/7. chinte/animations/TELEPORT/TELEPORT_page_0009.png b/src/enemy/enemy_types/7. chinthe/animations/TELEPORT/TELEPORT_page_0009.png similarity index 100% rename from src/enemy/enemy_types/7. chinte/animations/TELEPORT/TELEPORT_page_0009.png rename to src/enemy/enemy_types/7. chinthe/animations/TELEPORT/TELEPORT_page_0009.png diff --git a/src/enemy/enemy_types/7. chinte/animations/TELEPORT/TELEPORT_page_0009.png.import b/src/enemy/enemy_types/7. chinthe/animations/TELEPORT/TELEPORT_page_0009.png.import similarity index 66% rename from src/enemy/enemy_types/7. chinte/animations/TELEPORT/TELEPORT_page_0009.png.import rename to src/enemy/enemy_types/7. chinthe/animations/TELEPORT/TELEPORT_page_0009.png.import index e71d66f8..8b91427b 100644 --- a/src/enemy/enemy_types/7. chinte/animations/TELEPORT/TELEPORT_page_0009.png.import +++ b/src/enemy/enemy_types/7. chinthe/animations/TELEPORT/TELEPORT_page_0009.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://75mrdvb1vy77" -path="res://.godot/imported/TELEPORT_page_0009.png-4967b7035a77a348133832cf569534ac.ctex" +path="res://.godot/imported/TELEPORT_page_0009.png-5b1cc46a62abb1a51ed6c6e99413dedf.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/7. chinte/animations/TELEPORT/TELEPORT_page_0009.png" -dest_files=["res://.godot/imported/TELEPORT_page_0009.png-4967b7035a77a348133832cf569534ac.ctex"] +source_file="res://src/enemy/enemy_types/7. chinthe/animations/TELEPORT/TELEPORT_page_0009.png" +dest_files=["res://.godot/imported/TELEPORT_page_0009.png-5b1cc46a62abb1a51ed6c6e99413dedf.ctex"] [params] diff --git a/src/enemy/enemy_types/7. chinte/animations/TELEPORT/TELEPORT_page_0010.png b/src/enemy/enemy_types/7. chinthe/animations/TELEPORT/TELEPORT_page_0010.png similarity index 100% rename from src/enemy/enemy_types/7. chinte/animations/TELEPORT/TELEPORT_page_0010.png rename to src/enemy/enemy_types/7. chinthe/animations/TELEPORT/TELEPORT_page_0010.png diff --git a/src/enemy/enemy_types/7. chinte/animations/TELEPORT/TELEPORT_page_0010.png.import b/src/enemy/enemy_types/7. chinthe/animations/TELEPORT/TELEPORT_page_0010.png.import similarity index 66% rename from src/enemy/enemy_types/7. chinte/animations/TELEPORT/TELEPORT_page_0010.png.import rename to src/enemy/enemy_types/7. chinthe/animations/TELEPORT/TELEPORT_page_0010.png.import index a65e0702..3bf16e26 100644 --- a/src/enemy/enemy_types/7. chinte/animations/TELEPORT/TELEPORT_page_0010.png.import +++ b/src/enemy/enemy_types/7. chinthe/animations/TELEPORT/TELEPORT_page_0010.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://xp31l3govdc6" -path="res://.godot/imported/TELEPORT_page_0010.png-11f0bd3953605de1e9edb2380524888e.ctex" +path="res://.godot/imported/TELEPORT_page_0010.png-e5fcd4f325578fd66f0bbe2d90bb9ecc.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/7. chinte/animations/TELEPORT/TELEPORT_page_0010.png" -dest_files=["res://.godot/imported/TELEPORT_page_0010.png-11f0bd3953605de1e9edb2380524888e.ctex"] +source_file="res://src/enemy/enemy_types/7. chinthe/animations/TELEPORT/TELEPORT_page_0010.png" +dest_files=["res://.godot/imported/TELEPORT_page_0010.png-e5fcd4f325578fd66f0bbe2d90bb9ecc.ctex"] [params] diff --git a/src/enemy/enemy_types/7. chinte/animations/TELEPORT/TELEPORT_page_0011.png b/src/enemy/enemy_types/7. chinthe/animations/TELEPORT/TELEPORT_page_0011.png similarity index 100% rename from src/enemy/enemy_types/7. chinte/animations/TELEPORT/TELEPORT_page_0011.png rename to src/enemy/enemy_types/7. chinthe/animations/TELEPORT/TELEPORT_page_0011.png diff --git a/src/enemy/enemy_types/7. chinte/animations/TELEPORT/TELEPORT_page_0011.png.import b/src/enemy/enemy_types/7. chinthe/animations/TELEPORT/TELEPORT_page_0011.png.import similarity index 66% rename from src/enemy/enemy_types/7. chinte/animations/TELEPORT/TELEPORT_page_0011.png.import rename to src/enemy/enemy_types/7. chinthe/animations/TELEPORT/TELEPORT_page_0011.png.import index 9e3bbcd1..60674812 100644 --- a/src/enemy/enemy_types/7. chinte/animations/TELEPORT/TELEPORT_page_0011.png.import +++ b/src/enemy/enemy_types/7. chinthe/animations/TELEPORT/TELEPORT_page_0011.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://cdv6qy3hdbqnb" -path="res://.godot/imported/TELEPORT_page_0011.png-f3bf7e3af1f82c4ecb52d9b6a3261930.ctex" +path="res://.godot/imported/TELEPORT_page_0011.png-ac9b1137aedb979f40a6ea6c8ea63a30.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://src/enemy/enemy_types/7. chinte/animations/TELEPORT/TELEPORT_page_0011.png" -dest_files=["res://.godot/imported/TELEPORT_page_0011.png-f3bf7e3af1f82c4ecb52d9b6a3261930.ctex"] +source_file="res://src/enemy/enemy_types/7. chinthe/animations/TELEPORT/TELEPORT_page_0011.png" +dest_files=["res://.godot/imported/TELEPORT_page_0011.png-ac9b1137aedb979f40a6ea6c8ea63a30.ctex"] [params] diff --git a/src/game/Game.cs b/src/game/Game.cs index 8c683046..7ad25d36 100644 --- a/src/game/Game.cs +++ b/src/game/Game.cs @@ -111,7 +111,6 @@ public partial class Game : Node3D, IGame PauseMenu.TransitionCompleted += OnPauseMenuTransitioned; PauseMenu.UnpauseButtonPressed += PauseMenu_UnpauseButtonPressed; - GameEventDepot.TeleportEntered += Map_TeleportReached; Map.DungeonFinishedGenerating += Map_DungeonFinishedGenerating; InGameUI.InventoryMenu.ClosedMenu += InventoryMenu_CloseInventory; InGameUI.MinimapButtonReleased += Player_MinimapButtonReleased; @@ -141,6 +140,12 @@ public partial class Game : Node3D, IGame GameLogic.Input(new GameLogic.Input.MiniMapButtonPressed()); } + public void FloorExitReached() + { + GameLogic.Input(new GameLogic.Input.AskForTeleport()); + GameEventDepot.OnTeleportEntered(); + } + private void Inventory_PickedUpItem(string pickedUpItemName) { InGameUI.PlayerInfoUI.DisplayMessage($"{pickedUpItemName} picked up."); @@ -277,11 +282,6 @@ public partial class Game : Node3D, IGame GameLogic.Input(new GameLogic.Input.HideFloorClearMenu()); } - private void Map_TeleportReached() - { - GameLogic.Input(new GameLogic.Input.AskForTeleport()); - } - private void OnPauseMenuTransitioned() { GameLogic.Input(new GameLogic.Input.PauseMenuTransitioned()); diff --git a/src/game/Game.tscn b/src/game/Game.tscn index 149013cd..75389c47 100644 --- a/src/game/Game.tscn +++ b/src/game/Game.tscn @@ -48,7 +48,7 @@ process_mode = 1 [node name="Player" parent="SubViewportContainer/SubViewport/PauseContainer" instance=ExtResource("3_kk6ly")] unique_name_in_owner = true process_mode = 1 -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.283374, 1.22144) +transform = Transform3D(0.0141716, 0, 0.9999, 0, 1, 0, -0.9999, 0, 0.0141716, 0, -1.02535, -6.18796) [node name="Map" parent="SubViewportContainer/SubViewport/PauseContainer" instance=ExtResource("3_d8awv")] unique_name_in_owner = true diff --git a/src/game/IGame.cs b/src/game/IGame.cs index 6dfe6430..62ee2c72 100644 --- a/src/game/IGame.cs +++ b/src/game/IGame.cs @@ -24,4 +24,6 @@ public interface IGame : IProvide, IProvide, IProvid public void AnnounceMessageOnInventoryScreen(string message); public void AnnounceMessageOnMainScreen(string message); + + public void FloorExitReached(); } diff --git a/src/items/throwable/PalletteSwap.gdshader b/src/items/throwable/PalletteSwap.gdshader index 8b39e031..2060a992 100644 --- a/src/items/throwable/PalletteSwap.gdshader +++ b/src/items/throwable/PalletteSwap.gdshader @@ -65,7 +65,7 @@ void vertex() { void fragment() { vec4 tex = texture(sprite_texture, UV); vec3 hsv = rgb2hsv(tex.rgb); - + // the .r here represents HUE, .g is SATURATION, .b is LUMINANCE if (hsv.r >= _min && hsv.r <= _max) { tex = to_gray(tex); diff --git a/src/map/Map.cs b/src/map/Map.cs index ab2200aa..ab1f2e43 100644 --- a/src/map/Map.cs +++ b/src/map/Map.cs @@ -24,8 +24,6 @@ public partial class Map : Node3D, IMap { public override void _Notification(int what) => this.Notify(what); - [Node] public Area3D Teleport { get; set; } = default!; - [Signal] public delegate void DungeonFinishedGeneratingEventHandler(); @@ -34,15 +32,14 @@ public partial class Map : Node3D, IMap public List Floors { get; set; } = default!; + [Node] public Floor0 Floor0 { get; set; } = default!; + private IDungeonFloor _currentFloor; public void Setup() { Floors = GetChildren().OfType().ToList(); _currentFloor = Floors.ElementAt(0); - Teleport.BodyEntered += OnTeleportEntered; - var teleportPoint = _currentFloor.GetTeleportSpawnPoint(); - Teleport.GlobalPosition = teleportPoint; } public void SpawnNextFloor() @@ -52,12 +49,8 @@ public partial class Map : Node3D, IMap oldFloor.CallDeferred(MethodName.QueueFree, []); _currentFloor = Floors.ElementAt(0); _currentFloor.InitializeDungeon(); - var teleportPoint = _currentFloor.GetTeleportSpawnPoint(); - Teleport.GlobalPosition = new Vector3(teleportPoint.X, -1, teleportPoint.Z); EmitSignal(SignalName.DungeonFinishedGenerating); } public Transform3D GetPlayerSpawnPosition() => _currentFloor.GetPlayerSpawnPoint(); - - private void OnTeleportEntered(Node3D body) => GameEventDepot.OnTeleportEntered(); } diff --git a/src/map/Map.tscn b/src/map/Map.tscn index 8e7d0a90..e3426f0f 100644 --- a/src/map/Map.tscn +++ b/src/map/Map.tscn @@ -1,13 +1,26 @@ -[gd_scene load_steps=9 format=3 uid="uid://by67pn7fdsg1m"] +[gd_scene load_steps=22 format=3 uid="uid://by67pn7fdsg1m"] [ext_resource type="Script" uid="uid://14e8mu48ed4" path="res://src/map/Map.cs" id="1_bw70o"] [ext_resource type="PackedScene" uid="uid://dl6h1djc27ddl" path="res://src/map/dungeon/floors/Floor00.tscn" id="2_0m8h8"] [ext_resource type="PackedScene" uid="uid://bc1sp6xwe0j65" path="res://src/map/dungeon/floors/Floor01.tscn" id="2_merfv"] -[ext_resource type="Script" uid="uid://c1nhqlem1ew3m" path="res://src/map/dungeon/code/Floor0.cs" id="3_n0f1p"] -[ext_resource type="PackedScene" uid="uid://g28xmp6cn16h" path="res://src/map/dungeon/floors/Floor10.tscn" id="3_niasb"] [ext_resource type="PackedScene" uid="uid://dmiqwmivkjgmq" path="res://src/map/dungeon/floors/Floor02.tscn" id="4_8y0oy"] [ext_resource type="PackedScene" uid="uid://bjqgl5u05ia04" path="res://src/map/dungeon/Teleport.tscn" id="5_jiohg"] [ext_resource type="PackedScene" uid="uid://dl1scvkp8r5sw" path="res://src/map/dungeon/floors/Floor03.tscn" id="5_uag72"] +[ext_resource type="PackedScene" uid="uid://cikq7vuorlpbl" path="res://src/map/dungeon/floors/Floor04.tscn" id="6_httk4"] +[ext_resource type="PackedScene" uid="uid://t7cac7801bnk" path="res://src/map/dungeon/floors/Floor05.tscn" id="7_ro62w"] +[ext_resource type="PackedScene" uid="uid://da107mywg18x1" path="res://src/map/dungeon/floors/Floor06.tscn" id="8_q7oan"] +[ext_resource type="PackedScene" uid="uid://cgtqjgh1f5fqi" path="res://src/map/dungeon/floors/Floor07.tscn" id="9_3vg2e"] +[ext_resource type="PackedScene" uid="uid://dg20ovvj2m2lp" path="res://src/map/dungeon/floors/Floor08.tscn" id="10_tx34j"] +[ext_resource type="PackedScene" uid="uid://b5jk743ng6fqg" path="res://src/map/dungeon/floors/Floor09.tscn" id="11_8npfy"] +[ext_resource type="PackedScene" uid="uid://dl2x3l7a3an65" path="res://src/map/dungeon/floors/Floor11.tscn" id="12_pids3"] +[ext_resource type="PackedScene" uid="uid://drvjw06wbi2qh" path="res://src/map/dungeon/floors/Floor12.tscn" id="13_u3fsa"] +[ext_resource type="PackedScene" uid="uid://fellg2owwe64" path="res://src/map/dungeon/floors/Floor13.tscn" id="14_io2ww"] +[ext_resource type="PackedScene" uid="uid://vhqwff12y7wn" path="res://src/map/dungeon/floors/Floor14.tscn" id="15_rb6u5"] +[ext_resource type="PackedScene" uid="uid://h8tc1uohuqx2" path="res://src/map/dungeon/floors/Floor15.tscn" id="16_31a0u"] +[ext_resource type="PackedScene" uid="uid://cyfp0p38w2yfr" path="res://src/map/dungeon/floors/Floor16.tscn" id="17_sbsee"] +[ext_resource type="PackedScene" uid="uid://dnrbqkv438tjx" path="res://src/map/dungeon/floors/Floor17.tscn" id="18_qamtw"] +[ext_resource type="PackedScene" uid="uid://cgoogenmugoti" path="res://src/map/dungeon/floors/Floor18.tscn" id="19_j54h1"] +[ext_resource type="PackedScene" uid="uid://33lvido1dkbu" path="res://src/map/dungeon/floors/Floor19.tscn" id="20_41t83"] [node name="Map" type="Node3D"] script = ExtResource("1_bw70o") @@ -15,8 +28,8 @@ script = ExtResource("1_bw70o") [node name="WorldEnvironment" type="WorldEnvironment" parent="."] [node name="Floor0" parent="." instance=ExtResource("2_0m8h8")] +unique_name_in_owner = true transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 1.77792, 1.78656, -5.13176) -script = ExtResource("3_n0f1p") [node name="Floor1" parent="." instance=ExtResource("2_merfv")] unique_name_in_owner = true @@ -25,7 +38,35 @@ unique_name_in_owner = true [node name="Floor3" parent="." instance=ExtResource("5_uag72")] -[node name="Floor10" parent="." instance=ExtResource("3_niasb")] +[node name="Floor04" parent="." instance=ExtResource("6_httk4")] + +[node name="Floor05" parent="." instance=ExtResource("7_ro62w")] + +[node name="Floor06" parent="." instance=ExtResource("8_q7oan")] + +[node name="Floor07" parent="." instance=ExtResource("9_3vg2e")] + +[node name="Floor08" parent="." instance=ExtResource("10_tx34j")] + +[node name="Floor09" parent="." instance=ExtResource("11_8npfy")] + +[node name="Floor11" parent="." instance=ExtResource("12_pids3")] + +[node name="Floor12" parent="." instance=ExtResource("13_u3fsa")] + +[node name="Floor13" parent="." instance=ExtResource("14_io2ww")] + +[node name="Floor14" parent="." instance=ExtResource("15_rb6u5")] + +[node name="Floor15" parent="." instance=ExtResource("16_31a0u")] + +[node name="Floor16" parent="." instance=ExtResource("17_sbsee")] + +[node name="Floor17" parent="." instance=ExtResource("18_qamtw")] + +[node name="Floor18" parent="." instance=ExtResource("19_j54h1")] + +[node name="Floor19" parent="." instance=ExtResource("20_41t83")] [node name="Teleport" parent="." instance=ExtResource("5_jiohg")] unique_name_in_owner = true diff --git a/src/map/dungeon/code/BossFloor.cs b/src/map/dungeon/code/BossFloor.cs index f28e166f..eba796c9 100644 --- a/src/map/dungeon/code/BossFloor.cs +++ b/src/map/dungeon/code/BossFloor.cs @@ -9,12 +9,12 @@ public partial class BossFloor : Node3D, IDungeonFloor { public override void _Notification(int what) => this.Notify(what); - private BossRoom BossRoom; + private BossRoomA BossRoom; public void InitializeDungeon() { var bossRoomScene = GD.Load($"res://src/map/dungeon/scenes/BossRoom.tscn"); - BossRoom = bossRoomScene.Instantiate(); + BossRoom = bossRoomScene.Instantiate(); AddChild(BossRoom); } diff --git a/src/map/dungeon/code/BossRoom.cs b/src/map/dungeon/code/BossRoomA.cs similarity index 54% rename from src/map/dungeon/code/BossRoom.cs rename to src/map/dungeon/code/BossRoomA.cs index e33de7ba..ed6dd412 100644 --- a/src/map/dungeon/code/BossRoom.cs +++ b/src/map/dungeon/code/BossRoomA.cs @@ -1,12 +1,11 @@ using Chickensoft.AutoInject; using Chickensoft.Introspection; using Godot; -using System.Linq; namespace GameJamDungeon; [Meta(typeof(IAutoNode))] -public partial class BossRoom : Node3D, IDungeonRoom +public partial class BossRoomA : Node3D, IBossRoom { public override void _Notification(int what) => this.Notify(what); @@ -14,10 +13,6 @@ public partial class BossRoom : Node3D, IDungeonRoom [Node] public Marker3D TeleportSpawn { get; set; } = default!; - [Node] public Marker3D ItemSpawnPoint { get; set; } = default!; - - [Node] public ItemDatabase ItemDatabase { get; set; } = default!; - [Node] public Node3D HorseHeadStatue { get; set; } = default!; [Node] public Node3D OxFaceStatue { get; set; } = default!; @@ -32,40 +27,29 @@ public partial class BossRoom : Node3D, IDungeonRoom public void Setup() { - SpawnItems(); - ActivateTrap.BodyEntered += StartBossFight; + ActivateTrap.BodyEntered += ActivateTrap_BodyEntered; OxFace.IsDefeated.Sync += BossStatusUpdate; HorseFace.IsDefeated.Sync += BossStatusUpdate; } - public void SpawnEnemies(EnemyDatabase enemyDatabase) - { + private void ActivateTrap_BodyEntered(Node3D body) => StartBossFight(); - } - - private void BossStatusUpdate(bool obj) - { - if (OxFace.IsDefeated.Value && HorseFace.IsDefeated.Value) - GateCollision.CallDeferred(MethodName.QueueFree); - } - - private void SpawnItems() - { - var database = ItemDatabase.Initialize().OfType().ToArray(); - var rng = new RandomNumberGenerator(); - rng.Randomize(); - var weights = database.Select(x => x.SpawnRate).ToArray(); - var selectedItem = database[rng.RandWeighted(weights)]; - var duplicated = selectedItem.Duplicate((int)DuplicateFlags.UseInstantiation) as Node3D; - duplicated.Position = ItemSpawnPoint.Position; - AddChild(duplicated); - } - - private void StartBossFight(Node3D body) + public void StartBossFight() { OxFaceStatue.Hide(); HorseHeadStatue.Hide(); OxFace.Activate(); HorseFace.Activate(); } + + public void OnBossFightEnded() + { + GateCollision.CallDeferred(MethodName.QueueFree); + } + + private void BossStatusUpdate(bool obj) + { + if (OxFace.IsDefeated.Value && HorseFace.IsDefeated.Value) + OnBossFightEnded(); + } } diff --git a/src/map/dungeon/code/BossRoomA.cs.uid b/src/map/dungeon/code/BossRoomA.cs.uid new file mode 100644 index 00000000..38764ecd --- /dev/null +++ b/src/map/dungeon/code/BossRoomA.cs.uid @@ -0,0 +1 @@ +uid://tqyybt313web diff --git a/src/map/dungeon/code/DungeonFloor.cs b/src/map/dungeon/code/DungeonFloor.cs index e8762119..67f2b72c 100644 --- a/src/map/dungeon/code/DungeonFloor.cs +++ b/src/map/dungeon/code/DungeonFloor.cs @@ -19,26 +19,21 @@ namespace GameJamDungeon private Transform3D _playerSpawnPoint; - private Vector3 _teleportSpawnPoint; - - internal List Rooms { get; private set; } + internal List Rooms { get; private set; } public void InitializeDungeon() { - Rooms = new List(); + Rooms = new List(); DungeonGenerator.Call("generate"); NavigationRegion3D.BakeNavigationMesh(); Rooms = FindAllDungeonRooms([.. GetChildren()], Rooms); _playerSpawnPoint = RandomizePlayerSpawnPoint(); - _teleportSpawnPoint = RandomizeTeleportSpawnPointAwayFromPosition(_playerSpawnPoint.Origin); foreach (var room in Rooms) room.SpawnEnemies(EnemyDatabase); } public Transform3D GetPlayerSpawnPoint() => _playerSpawnPoint; - public Vector3 GetTeleportSpawnPoint() => _teleportSpawnPoint; - private Transform3D RandomizePlayerSpawnPoint() { var rng = new RandomNumberGenerator(); @@ -51,34 +46,13 @@ namespace GameJamDungeon return result.GlobalTransform; } - private Vector3 RandomizeTeleportSpawnPointAwayFromPosition(Vector3 target) - { - var rng = new RandomNumberGenerator(); - rng.Randomize(); - var rngDistribution = new List(); - var roomsSortedByDistance = Rooms - .Select(x => x.TeleportSpawn.GlobalPosition) - .OrderByDescending(x => x.DistanceTo(target)) - .ToArray(); - var rngIndex = 1.0; - var rngSteps = rngIndex / roomsSortedByDistance.Length; - foreach (var room in roomsSortedByDistance) - { - rngIndex -= rngSteps; - rngDistribution.Add((float)rngIndex); - } - - var result = roomsSortedByDistance[rng.RandWeighted([.. rngDistribution])]; - return result; - } - - private static List FindAllDungeonRooms(List nodesToSearch, List roomsFound) + private static List FindAllDungeonRooms(List nodesToSearch, List roomsFound) { if (nodesToSearch.Count == 0) return roomsFound; foreach (var node in nodesToSearch) - if (node is IDungeonRoom dungeonRoom) + if (node is MonsterRoom dungeonRoom) roomsFound.Add(dungeonRoom); return FindAllDungeonRooms(nodesToSearch.SelectMany(x => x.GetChildren()).ToList(), roomsFound); diff --git a/src/map/dungeon/code/ExitRoom.cs b/src/map/dungeon/code/ExitRoom.cs new file mode 100644 index 00000000..cbab8fb8 --- /dev/null +++ b/src/map/dungeon/code/ExitRoom.cs @@ -0,0 +1,27 @@ +using Chickensoft.AutoInject; +using Chickensoft.Introspection; +using Godot; + +namespace GameJamDungeon; + +[Meta(typeof(IAutoNode))] +public partial class ExitRoom : Node3D, IExitRoom +{ + public override void _Notification(int what) => this.Notify(what); + + [Dependency] public IGame Game => this.DependOn(); + + [Node] public Area3D Exit { get; set; } = default!; + public Marker3D PlayerSpawn { get; set; } + + public void Setup() + { + Exit.AreaEntered += Exit_AreaEntered; + } + + public void ExitReached() + => Game.FloorExitReached(); + + private void Exit_AreaEntered(Area3D area) => ExitReached(); + public void SpawnEnemies(EnemyDatabase enemyDatabase) => throw new System.NotImplementedException(); +} diff --git a/src/map/dungeon/code/ExitRoom.cs.uid b/src/map/dungeon/code/ExitRoom.cs.uid new file mode 100644 index 00000000..82ae0c1f --- /dev/null +++ b/src/map/dungeon/code/ExitRoom.cs.uid @@ -0,0 +1 @@ +uid://bd824eigybu51 diff --git a/src/map/dungeon/code/Floor0.cs b/src/map/dungeon/code/Floor0.cs index 75507aae..d4770f87 100644 --- a/src/map/dungeon/code/Floor0.cs +++ b/src/map/dungeon/code/Floor0.cs @@ -3,34 +3,31 @@ using Chickensoft.Introspection; using Godot; namespace GameJamDungeon; + [Meta(typeof(IAutoNode))] -public partial class Floor0 : Node3D, IDungeonFloor +public partial class Floor0 : Node3D, IDungeonFloor, IExitRoom { public override void _Notification(int what) => this.Notify(what); - [Node] public Marker3D PlayerSpawnPoint { get; set; } = default!; + [Dependency] protected IGame Game => this.DependOn(); - [Dependency] protected IPlayer Player => this.DependOn(); + [Node] private Area3D Exit { get; set; } = default!; - [Node] public Marker3D ExitSpawnPoint { get; set; } = default!; + [Node] private Marker3D PlayerSpawnPoint { get; set; } = default!; public void Setup() { - Player.TeleportPlayer(new Vector3(PlayerSpawnPoint.Position.X, -1.75f, PlayerSpawnPoint.Position.Z)); + Show(); + Exit.AreaEntered += Exit_AreaEntered; } - public Transform3D GetPlayerSpawnPoint() - { - return PlayerSpawnPoint.GlobalTransform; - } - - public Vector3 GetTeleportSpawnPoint() - { - return ExitSpawnPoint.GlobalPosition; - } + private void Exit_AreaEntered(Area3D area) => ExitReached(); + public void ExitReached() => Game.FloorExitReached(); public void InitializeDungeon() { - Show(); + return; } + + public Transform3D GetPlayerSpawnPoint() => PlayerSpawnPoint.GlobalTransform; } diff --git a/src/map/dungeon/code/IBossRoom.cs b/src/map/dungeon/code/IBossRoom.cs new file mode 100644 index 00000000..138ca1d4 --- /dev/null +++ b/src/map/dungeon/code/IBossRoom.cs @@ -0,0 +1,13 @@ +using Chickensoft.GodotNodeInterfaces; +using Godot; + +namespace GameJamDungeon; + +public interface IBossRoom : INode3D +{ + public void StartBossFight(); + + public void OnBossFightEnded(); + + public Marker3D PlayerSpawn { get; } +} diff --git a/src/map/dungeon/code/IBossRoom.cs.uid b/src/map/dungeon/code/IBossRoom.cs.uid new file mode 100644 index 00000000..08a273d2 --- /dev/null +++ b/src/map/dungeon/code/IBossRoom.cs.uid @@ -0,0 +1 @@ +uid://cgni12m4qxevx diff --git a/src/map/dungeon/code/IDungeonFloor.cs b/src/map/dungeon/code/IDungeonFloor.cs index 224b2df6..dd877c3e 100644 --- a/src/map/dungeon/code/IDungeonFloor.cs +++ b/src/map/dungeon/code/IDungeonFloor.cs @@ -7,6 +7,4 @@ public interface IDungeonFloor : INode3D void InitializeDungeon(); public Transform3D GetPlayerSpawnPoint(); - - public Vector3 GetTeleportSpawnPoint(); } diff --git a/src/map/dungeon/code/IDungeonRoom.cs b/src/map/dungeon/code/IDungeonRoom.cs new file mode 100644 index 00000000..5a0b36a1 --- /dev/null +++ b/src/map/dungeon/code/IDungeonRoom.cs @@ -0,0 +1,6 @@ +using Chickensoft.GodotNodeInterfaces; + +namespace GameJamDungeon; +public interface IDungeonRoom : INode3D +{ +} diff --git a/src/map/dungeon/code/IDungeonRoom.cs.uid b/src/map/dungeon/code/IDungeonRoom.cs.uid new file mode 100644 index 00000000..7d4ce3da --- /dev/null +++ b/src/map/dungeon/code/IDungeonRoom.cs.uid @@ -0,0 +1 @@ +uid://bxeoefcxu4p0d diff --git a/src/map/dungeon/code/IExitRoom.cs b/src/map/dungeon/code/IExitRoom.cs new file mode 100644 index 00000000..71f7d18c --- /dev/null +++ b/src/map/dungeon/code/IExitRoom.cs @@ -0,0 +1,6 @@ +namespace GameJamDungeon; + +public interface IExitRoom : IDungeonRoom +{ + public void ExitReached(); +} diff --git a/src/map/dungeon/code/IExitRoom.cs.uid b/src/map/dungeon/code/IExitRoom.cs.uid new file mode 100644 index 00000000..f532ab6c --- /dev/null +++ b/src/map/dungeon/code/IExitRoom.cs.uid @@ -0,0 +1 @@ +uid://r1ukwtc040w diff --git a/src/map/dungeon/code/DungeonRoom.cs b/src/map/dungeon/code/MonsterRoom.cs similarity index 81% rename from src/map/dungeon/code/DungeonRoom.cs rename to src/map/dungeon/code/MonsterRoom.cs index 001275f4..f63c04f7 100644 --- a/src/map/dungeon/code/DungeonRoom.cs +++ b/src/map/dungeon/code/MonsterRoom.cs @@ -1,28 +1,17 @@ -using Chickensoft.AutoInject; -using Chickensoft.GodotNodeInterfaces; +using Chickensoft.AutoInject; using Chickensoft.Introspection; using Godot; using System.Linq; namespace GameJamDungeon; -public interface IDungeonRoom : INode3D -{ - public Marker3D PlayerSpawn { get; set; } - - public Marker3D TeleportSpawn { get; set; } - - public void SpawnEnemies(EnemyDatabase enemyDatabase); -} [Meta(typeof(IAutoNode))] -public partial class DungeonRoom : Node3D, IDungeonRoom +public partial class MonsterRoom : Node3D, IDungeonRoom { public override void _Notification(int what) => this.Notify(what); [Node] public Marker3D PlayerSpawn { get; set; } = default!; - [Node] public Marker3D TeleportSpawn { get; set; } = default!; - [Node] public Node3D ItemSpawnPoints { get; set; } = default!; [Node] public Node3D EnemySpawnPoints { get; set; } = default!; @@ -51,7 +40,7 @@ public partial class DungeonRoom : Node3D, IDungeonRoom var weights = database.Select(x => x.SpawnRate).ToArray(); var selectedItem = database[rng.RandWeighted(weights)]; var duplicated = selectedItem.Duplicate((int)DuplicateFlags.UseInstantiation) as Node3D; - duplicated.Position = new Vector3(spawnPoint.Position.X, -1.75f, spawnPoint.Position.Z); + duplicated.Position = new Vector3(spawnPoint.Position.X, -1.5f, spawnPoint.Position.Z); AddChild(duplicated); } } @@ -71,7 +60,7 @@ public partial class DungeonRoom : Node3D, IDungeonRoom var enemy = enemyDatabase.EnemyList[rng.RandWeighted(enemyDatabase.SpawnRate)]; var instantiatedEnemy = enemy.Instantiate(); - instantiatedEnemy.Position = new Vector3(spawnPoint.Position.X, -1, spawnPoint.Position.Z); + instantiatedEnemy.Position = new Vector3(spawnPoint.Position.X, -0.5f, spawnPoint.Position.Z); AddChild(instantiatedEnemy); } } diff --git a/src/map/dungeon/code/MonsterRoom.cs.uid b/src/map/dungeon/code/MonsterRoom.cs.uid new file mode 100644 index 00000000..fe0217ef --- /dev/null +++ b/src/map/dungeon/code/MonsterRoom.cs.uid @@ -0,0 +1 @@ +uid://dhollu4j3pynq diff --git a/src/map/dungeon/floors/Floor00.tscn b/src/map/dungeon/floors/Floor00.tscn index 4a4d4f59..f9eff1dc 100644 --- a/src/map/dungeon/floors/Floor00.tscn +++ b/src/map/dungeon/floors/Floor00.tscn @@ -1,4 +1,4 @@ -[gd_scene load_steps=60 format=4 uid="uid://dl6h1djc27ddl"] +[gd_scene load_steps=61 format=4 uid="uid://dl6h1djc27ddl"] [ext_resource type="Script" uid="uid://c1nhqlem1ew3m" path="res://src/map/dungeon/code/Floor0.cs" id="1_db2o3"] [ext_resource type="Texture2D" uid="uid://b27ksiyfefb33" path="res://src/map/dungeon/models/Set A/02. Altar/02_ALTAR_FLOOR_ZER0_VER_outside_desert.png" id="2_xh2ej"] @@ -10,7 +10,7 @@ [ext_resource type="Texture2D" uid="uid://g5lvjjwd602c" path="res://src/map/dungeon/models/Set A/02. Altar/02_ALTAR_FLOOR_ZER0_VER_Water-Pool 2.png" id="8_ofv7i"] [ext_resource type="Texture2D" uid="uid://cx8bbg4nf5r0y" path="res://src/map/dungeon/models/Set A/02. Altar/02_ALTAR_FLOOR_ZER0_VER_COLUM2N.png" id="9_mi7rk"] [ext_resource type="Texture2D" uid="uid://cas887pxmge0w" path="res://src/map/dungeon/models/Set A/02. Altar/02_ALTAR_FLOOR_ZER0_VER_Worked-Stone-Outside.png" id="10_he1ou"] -[ext_resource type="Texture2D" uid="uid://d6sqoslljggk" path="res://src/map/dungeon/models/Set A/02. Altar/02_ALTAR_FLOOR_ZER0_VER_hand-tiile.png" id="11_rufnk"] +[ext_resource type="Texture2D" uid="uid://c4vnrq42usiy3" path="res://src/map/dungeon/models/Set A/02. Altar/02_ALTAR_FLOOR_ZER0_VER_hand-tiile.png" id="11_rufnk"] [ext_resource type="Texture2D" uid="uid://cfuyb56nnkgvt" path="res://src/map/dungeon/models/Set A/02. Altar/02_ALTAR_FLOOR_ZER0_VER_effed-TILES-2.png" id="12_t3xa0"] [ext_resource type="Texture2D" uid="uid://dyufabjcwlago" path="res://src/map/dungeon/models/Set A/02. Altar/02_ALTAR_FLOOR_ZER0_VER_HAND_CYCLE_MOTIF.png" id="13_1i307"] [ext_resource type="Texture2D" uid="uid://4k6vtn4oip5f" path="res://src/map/dungeon/models/Set A/02. Altar/02_ALTAR_FLOOR_ZER0_VER_TILE4.png" id="14_qqc7i"] @@ -736,6 +736,9 @@ _data = { [sub_resource type="BoxShape3D" id="BoxShape3D_xh2ej"] size = Vector3(1.53375, 1.46143, 3.13956) +[sub_resource type="BoxShape3D" id="BoxShape3D_db2o3"] +size = Vector3(2.97754, 2.34912, 3.79205) + [node name="Floor0" type="Node3D"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.63488, -5.13176) script = ExtResource("1_db2o3") @@ -854,3 +857,16 @@ shape = SubResource("BoxShape3D_xh2ej") [node name="ThrowableItem" parent="." instance=ExtResource("16_db2o3")] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -3.469, -2.5, 0) _throwableItemStats = ExtResource("17_ntxe5") + +[node name="CSGBox3D" type="CSGBox3D" parent="."] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, -2.22379, 0) +size = Vector3(1, 1.7, 1) + +[node name="Exit" type="Area3D" parent="."] +unique_name_in_owner = true +collision_layer = 256 +collision_mask = 256 + +[node name="CollisionShape3D" type="CollisionShape3D" parent="Exit"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -13.1171, -2.1779, -0.0887146) +shape = SubResource("BoxShape3D_db2o3") diff --git a/src/map/dungeon/floors/Floor01.tscn b/src/map/dungeon/floors/Floor01.tscn index ab031678..1403153a 100644 --- a/src/map/dungeon/floors/Floor01.tscn +++ b/src/map/dungeon/floors/Floor01.tscn @@ -1,13 +1,20 @@ -[gd_scene load_steps=11 format=3 uid="uid://bc1sp6xwe0j65"] +[gd_scene load_steps=18 format=3 uid="uid://bc1sp6xwe0j65"] [ext_resource type="Script" uid="uid://dwt6302nsf4vq" path="res://src/map/dungeon/code/DungeonFloor.cs" id="1_0ecnn"] [ext_resource type="Script" uid="uid://b1x125h0tya2w" path="res://addons/SimpleDungeons/DungeonGenerator3D.gd" id="2_cxmwa"] -[ext_resource type="PackedScene" uid="uid://dadl2rua1ovhq" path="res://src/map/dungeon/scenes/Set B/20. Antechamber 3.tscn" id="3_xw4dv"] -[ext_resource type="PackedScene" uid="uid://utaqo4hl68yw" path="res://src/map/dungeon/scenes/Set B/23. Antechamber 4.tscn" id="4_atq1f"] -[ext_resource type="PackedScene" uid="uid://bhqmpgpegcuu5" path="res://src/map/dungeon/scenes/Set B/24. BalconyRoom 2.tscn" id="5_sdyti"] -[ext_resource type="PackedScene" uid="uid://dooy8nc5pgaxm" path="res://src/map/dungeon/scenes/Set B/37. Corridor 2.tscn" id="6_xw4dv"] +[ext_resource type="PackedScene" uid="uid://dpec2lbt83dhe" path="res://src/map/dungeon/scenes/Set A/03. Antechamber A.tscn" id="3_gkkr3"] +[ext_resource type="PackedScene" uid="uid://i781lbf2wb22" path="res://src/map/dungeon/scenes/Set A/04. Antechamber B.tscn" id="4_n610c"] +[ext_resource type="PackedScene" uid="uid://cam640h4euewx" path="res://src/map/dungeon/scenes/Set A/05. Pit Room A.tscn" id="5_n8ctv"] +[ext_resource type="PackedScene" uid="uid://b7111krf365x0" path="res://src/map/dungeon/scenes/Set A/06. Balcony Room A.tscn" id="6_epmod"] +[ext_resource type="PackedScene" uid="uid://vdhl32je6hq2" path="res://src/map/dungeon/scenes/Set A/07. Statue Room.tscn" id="7_lrk4l"] +[ext_resource type="PackedScene" uid="uid://b82dx66mgs2d7" path="res://src/map/dungeon/scenes/Set A/08. BasinRoom.tscn" id="8_5rblf"] +[ext_resource type="PackedScene" uid="uid://c1qicmrcg6q6x" path="res://src/map/dungeon/scenes/Set A/09. Column Room.tscn" id="9_qx5t8"] +[ext_resource type="PackedScene" uid="uid://dhm2lyfkrjugf" path="res://src/map/dungeon/scenes/Set A/11. Long Room.tscn" id="10_bjb1j"] +[ext_resource type="PackedScene" uid="uid://dfpyfpnya0f4u" path="res://src/map/dungeon/scenes/Set A/13. Water Room.tscn" id="11_kl0fr"] [ext_resource type="PackedScene" uid="uid://dbvr8ewajja6a" path="res://src/enemy/EnemyDatabase.tscn" id="12_aw26s"] +[ext_resource type="PackedScene" uid="uid://cihbmyo0ltq4m" path="res://src/map/dungeon/scenes/Set A/19. Floor Exit A.tscn" id="12_n02rw"] [ext_resource type="PackedScene" uid="uid://bksq62muhk3h5" path="res://src/enemy/enemy_types/1. sproingy/Sproingy.tscn" id="13_kwaga"] +[ext_resource type="PackedScene" uid="uid://bn4gslp2gk8ds" path="res://src/map/dungeon/scenes/Set A/18. Corridor A.tscn" id="13_ofywd"] [ext_resource type="PackedScene" uid="uid://b0gwivt7cw7nd" path="res://src/enemy/enemy_types/2. michael/Michael.tscn" id="14_gkkr3"] [sub_resource type="NavigationMesh" id="NavigationMesh_4d8mx"] @@ -24,8 +31,8 @@ navigation_mesh = SubResource("NavigationMesh_4d8mx") [node name="DungeonGenerator" type="Node3D" parent="NavigationRegion3D"] unique_name_in_owner = true script = ExtResource("2_cxmwa") -room_scenes = Array[PackedScene]([ExtResource("3_xw4dv"), ExtResource("4_atq1f"), ExtResource("5_sdyti")]) -corridor_room_scene = ExtResource("6_xw4dv") +room_scenes = Array[PackedScene]([ExtResource("3_gkkr3"), ExtResource("4_n610c"), ExtResource("5_n8ctv"), ExtResource("6_epmod"), ExtResource("7_lrk4l"), ExtResource("8_5rblf"), ExtResource("9_qx5t8"), ExtResource("10_bjb1j"), ExtResource("11_kl0fr"), ExtResource("12_n02rw")]) +corridor_room_scene = ExtResource("13_ofywd") dungeon_size = Vector3i(40, 1, 40) voxel_scale = Vector3(4, 4, 4) generate_on_ready = false diff --git a/src/map/dungeon/floors/Floor02.tscn b/src/map/dungeon/floors/Floor02.tscn index 516f5331..a65b45b9 100644 --- a/src/map/dungeon/floors/Floor02.tscn +++ b/src/map/dungeon/floors/Floor02.tscn @@ -1,4 +1,4 @@ -[gd_scene load_steps=16 format=3 uid="uid://dmiqwmivkjgmq"] +[gd_scene load_steps=15 format=3 uid="uid://dmiqwmivkjgmq"] [ext_resource type="Script" uid="uid://b1x125h0tya2w" path="res://addons/SimpleDungeons/DungeonGenerator3D.gd" id="1_afeds"] [ext_resource type="PackedScene" uid="uid://dpec2lbt83dhe" path="res://src/map/dungeon/scenes/Set A/03. Antechamber A.tscn" id="3_7txs6"] @@ -13,7 +13,6 @@ [ext_resource type="PackedScene" uid="uid://dbvr8ewajja6a" path="res://src/enemy/EnemyDatabase.tscn" id="11_yvj8v"] [ext_resource type="PackedScene" uid="uid://bksq62muhk3h5" path="res://src/enemy/enemy_types/1. sproingy/Sproingy.tscn" id="12_pmbic"] [ext_resource type="PackedScene" uid="uid://b0gwivt7cw7nd" path="res://src/enemy/enemy_types/2. michael/Michael.tscn" id="13_eyrkc"] -[ext_resource type="PackedScene" uid="uid://bkj1kyqu7reul" path="res://src/enemy/enemy_types/13. gold sproingy/GoldSproingy.tscn" id="14_pmbic"] [sub_resource type="NavigationMesh" id="NavigationMesh_gqi8w"] border_size = 1.0 @@ -38,5 +37,4 @@ generate_on_ready = false [node name="EnemyDatabase" parent="." instance=ExtResource("11_yvj8v")] unique_name_in_owner = true -EnemyList = Array[PackedScene]([ExtResource("12_pmbic"), ExtResource("13_eyrkc"), ExtResource("14_pmbic")]) -SpawnRate = PackedFloat32Array(1, 1, 0.05) +EnemyList = Array[PackedScene]([ExtResource("12_pmbic"), ExtResource("13_eyrkc")]) diff --git a/src/map/dungeon/floors/Floor05.tscn b/src/map/dungeon/floors/Floor05.tscn index 402fcedc..a939f060 100644 --- a/src/map/dungeon/floors/Floor05.tscn +++ b/src/map/dungeon/floors/Floor05.tscn @@ -1,4 +1,4 @@ -[gd_scene load_steps=16 format=3 uid="uid://t7cac7801bnk"] +[gd_scene load_steps=15 format=3 uid="uid://t7cac7801bnk"] [ext_resource type="Script" uid="uid://dwt6302nsf4vq" path="res://src/map/dungeon/code/DungeonFloor.cs" id="1_8l7r7"] [ext_resource type="Script" uid="uid://b1x125h0tya2w" path="res://addons/SimpleDungeons/DungeonGenerator3D.gd" id="2_ksplq"] @@ -13,7 +13,6 @@ [ext_resource type="PackedScene" uid="uid://dbvr8ewajja6a" path="res://src/enemy/EnemyDatabase.tscn" id="11_l2dei"] [ext_resource type="PackedScene" uid="uid://b0gwivt7cw7nd" path="res://src/enemy/enemy_types/2. michael/Michael.tscn" id="12_uv3l4"] [ext_resource type="PackedScene" uid="uid://cvk007twac22c" path="res://src/enemy/enemy_types/3. filth_eater/FilthEater.tscn" id="13_v44hk"] -[ext_resource type="PackedScene" uid="uid://bkj1kyqu7reul" path="res://src/enemy/enemy_types/13. gold sproingy/GoldSproingy.tscn" id="14_ksplq"] [sub_resource type="NavigationMesh" id="NavigationMesh_gqi8w"] border_size = 1.0 @@ -38,5 +37,5 @@ generate_on_ready = false [node name="EnemyDatabase" parent="." instance=ExtResource("11_l2dei")] unique_name_in_owner = true -EnemyList = Array[PackedScene]([ExtResource("12_uv3l4"), ExtResource("13_v44hk"), ExtResource("14_ksplq")]) -SpawnRate = PackedFloat32Array(0.5, 1, 0.05) +EnemyList = Array[PackedScene]([ExtResource("12_uv3l4"), ExtResource("13_v44hk")]) +SpawnRate = PackedFloat32Array(0.5, 1) diff --git a/src/map/dungeon/floors/Floor09.tscn b/src/map/dungeon/floors/Floor09.tscn index c879c0ff..f399b959 100644 --- a/src/map/dungeon/floors/Floor09.tscn +++ b/src/map/dungeon/floors/Floor09.tscn @@ -1,4 +1,4 @@ -[gd_scene load_steps=16 format=3 uid="uid://b5jk743ng6fqg"] +[gd_scene load_steps=14 format=3 uid="uid://b5jk743ng6fqg"] [ext_resource type="Script" uid="uid://dwt6302nsf4vq" path="res://src/map/dungeon/code/DungeonFloor.cs" id="1_ah6eb"] [ext_resource type="Script" uid="uid://b1x125h0tya2w" path="res://addons/SimpleDungeons/DungeonGenerator3D.gd" id="2_2l5nt"] @@ -12,8 +12,6 @@ [ext_resource type="PackedScene" uid="uid://bn4gslp2gk8ds" path="res://src/map/dungeon/scenes/Set A/18. Corridor A.tscn" id="10_glh5y"] [ext_resource type="PackedScene" uid="uid://dbvr8ewajja6a" path="res://src/enemy/EnemyDatabase.tscn" id="11_xxd5b"] [ext_resource type="PackedScene" uid="uid://feegakykn3fv" path="res://src/enemy/enemy_types/5. ballos/Ballos.tscn" id="12_mhyau"] -[ext_resource type="PackedScene" uid="uid://dlw5cvutvypxn" path="res://src/enemy/enemy_types/6. chariot/Chariot.tscn" id="13_v2ihw"] -[ext_resource type="PackedScene" uid="uid://bkj1kyqu7reul" path="res://src/enemy/enemy_types/13. gold sproingy/GoldSproingy.tscn" id="14_2l5nt"] [sub_resource type="NavigationMesh" id="NavigationMesh_gqi8w"] border_size = 1.0 @@ -38,5 +36,5 @@ generate_on_ready = false [node name="EnemyDatabase" parent="." instance=ExtResource("11_xxd5b")] unique_name_in_owner = true -EnemyList = Array[PackedScene]([ExtResource("12_mhyau"), ExtResource("13_v2ihw"), ExtResource("14_2l5nt")]) -SpawnRate = PackedFloat32Array(1, 1, 0.05) +EnemyList = Array[PackedScene]([ExtResource("12_mhyau")]) +SpawnRate = PackedFloat32Array(1) diff --git a/src/map/dungeon/floors/Floor11.tscn b/src/map/dungeon/floors/Floor11.tscn index 6d74ec54..6408a9b3 100644 --- a/src/map/dungeon/floors/Floor11.tscn +++ b/src/map/dungeon/floors/Floor11.tscn @@ -6,7 +6,7 @@ [ext_resource type="PackedScene" uid="uid://dra1mqcqhw7g0" path="res://src/map/dungeon/scenes/Set B/21. Gallery Room.tscn" id="4_8e7p7"] [ext_resource type="PackedScene" uid="uid://cq82tqhlshn1k" path="res://src/map/dungeon/scenes/Set B/22. Pit Room B.tscn" id="5_deo6i"] [ext_resource type="PackedScene" uid="uid://utaqo4hl68yw" path="res://src/map/dungeon/scenes/Set B/23. Antechamber 4.tscn" id="6_x1lv4"] -[ext_resource type="PackedScene" uid="uid://bhqmpgpegcuu5" path="res://src/map/dungeon/scenes/Set B/24. BalconyRoom 2.tscn" id="7_274rn"] +[ext_resource type="PackedScene" uid="uid://bhqmpgpegcuu5" path="res://src/map/dungeon/scenes/Set B/24. Balcony Room 2.tscn" id="7_274rn"] [ext_resource type="PackedScene" uid="uid://dbfkpodwvxmfe" path="res://src/map/dungeon/scenes/Set B/25. Pedestal Room.tscn" id="8_fj5sv"] [ext_resource type="PackedScene" uid="uid://b8tiuu3l181ke" path="res://src/map/dungeon/scenes/Set B/28. Long Room B.tscn" id="9_famp5"] [ext_resource type="PackedScene" uid="uid://5cstpejxygy6" path="res://src/map/dungeon/scenes/Set B/29. Column Circle Room.tscn" id="10_5y5fx"] @@ -14,7 +14,7 @@ [ext_resource type="PackedScene" uid="uid://dooy8nc5pgaxm" path="res://src/map/dungeon/scenes/Set B/37. Corridor 2.tscn" id="11_jk7yl"] [ext_resource type="PackedScene" uid="uid://dbvr8ewajja6a" path="res://src/enemy/EnemyDatabase.tscn" id="11_y24bo"] [ext_resource type="PackedScene" uid="uid://dlw5cvutvypxn" path="res://src/enemy/enemy_types/6. chariot/Chariot.tscn" id="13_aj7yr"] -[ext_resource type="PackedScene" uid="uid://c6tqt27ql8s35" path="res://src/enemy/enemy_types/7. chinte/Chinte.tscn" id="15_bw315"] +[ext_resource type="PackedScene" uid="uid://c6tqt27ql8s35" path="res://src/enemy/enemy_types/7. chinthe/Chinthe.tscn" id="15_bw315"] [sub_resource type="NavigationMesh" id="NavigationMesh_gqi8w"] border_size = 1.0 diff --git a/src/map/dungeon/floors/Floor12.tscn b/src/map/dungeon/floors/Floor12.tscn index e2676c9f..5036e611 100644 --- a/src/map/dungeon/floors/Floor12.tscn +++ b/src/map/dungeon/floors/Floor12.tscn @@ -6,14 +6,14 @@ [ext_resource type="PackedScene" uid="uid://dra1mqcqhw7g0" path="res://src/map/dungeon/scenes/Set B/21. Gallery Room.tscn" id="4_ffc3h"] [ext_resource type="PackedScene" uid="uid://cq82tqhlshn1k" path="res://src/map/dungeon/scenes/Set B/22. Pit Room B.tscn" id="5_jc51p"] [ext_resource type="PackedScene" uid="uid://utaqo4hl68yw" path="res://src/map/dungeon/scenes/Set B/23. Antechamber 4.tscn" id="6_rtv5v"] -[ext_resource type="PackedScene" uid="uid://bhqmpgpegcuu5" path="res://src/map/dungeon/scenes/Set B/24. BalconyRoom 2.tscn" id="7_jro0u"] +[ext_resource type="PackedScene" uid="uid://bhqmpgpegcuu5" path="res://src/map/dungeon/scenes/Set B/24. Balcony Room 2.tscn" id="7_jro0u"] [ext_resource type="PackedScene" uid="uid://dbfkpodwvxmfe" path="res://src/map/dungeon/scenes/Set B/25. Pedestal Room.tscn" id="8_b7mkw"] [ext_resource type="PackedScene" uid="uid://b8tiuu3l181ke" path="res://src/map/dungeon/scenes/Set B/28. Long Room B.tscn" id="9_4qv3u"] [ext_resource type="PackedScene" uid="uid://5cstpejxygy6" path="res://src/map/dungeon/scenes/Set B/29. Column Circle Room.tscn" id="10_5fprq"] [ext_resource type="PackedScene" uid="uid://02v033xrh6xi" path="res://src/map/dungeon/scenes/Set B/38. Floor Exit B.tscn" id="11_nemst"] [ext_resource type="PackedScene" uid="uid://dooy8nc5pgaxm" path="res://src/map/dungeon/scenes/Set B/37. Corridor 2.tscn" id="12_1rgka"] [ext_resource type="PackedScene" uid="uid://dbvr8ewajja6a" path="res://src/enemy/EnemyDatabase.tscn" id="13_jwrcb"] -[ext_resource type="PackedScene" uid="uid://c6tqt27ql8s35" path="res://src/enemy/enemy_types/7. chinte/Chinte.tscn" id="14_edmor"] +[ext_resource type="PackedScene" uid="uid://c6tqt27ql8s35" path="res://src/enemy/enemy_types/7. chinthe/Chinthe.tscn" id="14_edmor"] [sub_resource type="NavigationMesh" id="NavigationMesh_gqi8w"] border_size = 1.0 diff --git a/src/map/dungeon/floors/Floor13.tscn b/src/map/dungeon/floors/Floor13.tscn index 685d83bc..290ccd5a 100644 --- a/src/map/dungeon/floors/Floor13.tscn +++ b/src/map/dungeon/floors/Floor13.tscn @@ -1,4 +1,4 @@ -[gd_scene load_steps=18 format=3 uid="uid://fellg2owwe64"] +[gd_scene load_steps=15 format=3 uid="uid://fellg2owwe64"] [ext_resource type="Script" uid="uid://dwt6302nsf4vq" path="res://src/map/dungeon/code/DungeonFloor.cs" id="1_cmrxb"] [ext_resource type="Script" uid="uid://b1x125h0tya2w" path="res://addons/SimpleDungeons/DungeonGenerator3D.gd" id="2_bb5ek"] @@ -6,16 +6,13 @@ [ext_resource type="PackedScene" uid="uid://dra1mqcqhw7g0" path="res://src/map/dungeon/scenes/Set B/21. Gallery Room.tscn" id="4_sfr88"] [ext_resource type="PackedScene" uid="uid://cq82tqhlshn1k" path="res://src/map/dungeon/scenes/Set B/22. Pit Room B.tscn" id="5_by6es"] [ext_resource type="PackedScene" uid="uid://utaqo4hl68yw" path="res://src/map/dungeon/scenes/Set B/23. Antechamber 4.tscn" id="6_xkoxe"] -[ext_resource type="PackedScene" uid="uid://bhqmpgpegcuu5" path="res://src/map/dungeon/scenes/Set B/24. BalconyRoom 2.tscn" id="7_63dun"] +[ext_resource type="PackedScene" uid="uid://bhqmpgpegcuu5" path="res://src/map/dungeon/scenes/Set B/24. Balcony Room 2.tscn" id="7_63dun"] [ext_resource type="PackedScene" uid="uid://dbfkpodwvxmfe" path="res://src/map/dungeon/scenes/Set B/25. Pedestal Room.tscn" id="8_btunt"] [ext_resource type="PackedScene" uid="uid://b8tiuu3l181ke" path="res://src/map/dungeon/scenes/Set B/28. Long Room B.tscn" id="9_vonag"] [ext_resource type="PackedScene" uid="uid://5cstpejxygy6" path="res://src/map/dungeon/scenes/Set B/29. Column Circle Room.tscn" id="10_yo5mh"] [ext_resource type="PackedScene" uid="uid://02v033xrh6xi" path="res://src/map/dungeon/scenes/Set B/38. Floor Exit B.tscn" id="11_mwwyc"] [ext_resource type="PackedScene" uid="uid://dooy8nc5pgaxm" path="res://src/map/dungeon/scenes/Set B/37. Corridor 2.tscn" id="12_hnpqo"] [ext_resource type="PackedScene" uid="uid://dbvr8ewajja6a" path="res://src/enemy/EnemyDatabase.tscn" id="13_bm34w"] -[ext_resource type="PackedScene" uid="uid://feegakykn3fv" path="res://src/enemy/enemy_types/5. ballos/Ballos.tscn" id="14_tdbgn"] -[ext_resource type="PackedScene" uid="uid://dlw5cvutvypxn" path="res://src/enemy/enemy_types/6. chariot/Chariot.tscn" id="15_dpuhy"] -[ext_resource type="PackedScene" uid="uid://bkj1kyqu7reul" path="res://src/enemy/enemy_types/13. gold sproingy/GoldSproingy.tscn" id="16_0t77p"] [sub_resource type="NavigationMesh" id="NavigationMesh_gqi8w"] border_size = 1.0 @@ -40,5 +37,5 @@ generate_on_ready = false [node name="EnemyDatabase" parent="." instance=ExtResource("13_bm34w")] unique_name_in_owner = true -EnemyList = Array[PackedScene]([ExtResource("14_tdbgn"), ExtResource("15_dpuhy"), ExtResource("16_0t77p")]) -SpawnRate = PackedFloat32Array(1, 1, 0.05) +EnemyList = Array[PackedScene]([]) +SpawnRate = PackedFloat32Array() diff --git a/src/map/dungeon/floors/Floor14.tscn b/src/map/dungeon/floors/Floor14.tscn index 41126759..eb502dc0 100644 --- a/src/map/dungeon/floors/Floor14.tscn +++ b/src/map/dungeon/floors/Floor14.tscn @@ -1,4 +1,4 @@ -[gd_scene load_steps=18 format=3 uid="uid://vhqwff12y7wn"] +[gd_scene load_steps=16 format=3 uid="uid://vhqwff12y7wn"] [ext_resource type="Script" uid="uid://dwt6302nsf4vq" path="res://src/map/dungeon/code/DungeonFloor.cs" id="1_qo66f"] [ext_resource type="Script" uid="uid://b1x125h0tya2w" path="res://addons/SimpleDungeons/DungeonGenerator3D.gd" id="2_q127u"] @@ -6,16 +6,14 @@ [ext_resource type="PackedScene" uid="uid://dra1mqcqhw7g0" path="res://src/map/dungeon/scenes/Set B/21. Gallery Room.tscn" id="4_nrwsy"] [ext_resource type="PackedScene" uid="uid://cq82tqhlshn1k" path="res://src/map/dungeon/scenes/Set B/22. Pit Room B.tscn" id="5_mh162"] [ext_resource type="PackedScene" uid="uid://utaqo4hl68yw" path="res://src/map/dungeon/scenes/Set B/23. Antechamber 4.tscn" id="6_hs7sr"] -[ext_resource type="PackedScene" uid="uid://bhqmpgpegcuu5" path="res://src/map/dungeon/scenes/Set B/24. BalconyRoom 2.tscn" id="7_48ayb"] +[ext_resource type="PackedScene" uid="uid://bhqmpgpegcuu5" path="res://src/map/dungeon/scenes/Set B/24. Balcony Room 2.tscn" id="7_48ayb"] [ext_resource type="PackedScene" uid="uid://dbfkpodwvxmfe" path="res://src/map/dungeon/scenes/Set B/25. Pedestal Room.tscn" id="8_j3q75"] [ext_resource type="PackedScene" uid="uid://b8tiuu3l181ke" path="res://src/map/dungeon/scenes/Set B/28. Long Room B.tscn" id="9_g0y0e"] [ext_resource type="PackedScene" uid="uid://5cstpejxygy6" path="res://src/map/dungeon/scenes/Set B/29. Column Circle Room.tscn" id="10_8jhvc"] [ext_resource type="PackedScene" uid="uid://02v033xrh6xi" path="res://src/map/dungeon/scenes/Set B/38. Floor Exit B.tscn" id="11_ng7ux"] [ext_resource type="PackedScene" uid="uid://dooy8nc5pgaxm" path="res://src/map/dungeon/scenes/Set B/37. Corridor 2.tscn" id="12_tkntm"] [ext_resource type="PackedScene" uid="uid://dbvr8ewajja6a" path="res://src/enemy/EnemyDatabase.tscn" id="13_8j25c"] -[ext_resource type="PackedScene" uid="uid://feegakykn3fv" path="res://src/enemy/enemy_types/5. ballos/Ballos.tscn" id="14_nmirx"] -[ext_resource type="PackedScene" uid="uid://dlw5cvutvypxn" path="res://src/enemy/enemy_types/6. chariot/Chariot.tscn" id="15_xqpvl"] -[ext_resource type="PackedScene" uid="uid://bkj1kyqu7reul" path="res://src/enemy/enemy_types/13. gold sproingy/GoldSproingy.tscn" id="16_q3gik"] +[ext_resource type="PackedScene" uid="uid://c6tqt27ql8s35" path="res://src/enemy/enemy_types/7. chinthe/Chinthe.tscn" id="14_r4r1j"] [sub_resource type="NavigationMesh" id="NavigationMesh_gqi8w"] border_size = 1.0 @@ -40,5 +38,5 @@ generate_on_ready = false [node name="EnemyDatabase" parent="." instance=ExtResource("13_8j25c")] unique_name_in_owner = true -EnemyList = Array[PackedScene]([ExtResource("14_nmirx"), ExtResource("15_xqpvl"), ExtResource("16_q3gik")]) -SpawnRate = PackedFloat32Array(1, 1, 0.05) +EnemyList = Array[PackedScene]([ExtResource("14_r4r1j")]) +SpawnRate = PackedFloat32Array(1) diff --git a/src/map/dungeon/floors/Floor15.tscn b/src/map/dungeon/floors/Floor15.tscn index 98ef9c9c..9b4e0fe0 100644 --- a/src/map/dungeon/floors/Floor15.tscn +++ b/src/map/dungeon/floors/Floor15.tscn @@ -1,4 +1,4 @@ -[gd_scene load_steps=18 format=3 uid="uid://h8tc1uohuqx2"] +[gd_scene load_steps=15 format=3 uid="uid://h8tc1uohuqx2"] [ext_resource type="Script" uid="uid://dwt6302nsf4vq" path="res://src/map/dungeon/code/DungeonFloor.cs" id="1_i4yll"] [ext_resource type="Script" uid="uid://b1x125h0tya2w" path="res://addons/SimpleDungeons/DungeonGenerator3D.gd" id="2_xtyir"] @@ -6,16 +6,13 @@ [ext_resource type="PackedScene" uid="uid://dra1mqcqhw7g0" path="res://src/map/dungeon/scenes/Set B/21. Gallery Room.tscn" id="4_i1g1c"] [ext_resource type="PackedScene" uid="uid://cq82tqhlshn1k" path="res://src/map/dungeon/scenes/Set B/22. Pit Room B.tscn" id="5_fqp0v"] [ext_resource type="PackedScene" uid="uid://utaqo4hl68yw" path="res://src/map/dungeon/scenes/Set B/23. Antechamber 4.tscn" id="6_86r4l"] -[ext_resource type="PackedScene" uid="uid://bhqmpgpegcuu5" path="res://src/map/dungeon/scenes/Set B/24. BalconyRoom 2.tscn" id="7_mxaww"] +[ext_resource type="PackedScene" uid="uid://bhqmpgpegcuu5" path="res://src/map/dungeon/scenes/Set B/24. Balcony Room 2.tscn" id="7_mxaww"] [ext_resource type="PackedScene" uid="uid://dbfkpodwvxmfe" path="res://src/map/dungeon/scenes/Set B/25. Pedestal Room.tscn" id="8_eti4c"] [ext_resource type="PackedScene" uid="uid://b8tiuu3l181ke" path="res://src/map/dungeon/scenes/Set B/28. Long Room B.tscn" id="9_3p6l1"] [ext_resource type="PackedScene" uid="uid://5cstpejxygy6" path="res://src/map/dungeon/scenes/Set B/29. Column Circle Room.tscn" id="10_rd0ko"] [ext_resource type="PackedScene" uid="uid://02v033xrh6xi" path="res://src/map/dungeon/scenes/Set B/38. Floor Exit B.tscn" id="11_t8tuf"] [ext_resource type="PackedScene" uid="uid://dooy8nc5pgaxm" path="res://src/map/dungeon/scenes/Set B/37. Corridor 2.tscn" id="12_f284e"] [ext_resource type="PackedScene" uid="uid://dbvr8ewajja6a" path="res://src/enemy/EnemyDatabase.tscn" id="13_hlb65"] -[ext_resource type="PackedScene" uid="uid://feegakykn3fv" path="res://src/enemy/enemy_types/5. ballos/Ballos.tscn" id="14_lcs27"] -[ext_resource type="PackedScene" uid="uid://dlw5cvutvypxn" path="res://src/enemy/enemy_types/6. chariot/Chariot.tscn" id="15_pbfnq"] -[ext_resource type="PackedScene" uid="uid://bkj1kyqu7reul" path="res://src/enemy/enemy_types/13. gold sproingy/GoldSproingy.tscn" id="16_sijpg"] [sub_resource type="NavigationMesh" id="NavigationMesh_gqi8w"] border_size = 1.0 @@ -40,5 +37,5 @@ generate_on_ready = false [node name="EnemyDatabase" parent="." instance=ExtResource("13_hlb65")] unique_name_in_owner = true -EnemyList = Array[PackedScene]([ExtResource("14_lcs27"), ExtResource("15_pbfnq"), ExtResource("16_sijpg")]) -SpawnRate = PackedFloat32Array(1, 1, 0.05) +EnemyList = Array[PackedScene]([]) +SpawnRate = PackedFloat32Array() diff --git a/src/map/dungeon/floors/Floor16.tscn b/src/map/dungeon/floors/Floor16.tscn index 6f643a1c..2e7ba49a 100644 --- a/src/map/dungeon/floors/Floor16.tscn +++ b/src/map/dungeon/floors/Floor16.tscn @@ -1,4 +1,4 @@ -[gd_scene load_steps=18 format=3 uid="uid://cyfp0p38w2yfr"] +[gd_scene load_steps=15 format=3 uid="uid://cyfp0p38w2yfr"] [ext_resource type="Script" uid="uid://dwt6302nsf4vq" path="res://src/map/dungeon/code/DungeonFloor.cs" id="1_dg3fy"] [ext_resource type="Script" uid="uid://b1x125h0tya2w" path="res://addons/SimpleDungeons/DungeonGenerator3D.gd" id="2_q8hlb"] @@ -6,16 +6,13 @@ [ext_resource type="PackedScene" uid="uid://dra1mqcqhw7g0" path="res://src/map/dungeon/scenes/Set B/21. Gallery Room.tscn" id="4_jh7em"] [ext_resource type="PackedScene" uid="uid://cq82tqhlshn1k" path="res://src/map/dungeon/scenes/Set B/22. Pit Room B.tscn" id="5_xrigs"] [ext_resource type="PackedScene" uid="uid://utaqo4hl68yw" path="res://src/map/dungeon/scenes/Set B/23. Antechamber 4.tscn" id="6_r76p4"] -[ext_resource type="PackedScene" uid="uid://bhqmpgpegcuu5" path="res://src/map/dungeon/scenes/Set B/24. BalconyRoom 2.tscn" id="7_b414q"] +[ext_resource type="PackedScene" uid="uid://bhqmpgpegcuu5" path="res://src/map/dungeon/scenes/Set B/24. Balcony Room 2.tscn" id="7_b414q"] [ext_resource type="PackedScene" uid="uid://dbfkpodwvxmfe" path="res://src/map/dungeon/scenes/Set B/25. Pedestal Room.tscn" id="8_7gq57"] [ext_resource type="PackedScene" uid="uid://b8tiuu3l181ke" path="res://src/map/dungeon/scenes/Set B/28. Long Room B.tscn" id="9_kaga7"] [ext_resource type="PackedScene" uid="uid://5cstpejxygy6" path="res://src/map/dungeon/scenes/Set B/29. Column Circle Room.tscn" id="10_0r7u7"] [ext_resource type="PackedScene" uid="uid://02v033xrh6xi" path="res://src/map/dungeon/scenes/Set B/38. Floor Exit B.tscn" id="11_wurkp"] [ext_resource type="PackedScene" uid="uid://dooy8nc5pgaxm" path="res://src/map/dungeon/scenes/Set B/37. Corridor 2.tscn" id="12_qbngl"] [ext_resource type="PackedScene" uid="uid://dbvr8ewajja6a" path="res://src/enemy/EnemyDatabase.tscn" id="13_gg5wp"] -[ext_resource type="PackedScene" uid="uid://feegakykn3fv" path="res://src/enemy/enemy_types/5. ballos/Ballos.tscn" id="14_8yr1q"] -[ext_resource type="PackedScene" uid="uid://dlw5cvutvypxn" path="res://src/enemy/enemy_types/6. chariot/Chariot.tscn" id="15_xrwyx"] -[ext_resource type="PackedScene" uid="uid://bkj1kyqu7reul" path="res://src/enemy/enemy_types/13. gold sproingy/GoldSproingy.tscn" id="16_ekls2"] [sub_resource type="NavigationMesh" id="NavigationMesh_gqi8w"] border_size = 1.0 @@ -40,5 +37,5 @@ generate_on_ready = false [node name="EnemyDatabase" parent="." instance=ExtResource("13_gg5wp")] unique_name_in_owner = true -EnemyList = Array[PackedScene]([ExtResource("14_8yr1q"), ExtResource("15_xrwyx"), ExtResource("16_ekls2")]) -SpawnRate = PackedFloat32Array(1, 1, 0.05) +EnemyList = Array[PackedScene]([]) +SpawnRate = PackedFloat32Array(1) diff --git a/src/map/dungeon/floors/Floor17.tscn b/src/map/dungeon/floors/Floor17.tscn index ad1dd384..e0d8dd8e 100644 --- a/src/map/dungeon/floors/Floor17.tscn +++ b/src/map/dungeon/floors/Floor17.tscn @@ -1,4 +1,4 @@ -[gd_scene load_steps=18 format=3 uid="uid://dnrbqkv438tjx"] +[gd_scene load_steps=15 format=3 uid="uid://dnrbqkv438tjx"] [ext_resource type="Script" uid="uid://dwt6302nsf4vq" path="res://src/map/dungeon/code/DungeonFloor.cs" id="1_7fjdy"] [ext_resource type="Script" uid="uid://b1x125h0tya2w" path="res://addons/SimpleDungeons/DungeonGenerator3D.gd" id="2_neo74"] @@ -6,16 +6,13 @@ [ext_resource type="PackedScene" uid="uid://dra1mqcqhw7g0" path="res://src/map/dungeon/scenes/Set B/21. Gallery Room.tscn" id="4_m0j7h"] [ext_resource type="PackedScene" uid="uid://cq82tqhlshn1k" path="res://src/map/dungeon/scenes/Set B/22. Pit Room B.tscn" id="5_vfchv"] [ext_resource type="PackedScene" uid="uid://utaqo4hl68yw" path="res://src/map/dungeon/scenes/Set B/23. Antechamber 4.tscn" id="6_dn13w"] -[ext_resource type="PackedScene" uid="uid://bhqmpgpegcuu5" path="res://src/map/dungeon/scenes/Set B/24. BalconyRoom 2.tscn" id="7_i6jge"] +[ext_resource type="PackedScene" uid="uid://bhqmpgpegcuu5" path="res://src/map/dungeon/scenes/Set B/24. Balcony Room 2.tscn" id="7_i6jge"] [ext_resource type="PackedScene" uid="uid://dbfkpodwvxmfe" path="res://src/map/dungeon/scenes/Set B/25. Pedestal Room.tscn" id="8_kg1wb"] [ext_resource type="PackedScene" uid="uid://b8tiuu3l181ke" path="res://src/map/dungeon/scenes/Set B/28. Long Room B.tscn" id="9_f0vei"] [ext_resource type="PackedScene" uid="uid://5cstpejxygy6" path="res://src/map/dungeon/scenes/Set B/29. Column Circle Room.tscn" id="10_id8cu"] [ext_resource type="PackedScene" uid="uid://02v033xrh6xi" path="res://src/map/dungeon/scenes/Set B/38. Floor Exit B.tscn" id="11_0tado"] [ext_resource type="PackedScene" uid="uid://dooy8nc5pgaxm" path="res://src/map/dungeon/scenes/Set B/37. Corridor 2.tscn" id="12_wm2qn"] [ext_resource type="PackedScene" uid="uid://dbvr8ewajja6a" path="res://src/enemy/EnemyDatabase.tscn" id="13_f1owy"] -[ext_resource type="PackedScene" uid="uid://feegakykn3fv" path="res://src/enemy/enemy_types/5. ballos/Ballos.tscn" id="14_nosar"] -[ext_resource type="PackedScene" uid="uid://dlw5cvutvypxn" path="res://src/enemy/enemy_types/6. chariot/Chariot.tscn" id="15_e85mv"] -[ext_resource type="PackedScene" uid="uid://bkj1kyqu7reul" path="res://src/enemy/enemy_types/13. gold sproingy/GoldSproingy.tscn" id="16_u4fkt"] [sub_resource type="NavigationMesh" id="NavigationMesh_gqi8w"] border_size = 1.0 @@ -40,5 +37,5 @@ generate_on_ready = false [node name="EnemyDatabase" parent="." instance=ExtResource("13_f1owy")] unique_name_in_owner = true -EnemyList = Array[PackedScene]([ExtResource("14_nosar"), ExtResource("15_e85mv"), ExtResource("16_u4fkt")]) -SpawnRate = PackedFloat32Array(1, 1, 0.05) +EnemyList = Array[PackedScene]([]) +SpawnRate = PackedFloat32Array() diff --git a/src/map/dungeon/floors/Floor18.tscn b/src/map/dungeon/floors/Floor18.tscn index 2ac76886..43836e3f 100644 --- a/src/map/dungeon/floors/Floor18.tscn +++ b/src/map/dungeon/floors/Floor18.tscn @@ -1,4 +1,4 @@ -[gd_scene load_steps=18 format=3 uid="uid://cgoogenmugoti"] +[gd_scene load_steps=15 format=3 uid="uid://cgoogenmugoti"] [ext_resource type="Script" uid="uid://dwt6302nsf4vq" path="res://src/map/dungeon/code/DungeonFloor.cs" id="1_ksrny"] [ext_resource type="Script" uid="uid://b1x125h0tya2w" path="res://addons/SimpleDungeons/DungeonGenerator3D.gd" id="2_a76ri"] @@ -6,16 +6,13 @@ [ext_resource type="PackedScene" uid="uid://dra1mqcqhw7g0" path="res://src/map/dungeon/scenes/Set B/21. Gallery Room.tscn" id="4_ya360"] [ext_resource type="PackedScene" uid="uid://cq82tqhlshn1k" path="res://src/map/dungeon/scenes/Set B/22. Pit Room B.tscn" id="5_7enj5"] [ext_resource type="PackedScene" uid="uid://utaqo4hl68yw" path="res://src/map/dungeon/scenes/Set B/23. Antechamber 4.tscn" id="6_c5tc6"] -[ext_resource type="PackedScene" uid="uid://bhqmpgpegcuu5" path="res://src/map/dungeon/scenes/Set B/24. BalconyRoom 2.tscn" id="7_jcbwi"] +[ext_resource type="PackedScene" uid="uid://bhqmpgpegcuu5" path="res://src/map/dungeon/scenes/Set B/24. Balcony Room 2.tscn" id="7_jcbwi"] [ext_resource type="PackedScene" uid="uid://dbfkpodwvxmfe" path="res://src/map/dungeon/scenes/Set B/25. Pedestal Room.tscn" id="8_6fs7u"] [ext_resource type="PackedScene" uid="uid://b8tiuu3l181ke" path="res://src/map/dungeon/scenes/Set B/28. Long Room B.tscn" id="9_6ueav"] [ext_resource type="PackedScene" uid="uid://5cstpejxygy6" path="res://src/map/dungeon/scenes/Set B/29. Column Circle Room.tscn" id="10_ag0xh"] [ext_resource type="PackedScene" uid="uid://02v033xrh6xi" path="res://src/map/dungeon/scenes/Set B/38. Floor Exit B.tscn" id="11_380n2"] [ext_resource type="PackedScene" uid="uid://dooy8nc5pgaxm" path="res://src/map/dungeon/scenes/Set B/37. Corridor 2.tscn" id="12_tg7p8"] [ext_resource type="PackedScene" uid="uid://dbvr8ewajja6a" path="res://src/enemy/EnemyDatabase.tscn" id="13_avl22"] -[ext_resource type="PackedScene" uid="uid://feegakykn3fv" path="res://src/enemy/enemy_types/5. ballos/Ballos.tscn" id="14_qvjm8"] -[ext_resource type="PackedScene" uid="uid://dlw5cvutvypxn" path="res://src/enemy/enemy_types/6. chariot/Chariot.tscn" id="15_oelob"] -[ext_resource type="PackedScene" uid="uid://bkj1kyqu7reul" path="res://src/enemy/enemy_types/13. gold sproingy/GoldSproingy.tscn" id="16_5y8td"] [sub_resource type="NavigationMesh" id="NavigationMesh_gqi8w"] border_size = 1.0 @@ -40,5 +37,5 @@ generate_on_ready = false [node name="EnemyDatabase" parent="." instance=ExtResource("13_avl22")] unique_name_in_owner = true -EnemyList = Array[PackedScene]([ExtResource("14_qvjm8"), ExtResource("15_oelob"), ExtResource("16_5y8td")]) -SpawnRate = PackedFloat32Array(1, 1, 0.05) +EnemyList = Array[PackedScene]([]) +SpawnRate = PackedFloat32Array() diff --git a/src/map/dungeon/floors/Floor19.tscn b/src/map/dungeon/floors/Floor19.tscn index 4e7e9c66..cd4124ee 100644 --- a/src/map/dungeon/floors/Floor19.tscn +++ b/src/map/dungeon/floors/Floor19.tscn @@ -1,4 +1,4 @@ -[gd_scene load_steps=18 format=3 uid="uid://33lvido1dkbu"] +[gd_scene load_steps=15 format=3 uid="uid://33lvido1dkbu"] [ext_resource type="Script" uid="uid://dwt6302nsf4vq" path="res://src/map/dungeon/code/DungeonFloor.cs" id="1_8tkq2"] [ext_resource type="Script" uid="uid://b1x125h0tya2w" path="res://addons/SimpleDungeons/DungeonGenerator3D.gd" id="2_m0atb"] @@ -6,16 +6,13 @@ [ext_resource type="PackedScene" uid="uid://dra1mqcqhw7g0" path="res://src/map/dungeon/scenes/Set B/21. Gallery Room.tscn" id="4_rxmjy"] [ext_resource type="PackedScene" uid="uid://cq82tqhlshn1k" path="res://src/map/dungeon/scenes/Set B/22. Pit Room B.tscn" id="5_fnjfv"] [ext_resource type="PackedScene" uid="uid://utaqo4hl68yw" path="res://src/map/dungeon/scenes/Set B/23. Antechamber 4.tscn" id="6_dpaem"] -[ext_resource type="PackedScene" uid="uid://bhqmpgpegcuu5" path="res://src/map/dungeon/scenes/Set B/24. BalconyRoom 2.tscn" id="7_fp3ik"] +[ext_resource type="PackedScene" uid="uid://bhqmpgpegcuu5" path="res://src/map/dungeon/scenes/Set B/24. Balcony Room 2.tscn" id="7_fp3ik"] [ext_resource type="PackedScene" uid="uid://dbfkpodwvxmfe" path="res://src/map/dungeon/scenes/Set B/25. Pedestal Room.tscn" id="8_2od3c"] [ext_resource type="PackedScene" uid="uid://b8tiuu3l181ke" path="res://src/map/dungeon/scenes/Set B/28. Long Room B.tscn" id="9_twdga"] [ext_resource type="PackedScene" uid="uid://5cstpejxygy6" path="res://src/map/dungeon/scenes/Set B/29. Column Circle Room.tscn" id="10_2x4yi"] [ext_resource type="PackedScene" uid="uid://02v033xrh6xi" path="res://src/map/dungeon/scenes/Set B/38. Floor Exit B.tscn" id="11_gnpgo"] [ext_resource type="PackedScene" uid="uid://dooy8nc5pgaxm" path="res://src/map/dungeon/scenes/Set B/37. Corridor 2.tscn" id="12_rgx5c"] [ext_resource type="PackedScene" uid="uid://dbvr8ewajja6a" path="res://src/enemy/EnemyDatabase.tscn" id="13_8mkl1"] -[ext_resource type="PackedScene" uid="uid://feegakykn3fv" path="res://src/enemy/enemy_types/5. ballos/Ballos.tscn" id="14_yfr74"] -[ext_resource type="PackedScene" uid="uid://dlw5cvutvypxn" path="res://src/enemy/enemy_types/6. chariot/Chariot.tscn" id="15_g1pui"] -[ext_resource type="PackedScene" uid="uid://bkj1kyqu7reul" path="res://src/enemy/enemy_types/13. gold sproingy/GoldSproingy.tscn" id="16_lw3qy"] [sub_resource type="NavigationMesh" id="NavigationMesh_gqi8w"] border_size = 1.0 @@ -40,5 +37,5 @@ generate_on_ready = false [node name="EnemyDatabase" parent="." instance=ExtResource("13_8mkl1")] unique_name_in_owner = true -EnemyList = Array[PackedScene]([ExtResource("14_yfr74"), ExtResource("15_g1pui"), ExtResource("16_lw3qy")]) -SpawnRate = PackedFloat32Array(1, 1, 0.05) +EnemyList = Array[PackedScene]([]) +SpawnRate = PackedFloat32Array() diff --git a/src/map/dungeon/scenes/Set A/03. Antechamber A.tscn b/src/map/dungeon/scenes/Set A/03. Antechamber A.tscn index 382c3bd8..a38f26cc 100644 --- a/src/map/dungeon/scenes/Set A/03. Antechamber A.tscn +++ b/src/map/dungeon/scenes/Set A/03. Antechamber A.tscn @@ -1,7 +1,7 @@ [gd_scene load_steps=58 format=4 uid="uid://dpec2lbt83dhe"] [ext_resource type="Script" uid="uid://ce73fuh74l81l" path="res://addons/SimpleDungeons/DungeonRoom3D.gd" id="1_ho6e8"] -[ext_resource type="Script" uid="uid://daetb3e2nm56p" path="res://src/map/dungeon/code/DungeonRoom.cs" id="2_iwuh7"] +[ext_resource type="Script" uid="uid://dhollu4j3pynq" path="res://src/map/dungeon/code/MonsterRoom.cs" id="2_phhs1"] [ext_resource type="Texture2D" uid="uid://ba5yl0syukqtx" path="res://src/map/dungeon/models/Set A/03. Antechamber A/ANTECHAMBER_TYPE1_VER2_WALL TILE 1.jpg" id="3_isaec"] [ext_resource type="Texture2D" uid="uid://vtnruibl68fq" path="res://src/map/dungeon/models/Set A/03. Antechamber A/ANTECHAMBER_TYPE1_VER2_FLOOR1.jpg" id="4_5vwwt"] [ext_resource type="Texture2D" uid="uid://b21vqw03xewaq" path="res://src/map/dungeon/models/Set A/03. Antechamber A/ANTECHAMBER_TYPE1_VER2_TILE4.png" id="5_4tpx2"] @@ -665,97 +665,97 @@ size = Vector2(20, 16) [sub_resource type="BoxShape3D" id="BoxShape3D_24rcp"] size = Vector3(20, 8, 16) -[node name="Antechamber" type="Node3D"] +[node name="Antechamber A" type="Node3D"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 1.73082, 0, -1.86841) script = ExtResource("1_ho6e8") size_in_voxels = Vector3i(5, 1, 4) voxel_scale = Vector3(4, 4, 4) min_count = 1 -max_count = 3 +max_count = 2 -[node name="Antechamber" type="Node3D" parent="."] +[node name="Antechamber A" type="Node3D" parent="."] unique_name_in_owner = true -script = ExtResource("2_iwuh7") +script = ExtResource("2_phhs1") -[node name="StaticBody3D" type="StaticBody3D" parent="Antechamber"] +[node name="StaticBody3D" type="StaticBody3D" parent="Antechamber A"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -2.10505, -1.44377, 0.0953512) -[node name="ROOM" type="MeshInstance3D" parent="Antechamber/StaticBody3D"] +[node name="ROOM" type="MeshInstance3D" parent="Antechamber A/StaticBody3D"] transform = Transform3D(0.287429, 0, 0, 0, 0.287429, 0, 0, 0, 0.287429, 2.1526, 3.44987, -0.0743999) mesh = SubResource("ArrayMesh_6hbi1") skeleton = NodePath("") -[node name="CollisionShape3D2" type="CollisionShape3D" parent="Antechamber/StaticBody3D"] +[node name="CollisionShape3D2" type="CollisionShape3D" parent="Antechamber A/StaticBody3D"] transform = Transform3D(0.287429, 0, 0, 0, 0.287429, 0, 0, 0, 0.287429, 2.1526, 3.44987, -0.0743999) shape = SubResource("ConcavePolygonShape3D_p058w") -[node name="COLLISSION" type="MeshInstance3D" parent="Antechamber/StaticBody3D"] +[node name="COLLISSION" type="MeshInstance3D" parent="Antechamber A/StaticBody3D"] transform = Transform3D(1.62355, 0, 0, 0, 4.19561, 0, 0, 0, 1.62355, 10.2058, 3.511, -6.1488) visible = false mesh = SubResource("ArrayMesh_55u4n") skeleton = NodePath("") -[node name="CollisionShape3D" type="CollisionShape3D" parent="Antechamber/StaticBody3D"] +[node name="CollisionShape3D" type="CollisionShape3D" parent="Antechamber A/StaticBody3D"] transform = Transform3D(1.62355, 0, 0, 0, 4.19561, 0, 0, 0, 1.62355, 10.2058, 3.511, -6.1488) shape = SubResource("ConcavePolygonShape3D_h52xe") -[node name="ANTECHAMBER_TYPE1_VER2" type="Node3D" parent="Antechamber"] +[node name="ANTECHAMBER_TYPE1_VER2" type="Node3D" parent="Antechamber A"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 7.70655, -11.6936, -79.1431) -[node name="CORNER COLUMNS_001" type="MeshInstance3D" parent="Antechamber"] +[node name="CORNER COLUMNS_001" type="MeshInstance3D" parent="Antechamber A"] transform = Transform3D(0.288009, 0, 0, 0, 0.288009, 0, 0, 0, 0.288009, 0.0891531, 1.77935, 0.0355501) mesh = SubResource("ArrayMesh_w2tpb") skeleton = NodePath("") -[node name="CEILING EMBELESHMENT" type="MeshInstance3D" parent="Antechamber"] +[node name="CEILING EMBELESHMENT" type="MeshInstance3D" parent="Antechamber A"] transform = Transform3D(0.288009, 0, 0, 0, 0.288009, 0, 0, 0, 0.288009, 0.425653, 5.83982, -0.124549) mesh = SubResource("ArrayMesh_736vx") skeleton = NodePath("") -[node name="Pancaked Ways_005" type="MeshInstance3D" parent="Antechamber"] +[node name="Pancaked Ways_005" type="MeshInstance3D" parent="Antechamber A"] transform = Transform3D(-7.30095e-08, 0, 0.112906, 0, 0.0752327, 0, -0.204149, 0, -4.03782e-08, -1.91885, 1.76623, 7.68665) mesh = SubResource("ArrayMesh_py5b2") skeleton = NodePath("") -[node name="Pancaked Ways_006" type="MeshInstance3D" parent="Antechamber"] +[node name="Pancaked Ways_006" type="MeshInstance3D" parent="Antechamber A"] transform = Transform3D(7.30095e-08, 0, -0.112906, 0, 0.0752327, 0, 0.204149, 0, 4.03782e-08, 2.01945, 1.78046, -7.62065) mesh = SubResource("ArrayMesh_py5b2") skeleton = NodePath("") -[node name="PlayerSpawn" type="Marker3D" parent="Antechamber"] +[node name="PlayerSpawn" type="Marker3D" parent="Antechamber A"] unique_name_in_owner = true transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -8.61757, -1.89174, 0.580412) -[node name="ItemSpawnPoints" type="Node3D" parent="Antechamber"] +[node name="ItemSpawnPoints" type="Node3D" parent="Antechamber A"] unique_name_in_owner = true transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 2.00123, 0) -[node name="ItemSpawnPoint" type="Marker3D" parent="Antechamber/ItemSpawnPoints"] +[node name="ItemSpawnPoint" type="Marker3D" parent="Antechamber A/ItemSpawnPoints"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -2.09927, -3.217, -2.27499) -[node name="ItemSpawnPoint2" type="Marker3D" parent="Antechamber/ItemSpawnPoints"] +[node name="ItemSpawnPoint2" type="Marker3D" parent="Antechamber A/ItemSpawnPoints"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -2.09927, -3.217, 2.60611) -[node name="ItemSpawnPoint3" type="Marker3D" parent="Antechamber/ItemSpawnPoints"] +[node name="ItemSpawnPoint3" type="Marker3D" parent="Antechamber A/ItemSpawnPoints"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 4.93753, -3.217, 3.33261) -[node name="EnemySpawnPoints" type="Node3D" parent="Antechamber"] +[node name="EnemySpawnPoints" type="Node3D" parent="Antechamber A"] unique_name_in_owner = true transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 2.00123, 0) -[node name="EnemySpawn1" type="Marker3D" parent="Antechamber/EnemySpawnPoints"] +[node name="EnemySpawn1" type="Marker3D" parent="Antechamber A/EnemySpawnPoints"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -3.31537, -2.98, -2.27499) -[node name="EnemySpawn2" type="Marker3D" parent="Antechamber/EnemySpawnPoints"] +[node name="EnemySpawn2" type="Marker3D" parent="Antechamber A/EnemySpawnPoints"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 2.55793, -2.98, -2.27499) -[node name="EnemySpawn3" type="Marker3D" parent="Antechamber/EnemySpawnPoints"] +[node name="EnemySpawn3" type="Marker3D" parent="Antechamber A/EnemySpawnPoints"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 2.55793, -2.98, 2.77761) -[node name="ItemDatabase" parent="Antechamber" instance=ExtResource("17_25wvm")] +[node name="ItemDatabase" parent="Antechamber A" instance=ExtResource("17_25wvm")] unique_name_in_owner = true -[node name="TeleportSpawn" type="Marker3D" parent="Antechamber"] +[node name="TeleportSpawn" type="Marker3D" parent="Antechamber A"] unique_name_in_owner = true transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 5.33663, -1.49877, 0.845012) diff --git a/src/map/dungeon/scenes/Set A/04. Antechamber B.tscn b/src/map/dungeon/scenes/Set A/04. Antechamber B.tscn index 8a332559..b8a6a689 100644 --- a/src/map/dungeon/scenes/Set A/04. Antechamber B.tscn +++ b/src/map/dungeon/scenes/Set A/04. Antechamber B.tscn @@ -1,8 +1,8 @@ [gd_scene load_steps=84 format=4 uid="uid://i781lbf2wb22"] [ext_resource type="Script" uid="uid://ce73fuh74l81l" path="res://addons/SimpleDungeons/DungeonRoom3D.gd" id="1_owolg"] -[ext_resource type="Script" uid="uid://daetb3e2nm56p" path="res://src/map/dungeon/code/DungeonRoom.cs" id="2_557rl"] [ext_resource type="Texture2D" uid="uid://b3sg8oamch2i1" path="res://src/map/dungeon/models/Set A/04. Antechamber B/TREE_ROOM_VER2_STONE_PANEL_2png.png" id="2_q760f"] +[ext_resource type="Script" uid="uid://dhollu4j3pynq" path="res://src/map/dungeon/code/MonsterRoom.cs" id="2_xw2d6"] [ext_resource type="Texture2D" uid="uid://cbq0883cd15f1" path="res://src/map/dungeon/models/Set A/04. Antechamber B/TREE_ROOM_VER2_COLUMN.jpg" id="3_f73tr"] [ext_resource type="Texture2D" uid="uid://c0r4dms44wx08" path="res://src/map/dungeon/models/Set A/04. Antechamber B/TREE_ROOM_VER2_COLUM2N.png" id="4_qwvcf"] [ext_resource type="Texture2D" uid="uid://gkqp4camk1mo" path="res://src/map/dungeon/models/Set A/04. Antechamber B/TREE_ROOM_VER2_STONE_PANEL_1png.png" id="5_uvbeu"] @@ -1088,181 +1088,181 @@ size = Vector2(16, 16) [sub_resource type="BoxShape3D" id="BoxShape3D_5sviy"] size = Vector3(20, 8, 16) -[node name="DungeonRoom3D" type="Node3D"] +[node name="Antechamber B" type="Node3D"] script = ExtResource("1_owolg") size_in_voxels = Vector3i(5, 1, 4) voxel_scale = Vector3(4, 4, 4) min_count = 1 max_count = 2 -[node name="TreeRoom" type="Node3D" parent="."] -script = ExtResource("2_557rl") +[node name="Antechamber B" type="Node3D" parent="."] +script = ExtResource("2_xw2d6") -[node name="TREE_ROOM_VER2_1" type="Node3D" parent="TreeRoom"] +[node name="TREE_ROOM_VER2_1" type="Node3D" parent="Antechamber B"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 29.0197, -61.6663, -123.329) -[node name="Cube_013" type="MeshInstance3D" parent="TreeRoom/TREE_ROOM_VER2_1"] +[node name="Cube_013" type="MeshInstance3D" parent="Antechamber B/TREE_ROOM_VER2_1"] transform = Transform3D(0.0120302, 0.270411, 0.0983988, 0.276076, -0.038622, 0.0723847, 0.0811572, 0.0912983, -0.26082, -20.2849, 65.829, 130.736) mesh = SubResource("ArrayMesh_5lfkj") skeleton = NodePath("") -[node name="Cylinder_003" type="MeshInstance3D" parent="TreeRoom/TREE_ROOM_VER2_1"] +[node name="Cylinder_003" type="MeshInstance3D" parent="Antechamber B/TREE_ROOM_VER2_1"] transform = Transform3D(0.093781, 0, 0, 0, 0, -0.0844317, 0, 0.093781, 0, -37.6832, 63.1385, 116.621) mesh = SubResource("ArrayMesh_fhgm0") skeleton = NodePath("") -[node name="Cylinder_004" type="MeshInstance3D" parent="TreeRoom/TREE_ROOM_VER2_1"] +[node name="Cylinder_004" type="MeshInstance3D" parent="Antechamber B/TREE_ROOM_VER2_1"] transform = Transform3D(0.093781, 0, 0, 0, 0, -0.0844317, 0, 0.093781, 0, -20.1473, 63.1385, 116.437) mesh = SubResource("ArrayMesh_vt4y8") skeleton = NodePath("") -[node name="TREE + BLOCK\\" type="MeshInstance3D" parent="TreeRoom/TREE_ROOM_VER2_1"] +[node name="TREE + BLOCK\\" type="MeshInstance3D" parent="Antechamber B/TREE_ROOM_VER2_1"] transform = Transform3D(0.108167, 0.0160921, -0.26644, -0.0480183, 0.283968, -0.00234334, 0.26257, 0.0453023, 0.109332, -31.082, 63.5332, 129.85) mesh = SubResource("ArrayMesh_dxrrj") skeleton = NodePath("") -[node name="Pancaked Ways_001" type="MeshInstance3D" parent="TreeRoom/TREE_ROOM_VER2_1"] +[node name="Pancaked Ways_001" type="MeshInstance3D" parent="Antechamber B/TREE_ROOM_VER2_1"] transform = Transform3D(-0.204149, 0, -3.36485e-08, 0, 0.0752327, 0, 6.08412e-08, 0, -0.112906, -19.3504, 63.4798, 123.334) mesh = SubResource("ArrayMesh_jdcob") skeleton = NodePath("") -[node name="Pancaked Ways_002" type="MeshInstance3D" parent="TreeRoom/TREE_ROOM_VER2_1"] +[node name="Pancaked Ways_002" type="MeshInstance3D" parent="Antechamber B/TREE_ROOM_VER2_1"] transform = Transform3D(7.30095e-08, 0, -0.112906, 0, 0.0752327, 0, 0.204149, 0, 4.03782e-08, -31.0945, 63.4597, 115.702) mesh = SubResource("ArrayMesh_jdcob") skeleton = NodePath("") -[node name="Pancaked Ways_015" type="MeshInstance3D" parent="TreeRoom/TREE_ROOM_VER2_1"] +[node name="Pancaked Ways_015" type="MeshInstance3D" parent="Antechamber B/TREE_ROOM_VER2_1"] transform = Transform3D(0.204149, 0, 0, 0, 0.0752327, 0, 0, 0, 0.112906, -38.6644, 63.4577, 127.376) mesh = SubResource("ArrayMesh_jdcob") skeleton = NodePath("") -[node name="TREE + BLOCK\\_002" type="MeshInstance3D" parent="TreeRoom/TREE_ROOM_VER2_1"] +[node name="TREE + BLOCK\\_002" type="MeshInstance3D" parent="Antechamber B/TREE_ROOM_VER2_1"] transform = Transform3D(0.108167, 0.0160921, -0.26644, -0.0480183, 0.283968, -0.00234334, 0.26257, 0.0453023, 0.109332, -27.0425, 63.5332, 129.85) mesh = SubResource("ArrayMesh_8q33k") skeleton = NodePath("") -[node name="COLISION_001" type="Node3D" parent="TreeRoom/TREE_ROOM_VER2_1"] +[node name="COLISION_001" type="Node3D" parent="Antechamber B/TREE_ROOM_VER2_1"] transform = Transform3D(0.249554, 0, 0, 0, -10.8865, 0, 0, 0, 0.25, 17.1674, 69.9, 77.2533) -[node name="StaticBody3D" type="StaticBody3D" parent="TreeRoom/TREE_ROOM_VER2_1"] +[node name="StaticBody3D" type="StaticBody3D" parent="Antechamber B/TREE_ROOM_VER2_1"] -[node name="COLISSION" type="MeshInstance3D" parent="TreeRoom/TREE_ROOM_VER2_1/StaticBody3D"] +[node name="COLISSION" type="MeshInstance3D" parent="Antechamber B/TREE_ROOM_VER2_1/StaticBody3D"] transform = Transform3D(1.98349, 0, 0, 0, -6.00489, 0, 0, 0, 1.98349, -37.0274, 63.4974, 129.799) visible = false mesh = SubResource("ArrayMesh_q5h7n") skeleton = NodePath("") -[node name="CollisionShape3D" type="CollisionShape3D" parent="TreeRoom/TREE_ROOM_VER2_1/StaticBody3D"] +[node name="CollisionShape3D" type="CollisionShape3D" parent="Antechamber B/TREE_ROOM_VER2_1/StaticBody3D"] transform = Transform3D(1.98349, 0, 0, 0, -6.00489, 0, 0, 0, 1.98349, -37.8765, 63.4974, 131.055) shape = SubResource("ConcavePolygonShape3D_8p1kn") -[node name="COLISSION_001" type="MeshInstance3D" parent="TreeRoom/TREE_ROOM_VER2_1/StaticBody3D"] +[node name="COLISSION_001" type="MeshInstance3D" parent="Antechamber B/TREE_ROOM_VER2_1/StaticBody3D"] transform = Transform3D(1.27215, 0, 0, 0, -3.85135, 0, 0, 0, 1.27215, -37.0661, 63.4856, 117.223) visible = false mesh = SubResource("ArrayMesh_kkv3l") skeleton = NodePath("") -[node name="CollisionShape3D4" type="CollisionShape3D" parent="TreeRoom/TREE_ROOM_VER2_1/StaticBody3D"] +[node name="CollisionShape3D4" type="CollisionShape3D" parent="Antechamber B/TREE_ROOM_VER2_1/StaticBody3D"] transform = Transform3D(1.27215, 0, 0, 0, -3.85135, 0, 0, 0, 1.27215, -38.2887, 63.4856, 116.082) shape = SubResource("ConcavePolygonShape3D_f8ox8") -[node name="CollisionShape3D3" type="CollisionShape3D" parent="TreeRoom/TREE_ROOM_VER2_1/StaticBody3D"] +[node name="CollisionShape3D3" type="CollisionShape3D" parent="Antechamber B/TREE_ROOM_VER2_1/StaticBody3D"] transform = Transform3D(1.27215, 0, 0, 0, -3.85135, 0, 0, 0, 1.27215, -19.5796, 63.4856, 115.946) shape = SubResource("ConcavePolygonShape3D_4swpa") -[node name="CollisionShape3D2" type="CollisionShape3D" parent="TreeRoom/TREE_ROOM_VER2_1/StaticBody3D"] +[node name="CollisionShape3D2" type="CollisionShape3D" parent="Antechamber B/TREE_ROOM_VER2_1/StaticBody3D"] transform = Transform3D(1.27215, 0, 0, 0, -3.85135, 0, 0, 0, 1.27215, -20.0194, 63.4856, 130.009) shape = SubResource("ConcavePolygonShape3D_yav33") -[node name="ROOM_002" type="MeshInstance3D" parent="TreeRoom/TREE_ROOM_VER2_1/StaticBody3D"] +[node name="ROOM_002" type="MeshInstance3D" parent="Antechamber B/TREE_ROOM_VER2_1/StaticBody3D"] transform = Transform3D(0.359158, 0, 0, 0, 0.288074, 0, 0, 0, 0.287429, -28.9669, 64.8124, 124.579) mesh = SubResource("ArrayMesh_g6n65") skeleton = NodePath("") -[node name="CollisionShape3D5" type="CollisionShape3D" parent="TreeRoom/TREE_ROOM_VER2_1/StaticBody3D"] +[node name="CollisionShape3D5" type="CollisionShape3D" parent="Antechamber B/TREE_ROOM_VER2_1/StaticBody3D"] transform = Transform3D(0.359158, 0, 0, 0, 0.288074, 0, 0, 0, 0.287429, -28.9669, 64.8124, 124.579) shape = SubResource("ConcavePolygonShape3D_b3r1q") -[node name="ItemDatabase" parent="TreeRoom" instance=ExtResource("19_rlr0c")] +[node name="ItemDatabase" parent="Antechamber B" instance=ExtResource("19_rlr0c")] unique_name_in_owner = true -[node name="TeleportSpawn" type="Marker3D" parent="TreeRoom"] +[node name="TeleportSpawn" type="Marker3D" parent="Antechamber B"] unique_name_in_owner = true transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -6.37813, -1.65528, -4.78663) -[node name="CSGBox3D" type="CSGBox3D" parent="TreeRoom"] +[node name="CSGBox3D" type="CSGBox3D" parent="Antechamber B"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0.00840919, 1.19798, -0.0205792) visible = false operation = 1 flip_faces = true size = Vector3(20, 8, 16) -[node name="CSGBox2" type="CSGBox3D" parent="TreeRoom"] +[node name="CSGBox2" type="CSGBox3D" parent="Antechamber B"] transform = Transform3D(-4.37114e-08, -1, 0, 1, -4.37114e-08, 0, 0, 0, 1, -0.040301, 0.0305765, -8.19511) use_collision = true size = Vector3(4, 4, 0.5) material = SubResource("StandardMaterial3D_10ksi") -[node name="DOOR?" type="CSGBox3D" parent="TreeRoom/CSGBox2"] +[node name="DOOR?" type="CSGBox3D" parent="Antechamber B/CSGBox2"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0.0412114, -2.98023e-08, 0.0686455) material_override = SubResource("StandardMaterial3D_xqdoa") operation = 2 size = Vector3(4.10754, 4, 2) material = SubResource("StandardMaterial3D_bs0wy") -[node name="CSGBox3" type="CSGBox3D" parent="TreeRoom"] +[node name="CSGBox3" type="CSGBox3D" parent="Antechamber B"] transform = Transform3D(1.91069e-15, 4.37114e-08, 1, 1, -4.37114e-08, 0, 4.37114e-08, 1, -4.37114e-08, -10.0487, 0.0305765, 1.97372) use_collision = true size = Vector3(4, 4, 0.5) material = SubResource("StandardMaterial3D_10ksi") -[node name="DOOR?" type="CSGBox3D" parent="TreeRoom/CSGBox3"] +[node name="DOOR?" type="CSGBox3D" parent="Antechamber B/CSGBox3"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0.0412114, -2.98023e-08, 0.0686455) material_override = SubResource("StandardMaterial3D_xqdoa") operation = 2 size = Vector3(4.10754, 4, 2) material = SubResource("StandardMaterial3D_bs0wy") -[node name="CSGBox4" type="CSGBox3D" parent="TreeRoom"] +[node name="CSGBox4" type="CSGBox3D" parent="Antechamber B"] transform = Transform3D(1.91069e-15, 4.37114e-08, 1, 1, -4.37114e-08, 0, 4.37114e-08, 1, -4.37114e-08, 10.1889, 0.0305765, 1.97372) use_collision = true size = Vector3(4, 4, 0.5) material = SubResource("StandardMaterial3D_10ksi") -[node name="DOOR?" type="CSGBox3D" parent="TreeRoom/CSGBox4"] +[node name="DOOR?" type="CSGBox3D" parent="Antechamber B/CSGBox4"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0.0412114, -2.98023e-08, 0.0686455) material_override = SubResource("StandardMaterial3D_xqdoa") operation = 2 size = Vector3(4.10754, 4, 2) material = SubResource("StandardMaterial3D_bs0wy") -[node name="CSGBox3D2" type="CSGBox3D" parent="TreeRoom"] +[node name="CSGBox3D2" type="CSGBox3D" parent="Antechamber B"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -9.66985, -0.487564, 5.90555) material_override = SubResource("StandardMaterial3D_oy2lv") size = Vector3(0.207886, 1, 1) -[node name="PlayerSpawn" type="Marker3D" parent="TreeRoom"] +[node name="PlayerSpawn" type="Marker3D" parent="Antechamber B"] unique_name_in_owner = true transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 3.05117, -1.7174, -0.52877) -[node name="ItemSpawnPoints" type="Node3D" parent="TreeRoom"] +[node name="ItemSpawnPoints" type="Node3D" parent="Antechamber B"] unique_name_in_owner = true transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -0.274407, -0.866544, -0.860627) -[node name="ItemSpawnPoint" type="Marker3D" parent="TreeRoom/ItemSpawnPoints"] +[node name="ItemSpawnPoint" type="Marker3D" parent="Antechamber B/ItemSpawnPoints"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -2.48549, -0.129931, 0.745985) -[node name="ItemSpawnPoint2" type="Marker3D" parent="TreeRoom/ItemSpawnPoints"] +[node name="ItemSpawnPoint2" type="Marker3D" parent="Antechamber B/ItemSpawnPoints"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -0.0462846, 0.228239, 6.06625) -[node name="EnemySpawnPoints" type="Node3D" parent="TreeRoom"] +[node name="EnemySpawnPoints" type="Node3D" parent="Antechamber B"] unique_name_in_owner = true transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -0.274407, -0.866544, -0.860627) -[node name="EnemySpawn1" type="Marker3D" parent="TreeRoom/EnemySpawnPoints"] +[node name="EnemySpawn1" type="Marker3D" parent="Antechamber B/EnemySpawnPoints"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -7.21313, 0.119529, -1.78418) -[node name="EnemySpawn2" type="Marker3D" parent="TreeRoom/EnemySpawnPoints"] +[node name="EnemySpawn2" type="Marker3D" parent="Antechamber B/EnemySpawnPoints"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 5.27566, -0.246464, -3.5794) [node name="RemoveUnusedDoors" type="Node" parent="."] @@ -1280,13 +1280,13 @@ transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0.0507317, -3.54459, 0.878017 visible = false layers = 2 mesh = SubResource("PlaneMesh_qpvag") -skeleton = NodePath("../../TreeRoom") +skeleton = NodePath("../../Antechamber B") [node name="Minimap2" type="MeshInstance3D" parent="Minimap Manager"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0.0507317, -3.54078, 0.878017) layers = 4 mesh = SubResource("PlaneMesh_qpvag") -skeleton = NodePath("../../TreeRoom") +skeleton = NodePath("../../Antechamber B") [node name="CollisionShape3D" type="CollisionShape3D" parent="Minimap Manager"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0.187622, 1.94617, 0.0406494) diff --git a/src/map/dungeon/scenes/Set A/05. Pit Room A.tscn b/src/map/dungeon/scenes/Set A/05. Pit Room A.tscn index 0b454049..8c63be99 100644 --- a/src/map/dungeon/scenes/Set A/05. Pit Room A.tscn +++ b/src/map/dungeon/scenes/Set A/05. Pit Room A.tscn @@ -1,7 +1,7 @@ [gd_scene load_steps=87 format=4 uid="uid://cam640h4euewx"] [ext_resource type="Script" uid="uid://ce73fuh74l81l" path="res://addons/SimpleDungeons/DungeonRoom3D.gd" id="1_hww7y"] -[ext_resource type="Script" uid="uid://daetb3e2nm56p" path="res://src/map/dungeon/code/DungeonRoom.cs" id="2_abm0b"] +[ext_resource type="Script" uid="uid://dhollu4j3pynq" path="res://src/map/dungeon/code/MonsterRoom.cs" id="2_et5yn"] [ext_resource type="Texture2D" uid="uid://yv16a32nmuwg" path="res://src/map/dungeon/models/Set A/05. Pit Room/PIT_ROOM_VER2_tile2.png" id="2_hnabh"] [ext_resource type="Texture2D" uid="uid://ctmn1oyu2llal" path="res://src/map/dungeon/models/Set A/05. Pit Room/PIT_ROOM_VER2_CEILING_1.jpg" id="3_dl8qf"] [ext_resource type="Texture2D" uid="uid://bworoo3u2hlob" path="res://src/map/dungeon/models/Set A/05. Pit Room/PIT_ROOM_VER2_STONE_PANEL_2png.png" id="4_76lx1"] @@ -1143,244 +1143,244 @@ voxel_scale = Vector3(4, 4, 4) min_count = 1 max_count = 2 -[node name="PitRoom" type="Node3D" parent="."] +[node name="Pit Room A" type="Node3D" parent="."] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, -0.0629635) -script = ExtResource("2_abm0b") +script = ExtResource("2_et5yn") -[node name="PIT_ROOM_VER2" type="Node3D" parent="PitRoom"] +[node name="PIT_ROOM_VER2" type="Node3D" parent="Pit Room A"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -13.5541, -69.249, -123.875) -[node name="Pancaked Ways_003" type="MeshInstance3D" parent="PitRoom/PIT_ROOM_VER2"] +[node name="Pancaked Ways_003" type="MeshInstance3D" parent="Pit Room A/PIT_ROOM_VER2"] transform = Transform3D(0.204149, 0, 0, 0, 0.0752327, 0, 0, 0, 0.112906, -4.10248, 71.003, 125.952) mesh = SubResource("ArrayMesh_5bjls") skeleton = NodePath("") -[node name="Pancaked Ways_004" type="MeshInstance3D" parent="PitRoom/PIT_ROOM_VER2"] +[node name="Pancaked Ways_004" type="MeshInstance3D" parent="Pit Room A/PIT_ROOM_VER2"] transform = Transform3D(-7.30095e-08, 0, 0.112906, 0, 0.0752327, 0, -0.204149, 0, -4.03782e-08, 15.5374, 71.0033, 141.581) mesh = SubResource("ArrayMesh_5bjls") skeleton = NodePath("") -[node name="Pancaked Ways_005" type="MeshInstance3D" parent="PitRoom/PIT_ROOM_VER2"] +[node name="Pancaked Ways_005" type="MeshInstance3D" parent="Pit Room A/PIT_ROOM_VER2"] transform = Transform3D(7.30095e-08, 0, -0.112906, 0, 0.0752327, 0, 0.204149, 0, 4.03782e-08, 11.5071, 71.011, 106.289) mesh = SubResource("ArrayMesh_5bjls") skeleton = NodePath("") -[node name="Pancaked Ways_006" type="MeshInstance3D" parent="PitRoom/PIT_ROOM_VER2"] +[node name="Pancaked Ways_006" type="MeshInstance3D" parent="Pit Room A/PIT_ROOM_VER2"] transform = Transform3D(-0.204149, 0, -3.36485e-08, 0, 0.0752327, 0, 6.08412e-08, 0, -0.112906, 31.173, 70.9899, 121.927) mesh = SubResource("ArrayMesh_5bjls") skeleton = NodePath("") -[node name="COLISION_001" type="Node3D" parent="PitRoom/PIT_ROOM_VER2"] +[node name="COLISION_001" type="Node3D" parent="Pit Room A/PIT_ROOM_VER2"] transform = Transform3D(0.249554, 0, 0, 0, -10.8865, 0, 0, 0, 0.25, 17.1674, 69.9, 77.2533) -[node name="Cube_003" type="MeshInstance3D" parent="PitRoom/PIT_ROOM_VER2"] +[node name="Cube_003" type="MeshInstance3D" parent="Pit Room A/PIT_ROOM_VER2"] transform = Transform3D(-3.13664, -4.72924e-07, 3.87385e-07, 4.7362e-07, 0, 2.56553, -4.7362e-07, 3.13204, 5.84935e-14, 13.563, 76.4374, 124.054) mesh = SubResource("ArrayMesh_hshh1") skeleton = NodePath("") -[node name="Cube_004" type="MeshInstance3D" parent="PitRoom/PIT_ROOM_VER2"] +[node name="Cube_004" type="MeshInstance3D" parent="Pit Room A/PIT_ROOM_VER2"] transform = Transform3D(1.24877, 0.220866, 0.0102099, 0.220866, -1.24341, -0.116103, -0.0102099, 0.116103, -1.26283, 13.309, 73.8183, 123.522) mesh = SubResource("ArrayMesh_njoo1") skeleton = NodePath("") -[node name="Cube_012" type="MeshInstance3D" parent="PitRoom/PIT_ROOM_VER2"] +[node name="Cube_012" type="MeshInstance3D" parent="Pit Room A/PIT_ROOM_VER2"] transform = Transform3D(0.00672809, 0, -0.0334386, 0, 0.0306217, 0, 0.0265594, 0, 0.00847074, 13.5195, 68.0126, 123.939) mesh = SubResource("ArrayMesh_ng0b0") skeleton = NodePath("") -[node name="Cylinder_008" type="MeshInstance3D" parent="PitRoom/PIT_ROOM_VER2"] +[node name="Cylinder_008" type="MeshInstance3D" parent="Pit Room A/PIT_ROOM_VER2"] transform = Transform3D(-0.110086, 0, -0.00159837, 0, 0.805312, 0, 0.00163468, 0, -0.10764, 13.5467, 68.373, 123.933) mesh = SubResource("ArrayMesh_ds4ds") skeleton = NodePath("") -[node name="Cylinder_015" type="MeshInstance3D" parent="PitRoom/PIT_ROOM_VER2"] +[node name="Cylinder_015" type="MeshInstance3D" parent="Pit Room A/PIT_ROOM_VER2"] transform = Transform3D(0.437261, 0, 0, 0, 0.437261, 0, 0, 0, 0.437261, 13.434, 74.0971, 123.922) mesh = SubResource("ArrayMesh_xbc7p") skeleton = NodePath("") -[node name="Plane_001" type="MeshInstance3D" parent="PitRoom/PIT_ROOM_VER2"] +[node name="Plane_001" type="MeshInstance3D" parent="Pit Room A/PIT_ROOM_VER2"] transform = Transform3D(0.35533, 3.6323e-05, 0.0110679, 0.00179067, 8.83612e-05, -2.19625, -3.67678e-05, 0.355334, 0.000545011, 11.361, 73.2534, 122.44) mesh = SubResource("ArrayMesh_f3bwt") skeleton = NodePath("") -[node name="Plane_002" type="MeshInstance3D" parent="PitRoom/PIT_ROOM_VER2"] +[node name="Plane_002" type="MeshInstance3D" parent="Pit Room A/PIT_ROOM_VER2"] transform = Transform3D(0.241682, 0.0250986, 0.568008, 0.0951006, -0.0782176, -1.41383, 0.00556974, 0.24645, -0.506564, 11.386, 75.0384, 125.699) mesh = SubResource("ArrayMesh_03t00") skeleton = NodePath("") -[node name="Plane_003" type="MeshInstance3D" parent="PitRoom/PIT_ROOM_VER2"] +[node name="Plane_003" type="MeshInstance3D" parent="Pit Room A/PIT_ROOM_VER2"] transform = Transform3D(0.207677, -0.0804686, -0.826493, -0.128434, 0.0383252, -1.37545, 0.0886588, 0.244011, -0.0565229, 15.5417, 75.5415, 124.701) mesh = SubResource("ArrayMesh_6rdxf") skeleton = NodePath("") -[node name="Plane_007" type="MeshInstance3D" parent="PitRoom/PIT_ROOM_VER2"] +[node name="Plane_007" type="MeshInstance3D" parent="Pit Room A/PIT_ROOM_VER2"] transform = Transform3D(0.238874, -0.061002, -0.506056, -0.0724989, 0.0453425, -1.51618, 0.0718932, 0.248411, 0.152478, 15.1604, 73.9398, 124.517) mesh = SubResource("ArrayMesh_qmp5p") skeleton = NodePath("") -[node name="Torus_002" type="MeshInstance3D" parent="PitRoom/PIT_ROOM_VER2"] +[node name="Torus_002" type="MeshInstance3D" parent="Pit Room A/PIT_ROOM_VER2"] transform = Transform3D(0.288009, 0, 0, 0, 0.288009, 0, 0, 0, 0.288009, 13.6401, 78.7813, 123.307) mesh = SubResource("ArrayMesh_kmpse") skeleton = NodePath("") -[node name="StaticBody3D" type="StaticBody3D" parent="PitRoom/PIT_ROOM_VER2"] +[node name="StaticBody3D" type="StaticBody3D" parent="Pit Room A/PIT_ROOM_VER2"] -[node name="COLLISSION" type="MeshInstance3D" parent="PitRoom/PIT_ROOM_VER2/StaticBody3D"] +[node name="COLLISSION" type="MeshInstance3D" parent="Pit Room A/PIT_ROOM_VER2/StaticBody3D"] transform = Transform3D(5.37627, 0, 0, 0, 11.3947, 0, 0, 0, 5.37627, 13.5592, 71.3781, 124.086) visible = false mesh = SubResource("ArrayMesh_b0vrd") skeleton = NodePath("") -[node name="CollisionShape3D" type="CollisionShape3D" parent="PitRoom/PIT_ROOM_VER2/StaticBody3D"] +[node name="CollisionShape3D" type="CollisionShape3D" parent="Pit Room A/PIT_ROOM_VER2/StaticBody3D"] transform = Transform3D(5.37627, 0, 0, 0, 11.3947, 0, 0, 0, 5.37627, 13.5592, 71.3781, 124.086) shape = SubResource("ConcavePolygonShape3D_26x7m") -[node name="ROOM_003" type="MeshInstance3D" parent="PitRoom/PIT_ROOM_VER2/StaticBody3D"] +[node name="ROOM_003" type="MeshInstance3D" parent="Pit Room A/PIT_ROOM_VER2/StaticBody3D"] transform = Transform3D(18, 0, 0, 0, 12.6632, 0, 0, 0, 18, 13.4949, 71.0702, 123.976) mesh = SubResource("ArrayMesh_dwb53") skeleton = NodePath("") -[node name="CollisionShape3D2" type="CollisionShape3D" parent="PitRoom/PIT_ROOM_VER2/StaticBody3D"] +[node name="CollisionShape3D2" type="CollisionShape3D" parent="Pit Room A/PIT_ROOM_VER2/StaticBody3D"] transform = Transform3D(18, 0, 0, 0, 12.6632, 0, 0, 0, 18, 13.4949, 71.0702, 123.976) shape = SubResource("ConcavePolygonShape3D_8vm10") -[node name="CollisionShape3D3" type="CollisionShape3D" parent="PitRoom/PIT_ROOM_VER2/StaticBody3D"] +[node name="CollisionShape3D3" type="CollisionShape3D" parent="Pit Room A/PIT_ROOM_VER2/StaticBody3D"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -1.87455, 73.283, 108.448) shape = SubResource("CylinderShape3D_uo0xi") -[node name="CollisionShape3D4" type="CollisionShape3D" parent="PitRoom/PIT_ROOM_VER2/StaticBody3D"] +[node name="CollisionShape3D4" type="CollisionShape3D" parent="Pit Room A/PIT_ROOM_VER2/StaticBody3D"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 4.39347, 73.283, 108.448) shape = SubResource("CylinderShape3D_uo0xi") -[node name="CollisionShape3D5" type="CollisionShape3D" parent="PitRoom/PIT_ROOM_VER2/StaticBody3D"] +[node name="CollisionShape3D5" type="CollisionShape3D" parent="Pit Room A/PIT_ROOM_VER2/StaticBody3D"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -1.95265, 73.283, 114.911) shape = SubResource("CylinderShape3D_uo0xi") -[node name="CollisionShape3D6" type="CollisionShape3D" parent="PitRoom/PIT_ROOM_VER2/StaticBody3D"] +[node name="CollisionShape3D6" type="CollisionShape3D" parent="Pit Room A/PIT_ROOM_VER2/StaticBody3D"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 22.7534, 73.283, 108.456) shape = SubResource("CylinderShape3D_uo0xi") -[node name="CollisionShape3D7" type="CollisionShape3D" parent="PitRoom/PIT_ROOM_VER2/StaticBody3D"] +[node name="CollisionShape3D7" type="CollisionShape3D" parent="Pit Room A/PIT_ROOM_VER2/StaticBody3D"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 28.6509, 73.283, 108.456) shape = SubResource("CylinderShape3D_uo0xi") -[node name="CollisionShape3D8" type="CollisionShape3D" parent="PitRoom/PIT_ROOM_VER2/StaticBody3D"] +[node name="CollisionShape3D8" type="CollisionShape3D" parent="Pit Room A/PIT_ROOM_VER2/StaticBody3D"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 28.8369, 73.283, 114.752) shape = SubResource("CylinderShape3D_uo0xi") -[node name="CollisionShape3D9" type="CollisionShape3D" parent="PitRoom/PIT_ROOM_VER2/StaticBody3D"] +[node name="CollisionShape3D9" type="CollisionShape3D" parent="Pit Room A/PIT_ROOM_VER2/StaticBody3D"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 28.8369, 73.283, 133.293) shape = SubResource("CylinderShape3D_uo0xi") -[node name="CollisionShape3D10" type="CollisionShape3D" parent="PitRoom/PIT_ROOM_VER2/StaticBody3D"] +[node name="CollisionShape3D10" type="CollisionShape3D" parent="Pit Room A/PIT_ROOM_VER2/StaticBody3D"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 28.8369, 73.283, 139.148) shape = SubResource("CylinderShape3D_uo0xi") -[node name="CollisionShape3D11" type="CollisionShape3D" parent="PitRoom/PIT_ROOM_VER2/StaticBody3D"] +[node name="CollisionShape3D11" type="CollisionShape3D" parent="Pit Room A/PIT_ROOM_VER2/StaticBody3D"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 22.7289, 73.283, 139.148) shape = SubResource("CylinderShape3D_uo0xi") -[node name="CollisionShape3D12" type="CollisionShape3D" parent="PitRoom/PIT_ROOM_VER2/StaticBody3D"] +[node name="CollisionShape3D12" type="CollisionShape3D" parent="Pit Room A/PIT_ROOM_VER2/StaticBody3D"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 4.00718, 73.283, 139.148) shape = SubResource("CylinderShape3D_uo0xi") -[node name="CollisionShape3D13" type="CollisionShape3D" parent="PitRoom/PIT_ROOM_VER2/StaticBody3D"] +[node name="CollisionShape3D13" type="CollisionShape3D" parent="Pit Room A/PIT_ROOM_VER2/StaticBody3D"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -1.99243, 73.283, 139.148) shape = SubResource("CylinderShape3D_uo0xi") -[node name="CollisionShape3D14" type="CollisionShape3D" parent="PitRoom/PIT_ROOM_VER2/StaticBody3D"] +[node name="CollisionShape3D14" type="CollisionShape3D" parent="Pit Room A/PIT_ROOM_VER2/StaticBody3D"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -1.99243, 73.283, 133.365) shape = SubResource("CylinderShape3D_uo0xi") -[node name="CSGBox3D" type="CSGBox3D" parent="PitRoom"] +[node name="CSGBox3D" type="CSGBox3D" parent="Pit Room A"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0.0496787, 4.31423, -0.266716) visible = false operation = 1 size = Vector3(36, 12, 35.4266) -[node name="CSGBox2" type="CSGBox3D" parent="PitRoom"] +[node name="CSGBox2" type="CSGBox3D" parent="Pit Room A"] transform = Transform3D(-4.37114e-08, -1, 0, 1, -4.37114e-08, 0, 0, 0, 1, 0.0660033, 0.0621085, 17.9484) use_collision = true size = Vector3(4, 4, 0.29248) material = SubResource("StandardMaterial3D_2xv0l") -[node name="DOOR?" type="CSGBox3D" parent="PitRoom/CSGBox2"] +[node name="DOOR?" type="CSGBox3D" parent="Pit Room A/CSGBox2"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0.00166607, -3.72529e-08, 0.612764) material_override = SubResource("StandardMaterial3D_eem4o") operation = 2 size = Vector3(4, 4, 2) material = SubResource("StandardMaterial3D_dd0w8") -[node name="CSGBox3" type="CSGBox3D" parent="PitRoom"] +[node name="CSGBox3" type="CSGBox3D" parent="Pit Room A"] transform = Transform3D(-4.37114e-08, -1, 0, 1, -4.37114e-08, 0, 0, 0, 1, 0.0660033, -0.0712214, -17.9307) use_collision = true size = Vector3(4, 4, 0.29248) material = SubResource("StandardMaterial3D_2xv0l") -[node name="DOOR?" type="CSGBox3D" parent="PitRoom/CSGBox3"] +[node name="DOOR?" type="CSGBox3D" parent="Pit Room A/CSGBox3"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0.00166607, -3.72529e-08, -0.291462) material_override = SubResource("StandardMaterial3D_eem4o") operation = 2 size = Vector3(4, 4, 1.27979) material = SubResource("StandardMaterial3D_dd0w8") -[node name="CSGBox4" type="CSGBox3D" parent="PitRoom"] +[node name="CSGBox4" type="CSGBox3D" parent="Pit Room A"] transform = Transform3D(1.91069e-15, 4.37114e-08, 1, 1, -4.37114e-08, 0, 4.37114e-08, 1, -4.37114e-08, 17.9379, -0.0712214, 0.0823821) use_collision = true size = Vector3(4, 4, 0.29248) material = SubResource("StandardMaterial3D_2xv0l") -[node name="DOOR?" type="CSGBox3D" parent="PitRoom/CSGBox4"] +[node name="DOOR?" type="CSGBox3D" parent="Pit Room A/CSGBox4"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0.00166607, -1.67638e-08, 0.550755) material_override = SubResource("StandardMaterial3D_eem4o") operation = 2 size = Vector3(4, 4, 2) material = SubResource("StandardMaterial3D_dd0w8") -[node name="CSGBox5" type="CSGBox3D" parent="PitRoom"] +[node name="CSGBox5" type="CSGBox3D" parent="Pit Room A"] transform = Transform3D(1.91069e-15, 4.37114e-08, 1, 1, -4.37114e-08, 0, 4.37114e-08, 1, -4.37114e-08, -17.9413, -0.0712214, 0.0823821) use_collision = true size = Vector3(4, 4, 0.29248) material = SubResource("StandardMaterial3D_2xv0l") -[node name="DOOR?" type="CSGBox3D" parent="PitRoom/CSGBox5"] +[node name="DOOR?" type="CSGBox3D" parent="Pit Room A/CSGBox5"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0.00166607, -6.51926e-08, -0.573383) material_override = SubResource("StandardMaterial3D_eem4o") operation = 2 size = Vector3(4, 4, 2) material = SubResource("StandardMaterial3D_dd0w8") -[node name="ItemSpawnPoints" type="Node3D" parent="PitRoom"] +[node name="ItemSpawnPoints" type="Node3D" parent="Pit Room A"] unique_name_in_owner = true transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0.764877, 4.39249, -0.482112) -[node name="ItemSpawnPoint" type="Marker3D" parent="PitRoom/ItemSpawnPoints"] +[node name="ItemSpawnPoint" type="Marker3D" parent="Pit Room A/ItemSpawnPoints"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -3.34155, -6.07459, -9.01409) -[node name="ItemSpawnPoint2" type="Marker3D" parent="PitRoom/ItemSpawnPoints"] +[node name="ItemSpawnPoint2" type="Marker3D" parent="Pit Room A/ItemSpawnPoints"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 6.43525, -6.07459, -9.01409) -[node name="ItemSpawnPoint3" type="Marker3D" parent="PitRoom/ItemSpawnPoints"] +[node name="ItemSpawnPoint3" type="Marker3D" parent="Pit Room A/ItemSpawnPoints"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 6.43525, -6.07459, 11.7575) -[node name="EnemySpawnPoints" type="Node3D" parent="PitRoom"] +[node name="EnemySpawnPoints" type="Node3D" parent="Pit Room A"] unique_name_in_owner = true transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0.764877, 4.39249, -0.482112) -[node name="Marker3D" type="Marker3D" parent="PitRoom/EnemySpawnPoints"] +[node name="Marker3D" type="Marker3D" parent="Pit Room A/EnemySpawnPoints"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 8.13979, -5.72487, 0) -[node name="Marker3D2" type="Marker3D" parent="PitRoom/EnemySpawnPoints"] +[node name="Marker3D2" type="Marker3D" parent="Pit Room A/EnemySpawnPoints"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -11.2311, -5.81234, 0) -[node name="ItemDatabase" parent="PitRoom" instance=ExtResource("19_yh0qc")] +[node name="ItemDatabase" parent="Pit Room A" instance=ExtResource("19_yh0qc")] unique_name_in_owner = true -[node name="TeleportSpawn" type="Marker3D" parent="PitRoom"] +[node name="TeleportSpawn" type="Marker3D" parent="Pit Room A"] unique_name_in_owner = true transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 6.86977, -1.3941, -5.82187) -[node name="PlayerSpawn" type="Marker3D" parent="PitRoom"] +[node name="PlayerSpawn" type="Marker3D" parent="Pit Room A"] unique_name_in_owner = true transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -8.76788, -1.76654, -10.184) diff --git a/src/map/dungeon/scenes/Set A/06. Balcony Room A.tscn b/src/map/dungeon/scenes/Set A/06. Balcony Room A.tscn index e465c89b..629f7c5b 100644 --- a/src/map/dungeon/scenes/Set A/06. Balcony Room A.tscn +++ b/src/map/dungeon/scenes/Set A/06. Balcony Room A.tscn @@ -1,8 +1,8 @@ [gd_scene load_steps=84 format=4 uid="uid://b7111krf365x0"] [ext_resource type="Script" uid="uid://ce73fuh74l81l" path="res://addons/SimpleDungeons/DungeonRoom3D.gd" id="1_jccmw"] -[ext_resource type="Script" uid="uid://daetb3e2nm56p" path="res://src/map/dungeon/code/DungeonRoom.cs" id="2_5p5p8"] [ext_resource type="Texture2D" uid="uid://bb7y5jjl32b11" path="res://src/map/dungeon/models/Set A/06. Balcony Room A/INNER_BALCONY_ROOM_VER2_STONE_PANEL_2png.png" id="2_40w7a"] +[ext_resource type="Script" uid="uid://dhollu4j3pynq" path="res://src/map/dungeon/code/MonsterRoom.cs" id="2_fedas"] [ext_resource type="Texture2D" uid="uid://1bmgm045nm7e" path="res://src/map/dungeon/models/Set A/06. Balcony Room A/INNER_BALCONY_ROOM_VER2_COLUMN.jpg" id="3_87bce"] [ext_resource type="Texture2D" uid="uid://dgceb3iovrvsf" path="res://src/map/dungeon/models/Set A/06. Balcony Room A/INNER_BALCONY_ROOM_VER2_WALL TILE 1.jpg" id="4_j2bdg"] [ext_resource type="Texture2D" uid="uid://b4b2quqq54n2h" path="res://src/map/dungeon/models/Set A/06. Balcony Room A/INNER_BALCONY_ROOM_VER2_HAND_CYCLE_MOTIF.png" id="5_ipyas"] @@ -890,7 +890,7 @@ size = Vector3(36, 8, 36) material = ExtResource("19_dmkqn") size = Vector2(36, 32) -[node name="DungeonRoom3D" type="Node3D"] +[node name="Balcony Room A" type="Node3D"] script = ExtResource("1_jccmw") size_in_voxels = Vector3i(9, 1, 8) voxel_scale = Vector3(4, 4, 4) @@ -899,7 +899,7 @@ max_count = 1 [node name="InnerBalcony" type="Node3D" parent="."] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, -0.041173) -script = ExtResource("2_5p5p8") +script = ExtResource("2_fedas") [node name="INNER_BALCONY_ROOM_VER2" type="Node3D" parent="InnerBalcony"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -15.5355, -69.5131, -79.2483) diff --git a/src/map/dungeon/scenes/Set A/07. Statue Room.tscn b/src/map/dungeon/scenes/Set A/07. Statue Room.tscn index 5ac3f999..aabe0f70 100644 --- a/src/map/dungeon/scenes/Set A/07. Statue Room.tscn +++ b/src/map/dungeon/scenes/Set A/07. Statue Room.tscn @@ -1,7 +1,7 @@ [gd_scene load_steps=88 format=4 uid="uid://vdhl32je6hq2"] [ext_resource type="Script" uid="uid://ce73fuh74l81l" path="res://addons/SimpleDungeons/DungeonRoom3D.gd" id="1_j1kxr"] -[ext_resource type="Script" uid="uid://daetb3e2nm56p" path="res://src/map/dungeon/code/DungeonRoom.cs" id="2_6qgti"] +[ext_resource type="Script" uid="uid://dhollu4j3pynq" path="res://src/map/dungeon/code/MonsterRoom.cs" id="2_6xco5"] [ext_resource type="Texture2D" uid="uid://dytao2mlwn70b" path="res://src/map/dungeon/models/Set A/07. Statue Room/ANTECHAMBER_TYPE2_VER3_STONE_PANEL_2png.png" id="3_po4ye"] [ext_resource type="Texture2D" uid="uid://donkyolj48lnx" path="res://src/map/dungeon/models/Set A/07. Statue Room/ANTECHAMBER_TYPE2_VER3_SA003.jpg" id="4_u2s1f"] [ext_resource type="Texture2D" uid="uid://dq85on808gpsv" path="res://src/map/dungeon/models/Set A/07. Statue Room/ANTECHAMBER_TYPE2_VER3_PIPE.jpg" id="5_5jr8j"] @@ -1688,151 +1688,151 @@ size = Vector2(16, 16) [sub_resource type="BoxShape3D" id="BoxShape3D_grw58"] size = Vector3(16.0326, 8.01392, 2007.07) -[node name="DungeonRoom3D" type="Node3D"] +[node name="Statue Room" type="Node3D"] script = ExtResource("1_j1kxr") size_in_voxels = Vector3i(4, 1, 4) voxel_scale = Vector3(4, 4, 4) min_count = 1 max_count = 2 -[node name="Antechamber2" type="Node3D" parent="."] -script = ExtResource("2_6qgti") +[node name="Statue Room" type="Node3D" parent="."] +script = ExtResource("2_6xco5") -[node name="ANTECHAMBER_TYPE2_VER3" type="Node3D" parent="Antechamber2"] +[node name="ANTECHAMBER_TYPE2_VER3" type="Node3D" parent="Statue Room"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 29.032, -61.655, -91.209) -[node name="Cube_001" type="MeshInstance3D" parent="Antechamber2/ANTECHAMBER_TYPE2_VER3"] +[node name="Cube_001" type="MeshInstance3D" parent="Statue Room/ANTECHAMBER_TYPE2_VER3"] transform = Transform3D(0.0120302, 0.270411, 0.0983988, 0.276076, -0.038622, 0.0723847, 0.0811572, 0.0912983, -0.26082, -22.3328, 65.829, 98.5483) mesh = SubResource("ArrayMesh_nenor") skeleton = NodePath("") -[node name="Cube_017" type="MeshInstance3D" parent="Antechamber2/ANTECHAMBER_TYPE2_VER3"] +[node name="Cube_017" type="MeshInstance3D" parent="Statue Room/ANTECHAMBER_TYPE2_VER3"] transform = Transform3D(0.0120302, 0.270411, 0.0983988, 0.276076, -0.038622, 0.0723847, 0.0811572, 0.0912983, -0.26082, -22.3328, 65.829, 98.5624) mesh = SubResource("ArrayMesh_68by5") skeleton = NodePath("") -[node name="Cube_033" type="MeshInstance3D" parent="Antechamber2/ANTECHAMBER_TYPE2_VER3"] +[node name="Cube_033" type="MeshInstance3D" parent="Statue Room/ANTECHAMBER_TYPE2_VER3"] transform = Transform3D(-0.103845, -0.00255301, 0.117282, 0.00321695, 0.156512, 0.00625532, -0.117266, 0.00655439, -0.103687, -30.0059, 61.4612, 96.8417) mesh = SubResource("ArrayMesh_pqpuv") skeleton = NodePath("") -[node name="Cylinder_001" type="MeshInstance3D" parent="Antechamber2/ANTECHAMBER_TYPE2_VER3"] +[node name="Cylinder_001" type="MeshInstance3D" parent="Statue Room/ANTECHAMBER_TYPE2_VER3"] transform = Transform3D(0.093781, 0, 0, 0, 0, -0.0844317, 0, 0.093781, 0, -22.1325, 63.1385, 84.2559) mesh = SubResource("ArrayMesh_0lj1n") skeleton = NodePath("") -[node name="Cylinder_002" type="MeshInstance3D" parent="Antechamber2/ANTECHAMBER_TYPE2_VER3"] +[node name="Cylinder_002" type="MeshInstance3D" parent="Statue Room/ANTECHAMBER_TYPE2_VER3"] transform = Transform3D(0.093781, 0, 0, 0, 0, -0.0844317, 0, 0.093781, 0, -35.8326, 63.1385, 84.2559) mesh = SubResource("ArrayMesh_kw2sm") skeleton = NodePath("") -[node name="TREE + BLOCK\\_001" type="MeshInstance3D" parent="Antechamber2/ANTECHAMBER_TYPE2_VER3"] +[node name="TREE + BLOCK\\_001" type="MeshInstance3D" parent="Statue Room/ANTECHAMBER_TYPE2_VER3"] transform = Transform3D(0.108167, 0.0160921, -0.26644, -0.0480183, 0.283968, -0.00234334, 0.26257, 0.0453023, 0.109332, -29.0904, 63.5332, 97.6621) mesh = SubResource("ArrayMesh_gcwa5") skeleton = NodePath("") -[node name="Pancaked Ways_010" type="MeshInstance3D" parent="Antechamber2/ANTECHAMBER_TYPE2_VER3"] +[node name="Pancaked Ways_010" type="MeshInstance3D" parent="Statue Room/ANTECHAMBER_TYPE2_VER3"] transform = Transform3D(-0.204149, 0, -3.36485e-08, 0, 0.0752327, 0, 6.08412e-08, 0, -0.112906, -21.3765, 63.4652, 91.1622) mesh = SubResource("ArrayMesh_mtmxo") skeleton = NodePath("") -[node name="Pancaked Ways_011" type="MeshInstance3D" parent="Antechamber2/ANTECHAMBER_TYPE2_VER3"] +[node name="Pancaked Ways_011" type="MeshInstance3D" parent="Statue Room/ANTECHAMBER_TYPE2_VER3"] transform = Transform3D(7.30095e-08, 0, -0.112906, 0, 0.0752327, 0, 0.204149, 0, 4.03782e-08, -32.9629, 63.4496, 83.5084) mesh = SubResource("ArrayMesh_mtmxo") skeleton = NodePath("") -[node name="COLISION_001" type="Node3D" parent="Antechamber2/ANTECHAMBER_TYPE2_VER3"] +[node name="COLISION_001" type="Node3D" parent="Statue Room/ANTECHAMBER_TYPE2_VER3"] transform = Transform3D(0.249554, 0, 0, 0, -10.8865, 0, 0, 0, 0.25, 17.1674, 69.9, 77.2533) -[node name="StaticBody3D" type="StaticBody3D" parent="Antechamber2/ANTECHAMBER_TYPE2_VER3"] +[node name="StaticBody3D" type="StaticBody3D" parent="Statue Room/ANTECHAMBER_TYPE2_VER3"] -[node name="CollisionShape3D4" type="CollisionShape3D" parent="Antechamber2/ANTECHAMBER_TYPE2_VER3/StaticBody3D"] +[node name="CollisionShape3D4" type="CollisionShape3D" parent="Statue Room/ANTECHAMBER_TYPE2_VER3/StaticBody3D"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -35.7138, 62.2013, 84.3621) shape = SubResource("ConcavePolygonShape3D_fclon") -[node name="CollisionShape3D3" type="CollisionShape3D" parent="Antechamber2/ANTECHAMBER_TYPE2_VER3/StaticBody3D"] +[node name="CollisionShape3D3" type="CollisionShape3D" parent="Statue Room/ANTECHAMBER_TYPE2_VER3/StaticBody3D"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -22.2403, 62.2013, 84.3621) shape = SubResource("ConcavePolygonShape3D_htawk") -[node name="COLISSION_003" type="MeshInstance3D" parent="Antechamber2/ANTECHAMBER_TYPE2_VER3/StaticBody3D"] +[node name="COLISSION_003" type="MeshInstance3D" parent="Statue Room/ANTECHAMBER_TYPE2_VER3/StaticBody3D"] transform = Transform3D(1.98349, 0, 0, 0, -7.00202, 0, 0, 0, 1.98349, -30.3962, 63.6483, 97.2109) visible = false mesh = SubResource("ArrayMesh_hgmod") skeleton = NodePath("") -[node name="ROOM_001" type="MeshInstance3D" parent="Antechamber2/ANTECHAMBER_TYPE2_VER3/StaticBody3D"] +[node name="ROOM_001" type="MeshInstance3D" parent="Statue Room/ANTECHAMBER_TYPE2_VER3/StaticBody3D"] transform = Transform3D(0.287344, 0, 0, 0, 0.287443, 0, 0, 0, 0.287429, -29.2239, 64.6884, 92.1383) mesh = SubResource("ArrayMesh_x57sa") skeleton = NodePath("") -[node name="CollisionShape3D2" type="CollisionShape3D" parent="Antechamber2/ANTECHAMBER_TYPE2_VER3/StaticBody3D"] +[node name="CollisionShape3D2" type="CollisionShape3D" parent="Statue Room/ANTECHAMBER_TYPE2_VER3/StaticBody3D"] transform = Transform3D(0.287344, 0, 0, 0, 0.287443, 0, 0, 0, 0.287429, -29.2239, 64.6884, 92.1383) shape = SubResource("ConcavePolygonShape3D_btjq4") -[node name="StaticBody3D2" type="StaticBody3D" parent="Antechamber2/ANTECHAMBER_TYPE2_VER3"] +[node name="StaticBody3D2" type="StaticBody3D" parent="Statue Room/ANTECHAMBER_TYPE2_VER3"] -[node name="CollisionShape3D" type="CollisionShape3D" parent="Antechamber2/ANTECHAMBER_TYPE2_VER3/StaticBody3D2"] +[node name="CollisionShape3D" type="CollisionShape3D" parent="Statue Room/ANTECHAMBER_TYPE2_VER3/StaticBody3D2"] transform = Transform3D(1.98349, 0, 0, 0, -7.00202, 0, 0, 0, 1.98349, -28.9901, 62.3076, 97.3185) shape = SubResource("BoxShape3D_sq4wy") -[node name="CSGBox3D" type="CSGBox3D" parent="Antechamber2"] +[node name="CSGBox3D" type="CSGBox3D" parent="Statue Room"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -1.09117, 1.83591, 0.143657) visible = false operation = 1 flip_faces = true size = Vector3(16, 8, 16) -[node name="CSGBox2" type="CSGBox3D" parent="Antechamber2"] +[node name="CSGBox2" type="CSGBox3D" parent="Statue Room"] transform = Transform3D(1.91069e-15, 4.37114e-08, 1, 1, -4.37114e-08, 0, 4.37114e-08, 1, -4.37114e-08, 8.04886, 0.0211899, 1.9332) use_collision = true size = Vector3(4, 4, 0.5) material = SubResource("StandardMaterial3D_3mejj") -[node name="DOOR?1" type="CSGBox3D" parent="Antechamber2/CSGBox2"] +[node name="DOOR?1" type="CSGBox3D" parent="Statue Room/CSGBox2"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -0.0955904, 0, 0.0686455) material_override = SubResource("StandardMaterial3D_2xt56") operation = 2 size = Vector3(5.55383, 4, 2) material = SubResource("StandardMaterial3D_a7x8v") -[node name="CSGBox" type="CSGBox3D" parent="Antechamber2"] +[node name="CSGBox" type="CSGBox3D" parent="Statue Room"] transform = Transform3D(-4.37114e-08, -1, 0, 1, -4.37114e-08, 0, 0, 0, 1, -1.89702, 0.0119586, -8.00157) use_collision = true size = Vector3(4, 4, 0.5) material = SubResource("StandardMaterial3D_3mejj") -[node name="DOOR?1" type="CSGBox3D" parent="Antechamber2/CSGBox"] +[node name="DOOR?1" type="CSGBox3D" parent="Statue Room/CSGBox"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -0.0487772, 0.0442526, 0.0686455) material_override = SubResource("StandardMaterial3D_2xt56") operation = 2 size = Vector3(4, 4, 2) material = SubResource("StandardMaterial3D_a7x8v") -[node name="PlayerSpawn" type="Marker3D" parent="Antechamber2"] +[node name="PlayerSpawn" type="Marker3D" parent="Statue Room"] unique_name_in_owner = true transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -0.336617, -1.37707, 0.928175) -[node name="ItemSpawnPoints" type="Node3D" parent="Antechamber2"] +[node name="ItemSpawnPoints" type="Node3D" parent="Statue Room"] unique_name_in_owner = true transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -25.114, 0.496096, 10.8555) -[node name="ItemSpawnPoint" type="Marker3D" parent="Antechamber2/ItemSpawnPoints"] +[node name="ItemSpawnPoint" type="Marker3D" parent="Statue Room/ItemSpawnPoints"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 20.4261, -1.87126, -14.9165) -[node name="ItemSpawnPoint3" type="Marker3D" parent="Antechamber2/ItemSpawnPoints"] +[node name="ItemSpawnPoint3" type="Marker3D" parent="Statue Room/ItemSpawnPoints"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 28.37, -1.58527, -14.1998) -[node name="EnemySpawnPoints" type="Node3D" parent="Antechamber2"] +[node name="EnemySpawnPoints" type="Node3D" parent="Statue Room"] unique_name_in_owner = true transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -25.114, 0.496096, 10.8555) -[node name="EnemySpawn1" type="Marker3D" parent="Antechamber2/EnemySpawnPoints"] +[node name="EnemySpawn1" type="Marker3D" parent="Statue Room/EnemySpawnPoints"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 23.9514, -2.12568, -13.2894) -[node name="ItemDatabase" parent="Antechamber2" instance=ExtResource("23_rhlsp")] +[node name="ItemDatabase" parent="Statue Room" instance=ExtResource("23_rhlsp")] unique_name_in_owner = true -[node name="TeleportSpawn" type="Marker3D" parent="Antechamber2"] +[node name="TeleportSpawn" type="Marker3D" parent="Statue Room"] unique_name_in_owner = true transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 2.74798, -1.55568, 2.8662) @@ -1851,13 +1851,13 @@ transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -1.07721, -1.68247, 0.149613) visible = false layers = 2 mesh = SubResource("PlaneMesh_qxc34") -skeleton = NodePath("../../Antechamber2") +skeleton = NodePath("../../Statue Room") [node name="Minimap2" type="MeshInstance3D" parent="Minimap Manager"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -1.07721, -1.4635, 0.149613) layers = 4 mesh = SubResource("PlaneMesh_qxc34") -skeleton = NodePath("../../Antechamber2") +skeleton = NodePath("../../Statue Room") [node name="CollisionShape3D" type="CollisionShape3D" parent="Minimap Manager"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -1.03888, 0.0590906, 995.718) diff --git a/src/map/dungeon/scenes/Set A/08. BasinRoom.tscn b/src/map/dungeon/scenes/Set A/08. BasinRoom.tscn index 88e0a1f8..fab34aac 100644 --- a/src/map/dungeon/scenes/Set A/08. BasinRoom.tscn +++ b/src/map/dungeon/scenes/Set A/08. BasinRoom.tscn @@ -1,7 +1,7 @@ [gd_scene load_steps=65 format=4 uid="uid://b82dx66mgs2d7"] [ext_resource type="Script" uid="uid://ce73fuh74l81l" path="res://addons/SimpleDungeons/DungeonRoom3D.gd" id="1_0qew1"] -[ext_resource type="Script" uid="uid://daetb3e2nm56p" path="res://src/map/dungeon/code/DungeonRoom.cs" id="2_dthr7"] +[ext_resource type="Script" uid="uid://dhollu4j3pynq" path="res://src/map/dungeon/code/MonsterRoom.cs" id="2_pu81k"] [ext_resource type="Texture2D" uid="uid://0s6f8h4dyhsx" path="res://src/map/dungeon/models/Set A/08. Basin Room/BASIN_ROOM_VER2_concrete_0003_color_1k.png" id="2_td7cv"] [ext_resource type="Texture2D" uid="uid://ja1f8fjlvn88" path="res://src/map/dungeon/models/Set A/08. Basin Room/BASIN_ROOM_VER2_mother.png" id="3_fplhk"] [ext_resource type="Texture2D" uid="uid://del2dfj3etokd" path="res://src/map/dungeon/textures/BLOCKED-DOOR_REGULAR.png" id="3_xx585"] @@ -723,10 +723,10 @@ script = ExtResource("1_0qew1") size_in_voxels = Vector3i(5, 1, 4) voxel_scale = Vector3(4, 4, 4) min_count = 1 -max_count = 3 +max_count = 2 [node name="BasinRoom" type="Node3D" parent="."] -script = ExtResource("2_dthr7") +script = ExtResource("2_pu81k") [node name="BASIN_ROOM_VER2" type="Node3D" parent="BasinRoom"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 3.59871, -11.707, -102.46) diff --git a/src/map/dungeon/scenes/Set A/09. Column Room.tscn b/src/map/dungeon/scenes/Set A/09. Column Room.tscn index 09ec18a7..cfae3b16 100644 --- a/src/map/dungeon/scenes/Set A/09. Column Room.tscn +++ b/src/map/dungeon/scenes/Set A/09. Column Room.tscn @@ -1,7 +1,7 @@ [gd_scene load_steps=106 format=4 uid="uid://c1qicmrcg6q6x"] [ext_resource type="Script" uid="uid://ce73fuh74l81l" path="res://addons/SimpleDungeons/DungeonRoom3D.gd" id="1_x1cte"] -[ext_resource type="Script" uid="uid://daetb3e2nm56p" path="res://src/map/dungeon/code/DungeonRoom.cs" id="2_g5xc4"] +[ext_resource type="Script" uid="uid://dhollu4j3pynq" path="res://src/map/dungeon/code/MonsterRoom.cs" id="2_lij04"] [ext_resource type="Texture2D" uid="uid://b2h2devo04do7" path="res://src/map/dungeon/models/Set A/09. Column Room/COLUMN_ROOM_VER3_COLUMN-DARKER.png" id="7_uspsn"] [ext_resource type="Texture2D" uid="uid://dafrf8sqqrhlr" path="res://src/map/dungeon/models/Set A/09. Column Room/COLUMN_ROOM_VER3_effed-TILES-2.png" id="8_hk2oq"] [ext_resource type="Texture2D" uid="uid://cg2mvnq7f8uhj" path="res://src/map/dungeon/models/Set A/09. Column Room/COLUMN_ROOM_VER3_WALL TILE 1.jpg" id="9_r0ib2"] @@ -1530,15 +1530,15 @@ albedo_texture = ExtResource("23_feo0n") shading_mode = 0 albedo_texture = ExtResource("23_feo0n") -[node name="DungeonRoom3D" type="Node3D"] +[node name="Column Room" type="Node3D"] script = ExtResource("1_x1cte") size_in_voxels = Vector3i(12, 1, 7) voxel_scale = Vector3(4, 4, 4) min_count = 1 -max_count = 2 +max_count = 1 [node name="ColumnRoom" type="Node3D" parent="."] -script = ExtResource("2_g5xc4") +script = ExtResource("2_lij04") [node name="PlayerSpawn" type="Marker3D" parent="ColumnRoom"] unique_name_in_owner = true diff --git a/src/map/dungeon/scenes/Set A/10. Item Transfer Room.tscn b/src/map/dungeon/scenes/Set A/10. Item Transfer Room.tscn index ee4978bc..45ab548e 100644 --- a/src/map/dungeon/scenes/Set A/10. Item Transfer Room.tscn +++ b/src/map/dungeon/scenes/Set A/10. Item Transfer Room.tscn @@ -1,7 +1,7 @@ [gd_scene load_steps=159 format=4 uid="uid://dn5546yqyntfr"] [ext_resource type="Script" uid="uid://ce73fuh74l81l" path="res://addons/SimpleDungeons/DungeonRoom3D.gd" id="1_7tf58"] -[ext_resource type="Script" uid="uid://daetb3e2nm56p" path="res://src/map/dungeon/code/DungeonRoom.cs" id="2_u717m"] +[ext_resource type="Script" uid="uid://dhollu4j3pynq" path="res://src/map/dungeon/code/MonsterRoom.cs" id="2_xx257"] [ext_resource type="Texture2D" uid="uid://c8xws50jtdmp5" path="res://src/map/dungeon/models/Set A/10. Item Transfer Room/10_A1_ITEM_TRANSFER_ROOM_A_download.jpg" id="3_xx257"] [ext_resource type="Texture2D" uid="uid://krsdfn2w6we" path="res://src/map/dungeon/models/Set A/10. Item Transfer Room/10_A1_ITEM_TRANSFER_ROOM_A_WALL TILE 1.jpg" id="4_6p8o4"] [ext_resource type="Texture2D" uid="uid://cb558hgcp6ogq" path="res://src/map/dungeon/models/Set A/10. Item Transfer Room/10_A1_ITEM_TRANSFER_ROOM_A_FLOOR1.jpg" id="5_dus7i"] @@ -2239,309 +2239,309 @@ size = Vector2(20, 16) [sub_resource type="BoxShape3D" id="BoxShape3D_24rcp"] size = Vector3(20, 8, 16) -[node name="Antechamber" type="Node3D"] +[node name="Item Transfer Room" type="Node3D"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 1.73082, 0, -1.86841) script = ExtResource("1_7tf58") size_in_voxels = Vector3i(3, 1, 4) voxel_scale = Vector3(4, 4, 4) min_count = 1 -max_count = 3 +max_count = 1 -[node name="Antechamber" type="Node3D" parent="."] +[node name="Item Transfer Room" type="Node3D" parent="."] unique_name_in_owner = true -script = ExtResource("2_u717m") +script = ExtResource("2_xx257") -[node name="Room" type="Node3D" parent="Antechamber"] +[node name="Room" type="Node3D" parent="Item Transfer Room"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 3.68985, 0.186505, 3) -[node name="10_A1_ITEM_TRANSFER_ROOM_A" type="Node3D" parent="Antechamber/Room"] +[node name="10_A1_ITEM_TRANSFER_ROOM_A" type="Node3D" parent="Item Transfer Room/Room"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, -11.855, -127.03) -[node name="CHEST" type="MeshInstance3D" parent="Antechamber/Room/10_A1_ITEM_TRANSFER_ROOM_A"] +[node name="CHEST" type="MeshInstance3D" parent="Item Transfer Room/Room/10_A1_ITEM_TRANSFER_ROOM_A"] transform = Transform3D(0.288009, 0, 0, 0, 0.288009, 0, 0, 0, 0.288009, -3.86731, 11.8628, 128.236) mesh = SubResource("ArrayMesh_uf0oq") skeleton = NodePath("") -[node name="ROOM_002" type="MeshInstance3D" parent="Antechamber/Room/10_A1_ITEM_TRANSFER_ROOM_A"] +[node name="ROOM_002" type="MeshInstance3D" parent="Item Transfer Room/Room/10_A1_ITEM_TRANSFER_ROOM_A"] transform = Transform3D(0.287315, 0, 0, 0, 0.288009, 0, 0, 0, 0.383238, -3.66941, 13.6997, 124.011) mesh = SubResource("ArrayMesh_lw0kh") skeleton = NodePath("") -[node name="StaticBody3D" type="StaticBody3D" parent="Antechamber/Room/10_A1_ITEM_TRANSFER_ROOM_A/ROOM_002"] +[node name="StaticBody3D" type="StaticBody3D" parent="Item Transfer Room/Room/10_A1_ITEM_TRANSFER_ROOM_A/ROOM_002"] -[node name="CollisionShape3D" type="CollisionShape3D" parent="Antechamber/Room/10_A1_ITEM_TRANSFER_ROOM_A/ROOM_002/StaticBody3D"] +[node name="CollisionShape3D" type="CollisionShape3D" parent="Item Transfer Room/Room/10_A1_ITEM_TRANSFER_ROOM_A/ROOM_002/StaticBody3D"] shape = SubResource("ConcavePolygonShape3D_xx257") -[node name="Cylinder" type="MeshInstance3D" parent="Antechamber/Room/10_A1_ITEM_TRANSFER_ROOM_A"] +[node name="Cylinder" type="MeshInstance3D" parent="Item Transfer Room/Room/10_A1_ITEM_TRANSFER_ROOM_A"] transform = Transform3D(0.288009, 0, 0, 0, 0.288009, 0, 0, 0, 0.288009, -3.40348, 12.4789, 128.369) mesh = SubResource("ArrayMesh_hqemx") skeleton = NodePath("") -[node name="Cylinder_001" type="MeshInstance3D" parent="Antechamber/Room/10_A1_ITEM_TRANSFER_ROOM_A"] +[node name="Cylinder_001" type="MeshInstance3D" parent="Item Transfer Room/Room/10_A1_ITEM_TRANSFER_ROOM_A"] transform = Transform3D(0.285219, 0.0182497, -0.0355845, -0.0168656, 0.287258, 0.0121392, 0.0362609, -0.00993781, 0.285544, -3.44086, 12.5486, 125.934) mesh = SubResource("ArrayMesh_4pu81") skeleton = NodePath("") -[node name="CORNER COLUMNS" type="MeshInstance3D" parent="Antechamber/Room/10_A1_ITEM_TRANSFER_ROOM_A"] +[node name="CORNER COLUMNS" type="MeshInstance3D" parent="Item Transfer Room/Room/10_A1_ITEM_TRANSFER_ROOM_A"] transform = Transform3D(0.288009, 0, 0, 0, 0.288009, 0, 0, 0, 0.288009, 0.806285, 13.7767, 130.433) mesh = SubResource("ArrayMesh_g13uf") skeleton = NodePath("") -[node name="tree" type="MeshInstance3D" parent="Antechamber/Room/10_A1_ITEM_TRANSFER_ROOM_A"] +[node name="tree" type="MeshInstance3D" parent="Item Transfer Room/Room/10_A1_ITEM_TRANSFER_ROOM_A"] transform = Transform3D(0.288009, 0, 0, 0, 0.288009, 0, 0, 0, 0.288009, -3.48539, 13.7203, 129.982) mesh = SubResource("ArrayMesh_k4eiv") skeleton = NodePath("") -[node name="COLLISION" type="MeshInstance3D" parent="Antechamber/Room/10_A1_ITEM_TRANSFER_ROOM_A"] +[node name="COLLISION" type="MeshInstance3D" parent="Item Transfer Room/Room/10_A1_ITEM_TRANSFER_ROOM_A"] transform = Transform3D(5.57054, 0, 0, 0, 0.25, 0, 0, 0, 0.239837, -3.83045, 9.05105, 129.819) visible = false mesh = SubResource("ArrayMesh_8x3cg") skeleton = NodePath("") -[node name="StaticBody3D" type="StaticBody3D" parent="Antechamber/Room/10_A1_ITEM_TRANSFER_ROOM_A/COLLISION"] +[node name="StaticBody3D" type="StaticBody3D" parent="Item Transfer Room/Room/10_A1_ITEM_TRANSFER_ROOM_A/COLLISION"] -[node name="CollisionShape3D" type="CollisionShape3D" parent="Antechamber/Room/10_A1_ITEM_TRANSFER_ROOM_A/COLLISION/StaticBody3D"] +[node name="CollisionShape3D" type="CollisionShape3D" parent="Item Transfer Room/Room/10_A1_ITEM_TRANSFER_ROOM_A/COLLISION/StaticBody3D"] shape = SubResource("ConcavePolygonShape3D_6p8o4") -[node name="Pancaked Ways_003" type="MeshInstance3D" parent="Antechamber/Room/10_A1_ITEM_TRANSFER_ROOM_A"] +[node name="Pancaked Ways_003" type="MeshInstance3D" parent="Item Transfer Room/Room/10_A1_ITEM_TRANSFER_ROOM_A"] transform = Transform3D(7.30095e-08, 0, -0.112906, 0, 0.0752327, 0, 0.204149, 0, 4.03782e-08, -5.65749, 13.4811, 116.347) mesh = SubResource("ArrayMesh_k822d") skeleton = NodePath("") -[node name="tree_001" type="MeshInstance3D" parent="Antechamber/Room/10_A1_ITEM_TRANSFER_ROOM_A"] +[node name="tree_001" type="MeshInstance3D" parent="Item Transfer Room/Room/10_A1_ITEM_TRANSFER_ROOM_A"] transform = Transform3D(0.288009, 0, 0, 0, 0.288009, 0, 0, 0, 0.288009, -3.48539, 13.7203, 129.982) mesh = SubResource("ArrayMesh_xum5q") skeleton = NodePath("") -[node name="tree_002" type="MeshInstance3D" parent="Antechamber/Room/10_A1_ITEM_TRANSFER_ROOM_A"] +[node name="tree_002" type="MeshInstance3D" parent="Item Transfer Room/Room/10_A1_ITEM_TRANSFER_ROOM_A"] transform = Transform3D(0.288009, 0, 0, 0, 0.288009, 0, 0, 0, 0.288009, -3.48539, 13.7203, 129.982) mesh = SubResource("ArrayMesh_dhrad") skeleton = NodePath("") -[node name="tree_003" type="MeshInstance3D" parent="Antechamber/Room/10_A1_ITEM_TRANSFER_ROOM_A"] +[node name="tree_003" type="MeshInstance3D" parent="Item Transfer Room/Room/10_A1_ITEM_TRANSFER_ROOM_A"] transform = Transform3D(0.288009, 0, 0, 0, 0.288009, 0, 0, 0, 0.288009, -3.48539, 13.7203, 129.982) mesh = SubResource("ArrayMesh_e0kjc") skeleton = NodePath("") -[node name="tree_004" type="MeshInstance3D" parent="Antechamber/Room/10_A1_ITEM_TRANSFER_ROOM_A"] +[node name="tree_004" type="MeshInstance3D" parent="Item Transfer Room/Room/10_A1_ITEM_TRANSFER_ROOM_A"] transform = Transform3D(0.288009, 0, 0, 0, 0.288009, 0, 0, 0, 0.288009, -3.48539, 13.7203, 129.982) mesh = SubResource("ArrayMesh_vwu2b") skeleton = NodePath("") -[node name="tree_005" type="MeshInstance3D" parent="Antechamber/Room/10_A1_ITEM_TRANSFER_ROOM_A"] +[node name="tree_005" type="MeshInstance3D" parent="Item Transfer Room/Room/10_A1_ITEM_TRANSFER_ROOM_A"] transform = Transform3D(0.288009, 0, 0, 0, 0.288009, 0, 0, 0, 0.288009, -3.48539, 13.7203, 129.982) mesh = SubResource("ArrayMesh_0lvar") skeleton = NodePath("") -[node name="tree_006" type="MeshInstance3D" parent="Antechamber/Room/10_A1_ITEM_TRANSFER_ROOM_A"] +[node name="tree_006" type="MeshInstance3D" parent="Item Transfer Room/Room/10_A1_ITEM_TRANSFER_ROOM_A"] transform = Transform3D(0.288009, 0, 0, 0, 0.288009, 0, 0, 0, 0.288009, -3.48539, 13.7203, 129.982) mesh = SubResource("ArrayMesh_2efvc") skeleton = NodePath("") -[node name="tree_007" type="MeshInstance3D" parent="Antechamber/Room/10_A1_ITEM_TRANSFER_ROOM_A"] +[node name="tree_007" type="MeshInstance3D" parent="Item Transfer Room/Room/10_A1_ITEM_TRANSFER_ROOM_A"] transform = Transform3D(0.288009, 0, 0, 0, 0.288009, 0, 0, 0, 0.288009, -3.48539, 13.7203, 129.982) mesh = SubResource("ArrayMesh_2xtkb") skeleton = NodePath("") -[node name="tree_008" type="MeshInstance3D" parent="Antechamber/Room/10_A1_ITEM_TRANSFER_ROOM_A"] +[node name="tree_008" type="MeshInstance3D" parent="Item Transfer Room/Room/10_A1_ITEM_TRANSFER_ROOM_A"] transform = Transform3D(0.288009, 0, 0, 0, 0.288009, 0, 0, 0, 0.288009, -3.48539, 13.7203, 129.982) mesh = SubResource("ArrayMesh_6os3w") skeleton = NodePath("") -[node name="tree_009" type="MeshInstance3D" parent="Antechamber/Room/10_A1_ITEM_TRANSFER_ROOM_A"] +[node name="tree_009" type="MeshInstance3D" parent="Item Transfer Room/Room/10_A1_ITEM_TRANSFER_ROOM_A"] transform = Transform3D(0.288009, 0, 0, 0, 0.288009, 0, 0, 0, 0.288009, -3.48539, 13.7203, 129.982) mesh = SubResource("ArrayMesh_22vsh") skeleton = NodePath("") -[node name="tree_010" type="MeshInstance3D" parent="Antechamber/Room/10_A1_ITEM_TRANSFER_ROOM_A"] +[node name="tree_010" type="MeshInstance3D" parent="Item Transfer Room/Room/10_A1_ITEM_TRANSFER_ROOM_A"] transform = Transform3D(0.288009, 0, 0, 0, 0.288009, 0, 0, 0, 0.288009, -3.48539, 13.7203, 129.982) mesh = SubResource("ArrayMesh_dxhlx") skeleton = NodePath("") -[node name="tree_011" type="MeshInstance3D" parent="Antechamber/Room/10_A1_ITEM_TRANSFER_ROOM_A"] +[node name="tree_011" type="MeshInstance3D" parent="Item Transfer Room/Room/10_A1_ITEM_TRANSFER_ROOM_A"] transform = Transform3D(0.288009, 0, 0, 0, 0.288009, 0, 0, 0, 0.288009, -3.48539, 13.7203, 129.982) mesh = SubResource("ArrayMesh_i2wtx") skeleton = NodePath("") -[node name="tree_012" type="MeshInstance3D" parent="Antechamber/Room/10_A1_ITEM_TRANSFER_ROOM_A"] +[node name="tree_012" type="MeshInstance3D" parent="Item Transfer Room/Room/10_A1_ITEM_TRANSFER_ROOM_A"] transform = Transform3D(0.288009, 0, 0, 0, 0.288009, 0, 0, 0, 0.288009, -3.48539, 13.7203, 129.982) mesh = SubResource("ArrayMesh_bfhtm") skeleton = NodePath("") -[node name="tree_013" type="MeshInstance3D" parent="Antechamber/Room/10_A1_ITEM_TRANSFER_ROOM_A"] +[node name="tree_013" type="MeshInstance3D" parent="Item Transfer Room/Room/10_A1_ITEM_TRANSFER_ROOM_A"] transform = Transform3D(0.288009, 0, 0, 0, 0.288009, 0, 0, 0, 0.288009, -3.48539, 13.7203, 129.982) mesh = SubResource("ArrayMesh_y3cfd") skeleton = NodePath("") -[node name="tree_014" type="MeshInstance3D" parent="Antechamber/Room/10_A1_ITEM_TRANSFER_ROOM_A"] +[node name="tree_014" type="MeshInstance3D" parent="Item Transfer Room/Room/10_A1_ITEM_TRANSFER_ROOM_A"] transform = Transform3D(0.288009, 0, 0, 0, 0.288009, 0, 0, 0, 0.288009, -3.48539, 13.7203, 129.982) mesh = SubResource("ArrayMesh_ghqy6") skeleton = NodePath("") -[node name="tree_015" type="MeshInstance3D" parent="Antechamber/Room/10_A1_ITEM_TRANSFER_ROOM_A"] +[node name="tree_015" type="MeshInstance3D" parent="Item Transfer Room/Room/10_A1_ITEM_TRANSFER_ROOM_A"] transform = Transform3D(0.288009, 0, 0, 0, 0.288009, 0, 0, 0, 0.288009, -3.48539, 13.7203, 129.982) mesh = SubResource("ArrayMesh_6ty81") skeleton = NodePath("") -[node name="tree_016" type="MeshInstance3D" parent="Antechamber/Room/10_A1_ITEM_TRANSFER_ROOM_A"] +[node name="tree_016" type="MeshInstance3D" parent="Item Transfer Room/Room/10_A1_ITEM_TRANSFER_ROOM_A"] transform = Transform3D(0.288009, 0, 0, 0, 0.288009, 0, 0, 0, 0.288009, -3.48539, 13.7203, 129.982) mesh = SubResource("ArrayMesh_kufx0") skeleton = NodePath("") -[node name="tree_017" type="MeshInstance3D" parent="Antechamber/Room/10_A1_ITEM_TRANSFER_ROOM_A"] +[node name="tree_017" type="MeshInstance3D" parent="Item Transfer Room/Room/10_A1_ITEM_TRANSFER_ROOM_A"] transform = Transform3D(0.288009, 0, 0, 0, 0.288009, 0, 0, 0, 0.288009, -3.48539, 13.7203, 129.982) mesh = SubResource("ArrayMesh_sgcbs") skeleton = NodePath("") -[node name="tree_018" type="MeshInstance3D" parent="Antechamber/Room/10_A1_ITEM_TRANSFER_ROOM_A"] +[node name="tree_018" type="MeshInstance3D" parent="Item Transfer Room/Room/10_A1_ITEM_TRANSFER_ROOM_A"] transform = Transform3D(0.288009, 0, 0, 0, 0.288009, 0, 0, 0, 0.288009, -3.48539, 13.7203, 129.982) mesh = SubResource("ArrayMesh_rfbe6") skeleton = NodePath("") -[node name="tree_019" type="MeshInstance3D" parent="Antechamber/Room/10_A1_ITEM_TRANSFER_ROOM_A"] +[node name="tree_019" type="MeshInstance3D" parent="Item Transfer Room/Room/10_A1_ITEM_TRANSFER_ROOM_A"] transform = Transform3D(0.288009, 0, 0, 0, 0.288009, 0, 0, 0, 0.288009, -3.48539, 13.7203, 129.982) mesh = SubResource("ArrayMesh_vx4np") skeleton = NodePath("") -[node name="tree_020" type="MeshInstance3D" parent="Antechamber/Room/10_A1_ITEM_TRANSFER_ROOM_A"] +[node name="tree_020" type="MeshInstance3D" parent="Item Transfer Room/Room/10_A1_ITEM_TRANSFER_ROOM_A"] transform = Transform3D(0.288009, 0, 0, 0, 0.288009, 0, 0, 0, 0.288009, -3.48539, 13.7203, 129.982) mesh = SubResource("ArrayMesh_siso4") skeleton = NodePath("") -[node name="tree_021" type="MeshInstance3D" parent="Antechamber/Room/10_A1_ITEM_TRANSFER_ROOM_A"] +[node name="tree_021" type="MeshInstance3D" parent="Item Transfer Room/Room/10_A1_ITEM_TRANSFER_ROOM_A"] transform = Transform3D(0.288009, 0, 0, 0, 0.288009, 0, 0, 0, 0.288009, -3.48539, 13.7203, 129.982) mesh = SubResource("ArrayMesh_uelkw") skeleton = NodePath("") -[node name="tree_022" type="MeshInstance3D" parent="Antechamber/Room/10_A1_ITEM_TRANSFER_ROOM_A"] +[node name="tree_022" type="MeshInstance3D" parent="Item Transfer Room/Room/10_A1_ITEM_TRANSFER_ROOM_A"] transform = Transform3D(0.288009, 0, 0, 0, 0.288009, 0, 0, 0, 0.288009, -3.48539, 13.7203, 129.982) mesh = SubResource("ArrayMesh_87hvu") skeleton = NodePath("") -[node name="tree_023" type="MeshInstance3D" parent="Antechamber/Room/10_A1_ITEM_TRANSFER_ROOM_A"] +[node name="tree_023" type="MeshInstance3D" parent="Item Transfer Room/Room/10_A1_ITEM_TRANSFER_ROOM_A"] transform = Transform3D(0.288009, 0, 0, 0, 0.288009, 0, 0, 0, 0.288009, -3.48539, 13.7203, 129.982) mesh = SubResource("ArrayMesh_rg6mo") skeleton = NodePath("") -[node name="tree_024" type="MeshInstance3D" parent="Antechamber/Room/10_A1_ITEM_TRANSFER_ROOM_A"] +[node name="tree_024" type="MeshInstance3D" parent="Item Transfer Room/Room/10_A1_ITEM_TRANSFER_ROOM_A"] transform = Transform3D(0.288009, 0, 0, 0, 0.288009, 0, 0, 0, 0.288009, -3.48539, 13.7203, 129.982) mesh = SubResource("ArrayMesh_us1uq") skeleton = NodePath("") -[node name="tree_025" type="MeshInstance3D" parent="Antechamber/Room/10_A1_ITEM_TRANSFER_ROOM_A"] +[node name="tree_025" type="MeshInstance3D" parent="Item Transfer Room/Room/10_A1_ITEM_TRANSFER_ROOM_A"] transform = Transform3D(0.288009, 0, 0, 0, 0.288009, 0, 0, 0, 0.288009, -3.48539, 13.7203, 129.982) mesh = SubResource("ArrayMesh_lqlqg") skeleton = NodePath("") -[node name="tree_026" type="MeshInstance3D" parent="Antechamber/Room/10_A1_ITEM_TRANSFER_ROOM_A"] +[node name="tree_026" type="MeshInstance3D" parent="Item Transfer Room/Room/10_A1_ITEM_TRANSFER_ROOM_A"] transform = Transform3D(0.288009, 0, 0, 0, 0.288009, 0, 0, 0, 0.288009, -3.48539, 13.7203, 129.982) mesh = SubResource("ArrayMesh_a5wba") skeleton = NodePath("") -[node name="tree_027" type="Node3D" parent="Antechamber/Room/10_A1_ITEM_TRANSFER_ROOM_A"] +[node name="tree_027" type="Node3D" parent="Item Transfer Room/Room/10_A1_ITEM_TRANSFER_ROOM_A"] transform = Transform3D(0.288009, 0, 0, 0, 0.288009, 0, 0, 0, 0.288009, -3.48539, 13.7203, 129.982) -[node name="tree_028" type="MeshInstance3D" parent="Antechamber/Room/10_A1_ITEM_TRANSFER_ROOM_A"] +[node name="tree_028" type="MeshInstance3D" parent="Item Transfer Room/Room/10_A1_ITEM_TRANSFER_ROOM_A"] transform = Transform3D(0.288009, 0, 0, 0, 0.288009, 0, 0, 0, 0.288009, -3.48539, 13.7203, 129.982) mesh = SubResource("ArrayMesh_iwxfr") skeleton = NodePath("") -[node name="tree_029" type="MeshInstance3D" parent="Antechamber/Room/10_A1_ITEM_TRANSFER_ROOM_A"] +[node name="tree_029" type="MeshInstance3D" parent="Item Transfer Room/Room/10_A1_ITEM_TRANSFER_ROOM_A"] transform = Transform3D(0.288009, 0, 0, 0, 0.288009, 0, 0, 0, 0.288009, -3.48539, 13.7203, 129.982) mesh = SubResource("ArrayMesh_kww8k") skeleton = NodePath("") -[node name="tree_030" type="MeshInstance3D" parent="Antechamber/Room/10_A1_ITEM_TRANSFER_ROOM_A"] +[node name="tree_030" type="MeshInstance3D" parent="Item Transfer Room/Room/10_A1_ITEM_TRANSFER_ROOM_A"] transform = Transform3D(0.288009, 0, 0, 0, 0.288009, 0, 0, 0, 0.288009, -3.48539, 13.7203, 129.982) mesh = SubResource("ArrayMesh_wam6m") skeleton = NodePath("") -[node name="tree_031" type="MeshInstance3D" parent="Antechamber/Room/10_A1_ITEM_TRANSFER_ROOM_A"] +[node name="tree_031" type="MeshInstance3D" parent="Item Transfer Room/Room/10_A1_ITEM_TRANSFER_ROOM_A"] transform = Transform3D(0.288009, 0, 0, 0, 0.288009, 0, 0, 0, 0.288009, -3.48539, 13.7203, 129.982) mesh = SubResource("ArrayMesh_y2cty") skeleton = NodePath("") -[node name="tree_032" type="MeshInstance3D" parent="Antechamber/Room/10_A1_ITEM_TRANSFER_ROOM_A"] +[node name="tree_032" type="MeshInstance3D" parent="Item Transfer Room/Room/10_A1_ITEM_TRANSFER_ROOM_A"] transform = Transform3D(0.288009, 0, 0, 0, 0.288009, 0, 0, 0, 0.288009, -3.48539, 13.7203, 129.982) mesh = SubResource("ArrayMesh_sfumx") skeleton = NodePath("") -[node name="tree_033" type="MeshInstance3D" parent="Antechamber/Room/10_A1_ITEM_TRANSFER_ROOM_A"] +[node name="tree_033" type="MeshInstance3D" parent="Item Transfer Room/Room/10_A1_ITEM_TRANSFER_ROOM_A"] transform = Transform3D(0.288009, 0, 0, 0, 0.288009, 0, 0, 0, 0.288009, -3.48539, 13.7203, 129.982) mesh = SubResource("ArrayMesh_dhmce") skeleton = NodePath("") -[node name="tree_034" type="MeshInstance3D" parent="Antechamber/Room/10_A1_ITEM_TRANSFER_ROOM_A"] +[node name="tree_034" type="MeshInstance3D" parent="Item Transfer Room/Room/10_A1_ITEM_TRANSFER_ROOM_A"] transform = Transform3D(0.288009, 0, 0, 0, 0.288009, 0, 0, 0, 0.288009, -3.48539, 13.7203, 129.982) mesh = SubResource("ArrayMesh_t03ys") skeleton = NodePath("") -[node name="tree_035" type="MeshInstance3D" parent="Antechamber/Room/10_A1_ITEM_TRANSFER_ROOM_A"] +[node name="tree_035" type="MeshInstance3D" parent="Item Transfer Room/Room/10_A1_ITEM_TRANSFER_ROOM_A"] transform = Transform3D(0.288009, 0, 0, 0, 0.288009, 0, 0, 0, 0.288009, -3.48539, 13.7203, 129.982) mesh = SubResource("ArrayMesh_8ah44") skeleton = NodePath("") -[node name="tree_036" type="MeshInstance3D" parent="Antechamber/Room/10_A1_ITEM_TRANSFER_ROOM_A"] +[node name="tree_036" type="MeshInstance3D" parent="Item Transfer Room/Room/10_A1_ITEM_TRANSFER_ROOM_A"] transform = Transform3D(0.288009, 0, 0, 0, 0.288009, 0, 0, 0, 0.288009, -3.48539, 13.7203, 129.982) mesh = SubResource("ArrayMesh_skq6d") skeleton = NodePath("") -[node name="tree_037" type="MeshInstance3D" parent="Antechamber/Room/10_A1_ITEM_TRANSFER_ROOM_A"] +[node name="tree_037" type="MeshInstance3D" parent="Item Transfer Room/Room/10_A1_ITEM_TRANSFER_ROOM_A"] transform = Transform3D(0.288009, 0, 0, 0, 0.288009, 0, 0, 0, 0.288009, -3.48539, 13.7203, 129.982) mesh = SubResource("ArrayMesh_kkkvp") skeleton = NodePath("") -[node name="tree_038" type="MeshInstance3D" parent="Antechamber/Room/10_A1_ITEM_TRANSFER_ROOM_A"] +[node name="tree_038" type="MeshInstance3D" parent="Item Transfer Room/Room/10_A1_ITEM_TRANSFER_ROOM_A"] transform = Transform3D(0.288009, 0, 0, 0, 0.288009, 0, 0, 0, 0.288009, -3.48539, 13.7203, 129.982) mesh = SubResource("ArrayMesh_xh1kv") skeleton = NodePath("") -[node name="tree_039" type="MeshInstance3D" parent="Antechamber/Room/10_A1_ITEM_TRANSFER_ROOM_A"] +[node name="tree_039" type="MeshInstance3D" parent="Item Transfer Room/Room/10_A1_ITEM_TRANSFER_ROOM_A"] transform = Transform3D(0.288009, 0, 0, 0, 0.288009, 0, 0, 0, 0.288009, -3.48539, 13.7203, 129.982) mesh = SubResource("ArrayMesh_dfosu") skeleton = NodePath("") -[node name="tree_040" type="MeshInstance3D" parent="Antechamber/Room/10_A1_ITEM_TRANSFER_ROOM_A"] +[node name="tree_040" type="MeshInstance3D" parent="Item Transfer Room/Room/10_A1_ITEM_TRANSFER_ROOM_A"] transform = Transform3D(0.288009, 0, 0, 0, 0.288009, 0, 0, 0, 0.288009, -3.48539, 13.7203, 129.982) mesh = SubResource("ArrayMesh_ik0a7") skeleton = NodePath("") -[node name="tree_041" type="MeshInstance3D" parent="Antechamber/Room/10_A1_ITEM_TRANSFER_ROOM_A"] +[node name="tree_041" type="MeshInstance3D" parent="Item Transfer Room/Room/10_A1_ITEM_TRANSFER_ROOM_A"] transform = Transform3D(0.288009, 0, 0, 0, 0.288009, 0, 0, 0, 0.288009, -3.48539, 13.7203, 129.982) mesh = SubResource("ArrayMesh_26b67") skeleton = NodePath("") -[node name="tree_042" type="MeshInstance3D" parent="Antechamber/Room/10_A1_ITEM_TRANSFER_ROOM_A"] +[node name="tree_042" type="MeshInstance3D" parent="Item Transfer Room/Room/10_A1_ITEM_TRANSFER_ROOM_A"] transform = Transform3D(0.288009, 0, 0, 0, 0.288009, 0, 0, 0, 0.288009, -3.48539, 13.7203, 129.982) mesh = SubResource("ArrayMesh_pt4my") skeleton = NodePath("") -[node name="tree_043" type="MeshInstance3D" parent="Antechamber/Room/10_A1_ITEM_TRANSFER_ROOM_A"] +[node name="tree_043" type="MeshInstance3D" parent="Item Transfer Room/Room/10_A1_ITEM_TRANSFER_ROOM_A"] transform = Transform3D(0.288009, 0, 0, 0, 0.288009, 0, 0, 0, 0.288009, -3.48539, 13.7203, 129.982) mesh = SubResource("ArrayMesh_lqfds") skeleton = NodePath("") -[node name="tree_044" type="MeshInstance3D" parent="Antechamber/Room/10_A1_ITEM_TRANSFER_ROOM_A"] +[node name="tree_044" type="MeshInstance3D" parent="Item Transfer Room/Room/10_A1_ITEM_TRANSFER_ROOM_A"] transform = Transform3D(0.288009, 0, 0, 0, 0.288009, 0, 0, 0, 0.288009, -3.48539, 13.7203, 129.982) mesh = SubResource("ArrayMesh_fkoyn") skeleton = NodePath("") -[node name="PlayerSpawn" type="Marker3D" parent="Antechamber"] +[node name="PlayerSpawn" type="Marker3D" parent="Item Transfer Room"] unique_name_in_owner = true transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -8.61757, -1.89174, 0.580412) -[node name="ItemSpawnPoints" type="Node3D" parent="Antechamber"] +[node name="ItemSpawnPoints" type="Node3D" parent="Item Transfer Room"] unique_name_in_owner = true transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 2.00123, 0) -[node name="EnemySpawnPoints" type="Node3D" parent="Antechamber"] +[node name="EnemySpawnPoints" type="Node3D" parent="Item Transfer Room"] unique_name_in_owner = true transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 2.00123, 0) -[node name="ItemDatabase" parent="Antechamber" instance=ExtResource("16_rmjiw")] +[node name="ItemDatabase" parent="Item Transfer Room" instance=ExtResource("16_rmjiw")] unique_name_in_owner = true -[node name="TeleportSpawn" type="Marker3D" parent="Antechamber"] +[node name="TeleportSpawn" type="Marker3D" parent="Item Transfer Room"] unique_name_in_owner = true transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 5.33663, -1.49877, 0.845012) diff --git a/src/map/dungeon/scenes/Set A/11. Long Room.tscn b/src/map/dungeon/scenes/Set A/11. Long Room.tscn index 18c4c815..60cc29c0 100644 --- a/src/map/dungeon/scenes/Set A/11. Long Room.tscn +++ b/src/map/dungeon/scenes/Set A/11. Long Room.tscn @@ -1,7 +1,7 @@ [gd_scene load_steps=58 format=4 uid="uid://dhm2lyfkrjugf"] [ext_resource type="Script" uid="uid://ce73fuh74l81l" path="res://addons/SimpleDungeons/DungeonRoom3D.gd" id="1_lh7xt"] -[ext_resource type="Script" uid="uid://daetb3e2nm56p" path="res://src/map/dungeon/code/DungeonRoom.cs" id="2_y1vgt"] +[ext_resource type="Script" uid="uid://dhollu4j3pynq" path="res://src/map/dungeon/code/MonsterRoom.cs" id="2_lh7xt"] [ext_resource type="Texture2D" uid="uid://cxc0mh4uf3ndf" path="res://src/map/dungeon/models/Set A/11. Long Room/11_A1_LONG_ROOM_RAIL_TRANSPARENT_PLANE.png" id="3_08sij"] [ext_resource type="Texture2D" uid="uid://b0k5ir622j1f7" path="res://src/map/dungeon/models/Set A/11. Long Room/11_A1_LONG_ROOM_WALL TILE 1.jpg" id="4_24ug2"] [ext_resource type="Texture2D" uid="uid://dvxkk21lpc4hk" path="res://src/map/dungeon/models/Set A/11. Long Room/11_A1_LONG_ROOM_FLOOR1.jpg" id="5_8yfvr"] @@ -645,224 +645,224 @@ albedo_texture = ExtResource("21_j6xkj") shading_mode = 0 albedo_texture = ExtResource("21_j6xkj") -[node name="DungeonRoom3D" type="Node3D"] +[node name="Long Room" type="Node3D"] script = ExtResource("1_lh7xt") size_in_voxels = Vector3i(12, 1, 7) voxel_scale = Vector3(4, 4, 4) min_count = 1 max_count = 2 -[node name="ColumnRoom" type="Node3D" parent="."] -script = ExtResource("2_y1vgt") +[node name="Long Room" type="Node3D" parent="."] +script = ExtResource("2_lh7xt") -[node name="Room" type="Node3D" parent="ColumnRoom"] +[node name="Room" type="Node3D" parent="Long Room"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.270661, -0.291467) -[node name="11_A1_LONG_ROOM" type="Node3D" parent="ColumnRoom/Room"] +[node name="11_A1_LONG_ROOM" type="Node3D" parent="Long Room/Room"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0.856302, -12.2636, -47) -[node name="Plane" type="MeshInstance3D" parent="ColumnRoom/Room/11_A1_LONG_ROOM"] +[node name="Plane" type="MeshInstance3D" parent="Long Room/Room/11_A1_LONG_ROOM"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -0.442878, 0, 0) mesh = SubResource("ArrayMesh_5te2e") skeleton = NodePath("") -[node name="Plane_001" type="MeshInstance3D" parent="ColumnRoom/Room/11_A1_LONG_ROOM"] +[node name="Plane_001" type="MeshInstance3D" parent="Long Room/Room/11_A1_LONG_ROOM"] transform = Transform3D(0.953669, 0, 0, 0, 1, 0, 0, 0, 1, -0.246046, 0, -0.190353) mesh = SubResource("ArrayMesh_oiui6") skeleton = NodePath("") -[node name="ROOM_003" type="MeshInstance3D" parent="ColumnRoom/Room/11_A1_LONG_ROOM"] +[node name="ROOM_003" type="MeshInstance3D" parent="Long Room/Room/11_A1_LONG_ROOM"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -1.28387, 9.97849, 47.4522) mesh = SubResource("ArrayMesh_sjfqh") skeleton = NodePath("") -[node name="StaticBody3D" type="StaticBody3D" parent="ColumnRoom/Room/11_A1_LONG_ROOM/ROOM_003"] +[node name="StaticBody3D" type="StaticBody3D" parent="Long Room/Room/11_A1_LONG_ROOM/ROOM_003"] -[node name="CollisionShape3D" type="CollisionShape3D" parent="ColumnRoom/Room/11_A1_LONG_ROOM/ROOM_003/StaticBody3D"] +[node name="CollisionShape3D" type="CollisionShape3D" parent="Long Room/Room/11_A1_LONG_ROOM/ROOM_003/StaticBody3D"] shape = SubResource("ConcavePolygonShape3D_2oq8v") -[node name="Pancaked Ways_001" type="MeshInstance3D" parent="ColumnRoom/Room/11_A1_LONG_ROOM"] +[node name="Pancaked Ways_001" type="MeshInstance3D" parent="Long Room/Room/11_A1_LONG_ROOM"] transform = Transform3D(7.30095e-08, 0, -0.112906, 0, 0.0752327, 0, 0.204149, 0, 4.03782e-08, -16.9201, 13.7659, 33.6246) mesh = SubResource("ArrayMesh_xjmai") skeleton = NodePath("") -[node name="Pancaked Ways_002" type="MeshInstance3D" parent="ColumnRoom/Room/11_A1_LONG_ROOM"] +[node name="Pancaked Ways_002" type="MeshInstance3D" parent="Long Room/Room/11_A1_LONG_ROOM"] transform = Transform3D(-7.30095e-08, 0, 0.112906, 0, 0.0752327, 0, -0.204149, 0, -4.03782e-08, -12.8857, 13.7659, 60.9369) mesh = SubResource("ArrayMesh_xjmai") skeleton = NodePath("") -[node name="Pancaked Ways_015" type="MeshInstance3D" parent="ColumnRoom/Room/11_A1_LONG_ROOM"] +[node name="Pancaked Ways_015" type="MeshInstance3D" parent="Long Room/Room/11_A1_LONG_ROOM"] transform = Transform3D(-0.204149, 0, -3.67893e-08, 0, 0.0752327, 0, 6.65203e-08, 0, -0.112906, 22.7403, 13.7659, 45.2588) mesh = SubResource("ArrayMesh_xjmai") skeleton = NodePath("") -[node name="Pancaked Ways_003" type="MeshInstance3D" parent="ColumnRoom/Room/11_A1_LONG_ROOM"] +[node name="Pancaked Ways_003" type="MeshInstance3D" parent="Long Room/Room/11_A1_LONG_ROOM"] transform = Transform3D(0.00015697, -0.000468049, -0.112903, -0.000103271, 0.0752313, -0.000702469, 0.204149, 3.84165e-05, 8.6456e-05, 11.0651, 13.7659, 33.6392) mesh = SubResource("ArrayMesh_xjmai") skeleton = NodePath("") -[node name="Pancaked Ways_004" type="MeshInstance3D" parent="ColumnRoom/Room/11_A1_LONG_ROOM"] +[node name="Pancaked Ways_004" type="MeshInstance3D" parent="Long Room/Room/11_A1_LONG_ROOM"] transform = Transform3D(-7.30095e-08, 0, 0.112906, 0, 0.0752327, 0, -0.204149, 0, -4.03782e-08, 15.0937, 13.7659, 60.7627) mesh = SubResource("ArrayMesh_xjmai") skeleton = NodePath("") -[node name="Pancaked Ways_005" type="MeshInstance3D" parent="ColumnRoom/Room/11_A1_LONG_ROOM"] +[node name="Pancaked Ways_005" type="MeshInstance3D" parent="Long Room/Room/11_A1_LONG_ROOM"] transform = Transform3D(0.204149, 0, 0, 0, 0.0752327, 0, 0, 0, 0.112906, -24.5176, 13.7659, 49.2782) mesh = SubResource("ArrayMesh_xjmai") skeleton = NodePath("") -[node name="Cube" type="MeshInstance3D" parent="ColumnRoom/Room/11_A1_LONG_ROOM"] +[node name="Cube" type="MeshInstance3D" parent="Long Room/Room/11_A1_LONG_ROOM"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0.103348, 0, 0.0663488) mesh = SubResource("ArrayMesh_2chd5") skeleton = NodePath("") -[node name="Cylinder" type="MeshInstance3D" parent="ColumnRoom/Room/11_A1_LONG_ROOM"] +[node name="Cylinder" type="MeshInstance3D" parent="Long Room/Room/11_A1_LONG_ROOM"] transform = Transform3D(0.0686657, 0, 0, 0, 0, -0.0686657, 0, 0.0686657, 0, -14.1761, 4.14631, 32.5116) mesh = SubResource("ArrayMesh_4j8yq") skeleton = NodePath("") -[node name="Cylinder_001" type="MeshInstance3D" parent="ColumnRoom/Room/11_A1_LONG_ROOM"] +[node name="Cylinder_001" type="MeshInstance3D" parent="Long Room/Room/11_A1_LONG_ROOM"] transform = Transform3D(0.0686657, 0, 0, 0, 0, -0.0686657, 0, 0.0686657, 0, -22.5686, 4.14631, 32.5116) mesh = SubResource("ArrayMesh_4j8yq") skeleton = NodePath("") -[node name="Cylinder_002" type="MeshInstance3D" parent="ColumnRoom/Room/11_A1_LONG_ROOM"] +[node name="Cylinder_002" type="MeshInstance3D" parent="Long Room/Room/11_A1_LONG_ROOM"] transform = Transform3D(0.0686657, 0, 0, 0, 0, -0.0686657, 0, 0.0686657, 0, 13.7972, 4.14631, 32.5116) mesh = SubResource("ArrayMesh_4j8yq") skeleton = NodePath("") -[node name="Cylinder_003" type="MeshInstance3D" parent="ColumnRoom/Room/11_A1_LONG_ROOM"] +[node name="Cylinder_003" type="MeshInstance3D" parent="Long Room/Room/11_A1_LONG_ROOM"] transform = Transform3D(0.0686657, 0, 0, 0, 0, -0.0686657, 0, 0.0686657, 0, 5.40483, 4.14631, 32.5116) mesh = SubResource("ArrayMesh_4j8yq") skeleton = NodePath("") -[node name="Cylinder_004" type="MeshInstance3D" parent="ColumnRoom/Room/11_A1_LONG_ROOM"] +[node name="Cylinder_004" type="MeshInstance3D" parent="Long Room/Room/11_A1_LONG_ROOM"] transform = Transform3D(0.0686657, 0, 0, 0, 0, -0.0686657, 0, 0.0686657, 0, -14.2131, 4.14631, 54.6978) mesh = SubResource("ArrayMesh_4j8yq") skeleton = NodePath("") -[node name="Cylinder_005" type="MeshInstance3D" parent="ColumnRoom/Room/11_A1_LONG_ROOM"] +[node name="Cylinder_005" type="MeshInstance3D" parent="Long Room/Room/11_A1_LONG_ROOM"] transform = Transform3D(0.0686657, 0, 0, 0, 0, -0.0686657, 0, 0.0686657, 0, -22.6055, 4.14631, 54.6978) mesh = SubResource("ArrayMesh_4j8yq") skeleton = NodePath("") -[node name="Cylinder_006" type="MeshInstance3D" parent="ColumnRoom/Room/11_A1_LONG_ROOM"] +[node name="Cylinder_006" type="MeshInstance3D" parent="Long Room/Room/11_A1_LONG_ROOM"] transform = Transform3D(0.0686657, 0, 0, 0, 0, -0.0686657, 0, 0.0686657, 0, 13.716, 4.14631, 54.6978) mesh = SubResource("ArrayMesh_4j8yq") skeleton = NodePath("") -[node name="Cylinder_007" type="MeshInstance3D" parent="ColumnRoom/Room/11_A1_LONG_ROOM"] +[node name="Cylinder_007" type="MeshInstance3D" parent="Long Room/Room/11_A1_LONG_ROOM"] transform = Transform3D(0.0686657, 0, 0, 0, 0, -0.0686657, 0, 0.0686657, 0, 5.32357, 4.14631, 54.6978) mesh = SubResource("ArrayMesh_4j8yq") skeleton = NodePath("") -[node name="Cylinder_008" type="MeshInstance3D" parent="ColumnRoom/Room/11_A1_LONG_ROOM"] +[node name="Cylinder_008" type="MeshInstance3D" parent="Long Room/Room/11_A1_LONG_ROOM"] transform = Transform3D(2.45568e-08, -0.0686657, -1.70765e-15, -4.09279e-09, 2.4395e-16, -0.0686657, 0.0686657, 2.45568e-08, -4.09279e-09, -18.5077, 4.14631, 39.3876) mesh = SubResource("ArrayMesh_4j8yq") skeleton = NodePath("") -[node name="Cylinder_009" type="MeshInstance3D" parent="ColumnRoom/Room/11_A1_LONG_ROOM"] +[node name="Cylinder_009" type="MeshInstance3D" parent="Long Room/Room/11_A1_LONG_ROOM"] transform = Transform3D(2.45568e-08, -0.0686657, -1.70765e-15, -4.09279e-09, 2.4395e-16, -0.0686657, 0.0686657, 2.45568e-08, -4.09279e-09, -18.5077, 4.14631, 47.78) mesh = SubResource("ArrayMesh_4j8yq") skeleton = NodePath("") -[node name="Cylinder_010" type="MeshInstance3D" parent="ColumnRoom/Room/11_A1_LONG_ROOM"] +[node name="Cylinder_010" type="MeshInstance3D" parent="Long Room/Room/11_A1_LONG_ROOM"] transform = Transform3D(2.45568e-08, -0.0686657, -1.70765e-15, -4.09279e-09, 2.4395e-16, -0.0686657, 0.0686657, 2.45568e-08, -4.09279e-09, 23.7696, 4.14631, 39.7137) mesh = SubResource("ArrayMesh_4j8yq") skeleton = NodePath("") -[node name="Cylinder_011" type="MeshInstance3D" parent="ColumnRoom/Room/11_A1_LONG_ROOM"] +[node name="Cylinder_011" type="MeshInstance3D" parent="Long Room/Room/11_A1_LONG_ROOM"] transform = Transform3D(2.45568e-08, -0.0686657, -1.70765e-15, -4.09279e-09, 2.4395e-16, -0.0686657, 0.0686657, 2.45568e-08, -4.09279e-09, 23.7696, 4.14631, 48.1061) mesh = SubResource("ArrayMesh_4j8yq") skeleton = NodePath("") -[node name="StaticBody3D" type="StaticBody3D" parent="ColumnRoom/Room"] +[node name="StaticBody3D" type="StaticBody3D" parent="Long Room/Room"] -[node name="CollisionShape3D" type="CollisionShape3D" parent="ColumnRoom/Room/StaticBody3D"] +[node name="CollisionShape3D" type="CollisionShape3D" parent="Long Room/Room/StaticBody3D"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -21.4665, 0.575928, -4.06012) shape = SubResource("CylinderShape3D_cvuwr") -[node name="CollisionShape3D2" type="CollisionShape3D" parent="ColumnRoom/Room/StaticBody3D"] +[node name="CollisionShape3D2" type="CollisionShape3D" parent="Long Room/Room/StaticBody3D"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -21.4665, 0, 4.25059) shape = SubResource("CylinderShape3D_cvuwr") -[node name="CollisionShape3D3" type="CollisionShape3D" parent="ColumnRoom/Room/StaticBody3D"] +[node name="CollisionShape3D3" type="CollisionShape3D" parent="Long Room/Room/StaticBody3D"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -18.2448, 0, 11.4637) shape = SubResource("CylinderShape3D_cvuwr") -[node name="CollisionShape3D4" type="CollisionShape3D" parent="ColumnRoom/Room/StaticBody3D"] +[node name="CollisionShape3D4" type="CollisionShape3D" parent="Long Room/Room/StaticBody3D"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -9.8771, 0, 11.4637) shape = SubResource("CylinderShape3D_cvuwr") -[node name="CollisionShape3D5" type="CollisionShape3D" parent="ColumnRoom/Room/StaticBody3D"] +[node name="CollisionShape3D5" type="CollisionShape3D" parent="Long Room/Room/StaticBody3D"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 9.70936, 0, 11.4637) shape = SubResource("CylinderShape3D_cvuwr") -[node name="CollisionShape3D6" type="CollisionShape3D" parent="ColumnRoom/Room/StaticBody3D"] +[node name="CollisionShape3D6" type="CollisionShape3D" parent="Long Room/Room/StaticBody3D"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 18.0628, 0, 11.4637) shape = SubResource("CylinderShape3D_cvuwr") -[node name="CollisionShape3D7" type="CollisionShape3D" parent="ColumnRoom/Room/StaticBody3D"] +[node name="CollisionShape3D7" type="CollisionShape3D" parent="Long Room/Room/StaticBody3D"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 20.7713, 0, 4.63547) shape = SubResource("CylinderShape3D_cvuwr") -[node name="CollisionShape3D8" type="CollisionShape3D" parent="ColumnRoom/Room/StaticBody3D"] +[node name="CollisionShape3D8" type="CollisionShape3D" parent="Long Room/Room/StaticBody3D"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 20.7713, 0, -3.74651) shape = SubResource("CylinderShape3D_cvuwr") -[node name="CollisionShape3D9" type="CollisionShape3D" parent="ColumnRoom/Room/StaticBody3D"] +[node name="CollisionShape3D9" type="CollisionShape3D" parent="Long Room/Room/StaticBody3D"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 18.1769, 0, -10.6317) shape = SubResource("CylinderShape3D_cvuwr") -[node name="CollisionShape3D10" type="CollisionShape3D" parent="ColumnRoom/Room/StaticBody3D"] +[node name="CollisionShape3D10" type="CollisionShape3D" parent="Long Room/Room/StaticBody3D"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 9.73788, 0, -10.6317) shape = SubResource("CylinderShape3D_cvuwr") -[node name="CollisionShape3D11" type="CollisionShape3D" parent="ColumnRoom/Room/StaticBody3D"] +[node name="CollisionShape3D11" type="CollisionShape3D" parent="Long Room/Room/StaticBody3D"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -9.82008, 0, -10.6317) shape = SubResource("CylinderShape3D_cvuwr") -[node name="CollisionShape3D12" type="CollisionShape3D" parent="ColumnRoom/Room/StaticBody3D"] +[node name="CollisionShape3D12" type="CollisionShape3D" parent="Long Room/Room/StaticBody3D"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -18.2021, 0, -10.6317) shape = SubResource("CylinderShape3D_cvuwr") -[node name="PlayerSpawn" type="Marker3D" parent="ColumnRoom"] +[node name="PlayerSpawn" type="Marker3D" parent="Long Room"] unique_name_in_owner = true transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -9.28741, -1.57634, -4.70109) -[node name="ItemSpawnPoints" type="Node3D" parent="ColumnRoom"] +[node name="ItemSpawnPoints" type="Node3D" parent="Long Room"] unique_name_in_owner = true transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0.991593, 1.42366, 0.764909) -[node name="ItemSpawnPoint" type="Marker3D" parent="ColumnRoom/ItemSpawnPoints"] +[node name="ItemSpawnPoint" type="Marker3D" parent="Long Room/ItemSpawnPoints"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -12.1815, -2.83566, 5.54452) -[node name="ItemSpawnPoint2" type="Marker3D" parent="ColumnRoom/ItemSpawnPoints"] +[node name="ItemSpawnPoint2" type="Marker3D" parent="Long Room/ItemSpawnPoints"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, -2.83566, 0) -[node name="ItemSpawnPoint3" type="Marker3D" parent="ColumnRoom/ItemSpawnPoints"] +[node name="ItemSpawnPoint3" type="Marker3D" parent="Long Room/ItemSpawnPoints"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -3.06931, -2.83566, 4.09619) -[node name="EnemySpawnPoints" type="Node3D" parent="ColumnRoom"] +[node name="EnemySpawnPoints" type="Node3D" parent="Long Room"] unique_name_in_owner = true transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0.991593, 1.42366, 0.764909) -[node name="EnemySpawn1" type="Marker3D" parent="ColumnRoom/EnemySpawnPoints"] +[node name="EnemySpawn1" type="Marker3D" parent="Long Room/EnemySpawnPoints"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -1.26616, -2, 6.64395) -[node name="EnemySpawn2" type="Marker3D" parent="ColumnRoom/EnemySpawnPoints"] +[node name="EnemySpawn2" type="Marker3D" parent="Long Room/EnemySpawnPoints"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 14.8078, -2, -3.29062) -[node name="EnemySpawn3" type="Marker3D" parent="ColumnRoom/EnemySpawnPoints"] +[node name="EnemySpawn3" type="Marker3D" parent="Long Room/EnemySpawnPoints"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 5.92822, -2, -6.40018) -[node name="EnemySpawn4" type="Marker3D" parent="ColumnRoom/EnemySpawnPoints"] +[node name="EnemySpawn4" type="Marker3D" parent="Long Room/EnemySpawnPoints"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -3.32741, -2, -3.41341) -[node name="ItemDatabase" parent="ColumnRoom" instance=ExtResource("16_5u3o4")] +[node name="ItemDatabase" parent="Long Room" instance=ExtResource("16_5u3o4")] unique_name_in_owner = true -[node name="TeleportSpawn" type="Marker3D" parent="ColumnRoom"] +[node name="TeleportSpawn" type="Marker3D" parent="Long Room"] unique_name_in_owner = true transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -15.381, -1.83231, 0.0164348) @@ -882,13 +882,13 @@ transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -1.02721, -3.09782, -0.756889 visible = false layers = 2 mesh = SubResource("PlaneMesh_bg2qr") -skeleton = NodePath("../../ColumnRoom") +skeleton = NodePath("../../Long Room") [node name="Minimap2" type="MeshInstance3D" parent="Area3D"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -0.961017, -3.60823, -0.756889) layers = 4 mesh = SubResource("PlaneMesh_bg2qr") -skeleton = NodePath("../../ColumnRoom") +skeleton = NodePath("../../Long Room") [node name="RemoveUnusedDoors" type="Node" parent="."] script = ExtResource("19_gelds") diff --git a/src/map/dungeon/scenes/Set A/12. Jump Scare Room.tscn b/src/map/dungeon/scenes/Set A/12. Jump Scare Room.tscn index d1fcaa16..86f46373 100644 --- a/src/map/dungeon/scenes/Set A/12. Jump Scare Room.tscn +++ b/src/map/dungeon/scenes/Set A/12. Jump Scare Room.tscn @@ -1,7 +1,7 @@ [gd_scene load_steps=84 format=4 uid="uid://dhkbvos11tkdw"] [ext_resource type="Script" uid="uid://ce73fuh74l81l" path="res://addons/SimpleDungeons/DungeonRoom3D.gd" id="1_5ijis"] -[ext_resource type="Script" uid="uid://daetb3e2nm56p" path="res://src/map/dungeon/code/DungeonRoom.cs" id="2_r0drc"] +[ext_resource type="Script" uid="uid://dhollu4j3pynq" path="res://src/map/dungeon/code/MonsterRoom.cs" id="2_ya417"] [ext_resource type="Texture2D" uid="uid://b8fg3ns5l0uhi" path="res://src/map/dungeon/models/Set A/12. Jump Scare Room/12_A1_JUMP_SCARE_ROOM_STONE_PANEL_2png.png" id="3_kr6uv"] [ext_resource type="Texture2D" uid="uid://dstgcyy6hrwbb" path="res://src/map/dungeon/models/Set A/12. Jump Scare Room/12_A1_JUMP_SCARE_ROOM_dirt.png" id="4_f5dub"] [ext_resource type="Texture2D" uid="uid://jtabyjtea5yk" path="res://src/map/dungeon/models/Set A/12. Jump Scare Room/12_A1_JUMP_SCARE_ROOM_RAIL_TRANSPARENT_PLANE.png" id="5_yr5s6"] @@ -980,11 +980,11 @@ script = ExtResource("1_5ijis") size_in_voxels = Vector3i(5, 1, 4) voxel_scale = Vector3(4, 4, 4) min_count = 1 -max_count = 3 +max_count = 1 [node name="JumpScareRoom" type="Node3D" parent="."] unique_name_in_owner = true -script = ExtResource("2_r0drc") +script = ExtResource("2_ya417") [node name="Room" type="Node3D" parent="JumpScareRoom"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0.578037, 2.29661, 1.45618) diff --git a/src/map/dungeon/scenes/Set A/13. Water Room.tscn b/src/map/dungeon/scenes/Set A/13. Water Room.tscn index ecc51159..047d2e5a 100644 --- a/src/map/dungeon/scenes/Set A/13. Water Room.tscn +++ b/src/map/dungeon/scenes/Set A/13. Water Room.tscn @@ -1,7 +1,7 @@ [gd_scene load_steps=88 format=4 uid="uid://dfpyfpnya0f4u"] [ext_resource type="Script" uid="uid://ce73fuh74l81l" path="res://addons/SimpleDungeons/DungeonRoom3D.gd" id="1_ulct7"] -[ext_resource type="Script" uid="uid://daetb3e2nm56p" path="res://src/map/dungeon/code/DungeonRoom.cs" id="2_7yem4"] +[ext_resource type="Script" uid="uid://dhollu4j3pynq" path="res://src/map/dungeon/code/MonsterRoom.cs" id="2_hbsbj"] [ext_resource type="Texture2D" uid="uid://bn3fhfh4jpo6p" path="res://src/map/dungeon/models/Set A/13. Water Room/WATER_ROOM_VER2_tile2.png" id="2_m6505"] [ext_resource type="Texture2D" uid="uid://bxs4s61r4l127" path="res://src/map/dungeon/models/Set A/13. Water Room/WATER_ROOM_VER2_CEILING_1.jpg" id="3_rjto0"] [ext_resource type="Texture2D" uid="uid://dkcmohd0v7cew" path="res://src/map/dungeon/models/Set A/13. Water Room/WATER_ROOM_VER2_STONE_PANEL_2png.png" id="4_ou63s"] @@ -1048,7 +1048,7 @@ albedo_texture = ExtResource("23_83smy") shading_mode = 0 albedo_texture = ExtResource("23_83smy") -[node name="DungeonRoom3D" type="Node3D"] +[node name="Water Room" type="Node3D"] script = ExtResource("1_ulct7") size_in_voxels = Vector3i(7, 1, 12) voxel_scale = Vector3(4, 4, 4) @@ -1056,7 +1056,7 @@ min_count = 1 max_count = 2 [node name="Water Room" type="Node3D" parent="."] -script = ExtResource("2_7yem4") +script = ExtResource("2_hbsbj") [node name="WATER_ROOM_VER2" type="Node3D" parent="Water Room"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -9.07007, -18.0046, -24.5179) diff --git a/src/map/dungeon/scenes/Set A/14. Ran's Room.tscn b/src/map/dungeon/scenes/Set A/14. Ran's Room.tscn index 5ea7104c..018b3a63 100644 --- a/src/map/dungeon/scenes/Set A/14. Ran's Room.tscn +++ b/src/map/dungeon/scenes/Set A/14. Ran's Room.tscn @@ -1,7 +1,7 @@ [gd_scene load_steps=100 format=4 uid="uid://c5eon2dk4ojua"] [ext_resource type="Script" uid="uid://ce73fuh74l81l" path="res://addons/SimpleDungeons/DungeonRoom3D.gd" id="1_bgwrn"] -[ext_resource type="Script" uid="uid://daetb3e2nm56p" path="res://src/map/dungeon/code/DungeonRoom.cs" id="2_cp5ou"] +[ext_resource type="Script" uid="uid://dhollu4j3pynq" path="res://src/map/dungeon/code/MonsterRoom.cs" id="2_bgwrn"] [ext_resource type="Texture2D" uid="uid://rtdq3jm6bj8t" path="res://src/map/dungeon/models/Set A/14. Ran's Room/14_A1_RAN'S ROOM_tile2.png" id="3_dvdmk"] [ext_resource type="Texture2D" uid="uid://cuv1t2346y6ts" path="res://src/map/dungeon/models/Set A/14. Ran's Room/14_A1_RAN'S ROOM_CEILING_1.jpg" id="4_xr0ya"] [ext_resource type="Texture2D" uid="uid://8luigckavgfv" path="res://src/map/dungeon/models/Set A/14. Ran's Room/14_A1_RAN'S ROOM_STONE_PANEL_2png.png" id="5_xqhts"] @@ -1520,12 +1520,12 @@ script = ExtResource("1_bgwrn") size_in_voxels = Vector3i(8, 1, 9) voxel_scale = Vector3(4, 4, 4) min_count = 1 -max_count = 3 +max_count = 1 [node name="RansRoom" type="Node3D" parent="."] unique_name_in_owner = true transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.168267, 0) -script = ExtResource("2_cp5ou") +script = ExtResource("2_bgwrn") [node name="Room" type="Node3D" parent="RansRoom"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0.513426, 6.58219, -7.03014) diff --git a/src/map/dungeon/scenes/Set A/15. Boss Floor A.tscn b/src/map/dungeon/scenes/Set A/15. Boss Floor A.tscn index 91f068d2..9a8accb2 100644 --- a/src/map/dungeon/scenes/Set A/15. Boss Floor A.tscn +++ b/src/map/dungeon/scenes/Set A/15. Boss Floor A.tscn @@ -1,6 +1,6 @@ [gd_scene load_steps=132 format=4 uid="uid://5ja3qxn8h7iw"] -[ext_resource type="Script" uid="uid://cbxpa2yua2cni" path="res://src/map/dungeon/code/BossRoom.cs" id="1_0h3lb"] +[ext_resource type="Script" uid="uid://tqyybt313web" path="res://src/map/dungeon/code/BossRoomA.cs" id="1_0h3lb"] [ext_resource type="Texture2D" uid="uid://vjbe1lg810gh" path="res://src/map/dungeon/models/Set A/15. Boss Floor A/15_A1_BOSS FLOOR A_VER_swirled_column.png" id="2_06eum"] [ext_resource type="Texture2D" uid="uid://b7600l5at1q4n" path="res://src/map/dungeon/models/Set A/15. Boss Floor A/15_A1_BOSS FLOOR A_VER_mother.png" id="3_aiyhv"] [ext_resource type="Texture2D" uid="uid://g73ge3i3bgp3" path="res://src/map/dungeon/models/Set A/15. Boss Floor A/15_A1_BOSS FLOOR A_VER_brick3.png" id="4_gg1gw"] diff --git a/src/map/dungeon/scenes/Set A/16. Seshat's Room.tscn b/src/map/dungeon/scenes/Set A/16. Seshat's Room.tscn index d4f30c28..c620ece9 100644 --- a/src/map/dungeon/scenes/Set A/16. Seshat's Room.tscn +++ b/src/map/dungeon/scenes/Set A/16. Seshat's Room.tscn @@ -1,7 +1,7 @@ [gd_scene load_steps=99 format=4 uid="uid://crf30tibwsnri"] [ext_resource type="Script" uid="uid://ce73fuh74l81l" path="res://addons/SimpleDungeons/DungeonRoom3D.gd" id="1_bglxp"] -[ext_resource type="Script" uid="uid://daetb3e2nm56p" path="res://src/map/dungeon/code/DungeonRoom.cs" id="2_ydai2"] +[ext_resource type="Script" uid="uid://dhollu4j3pynq" path="res://src/map/dungeon/code/MonsterRoom.cs" id="2_5aadh"] [ext_resource type="Texture2D" uid="uid://bjfor5dhdsa32" path="res://src/map/dungeon/models/Set A/16. Seshat's Room/16_A1_SESHATS_ROOM_brick3.png" id="3_5aadh"] [ext_resource type="Texture2D" uid="uid://ejw5b82rcu64" path="res://src/map/dungeon/models/Set A/16. Seshat's Room/16_A1_SESHATS_ROOM_TILE4.png" id="4_xhe56"] [ext_resource type="Texture2D" uid="uid://bvsqktf7e13yi" path="res://src/map/dungeon/models/Set A/16. Seshat's Room/16_A1_SESHATS_ROOM_STONE_PANEL_1png.png" id="5_gh7is"] @@ -1047,12 +1047,12 @@ script = ExtResource("1_bglxp") size_in_voxels = Vector3i(9, 1, 7) voxel_scale = Vector3(4, 4, 4) min_count = 1 -max_count = 3 +max_count = 1 [node name="Seshat\'s Room" type="Node3D" parent="."] unique_name_in_owner = true transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 1.84, 12, -0.235) -script = ExtResource("2_ydai2") +script = ExtResource("2_5aadh") [node name="16_A1_SESHATS_ROOM" type="Node3D" parent="Seshat\'s Room"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 5, -24, -47) diff --git a/src/map/dungeon/scenes/Set A/17. Gesthemii's Room.tscn b/src/map/dungeon/scenes/Set A/17. Gesthemii's Room.tscn index 6e25c1eb..95f9e833 100644 --- a/src/map/dungeon/scenes/Set A/17. Gesthemii's Room.tscn +++ b/src/map/dungeon/scenes/Set A/17. Gesthemii's Room.tscn @@ -1,7 +1,7 @@ [gd_scene load_steps=78 format=4 uid="uid://cw33vpar237pm"] [ext_resource type="Script" uid="uid://ce73fuh74l81l" path="res://addons/SimpleDungeons/DungeonRoom3D.gd" id="1_m4la0"] -[ext_resource type="Script" uid="uid://daetb3e2nm56p" path="res://src/map/dungeon/code/DungeonRoom.cs" id="2_mnp40"] +[ext_resource type="Script" uid="uid://dhollu4j3pynq" path="res://src/map/dungeon/code/MonsterRoom.cs" id="2_56tk6"] [ext_resource type="Texture2D" uid="uid://cpre0uy2cns41" path="res://src/map/dungeon/models/Set A/17. Gesthemii's Room/17_A1_GESTHEMIIS_ROOM_tile2.png" id="3_gwfk4"] [ext_resource type="Texture2D" uid="uid://cafxnkm3gjcnp" path="res://src/map/dungeon/models/Set A/17. Gesthemii's Room/17_A1_GESTHEMIIS_ROOM_CEILING_1.jpg" id="4_hybta"] [ext_resource type="Texture2D" uid="uid://bdbj52kurbhuc" path="res://src/map/dungeon/models/Set A/17. Gesthemii's Room/17_A1_GESTHEMIIS_ROOM_STONE_PANEL_2png.png" id="5_o2sad"] @@ -880,11 +880,11 @@ script = ExtResource("1_m4la0") size_in_voxels = Vector3i(9, 1, 5) voxel_scale = Vector3(4, 4, 4) min_count = 1 -max_count = 3 +max_count = 1 [node name="GesthemiisRoom" type="Node3D" parent="."] unique_name_in_owner = true -script = ExtResource("2_mnp40") +script = ExtResource("2_56tk6") [node name="17_A1_GESTHEMIIS_ROOM" type="Node3D" parent="GesthemiisRoom"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 2) diff --git a/src/map/dungeon/scenes/Set A/18. Corridor A.tscn b/src/map/dungeon/scenes/Set A/18. Corridor A.tscn index d696d4c6..a7e96b5f 100644 --- a/src/map/dungeon/scenes/Set A/18. Corridor A.tscn +++ b/src/map/dungeon/scenes/Set A/18. Corridor A.tscn @@ -11,20 +11,20 @@ [sub_resource type="StandardMaterial3D" id="StandardMaterial3D_jhg27"] resource_name = "WALL.007" cull_mode = 2 -albedo_texture = ExtResource("2_jmyyj") shading_mode = 0 +albedo_texture = ExtResource("2_jmyyj") [sub_resource type="StandardMaterial3D" id="StandardMaterial3D_04fvv"] resource_name = "CEILNG.007" cull_mode = 2 -albedo_texture = ExtResource("3_d7rg7") shading_mode = 0 +albedo_texture = ExtResource("3_d7rg7") [sub_resource type="StandardMaterial3D" id="StandardMaterial3D_nngve"] resource_name = "FLOOR.007" cull_mode = 2 -albedo_texture = ExtResource("4_7fcpj") shading_mode = 0 +albedo_texture = ExtResource("4_7fcpj") [sub_resource type="ArrayMesh" id="ArrayMesh_hnpmi"] _surfaces = [{ @@ -107,14 +107,14 @@ shadow_mesh = SubResource("ArrayMesh_hnpmi") [sub_resource type="StandardMaterial3D" id="StandardMaterial3D_lsgue"] resource_name = "Material.014" cull_mode = 2 -albedo_texture = ExtResource("6_liffc") shading_mode = 0 +albedo_texture = ExtResource("6_liffc") [sub_resource type="StandardMaterial3D" id="StandardMaterial3D_btu5w"] resource_name = "Material.015" cull_mode = 2 -albedo_texture = ExtResource("7_3kayh") shading_mode = 0 +albedo_texture = ExtResource("7_3kayh") [sub_resource type="ArrayMesh" id="ArrayMesh_mfebi"] _surfaces = [{ @@ -430,14 +430,14 @@ shadow_mesh = SubResource("ArrayMesh_etli6") [sub_resource type="StandardMaterial3D" id="StandardMaterial3D_2qrwe"] transparency = 1 -albedo_color = Color(1, 1, 1, 0) shading_mode = 0 +albedo_color = Color(1, 1, 1, 0) [sub_resource type="StandardMaterial3D" id="StandardMaterial3D_1huxf"] resource_name = "BOTTOM TRIM.007" cull_mode = 2 -albedo_texture = ExtResource("5_qnt5r") shading_mode = 0 +albedo_texture = ExtResource("5_qnt5r") [sub_resource type="ArrayMesh" id="ArrayMesh_p4f4g"] _surfaces = [{ @@ -611,8 +611,8 @@ shadow_mesh = SubResource("ArrayMesh_5chhi") [sub_resource type="StandardMaterial3D" id="StandardMaterial3D_4xu2u"] transparency = 1 -albedo_color = Color(1, 1, 1, 0) shading_mode = 0 +albedo_color = Color(1, 1, 1, 0) [sub_resource type="ArrayMesh" id="ArrayMesh_ood8f"] _surfaces = [{ diff --git a/src/map/dungeon/scenes/Set A/19. Floor Exit A.tscn b/src/map/dungeon/scenes/Set A/19. Floor Exit A.tscn index 0a605e79..e36ae0c6 100644 --- a/src/map/dungeon/scenes/Set A/19. Floor Exit A.tscn +++ b/src/map/dungeon/scenes/Set A/19. Floor Exit A.tscn @@ -1,7 +1,7 @@ -[gd_scene load_steps=49 format=4 uid="uid://cihbmyo0ltq4m"] +[gd_scene load_steps=50 format=4 uid="uid://cihbmyo0ltq4m"] [ext_resource type="Script" uid="uid://ce73fuh74l81l" path="res://addons/SimpleDungeons/DungeonRoom3D.gd" id="1_3m472"] -[ext_resource type="Script" uid="uid://daetb3e2nm56p" path="res://src/map/dungeon/code/DungeonRoom.cs" id="2_umdkt"] +[ext_resource type="Script" path="res://src/map/dungeon/code/ExitRoom.cs" id="2_umdkt"] [ext_resource type="Texture2D" uid="uid://ct3qjmo0yg3gc" path="res://src/map/dungeon/models/Set A/19. Floor Exit A/19_A1_FLOOR_EXIT_A_darkbrick.png" id="3_umdkt"] [ext_resource type="Texture2D" uid="uid://q4hj2tj6drv" path="res://src/map/dungeon/models/Set A/19. Floor Exit A/19_A1_FLOOR_EXIT_A_concrete_0003_color_1k.png" id="4_daunu"] [ext_resource type="Texture2D" uid="uid://cuy0ep1w6uxqf" path="res://src/map/dungeon/models/Set A/19. Floor Exit A/19_A1_FLOOR_EXIT_A_TILE4.png" id="5_7230f"] @@ -450,7 +450,7 @@ size = Vector3(0.391602, 21, 37) size = Vector3(0.628906, 21, 6.86426) [sub_resource type="BoxShape3D" id="BoxShape3D_7230f"] -size = Vector3(0.628906, 21, 19.2147) +size = Vector3(4.66064, 21, 19.2147) [sub_resource type="CylinderShape3D" id="CylinderShape3D_umdkt"] height = 11.6425 @@ -459,6 +459,9 @@ radius = 1.40381 [sub_resource type="BoxShape3D" id="BoxShape3D_62xqw"] size = Vector3(1.31396, 11.3767, 3.75488) +[sub_resource type="BoxShape3D" id="BoxShape3D_mg5bq"] +size = Vector3(19.8499, 10.2039, 7.09571) + [sub_resource type="StandardMaterial3D" id="StandardMaterial3D_51rrf"] shading_mode = 0 albedo_texture = ExtResource("17_c2x10") @@ -474,10 +477,10 @@ albedo_texture = ExtResource("18_r3pjb") [sub_resource type="PlaneMesh" id="PlaneMesh_s0txx"] material = ExtResource("21_am10m") -size = Vector2(20, 16) +size = Vector2(20, 36) [sub_resource type="BoxShape3D" id="BoxShape3D_24rcp"] -size = Vector3(20, 8, 16) +size = Vector3(20.9775, 8, 34.2681) [node name="Floor Exit A" type="Node3D"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 1.73082, 0, -1.86841) @@ -485,7 +488,7 @@ script = ExtResource("1_3m472") size_in_voxels = Vector3i(5, 1, 9) voxel_scale = Vector3(4, 4, 4) min_count = 1 -max_count = 3 +max_count = 1 [node name="Floor Exit A" type="Node3D" parent="."] unique_name_in_owner = true @@ -518,7 +521,7 @@ transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, -6.148 shape = SubResource("BoxShape3D_daunu") [node name="CollisionShape3D5" type="CollisionShape3D" parent="Floor Exit A/19_A1_FLOOR_EXIT_A/StaticBody3D"] -transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, 0.234899, -4, -2.54907) +transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, 0.234899, -4, -0.533201) shape = SubResource("BoxShape3D_7230f") [node name="CollisionShape3D6" type="CollisionShape3D" parent="Floor Exit A/19_A1_FLOOR_EXIT_A/StaticBody3D"] @@ -539,40 +542,27 @@ shape = SubResource("BoxShape3D_62xqw") [node name="PlayerSpawn" type="Marker3D" parent="Floor Exit A"] unique_name_in_owner = true -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -8.61757, -1.89174, 0.580412) +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -0.0456917, -1.89174, 12.7327) [node name="ItemSpawnPoints" type="Node3D" parent="Floor Exit A"] unique_name_in_owner = true transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 2.00123, 0) -[node name="ItemSpawnPoint" type="Marker3D" parent="Floor Exit A/ItemSpawnPoints"] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -2.09927, -3.217, -2.27499) - -[node name="ItemSpawnPoint2" type="Marker3D" parent="Floor Exit A/ItemSpawnPoints"] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -2.09927, -3.217, 2.60611) - -[node name="ItemSpawnPoint3" type="Marker3D" parent="Floor Exit A/ItemSpawnPoints"] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 4.93753, -3.217, 3.33261) - [node name="EnemySpawnPoints" type="Node3D" parent="Floor Exit A"] unique_name_in_owner = true transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 2.00123, 0) -[node name="EnemySpawn1" type="Marker3D" parent="Floor Exit A/EnemySpawnPoints"] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -3.31537, -2.98, -2.27499) - -[node name="EnemySpawn2" type="Marker3D" parent="Floor Exit A/EnemySpawnPoints"] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 2.55793, -2.98, -2.27499) - -[node name="EnemySpawn3" type="Marker3D" parent="Floor Exit A/EnemySpawnPoints"] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 2.55793, -2.98, 2.77761) - [node name="ItemDatabase" parent="Floor Exit A" instance=ExtResource("16_ymrc7")] unique_name_in_owner = true -[node name="TeleportSpawn" type="Marker3D" parent="Floor Exit A"] +[node name="Exit" type="Area3D" parent="Floor Exit A"] unique_name_in_owner = true -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 5.33663, -1.49877, 0.845012) +collision_layer = 256 +collision_mask = 256 + +[node name="CollisionShape3D" type="CollisionShape3D" parent="Floor Exit A/Exit"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -0.00817108, 1.56831, 4.23168) +shape = SubResource("BoxShape3D_mg5bq") [node name="CSGBox3D" type="CSGBox3D" parent="."] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -0.0314088, 4.23029, -0.0385468) @@ -606,17 +596,10 @@ script = ExtResource("20_cs7my") [node name="Minimap" type="MeshInstance3D" parent="Minimap Manager"] unique_name_in_owner = true transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, -4.03725, 0) -visible = false layers = 2 mesh = SubResource("PlaneMesh_s0txx") skeleton = NodePath("../..") -[node name="Minimap2" type="MeshInstance3D" parent="Minimap Manager"] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, -3.98417, 0) -layers = 4 -mesh = SubResource("PlaneMesh_s0txx") -skeleton = NodePath("../..") - [node name="CollisionShape3D" type="CollisionShape3D" parent="Minimap Manager"] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1.94617, 0) +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0.168457, 1.94617, -0.287262) shape = SubResource("BoxShape3D_24rcp") diff --git a/src/map/dungeon/scenes/Set B/20. Antechamber 3.tscn b/src/map/dungeon/scenes/Set B/20. Antechamber 3.tscn index ebbe3b49..0e9e7353 100644 --- a/src/map/dungeon/scenes/Set B/20. Antechamber 3.tscn +++ b/src/map/dungeon/scenes/Set B/20. Antechamber 3.tscn @@ -1,7 +1,7 @@ [gd_scene load_steps=48 format=4 uid="uid://dadl2rua1ovhq"] [ext_resource type="Script" uid="uid://ce73fuh74l81l" path="res://addons/SimpleDungeons/DungeonRoom3D.gd" id="1_utnmd"] -[ext_resource type="Script" uid="uid://daetb3e2nm56p" path="res://src/map/dungeon/code/DungeonRoom.cs" id="2_ii8oq"] +[ext_resource type="Script" uid="uid://dhollu4j3pynq" path="res://src/map/dungeon/code/MonsterRoom.cs" id="2_rsrpd"] [ext_resource type="Texture2D" uid="uid://c2ysw5gb2lt13" path="res://src/map/dungeon/models/Set B/20. Antechamber C/20_A2_ANTECHAMBER_TYPE_C_AREA_2_MAIN_STONE.png" id="3_afy15"] [ext_resource type="Texture2D" uid="uid://clbr72ym0olin" path="res://src/map/dungeon/models/Set B/20. Antechamber C/20_A2_ANTECHAMBER_TYPE_C_area_2_big_tile.png" id="4_gqtls"] [ext_resource type="Texture2D" uid="uid://byd8f1r5c4lxm" path="res://src/map/dungeon/models/Set B/20. Antechamber C/20_A2_ANTECHAMBER_TYPE_C_area_2_tile_3.png" id="5_0qmwl"] @@ -640,7 +640,7 @@ texture_filter = 0 [sub_resource type="StandardMaterial3D" id="StandardMaterial3D_hwsho"] albedo_texture = ExtResource("22_or4jf") -[node name="DungeonRoom3D" type="Node3D"] +[node name="Antechamber 3" type="Node3D"] script = ExtResource("1_utnmd") size_in_voxels = Vector3i(5, 1, 4) voxel_scale = Vector3(4, 4, 4) @@ -648,7 +648,7 @@ min_count = 1 max_count = 2 [node name="Antechamber3" type="Node3D" parent="."] -script = ExtResource("2_ii8oq") +script = ExtResource("2_rsrpd") [node name="Model" type="Node3D" parent="Antechamber3"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 1.9198, -0.0404749, 0) diff --git a/src/map/dungeon/scenes/Set B/21. Gallery Room.tscn b/src/map/dungeon/scenes/Set B/21. Gallery Room.tscn index 45972f29..eaf3ac3a 100644 --- a/src/map/dungeon/scenes/Set B/21. Gallery Room.tscn +++ b/src/map/dungeon/scenes/Set B/21. Gallery Room.tscn @@ -1,7 +1,7 @@ [gd_scene load_steps=75 format=4 uid="uid://dra1mqcqhw7g0"] [ext_resource type="Script" uid="uid://ce73fuh74l81l" path="res://addons/SimpleDungeons/DungeonRoom3D.gd" id="1_wyqcj"] -[ext_resource type="Script" uid="uid://daetb3e2nm56p" path="res://src/map/dungeon/code/DungeonRoom.cs" id="2_cya8n"] +[ext_resource type="Script" uid="uid://dhollu4j3pynq" path="res://src/map/dungeon/code/MonsterRoom.cs" id="2_snhgn"] [ext_resource type="Texture2D" uid="uid://cyikqwtmm1lt7" path="res://src/map/dungeon/models/Set B/21. Gallery Room/21_A2_GALLERY_ROOM_AREA_2_MAIN_STONE.png" id="3_snhgn"] [ext_resource type="Texture2D" uid="uid://cbce6boj7r8jo" path="res://src/map/dungeon/models/Set B/21. Gallery Room/21_A2_GALLERY_ROOM_area_2_big_tile.png" id="4_crgp3"] [ext_resource type="Texture2D" uid="uid://clvmupgm4o3xf" path="res://src/map/dungeon/models/Set B/21. Gallery Room/21_A2_GALLERY_ROOM_area_2_tile_3.png" id="5_sxgxj"] @@ -792,7 +792,7 @@ texture_filter = 0 [sub_resource type="StandardMaterial3D" id="StandardMaterial3D_hwsho"] albedo_texture = ExtResource("20_3qtro") -[node name="DungeonRoom3D" type="Node3D"] +[node name="Gallery Room" type="Node3D"] script = ExtResource("1_wyqcj") size_in_voxels = Vector3i(4, 1, 4) voxel_scale = Vector3(4, 4, 4) @@ -800,7 +800,7 @@ min_count = 1 max_count = 2 [node name="Gallery Room" type="Node3D" parent="."] -script = ExtResource("2_cya8n") +script = ExtResource("2_snhgn") [node name="Model" type="Node3D" parent="Gallery Room"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 1.19835, -1.07575, 0.173335) diff --git a/src/map/dungeon/scenes/Set B/22. Pit Room B.tscn b/src/map/dungeon/scenes/Set B/22. Pit Room B.tscn index 52a5e1dc..c4d8943d 100644 --- a/src/map/dungeon/scenes/Set B/22. Pit Room B.tscn +++ b/src/map/dungeon/scenes/Set B/22. Pit Room B.tscn @@ -1,7 +1,7 @@ [gd_scene load_steps=63 format=4 uid="uid://cq82tqhlshn1k"] [ext_resource type="Script" uid="uid://ce73fuh74l81l" path="res://addons/SimpleDungeons/DungeonRoom3D.gd" id="1_mjoyd"] -[ext_resource type="Script" uid="uid://daetb3e2nm56p" path="res://src/map/dungeon/code/DungeonRoom.cs" id="2_i4ais"] +[ext_resource type="Script" uid="uid://dhollu4j3pynq" path="res://src/map/dungeon/code/MonsterRoom.cs" id="2_7fo8x"] [ext_resource type="Texture2D" uid="uid://bb2iuhl0qw7ys" path="res://src/map/dungeon/models/Set B/22. Pit Room B/22_A2_PIT_ROOM_B_AREA_2_MAIN_222STONE.png" id="3_dlfy7"] [ext_resource type="Texture2D" uid="uid://h22yy7tcdq6a" path="res://src/map/dungeon/models/Set B/22. Pit Room B/22_A2_PIT_ROOM_B_flowers-in-water.png" id="4_8i6dt"] [ext_resource type="Texture2D" uid="uid://c0h7v8ccit1gc" path="res://src/map/dungeon/models/Set B/22. Pit Room B/22_A2_PIT_ROOM_B_railing-2_billboard.png" id="5_4rhx7"] @@ -601,7 +601,7 @@ max_count = 2 [node name="PitRoom" type="Node3D" parent="."] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, -0.0629635) -script = ExtResource("2_i4ais") +script = ExtResource("2_7fo8x") [node name="Model" type="Node3D" parent="PitRoom"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -11.4866, -11.2786, 1.89266) diff --git a/src/map/dungeon/scenes/Set B/23. Antechamber 4.tscn b/src/map/dungeon/scenes/Set B/23. Antechamber 4.tscn index 0ce7bafe..93251531 100644 --- a/src/map/dungeon/scenes/Set B/23. Antechamber 4.tscn +++ b/src/map/dungeon/scenes/Set B/23. Antechamber 4.tscn @@ -1,7 +1,7 @@ [gd_scene load_steps=38 format=4 uid="uid://utaqo4hl68yw"] [ext_resource type="Script" uid="uid://ce73fuh74l81l" path="res://addons/SimpleDungeons/DungeonRoom3D.gd" id="1_5dvbl"] -[ext_resource type="Script" uid="uid://daetb3e2nm56p" path="res://src/map/dungeon/code/DungeonRoom.cs" id="2_spv7m"] +[ext_resource type="Script" uid="uid://dhollu4j3pynq" path="res://src/map/dungeon/code/MonsterRoom.cs" id="2_dp1b6"] [ext_resource type="Texture2D" uid="uid://b5xdhkutdcpru" path="res://src/map/dungeon/models/Set B/23. Antechamber D/23_A2_ANTECHAMBER_TYPE_D_COLUMN_WHITE.png" id="3_e72ml"] [ext_resource type="Texture2D" uid="uid://q04p7uylr8bm" path="res://src/map/dungeon/models/Set B/23. Antechamber D/23_A2_ANTECHAMBER_TYPE_D_AREA_2_MAIN_STONE.png" id="4_ttquq"] [ext_resource type="Texture2D" uid="uid://cuxv5h01lb736" path="res://src/map/dungeon/models/Set B/23. Antechamber D/23_A2_ANTECHAMBER_TYPE_D_area_2_big_tile.png" id="5_buyel"] @@ -391,7 +391,7 @@ texture_filter = 0 [sub_resource type="StandardMaterial3D" id="StandardMaterial3D_hwsho"] albedo_texture = ExtResource("16_6dqol") -[node name="DungeonRoom3D" type="Node3D"] +[node name="Antechamber 4" type="Node3D"] script = ExtResource("1_5dvbl") size_in_voxels = Vector3i(5, 1, 4) voxel_scale = Vector3(4, 4, 4) @@ -399,7 +399,7 @@ min_count = 1 max_count = 2 [node name="Antechamber4" type="Node3D" parent="."] -script = ExtResource("2_spv7m") +script = ExtResource("2_dp1b6") [node name="Model" type="Node3D" parent="Antechamber4"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -1.22989, 2.44498, -1.50787) diff --git a/src/map/dungeon/scenes/Set B/24. BalconyRoom 2.tscn b/src/map/dungeon/scenes/Set B/24. Balcony Room 2.tscn similarity index 99% rename from src/map/dungeon/scenes/Set B/24. BalconyRoom 2.tscn rename to src/map/dungeon/scenes/Set B/24. Balcony Room 2.tscn index f9ba62f4..1e3930aa 100644 --- a/src/map/dungeon/scenes/Set B/24. BalconyRoom 2.tscn +++ b/src/map/dungeon/scenes/Set B/24. Balcony Room 2.tscn @@ -1,35 +1,35 @@ [gd_scene load_steps=76 format=4 uid="uid://bhqmpgpegcuu5"] -[ext_resource type="Script" uid="uid://ce73fuh74l81l" path="res://addons/SimpleDungeons/DungeonRoom3D.gd" id="1_3dspc"] -[ext_resource type="Script" uid="uid://daetb3e2nm56p" path="res://src/map/dungeon/code/DungeonRoom.cs" id="2_ueu6m"] -[ext_resource type="Texture2D" uid="uid://xnjugcy3qwuy" path="res://src/map/dungeon/models/Set B/24. Balcony Room B/24_A2_BALCONY_ROOM_B_HAND-CYCLE-FLOOR.png" id="3_ueu6m"] -[ext_resource type="Texture2D" uid="uid://6bf2rf3sic7t" path="res://src/map/dungeon/models/Set B/24. Balcony Room B/24_A2_BALCONY_ROOM_B_AREA_2_MAIN_STONE.png" id="4_l314a"] -[ext_resource type="Texture2D" uid="uid://dxqrc5iwebd0u" path="res://src/map/dungeon/models/Set B/24. Balcony Room B/24_A2_BALCONY_ROOM_B_COLUMN_WHITE.png" id="5_mhaj1"] -[ext_resource type="Texture2D" uid="uid://dwbjyl730rvfy" path="res://src/map/dungeon/models/Set B/24. Balcony Room B/24_A2_BALCONY_ROOM_B_area_2_big_tile.png" id="6_qjp0o"] -[ext_resource type="Texture2D" uid="uid://cmqosy3nf5eyk" path="res://src/map/dungeon/models/Set B/24. Balcony Room B/24_A2_BALCONY_ROOM_B_WHITE_TILE2.png" id="7_h1ewn"] -[ext_resource type="Texture2D" uid="uid://q41d4pj75v2x" path="res://src/map/dungeon/models/Set B/24. Balcony Room B/24_A2_BALCONY_ROOM_B_AREA_2_MAIN_STON2E.png" id="8_65wjq"] -[ext_resource type="Texture2D" uid="uid://cu80bxvtithwh" path="res://src/map/dungeon/models/Set B/24. Balcony Room B/24_A2_BALCONY_ROOM_B_mother_GREEN.png" id="9_cyka4"] -[ext_resource type="Texture2D" uid="uid://56j4qgrybotv" path="res://src/map/dungeon/models/Set B/24. Balcony Room B/24_A2_BALCONY_ROOM_B_WHITE_layer_brick1.png" id="10_fp3fh"] -[ext_resource type="PackedScene" uid="uid://twrj4wixcbu7" path="res://src/items/ItemDatabase.tscn" id="11_6wdqa"] -[ext_resource type="Texture2D" uid="uid://ca0scs1ju3c18" path="res://src/map/dungeon/models/Set B/24. Balcony Room B/24_A2_BALCONY_ROOM_B_railing-2_billboard.png" id="11_7m4sw"] -[ext_resource type="Script" uid="uid://yl7wyeo5m725" path="res://src/map/dungeon/code/remove_unused_doors.gd" id="12_lr2q3"] -[ext_resource type="Script" uid="uid://c6s8hvdj3u3aq" path="res://src/map/dungeon/code/MinimapManager.cs" id="13_phf36"] -[ext_resource type="Material" uid="uid://bsafm3t4drpl" path="res://src/map/dungeon/textures/MinimapTexture.tres" id="14_63k6p"] -[ext_resource type="Texture2D" uid="uid://dvast710lxrmw" path="res://src/map/dungeon/door/A2_BLOCKED_DOOR.png" id="15_3os4t"] -[ext_resource type="Texture2D" uid="uid://bkvegamuqdsdd" path="res://src/map/dungeon/models/Set A/18. Corridor A/CORRIDOR test_FLOOR1.jpg" id="16_h7snd"] +[ext_resource type="Script" uid="uid://ce73fuh74l81l" path="res://addons/SimpleDungeons/DungeonRoom3D.gd" id="1_y05dd"] +[ext_resource type="Script" uid="uid://dhollu4j3pynq" path="res://src/map/dungeon/code/MonsterRoom.cs" id="2_fp3eo"] +[ext_resource type="Texture2D" uid="uid://xnjugcy3qwuy" path="res://src/map/dungeon/models/Set B/24. Balcony Room B/24_A2_BALCONY_ROOM_B_HAND-CYCLE-FLOOR.png" id="3_s0tqy"] +[ext_resource type="Texture2D" uid="uid://6bf2rf3sic7t" path="res://src/map/dungeon/models/Set B/24. Balcony Room B/24_A2_BALCONY_ROOM_B_AREA_2_MAIN_STONE.png" id="4_48uts"] +[ext_resource type="Texture2D" uid="uid://dxqrc5iwebd0u" path="res://src/map/dungeon/models/Set B/24. Balcony Room B/24_A2_BALCONY_ROOM_B_COLUMN_WHITE.png" id="5_cky4e"] +[ext_resource type="Texture2D" uid="uid://dwbjyl730rvfy" path="res://src/map/dungeon/models/Set B/24. Balcony Room B/24_A2_BALCONY_ROOM_B_area_2_big_tile.png" id="6_pg0qw"] +[ext_resource type="Texture2D" uid="uid://cmqosy3nf5eyk" path="res://src/map/dungeon/models/Set B/24. Balcony Room B/24_A2_BALCONY_ROOM_B_WHITE_TILE2.png" id="7_lurn8"] +[ext_resource type="Texture2D" uid="uid://q41d4pj75v2x" path="res://src/map/dungeon/models/Set B/24. Balcony Room B/24_A2_BALCONY_ROOM_B_AREA_2_MAIN_STON2E.png" id="8_ktrwx"] +[ext_resource type="Texture2D" uid="uid://cu80bxvtithwh" path="res://src/map/dungeon/models/Set B/24. Balcony Room B/24_A2_BALCONY_ROOM_B_mother_GREEN.png" id="9_n4664"] +[ext_resource type="Texture2D" uid="uid://56j4qgrybotv" path="res://src/map/dungeon/models/Set B/24. Balcony Room B/24_A2_BALCONY_ROOM_B_WHITE_layer_brick1.png" id="10_1de77"] +[ext_resource type="Texture2D" uid="uid://ca0scs1ju3c18" path="res://src/map/dungeon/models/Set B/24. Balcony Room B/24_A2_BALCONY_ROOM_B_railing-2_billboard.png" id="11_w68qo"] +[ext_resource type="PackedScene" uid="uid://twrj4wixcbu7" path="res://src/items/ItemDatabase.tscn" id="12_4qolk"] +[ext_resource type="Script" uid="uid://yl7wyeo5m725" path="res://src/map/dungeon/code/remove_unused_doors.gd" id="13_wbkjn"] +[ext_resource type="Script" uid="uid://c6s8hvdj3u3aq" path="res://src/map/dungeon/code/MinimapManager.cs" id="14_rhfqv"] +[ext_resource type="Material" uid="uid://bsafm3t4drpl" path="res://src/map/dungeon/textures/MinimapTexture.tres" id="15_am71f"] +[ext_resource type="Texture2D" uid="uid://dvast710lxrmw" path="res://src/map/dungeon/door/A2_BLOCKED_DOOR.png" id="16_fepoq"] +[ext_resource type="Texture2D" uid="uid://bkvegamuqdsdd" path="res://src/map/dungeon/models/Set A/18. Corridor A/CORRIDOR test_FLOOR1.jpg" id="17_pvfiu"] [sub_resource type="StandardMaterial3D" id="StandardMaterial3D_wbpjo"] resource_name = "Material.248" cull_mode = 2 shading_mode = 0 -albedo_texture = ExtResource("3_ueu6m") +albedo_texture = ExtResource("3_s0tqy") [sub_resource type="StandardMaterial3D" id="StandardMaterial3D_woxtl"] resource_name = "Material.152" transparency = 4 cull_mode = 2 shading_mode = 0 -albedo_texture = ExtResource("4_l314a") +albedo_texture = ExtResource("4_48uts") texture_filter = 2 [sub_resource type="ArrayMesh" id="ArrayMesh_ad6wh"] @@ -149,7 +149,7 @@ resource_name = "Material.006" transparency = 4 cull_mode = 2 shading_mode = 0 -albedo_texture = ExtResource("5_mhaj1") +albedo_texture = ExtResource("5_cky4e") texture_filter = 2 [sub_resource type="ArrayMesh" id="ArrayMesh_c8xg0"] @@ -225,7 +225,7 @@ resource_name = "Material.092" transparency = 4 cull_mode = 2 shading_mode = 0 -albedo_texture = ExtResource("6_qjp0o") +albedo_texture = ExtResource("6_pg0qw") [sub_resource type="ArrayMesh" id="ArrayMesh_dmdo7"] _surfaces = [{ @@ -325,14 +325,14 @@ resource_name = "Material.023" transparency = 4 cull_mode = 2 shading_mode = 0 -albedo_texture = ExtResource("7_h1ewn") +albedo_texture = ExtResource("7_lurn8") [sub_resource type="StandardMaterial3D" id="StandardMaterial3D_xi63o"] resource_name = "Material.001" transparency = 4 cull_mode = 2 shading_mode = 0 -albedo_texture = ExtResource("8_65wjq") +albedo_texture = ExtResource("8_ktrwx") [sub_resource type="ArrayMesh" id="ArrayMesh_6j3c3"] _surfaces = [{ @@ -421,7 +421,7 @@ alpha_scissor_threshold = 0.5 alpha_antialiasing_mode = 0 cull_mode = 2 shading_mode = 0 -albedo_texture = ExtResource("9_cyka4") +albedo_texture = ExtResource("9_n4664") [sub_resource type="ArrayMesh" id="ArrayMesh_w77xm"] _surfaces = [{ @@ -459,7 +459,7 @@ shadow_mesh = SubResource("ArrayMesh_w77xm") resource_name = "Material.011" cull_mode = 2 shading_mode = 0 -albedo_texture = ExtResource("10_fp3fh") +albedo_texture = ExtResource("10_1de77") [sub_resource type="ArrayMesh" id="ArrayMesh_gnsjs"] _surfaces = [{ @@ -574,7 +574,7 @@ alpha_scissor_threshold = 0.5 alpha_antialiasing_mode = 0 cull_mode = 2 shading_mode = 0 -albedo_texture = ExtResource("11_7m4sw") +albedo_texture = ExtResource("11_w68qo") texture_filter = 2 [sub_resource type="ArrayMesh" id="ArrayMesh_21i07"] @@ -634,25 +634,25 @@ size = Vector3(1, 2.717, 1) size = Vector3(1, 2.717, 1) [sub_resource type="PlaneMesh" id="PlaneMesh_qxc34"] -material = ExtResource("14_63k6p") +material = ExtResource("15_am71f") size = Vector2(20, 16) [sub_resource type="StandardMaterial3D" id="StandardMaterial3D_dhety"] -albedo_texture = ExtResource("15_3os4t") +albedo_texture = ExtResource("16_fepoq") texture_filter = 0 [sub_resource type="StandardMaterial3D" id="StandardMaterial3D_hwsho"] -albedo_texture = ExtResource("16_h7snd") +albedo_texture = ExtResource("17_pvfiu") -[node name="DungeonRoom3D" type="Node3D"] -script = ExtResource("1_3dspc") +[node name="Balcony Room 2" type="Node3D"] +script = ExtResource("1_y05dd") size_in_voxels = Vector3i(9, 1, 8) voxel_scale = Vector3(4, 4, 4) min_count = 1 max_count = 2 [node name="BalconyRoom2" type="Node3D" parent="."] -script = ExtResource("2_ueu6m") +script = ExtResource("2_fp3eo") [node name="Model" type="Node3D" parent="BalconyRoom2"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -7.47922, 9.8006, -3.80776) @@ -915,7 +915,7 @@ transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -25.114, 0.496096, 10.8555) [node name="EnemySpawn1" type="Marker3D" parent="BalconyRoom2/EnemySpawnPoints"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 23.9514, -2.12568, -13.2894) -[node name="ItemDatabase" parent="BalconyRoom2" instance=ExtResource("11_6wdqa")] +[node name="ItemDatabase" parent="BalconyRoom2" instance=ExtResource("12_4qolk")] unique_name_in_owner = true [node name="TeleportSpawn" type="Marker3D" parent="BalconyRoom2"] @@ -923,13 +923,13 @@ unique_name_in_owner = true transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 2.74798, -1.55568, 2.8662) [node name="RemoveUnusedDoors" type="Node" parent="."] -script = ExtResource("12_lr2q3") +script = ExtResource("13_wbkjn") [node name="Minimap Manager" type="Area3D" parent="."] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, -5.45268, 0) collision_layer = 512 collision_mask = 512 -script = ExtResource("13_phf36") +script = ExtResource("14_rhfqv") [node name="Minimap" type="MeshInstance3D" parent="Minimap Manager"] unique_name_in_owner = true diff --git a/src/map/dungeon/scenes/Set B/25. Pedestal Room.tscn b/src/map/dungeon/scenes/Set B/25. Pedestal Room.tscn index 53e28be3..d4a88869 100644 --- a/src/map/dungeon/scenes/Set B/25. Pedestal Room.tscn +++ b/src/map/dungeon/scenes/Set B/25. Pedestal Room.tscn @@ -1,7 +1,7 @@ [gd_scene load_steps=58 format=4 uid="uid://dbfkpodwvxmfe"] [ext_resource type="Script" uid="uid://ce73fuh74l81l" path="res://addons/SimpleDungeons/DungeonRoom3D.gd" id="1_1ck42"] -[ext_resource type="Script" uid="uid://daetb3e2nm56p" path="res://src/map/dungeon/code/DungeonRoom.cs" id="2_adafg"] +[ext_resource type="Script" uid="uid://dhollu4j3pynq" path="res://src/map/dungeon/code/MonsterRoom.cs" id="2_dhi6g"] [ext_resource type="Texture2D" uid="uid://b56jom8egc532" path="res://src/map/dungeon/models/Set B/25. Pedestal Room/25_A2_PEDESTAL_ROOM_AREA_2_MAIN_STONE.png" id="3_dhi6g"] [ext_resource type="Texture2D" uid="uid://cu3jfu4npfjtv" path="res://src/map/dungeon/models/Set B/25. Pedestal Room/25_A2_PEDESTAL_ROOM_area_2_big_tile.png" id="4_uwyye"] [ext_resource type="Texture2D" uid="uid://bx04tlo8jdbvh" path="res://src/map/dungeon/models/Set B/25. Pedestal Room/25_A2_PEDESTAL_ROOM_area_2_tile_3.png" id="5_jmhln"] @@ -725,117 +725,117 @@ texture_filter = 0 [sub_resource type="StandardMaterial3D" id="StandardMaterial3D_hwsho"] albedo_texture = ExtResource("16_0cdpp") -[node name="DungeonRoom3D" type="Node3D"] +[node name="Pedestal Room" type="Node3D"] script = ExtResource("1_1ck42") size_in_voxels = Vector3i(5, 1, 4) voxel_scale = Vector3(4, 4, 4) min_count = 1 max_count = 2 -[node name="Antechamber4" type="Node3D" parent="."] -script = ExtResource("2_adafg") +[node name="Pedestal Room" type="Node3D" parent="."] +script = ExtResource("2_dhi6g") -[node name="Model" type="Node3D" parent="Antechamber4"] +[node name="Model" type="Node3D" parent="Pedestal Room"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 2.44395, 5.66566, 3.25061) -[node name="25_A2_PEDESTAL_ROOM" type="Node3D" parent="Antechamber4/Model"] +[node name="25_A2_PEDESTAL_ROOM" type="Node3D" parent="Pedestal Room/Model"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 1.22989, -17.3501, -105.788) -[node name="ROOM_001" type="MeshInstance3D" parent="Antechamber4/Model/25_A2_PEDESTAL_ROOM"] +[node name="ROOM_001" type="MeshInstance3D" parent="Pedestal Room/Model/25_A2_PEDESTAL_ROOM"] transform = Transform3D(0.35918, 0, 0, 0, 0.287429, 0, 0, 0, 0.287429, -3.6523, 13.6997, 102.523) mesh = SubResource("ArrayMesh_examh") skeleton = NodePath("") -[node name="StaticBody3D" type="StaticBody3D" parent="Antechamber4/Model/25_A2_PEDESTAL_ROOM/ROOM_001"] +[node name="StaticBody3D" type="StaticBody3D" parent="Pedestal Room/Model/25_A2_PEDESTAL_ROOM/ROOM_001"] -[node name="CollisionShape3D" type="CollisionShape3D" parent="Antechamber4/Model/25_A2_PEDESTAL_ROOM/ROOM_001/StaticBody3D"] +[node name="CollisionShape3D" type="CollisionShape3D" parent="Pedestal Room/Model/25_A2_PEDESTAL_ROOM/ROOM_001/StaticBody3D"] shape = SubResource("ConcavePolygonShape3D_uwyye") -[node name="CEILING EMBELESHMENT_002" type="MeshInstance3D" parent="Antechamber4/Model/25_A2_PEDESTAL_ROOM"] +[node name="CEILING EMBELESHMENT_002" type="MeshInstance3D" parent="Pedestal Room/Model/25_A2_PEDESTAL_ROOM"] transform = Transform3D(0.288009, 0, 0, 0, 0.288009, 0, 0, 0, 0.288009, -3.63977, 17.5334, 102.41) mesh = SubResource("ArrayMesh_veosj") skeleton = NodePath("") -[node name="Pancaked Ways_004" type="MeshInstance3D" parent="Antechamber4/Model/25_A2_PEDESTAL_ROOM"] +[node name="Pancaked Ways_004" type="MeshInstance3D" parent="Pedestal Room/Model/25_A2_PEDESTAL_ROOM"] transform = Transform3D(7.30095e-08, 0, -0.112906, 0, 0.0752327, 0, 0.204149, 0, 4.03782e-08, -5.66358, 13.4973, 94.8498) mesh = SubResource("ArrayMesh_5prdj") skeleton = NodePath("") -[node name="COLLISION_001" type="MeshInstance3D" parent="Antechamber4/Model/25_A2_PEDESTAL_ROOM"] +[node name="COLLISION_001" type="MeshInstance3D" parent="Pedestal Room/Model/25_A2_PEDESTAL_ROOM"] transform = Transform3D(0.876181, 0, 0, 0, 4.0811, 0, 0, 0, 0.876181, -3.64698, 13.6985, 102.418) visible = false mesh = SubResource("ArrayMesh_t8jtq") skeleton = NodePath("") -[node name="StaticBody3D" type="StaticBody3D" parent="Antechamber4/Model/25_A2_PEDESTAL_ROOM/COLLISION_001"] +[node name="StaticBody3D" type="StaticBody3D" parent="Pedestal Room/Model/25_A2_PEDESTAL_ROOM/COLLISION_001"] -[node name="CollisionShape3D" type="CollisionShape3D" parent="Antechamber4/Model/25_A2_PEDESTAL_ROOM/COLLISION_001/StaticBody3D"] +[node name="CollisionShape3D" type="CollisionShape3D" parent="Pedestal Room/Model/25_A2_PEDESTAL_ROOM/COLLISION_001/StaticBody3D"] shape = SubResource("ConcavePolygonShape3D_dhi6g") -[node name="COLUMNS" type="MeshInstance3D" parent="Antechamber4/Model/25_A2_PEDESTAL_ROOM"] +[node name="COLUMNS" type="MeshInstance3D" parent="Pedestal Room/Model/25_A2_PEDESTAL_ROOM"] transform = Transform3D(0.0926453, 0, 0, 0, 0, -0.0852114, 0, 0.0926453, 0, -15.5026, 2.44744, 90.2222) mesh = SubResource("ArrayMesh_3jmql") skeleton = NodePath("") -[node name="Plane" type="MeshInstance3D" parent="Antechamber4/Model/25_A2_PEDESTAL_ROOM"] +[node name="Plane" type="MeshInstance3D" parent="Pedestal Room/Model/25_A2_PEDESTAL_ROOM"] transform = Transform3D(2.03762, 0, 0, 0, 0, -1.60151, 0, 1.60151, 0, -3.62803, 13.9103, 110.442) mesh = SubResource("ArrayMesh_wi0mf") skeleton = NodePath("") -[node name="Cylinder_002" type="MeshInstance3D" parent="Antechamber4/Model/25_A2_PEDESTAL_ROOM"] +[node name="Cylinder_002" type="MeshInstance3D" parent="Pedestal Room/Model/25_A2_PEDESTAL_ROOM"] transform = Transform3D(0.788483, 0, 0, 0, 0.847337, 0, 0, 0, 0.788483, -3.66405, 10.5048, 102.452) mesh = SubResource("ArrayMesh_pm15u") skeleton = NodePath("") -[node name="Cylinder_003" type="MeshInstance3D" parent="Antechamber4/Model/25_A2_PEDESTAL_ROOM"] +[node name="Cylinder_003" type="MeshInstance3D" parent="Pedestal Room/Model/25_A2_PEDESTAL_ROOM"] transform = Transform3D(-0.811611, 3.62222e-07, 0, -1.2255e-07, -2.39889, 0, 0, 0, 0.811611, -3.66405, 15.4202, 102.452) mesh = SubResource("ArrayMesh_pm15u") skeleton = NodePath("") -[node name="StaticBody3D" type="StaticBody3D" parent="Antechamber4/Model"] +[node name="StaticBody3D" type="StaticBody3D" parent="Pedestal Room/Model"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -2.44395, -5.66566, -3.25061) -[node name="CollisionShape3D" type="CollisionShape3D" parent="Antechamber4/Model/StaticBody3D"] +[node name="CollisionShape3D" type="CollisionShape3D" parent="Pedestal Room/Model/StaticBody3D"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -7.09215, 0, -7.17281) shape = SubResource("CylinderShape3D_dhi6g") -[node name="CollisionShape3D2" type="CollisionShape3D" parent="Antechamber4/Model/StaticBody3D"] +[node name="CollisionShape3D2" type="CollisionShape3D" parent="Pedestal Room/Model/StaticBody3D"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 7.11669, 0, -7.17281) shape = SubResource("CylinderShape3D_dhi6g") -[node name="CollisionShape3D3" type="CollisionShape3D" parent="Antechamber4/Model/StaticBody3D"] +[node name="CollisionShape3D3" type="CollisionShape3D" parent="Pedestal Room/Model/StaticBody3D"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 7.11669, 0, 7.07423) shape = SubResource("CylinderShape3D_dhi6g") -[node name="CollisionShape3D4" type="CollisionShape3D" parent="Antechamber4/Model/StaticBody3D"] +[node name="CollisionShape3D4" type="CollisionShape3D" parent="Pedestal Room/Model/StaticBody3D"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -7.07305, 0.429077, 7.07423) shape = SubResource("CylinderShape3D_dhi6g") -[node name="PlayerSpawn" type="Marker3D" parent="Antechamber4"] +[node name="PlayerSpawn" type="Marker3D" parent="Pedestal Room"] unique_name_in_owner = true transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -0.336617, -1.37707, 0.928175) -[node name="ItemSpawnPoints" type="Node3D" parent="Antechamber4"] +[node name="ItemSpawnPoints" type="Node3D" parent="Pedestal Room"] unique_name_in_owner = true transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -25.114, 0.496096, 10.8555) -[node name="ItemSpawnPoint" type="Marker3D" parent="Antechamber4/ItemSpawnPoints"] +[node name="ItemSpawnPoint" type="Marker3D" parent="Pedestal Room/ItemSpawnPoints"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 20.4261, -1.87126, -14.9165) -[node name="ItemSpawnPoint3" type="Marker3D" parent="Antechamber4/ItemSpawnPoints"] +[node name="ItemSpawnPoint3" type="Marker3D" parent="Pedestal Room/ItemSpawnPoints"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 28.37, -1.58527, -14.1998) -[node name="EnemySpawnPoints" type="Node3D" parent="Antechamber4"] +[node name="EnemySpawnPoints" type="Node3D" parent="Pedestal Room"] unique_name_in_owner = true transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -25.114, 0.496096, 10.8555) -[node name="EnemySpawn1" type="Marker3D" parent="Antechamber4/EnemySpawnPoints"] +[node name="EnemySpawn1" type="Marker3D" parent="Pedestal Room/EnemySpawnPoints"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 23.9514, -2.12568, -13.2894) -[node name="ItemDatabase" parent="Antechamber4" instance=ExtResource("11_axa2u")] +[node name="ItemDatabase" parent="Pedestal Room" instance=ExtResource("11_axa2u")] unique_name_in_owner = true -[node name="TeleportSpawn" type="Marker3D" parent="Antechamber4"] +[node name="TeleportSpawn" type="Marker3D" parent="Pedestal Room"] unique_name_in_owner = true transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 2.74798, -1.55568, 2.8662) @@ -853,7 +853,7 @@ unique_name_in_owner = true transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -0.0054841, -1.49217, 0.149613) layers = 2 mesh = SubResource("PlaneMesh_qxc34") -skeleton = NodePath("../../Antechamber4") +skeleton = NodePath("../../Pedestal Room") [node name="CSGBox3D" type="CSGBox3D" parent="."] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -0.0224749, 1.83591, -0.00639793) diff --git a/src/map/dungeon/scenes/Set B/26. Item Transfer Room B.tscn b/src/map/dungeon/scenes/Set B/26. Item Transfer Room B.tscn index 64127b6a..fabfcc82 100644 --- a/src/map/dungeon/scenes/Set B/26. Item Transfer Room B.tscn +++ b/src/map/dungeon/scenes/Set B/26. Item Transfer Room B.tscn @@ -1,7 +1,7 @@ [gd_scene load_steps=56 format=4 uid="uid://d2k2v4bcybx3k"] [ext_resource type="Script" uid="uid://ce73fuh74l81l" path="res://addons/SimpleDungeons/DungeonRoom3D.gd" id="1_siqky"] -[ext_resource type="Script" uid="uid://daetb3e2nm56p" path="res://src/map/dungeon/code/DungeonRoom.cs" id="2_si5ok"] +[ext_resource type="Script" uid="uid://dhollu4j3pynq" path="res://src/map/dungeon/code/MonsterRoom.cs" id="2_ltal0"] [ext_resource type="Texture2D" uid="uid://rdbh0k3th6aw" path="res://src/map/dungeon/models/Set B/26. Item Transfer Room B/26_A2_ITEM_TRANSFER_ROOM_B_STONE_PANEL_AREA2png.png" id="3_ltal0"] [ext_resource type="Texture2D" uid="uid://pk017vrdih1p" path="res://src/map/dungeon/models/Set B/26. Item Transfer Room B/26_A2_ITEM_TRANSFER_ROOM_B_AREA_2_MAIN_STONE.png" id="4_x3ann"] [ext_resource type="Texture2D" uid="uid://bfqij0ugb1pn3" path="res://src/map/dungeon/models/Set B/26. Item Transfer Room B/26_A2_ITEM_TRANSFER_ROOM_B_area_2_big_tile.png" id="5_wiuk0"] @@ -752,7 +752,7 @@ texture_filter = 0 [sub_resource type="StandardMaterial3D" id="StandardMaterial3D_hwsho"] albedo_texture = ExtResource("16_vl2p0") -[node name="DungeonRoom3D" type="Node3D"] +[node name="Item Transfer Room B" type="Node3D"] script = ExtResource("1_siqky") size_in_voxels = Vector3i(3, 1, 4) voxel_scale = Vector3(4, 4, 4) @@ -760,7 +760,7 @@ min_count = 1 max_count = 2 [node name="Item Transfer Room B" type="Node3D" parent="."] -script = ExtResource("2_si5ok") +script = ExtResource("2_ltal0") [node name="Model" type="Node3D" parent="Item Transfer Room B"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -3.84663, 3.15375, -2.54799) diff --git a/src/map/dungeon/scenes/Set B/27. Water Room B.tscn b/src/map/dungeon/scenes/Set B/27. Water Room B.tscn index 0b08ca43..bca26e5d 100644 --- a/src/map/dungeon/scenes/Set B/27. Water Room B.tscn +++ b/src/map/dungeon/scenes/Set B/27. Water Room B.tscn @@ -1,7 +1,7 @@ [gd_scene load_steps=70 format=4 uid="uid://cypdcaqeylnwl"] +[ext_resource type="Script" uid="uid://dhollu4j3pynq" path="res://src/map/dungeon/code/MonsterRoom.cs" id="1_h7qp4"] [ext_resource type="Script" uid="uid://ce73fuh74l81l" path="res://addons/SimpleDungeons/DungeonRoom3D.gd" id="1_nwdhf"] -[ext_resource type="Script" uid="uid://daetb3e2nm56p" path="res://src/map/dungeon/code/DungeonRoom.cs" id="2_h7qp4"] [ext_resource type="Texture2D" uid="uid://c2vcstahhon0o" path="res://src/map/dungeon/models/Set B/27. Water Room B/27_A2_WATER_ROOM_B_flowers-in-water.png" id="3_nwdhf"] [ext_resource type="Texture2D" uid="uid://c3hcmpwhns38f" path="res://src/map/dungeon/models/Set B/27. Water Room B/27_A2_WATER_ROOM_B_AREA_2_MAIN_STON2E.png" id="4_h7qp4"] [ext_resource type="Texture2D" uid="uid://cu4igoj0p0ikk" path="res://src/map/dungeon/models/Set B/27. Water Room B/27_A2_WATER_ROOM_B_area_2_big_tile.png" id="5_vsl56"] @@ -771,13 +771,9 @@ albedo_texture = ExtResource("22_a5aj6") [node name="DungeonRoom3D" type="Node3D"] script = ExtResource("1_nwdhf") -size_in_voxels = Vector3i(7, 1, 12) -voxel_scale = Vector3(4, 4, 4) -min_count = 1 -max_count = 2 [node name="Water Room B" type="Node3D" parent="."] -script = ExtResource("2_h7qp4") +script = ExtResource("1_h7qp4") [node name="Model" type="Node3D" parent="Water Room B"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 4.6973, 4.84378, 10.1488) diff --git a/src/map/dungeon/scenes/Set B/28. Long Room B.tscn b/src/map/dungeon/scenes/Set B/28. Long Room B.tscn index 462b9cdc..85d6cf7e 100644 --- a/src/map/dungeon/scenes/Set B/28. Long Room B.tscn +++ b/src/map/dungeon/scenes/Set B/28. Long Room B.tscn @@ -1,7 +1,7 @@ [gd_scene load_steps=58 format=4 uid="uid://b8tiuu3l181ke"] [ext_resource type="Script" uid="uid://ce73fuh74l81l" path="res://addons/SimpleDungeons/DungeonRoom3D.gd" id="1_oayuk"] -[ext_resource type="Script" uid="uid://daetb3e2nm56p" path="res://src/map/dungeon/code/DungeonRoom.cs" id="2_djdya"] +[ext_resource type="Script" uid="uid://dhollu4j3pynq" path="res://src/map/dungeon/code/MonsterRoom.cs" id="2_oayuk"] [ext_resource type="Texture2D" uid="uid://bnw5y7olvv0lc" path="res://src/map/dungeon/models/Set B/28. Long Room B/28_A2_LONG_ROOM_B_railing-2_billboard.png" id="3_oayuk"] [ext_resource type="Texture2D" uid="uid://cstjhs8n8ybld" path="res://src/map/dungeon/models/Set B/28. Long Room B/28_A2_LONG_ROOM_B_HAND-CYCLE-FLOOR.png" id="4_djdya"] [ext_resource type="Texture2D" uid="uid://bkjbrdseivana" path="res://src/map/dungeon/models/Set B/28. Long Room B/28_A2_LONG_ROOM_B_AREA_2_MAIN_STONE.png" id="5_58wok"] @@ -586,7 +586,7 @@ albedo_texture = ExtResource("19_xb78s") shading_mode = 0 albedo_texture = ExtResource("19_xb78s") -[node name="DungeonRoom3D" type="Node3D"] +[node name="Long Room B" type="Node3D"] script = ExtResource("1_oayuk") size_in_voxels = Vector3i(12, 1, 7) voxel_scale = Vector3(4, 4, 4) @@ -594,7 +594,7 @@ min_count = 1 max_count = 2 [node name="Long Room B" type="Node3D" parent="."] -script = ExtResource("2_djdya") +script = ExtResource("2_oayuk") [node name="Model" type="Node3D" parent="Long Room B"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 2.86728, -0.806632, 2.26142) diff --git a/src/map/dungeon/scenes/Set B/29. Column Circle Room.tscn b/src/map/dungeon/scenes/Set B/29. Column Circle Room.tscn index afa204e0..69980f5e 100644 --- a/src/map/dungeon/scenes/Set B/29. Column Circle Room.tscn +++ b/src/map/dungeon/scenes/Set B/29. Column Circle Room.tscn @@ -1,7 +1,7 @@ [gd_scene load_steps=36 format=4 uid="uid://5cstpejxygy6"] [ext_resource type="Script" uid="uid://ce73fuh74l81l" path="res://addons/SimpleDungeons/DungeonRoom3D.gd" id="1_h5vd2"] -[ext_resource type="Script" uid="uid://daetb3e2nm56p" path="res://src/map/dungeon/code/DungeonRoom.cs" id="2_3yy2v"] +[ext_resource type="Script" uid="uid://dhollu4j3pynq" path="res://src/map/dungeon/code/MonsterRoom.cs" id="2_i2lux"] [ext_resource type="Texture2D" uid="uid://br0mmudsrjvjr" path="res://src/map/dungeon/models/Set B/29. Column Circle Room/29_A2_COLUMN_CIRCLE_ROOM_COLUMN_WHITE.png" id="3_jpe4o"] [ext_resource type="Texture2D" uid="uid://6ij2st3pptd0" path="res://src/map/dungeon/models/Set B/29. Column Circle Room/29_A2_COLUMN_CIRCLE_ROOM_area_2_big_tile.png" id="4_euk7n"] [ext_resource type="Texture2D" uid="uid://bfk41l5tsd80c" path="res://src/map/dungeon/models/Set B/29. Column Circle Room/29_A2_COLUMN_CIRCLE_ROOM_area_2_tile_3.png" id="5_wmaqp"] @@ -333,7 +333,7 @@ texture_filter = 0 [sub_resource type="StandardMaterial3D" id="StandardMaterial3D_hwsho"] albedo_texture = ExtResource("20_5h87f") -[node name="DungeonRoom3D" type="Node3D"] +[node name="Column Circle Room" type="Node3D"] script = ExtResource("1_h5vd2") size_in_voxels = Vector3i(5, 1, 5) voxel_scale = Vector3(4, 4, 4) @@ -341,7 +341,7 @@ min_count = 1 max_count = 2 [node name="ColumnCircleRoom" type="Node3D" parent="."] -script = ExtResource("2_3yy2v") +script = ExtResource("2_i2lux") [node name="29_A2_COLUMN_CIRCLE_ROOM" type="Node3D" parent="ColumnCircleRoom"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, -1.43295, 2.95279) diff --git a/src/map/dungeon/scenes/Set B/31. Dismantled Saint's Room.tscn b/src/map/dungeon/scenes/Set B/31. Dismantled Saint's Room.tscn index b019f697..1b4cd20a 100644 --- a/src/map/dungeon/scenes/Set B/31. Dismantled Saint's Room.tscn +++ b/src/map/dungeon/scenes/Set B/31. Dismantled Saint's Room.tscn @@ -1,7 +1,7 @@ [gd_scene load_steps=69 format=4 uid="uid://b1oayub1dt5ag"] [ext_resource type="Script" uid="uid://ce73fuh74l81l" path="res://addons/SimpleDungeons/DungeonRoom3D.gd" id="1_1cj2y"] -[ext_resource type="Script" uid="uid://daetb3e2nm56p" path="res://src/map/dungeon/code/DungeonRoom.cs" id="2_ppbeh"] +[ext_resource type="Script" uid="uid://dhollu4j3pynq" path="res://src/map/dungeon/code/MonsterRoom.cs" id="2_p5ha7"] [ext_resource type="Texture2D" uid="uid://cuwdpox6e74jo" path="res://src/map/dungeon/models/Set B/31. Dismantled Saint's Room/31_A2_Dismantled_Saint_Room_COLUMN_WHITE.png" id="3_p5ha7"] [ext_resource type="Texture2D" uid="uid://b7kiqxbdxj1il" path="res://src/map/dungeon/models/Set B/31. Dismantled Saint's Room/31_A2_Dismantled_Saint_Room_inner_rock2.png" id="4_e2vx2"] [ext_resource type="Texture2D" uid="uid://d001vigipj3gx" path="res://src/map/dungeon/models/Set B/31. Dismantled Saint's Room/31_A2_Dismantled_Saint_Room_AREA_2_MAIN_222STONE.png" id="5_wkwx7"] @@ -772,7 +772,7 @@ texture_filter = 0 [sub_resource type="StandardMaterial3D" id="StandardMaterial3D_hwsho"] albedo_texture = ExtResource("20_ntssu") -[node name="DungeonRoom3D" type="Node3D"] +[node name="Dismantled Saint\'s Room" type="Node3D"] script = ExtResource("1_1cj2y") size_in_voxels = Vector3i(9, 1, 5) voxel_scale = Vector3(4, 4, 4) @@ -780,7 +780,7 @@ min_count = 1 max_count = 2 [node name="Dismantled Saint\'s Room" type="Node3D" parent="."] -script = ExtResource("2_ppbeh") +script = ExtResource("2_p5ha7") [node name="Model" type="Node3D" parent="Dismantled Saint\'s Room"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -4.54819, -1.212, 4.11602) diff --git a/src/map/dungeon/scenes/Set B/32. Proscenium's Room.tscn b/src/map/dungeon/scenes/Set B/32. Proscenium's Room.tscn index bfe74bf7..e24c46a5 100644 --- a/src/map/dungeon/scenes/Set B/32. Proscenium's Room.tscn +++ b/src/map/dungeon/scenes/Set B/32. Proscenium's Room.tscn @@ -1,7 +1,7 @@ [gd_scene load_steps=114 format=4 uid="uid://cuau7xgx3rkxu"] [ext_resource type="Script" uid="uid://ce73fuh74l81l" path="res://addons/SimpleDungeons/DungeonRoom3D.gd" id="1_okco6"] -[ext_resource type="Script" uid="uid://daetb3e2nm56p" path="res://src/map/dungeon/code/DungeonRoom.cs" id="2_q8ary"] +[ext_resource type="Script" uid="uid://dhollu4j3pynq" path="res://src/map/dungeon/code/MonsterRoom.cs" id="2_orhq3"] [ext_resource type="Texture2D" uid="uid://vnpy5fysmsar" path="res://src/map/dungeon/models/Set B/32. Proscenium's Room/32_A2_PROSCENIUMS_ROOM_railing-2_billboard.png" id="3_orhq3"] [ext_resource type="Texture2D" uid="uid://cj33luyu65afs" path="res://src/map/dungeon/models/Set B/32. Proscenium's Room/32_A2_PROSCENIUMS_ROOM_area_2_tile_stained_2.png" id="4_u1ybt"] [ext_resource type="Texture2D" uid="uid://dteeanqyiclwn" path="res://src/map/dungeon/models/Set B/32. Proscenium's Room/32_A2_PROSCENIUMS_ROOM_imgonline-com-ua-TextureSeamless-WI4C0zx4dE76nh60.jpg" id="5_ncyu1"] @@ -1336,7 +1336,7 @@ texture_filter = 0 [sub_resource type="StandardMaterial3D" id="StandardMaterial3D_hwsho"] albedo_texture = ExtResource("25_7hh2d") -[node name="DungeonRoom3D" type="Node3D"] +[node name="Proscenium\'s Room" type="Node3D"] script = ExtResource("1_okco6") size_in_voxels = Vector3i(9, 1, 7) voxel_scale = Vector3(4, 4, 4) @@ -1344,7 +1344,7 @@ min_count = 1 max_count = 2 [node name="Proscenium\'s Room" type="Node3D" parent="."] -script = ExtResource("2_q8ary") +script = ExtResource("2_orhq3") [node name="Model" type="Node3D" parent="Proscenium\'s Room"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -9.65285, 0.790657, 9.22067) diff --git a/src/map/dungeon/scenes/Set B/33. Puer's Room.tscn b/src/map/dungeon/scenes/Set B/33. Puer's Room.tscn index 20fbb905..624ccd56 100644 --- a/src/map/dungeon/scenes/Set B/33. Puer's Room.tscn +++ b/src/map/dungeon/scenes/Set B/33. Puer's Room.tscn @@ -1,7 +1,7 @@ [gd_scene load_steps=84 format=4 uid="uid://b6akxaacr8jd2"] [ext_resource type="Script" uid="uid://ce73fuh74l81l" path="res://addons/SimpleDungeons/DungeonRoom3D.gd" id="1_npoll"] -[ext_resource type="Script" uid="uid://daetb3e2nm56p" path="res://src/map/dungeon/code/DungeonRoom.cs" id="2_ipjqb"] +[ext_resource type="Script" uid="uid://dhollu4j3pynq" path="res://src/map/dungeon/code/MonsterRoom.cs" id="2_npoll"] [ext_resource type="Texture2D" uid="uid://dbxdkpbwg8f13" path="res://src/map/dungeon/models/Set B/33. Puer's Room/33_A2_PUERS_ROOM_AREA_2_MAIN_STONE.png" id="3_nphlp"] [ext_resource type="Texture2D" uid="uid://dwe37uv2083uo" path="res://src/map/dungeon/models/Set B/33. Puer's Room/33_A2_PUERS_ROOM_STUCCO_DECAL_BIG.png" id="4_jl6wt"] [ext_resource type="Texture2D" uid="uid://vrk6qh8kvtpk" path="res://src/map/dungeon/models/Set B/33. Puer's Room/33_A2_PUERS_ROOM_GREENBIT.png" id="5_ys2r4"] @@ -957,7 +957,7 @@ texture_filter = 0 [sub_resource type="StandardMaterial3D" id="StandardMaterial3D_hwsho"] albedo_texture = ExtResource("23_0s31n") -[node name="DungeonRoom3D" type="Node3D"] +[node name="Puer\'s Room" type="Node3D"] script = ExtResource("1_npoll") size_in_voxels = Vector3i(9, 1, 9) voxel_scale = Vector3(4, 4, 4) @@ -965,7 +965,7 @@ min_count = 1 max_count = 2 [node name="Puer\'s Room" type="Node3D" parent="."] -script = ExtResource("2_ipjqb") +script = ExtResource("2_npoll") [node name="Model" type="Node3D" parent="Puer\'s Room"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0.0160885, 3.86484, 7.25485) diff --git a/src/map/dungeon/scenes/Set B/34. Boss Floor B.tscn b/src/map/dungeon/scenes/Set B/34. Boss Floor B.tscn index c04a476c..be13b4d7 100644 --- a/src/map/dungeon/scenes/Set B/34. Boss Floor B.tscn +++ b/src/map/dungeon/scenes/Set B/34. Boss Floor B.tscn @@ -1,6 +1,5 @@ -[gd_scene load_steps=119 format=4 uid="uid://ceo7ph483io44"] +[gd_scene load_steps=118 format=4 uid="uid://ceo7ph483io44"] -[ext_resource type="Script" uid="uid://cbxpa2yua2cni" path="res://src/map/dungeon/code/BossRoom.cs" id="1_52xt3"] [ext_resource type="Texture2D" uid="uid://dovqerwxfvkga" path="res://src/map/dungeon/models/Set B/34. Boss Floor B/34_A2_BOSS FLOOR B_VER_COLUMN_WHITE.png" id="2_egkxs"] [ext_resource type="Texture2D" uid="uid://dledme528nkgq" path="res://src/map/dungeon/models/Set B/34. Boss Floor B/34_A2_BOSS FLOOR B_VER_AREA_2_MAIN_STONE.png" id="3_sfnee"] [ext_resource type="Texture2D" uid="uid://cap42cyx13xio" path="res://src/map/dungeon/models/Set B/34. Boss Floor B/34_A2_BOSS FLOOR B_VER_area_2_big_tile.png" id="4_utkqh"] @@ -1626,7 +1625,6 @@ radius = 1.33887 size = Vector3(1.9823, 12.776, 1.97168) [node name="Boss Floor B" type="Node3D"] -script = ExtResource("1_52xt3") [node name="34_A2_BOSS FLOOR B_VER_1" type="Node3D" parent="."] diff --git a/src/map/dungeon/scenes/Set B/37. Corridor 2.tscn b/src/map/dungeon/scenes/Set B/37. Corridor 2.tscn index 3929a46c..ac15bdde 100644 --- a/src/map/dungeon/scenes/Set B/37. Corridor 2.tscn +++ b/src/map/dungeon/scenes/Set B/37. Corridor 2.tscn @@ -17,8 +17,8 @@ albedo_texture = ExtResource("2_ijgu6") [sub_resource type="StandardMaterial3D" id="StandardMaterial3D_xxxok"] resource_name = "Material.015" cull_mode = 2 -albedo_texture = ExtResource("3_nbkbi") shading_mode = 0 +albedo_texture = ExtResource("3_nbkbi") [sub_resource type="StandardMaterial3D" id="StandardMaterial3D_jej4e"] resource_name = "CEILNG.007" @@ -432,8 +432,8 @@ shadow_mesh = SubResource("ArrayMesh_c82nn") [sub_resource type="StandardMaterial3D" id="StandardMaterial3D_2qrwe"] transparency = 1 -albedo_color = Color(1, 1, 1, 0) shading_mode = 0 +albedo_color = Color(1, 1, 1, 0) [sub_resource type="StandardMaterial3D" id="StandardMaterial3D_ix6wn"] resource_name = "BOTTOM TRIM.007" @@ -497,8 +497,8 @@ shadow_mesh = SubResource("ArrayMesh_7ylfw") [sub_resource type="StandardMaterial3D" id="StandardMaterial3D_lepkf"] transparency = 1 -albedo_color = Color(1, 1, 1, 0) shading_mode = 0 +albedo_color = Color(1, 1, 1, 0) [sub_resource type="ArrayMesh" id="ArrayMesh_b15e2"] _surfaces = [{ @@ -556,8 +556,8 @@ shadow_mesh = SubResource("ArrayMesh_b15e2") [sub_resource type="StandardMaterial3D" id="StandardMaterial3D_0m8h3"] transparency = 1 -albedo_color = Color(1, 1, 1, 0) shading_mode = 0 +albedo_color = Color(1, 1, 1, 0) [sub_resource type="ArrayMesh" id="ArrayMesh_4ude8"] _surfaces = [{ @@ -615,8 +615,8 @@ shadow_mesh = SubResource("ArrayMesh_4ude8") [sub_resource type="StandardMaterial3D" id="StandardMaterial3D_4xu2u"] transparency = 1 -albedo_color = Color(1, 1, 1, 0) shading_mode = 0 +albedo_color = Color(1, 1, 1, 0) [sub_resource type="ArrayMesh" id="ArrayMesh_jtq5r"] _surfaces = [{ diff --git a/src/map/dungeon/scenes/Set B/38. Floor Exit B.tscn b/src/map/dungeon/scenes/Set B/38. Floor Exit B.tscn index 799fadcb..952f39f1 100644 --- a/src/map/dungeon/scenes/Set B/38. Floor Exit B.tscn +++ b/src/map/dungeon/scenes/Set B/38. Floor Exit B.tscn @@ -1,7 +1,7 @@ [gd_scene load_steps=55 format=4 uid="uid://02v033xrh6xi"] [ext_resource type="Script" uid="uid://ce73fuh74l81l" path="res://addons/SimpleDungeons/DungeonRoom3D.gd" id="1_sofp0"] -[ext_resource type="Script" uid="uid://daetb3e2nm56p" path="res://src/map/dungeon/code/DungeonRoom.cs" id="2_y1fip"] +[ext_resource type="Script" uid="uid://r1ukwtc040w" path="res://src/map/dungeon/code/IExitRoom.cs" id="2_tnx8b"] [ext_resource type="Texture2D" uid="uid://c0ilimt6tnd4t" path="res://src/map/dungeon/models/Set B/38. Floor Exit B/38_A2_FLOOR_EXIT_B_area_2_tile_3.png" id="3_tnx8b"] [ext_resource type="Texture2D" uid="uid://vwajohccffv" path="res://src/map/dungeon/models/Set B/38. Floor Exit B/38_A2_FLOOR_EXIT_B_swirled_column _AREA2.png" id="4_rs16x"] [ext_resource type="Texture2D" uid="uid://mhdm87tatgkf" path="res://src/map/dungeon/models/Set B/38. Floor Exit B/38_A2_FLOOR_EXIT_B_CORRIDOR_PANEL_UPPER.png" id="5_t7egw"] @@ -22,7 +22,7 @@ [ext_resource type="Texture2D" uid="uid://chqxcfjjergls" path="res://src/map/dungeon/models/Set B/38. Floor Exit B/38_A2_FLOOR_EXIT_B_inner_rock2.png" id="18_xqxm8"] [ext_resource type="Texture2D" uid="uid://6543whim3g5" path="res://src/map/dungeon/models/Set B/38. Floor Exit B/38_A2_FLOOR_EXIT_B_inner_rock_3.png" id="19_lfgps"] [ext_resource type="Texture2D" uid="uid://bkvegamuqdsdd" path="res://src/map/dungeon/models/Set A/18. Corridor A/CORRIDOR test_FLOOR1.jpg" id="19_p23g3"] -[ext_resource type="Script" path="res://src/map/dungeon/code/remove_unused_doors.gd" id="20_ir6hy"] +[ext_resource type="Script" uid="uid://yl7wyeo5m725" path="res://src/map/dungeon/code/remove_unused_doors.gd" id="20_ir6hy"] [ext_resource type="Script" uid="uid://c6s8hvdj3u3aq" path="res://src/map/dungeon/code/MinimapManager.cs" id="21_ux8yt"] [ext_resource type="Material" uid="uid://bsafm3t4drpl" path="res://src/map/dungeon/textures/MinimapTexture.tres" id="22_twkyh"] @@ -573,7 +573,7 @@ max_count = 3 [node name="Floor Exit A" type="Node3D" parent="."] unique_name_in_owner = true -script = ExtResource("2_y1fip") +script = ExtResource("2_tnx8b") [node name="38_A2_FLOOR_EXIT_B" type="Node3D" parent="Floor Exit A"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 8.11174, 2.89397) diff --git a/src/player/Player.tscn b/src/player/Player.tscn index ce2a4d4d..b5e2765d 100644 --- a/src/player/Player.tscn +++ b/src/player/Player.tscn @@ -491,15 +491,15 @@ shape = SubResource("CapsuleShape3D_dw45s") [node name="CollisionDetector" type="Area3D" parent="CollisionShape3D"] unique_name_in_owner = true transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, -0.937567, 0) -collision_layer = 196 -collision_mask = 196 +collision_layer = 452 +collision_mask = 452 [node name="CollisionShape3D" type="CollisionShape3D" parent="CollisionShape3D/CollisionDetector"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -0.0479561, 0.982638, -0.675098) shape = SubResource("BoxShape3D_hs4wf") [node name="Camera3D" type="Camera3D" parent="."] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0.00341564, 1.53198, 0.645068) +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0.003, 1.52615, 0.482136) cull_mask = 1048569 fov = 45.0 near = 0.001