From bcdb47ff2ce957180eb89c6c32aeb9ac408fa55e Mon Sep 17 00:00:00 2001
From: Julius <juliusfe@stud.ntnu.no>
Date: Fri, 9 Dec 2022 13:22:35 +0100
Subject: [PATCH] merge main into julius

---
 MrBigsock/Assets/Code/FollowPlayer.cs         |  84 +++-
 .../Assets/Code/InteractionSystem/Door.cs     |   3 +
 .../Assets/Code/InteractionSystem/Stairs.cs   |  27 ++
 .../Code/InteractionSystem/Stairs.cs.meta     |  11 +
 .../Assets/Code/Map/NeighbourMapGenerator.cs  |   4 +-
 MrBigsock/Assets/Code/Map/TilemapGenerator.cs |  19 +-
 MrBigsock/Assets/Code/UI/ChestDisplay.cs      |   3 +-
 .../Assets/Prefabs/MapObjects/Stairs.prefab   | 127 ++++++
 .../Prefabs/MapObjects/Stairs.prefab.meta     |   7 +
 .../orc_warrior/bow/Bow and Arrows.png.meta   |   2 +-
 .../Enemy_sprites/Archer Skeleton.png.meta    |   2 +-
 .../Assets/Resources/Sprites/Item/coffee.png  | Bin 0 -> 1304 bytes
 .../Resources/Sprites/Item/coffee.png.meta    | 145 +++++++
 .../Resources/Sprites/Item/elixirofspeed.png  | Bin 0 -> 1152 bytes
 .../Sprites/Item/elixirofspeed.png.meta       | 169 ++++++++
 .../Resources/Sprites/Item/foureyes.png       | Bin 0 -> 166 bytes
 .../Resources/Sprites/Item/foureyes.png.meta  | 145 +++++++
 .../Assets/Resources/Sprites/Item/lunch.png   | Bin 0 -> 4761 bytes
 .../Resources/Sprites/Item/lunch.png.meta     | 145 +++++++
 .../Resources/Sprites/Item/plasticstraw.png   | Bin 0 -> 192 bytes
 .../Sprites/Item/plasticstraw.png.meta        | 145 +++++++
 .../Resources/Sprites/Item/premature.png      | Bin 0 -> 286 bytes
 .../Resources/Sprites/Item/premature.png.meta | 145 +++++++
 .../Resources/Sprites/Item/runningshoes.png   | Bin 0 -> 7135 bytes
 .../Sprites/Item/runningshoes.png.meta        | 145 +++++++
 .../Sprites/Item/tilesetNice.png.meta         |  22 +-
 .../Assets/Tilemaps/Dungeon/Dungeon.png.meta  | 382 ++++++++++++------
 .../Assets/Tilemaps/Dungeon/Dungeon_77.asset  |   2 +-
 .../Assets/Tilemaps/Dungeon/Dungeon_78.asset  |   2 +-
 MrBigsock/Packages/packages-lock.json         |  22 +-
 MrBigsock/ProjectSettings/ProjectVersion.txt  |   4 +-
 MrBigsock/ProjectSettings/TagManager.asset    |   1 +
 32 files changed, 1612 insertions(+), 151 deletions(-)
 create mode 100644 MrBigsock/Assets/Code/InteractionSystem/Stairs.cs
 create mode 100644 MrBigsock/Assets/Code/InteractionSystem/Stairs.cs.meta
 create mode 100644 MrBigsock/Assets/Prefabs/MapObjects/Stairs.prefab
 create mode 100644 MrBigsock/Assets/Prefabs/MapObjects/Stairs.prefab.meta
 create mode 100644 MrBigsock/Assets/Resources/Sprites/Item/coffee.png
 create mode 100644 MrBigsock/Assets/Resources/Sprites/Item/coffee.png.meta
 create mode 100644 MrBigsock/Assets/Resources/Sprites/Item/elixirofspeed.png
 create mode 100644 MrBigsock/Assets/Resources/Sprites/Item/elixirofspeed.png.meta
 create mode 100644 MrBigsock/Assets/Resources/Sprites/Item/foureyes.png
 create mode 100644 MrBigsock/Assets/Resources/Sprites/Item/foureyes.png.meta
 create mode 100644 MrBigsock/Assets/Resources/Sprites/Item/lunch.png
 create mode 100644 MrBigsock/Assets/Resources/Sprites/Item/lunch.png.meta
 create mode 100644 MrBigsock/Assets/Resources/Sprites/Item/plasticstraw.png
 create mode 100644 MrBigsock/Assets/Resources/Sprites/Item/plasticstraw.png.meta
 create mode 100644 MrBigsock/Assets/Resources/Sprites/Item/premature.png
 create mode 100644 MrBigsock/Assets/Resources/Sprites/Item/premature.png.meta
 create mode 100644 MrBigsock/Assets/Resources/Sprites/Item/runningshoes.png
 create mode 100644 MrBigsock/Assets/Resources/Sprites/Item/runningshoes.png.meta

diff --git a/MrBigsock/Assets/Code/FollowPlayer.cs b/MrBigsock/Assets/Code/FollowPlayer.cs
index 6f178e01..89d4fe1e 100644
--- a/MrBigsock/Assets/Code/FollowPlayer.cs
+++ b/MrBigsock/Assets/Code/FollowPlayer.cs
@@ -1,9 +1,7 @@
-using System.Collections;
 using System.Collections.Generic;
+using BigSock.Interact;
 using Cinemachine;
 using UnityEngine;
-using UnityEngine.Tilemaps;
-using static System.Net.WebRequestMethods;
 
 
 namespace Bigsock
@@ -15,27 +13,103 @@ namespace Bigsock
         [SerializeField]
         private CinemachineConfiner2D cameraMap;
 
+        private int levels = 1;
+
+
         Vector3 offset = new Vector3(0, 0, -10);
         int i = 0;
 
+        GameObject[] boss;
+        GameObject player;
+        GameObject[] enemies;
+        GameObject[] Chest;
+        List<GameObject> chests;
+        GameObject stair;
+        private int roomNr = 0;
+        bool stairs_down;
 
         void Start()
         {
+            chests = new List<GameObject>();
             neighborMapGenerator.RunProceduralGeneration();
-            
+            player = GameObject.Find("BigSock");
+            stair = GameObject.Find("Stairs(Clone)");
+            Chest = GameObject.FindGameObjectsWithTag("Chest");
+            foreach(GameObject c in Chest)
+            {
+                chests.Add(c);
+                c.SetActive(false);
+            }
+            stairs_down = stair.GetComponent<Stairs>().stairs_touch;
+            stair.SetActive(false);
         }
 
         void LateUpdate()
         {
+            boss = GameObject.FindGameObjectsWithTag("Boss");
+            enemies = GameObject.FindGameObjectsWithTag((roomNr).ToString());
+            if (boss.Length == 0 && levels <= 1)
+            {
+                stair.SetActive(true);
+                stairs_down = stair.GetComponent<Stairs>().stairs_touch;
+            }
+            
+
+            if (stairs_down)
+            {
+                roomNr = 0;
+                foreach(GameObject c in chests)
+                {
+                    DestroyImmediate(c);
+                }
+                DestroyImmediate(stair);
+                chests.Clear();
+                TilemapGenerator.resetMaps();
+                TilemapGenerator.SetRoomIDZero();
+                player.transform.position = new Vector3(9,5,0);
+                neighborMapGenerator.RunProceduralGeneration();
+                Chest = GameObject.FindGameObjectsWithTag("Chest");
+                stair = GameObject.Find("Stairs(Clone)");
+                stairs_down = stair.GetComponent<Stairs>().stairs_touch;
+                foreach (GameObject c in Chest)
+                {
+                    if(c != null)
+                    {
+                        c.SetActive(false);
+                        chests.Add(c);
+                    }
+                }
+                stair.SetActive(false);
+                levels++;
+            }
+
             int i = 0;
             if(i == 0) {
                 cameraMap.InvalidateCache();
-                i++;
+            }
+
+            if (enemies.Length == 0)
+            {
+                chests[roomNr].SetActive(true);
+                if(roomNr + 1 < NeighbourMapGenerator.GetRoomListCount() - 1)
+                {
+                    roomNr++;
+                }
+            }
+            if(boss.Length == 0)
+            {
+                chests[1 + roomNr].SetActive(true);
             }
         }
 
         private void OnDestroy()
         {
+            roomNr = 0;
+            foreach (GameObject c in chests)
+            {
+                DestroyImmediate(c);
+            }
+            DestroyImmediate(stair);
             NeighbourMapGenerator.ClearRoomList();
             TilemapGenerator.SetRoomIDZero();
             TilemapGenerator.resetMaps();
diff --git a/MrBigsock/Assets/Code/InteractionSystem/Door.cs b/MrBigsock/Assets/Code/InteractionSystem/Door.cs
index 7ce964c2..604867d6 100644
--- a/MrBigsock/Assets/Code/InteractionSystem/Door.cs
+++ b/MrBigsock/Assets/Code/InteractionSystem/Door.cs
@@ -14,6 +14,7 @@ namespace BigSock.Interact {
         private GameObject cameraPlayer;
         private int i = TilemapGenerator.NextRoom();
         private GameObject boundary;
+        GameObject door;
 
         public string InteractionPrompt => _prompt;
 
@@ -30,6 +31,8 @@ namespace BigSock.Interact {
                 player.transform.position = TilemapGenerator.DoorLocaitonTransport(i);
                 cameraPlayer.transform.position = player.transform.position;
                 boundary.GetComponent<PolygonCollider2D>().SetPath(0, TilemapGenerator.GetRoomBoundary(i));
+                door = GameObject.Find("ClosedDoor(Clone)");
+                Destroy(door);
                 return true;
             }
             return false;
diff --git a/MrBigsock/Assets/Code/InteractionSystem/Stairs.cs b/MrBigsock/Assets/Code/InteractionSystem/Stairs.cs
new file mode 100644
index 00000000..01e072dd
--- /dev/null
+++ b/MrBigsock/Assets/Code/InteractionSystem/Stairs.cs
@@ -0,0 +1,27 @@
+using Bigsock;
+using System;
+using System.Collections;
+using System.Collections.Generic;
+using UnityEngine;
+
+
+namespace BigSock.Interact
+{
+    public class Stairs : MonoBehaviour, IInteractable
+    {
+        [SerializeField] private string _prompt;
+
+        public string InteractionPrompt => _prompt;
+        public bool stairs_touch = false;
+
+        public bool Interact(Interactor interactor)
+        {
+            if (!stairs_touch)
+            {
+                stairs_touch = true;
+                return true;
+            }
+            return false;
+        }
+    }
+}
\ No newline at end of file
diff --git a/MrBigsock/Assets/Code/InteractionSystem/Stairs.cs.meta b/MrBigsock/Assets/Code/InteractionSystem/Stairs.cs.meta
new file mode 100644
index 00000000..bf55bda4
--- /dev/null
+++ b/MrBigsock/Assets/Code/InteractionSystem/Stairs.cs.meta
@@ -0,0 +1,11 @@
+fileFormatVersion: 2
+guid: 4a3905e3d079fb64ca71936a1caba90d
+MonoImporter:
+  externalObjects: {}
+  serializedVersion: 2
+  defaultReferences: []
+  executionOrder: 0
+  icon: {instanceID: 0}
+  userData: 
+  assetBundleName: 
+  assetBundleVariant: 
diff --git a/MrBigsock/Assets/Code/Map/NeighbourMapGenerator.cs b/MrBigsock/Assets/Code/Map/NeighbourMapGenerator.cs
index 4dd6c90b..5d253d85 100644
--- a/MrBigsock/Assets/Code/Map/NeighbourMapGenerator.cs
+++ b/MrBigsock/Assets/Code/Map/NeighbourMapGenerator.cs
@@ -1,5 +1,6 @@
 using System.Collections;
 using System.Collections.Generic;
+using System.Security.Cryptography;
 using UnityEngine;
 
 namespace Bigsock
@@ -15,7 +16,7 @@ namespace Bigsock
         public override void RunProceduralGeneration()
         {
             roomList.Clear();
-           
+            
             for (int i = 0; i <= RoomCount - 1; i++)
             {
                 int randomMap = Random.Range(0, mapParam.Length);
@@ -29,6 +30,7 @@ namespace Bigsock
             roomList.Add(bossMap);
             tilemapGenerator.RenderMap(roomList[roomList.Count - 1],roomList.Count - 1, true);
             tilemapGenerator.SpawnBoss(bossMap, roomList.Count - 1);
+            tilemapGenerator.SpawnStairs(bossMap, roomList.Count - 1);
 
             tilemapGenerator.polyCollider(roomList[0], 0);
         }
diff --git a/MrBigsock/Assets/Code/Map/TilemapGenerator.cs b/MrBigsock/Assets/Code/Map/TilemapGenerator.cs
index 7b73c785..2cf2f94a 100644
--- a/MrBigsock/Assets/Code/Map/TilemapGenerator.cs
+++ b/MrBigsock/Assets/Code/Map/TilemapGenerator.cs
@@ -15,6 +15,8 @@ namespace Bigsock
         [SerializeField] GameObject Door;
         [SerializeField] GameObject[] Enemy;
         [SerializeField] GameObject Boss;
+        [SerializeField] GameObject Stairs;
+        [SerializeField] GameObject Chest;
         private int z_value = 0;
         private static int roomID = 0;
 
@@ -197,6 +199,7 @@ namespace Bigsock
                     fast++;
                 }
             }
+            spawnChest(map, roomNr);
             SetMapBoundary(map, roomNr);
         }
 
@@ -232,7 +235,7 @@ namespace Bigsock
         }
 
         public static void SetRoomIDZero() { 
-            roomID = 0;
+            roomID = 1;
         }
 
         public static void resetMaps()
@@ -349,5 +352,19 @@ namespace Bigsock
                 WallTop[roomNr].ClearAllTiles();
             }
         }
+
+        public void SpawnStairs(int[,] bossRoom, int roomNr)
+        {
+            Instantiate(Stairs, new Vector3(FloorTilemap[roomNr].transform.position.x + bossRoom.GetUpperBound(0) / 2 + 0.5f,
+                    FloorTilemap[roomNr].transform.position.y + bossRoom.GetUpperBound(1) - 3 + 0.5f, 0), Quaternion.identity);
+        }
+
+        //Spawns a chest in the middle of the room
+        public void spawnChest(int[,] room, int roomNr)
+        {
+            Chest.tag = "Chest";
+            Instantiate(Chest, new Vector3(FloorTilemap[roomNr].transform.position.x + room.GetUpperBound(0) / 2,
+                    FloorTilemap[roomNr].transform.position.y + room.GetUpperBound(1) / 2, 0), Quaternion.identity);
+        }
     }
 }
