From 429fe9b62f548c52d6fd03a667c4717cab9ef347 Mon Sep 17 00:00:00 2001 From: Evgenij Titarenko Date: Sat, 19 Aug 2023 09:30:55 +0300 Subject: [PATCH] =?UTF-8?q?=D0=94=D0=BE=D0=B1=D0=B0=D0=B2=D0=BB=D0=B5?= =?UTF-8?q?=D0=BD=20=D0=9F=D0=B0=D0=B2=D1=88=D0=B8=D0=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- prefabs/enemies/wretched.tscn | 41 +++++ prefabs/entities/spikes.tscn | 2 +- scenes/main_scene.tscn | 22 ++- scripts/enemies/Wretched.cs | 161 +++++++++++++++++ scripts/entities/Spikes.cs | 16 +- sprites/enemies/wretched/wretched.tres | 171 ++++++++++++++++++ sprites/enemies/wretched/wretched_bottom.png | Bin 946 -> 917 bytes sprites/enemies/wretched/wretched_side.png | Bin 862 -> 833 bytes sprites/enemies/wretched/wretched_up.png | Bin 855 -> 812 bytes .../enemies/wretched/wretched_bottom.png | Bin 0 -> 946 bytes .../enemies/wretched/wretched_side.png | Bin 0 -> 862 bytes sprites_orig/enemies/wretched/wretched_up.png | Bin 0 -> 855 bytes 12 files changed, 404 insertions(+), 9 deletions(-) create mode 100644 prefabs/enemies/wretched.tscn create mode 100644 scripts/enemies/Wretched.cs create mode 100644 sprites/enemies/wretched/wretched.tres create mode 100644 sprites_orig/enemies/wretched/wretched_bottom.png create mode 100644 sprites_orig/enemies/wretched/wretched_side.png create mode 100644 sprites_orig/enemies/wretched/wretched_up.png diff --git a/prefabs/enemies/wretched.tscn b/prefabs/enemies/wretched.tscn new file mode 100644 index 0000000..6037160 --- /dev/null +++ b/prefabs/enemies/wretched.tscn @@ -0,0 +1,41 @@ +[gd_scene load_steps=6 format=3 uid="uid://bmyjqerhno5vi"] + +[ext_resource type="SpriteFrames" uid="uid://blijqhtsnyq7n" path="res://sprites/enemies/wretched/wretched.tres" id="1_aqrsj"] +[ext_resource type="Script" path="res://scripts/enemies/Wretched.cs" id="1_ec388"] +[ext_resource type="PackedScene" uid="uid://cf0wpahgwygxx" path="res://prefabs/light_sense.tscn" id="2_16fib"] + +[sub_resource type="RectangleShape2D" id="RectangleShape2D_svj4b"] +size = Vector2(24, 16) + +[sub_resource type="CircleShape2D" id="CircleShape2D_nortt"] +radius = 15.0 + +[node name="Wretched" type="CharacterBody2D"] +collision_layer = 5 +collision_mask = 5 +script = ExtResource("1_ec388") + +[node name="AnimatedSprite2D" type="AnimatedSprite2D" parent="."] +sprite_frames = ExtResource("1_aqrsj") +animation = &"NonActivatedUp" +frame_progress = 0.776966 + +[node name="Sprite2D" type="Sprite2D" parent="AnimatedSprite2D"] + +[node name="LightSense" parent="." instance=ExtResource("2_16fib")] + +[node name="CollisionPolygon2D" type="CollisionPolygon2D" parent="LightSense"] +polygon = PackedVector2Array(-5, -16, -7, -3, -7, 9, -11, 14, -11, 16, 8, 16, 8, 8, 7, 4, 7, -16) + +[node name="CollisionShape2D" type="CollisionShape2D" parent="."] +position = Vector2(1, 8) +shape = SubResource("RectangleShape2D_svj4b") + +[node name="PlayerCollision" type="Area2D" parent="."] + +[node name="CollisionShape2D" type="CollisionShape2D" parent="PlayerCollision"] +position = Vector2(1, 8) +shape = SubResource("CircleShape2D_nortt") + +[connection signal="area_entered" from="LightSense" to="." method="_OnLightEntered"] +[connection signal="body_entered" from="PlayerCollision" to="." method="_OnPlayerCollision"] diff --git a/prefabs/entities/spikes.tscn b/prefabs/entities/spikes.tscn index 352f092..6fbfe54 100644 --- a/prefabs/entities/spikes.tscn +++ b/prefabs/entities/spikes.tscn @@ -1,7 +1,7 @@ [gd_scene load_steps=4 format=3 uid="uid://dqx43vr727ft8"] [ext_resource type="Script" path="res://scripts/entities/Spikes.cs" id="1_r27mb"] -[ext_resource type="SpriteFrames" uid="uid://0xgmr60v1vxg" path="res://sprites/tiles/floor/spikes/spikes.tres" id="2_t76h0"] +[ext_resource type="SpriteFrames" uid="uid://uith5rxps4s" path="res://sprites/tiles/floor/spikes/spikes.tres" id="2_t76h0"] [sub_resource type="RectangleShape2D" id="RectangleShape2D_guqiy"] size = Vector2(32, 32) diff --git a/scenes/main_scene.tscn b/scenes/main_scene.tscn index d254b7b..01985d5 100644 --- a/scenes/main_scene.tscn +++ b/scenes/main_scene.tscn @@ -1,4 +1,4 @@ -[gd_scene load_steps=26 format=3 uid="uid://dhn7yt46fyac8"] +[gd_scene load_steps=27 format=3 uid="uid://dhn7yt46fyac8"] [ext_resource type="PackedScene" uid="uid://bhulqhxesd5gc" path="res://prefabs/player.tscn" id="1_65a7v"] [ext_resource type="AudioStream" uid="uid://bsy2d0bl3lgg0" path="res://sounds/crank.ogg" id="1_cweq4"] @@ -15,6 +15,7 @@ [ext_resource type="PackedScene" uid="uid://bj1ixwjdpnooo" path="res://prefabs/entities/pressure_plate.tscn" id="12_ynt5e"] [ext_resource type="PackedScene" uid="uid://dqx43vr727ft8" path="res://prefabs/entities/spikes.tscn" id="13_w1hk1"] [ext_resource type="Script" path="res://scripts/DeathScreen.cs" id="15_12mhe"] +[ext_resource type="PackedScene" uid="uid://bmyjqerhno5vi" path="res://prefabs/enemies/wretched.tscn" id="16_wjfbi"] [sub_resource type="Curve" id="Curve_o5byr"] _data = [Vector2(0, 0), 0.0, 0.0, 0, 0, Vector2(1, 1), 0.0, 0.0, 0, 0] @@ -26,7 +27,7 @@ light_mode = 2 [sub_resource type="ShaderMaterial" id="ShaderMaterial_m680d"] shader = ExtResource("5_64d71") -[sub_resource type="ViewportTexture" id="ViewportTexture_slh0c"] +[sub_resource type="ViewportTexture" id="ViewportTexture_pqovb"] viewport_path = NodePath("FlashlightViewport") [sub_resource type="CircleShape2D" id="CircleShape2D_prnh4"] @@ -122,7 +123,7 @@ CameraBounds = Vector2(30, 20) [node name="PointLight2D" type="PointLight2D" parent="PlayerCamera" node_paths=PackedStringArray("LightViewport")] blend_mode = 2 range_item_cull_mask = 2 -texture = SubResource("ViewportTexture_slh0c") +texture = SubResource("ViewportTexture_pqovb") script = ExtResource("6_slohe") LightViewport = NodePath("../../FlashlightViewport") @@ -227,4 +228,19 @@ Enabled = true SpikesTimeout = 0.5 StartOffset = 0.5 +[node name="Wretched" parent="." instance=ExtResource("16_wjfbi")] +position = Vector2(-84, 12) + +[node name="Wretched2" parent="." instance=ExtResource("16_wjfbi")] +position = Vector2(-108, 30) +Facing = 2 + +[node name="Wretched3" parent="." instance=ExtResource("16_wjfbi")] +position = Vector2(-64, 29) +Facing = 0 + +[node name="Wretched4" parent="." instance=ExtResource("16_wjfbi")] +position = Vector2(-85, 51) +Facing = 1 + [connection signal="timeout" from="CanvasLayer/DeathScreen/Timer" to="CanvasLayer/DeathScreen" method="Timeout"] diff --git a/scripts/enemies/Wretched.cs b/scripts/enemies/Wretched.cs new file mode 100644 index 0000000..9e959ee --- /dev/null +++ b/scripts/enemies/Wretched.cs @@ -0,0 +1,161 @@ +using Godot; +using System; + +public partial class Wretched : CharacterBody2D +{ + [Signal] + public delegate void KilledEventHandler(); + + public enum State + { + Waiting, + Moving, + Attack + } + + public enum SideFace + { + Left, + Up, + Right, + Down + } + + [Export] public SideFace Facing = SideFace.Down; + [Export] public float MovingSpeed = 32f; + [Export] public bool IsAlive = true; + + + public State CurrentState + { + get => _state; + + private set + { + _state = value; + _timeSinceState = 0; + + switch (_state) + { + case State.Waiting: + break; + case State.Moving: + break; + case State.Attack: + break; + } + } + } + + private State _state; + private float _timeSinceState; + private AnimatedSprite2D _sprite; + private bool _isActivated; + + public override void _Ready() + { + _sprite = (AnimatedSprite2D)FindChild("AnimatedSprite2D"); + CurrentState = State.Waiting; + var animationName = "NonActivatedSide"; + switch (Facing) + { + case SideFace.Left: + _sprite.FlipH = true; + break; + case SideFace.Right: + break; + case SideFace.Up: + animationName = "NonActivatedUp"; + break; + case SideFace.Down: + animationName = "NonActivatedDown"; + break; + } + _sprite.Play(animationName); + _sprite.Stop(); + } + + public override void _Process(double delta) + { + } + + public override void _PhysicsProcess(double delta) + { + if (!IsAlive) + return; + _timeSinceState += (float)delta; + + switch (_state) + { + case State.Attack: + break; + case State.Waiting: + break; + + case State.Moving: + var direction = (Player.Instance.Position - Position).Normalized(); + Velocity = direction * MovingSpeed; + + var animationName = "ActivatedSide"; + + if (Velocity.Y > 0.001f) + animationName = "ActivatedDown"; + else if (Velocity.Y < 0.001f) + animationName = "ActivatedUp"; + + if (Mathf.Abs(Velocity.X) >= Mathf.Abs(Velocity.Y)) + animationName = "ActivatedSide"; + + _sprite.FlipH = Velocity.X < 0.001f && animationName == "ActivatedSide"; + _sprite.Play(animationName); + MoveAndSlide(); + break; + } + CheckIfLitUp(); + } + + private void _OnLightEntered(Area2D area) + { + if (area.GetParentOrNull() is null) + return; + + _isActivated = true; + } + + + private void _OnPlayerCollision(Node2D body) + { + if (body is not Player player) + return; + + if (CurrentState is State.Waiting) + return; + + player.Kill(this); + } + + void CheckIfLitUp() + { + if (!_isActivated) + { + CurrentState = State.Waiting; + return; + } + + if (CurrentState is State.Moving or State.Attack) + return; + + CurrentState = State.Moving; + } + + public void Kill(Node2D killer) + { + if (!IsAlive) + return; + + GD.Print($"{this.Name} was killed by {killer.Name}"); + IsAlive = false; + EmitSignal(SignalName.Killed); + QueueFree(); // TODO + } +} diff --git a/scripts/entities/Spikes.cs b/scripts/entities/Spikes.cs index 08da980..ce57212 100644 --- a/scripts/entities/Spikes.cs +++ b/scripts/entities/Spikes.cs @@ -58,13 +58,19 @@ public partial class Spikes : Area2D private void _OnEntered(Node2D body) { - if (body is not Player player) - return; - if (_state is State.Waiting) return; - - player.Kill(this); + switch (body) + { + case Wretched wretched: + wretched.Kill(this); + break; + case Player player: + player.Kill(this); + break; + default: + return; + } } diff --git a/sprites/enemies/wretched/wretched.tres b/sprites/enemies/wretched/wretched.tres new file mode 100644 index 0000000..f4c72f2 --- /dev/null +++ b/sprites/enemies/wretched/wretched.tres @@ -0,0 +1,171 @@ +[gd_resource type="SpriteFrames" load_steps=23 format=3 uid="uid://blijqhtsnyq7n"] + +[ext_resource type="Texture2D" uid="uid://jt8w0gpcde42" path="res://sprites/enemies/wretched/wretched_bottom.png" id="1_42h2f"] +[ext_resource type="Texture2D" uid="uid://dx8chnbe6vmow" path="res://sprites/enemies/wretched/wretched_side.png" id="2_8muft"] +[ext_resource type="Texture2D" uid="uid://ceffjiq2vofiu" path="res://sprites/enemies/wretched/wretched_up.png" id="3_y353x"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_e1ng1"] +atlas = ExtResource("1_42h2f") +region = Rect2(32, 0, 32, 32) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h7wwv"] +atlas = ExtResource("1_42h2f") +region = Rect2(64, 0, 32, 32) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d2riq"] +atlas = ExtResource("1_42h2f") +region = Rect2(96, 0, 32, 32) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j1sxl"] +atlas = ExtResource("1_42h2f") +region = Rect2(128, 0, 32, 32) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1tjil"] +atlas = ExtResource("1_42h2f") +region = Rect2(160, 0, 32, 32) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qo1on"] +atlas = ExtResource("1_42h2f") +region = Rect2(192, 0, 32, 32) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gd2f2"] +atlas = ExtResource("2_8muft") +region = Rect2(32, 0, 32, 32) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j1id5"] +atlas = ExtResource("2_8muft") +region = Rect2(64, 0, 32, 32) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jujmv"] +atlas = ExtResource("2_8muft") +region = Rect2(96, 0, 32, 32) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5cpt1"] +atlas = ExtResource("2_8muft") +region = Rect2(128, 0, 32, 32) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8hfxb"] +atlas = ExtResource("3_y353x") +region = Rect2(32, 0, 32, 32) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t3n7s"] +atlas = ExtResource("3_y353x") +region = Rect2(64, 0, 32, 32) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k755r"] +atlas = ExtResource("3_y353x") +region = Rect2(96, 0, 32, 32) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7cl4u"] +atlas = ExtResource("3_y353x") +region = Rect2(128, 0, 32, 32) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3l3jb"] +atlas = ExtResource("3_y353x") +region = Rect2(160, 0, 32, 32) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xtic1"] +atlas = ExtResource("3_y353x") +region = Rect2(192, 0, 32, 32) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gj6u3"] +atlas = ExtResource("1_42h2f") +region = Rect2(0, 0, 32, 32) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8toq8"] +atlas = ExtResource("2_8muft") +region = Rect2(0, 0, 32, 32) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d30l2"] +atlas = ExtResource("3_y353x") +region = Rect2(0, 0, 32, 32) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_e1ng1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h7wwv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d2riq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j1sxl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1tjil") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qo1on") +}], +"loop": true, +"name": &"ActivatedDown", +"speed": 5.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_gd2f2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j1id5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jujmv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5cpt1") +}], +"loop": true, +"name": &"ActivatedSide", +"speed": 6.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_8hfxb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t3n7s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k755r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7cl4u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3l3jb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xtic1") +}], +"loop": true, +"name": &"ActivatedUp", +"speed": 6.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_gj6u3") +}], +"loop": true, +"name": &"NonActivatedDown", +"speed": 5.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_8toq8") +}], +"loop": true, +"name": &"NonActivatedSide", +"speed": 5.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_d30l2") +}], +"loop": true, +"name": &"NonActivatedUp", +"speed": 5.0 +}] diff --git a/sprites/enemies/wretched/wretched_bottom.png b/sprites/enemies/wretched/wretched_bottom.png index 795527dee0ee99db8e2878d6ea9db74edd434b77..b67e591e3e7c375609929d97b3a17a5ff9086d98 100644 GIT binary patch delta 895 zcmV-_1AzRp2bBkqBYy*2Nkl|OaM!bCV#*d`X%n)Yc7D$cmNUM z9H(N+KO5x={U6T;0KgDJDDAf~UtQMz2ed`|BXJUjva>|ZM;@mCZkbB_T*@%xS(0Ci zA!|#7|EmW#i7ow?VyF5a;g`ya`)7AS^B^Xi>6&An{KQc?k@Sq4w&U08y09HX2&2h& z;{&Mpuf|UBzkhuDvl1{Gt$k}LnjW~7vMpaB0lH(D31?-cr%}(83|zNe}&r%;{K_#pi!+tl9gZLU}gK$|9_9nf~~|q4t93EDqS$C7%cra z*$@6}aZxqhKPLfu3P>fPrD!+g z2elag>TsX*KUs@Ptm_9f6LntQOOU0`&gBPA|I2O z)cI!&F*&9OktLr={ip4(4j1ANzmnoxRrtYOUO^X*9j5&-EEhf)FS@9{>d$&H2#3FI z0(h3pDm6eY(J)*Cn06~hGtnt*%>>APx&Qb|NXRCt{2oa>T zA|SbtfX$idw563V2aJN!LZB;F%79Uy^Y@bbzYFdEM-bjCrz#fDSbl5!-TA4kd`QdM ze@`R+m+yZ{0zR3MYU~(eygVcMt?hT`_v(^N0Bip}=7|3-`hTB#26Wj;GXX5cO@J-* zi~Rnmxfq1z12M(`0O6=F=H;c1@11-Ah_&x+%vYDSe}=Z`e{82>+(_&&i3j=no~f)6 zF53{}S(4w1A!Da)&K-c5#FqYRv19#n__b}t{ga2FWe^jNblo{m(b%{5BX#V`Z?$!$ z8~}iud^i44aew#yNF5Jq#*Xm6eE*XYFd1zn z+rL>4CIOe4gu76(P5`QQjeA%-tOezE!nbeFmB&AE`yCQ6goTF?i}R&ou=H>3om0=_ zb}KJMD}RM;1nDF1ZhYw&Ed5)1r_?v}eR2Y(OTZxnv(*T$uHM!mZ}SsE*k=fOQSWT4 zu`0y*&X?koZ;qB{y~S~CVQLWV&&Ud~9pLBDwHRM$I@#y{cChg&`%5o^@JDJ)^&B3S2Hyr+JH$r{5rRQIizvXR+q-+NO!~2kl z4_Qp={3C{x9P?L2T$9hF{qz1;hYRu9e@XGJs_bx=zn}wv7$)u*mJ1(@7hN>}>d$&H z2!DmYZ35QJDs@0B(cpM}ex%ITP?xQl0L2;DvQ1cgOpuge&6ImFh1pbCmd)${jYOmH zRSp0ZMy*dY`Mq+j7)X5fZ3w}-F%oNl7fCY-s{HJ=*4ck1OC^SH+)>}GZ#W38;884w zKRmns_GKDzivR!s4rN$LW=%~1DgXcg2o?YU000000Mb*F00000NkvXXu0mjfKey7- diff --git a/sprites/enemies/wretched/wretched_side.png b/sprites/enemies/wretched/wretched_side.png index f96c8ef30129ad93a59d8f5a1a69e85395d59260..7fbae7f6d75d717408eeb1a213b9e06f26560e8c 100644 GIT binary patch delta 811 zcmV+`1JwN92Ehi9BYy)3Nkl%HK&|n-5w+p!C}R^gvy*KPfWc$PYX^xTPaq_fsmR zoHko%?DhqiU((wo?*gu;A zXC6jn!KQQ7>><~$%&65?46HN%O^en67BaB8{bmk$kuVX~PFV0$-rIwB4JHv^yGZR7 zG?+RaLLZBd1_=txe=N)G^#S(Hi(v z%*J*3rE7%0+Cazt*)q(lzE&aO&siZZoyB9ycIpJRmy{i$nSy)H4lW7XtDSYb< z%-OZS_Ket=)mB_114Kn4dhy;pn#PVtnPz#<+(fM{k9$oK{)5)uU5aR81xxq+z zF}hj~xU=&~nZ-Ke%<^;a0a|sI+4fxeV}(PSf~^#L?S>RJL9g=10FU*WaJoH@{?KxG pt|XbPA!P!~jHBV-4IVnx9DntwJ4f{Am;C?$002ovPDHLkV1l3fk8l70 delta 840 zcmV-O1GoIa2HpmcBYyw^b5ch_0Itp)=>Px%{z*hZRCt{2TkUSdAPj?P@Bhl|$J#0v z2%m96ueEg2j&|6g4p87?m`5s<#fAD_JP@;nDVcAz&KdM10Xk7y^?!S!F2z675H<6y z)H{k+5~L79NGZQ9#(3U?)DR5#B@I>yupIxdk`QaO%=K~oD1Qsm|IBKr@PBZD_(PBl zaFq)hQ&=~lO8lcDMp_Tm3s%iVzZc5So^g5V;l$6Xoio5f53C-)ngLG|CPLeU89(Kv zU>a01zF0`&6*Q=tj`9+YOpBm#MGGW;6$3UNz9zc(nGUzPo`nXZ1c1f=Gc9RC%xbl@ zi#+p7JpqE(TYrOOK2ioZAJ-y%FJak$bSOAK0CY9N$qmxb1%QSf5}+HS@gs*|^je$9 zuc)K@;d^V~LoqV|V!b!xFQFCx=rYW;zE&XN_h|t#p5FvRu~QS2UQ%|%%n;m)$lQFq z+b2^2RO{y%XRpB%YVq&B6C$nRTWQ#lU%pv?DGVO}h<~`zq0syR05rV(VE*1A*lQm4 zjljE>^TGVy z?XSKNoqv%_A`Bitrb9T4iQsRZ%PRnWE>iIT!Z7y=zse9yk70Rie)HhLbJHw9iJuHp zP(gg_4b0h$zjRM`Wfe4!L<#2e%0zS~G>@jS<5B9pU}ev@c1?|65H-~PYFlx}JzwgW z1jAp^rTLF=5=2u^bq@9~BcglY?5%iaVuXvTF0000$e diff --git a/sprites/enemies/wretched/wretched_up.png b/sprites/enemies/wretched/wretched_up.png index 01be299db1a3aa929a3c15498e17e32300d62edb..e3e245e322e0713e9039bcfdbd6a792126ce25ed 100644 GIT binary patch delta 790 zcmV+x1L^$N2CN2Agcc!zt@IT0WkB=J%0nHbR{(ao+zsVXrf=@ z{*>yyd_PcYE&unZM_W{W1%M;);rIdy?H}Qr%EEsoPQp-jUJcs8s>n7f9~#?t<$u03 z<^WjbpO1+i|E~lfB(#bDT`xf;CoX31A9mtb0FbKw5&cW@Ke1#ap9H__f7b+jyR>Fb z-zZK2FjFRADu3muC<(}|T2j@{o6pr#{6~%B@HlD$&fbq`&04*c?>ztydB>kB>9~pe z=bQm+Yg+YxyF~D@Ha@dbll)fjXZq*Or}V3}Uu6F+zEuG*^Uqod0|4dPiPJL^?P~o7 zes2KW*rV;j@{a$ke~kiIim?Bs=YR+F1poRorQsRg4S&$*qlX0IPqACS3-G7=;1PeO ze`+7p{ZkSU-EjbyeuhQm-*$fz-@5>v`!K2Wf8DT}fK(tuT9nj$`i@E&1Z{=%EaMfe8t=08di6R?zmSATlT>fhoYpW-wTV^9E^GKfE1Vrn+a07*qoM6N<$f`QtPR{#J2 delta 833 zcmV-H1HSyM2G<6VBYyw^b5ch_0Itp)=>Px%_en%SRCt{2oZD_IAq+*$QUCv!>C2gl zOw7f`7d+!FMO7ymmbVKg0h$7QRpeUPXfOG(l>Wa(_Ww^1KDxfcz}lqn>*V=U`7>4I zF^egZ{}KPXzT%%N6aSn6I5R4dh+1p?_{rqA_hW6H%5Pt{(|-Y?`XBK}ZAcXWGymKf zFr_Q04)8=-6+jdH5MNKJ-rJuCYOPR8fu=1gzm!t0#E0VxD71fsZz>D_RAZD(?k4SG z733O~Upv=N<^TQBm>po3-`*2F{~rT@FrZERpE>~VoShDc-7|~Lo8R8I-2oYVZ~v0~ z`+bz$OYn#O^M5nonc^%Qq;Rb+;J7FUU@GOPCY>$>3!4zxca$H zYt`zleD4l;$vgj4N#{-6KW7Fky=B$^*CmpVwehzovB>WwemvK_@vRDg znSa(vm{JPdgJ||lw5#`8pIp$*$ z-F8vtFR^>S3-Fg?@W?;YKQ#t*|J%V#;8L6M{THm82T<7e^yGUNpf-j@rT>k9IBzY~ zXTe2D9tyDJOLc&#{-=E90x;$8aw7~tE?Y7NPyTKPi0*%vFA;;9|0n~H6NAQ5xEKF~ z+ylhQ|9>T~zrzxj`ri;KA92nizFnv6MGh6^BupyxNKpnLwW5TmK&h0c@+jIf`C5wN zKMbGs7S#D9Mg+cUAPaoeff^wHVfgHgNep(|k5OF(OMdd7z!yImu+g?;44N~*Y7RX8 zd-J{XABInP3rd||U%6!N_ytTy@KZEJ+=e)MA%B8!EJ}rMAaDMo6mb9o0AA@WtACGw zJ-}%p#-IRnWsv`R%ds{8u8(AEFT!{q18UXAf}Il4?u9*;RSXsT&PwLj@3Ghj$IN?& zgXKh=J;*W3f5ZWZB>{{&UypA+?YI|!8|UPlSa8_>Bd&r1oI3+r=!DLW>FqgDp8Px&Qb|NXRCt{2oa>TA|SbtfX$idw563V2aJN!LZB;F%79Uy z^Y@bbzYFdEM-bjCrz#fDSbl5!-TA4kd`QdMe@`R+m+yZ{0zR3MYU~(eygVcMt?hT` z_v(^N0Bip}=7|3-`k#6RblFKW0W8H$fGzZk{Qju97=-2nF~$G@;ixa><)x1AoqPa@ zweM}rSC_SahPLQ`Y^P$}NbE3)2l@M+sjLw$+YsYflHZCUW2bG-9e|j`mi}w8WBqgZ zwQa@ylZT*X5EG7c-8oOu*thp1b?nM-wRNQ&0Dzl(H~vv^_x(s64{FAa@V|WjlM*l) zZ9Qu#nQoYWHD4hChGUrIUm^jfO2R*O4tSH*7(eG)#9+-2;nVTi97R>`U&cQx0dwOD zoxmAFypC^>0M`Dml|TF6qW`f&(9eMUNW2*1`N+!ye!fBC=g--E;mv%EW+Z^6{}pa8 zi2J8DRIf248^6YZM)}j{oU33f@jo9NL$AgVOezLT|6TTj|5jXBP4_RlQ!wkLvPLz_ ztMi>t=3|GTqX9_;E|tjCdfvjP%G$q_tlPg?4<-SZnuNPhvQ7Z1c8z;jJFErecEY!B z&y~kNar+$-FocDN5R3DrVzBgY?VVH4<8~`AMJt7E1nDF1ZhYw&Ed5)1r_?v}eR2Y( zOTZxnv(*T$uHM!mZ}SsE*k=fOQSWT4u`0y*&X?koZ;qB{y~S~CVQLWV&&Ud~9 zpLBDwHRM$I@#y{cChg&`%5o^@JD)p!KcbM z9R6!JLVdWU=U~NRApaXyyChi!P3m=RZT{Qpd&w4Qkg}-eA*32q(Kr7MUczu4P%-2wtt(gGD8Q8K- zSbR*7lwr-3dohLCR9KeH>;R2KqwrM@02M~9Pc-?xa;+FheD-Y!!MZULYk(I?GYP8v z?6ua}eh#q2(92zEQUWkyZ-iN8gYvN000hUSV?A0O#mtY000O800000 U007cclK=n!07*qoM6N<$f_9hEzW@LL literal 0 HcmV?d00001 diff --git a/sprites_orig/enemies/wretched/wretched_side.png b/sprites_orig/enemies/wretched/wretched_side.png new file mode 100644 index 0000000000000000000000000000000000000000..f96c8ef30129ad93a59d8f5a1a69e85395d59260 GIT binary patch literal 862 zcmV-k1EKthP)001Be1^@s6m49>f00001b5ch_0Itp) z=>Px%{z*hZRCt{2TkUSdAPj?P@Bhl|$J#0v2%m96ueEg2j&|6g4p87?m`5s<#fAD_ zJP@;nDVcAz&KdM10Xk7y^?!S!F2z675H<6y)H{k+5~L79NGZQ9#(3U?)DR5#B@I>y zupIxdk`QaO%=K~oC=1g6%xb9ce{g~LLy!${l?xhEST~_c{G%d9S`XC=R?S7f7s}6` zae38_fhhX$to5-)Iqx<1|Yv4mMGXP?}H{&m%760fm%(cE& zAmR6E0WzN71Vgb?6O>+3cErpO+=|HDe7xHyQvp=#=NV_O!4qon@4gcvt>Rm0*pXkp zS$`=E9{-5A(V@`%0RS|-{9yjxA=qmk_Km~W3j)YG;DH@p9=tWY{0$%t_~JzqcQBym zF#Pl>06hL_1A?~OBs|rGJ0t*9!?XcQCs4qM!S8{@;K#p<2_f+#hhS*KrIf@3AmuO( z#{8K9z9s(YbwFX!lU_p_uyx}1`t!m3-tDix5S@`rA`Bitrb9T4iQsRZ%PRnWE>iIT z!Z7y=zse9yk70Rie)HhLbJHw9iJuHpP(gg_4b0h$zjRM`Wfe4!L<#2e%0zS~G>@jS z<5B9pU}ev@c1?|65H-~PYFlx}JzwgW1jAp^rTLF=5=2u^bq@9~BcglY?5%ia(X`4b4L5$VEG zB6gv5B6>&j?Sj-h-yx@yReqkyPCL8q)EqI*S5Ud8Wj@FRSeRs6Ouk2XXgg}3k!;mx z@-ni*A>F*Q`9dhnJq|9Z+=_oUSm<2h*s;-iA@u~>JPx%_en%SRCt{2oZD_IAq+*$QUCv!>C2glOw7f`7d+!FMO7ymmbVKg0h$7QRpeUP zXfOG(l>Wa(_Ww^1KDxfcz}lqn>*V=U`7>4IF^egZ{}KPXzT%%N6aSn6I5R4dh+1p? z_{rqA_hW6H%5Pt{(*dITAMraBe54tU8s|5QomP24|c1}wd0)&JKe zl8?3VwEv%O6J$^vDgU5%zKA}