\ No newline at end of file
diff --git a/MrBigsock/Assets/Code/UI/ChestDisplay.cs b/MrBigsock/Assets/Code/UI/ChestDisplay.cs
index 08839c01..b28b01df 100644
--- a/MrBigsock/Assets/Code/UI/ChestDisplay.cs
+++ b/MrBigsock/Assets/Code/UI/ChestDisplay.cs
@@ -28,7 +28,8 @@ namespace BigSock.UI {
             // Gets button gameobjects and adds onClick listener
             for (int i = 0; i < 3; i++) {
                 var button = itemButtonLocation.transform.Find("ButtonItem"+(i+1).ToString()).GetComponent<Button>();
-                button.onClick.AddListener(delegate {ItemPicked(i); });
+                int j = i;
+                button.onClick.AddListener(delegate {ItemPicked(j); });
                 buttons.Add(button);
             }
 
diff --git a/MrBigsock/Assets/Prefabs/MapObjects/Stairs.prefab b/MrBigsock/Assets/Prefabs/MapObjects/Stairs.prefab
new file mode 100644
index 00000000..1bc17042
--- /dev/null
+++ b/MrBigsock/Assets/Prefabs/MapObjects/Stairs.prefab
@@ -0,0 +1,127 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!1 &4409019817617405666
+GameObject:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  serializedVersion: 6
+  m_Component:
+  - component: {fileID: 8860318727928166917}
+  - component: {fileID: -6422210887197446182}
+  - component: {fileID: 1254199348833719201}
+  - component: {fileID: 4770025611691691476}
+  m_Layer: 11
+  m_Name: Stairs
+  m_TagString: Untagged
+  m_Icon: {fileID: 0}
+  m_NavMeshLayer: 0
+  m_StaticEditorFlags: 0
+  m_IsActive: 1
+--- !u!4 &8860318727928166917
+Transform:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 4409019817617405666}
+  m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+  m_LocalPosition: {x: 0.49, y: -0.45, z: 0}
+  m_LocalScale: {x: 1, y: 1, z: 1}
+  m_ConstrainProportionsScale: 0
+  m_Children: []
+  m_Father: {fileID: 0}
+  m_RootOrder: 0
+  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!114 &-6422210887197446182
+MonoBehaviour:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 4409019817617405666}
+  m_Enabled: 1
+  m_EditorHideFlags: 0
+  m_Script: {fileID: 11500000, guid: 4a3905e3d079fb64ca71936a1caba90d, type: 3}
+  m_Name: 
+  m_EditorClassIdentifier: 
+  _prompt: 
+--- !u!212 &1254199348833719201
+SpriteRenderer:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 4409019817617405666}
+  m_Enabled: 1
+  m_CastShadows: 0
+  m_ReceiveShadows: 0
+  m_DynamicOccludee: 1
+  m_StaticShadowCaster: 0
+  m_MotionVectors: 1
+  m_LightProbeUsage: 1
+  m_ReflectionProbeUsage: 1
+  m_RayTracingMode: 0
+  m_RayTraceProcedural: 0
+  m_RenderingLayerMask: 1
+  m_RendererPriority: 0
+  m_Materials:
+  - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 0}
+  m_StaticBatchInfo:
+    firstSubMesh: 0
+    subMeshCount: 0
+  m_StaticBatchRoot: {fileID: 0}
+  m_ProbeAnchor: {fileID: 0}
+  m_LightProbeVolumeOverride: {fileID: 0}
+  m_ScaleInLightmap: 1
+  m_ReceiveGI: 1
+  m_PreserveUVs: 0
+  m_IgnoreNormalsForChartDetection: 0
+  m_ImportantGI: 0
+  m_StitchLightmapSeams: 1
+  m_SelectedEditorRenderState: 0
+  m_MinimumChartSize: 4
+  m_AutoUVMaxDistance: 0.5
+  m_AutoUVMaxAngle: 89
+  m_LightmapParameters: {fileID: 0}
+  m_SortingLayerID: 0
+  m_SortingLayer: 0
+  m_SortingOrder: 1
+  m_Sprite: {fileID: 2090772569, guid: 0a806eb0d25e11c48b5dee57fb9339b5, type: 3}
+  m_Color: {r: 1, g: 1, b: 1, a: 1}
+  m_FlipX: 0
+  m_FlipY: 0
+  m_DrawMode: 0
+  m_Size: {x: 1, y: 1}
+  m_AdaptiveModeThreshold: 0.5
+  m_SpriteTileMode: 0
+  m_WasSpriteAssigned: 1
+  m_MaskInteraction: 0
+  m_SpriteSortPoint: 0
+--- !u!61 &4770025611691691476
+BoxCollider2D:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 4409019817617405666}
+  m_Enabled: 1
+  m_Density: 1
+  m_Material: {fileID: 0}
+  m_IsTrigger: 0
+  m_UsedByEffector: 0
+  m_UsedByComposite: 0
+  m_Offset: {x: 0, y: 0}
+  m_SpriteTilingProperty:
+    border: {x: 0, y: 0, z: 0, w: 0}
+    pivot: {x: 0.5, y: 0.5}
+    oldSize: {x: 1, y: 1}
+    newSize: {x: 1, y: 1}
+    adaptiveTilingThreshold: 0.5
+    drawMode: 0
+    adaptiveTiling: 0
+  m_AutoTiling: 0
+  serializedVersion: 2
+  m_Size: {x: 1, y: 1}
+  m_EdgeRadius: 0
diff --git a/MrBigsock/Assets/Prefabs/MapObjects/Stairs.prefab.meta b/MrBigsock/Assets/Prefabs/MapObjects/Stairs.prefab.meta
new file mode 100644
index 00000000..d8093fc2
--- /dev/null
+++ b/MrBigsock/Assets/Prefabs/MapObjects/Stairs.prefab.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: b4bdc0b7e656c1c498446d9f7bcda837
+PrefabImporter:
+  externalObjects: {}
+  userData: 
+  assetBundleName: 
+  assetBundleVariant: 
diff --git a/MrBigsock/Assets/Resources/Sprites/Enemy/Animations/orc_warrior/bow/Bow and Arrows.png.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Animations/orc_warrior/bow/Bow and Arrows.png.meta
index 7cc7910d..76610ac4 100644
--- a/MrBigsock/Assets/Resources/Sprites/Enemy/Animations/orc_warrior/bow/Bow and Arrows.png.meta	
+++ b/MrBigsock/Assets/Resources/Sprites/Enemy/Animations/orc_warrior/bow/Bow and Arrows.png.meta	
@@ -33,7 +33,7 @@ TextureImporter:
   maxTextureSize: 2048
   textureSettings:
     serializedVersion: 2
-    filterMode: 1
+    filterMode: 0
     aniso: 1
     mipBias: 0
     wrapU: 1
diff --git a/MrBigsock/Assets/Resources/Sprites/Enemy/Enemy_sprites/Archer Skeleton.png.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Enemy_sprites/Archer Skeleton.png.meta
index 7e32f60d..5d0b346a 100644
--- a/MrBigsock/Assets/Resources/Sprites/Enemy/Enemy_sprites/Archer Skeleton.png.meta	
+++ b/MrBigsock/Assets/Resources/Sprites/Enemy/Enemy_sprites/Archer Skeleton.png.meta	
@@ -33,7 +33,7 @@ TextureImporter:
   maxTextureSize: 2048
   textureSettings:
     serializedVersion: 2
-    filterMode: 1
+    filterMode: 0
     aniso: 1
     mipBias: 0
     wrapU: 1
diff --git a/MrBigsock/Assets/Resources/Sprites/Item/coffee.png b/MrBigsock/Assets/Resources/Sprites/Item/coffee.png
new file mode 100644
index 0000000000000000000000000000000000000000..26efebd6050b64dad3a5402e82b86bc350c31ec3
GIT binary patch
literal 1304
zcmV+z1?T#SP)<h;3K|Lk000e1NJLTq008O$001Hg1^@s6Q7=W800001b5ch_0Itp)
z=>Px((n&-?RCt{2oIz+DRTzN3H;HVU#Sm%;f@!q}_p&?aAu6;UN}#rf-aH8skHMb2
zin&?vCiUvEm*ByJl7l4>f=vq6U;}TrLQ09D>mi|P8=2sOyU)Y!OlN1eCNuLkv%CF2
z2-%&?d^7ug{(1j<^EMy|f*=S&dQ{dIkOf+6L+G=+uA7;sVm3^poWph9=Q0+9gx=YN
z{Sjj$R$A*=p3$@?%mS^oVZ5%`A4!&E&0~%KT5D~^6JG#DH6sZcL2C`;_0&mW%M-9a
zVw_SfwFV%r$FXwOW5y}f@DoI99s787!r+u@J@E+X2;z`3DQtPdIHelqiDTu)8utc0
zkUgr|8&QC1{lsoKHB|>t=1&JJp1l#@BiO+}5a)jI0NGYQ1DUAMyt_5ZImkC+A6ry2
z0F-y{TJf}y64nO!26#@h_iEk%v-R`|16lg2sXE3}$|=>ra}xJtwmgDGJjXbt8pczq
zRk392=@X7UQ7dKxy|d}hm?omAW>ER`d1cEZG$;7<&L$PJVa2ENCR(v%>dBf+dQ|7k
zzmgq8h{Uyb3}oqRo5uDFGQJ!_hAFN`noO#g4b0vM#&f`P5<iowm<^1lQkR>yJkTtE
zlRTOk7PQued_$>x12t7oT_ze&Q863+;qjcID0|@uJ*q$EP*Zi2X2K=#<c(>Rb4fJ;
zwmbshIYv#@4UlS#*(m2wd1KX+6xVfC(iLa@$Wb59gc~hQIbp>U=}l9YH?4pUO_>xE
z|Cux-e4gAZk9i^^GoM3S!g$U0PTPCg@<6CJ%{QLc<g$(*7e7w@;E_aq%AqY0DKQhb
zzAX=glHGF>FQ^yVP++CxwCZ7h@E0oBBF@Sr1<Ai@(kqXU4%c=4$+U3knyIIS#5aV3
zrvv}xT9uQzM{SLKuKW(SOFsqg=Wpx+aQfA}dbs1kN1p|MI}T42@!0i5<CL|>*5?{@
z&nUnn9y7^=xtN=#Slw<rPy_STzk~N5%$)^b@y50(y)mK6p?#0T6Gc3BJ<&L2?XmT_
z2Hi6XFv)~jW0P;Me8QKrWBjmkz~$EO<=HQIFZBMx()H$%b7xum^^dlb9ET_RTRe6>
z(Ku!8>9_XD%F{NP^#0QI|CL;x9SindtnR{8_rbn+#3LTN9)FB_=-_{i&EU0P(wsh-
zQx7Mv2HV9W9`W?X6C~<2wg6b5&{eX^SjYA|_kLFo?pEQ$uYwB_k9fpm-_!AUCY;$m
z@A4+AtrLZLFg|Md@i*u)l`bCfh{v8M)_-_dtnR|f0RWY`ODs$mD4sunufL0<5s!Gp
z6VubNGU>6p$BFx6oKqLuwzqZJ>vt&5f8KmO+u3D{M?B)O>*>0L@Km95J?^z|*L?o%
zt`{L5@rb84o+Gb%j%IvP#3LT@#P@WJQD5Gg;kCjHzih3yZI5QWzk<TAsl_86@$}Bq
zk*NQ?e!y+B+;M^h3NQ@|a|N!k#R3J2)mvP8>lJmg%LR!?JmRtEaUhb-&tQ#B7OT4y
ztG597^#0H4>i8LT^Toe{eZ(Uk@$|;y_o#<{H7QtNy>h_f`ZtuW6#2gJadbEFh(|m<
z@PtcWH9?(K#sc95n)R`t<*Xbu2f8nvQst$}v(70V@rb8)9zhWLmHz<y)v4M5-|X=K
O0000<MNUMnLSTY||B!P4

literal 0
HcmV?d00001

diff --git a/MrBigsock/Assets/Resources/Sprites/Item/coffee.png.meta b/MrBigsock/Assets/Resources/Sprites/Item/coffee.png.meta
new file mode 100644
index 00000000..47e4f1ed
--- /dev/null
+++ b/MrBigsock/Assets/Resources/Sprites/Item/coffee.png.meta
@@ -0,0 +1,145 @@
+fileFormatVersion: 2
+guid: 8f2199ff336579b40a72e81b29a26ea2
+TextureImporter:
+  internalIDToNameTable: []
+  externalObjects: {}
+  serializedVersion: 12
+  mipmaps:
+    mipMapMode: 0
+    enableMipMap: 0
+    sRGBTexture: 1
+    linearTexture: 0
+    fadeOut: 0
+    borderMipMap: 0
+    mipMapsPreserveCoverage: 0
+    alphaTestReferenceValue: 0.5
+    mipMapFadeDistanceStart: 1
+    mipMapFadeDistanceEnd: 3
+  bumpmap:
+    convertToNormalMap: 0
+    externalNormalMap: 0
+    heightScale: 0.25
+    normalMapFilter: 0
+  isReadable: 0
+  streamingMipmaps: 0
+  streamingMipmapsPriority: 0
+  vTOnly: 0
+  ignoreMasterTextureLimit: 0
+  grayScaleToAlpha: 0
+  generateCubemap: 6
+  cubemapConvolution: 0
+  seamlessCubemap: 0
+  textureFormat: 1
+  maxTextureSize: 2048
+  textureSettings:
+    serializedVersion: 2
+    filterMode: 0
+    aniso: 1
+    mipBias: 0
+    wrapU: 1
+    wrapV: 1
+    wrapW: 1
+  nPOTScale: 0
+  lightmap: 0
+  compressionQuality: 50
+  spriteMode: 2
+  spriteExtrude: 1
+  spriteMeshType: 1
+  alignment: 0
+  spritePivot: {x: 0.5, y: 0.5}
+  spritePixelsToUnits: 16
+  spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+  spriteGenerateFallbackPhysicsShape: 1
+  alphaUsage: 1
+  alphaIsTransparency: 1
+  spriteTessellationDetail: -1
+  textureType: 8
+  textureShape: 1
+  singleChannelComponent: 0
+  flipbookRows: 1
+  flipbookColumns: 1
+  maxTextureSizeSet: 0
+  compressionQualitySet: 0
+  textureFormatSet: 0
+  ignorePngGamma: 0
+  applyGammaDecoding: 0
+  cookieLightType: 0
+  platformSettings:
+  - serializedVersion: 3
+    buildTarget: DefaultTexturePlatform
+    maxTextureSize: 2048
+    resizeAlgorithm: 0
+    textureFormat: -1
+    textureCompression: 1
+    compressionQuality: 50
+    crunchedCompression: 0
+    allowsAlphaSplitting: 0
+    overridden: 0
+    androidETC2FallbackOverride: 0
+    forceMaximumCompressionQuality_BC6H_BC7: 0
+  - serializedVersion: 3
+    buildTarget: Standalone
+    maxTextureSize: 2048
+    resizeAlgorithm: 0
+    textureFormat: -1
+    textureCompression: 1
+    compressionQuality: 50
+    crunchedCompression: 0
+    allowsAlphaSplitting: 0
+    overridden: 0
+    androidETC2FallbackOverride: 0
+    forceMaximumCompressionQuality_BC6H_BC7: 0
+  - serializedVersion: 3
+    buildTarget: Server
+    maxTextureSize: 2048
+    resizeAlgorithm: 0
+    textureFormat: -1
+    textureCompression: 1
+    compressionQuality: 50
+    crunchedCompression: 0
+    allowsAlphaSplitting: 0
+    overridden: 0
+    androidETC2FallbackOverride: 0
+    forceMaximumCompressionQuality_BC6H_BC7: 0
+  spriteSheet:
+    serializedVersion: 2
+    sprites:
+    - serializedVersion: 2
+      name: coffee_0
+      rect:
+        serializedVersion: 2
+        x: 107
+        y: 0
+        width: 19
+        height: 19
+      alignment: 0
+      pivot: {x: 0.5, y: 0.5}
+      border: {x: 0, y: 0, z: 0, w: 0}
+      outline: []
+      physicsShape: []
+      tessellationDetail: 0
+      bones: []
+      spriteID: 0863da5608d79a242839f94c1263717b
+      internalID: -1441320517
+      vertices: []
+      indices: 
+      edges: []
+      weights: []
+    outline: []
+    physicsShape: []
+    bones: []
+    spriteID: 5e97eb03825dee720800000000000000
+    internalID: 0
+    vertices: []
+    indices: 
+    edges: []
+    weights: []
+    secondaryTextures: []
+    nameFileIdTable:
+      coffee_0: -1441320517
+  spritePackingTag: 
+  pSDRemoveMatte: 0
+  pSDShowRemoveMatteOption: 0
+  userData: 
+  assetBundleName: 
+  assetBundleVariant: 
diff --git a/MrBigsock/Assets/Resources/Sprites/Item/elixirofspeed.png b/MrBigsock/Assets/Resources/Sprites/Item/elixirofspeed.png
new file mode 100644
index 0000000000000000000000000000000000000000..68d21865ceb654d2fa2aa14920126573a3eabfbf
GIT binary patch
literal 1152
zcmV-`1b_R9P)<h;3K|Lk000e1NJLTq002M$003|Z1^@s6t`l~1000C>Nkl<Zc-rk-
z&59H;5Z-4Q@!%fxDlY!q6a~F4coQE%Z~6?nM|}fP@aj!Gd0Nqf;9>C<^ePB4QVm~Q
z6OwdQQf+rKRq!#Lo>V&Dm!zjtQ+;sY=H}+cY_r*HbLicFXyD|=g#jNQoZo@811<Xx
z4gC4_WBcy(%MR$Av;!^sM;lQ&ci=xZaCZ0dfYJ`!KYl-;)c@+^djm@Sf1h3(P&E1=
zt`&ikFA;&0FA;&0SBsD$5Bz+7G22LrJaGK-lgK|L58QcmQ{*3#2d4TzHb51*2q;Sh
zAfj9Zl%)a?Q7!_?QUR!+Tm+QG0`L(BdF>1UVUX9(01yUw?F;~6kQWIMsu)7E20@-f
z;}7y28voM%XP>5OpC()JcXM-d^LT*A13Vt!@c@qp>}5P4wJE9*K)MgeZHj6H(DpyN
zEiUN*-xinn^KEg7Ki?Ls1<-7RWB!_LaLiw`4NmpHdIs$E5-8qFvl*a`1%xv|8w;@N
zfAoo}_KC7Je>b;%G`e#FlJjfxuO@$Zcx41GmO8&Se-rZjUm#p8bzb9t>*ybH{;_%z
z|5*e8iP$-b0I175uMq%sCH}Js5Q9blLX7}1G$nwPz~TZ(MUdRYaw16l7a=bZL2~iX
zU)%Yd2(y!y+|f(?wVnTOcYY~}l8bW^OZc0LP<rvD{mn#Z+2760O=lE4%dNYqEhz$!
zrR^_Hp8u1Q+pDKY<OG;%e>LP&opb?QfQ|*&`+I=@3b?tsxw*NyxixIsT;gsBpiEDh
z56@lNP9;lI9pns|3b7Oco)Sk1(y^DNIH*oh=GYV=YE(*q>RJ&XP$oFOLuNP~)3pfU
zd8#YU9+wEfJ0~H)Q`b@iQV0n^d<=l**h~QG3>u#zfDUj1H6zGp5q%dfm2hUl-|QZ+
z^a$emspXbhmZnRfb_UdpU`~J>%mt{K!Zjnf3IXPt!V&_j5Wr#zm%ze*hlCdJ<pfjH
zHas8m(Za%i6acT9Va<leVVMgMu6JHeo#(TKUqb^6e-i=1dJ=>qxRk${0835bRV;y)
zQ7u3h@qjf5uxLEMLV%{@0T%awrsDyz*UYBC1!z7VQ1URr1!z7V5I)UKAtpf6@c=FW
zAK}<>N`SS*174h6A94`3Z;uA>qzt@7J&OPq@c`-|5g>p#frvc%_IV_h+75^QAf59!
z5x`;!^Ov15dJurVBLV~v3k4|kHxZzVctGrTKedaBZHBst2S}d*x{e2wJO^|U52y`^
zH60JI*u^y+5Agf|&kykY0M8Hb`~c4nXg5Cq+g#1(<P!M$;q~^-vnM0goFBmV`O<P$
z03y$k6TxB%*Nk8)BJ}<C(;cY(9;YveI4VPgx$*;ev<AoMco@myukD2K0DRAh^Kwi~
zu>gcQ^8+xdnokS=<PzY-QBDcad^{i~02d<nlhH*yp!R35`FMbZ03Hu$6n_D49`BgP
S>xSY00000<MNUMnLSTX+&IS$u

literal 0
HcmV?d00001

diff --git a/MrBigsock/Assets/Resources/Sprites/Item/elixirofspeed.png.meta b/MrBigsock/Assets/Resources/Sprites/Item/elixirofspeed.png.meta
new file mode 100644
index 00000000..4a70b5a6
--- /dev/null
+++ b/MrBigsock/Assets/Resources/Sprites/Item/elixirofspeed.png.meta
@@ -0,0 +1,169 @@
+fileFormatVersion: 2
+guid: 97451641256620a45a7d902a82eb7d58
+TextureImporter:
+  internalIDToNameTable: []
+  externalObjects: {}
+  serializedVersion: 12
+  mipmaps:
+    mipMapMode: 0
+    enableMipMap: 0
+    sRGBTexture: 1
+    linearTexture: 0
+    fadeOut: 0
+    borderMipMap: 0
+    mipMapsPreserveCoverage: 0
+    alphaTestReferenceValue: 0.5
+    mipMapFadeDistanceStart: 1
+    mipMapFadeDistanceEnd: 3
+  bumpmap:
+    convertToNormalMap: 0
+    externalNormalMap: 0
+    heightScale: 0.25
+    normalMapFilter: 0
+  isReadable: 0
+  streamingMipmaps: 0
+  streamingMipmapsPriority: 0
+  vTOnly: 0
+  ignoreMasterTextureLimit: 0
+  grayScaleToAlpha: 0
+  generateCubemap: 6
+  cubemapConvolution: 0
+  seamlessCubemap: 0
+  textureFormat: 1
+  maxTextureSize: 2048
+  textureSettings:
+    serializedVersion: 2
+    filterMode: 0
+    aniso: 1
+    mipBias: 0
+    wrapU: 1
+    wrapV: 1
+    wrapW: 1
+  nPOTScale: 0
+  lightmap: 0
+  compressionQuality: 50
+  spriteMode: 2
+  spriteExtrude: 1
+  spriteMeshType: 1
+  alignment: 0
+  spritePivot: {x: 0.5, y: 0.5}
+  spritePixelsToUnits: 16
+  spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+  spriteGenerateFallbackPhysicsShape: 1
+  alphaUsage: 1
+  alphaIsTransparency: 1
+  spriteTessellationDetail: -1
+  textureType: 8
+  textureShape: 1
+  singleChannelComponent: 0
+  flipbookRows: 1
+  flipbookColumns: 1
+  maxTextureSizeSet: 0
+  compressionQualitySet: 0
+  textureFormatSet: 0
+  ignorePngGamma: 0
+  applyGammaDecoding: 0
+  cookieLightType: 0
+  platformSettings:
+  - serializedVersion: 3
+    buildTarget: DefaultTexturePlatform
+    maxTextureSize: 2048
+    resizeAlgorithm: 0
+    textureFormat: -1
+    textureCompression: 1
+    compressionQuality: 50
+    crunchedCompression: 0
+    allowsAlphaSplitting: 0
+    overridden: 0
+    androidETC2FallbackOverride: 0
+    forceMaximumCompressionQuality_BC6H_BC7: 0
+  - serializedVersion: 3
+    buildTarget: Standalone
+    maxTextureSize: 2048
+    resizeAlgorithm: 0
+    textureFormat: -1
+    textureCompression: 1
+    compressionQuality: 50
+    crunchedCompression: 0
+    allowsAlphaSplitting: 0
+    overridden: 0
+    androidETC2FallbackOverride: 0
+    forceMaximumCompressionQuality_BC6H_BC7: 0
+  - serializedVersion: 3
+    buildTarget: Server
+    maxTextureSize: 2048
+    resizeAlgorithm: 0
+    textureFormat: -1
+    textureCompression: 1
+    compressionQuality: 50
+    crunchedCompression: 0
+    allowsAlphaSplitting: 0
+    overridden: 0
+    androidETC2FallbackOverride: 0
+    forceMaximumCompressionQuality_BC6H_BC7: 0
+  spriteSheet:
+    serializedVersion: 2
+    sprites:
+    - serializedVersion: 2
+      name: chest_3
+      rect:
+        serializedVersion: 2
+        x: 48
+        y: 96
+        width: 16
+        height: 16
+      alignment: 0
+      pivot: {x: 0.5, y: 0.5}
+      border: {x: 0, y: 0, z: 0, w: 0}
+      outline: []
+      physicsShape: []
+      tessellationDetail: 0
+      bones: []
+      spriteID: a8e6efcf64d196846befa21a2890a76a
+      internalID: -1310151336
+      vertices: []
+      indices: 
+      edges: []
+      weights: []
+    outline: []
+    physicsShape: []
+    bones: []
+    spriteID: 5e97eb03825dee720800000000000000
+    internalID: 0
+    vertices: []
+    indices: 
+    edges: []
+    weights: []
+    secondaryTextures: []
+    nameFileIdTable:
+      chest_18: 76109953
+      chest_7: -866377811
+      chest_0: 1856409934
+      chest_21: 1005141044
+      chest_22: -240853165
+      chest_3: -1310151336
+      chest_10: -1593485246
+      chest_24: 746258729
+      chest_15: 769776556
+      chest_16: 453606183
+      chest_13: 447216546
+      chest_8: 992366502
+      chest_19: -239743868
+      chest_20: 617207669
+      chest_23: 1205359815
+      chest_5: 107204761
+      chest_14: -1476513711
+      chest_6: -1448534554
+      chest_1: -698650373
+      chest_17: 2077912087
+      chest_11: -407677634
+      chest_12: 407419430
+      chest_9: -348577375
+      chest_4: 1342639699
+      chest_2: 616990432
+  spritePackingTag: 
+  pSDRemoveMatte: 0
+  pSDShowRemoveMatteOption: 0
+  userData: 
+  assetBundleName: 
+  assetBundleVariant: 
diff --git a/MrBigsock/Assets/Resources/Sprites/Item/foureyes.png b/MrBigsock/Assets/Resources/Sprites/Item/foureyes.png
new file mode 100644
index 0000000000000000000000000000000000000000..c03777e230ef0acdd5aff430589ab747876ac71c
GIT binary patch
literal 166
zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`jKx9jP7LeL$-D$|5<FcTLoED{
zP735=P~dR>`mf#0NGVWTThYGVZkytv#}6LcE@9+QU@@+~bWqgA-J-2RHpHW(fGuHe
zheTWM*{jnU_$D%}&1JmWaU$7k{@;VIR(y6_myvug?v{Go>>uwJFkDTP6Ko2|x(Bq2
N!PC{xWt~$(69B+*Iqm=e

literal 0
HcmV?d00001

diff --git a/MrBigsock/Assets/Resources/Sprites/Item/foureyes.png.meta b/MrBigsock/Assets/Resources/Sprites/Item/foureyes.png.meta
new file mode 100644
index 00000000..d7dd68d6
--- /dev/null
+++ b/MrBigsock/Assets/Resources/Sprites/Item/foureyes.png.meta
@@ -0,0 +1,145 @@
+fileFormatVersion: 2
+guid: 4b905ca6d8388824a90f45e33958838e
+TextureImporter:
+  internalIDToNameTable: []
+  externalObjects: {}
+  serializedVersion: 12
+  mipmaps:
+    mipMapMode: 0
+    enableMipMap: 0
+    sRGBTexture: 1
+    linearTexture: 0
+    fadeOut: 0
+    borderMipMap: 0
+    mipMapsPreserveCoverage: 0
+    alphaTestReferenceValue: 0.5
+    mipMapFadeDistanceStart: 1
+    mipMapFadeDistanceEnd: 3
+  bumpmap:
+    convertToNormalMap: 0
+    externalNormalMap: 0
+    heightScale: 0.25
+    normalMapFilter: 0
+  isReadable: 0
+  streamingMipmaps: 0
+  streamingMipmapsPriority: 0
+  vTOnly: 0
+  ignoreMasterTextureLimit: 0
+  grayScaleToAlpha: 0
+  generateCubemap: 6
+  cubemapConvolution: 0
+  seamlessCubemap: 0
+  textureFormat: 1
+  maxTextureSize: 2048
+  textureSettings:
+    serializedVersion: 2
+    filterMode: 0
+    aniso: 1
+    mipBias: 0
+    wrapU: 1
+    wrapV: 1
+    wrapW: 1
+  nPOTScale: 0
+  lightmap: 0
+  compressionQuality: 50
+  spriteMode: 2
+  spriteExtrude: 1
+  spriteMeshType: 1
+  alignment: 0
+  spritePivot: {x: 0.5, y: 0.5}
+  spritePixelsToUnits: 16
+  spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+  spriteGenerateFallbackPhysicsShape: 1
+  alphaUsage: 1
+  alphaIsTransparency: 1
+  spriteTessellationDetail: -1
+  textureType: 8
+  textureShape: 1
+  singleChannelComponent: 0
+  flipbookRows: 1
+  flipbookColumns: 1
+  maxTextureSizeSet: 0
+  compressionQualitySet: 0
+  textureFormatSet: 0
+  ignorePngGamma: 0
+  applyGammaDecoding: 0
+  cookieLightType: 0
+  platformSettings:
+  - serializedVersion: 3
+    buildTarget: DefaultTexturePlatform
+    maxTextureSize: 2048
+    resizeAlgorithm: 0
+    textureFormat: -1
+    textureCompression: 1
+    compressionQuality: 50
+    crunchedCompression: 0
+    allowsAlphaSplitting: 0
+    overridden: 0
+    androidETC2FallbackOverride: 0
+    forceMaximumCompressionQuality_BC6H_BC7: 0
+  - serializedVersion: 3
+    buildTarget: Standalone
+    maxTextureSize: 2048
+    resizeAlgorithm: 0
+    textureFormat: -1
+    textureCompression: 1
+    compressionQuality: 50
+    crunchedCompression: 0
+    allowsAlphaSplitting: 0
+    overridden: 0
+    androidETC2FallbackOverride: 0
+    forceMaximumCompressionQuality_BC6H_BC7: 0
+  - serializedVersion: 3
+    buildTarget: Server
+    maxTextureSize: 2048
+    resizeAlgorithm: 0
+    textureFormat: -1
+    textureCompression: 1
+    compressionQuality: 50
+    crunchedCompression: 0
+    allowsAlphaSplitting: 0
+    overridden: 0
+    androidETC2FallbackOverride: 0
+    forceMaximumCompressionQuality_BC6H_BC7: 0
+  spriteSheet:
+    serializedVersion: 2
+    sprites:
+    - serializedVersion: 2
+      name: foureyes_0
+      rect:
+        serializedVersion: 2
+        x: 0
+        y: 0
+        width: 16
+        height: 16
+      alignment: 0
+      pivot: {x: 0, y: 0}
+      border: {x: 0, y: 0, z: 0, w: 0}
+      outline: []
+      physicsShape: []
+      tessellationDetail: 0
+      bones: []
+      spriteID: 655dd3560a03ef64c900ab4b5296b0ff
+      internalID: 880566551
+      vertices: []
+      indices: 
+      edges: []
+      weights: []
+    outline: []
+    physicsShape: []
+    bones: []
+    spriteID: 5e97eb03825dee720800000000000000
+    internalID: 0
+    vertices: []
+    indices: 
+    edges: []
+    weights: []
+    secondaryTextures: []
+    nameFileIdTable:
+      foureyes_0: 880566551
+  spritePackingTag: 
+  pSDRemoveMatte: 0
+  pSDShowRemoveMatteOption: 0
+  userData: 
+  assetBundleName: 
+  assetBundleVariant: 
diff --git a/MrBigsock/Assets/Resources/Sprites/Item/lunch.png b/MrBigsock/Assets/Resources/Sprites/Item/lunch.png
new file mode 100644
index 0000000000000000000000000000000000000000..0d100f6b10d3a25f45b54a64b9605c93a088686b
GIT binary patch
literal 4761
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

literal 0
HcmV?d00001

diff --git a/MrBigsock/Assets/Resources/Sprites/Item/lunch.png.meta b/MrBigsock/Assets/Resources/Sprites/Item/lunch.png.meta
new file mode 100644
index 00000000..eb415963
--- /dev/null
+++ b/MrBigsock/Assets/Resources/Sprites/Item/lunch.png.meta
@@ -0,0 +1,145 @@
+fileFormatVersion: 2
+guid: 5ac1bfe01a62be74b976428bfe896e94
+TextureImporter:
+  internalIDToNameTable: []
+  externalObjects: {}
+  serializedVersion: 12
+  mipmaps:
+    mipMapMode: 0
+    enableMipMap: 0
+    sRGBTexture: 1
+    linearTexture: 0
+    fadeOut: 0
+    borderMipMap: 0
+    mipMapsPreserveCoverage: 0
+    alphaTestReferenceValue: 0.5
+    mipMapFadeDistanceStart: 1
+    mipMapFadeDistanceEnd: 3
+  bumpmap:
+    convertToNormalMap: 0
+    externalNormalMap: 0
+    heightScale: 0.25
+    normalMapFilter: 0
+  isReadable: 0
+  streamingMipmaps: 0
+  streamingMipmapsPriority: 0
+  vTOnly: 0
+  ignoreMasterTextureLimit: 0
+  grayScaleToAlpha: 0
+  generateCubemap: 6
+  cubemapConvolution: 0
+  seamlessCubemap: 0
+  textureFormat: 1
+  maxTextureSize: 2048
+  textureSettings:
+    serializedVersion: 2
+    filterMode: 0
+    aniso: 1
+    mipBias: 0
+    wrapU: 1
+    wrapV: 1
+    wrapW: 1
+  nPOTScale: 0
+  lightmap: 0
+  compressionQuality: 50
+  spriteMode: 2
+  spriteExtrude: 1
+  spriteMeshType: 1
+  alignment: 0
+  spritePivot: {x: 0.5, y: 0.5}
+  spritePixelsToUnits: 16
+  spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+  spriteGenerateFallbackPhysicsShape: 1
+  alphaUsage: 1
+  alphaIsTransparency: 1
+  spriteTessellationDetail: -1
+  textureType: 8
+  textureShape: 1
+  singleChannelComponent: 0
+  flipbookRows: 1
+  flipbookColumns: 1
+  maxTextureSizeSet: 0
+  compressionQualitySet: 0
+  textureFormatSet: 0
+  ignorePngGamma: 0
+  applyGammaDecoding: 0
+  cookieLightType: 0
+  platformSettings:
+  - serializedVersion: 3
+    buildTarget: DefaultTexturePlatform
+    maxTextureSize: 2048
+    resizeAlgorithm: 0
+    textureFormat: -1
+    textureCompression: 1
+    compressionQuality: 50
+    crunchedCompression: 0
+    allowsAlphaSplitting: 0
+    overridden: 0
+    androidETC2FallbackOverride: 0
+    forceMaximumCompressionQuality_BC6H_BC7: 0
+  - serializedVersion: 3
+    buildTarget: Standalone
+    maxTextureSize: 2048
+    resizeAlgorithm: 0
+    textureFormat: -1
+    textureCompression: 1
+    compressionQuality: 50
+    crunchedCompression: 0
+    allowsAlphaSplitting: 0
+    overridden: 0
+    androidETC2FallbackOverride: 0
+    forceMaximumCompressionQuality_BC6H_BC7: 0
+  - serializedVersion: 3
+    buildTarget: Server
+    maxTextureSize: 2048
+    resizeAlgorithm: 0
+    textureFormat: -1
+    textureCompression: 1
+    compressionQuality: 50
+    crunchedCompression: 0
+    allowsAlphaSplitting: 0
+    overridden: 0
+    androidETC2FallbackOverride: 0
+    forceMaximumCompressionQuality_BC6H_BC7: 0
+  spriteSheet:
+    serializedVersion: 2
+    sprites:
+    - serializedVersion: 2
+      name: Foods_0
+      rect:
+        serializedVersion: 2
+        x: 0
+        y: 16
+        width: 16
+        height: 16
+      alignment: 0
+      pivot: {x: 0, y: 0}
+      border: {x: 0, y: 0, z: 0, w: 0}
+      outline: []
+      physicsShape: []
+      tessellationDetail: 0
+      bones: []
+      spriteID: fb88e420bb13c6843ace33311ea9078b
+      internalID: -1040748114
+      vertices: []
+      indices: 
+      edges: []
+      weights: []
+    outline: []
+    physicsShape: []
+    bones: []
+    spriteID: 5e97eb03825dee720800000000000000
+    internalID: 0
+    vertices: []
+    indices: 
+    edges: []
+    weights: []
+    secondaryTextures: []
+    nameFileIdTable:
+      Foods_0: -1040748114
+  spritePackingTag: 
+  pSDRemoveMatte: 0
+  pSDShowRemoveMatteOption: 0
+  userData: 
+  assetBundleName: 
+  assetBundleVariant: 
diff --git a/MrBigsock/Assets/Resources/Sprites/Item/plasticstraw.png b/MrBigsock/Assets/Resources/Sprites/Item/plasticstraw.png
new file mode 100644
index 0000000000000000000000000000000000000000..4672611ce60f5cd96cb2750c6e824c4d0bfa6a29
GIT binary patch
literal 192
zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`jKx9jP7LeL$-D$|sytmBLoEE4
zUJm3spuoWpVC!%1$o`gRu1Efph@8NULDBJwUp<0b=5z1<{pro`8K?HQs~+QUVd*eU
zagz%0YMdg}A`o+8!XZv0`_Mfn!q@4ggz6Y?TD^_);y!OzlLzlQb(0vkb%;hN$t_T{
oOiy@r>r>nUrN0;EG8}G+d&OxgSg|&48PF9Bp00i_>zopr0KKI}1ONa4

literal 0
HcmV?d00001

diff --git a/MrBigsock/Assets/Resources/Sprites/Item/plasticstraw.png.meta b/MrBigsock/Assets/Resources/Sprites/Item/plasticstraw.png.meta
new file mode 100644
index 00000000..c94b1832
--- /dev/null
+++ b/MrBigsock/Assets/Resources/Sprites/Item/plasticstraw.png.meta
@@ -0,0 +1,145 @@
+fileFormatVersion: 2
+guid: 26f37d49585023b4cb888e18fbe8eddf
+TextureImporter:
+  internalIDToNameTable: []
+  externalObjects: {}
+  serializedVersion: 12
+  mipmaps:
+    mipMapMode: 0
+    enableMipMap: 0
+    sRGBTexture: 1
+    linearTexture: 0
+    fadeOut: 0
+    borderMipMap: 0
+    mipMapsPreserveCoverage: 0
+    alphaTestReferenceValue: 0.5
+    mipMapFadeDistanceStart: 1
+    mipMapFadeDistanceEnd: 3
+  bumpmap:
+    convertToNormalMap: 0
+    externalNormalMap: 0
+    heightScale: 0.25
+    normalMapFilter: 0
+  isReadable: 0
+  streamingMipmaps: 0
+  streamingMipmapsPriority: 0
+  vTOnly: 0
+  ignoreMasterTextureLimit: 0
+  grayScaleToAlpha: 0
+  generateCubemap: 6
+  cubemapConvolution: 0
+  seamlessCubemap: 0
+  textureFormat: 1
+  maxTextureSize: 2048
+  textureSettings:
+    serializedVersion: 2
+    filterMode: 0
+    aniso: 1
+    mipBias: 0
+    wrapU: 1
+    wrapV: 1
+    wrapW: 1
+  nPOTScale: 0
+  lightmap: 0
+  compressionQuality: 50
+  spriteMode: 2
+  spriteExtrude: 1
+  spriteMeshType: 1
+  alignment: 0
+  spritePivot: {x: 0.5, y: 0.5}
+  spritePixelsToUnits: 16
+  spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+  spriteGenerateFallbackPhysicsShape: 1
+  alphaUsage: 1
+  alphaIsTransparency: 1
+  spriteTessellationDetail: -1
+  textureType: 8
+  textureShape: 1
+  singleChannelComponent: 0
+  flipbookRows: 1
+  flipbookColumns: 1
+  maxTextureSizeSet: 0
+  compressionQualitySet: 0
+  textureFormatSet: 0
+  ignorePngGamma: 0
+  applyGammaDecoding: 0
+  cookieLightType: 0
+  platformSettings:
+  - serializedVersion: 3
+    buildTarget: DefaultTexturePlatform
+    maxTextureSize: 2048
+    resizeAlgorithm: 0
+    textureFormat: -1
+    textureCompression: 1
+    compressionQuality: 50
+    crunchedCompression: 0
+    allowsAlphaSplitting: 0
+    overridden: 0
+    androidETC2FallbackOverride: 0
+    forceMaximumCompressionQuality_BC6H_BC7: 0
+  - serializedVersion: 3
+    buildTarget: Standalone
+    maxTextureSize: 2048
+    resizeAlgorithm: 0
+    textureFormat: -1
+    textureCompression: 1
+    compressionQuality: 50
+    crunchedCompression: 0
+    allowsAlphaSplitting: 0
+    overridden: 0
+    androidETC2FallbackOverride: 0
+    forceMaximumCompressionQuality_BC6H_BC7: 0
+  - serializedVersion: 3
+    buildTarget: Server
+    maxTextureSize: 2048
+    resizeAlgorithm: 0
+    textureFormat: -1
+    textureCompression: 1
+    compressionQuality: 50
+    crunchedCompression: 0
+    allowsAlphaSplitting: 0
+    overridden: 0
+    androidETC2FallbackOverride: 0
+    forceMaximumCompressionQuality_BC6H_BC7: 0
+  spriteSheet:
+    serializedVersion: 2
+    sprites:
+    - serializedVersion: 2
+      name: plasticstraw_0
+      rect:
+        serializedVersion: 2
+        x: 0
+        y: 0
+        width: 16
+        height: 16
+      alignment: 0
+      pivot: {x: 0, y: 0}
+      border: {x: 0, y: 0, z: 0, w: 0}
+      outline: []
+      physicsShape: []
+      tessellationDetail: 0
+      bones: []
+      spriteID: 39fca3deafd0a034ba4fe84a71ab7542
+      internalID: -530846067
+      vertices: []
+      indices: 
+      edges: []
+      weights: []
+    outline: []
+    physicsShape: []
+    bones: []
+    spriteID: 5e97eb03825dee720800000000000000
+    internalID: 0
+    vertices: []
+    indices: 
+    edges: []
+    weights: []
+    secondaryTextures: []
+    nameFileIdTable:
+      plasticstraw_0: -530846067
+  spritePackingTag: 
+  pSDRemoveMatte: 0
+  pSDShowRemoveMatteOption: 0
+  userData: 
+  assetBundleName: 
+  assetBundleVariant: 
diff --git a/MrBigsock/Assets/Resources/Sprites/Item/premature.png b/MrBigsock/Assets/Resources/Sprites/Item/premature.png
new file mode 100644
index 0000000000000000000000000000000000000000..3742c3153d2ba3bbd2e09271cd1f29d3ce4ff096
GIT binary patch
literal 286
zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`jKx9jP7LeL$-D$|Zg{#lhFJI~
zrzkL(Y_I*zA5?U=yIXLXNF<M5$61*PPNs2gZ6c~+ZJWCHA81?9{m_JA`m@(@F$ueY
zs+pxbt}^7zl9Z4*5Vvv4V>ao6KNrIVT(>YL^v3V|*Yf+zr`z^NBp+y>WxD?7*YEfp
zjQR?R-S=6gb1fgvT4;8N_kc88K<NL(b8VL5(KjA+v5K5ExV>OuztGkjJPsH4{Cp{2
zA*FDPLFDYe_Wg@hl$_WSEM^C2x%hdcWU?Js);Utz8Y$uMk*7P}X(or*{1c5Fev%$-
iLZ?<N(LR=@#Gu`LAyHdo`5mAi89ZJ6T-G@yGywooA#YFs

literal 0
HcmV?d00001

diff --git a/MrBigsock/Assets/Resources/Sprites/Item/premature.png.meta b/MrBigsock/Assets/Resources/Sprites/Item/premature.png.meta
new file mode 100644
index 00000000..cb94e1ae
--- /dev/null
+++ b/MrBigsock/Assets/Resources/Sprites/Item/premature.png.meta
@@ -0,0 +1,145 @@
+fileFormatVersion: 2
+guid: e40e526a01f47224ebd72e2d4b93a59d
+TextureImporter:
+  internalIDToNameTable: []
+  externalObjects: {}
+  serializedVersion: 12
+  mipmaps:
+    mipMapMode: 0
+    enableMipMap: 0
+    sRGBTexture: 1
+    linearTexture: 0
+    fadeOut: 0
+    borderMipMap: 0
+    mipMapsPreserveCoverage: 0
+    alphaTestReferenceValue: 0.5
+    mipMapFadeDistanceStart: 1
+    mipMapFadeDistanceEnd: 3
+  bumpmap:
+    convertToNormalMap: 0
+    externalNormalMap: 0
+    heightScale: 0.25
+    normalMapFilter: 0
+  isReadable: 0
+  streamingMipmaps: 0
+  streamingMipmapsPriority: 0
+  vTOnly: 0
+  ignoreMasterTextureLimit: 0
+  grayScaleToAlpha: 0
+  generateCubemap: 6
+  cubemapConvolution: 0
+  seamlessCubemap: 0
+  textureFormat: 1
+  maxTextureSize: 2048
+  textureSettings:
+    serializedVersion: 2
+    filterMode: 0
+    aniso: 1
+    mipBias: 0
+    wrapU: 1
+    wrapV: 1
+    wrapW: 1
+  nPOTScale: 0
+  lightmap: 0
+  compressionQuality: 50
+  spriteMode: 2
+  spriteExtrude: 1
+  spriteMeshType: 1
+  alignment: 0
+  spritePivot: {x: 0.5, y: 0.5}
+  spritePixelsToUnits: 16
+  spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+  spriteGenerateFallbackPhysicsShape: 1
+  alphaUsage: 1
+  alphaIsTransparency: 1
+  spriteTessellationDetail: -1
+  textureType: 8
+  textureShape: 1
+  singleChannelComponent: 0
+  flipbookRows: 1
+  flipbookColumns: 1
+  maxTextureSizeSet: 0
+  compressionQualitySet: 0
+  textureFormatSet: 0
+  ignorePngGamma: 0
+  applyGammaDecoding: 0
+  cookieLightType: 0
+  platformSettings:
+  - serializedVersion: 3
+    buildTarget: DefaultTexturePlatform
+    maxTextureSize: 2048
+    resizeAlgorithm: 0
+    textureFormat: -1
+    textureCompression: 1
+    compressionQuality: 50
+    crunchedCompression: 0
+    allowsAlphaSplitting: 0
+    overridden: 0
+    androidETC2FallbackOverride: 0
+    forceMaximumCompressionQuality_BC6H_BC7: 0
+  - serializedVersion: 3
+    buildTarget: Standalone
+    maxTextureSize: 2048
+    resizeAlgorithm: 0
+    textureFormat: -1
+    textureCompression: 1
+    compressionQuality: 50
+    crunchedCompression: 0
+    allowsAlphaSplitting: 0
+    overridden: 0
+    androidETC2FallbackOverride: 0
+    forceMaximumCompressionQuality_BC6H_BC7: 0
+  - serializedVersion: 3
+    buildTarget: Server
+    maxTextureSize: 2048
+    resizeAlgorithm: 0
+    textureFormat: -1
+    textureCompression: 1
+    compressionQuality: 50
+    crunchedCompression: 0
+    allowsAlphaSplitting: 0
+    overridden: 0
+    androidETC2FallbackOverride: 0
+    forceMaximumCompressionQuality_BC6H_BC7: 0
+  spriteSheet:
+    serializedVersion: 2
+    sprites:
+    - serializedVersion: 2
+      name: premature_0
+      rect:
+        serializedVersion: 2
+        x: 0
+        y: 0
+        width: 16
+        height: 16
+      alignment: 0
+      pivot: {x: 0, y: 0}
+      border: {x: 0, y: 0, z: 0, w: 0}
+      outline: []
+      physicsShape: []
+      tessellationDetail: 0
+      bones: []
+      spriteID: 94ea58ade1ddd8941ba524448c42eeb2
+      internalID: -1092222898
+      vertices: []
+      indices: 
+      edges: []
+      weights: []
+    outline: []
+    physicsShape: []
+    bones: []
+    spriteID: 5e97eb03825dee720800000000000000
+    internalID: 0
+    vertices: []
+    indices: 
+    edges: []
+    weights: []
+    secondaryTextures: []
+    nameFileIdTable:
+      premature_0: -1092222898
+  spritePackingTag: 
+  pSDRemoveMatte: 0
+  pSDShowRemoveMatteOption: 0
+  userData: 
+  assetBundleName: 
+  assetBundleVariant: 
diff --git a/MrBigsock/Assets/Resources/Sprites/Item/runningshoes.png b/MrBigsock/Assets/Resources/Sprites/Item/runningshoes.png
new file mode 100644
index 0000000000000000000000000000000000000000..2cef32f127845b17b4ac5214e244bf9e35d1014a
GIT binary patch
literal 7135
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
AE&u=k

literal 0
HcmV?d00001

diff --git a/MrBigsock/Assets/Resources/Sprites/Item/runningshoes.png.meta b/MrBigsock/Assets/Resources/Sprites/Item/runningshoes.png.meta
new file mode 100644
index 00000000..6ecd8363
--- /dev/null
+++ b/MrBigsock/Assets/Resources/Sprites/Item/runningshoes.png.meta
@@ -0,0 +1,145 @@
+fileFormatVersion: 2
+guid: ad70dad86bef68d4b9c5d007b9ffd2c8
+TextureImporter:
+  internalIDToNameTable: []
+  externalObjects: {}
+  serializedVersion: 12
+  mipmaps:
+    mipMapMode: 0
+    enableMipMap: 0
+    sRGBTexture: 1
+    linearTexture: 0
+    fadeOut: 0
+    borderMipMap: 0
+    mipMapsPreserveCoverage: 0
+    alphaTestReferenceValue: 0.5
+    mipMapFadeDistanceStart: 1
+    mipMapFadeDistanceEnd: 3
+  bumpmap:
+    convertToNormalMap: 0
+    externalNormalMap: 0
+    heightScale: 0.25
+    normalMapFilter: 0
+  isReadable: 0
+  streamingMipmaps: 0
+  streamingMipmapsPriority: 0
+  vTOnly: 0
+  ignoreMasterTextureLimit: 0
+  grayScaleToAlpha: 0
+  generateCubemap: 6
+  cubemapConvolution: 0
+  seamlessCubemap: 0
+  textureFormat: 1
+  maxTextureSize: 2048
+  textureSettings:
+    serializedVersion: 2
+    filterMode: 0
+    aniso: 1
+    mipBias: 0
+    wrapU: 1
+    wrapV: 1
+    wrapW: 1
+  nPOTScale: 0
+  lightmap: 0
+  compressionQuality: 50
+  spriteMode: 2
+  spriteExtrude: 1
+  spriteMeshType: 1
+  alignment: 0
+  spritePivot: {x: 0.5, y: 0.5}
+  spritePixelsToUnits: 16
+  spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+  spriteGenerateFallbackPhysicsShape: 1
+  alphaUsage: 1
+  alphaIsTransparency: 1
+  spriteTessellationDetail: -1
+  textureType: 8
+  textureShape: 1
+  singleChannelComponent: 0
+  flipbookRows: 1
+  flipbookColumns: 1
+  maxTextureSizeSet: 0
+  compressionQualitySet: 0
+  textureFormatSet: 0
+  ignorePngGamma: 0
+  applyGammaDecoding: 0
+  cookieLightType: 0
+  platformSettings:
+  - serializedVersion: 3
+    buildTarget: DefaultTexturePlatform
+    maxTextureSize: 2048
+    resizeAlgorithm: 0
+    textureFormat: -1
+    textureCompression: 1
+    compressionQuality: 50
+    crunchedCompression: 0
+    allowsAlphaSplitting: 0
+    overridden: 0
+    androidETC2FallbackOverride: 0
+    forceMaximumCompressionQuality_BC6H_BC7: 0
+  - serializedVersion: 3
+    buildTarget: Standalone
+    maxTextureSize: 2048
+    resizeAlgorithm: 0
+    textureFormat: -1
+    textureCompression: 1
+    compressionQuality: 50
+    crunchedCompression: 0
+    allowsAlphaSplitting: 0
+    overridden: 0
+    androidETC2FallbackOverride: 0
+    forceMaximumCompressionQuality_BC6H_BC7: 0
+  - serializedVersion: 3
+    buildTarget: Server
+    maxTextureSize: 2048
+    resizeAlgorithm: 0
+    textureFormat: -1
+    textureCompression: 1
+    compressionQuality: 50
+    crunchedCompression: 0
+    allowsAlphaSplitting: 0
+    overridden: 0
+    androidETC2FallbackOverride: 0
+    forceMaximumCompressionQuality_BC6H_BC7: 0
+  spriteSheet:
+    serializedVersion: 2
+    sprites:
+    - serializedVersion: 2
+      name: runningshoes_0
+      rect:
+        serializedVersion: 2
+        x: 80
+        y: 80
+        width: 16
+        height: 16
+      alignment: 0
+      pivot: {x: 0, y: 0}
+      border: {x: 0, y: 0, z: 0, w: 0}
+      outline: []
+      physicsShape: []
+      tessellationDetail: 0
+      bones: []
+      spriteID: 8f66359af190951498370cfeb429db4c
+      internalID: -2008356127
+      vertices: []
+      indices: 
+      edges: []
+      weights: []
+    outline: []
+    physicsShape: []
+    bones: []
+    spriteID: 5e97eb03825dee720800000000000000
+    internalID: 0
+    vertices: []
+    indices: 
+    edges: []
+    weights: []
+    secondaryTextures: []
+    nameFileIdTable:
+      runningshoes_0: -2008356127
+  spritePackingTag: 
+  pSDRemoveMatte: 0
+  pSDShowRemoveMatteOption: 0
+  userData: 
+  assetBundleName: 
+  assetBundleVariant: 
diff --git a/MrBigsock/Assets/Resources/Sprites/Item/tilesetNice.png.meta b/MrBigsock/Assets/Resources/Sprites/Item/tilesetNice.png.meta
index 959418ad..15af2050 100644
--- a/MrBigsock/Assets/Resources/Sprites/Item/tilesetNice.png.meta
+++ b/MrBigsock/Assets/Resources/Sprites/Item/tilesetNice.png.meta
@@ -581,7 +581,11 @@ TextureImporter:
       pivot: {x: 0.5, y: 0.5}
       border: {x: 0, y: 0, z: 0, w: 0}
       outline: []
-      physicsShape: []
+      physicsShape:
+      - - {x: 0, y: 4}
+        - {x: 0, y: -16}
+        - {x: 16, y: -16}
+        - {x: 16, y: 4}
       tessellationDetail: 0
       bones: []
       spriteID: d76be1ed7b11f6a44a42ed64755574ef
@@ -602,7 +606,11 @@ TextureImporter:
       pivot: {x: 0.5, y: 0.5}
       border: {x: 0, y: 0, z: 0, w: 0}
       outline: []
-      physicsShape: []
+      physicsShape:
+      - - {x: -16, y: 4}
+        - {x: -16, y: -16}
+        - {x: 16, y: -16}
+        - {x: 16, y: 4}
       tessellationDetail: 0
       bones: []
       spriteID: e913d1eb61c36db44b54a48ea80056d7
@@ -623,7 +631,15 @@ TextureImporter:
       pivot: {x: 0.5, y: 0.5}
       border: {x: 0, y: 0, z: 0, w: 0}
       outline: []
-      physicsShape: []
+      physicsShape:
+      - - {x: -16, y: 4}
+        - {x: -16, y: -16}
+        - {x: 16, y: -16}
+        - {x: 16, y: 4}
+      - - {x: -9, y: 4}
+        - {x: 13, y: 4}
+        - {x: 13, y: -16}
+        - {x: -9, y: -16}
       tessellationDetail: 0
       bones: []
       spriteID: 464d7b3c235cf0f4cac86cdf34beb2f0
diff --git a/MrBigsock/Assets/Tilemaps/Dungeon/Dungeon.png.meta b/MrBigsock/Assets/Tilemaps/Dungeon/Dungeon.png.meta
index 89add8b3..a00350e0 100644
--- a/MrBigsock/Assets/Tilemaps/Dungeon/Dungeon.png.meta
+++ b/MrBigsock/Assets/Tilemaps/Dungeon/Dungeon.png.meta
@@ -113,10 +113,14 @@ TextureImporter:
         width: 16
         height: 16
       alignment: 0
-      pivot: {x: 0, y: 0}
+      pivot: {x: 0.5, y: 0.5}
       border: {x: 0, y: 0, z: 0, w: 0}
       outline: []
-      physicsShape: []
+      physicsShape:
+      - - {x: -8, y: -8}
+        - {x: 8, y: -8}
+        - {x: 8, y: -4}
+        - {x: -8, y: -4}
       tessellationDetail: 0
       bones: []
       spriteID: bc0a1787ed5cb8342bd04f794cfb2a1a
@@ -134,10 +138,14 @@ TextureImporter:
         width: 16
         height: 16
       alignment: 0
-      pivot: {x: 0, y: 0}
+      pivot: {x: 0.5, y: 0.5}
       border: {x: 0, y: 0, z: 0, w: 0}
       outline: []
-      physicsShape: []
+      physicsShape:
+      - - {x: -8, y: -8}
+        - {x: 8, y: -8}
+        - {x: 8, y: -4}
+        - {x: -8, y: -4}
       tessellationDetail: 0
       bones: []
       spriteID: 68e3a54768e5ea045ac1c2dff3cab4e0
@@ -155,10 +163,14 @@ TextureImporter:
         width: 16
         height: 16
       alignment: 0
-      pivot: {x: 0, y: 0}
+      pivot: {x: 0.5, y: 0.5}
       border: {x: 0, y: 0, z: 0, w: 0}
       outline: []
-      physicsShape: []
+      physicsShape:
+      - - {x: -8, y: -8}
+        - {x: 8, y: -8}
+        - {x: 8, y: -4}
+        - {x: -8, y: -4}
       tessellationDetail: 0
       bones: []
       spriteID: f6fab432826c0d046a83e5a950ae3166
@@ -176,7 +188,7 @@ TextureImporter:
         width: 16
         height: 16
       alignment: 0
-      pivot: {x: 0, y: 0}
+      pivot: {x: 0.5, y: 0.5}
       border: {x: 0, y: 0, z: 0, w: 0}
       outline: []
       physicsShape: []
@@ -197,7 +209,7 @@ TextureImporter:
         width: 16
         height: 16
       alignment: 0
-      pivot: {x: 0, y: 0}
+      pivot: {x: 0.5, y: 0.5}
       border: {x: 0, y: 0, z: 0, w: 0}
       outline: []
       physicsShape: []
@@ -218,7 +230,7 @@ TextureImporter:
         width: 16
         height: 16
       alignment: 0
-      pivot: {x: 0, y: 0}
+      pivot: {x: 0.5, y: 0.5}
       border: {x: 0, y: 0, z: 0, w: 0}
       outline: []
       physicsShape: []
@@ -239,7 +251,7 @@ TextureImporter:
         width: 16
         height: 16
       alignment: 0
-      pivot: {x: 0, y: 0}
+      pivot: {x: 0.5, y: 0.5}
       border: {x: 0, y: 0, z: 0, w: 0}
       outline: []
       physicsShape: []
@@ -260,7 +272,7 @@ TextureImporter:
         width: 16
         height: 16
       alignment: 0
-      pivot: {x: 0, y: 0}
+      pivot: {x: 0.5, y: 0.5}
       border: {x: 0, y: 0, z: 0, w: 0}
       outline: []
       physicsShape: []
@@ -281,7 +293,7 @@ TextureImporter:
         width: 16
         height: 16
       alignment: 0
-      pivot: {x: 0, y: 0}
+      pivot: {x: 0.5, y: 0.5}
       border: {x: 0, y: 0, z: 0, w: 0}
       outline: []
       physicsShape: []
@@ -302,7 +314,7 @@ TextureImporter:
         width: 16
         height: 16
       alignment: 0
-      pivot: {x: 0, y: 0}
+      pivot: {x: 0.5, y: 0.5}
       border: {x: 0, y: 0, z: 0, w: 0}
       outline: []
       physicsShape: []
@@ -323,7 +335,7 @@ TextureImporter:
         width: 16
         height: 16
       alignment: 0
-      pivot: {x: 0, y: 0}
+      pivot: {x: 0.5, y: 0.5}
       border: {x: 0, y: 0, z: 0, w: 0}
       outline: []
       physicsShape: []
@@ -344,7 +356,7 @@ TextureImporter:
         width: 16
         height: 16
       alignment: 0
-      pivot: {x: 0, y: 0}
+      pivot: {x: 0.5, y: 0.5}
       border: {x: 0, y: 0, z: 0, w: 0}
       outline: []
       physicsShape: []
@@ -365,7 +377,7 @@ TextureImporter:
         width: 16
         height: 16
       alignment: 0
-      pivot: {x: 0, y: 0}
+      pivot: {x: 0.5, y: 0.5}
       border: {x: 0, y: 0, z: 0, w: 0}
       outline: []
       physicsShape: []
@@ -386,7 +398,7 @@ TextureImporter:
         width: 16
         height: 16
       alignment: 0
-      pivot: {x: 0, y: 0}
+      pivot: {x: 0.5, y: 0.5}
       border: {x: 0, y: 0, z: 0, w: 0}
       outline: []
       physicsShape: []
@@ -407,7 +419,7 @@ TextureImporter:
         width: 16
         height: 16
       alignment: 0
-      pivot: {x: 0, y: 0}
+      pivot: {x: 0.5, y: 0.5}
       border: {x: 0, y: 0, z: 0, w: 0}
       outline: []
       physicsShape: []
@@ -428,10 +440,14 @@ TextureImporter:
         width: 16
         height: 16
       alignment: 0
-      pivot: {x: 0, y: 0}
+      pivot: {x: 0.5, y: 0.5}
       border: {x: 0, y: 0, z: 0, w: 0}
       outline: []
-      physicsShape: []
+      physicsShape:
+      - - {x: -8, y: 8}
+        - {x: -8, y: -1}
+        - {x: 8, y: -1}
+        - {x: 8, y: 8}
       tessellationDetail: 0
       bones: []
       spriteID: a4239a45296b80f4a86faf11e0e5828c
@@ -449,10 +465,14 @@ TextureImporter:
         width: 16
         height: 16
       alignment: 0
-      pivot: {x: 0, y: 0}
+      pivot: {x: 0.5, y: 0.5}
       border: {x: 0, y: 0, z: 0, w: 0}
       outline: []
-      physicsShape: []
+      physicsShape:
+      - - {x: -8, y: 8}
+        - {x: -8, y: -1}
+        - {x: 8, y: -1}
+        - {x: 8, y: 8}
       tessellationDetail: 0
       bones: []
       spriteID: 480dec6ec0684a348a714326de31b451
@@ -470,10 +490,14 @@ TextureImporter:
         width: 16
         height: 16
       alignment: 0
-      pivot: {x: 0, y: 0}
+      pivot: {x: 0.5, y: 0.5}
       border: {x: 0, y: 0, z: 0, w: 0}
       outline: []
-      physicsShape: []
+      physicsShape:
+      - - {x: -8, y: 8}
+        - {x: -8, y: -1}
+        - {x: 8, y: -1}
+        - {x: 8, y: 8}
       tessellationDetail: 0
       bones: []
       spriteID: 495b21167f6b3fd4d922579972f1b6ab
@@ -491,7 +515,7 @@ TextureImporter:
         width: 16
         height: 16
       alignment: 0
-      pivot: {x: 0, y: 0}
+      pivot: {x: 0.5, y: 0.5}
       border: {x: 0, y: 0, z: 0, w: 0}
       outline: []
       physicsShape: []
@@ -512,7 +536,7 @@ TextureImporter:
         width: 16
         height: 16
       alignment: 0
-      pivot: {x: 0, y: 0}
+      pivot: {x: 0.5, y: 0.5}
       border: {x: 0, y: 0, z: 0, w: 0}
       outline: []
       physicsShape: []
@@ -533,7 +557,7 @@ TextureImporter:
         width: 16
         height: 16
       alignment: 0
-      pivot: {x: 0, y: 0}
+      pivot: {x: 0.5, y: 0.5}
       border: {x: 0, y: 0, z: 0, w: 0}
       outline: []
       physicsShape: []
@@ -554,7 +578,7 @@ TextureImporter:
         width: 16
         height: 16
       alignment: 0
-      pivot: {x: 0, y: 0}
+      pivot: {x: 0.5, y: 0.5}
       border: {x: 0, y: 0, z: 0, w: 0}
       outline: []
       physicsShape: []
@@ -575,7 +599,7 @@ TextureImporter:
         width: 16
         height: 16
       alignment: 0
-      pivot: {x: 0, y: 0}
+      pivot: {x: 0.5, y: 0.5}
       border: {x: 0, y: 0, z: 0, w: 0}
       outline: []
       physicsShape: []
@@ -596,7 +620,7 @@ TextureImporter:
         width: 16
         height: 16
       alignment: 0
-      pivot: {x: 0, y: 0}
+      pivot: {x: 0.5, y: 0.5}
       border: {x: 0, y: 0, z: 0, w: 0}
       outline: []
       physicsShape: []
@@ -617,7 +641,7 @@ TextureImporter:
         width: 16
         height: 16
       alignment: 0
-      pivot: {x: 0, y: 0}
+      pivot: {x: 0.5, y: 0.5}
       border: {x: 0, y: 0, z: 0, w: 0}
       outline: []
       physicsShape: []
@@ -638,7 +662,7 @@ TextureImporter:
         width: 16
         height: 16
       alignment: 0
-      pivot: {x: 0, y: 0}
+      pivot: {x: 0.5, y: 0.5}
       border: {x: 0, y: 0, z: 0, w: 0}
       outline: []
       physicsShape: []
@@ -659,7 +683,7 @@ TextureImporter:
         width: 16
         height: 16
       alignment: 0
-      pivot: {x: 0, y: 0}
+      pivot: {x: 0.5, y: 0.5}
       border: {x: 0, y: 0, z: 0, w: 0}
       outline: []
       physicsShape: []
@@ -680,10 +704,14 @@ TextureImporter:
         width: 16
         height: 16
       alignment: 0
-      pivot: {x: 0, y: 0}
+      pivot: {x: 0.5, y: 0.5}
       border: {x: 0, y: 0, z: 0, w: 0}
       outline: []
-      physicsShape: []
+      physicsShape:
+      - - {x: -8, y: 8}
+        - {x: -8, y: -1}
+        - {x: 8, y: -1}
+        - {x: 8, y: 8}
       tessellationDetail: 0
       bones: []
       spriteID: c79bbfe12c65fb24696d2fa62468b4be
@@ -701,10 +729,14 @@ TextureImporter:
         width: 16
         height: 16
       alignment: 0
-      pivot: {x: 0, y: 0}
+      pivot: {x: 0.5, y: 0.5}
       border: {x: 0, y: 0, z: 0, w: 0}
       outline: []
-      physicsShape: []
+      physicsShape:
+      - - {x: -8, y: 8}
+        - {x: -8, y: -1}
+        - {x: 8, y: -1}
+        - {x: 8, y: 8}
       tessellationDetail: 0
       bones: []
       spriteID: cfaa11c808708be41a8227a53c94c7bb
@@ -722,10 +754,14 @@ TextureImporter:
         width: 16
         height: 16
       alignment: 0
-      pivot: {x: 0, y: 0}
+      pivot: {x: 0.5, y: 0.5}
       border: {x: 0, y: 0, z: 0, w: 0}
       outline: []
-      physicsShape: []
+      physicsShape:
+      - - {x: -8, y: 8}
+        - {x: -8, y: -1}
+        - {x: 8, y: -1}
+        - {x: 8, y: 8}
       tessellationDetail: 0
       bones: []
       spriteID: 4d8069dc6a9194144b8a749b36bf9362
@@ -743,7 +779,7 @@ TextureImporter:
         width: 16
         height: 16
       alignment: 0
-      pivot: {x: 0, y: 0}
+      pivot: {x: 0.5, y: 0.5}
       border: {x: 0, y: 0, z: 0, w: 0}
       outline: []
       physicsShape: []
@@ -764,7 +800,7 @@ TextureImporter:
         width: 16
         height: 16
       alignment: 0
-      pivot: {x: 0, y: 0}
+      pivot: {x: 0.5, y: 0.5}
       border: {x: 0, y: 0, z: 0, w: 0}
       outline: []
       physicsShape: []
@@ -785,7 +821,7 @@ TextureImporter:
         width: 16
         height: 16
       alignment: 0
-      pivot: {x: 0, y: 0}
+      pivot: {x: 0.5, y: 0.5}
       border: {x: 0, y: 0, z: 0, w: 0}
       outline: []
       physicsShape: []
@@ -806,7 +842,7 @@ TextureImporter:
         width: 16
         height: 16
       alignment: 0
-      pivot: {x: 0, y: 0}
+      pivot: {x: 0.5, y: 0.5}
       border: {x: 0, y: 0, z: 0, w: 0}
       outline: []
       physicsShape: []
@@ -827,7 +863,7 @@ TextureImporter:
         width: 16
         height: 16
       alignment: 0
-      pivot: {x: 0, y: 0}
+      pivot: {x: 0.5, y: 0.5}
       border: {x: 0, y: 0, z: 0, w: 0}
       outline: []
       physicsShape: []
@@ -848,7 +884,7 @@ TextureImporter:
         width: 16
         height: 16
       alignment: 0
-      pivot: {x: 0, y: 0}
+      pivot: {x: 0.5, y: 0.5}
       border: {x: 0, y: 0, z: 0, w: 0}
       outline: []
       physicsShape: []
@@ -869,7 +905,7 @@ TextureImporter:
         width: 16
         height: 16
       alignment: 0
-      pivot: {x: 0, y: 0}
+      pivot: {x: 0.5, y: 0.5}
       border: {x: 0, y: 0, z: 0, w: 0}
       outline: []
       physicsShape: []
@@ -890,7 +926,7 @@ TextureImporter:
         width: 16
         height: 16
       alignment: 0
-      pivot: {x: 0, y: 0}
+      pivot: {x: 0.5, y: 0.5}
       border: {x: 0, y: 0, z: 0, w: 0}
       outline: []
       physicsShape: []
@@ -911,7 +947,7 @@ TextureImporter:
         width: 16
         height: 16
       alignment: 0
-      pivot: {x: 0, y: 0}
+      pivot: {x: 0.5, y: 0.5}
       border: {x: 0, y: 0, z: 0, w: 0}
       outline: []
       physicsShape: []
@@ -932,7 +968,7 @@ TextureImporter:
         width: 16
         height: 16
       alignment: 0
-      pivot: {x: 0, y: 0}
+      pivot: {x: 0.5, y: 0.5}
       border: {x: 0, y: 0, z: 0, w: 0}
       outline: []
       physicsShape: []
@@ -953,7 +989,7 @@ TextureImporter:
         width: 16
         height: 16
       alignment: 0
-      pivot: {x: 0, y: 0}
+      pivot: {x: 0.5, y: 0.5}
       border: {x: 0, y: 0, z: 0, w: 0}
       outline: []
       physicsShape: []
@@ -974,7 +1010,7 @@ TextureImporter:
         width: 16
         height: 16
       alignment: 0
-      pivot: {x: 0, y: 0}
+      pivot: {x: 0.5, y: 0.5}
       border: {x: 0, y: 0, z: 0, w: 0}
       outline: []
       physicsShape: []
@@ -995,10 +1031,14 @@ TextureImporter:
         width: 16
         height: 16
       alignment: 0
-      pivot: {x: 0, y: 0}
+      pivot: {x: 0.5, y: 0.5}
       border: {x: 0, y: 0, z: 0, w: 0}
       outline: []
-      physicsShape: []
+      physicsShape:
+      - - {x: 3, y: -4}
+        - {x: 3, y: -8}
+        - {x: 8, y: -8}
+        - {x: 8, y: -4}
       tessellationDetail: 0
       bones: []
       spriteID: 302f114cdf21bcf41bb067a33eac78ad
@@ -1016,10 +1056,14 @@ TextureImporter:
         width: 16
         height: 16
       alignment: 0
-      pivot: {x: 0, y: 0}
+      pivot: {x: 0.5, y: 0.5}
       border: {x: 0, y: 0, z: 0, w: 0}
       outline: []
-      physicsShape: []
+      physicsShape:
+      - - {x: -8, y: -8}
+        - {x: -3, y: -8}
+        - {x: -3, y: -4}
+        - {x: -8, y: -4}
       tessellationDetail: 0
       bones: []
       spriteID: f76ba334a7a6333449e2755ccdcea25f
@@ -1037,10 +1081,14 @@ TextureImporter:
         width: 16
         height: 16
       alignment: 0
-      pivot: {x: 0, y: 0}
+      pivot: {x: 0.5, y: 0.5}
       border: {x: 0, y: 0, z: 0, w: 0}
       outline: []
-      physicsShape: []
+      physicsShape:
+      - - {x: -8, y: -8}
+        - {x: 8, y: -8}
+        - {x: 8, y: -4}
+        - {x: -8, y: -4}
       tessellationDetail: 0
       bones: []
       spriteID: 9881fa91a8e725240b67935319713c09
@@ -1058,10 +1106,14 @@ TextureImporter:
         width: 16
         height: 16
       alignment: 0
-      pivot: {x: 0, y: 0}
+      pivot: {x: 0.5, y: 0.5}
       border: {x: 0, y: 0, z: 0, w: 0}
       outline: []
-      physicsShape: []
+      physicsShape:
+      - - {x: -8, y: -8}
+        - {x: 8, y: -8}
+        - {x: 8, y: -4}
+        - {x: -8, y: -4}
       tessellationDetail: 0
       bones: []
       spriteID: f6d97ddf698b1ac47b708682454d08a5
@@ -1079,10 +1131,14 @@ TextureImporter:
         width: 16
         height: 16
       alignment: 0
-      pivot: {x: 0, y: 0}
+      pivot: {x: 0.5, y: 0.5}
       border: {x: 0, y: 0, z: 0, w: 0}
       outline: []
-      physicsShape: []
+      physicsShape:
+      - - {x: -8, y: 8}
+        - {x: -4, y: 4}
+        - {x: 4, y: 4}
+        - {x: 8, y: 8}
       tessellationDetail: 0
       bones: []
       spriteID: 808eea3cd265fc84bbe544158a5dad0a
@@ -1100,10 +1156,14 @@ TextureImporter:
         width: 16
         height: 16
       alignment: 0
-      pivot: {x: 0, y: 0}
+      pivot: {x: 0.5, y: 0.5}
       border: {x: 0, y: 0, z: 0, w: 0}
       outline: []
-      physicsShape: []
+      physicsShape:
+      - - {x: -8, y: 8}
+        - {x: -3, y: 4}
+        - {x: 3, y: 4}
+        - {x: 8, y: 8}
       tessellationDetail: 0
       bones: []
       spriteID: 730499fc0651a2347ab744a7b9eca7b8
@@ -1121,10 +1181,14 @@ TextureImporter:
         width: 16
         height: 16
       alignment: 0
-      pivot: {x: 0, y: 0}
+      pivot: {x: 0.5, y: 0.5}
       border: {x: 0, y: 0, z: 0, w: 0}
       outline: []
-      physicsShape: []
+      physicsShape:
+      - - {x: 3, y: 8}
+        - {x: 3, y: -8}
+        - {x: 8, y: -8}
+        - {x: 8, y: 8}
       tessellationDetail: 0
       bones: []
       spriteID: a563291a358926b45b4d66ae59d25fca
@@ -1142,10 +1206,14 @@ TextureImporter:
         width: 16
         height: 16
       alignment: 0
-      pivot: {x: 0, y: 0}
+      pivot: {x: 0.5, y: 0.5}
       border: {x: 0, y: 0, z: 0, w: 0}
       outline: []
-      physicsShape: []
+      physicsShape:
+      - - {x: -3, y: -8}
+        - {x: -3, y: 8}
+        - {x: -8, y: 8}
+        - {x: -8, y: -8}
       tessellationDetail: 0
       bones: []
       spriteID: 1e30bb0edb68627499dcd04ef9884eac
@@ -1163,7 +1231,7 @@ TextureImporter:
         width: 16
         height: 16
       alignment: 0
-      pivot: {x: 0, y: 0}
+      pivot: {x: 0.5, y: 0.5}
       border: {x: 0, y: 0, z: 0, w: 0}
       outline: []
       physicsShape: []
@@ -1184,7 +1252,7 @@ TextureImporter:
         width: 16
         height: 16
       alignment: 0
-      pivot: {x: 0, y: 0}
+      pivot: {x: 0.5, y: 0.5}
       border: {x: 0, y: 0, z: 0, w: 0}
       outline: []
       physicsShape: []
@@ -1205,10 +1273,16 @@ TextureImporter:
         width: 16
         height: 16
       alignment: 0
-      pivot: {x: 0, y: 0}
+      pivot: {x: 0.5, y: 0.5}
       border: {x: 0, y: 0, z: 0, w: 0}
       outline: []
-      physicsShape: []
+      physicsShape:
+      - - {x: 3, y: 8}
+        - {x: 3, y: -4}
+        - {x: -8, y: -4}
+        - {x: -8, y: -8}
+        - {x: 8, y: -8}
+        - {x: 8, y: 8}
       tessellationDetail: 0
       bones: []
       spriteID: 052d5d89c450f9a42878932054a50c19
@@ -1226,10 +1300,16 @@ TextureImporter:
         width: 16
         height: 16
       alignment: 0
-      pivot: {x: 0, y: 0}
+      pivot: {x: 0.5, y: 0.5}
       border: {x: 0, y: 0, z: 0, w: 0}
       outline: []
-      physicsShape: []
+      physicsShape:
+      - - {x: -8, y: 8}
+        - {x: -8, y: -8}
+        - {x: 8, y: -8}
+        - {x: 8, y: -4}
+        - {x: -3, y: -4}
+        - {x: -3, y: 8}
       tessellationDetail: 0
       bones: []
       spriteID: 3fea9c9692a4fc24e9a31a9ba5056ba0
@@ -1247,7 +1327,7 @@ TextureImporter:
         width: 16
         height: 16
       alignment: 0
-      pivot: {x: 0, y: 0}
+      pivot: {x: 0.5, y: 0.5}
       border: {x: 0, y: 0, z: 0, w: 0}
       outline: []
       physicsShape: []
@@ -1268,10 +1348,14 @@ TextureImporter:
         width: 16
         height: 16
       alignment: 0
-      pivot: {x: 0, y: 0}
+      pivot: {x: 0.5, y: 0.5}
       border: {x: 0, y: 0, z: 0, w: 0}
       outline: []
-      physicsShape: []
+      physicsShape:
+      - - {x: 3, y: 8}
+        - {x: 3, y: -8}
+        - {x: 8, y: -8}
+        - {x: 8, y: 8}
       tessellationDetail: 0
       bones: []
       spriteID: d442e7bcd1f277e44a247494fa851675
@@ -1289,10 +1373,14 @@ TextureImporter:
         width: 16
         height: 16
       alignment: 0
-      pivot: {x: 0, y: 0}
+      pivot: {x: 0.5, y: 0.5}
       border: {x: 0, y: 0, z: 0, w: 0}
       outline: []
-      physicsShape: []
+      physicsShape:
+      - - {x: -3, y: -8}
+        - {x: -3, y: 8}
+        - {x: -8, y: 8}
+        - {x: -8, y: -8}
       tessellationDetail: 0
       bones: []
       spriteID: 15407da73b9c97443bc11a04287e0180
@@ -1310,10 +1398,16 @@ TextureImporter:
         width: 16
         height: 16
       alignment: 0
-      pivot: {x: 0, y: 0}
+      pivot: {x: 0.5, y: 0.5}
       border: {x: 0, y: 0, z: 0, w: 0}
       outline: []
-      physicsShape: []
+      physicsShape:
+      - - {x: -8, y: 8}
+        - {x: -8, y: -8}
+        - {x: 8, y: -8}
+        - {x: 8, y: -4}
+        - {x: -3, y: -4}
+        - {x: -3, y: 8}
       tessellationDetail: 0
       bones: []
       spriteID: fd087ee39935470409472dd50b9f7410
@@ -1331,10 +1425,16 @@ TextureImporter:
         width: 16
         height: 16
       alignment: 0
-      pivot: {x: 0, y: 0}
+      pivot: {x: 0.5, y: 0.5}
       border: {x: 0, y: 0, z: 0, w: 0}
       outline: []
-      physicsShape: []
+      physicsShape:
+      - - {x: 3, y: 8}
+        - {x: 3, y: -4}
+        - {x: -8, y: -4}
+        - {x: -8, y: -8}
+        - {x: 8, y: -8}
+        - {x: 8, y: 8}
       tessellationDetail: 0
       bones: []
       spriteID: b255fcab2b253ef46b7d5bd54074536b
@@ -1352,7 +1452,7 @@ TextureImporter:
         width: 16
         height: 16
       alignment: 0
-      pivot: {x: 0, y: 0}
+      pivot: {x: 0.5, y: 0.5}
       border: {x: 0, y: 0, z: 0, w: 0}
       outline: []
       physicsShape: []
@@ -1373,10 +1473,14 @@ TextureImporter:
         width: 16
         height: 16
       alignment: 0
-      pivot: {x: 0, y: 0}
+      pivot: {x: 0.5, y: 0.5}
       border: {x: 0, y: 0, z: 0, w: 0}
       outline: []
-      physicsShape: []
+      physicsShape:
+      - - {x: -8, y: 8}
+        - {x: -8, y: -8}
+        - {x: 8, y: -8}
+        - {x: 8, y: 8}
       tessellationDetail: 0
       bones: []
       spriteID: 7a477f36df9ca9a4e9885ae8d66eac01
@@ -1394,7 +1498,7 @@ TextureImporter:
         width: 16
         height: 16
       alignment: 0
-      pivot: {x: 0, y: 0}
+      pivot: {x: 0.5, y: 0.5}
       border: {x: 0, y: 0, z: 0, w: 0}
       outline: []
       physicsShape: []
@@ -1415,7 +1519,7 @@ TextureImporter:
         width: 16
         height: 16
       alignment: 0
-      pivot: {x: 0, y: 0}
+      pivot: {x: 0.5, y: 0.5}
       border: {x: 0, y: 0, z: 0, w: 0}
       outline: []
       physicsShape: []
@@ -1436,7 +1540,7 @@ TextureImporter:
         width: 16
         height: 16
       alignment: 0
-      pivot: {x: 0, y: 0}
+      pivot: {x: 0.5, y: 0.5}
       border: {x: 0, y: 0, z: 0, w: 0}
       outline: []
       physicsShape: []
@@ -1457,10 +1561,14 @@ TextureImporter:
         width: 16
         height: 16
       alignment: 0
-      pivot: {x: 0, y: 0}
+      pivot: {x: 0.5, y: 0.5}
       border: {x: 0, y: 0, z: 0, w: 0}
       outline: []
-      physicsShape: []
+      physicsShape:
+      - - {x: -8, y: -8}
+        - {x: 8, y: -8}
+        - {x: 8, y: -4}
+        - {x: -8, y: -4}
       tessellationDetail: 0
       bones: []
       spriteID: f89aaff1ea7ccd844a0e0ba5603af8d0
@@ -1478,10 +1586,14 @@ TextureImporter:
         width: 16
         height: 16
       alignment: 0
-      pivot: {x: 0, y: 0}
+      pivot: {x: 0.5, y: 0.5}
       border: {x: 0, y: 0, z: 0, w: 0}
       outline: []
-      physicsShape: []
+      physicsShape:
+      - - {x: -8, y: -8}
+        - {x: 8, y: -8}
+        - {x: 8, y: -4}
+        - {x: -8, y: -4}
       tessellationDetail: 0
       bones: []
       spriteID: 4080ed98fd7a6354aaeb0dbc74da61d6
@@ -1499,7 +1611,7 @@ TextureImporter:
         width: 16
         height: 16
       alignment: 0
-      pivot: {x: 0, y: 0}
+      pivot: {x: 0.5, y: 0.5}
       border: {x: 0, y: 0, z: 0, w: 0}
       outline: []
       physicsShape: []
@@ -1520,7 +1632,7 @@ TextureImporter:
         width: 16
         height: 16
       alignment: 0
-      pivot: {x: 0, y: 0}
+      pivot: {x: 0.5, y: 0.5}
       border: {x: 0, y: 0, z: 0, w: 0}
       outline: []
       physicsShape: []
@@ -1541,7 +1653,7 @@ TextureImporter:
         width: 16
         height: 16
       alignment: 0
-      pivot: {x: 0, y: 0}
+      pivot: {x: 0.5, y: 0.5}
       border: {x: 0, y: 0, z: 0, w: 0}
       outline: []
       physicsShape: []
@@ -1562,7 +1674,7 @@ TextureImporter:
         width: 16
         height: 16
       alignment: 0
-      pivot: {x: 0, y: 0}
+      pivot: {x: 0.5, y: 0.5}
       border: {x: 0, y: 0, z: 0, w: 0}
       outline: []
       physicsShape: []
@@ -1583,7 +1695,7 @@ TextureImporter:
         width: 16
         height: 16
       alignment: 0
-      pivot: {x: 0, y: 0}
+      pivot: {x: 0.5, y: 0.5}
       border: {x: 0, y: 0, z: 0, w: 0}
       outline: []
       physicsShape: []
@@ -1604,7 +1716,7 @@ TextureImporter:
         width: 16
         height: 16
       alignment: 0
-      pivot: {x: 0, y: 0}
+      pivot: {x: 0.5, y: 0.5}
       border: {x: 0, y: 0, z: 0, w: 0}
       outline: []
       physicsShape: []
@@ -1625,7 +1737,7 @@ TextureImporter:
         width: 16
         height: 16
       alignment: 0
-      pivot: {x: 0, y: 0}
+      pivot: {x: 0.5, y: 0.5}
       border: {x: 0, y: 0, z: 0, w: 0}
       outline: []
       physicsShape: []
@@ -1646,7 +1758,7 @@ TextureImporter:
         width: 16
         height: 16
       alignment: 0
-      pivot: {x: 0, y: 0}
+      pivot: {x: 0.5, y: 0.5}
       border: {x: 0, y: 0, z: 0, w: 0}
       outline: []
       physicsShape: []
@@ -1667,7 +1779,7 @@ TextureImporter:
         width: 16
         height: 16
       alignment: 0
-      pivot: {x: 0, y: 0}
+      pivot: {x: 0.5, y: 0.5}
       border: {x: 0, y: 0, z: 0, w: 0}
       outline: []
       physicsShape: []
@@ -1688,7 +1800,7 @@ TextureImporter:
         width: 16
         height: 16
       alignment: 0
-      pivot: {x: 0, y: 0}
+      pivot: {x: 0.5, y: 0.5}
       border: {x: 0, y: 0, z: 0, w: 0}
       outline: []
       physicsShape: []
@@ -1709,7 +1821,7 @@ TextureImporter:
         width: 16
         height: 16
       alignment: 0
-      pivot: {x: 0, y: 0}
+      pivot: {x: 0.5, y: 0.5}
       border: {x: 0, y: 0, z: 0, w: 0}
       outline: []
       physicsShape: []
@@ -1730,7 +1842,7 @@ TextureImporter:
         width: 16
         height: 16
       alignment: 0
-      pivot: {x: 0, y: 0}
+      pivot: {x: 0.5, y: 0.5}
       border: {x: 0, y: 0, z: 0, w: 0}
       outline: []
       physicsShape: []
@@ -1751,7 +1863,7 @@ TextureImporter:
         width: 16
         height: 16
       alignment: 0
-      pivot: {x: 0, y: 0}
+      pivot: {x: 0.5, y: 0.5}
       border: {x: 0, y: 0, z: 0, w: 0}
       outline: []
       physicsShape: []
@@ -1772,10 +1884,14 @@ TextureImporter:
         width: 16
         height: 16
       alignment: 0
-      pivot: {x: 0, y: 0}
+      pivot: {x: 0.5, y: 0.5}
       border: {x: 0, y: 0, z: 0, w: 0}
       outline: []
-      physicsShape: []
+      physicsShape:
+      - - {x: -8, y: -4}
+        - {x: -8, y: -8}
+        - {x: 8, y: -8}
+        - {x: 8, y: -4}
       tessellationDetail: 0
       bones: []
       spriteID: e8753b2ce8551154dac73185900a57fa
@@ -1793,10 +1909,14 @@ TextureImporter:
         width: 16
         height: 16
       alignment: 0
-      pivot: {x: 0, y: 0}
+      pivot: {x: 0.5, y: 0.5}
       border: {x: 0, y: 0, z: 0, w: 0}
       outline: []
-      physicsShape: []
+      physicsShape:
+      - - {x: -8, y: -4}
+        - {x: -8, y: -8}
+        - {x: 8, y: -8}
+        - {x: 8, y: -4}
       tessellationDetail: 0
       bones: []
       spriteID: 3fb64f1629d468a45a69f5f2d03e236f
@@ -1814,10 +1934,14 @@ TextureImporter:
         width: 16
         height: 16
       alignment: 0
-      pivot: {x: 0, y: 0}
+      pivot: {x: 0.5, y: 0.5}
       border: {x: 0, y: 0, z: 0, w: 0}
       outline: []
-      physicsShape: []
+      physicsShape:
+      - - {x: -8, y: -4}
+        - {x: -8, y: -8}
+        - {x: 8, y: -8}
+        - {x: 8, y: -4}
       tessellationDetail: 0
       bones: []
       spriteID: a8d64ec0744f3b64cac5cea0c22b25ac
@@ -1835,10 +1959,14 @@ TextureImporter:
         width: 16
         height: 16
       alignment: 0
-      pivot: {x: 0, y: 0}
+      pivot: {x: 0.5, y: 0.5}
       border: {x: 0, y: 0, z: 0, w: 0}
       outline: []
-      physicsShape: []
+      physicsShape:
+      - - {x: -8, y: -4}
+        - {x: -8, y: -8}
+        - {x: 8, y: -8}
+        - {x: 8, y: -4}
       tessellationDetail: 0
       bones: []
       spriteID: 1dd3af11184c04345ae15d2626c3fe5d
@@ -1856,10 +1984,14 @@ TextureImporter:
         width: 16
         height: 16
       alignment: 0
-      pivot: {x: 0, y: 0}
+      pivot: {x: 0.5, y: 0.5}
       border: {x: 0, y: 0, z: 0, w: 0}
       outline: []
-      physicsShape: []
+      physicsShape:
+      - - {x: -8, y: -4}
+        - {x: -8, y: -8}
+        - {x: 8, y: -8}
+        - {x: 8, y: -4}
       tessellationDetail: 0
       bones: []
       spriteID: 21233572fdc354640a8bd268ea347480
@@ -1877,10 +2009,14 @@ TextureImporter:
         width: 16
         height: 16
       alignment: 0
-      pivot: {x: 0, y: 0}
+      pivot: {x: 0.5, y: 0.5}
       border: {x: 0, y: 0, z: 0, w: 0}
       outline: []
-      physicsShape: []
+      physicsShape:
+      - - {x: -8, y: -4}
+        - {x: -8, y: -8}
+        - {x: 8, y: -8}
+        - {x: 8, y: -4}
       tessellationDetail: 0
       bones: []
       spriteID: 4f777125b847a264b98de302daca646e
@@ -1898,7 +2034,7 @@ TextureImporter:
         width: 16
         height: 16
       alignment: 0
-      pivot: {x: 0, y: 0}
+      pivot: {x: 0.5, y: 0.5}
       border: {x: 0, y: 0, z: 0, w: 0}
       outline: []
       physicsShape: []
@@ -1919,7 +2055,7 @@ TextureImporter:
         width: 16
         height: 16
       alignment: 0
-      pivot: {x: 0, y: 0}
+      pivot: {x: 0.5, y: 0.5}
       border: {x: 0, y: 0, z: 0, w: 0}
       outline: []
       physicsShape: []
@@ -1940,7 +2076,7 @@ TextureImporter:
         width: 16
         height: 16
       alignment: 0
-      pivot: {x: 0, y: 0}
+      pivot: {x: 0.5, y: 0.5}
       border: {x: 0, y: 0, z: 0, w: 0}
       outline: []
       physicsShape: []
@@ -1961,7 +2097,7 @@ TextureImporter:
         width: 16
         height: 16
       alignment: 0
-      pivot: {x: 0, y: 0}
+      pivot: {x: 0.5, y: 0.5}
       border: {x: 0, y: 0, z: 0, w: 0}
       outline: []
       physicsShape: []
@@ -1982,7 +2118,7 @@ TextureImporter:
         width: 16
         height: 16
       alignment: 0
-      pivot: {x: 0, y: 0}
+      pivot: {x: 0.5, y: 0.5}
       border: {x: 0, y: 0, z: 0, w: 0}
       outline: []
       physicsShape: []
@@ -2003,7 +2139,7 @@ TextureImporter:
         width: 16
         height: 16
       alignment: 0
-      pivot: {x: 0, y: 0}
+      pivot: {x: 0.5, y: 0.5}
       border: {x: 0, y: 0, z: 0, w: 0}
       outline: []
       physicsShape: []
diff --git a/MrBigsock/Assets/Tilemaps/Dungeon/Dungeon_77.asset b/MrBigsock/Assets/Tilemaps/Dungeon/Dungeon_77.asset
index 51d53638..8c87b285 100644
--- a/MrBigsock/Assets/Tilemaps/Dungeon/Dungeon_77.asset
+++ b/MrBigsock/Assets/Tilemaps/Dungeon/Dungeon_77.asset
@@ -33,4 +33,4 @@ MonoBehaviour:
     e33: 1
   m_InstancedGameObject: {fileID: 0}
   m_Flags: 1
-  m_ColliderType: 1
+  m_ColliderType: 0
diff --git a/MrBigsock/Assets/Tilemaps/Dungeon/Dungeon_78.asset b/MrBigsock/Assets/Tilemaps/Dungeon/Dungeon_78.asset
index 8ef55b27..42c696ce 100644
--- a/MrBigsock/Assets/Tilemaps/Dungeon/Dungeon_78.asset
+++ b/MrBigsock/Assets/Tilemaps/Dungeon/Dungeon_78.asset
@@ -33,4 +33,4 @@ MonoBehaviour:
     e33: 1
   m_InstancedGameObject: {fileID: 0}
   m_Flags: 1
-  m_ColliderType: 1
+  m_ColliderType: 0
diff --git a/MrBigsock/Packages/packages-lock.json b/MrBigsock/Packages/packages-lock.json
index f7cc4843..3b65785c 100644
--- a/MrBigsock/Packages/packages-lock.json
+++ b/MrBigsock/Packages/packages-lock.json
@@ -1,11 +1,11 @@
 {
   "dependencies": {
     "com.unity.2d.animation": {
-      "version": "7.0.7",
+      "version": "7.0.6",
       "depth": 1,
       "source": "registry",
       "dependencies": {
-        "com.unity.2d.common": "6.0.4",
+        "com.unity.2d.common": "6.0.3",
         "com.unity.2d.sprite": "1.0.0",
         "com.unity.modules.animation": "1.0.0",
         "com.unity.modules.uielements": "1.0.0"
@@ -13,7 +13,7 @@
       "url": "https://packages.unity.com"
     },
     "com.unity.2d.common": {
-      "version": "6.0.4",
+      "version": "6.0.3",
       "depth": 2,
       "source": "registry",
       "dependencies": {
@@ -39,12 +39,12 @@
       "url": "https://packages.unity.com"
     },
     "com.unity.2d.psdimporter": {
-      "version": "6.0.5",
+      "version": "6.0.4",
       "depth": 1,
       "source": "registry",
       "dependencies": {
-        "com.unity.2d.animation": "7.0.7",
-        "com.unity.2d.common": "6.0.4",
+        "com.unity.2d.animation": "7.0.6",
+        "com.unity.2d.common": "6.0.3",
         "com.unity.2d.sprite": "1.0.0"
       },
       "url": "https://packages.unity.com"
@@ -56,12 +56,12 @@
       "dependencies": {}
     },
     "com.unity.2d.spriteshape": {
-      "version": "7.0.6",
+      "version": "7.0.5",
       "depth": 1,
       "source": "registry",
       "dependencies": {
         "com.unity.mathematics": "1.1.0",
-        "com.unity.2d.common": "6.0.4",
+        "com.unity.2d.common": "6.0.3",
         "com.unity.2d.path": "5.0.2",
         "com.unity.modules.physics2d": "1.0.0"
       },
@@ -123,11 +123,11 @@
       "depth": 0,
       "source": "builtin",
       "dependencies": {
-        "com.unity.2d.animation": "7.0.7",
+        "com.unity.2d.animation": "7.0.6",
         "com.unity.2d.pixel-perfect": "5.0.1",
-        "com.unity.2d.psdimporter": "6.0.5",
+        "com.unity.2d.psdimporter": "6.0.4",
         "com.unity.2d.sprite": "1.0.0",
-        "com.unity.2d.spriteshape": "7.0.6",
+        "com.unity.2d.spriteshape": "7.0.5",
         "com.unity.2d.tilemap": "1.0.0",
         "com.unity.2d.tilemap.extras": "2.2.3"
       }
diff --git a/MrBigsock/ProjectSettings/ProjectVersion.txt b/MrBigsock/ProjectSettings/ProjectVersion.txt
index 1f883d75..8d9054dc 100644
--- a/MrBigsock/ProjectSettings/ProjectVersion.txt
+++ b/MrBigsock/ProjectSettings/ProjectVersion.txt
@@ -1,2 +1,2 @@
-m_EditorVersion: 2021.3.10f1
-m_EditorVersionWithRevision: 2021.3.10f1 (1c7d0df0160b)
+m_EditorVersion: 2021.3.9f1
+m_EditorVersionWithRevision: 2021.3.9f1 (ad3870b89536)
diff --git a/MrBigsock/ProjectSettings/TagManager.asset b/MrBigsock/ProjectSettings/TagManager.asset
index 31a12849..7ae2110e 100644
--- a/MrBigsock/ProjectSettings/TagManager.asset
+++ b/MrBigsock/ProjectSettings/TagManager.asset
@@ -11,6 +11,7 @@ TagManager:
   - 4
   - 5
   - Boss
+  - Chest
   layers:
   - Default
   - TransparentFX
-- 
GitLab