diff --git a/prefabs/furniture/bed.tscn b/prefabs/furniture/bed.tscn new file mode 100644 index 0000000..0224e20 --- /dev/null +++ b/prefabs/furniture/bed.tscn @@ -0,0 +1,19 @@ +[gd_scene load_steps=3 format=3 uid="uid://b2nngdg27wccf"] + +[ext_resource type="Texture2D" uid="uid://d2gfgemk5bxob" path="res://sprites/furniture/bed1.png" id="1_ivgu6"] + +[sub_resource type="RectangleShape2D" id="RectangleShape2D_hb34l"] +size = Vector2(32, 32) + +[node name="bed" type="Node2D"] +y_sort_enabled = true + +[node name="Sprite2D" type="Sprite2D" parent="."] +y_sort_enabled = true +texture = ExtResource("1_ivgu6") + +[node name="StaticBody2D" type="StaticBody2D" parent="."] + +[node name="CollisionShape2D" type="CollisionShape2D" parent="StaticBody2D"] +position = Vector2(0, 8) +shape = SubResource("RectangleShape2D_hb34l") diff --git a/prefabs/furniture/book.tscn b/prefabs/furniture/book.tscn new file mode 100644 index 0000000..9177140 --- /dev/null +++ b/prefabs/furniture/book.tscn @@ -0,0 +1,8 @@ +[gd_scene load_steps=2 format=3 uid="uid://cvfk53tse4okx"] + +[ext_resource type="Texture2D" uid="uid://tpiuck2a8821" path="res://sprites/furniture/book.png" id="1_vhudq"] + +[node name="book" type="Node2D"] + +[node name="Sprite2D" type="Sprite2D" parent="."] +texture = ExtResource("1_vhudq") diff --git a/prefabs/furniture/bookcase.tscn b/prefabs/furniture/bookcase.tscn new file mode 100644 index 0000000..560c647 --- /dev/null +++ b/prefabs/furniture/bookcase.tscn @@ -0,0 +1,19 @@ +[gd_scene load_steps=3 format=3 uid="uid://c6dmu78qckrrk"] + +[ext_resource type="Texture2D" uid="uid://mx0sb5nojpko" path="res://sprites/furniture/bookcase.png" id="1_7rdr3"] + +[sub_resource type="RectangleShape2D" id="RectangleShape2D_f7fx2"] +size = Vector2(32, 25) + +[node name="bookcase" type="Node2D"] +y_sort_enabled = true + +[node name="Sprite2D" type="Sprite2D" parent="."] +y_sort_enabled = true +texture = ExtResource("1_7rdr3") + +[node name="StaticBody2D" type="StaticBody2D" parent="."] + +[node name="CollisionShape2D" type="CollisionShape2D" parent="StaticBody2D"] +position = Vector2(0, 8.5) +shape = SubResource("RectangleShape2D_f7fx2") diff --git a/prefabs/furniture/door_closed.tscn b/prefabs/furniture/door_closed.tscn new file mode 100644 index 0000000..24e92a0 --- /dev/null +++ b/prefabs/furniture/door_closed.tscn @@ -0,0 +1,8 @@ +[gd_scene load_steps=2 format=3 uid="uid://chhytv8se7mfk"] + +[ext_resource type="Texture2D" uid="uid://cn362llclhulw" path="res://sprites/furniture/door-closed.png" id="1_lnba4"] + +[node name="door_closed" type="Node2D"] + +[node name="Sprite2D" type="Sprite2D" parent="."] +texture = ExtResource("1_lnba4") diff --git a/prefabs/furniture/door_open.tscn b/prefabs/furniture/door_open.tscn new file mode 100644 index 0000000..27d15ce --- /dev/null +++ b/prefabs/furniture/door_open.tscn @@ -0,0 +1,8 @@ +[gd_scene load_steps=2 format=3 uid="uid://cdt50awg2qvv0"] + +[ext_resource type="Texture2D" uid="uid://ccv54fdk8unka" path="res://sprites/furniture/door-open.png" id="1_8ws8b"] + +[node name="door_open" type="Node2D"] + +[node name="Sprite2D" type="Sprite2D" parent="."] +texture = ExtResource("1_8ws8b") diff --git a/prefabs/furniture/komod.tscn b/prefabs/furniture/komod.tscn new file mode 100644 index 0000000..b065c9f --- /dev/null +++ b/prefabs/furniture/komod.tscn @@ -0,0 +1,19 @@ +[gd_scene load_steps=3 format=3 uid="uid://dcol2k6su0v4"] + +[ext_resource type="Texture2D" uid="uid://bwd4ctlfqx81f" path="res://sprites/furniture/komod.png" id="1_ffku5"] + +[sub_resource type="RectangleShape2D" id="RectangleShape2D_mk2ik"] +size = Vector2(25, 20) + +[node name="komod" type="Node2D"] +y_sort_enabled = true + +[node name="Sprite2D" type="Sprite2D" parent="."] +y_sort_enabled = true +texture = ExtResource("1_ffku5") + +[node name="StaticBody2D" type="StaticBody2D" parent="."] + +[node name="CollisionShape2D" type="CollisionShape2D" parent="StaticBody2D"] +position = Vector2(0.5, 6) +shape = SubResource("RectangleShape2D_mk2ik") diff --git a/prefabs/furniture/papers.tscn b/prefabs/furniture/papers.tscn new file mode 100644 index 0000000..819c9b7 --- /dev/null +++ b/prefabs/furniture/papers.tscn @@ -0,0 +1,19 @@ +[gd_scene load_steps=3 format=3 uid="uid://6ppvbjx5lxe"] + +[ext_resource type="Texture2D" uid="uid://c24ecdf3gm0se" path="res://sprites/furniture/papers.png" id="1_57ku2"] + +[sub_resource type="RectangleShape2D" id="RectangleShape2D_bhwrs"] +size = Vector2(32, 27) + +[node name="papers" type="Node2D"] + +[node name="Sprite2D" type="Sprite2D" parent="."] +texture = ExtResource("1_57ku2") + +[node name="Area2D" type="Area2D" parent="."] +collision_layer = 4 +collision_mask = 4 + +[node name="CollisionShape2D" type="CollisionShape2D" parent="Area2D"] +position = Vector2(0, 0.5) +shape = SubResource("RectangleShape2D_bhwrs") diff --git a/prefabs/furniture/skull.tscn b/prefabs/furniture/skull.tscn new file mode 100644 index 0000000..21a7147 --- /dev/null +++ b/prefabs/furniture/skull.tscn @@ -0,0 +1,8 @@ +[gd_scene load_steps=2 format=3 uid="uid://bt53ff6wygdaw"] + +[ext_resource type="Texture2D" uid="uid://puase0phq655" path="res://sprites/furniture/skull2.png" id="1_ffniu"] + +[node name="skull" type="Node2D"] + +[node name="Sprite2D" type="Sprite2D" parent="."] +texture = ExtResource("1_ffniu") diff --git a/prefabs/furniture/table1.tscn b/prefabs/furniture/table1.tscn new file mode 100644 index 0000000..558d9b7 --- /dev/null +++ b/prefabs/furniture/table1.tscn @@ -0,0 +1,17 @@ +[gd_scene load_steps=3 format=3 uid="uid://c8a6bwthgvai0"] + +[ext_resource type="Texture2D" uid="uid://c5ajo1mf6ptjf" path="res://sprites/furniture/table1.png" id="1_2ueuh"] + +[sub_resource type="RectangleShape2D" id="RectangleShape2D_j4b3e"] +size = Vector2(32, 25) + +[node name="table1" type="Node2D"] + +[node name="Sprite2D" type="Sprite2D" parent="."] +texture = ExtResource("1_2ueuh") + +[node name="StaticBody2D" type="StaticBody2D" parent="."] + +[node name="CollisionShape2D" type="CollisionShape2D" parent="StaticBody2D"] +position = Vector2(0, 1) +shape = SubResource("RectangleShape2D_j4b3e") diff --git a/prefabs/furniture/table2.tscn b/prefabs/furniture/table2.tscn new file mode 100644 index 0000000..7269b36 --- /dev/null +++ b/prefabs/furniture/table2.tscn @@ -0,0 +1,17 @@ +[gd_scene load_steps=3 format=3 uid="uid://bo5we64scaa1x"] + +[ext_resource type="Texture2D" uid="uid://5jow4httduix" path="res://sprites/furniture/table2.png" id="1_nyjqt"] + +[sub_resource type="RectangleShape2D" id="RectangleShape2D_hux8p"] +size = Vector2(32, 25) + +[node name="table2" type="Node2D"] + +[node name="Sprite2D" type="Sprite2D" parent="."] +texture = ExtResource("1_nyjqt") + +[node name="StaticBody2D" type="StaticBody2D" parent="."] + +[node name="CollisionShape2D" type="CollisionShape2D" parent="StaticBody2D"] +position = Vector2(0, 1) +shape = SubResource("RectangleShape2D_hux8p") diff --git a/prefabs/furniture/window.tscn b/prefabs/furniture/window.tscn new file mode 100644 index 0000000..9275512 --- /dev/null +++ b/prefabs/furniture/window.tscn @@ -0,0 +1,8 @@ +[gd_scene load_steps=2 format=3 uid="uid://chd3lj3gisjgj"] + +[ext_resource type="Texture2D" uid="uid://b5pxkscyklqgb" path="res://sprites/furniture/window1.png" id="1_fnq28"] + +[node name="window" type="Node2D"] + +[node name="Sprite2D" type="Sprite2D" parent="."] +texture = ExtResource("1_fnq28") diff --git a/scenes/level.tscn b/scenes/level.tscn new file mode 100644 index 0000000..c81de37 --- /dev/null +++ b/scenes/level.tscn @@ -0,0 +1,261 @@ +[gd_scene load_steps=13 format=3 uid="uid://cn0rwyjern2vx"] + +[ext_resource type="TileSet" uid="uid://b4dpeakjmn31p" path="res://sprites/tiles/QoL.tres" id="1_kp7y7"] +[ext_resource type="PackedScene" uid="uid://b2nngdg27wccf" path="res://prefabs/furniture/bed.tscn" id="2_7ee73"] +[ext_resource type="PackedScene" uid="uid://chd3lj3gisjgj" path="res://prefabs/furniture/window.tscn" id="3_1vbfb"] +[ext_resource type="PackedScene" uid="uid://dcol2k6su0v4" path="res://prefabs/furniture/komod.tscn" id="4_5646q"] +[ext_resource type="PackedScene" uid="uid://6ppvbjx5lxe" path="res://prefabs/furniture/papers.tscn" id="5_th514"] +[ext_resource type="PackedScene" uid="uid://c6dmu78qckrrk" path="res://prefabs/furniture/bookcase.tscn" id="6_arv1g"] +[ext_resource type="PackedScene" uid="uid://chhytv8se7mfk" path="res://prefabs/furniture/door_closed.tscn" id="7_kt8g1"] +[ext_resource type="PackedScene" uid="uid://bt53ff6wygdaw" path="res://prefabs/furniture/skull.tscn" id="8_sfpxp"] +[ext_resource type="PackedScene" uid="uid://bj1ixwjdpnooo" path="res://prefabs/entities/pressure_plate.tscn" id="9_6ydrq"] +[ext_resource type="PackedScene" uid="uid://dqx43vr727ft8" path="res://prefabs/entities/spikes.tscn" id="10_yerk5"] +[ext_resource type="PackedScene" uid="uid://bo5we64scaa1x" path="res://prefabs/furniture/table2.tscn" id="11_43o4k"] +[ext_resource type="PackedScene" uid="uid://cvfk53tse4okx" path="res://prefabs/furniture/book.tscn" id="12_7tfnm"] + +[node name="level" type="Node2D"] + +[node name="TileMap" type="TileMap" parent="."] +tile_set = ExtResource("1_kp7y7") +format = 2 +layer_0/tile_data = PackedInt32Array(1, 65553, 0, 2, 17, 0, 3, 17, 0, 4, 17, 0, 5, 131089, 0, 65537, 65553, 0, 65538, 17, 0, 65539, 17, 0, 65540, 17, 0, 65541, 131089, 0, 131073, 65553, 0, 131074, 17, 0, 131075, 17, 0, 131076, 17, 0, 131077, 131089, 0, -65535, 14, 0, -65534, 14, 0, -65533, 14, 0, -65532, 14, 0, -65531, 14, 0, -65530, 131086, 0, -65536, 65550, 0, 6, 458766, 0, 65542, 458766, 0, 131078, 458766, 0, 196614, 458766, 0, 262150, 458766, 0, 327686, 458766, 0, 393222, 458766, 0, 458758, 458766, 0, 0, 65550, 1, 65536, 65550, 1, 131072, 65550, 1, 196608, 65550, 1, 262144, 65550, 1, 327680, 65550, 1, 393216, 65550, 1, 458752, 65550, 1, 524294, 196622, 0, 524288, 262158, 0, 524289, 327694, 0, 524290, 327694, 0, 524291, 16, 0, 524292, 327694, 0, 524293, 327694, 0, 262146, 15, 0, 262147, 15, 0, 327684, 15, 0, 393220, 65551, 0, 393221, 15, 0, 458757, 15, 0, 458756, 15, 0, 458755, 15, 0, 458754, 15, 0, 393218, 15, 0, 393217, 15, 0, 327681, 15, 0, 262145, 15, 0, 327685, 65551, 0, 196609, 15, 0, 196610, 15, 0, 196611, 15, 0, 655361, 17, 0, 655362, 17, 0, 655363, 17, 0, 655364, 17, 0, 655365, 17, 0, 655366, 17, 0, 655367, 17, 0, 720903, 17, 0, 786439, 17, 0, 786438, 17, 0, 786437, 17, 0, 786436, 17, 0, 786435, 17, 0, 786434, 262161, 0, 786433, 17, 0, 720897, 17, 0, 720898, 196625, 0, 720899, 17, 0, 720900, 17, 0, 720901, 17, 0, 720902, 17, 0, 589825, 14, 0, 589826, 14, 0, 589827, 14, 0, 589828, 14, 0, 589829, 14, 0, 589830, 14, 0, 589831, 14, 0, 589824, 65550, 0, 589832, 14, 0, 655360, 65550, 1, 720896, 65550, 1, 786432, 65550, 1, 851968, 65550, 1, 917504, 65550, 1, 983040, 65550, 1, 1048576, 262158, 0, 1048577, 327694, 0, 1048578, 327694, 0, 1048579, 327694, 0, 1048580, 327694, 0, 1048581, 327694, 0, 1048582, 327694, 0, 1048583, 327694, 0, 589833, 14, 0, 589834, 14, 0, 589835, 14, 0, 589836, 14, 0, 589837, 14, 0, 589838, 14, 0, 589839, 14, 0, 1048584, 327694, 0, 1048585, 327694, 0, 1048586, 327694, 0, 1048587, 327694, 0, 1048588, 327694, 0, 1048589, 327694, 0, 1048590, 327694, 0, 1048591, 327694, 0, 786440, 17, 0, 786441, 17, 0, 786442, 17, 0, 786443, 17, 0, 786444, 17, 0, 786445, 17, 0, 786446, 17, 0, 786447, 131089, 0, 720911, 131089, 0, 655375, 131089, 0, 655374, 17, 0, 655373, 17, 0, 655372, 17, 0, 655371, 17, 0, 655370, 17, 0, 655369, 17, 0, 655368, 17, 0, 720904, 17, 0, 720905, 17, 0, 720906, 17, 0, 720907, 17, 0, 720908, 17, 0, 720909, 17, 0, 720910, 17, 0, 851969, 15, 0, 917505, 15, 0, 983041, 15, 0, 851970, 15, 0, 917506, 15, 0, 983042, 15, 0, 851971, 15, 0, 917507, 15, 0, 983043, 15, 0, 851972, 15, 0, 917508, 15, 0, 983044, 65551, 0, 851973, 131087, 0, 917509, 15, 0, 983045, 131087, 0, 851974, 15, 0, 917510, 15, 0, 983046, 15, 0, 851975, 15, 0, 917511, 15, 0, 983047, 15, 0, 851976, 15, 0, 917512, 65551, 0, 983048, 15, 0, 851977, 15, 0, 917513, 15, 0, 983049, 15, 0, 851978, 15, 0, 917514, 131087, 0, 983050, 15, 0, 851979, 15, 0, 917515, 15, 0, 983051, 65551, 0, 851980, 15, 0, 917516, 15, 0, 983052, 15, 0, 851981, 15, 0, 917517, 15, 0, 983053, 15, 0, 851982, 15, 0, 917518, 15, 0, 983054, 15, 0, 851983, 15, 0, 917519, 15, 0, 983055, 15, 0, 458753, 65551, 0, 327682, 15, 0, 327683, 15, 0, 393219, 15, 0, 196612, 15, 0, 262148, 15, 0, 196613, 15, 0, 262149, 15, 0, 589840, 131086, 0, 1048592, 196622, 0, 655376, 458766, 0, 720912, 458766, 0, 786448, 458766, 0, 851984, 458766, 0, 917520, 65552, 0, 983056, 458766, 0, 524307, 17, 0, 589843, 17, 0, 655379, 17, 0, 524308, 17, 0, 589844, 17, 0, 655380, 17, 0, 524309, 17, 0, 589845, 17, 0, 655381, 17, 0, 524310, 17, 0, 589846, 17, 0, 655382, 17, 0, 524311, 17, 0, 589847, 17, 0, 655383, 17, 0, 524312, 17, 0, 589848, 17, 0, 655384, 17, 0, 524313, 17, 0, 589849, 17, 0, 655385, 17, 0, 524314, 17, 0, 589850, 17, 0, 655386, 17, 0, 524315, 17, 0, 589851, 17, 0, 655387, 17, 0, 524316, 458766, 0, 589852, 458766, 0, 655388, 458766, 0, 720924, 458766, 0, 786460, 458766, 0, 851996, 458766, 0, 917532, 65552, 0, 983068, 458766, 0, 1048604, 458766, 0, 524306, 65550, 1, 589842, 65550, 1, 655378, 65550, 1, 720914, 65550, 1, 786450, 65550, 1, 851986, 65550, 1, 917522, 131088, 0, 983058, 65550, 1, 1048594, 65550, 1, 458780, 131086, 0, 458770, 65550, 0, 458771, 14, 0, 458772, 14, 0, 458773, 14, 0, 458774, 14, 0, 458775, 14, 0, 458776, 14, 0, 458777, 14, 0, 458778, 14, 0, 458779, 14, 0, 1114140, 196622, 0, 1114131, 327694, 0, 1114132, 327694, 0, 1114133, 327694, 0, 1114134, 327694, 0, 1114135, 327694, 0, 1114136, 327694, 0, 1114137, 327694, 0, 1114138, 327694, 0, 1114139, 327694, 0, 1114130, 262158, 0, 720915, 15, 0, 786451, 15, 0, 851987, 15, 0, 917523, 15, 0, 983059, 15, 0, 1048595, 15, 0, 720916, 15, 0, 786452, 15, 0, 851988, 15, 0, 917524, 15, 0, 983060, 15, 0, 1048596, 15, 0, 720917, 15, 0, 786453, 15, 0, 851989, 15, 0, 917525, 15, 0, 983061, 15, 0, 1048597, 15, 0, 720918, 15, 0, 786454, 15, 0, 851990, 15, 0, 917526, 15, 0, 983062, 15, 0, 1048598, 15, 0, 720919, 15, 0, 786455, 15, 0, 851991, 15, 0, 917527, 15, 0, 983063, 15, 0, 1048599, 15, 0, 720920, 15, 0, 786456, 15, 0, 851992, 15, 0, 917528, 15, 0, 983064, 15, 0, 1048600, 15, 0, 720921, 15, 0, 786457, 15, 0, 851993, 15, 0, 917529, 15, 0, 983065, 15, 0, 1048601, 15, 0, 720922, 15, 0, 786458, 15, 0, 851994, 15, 0, 917530, 15, 0, 983066, 15, 0, 1048602, 15, 0, 720923, 15, 0, 786459, 15, 0, 851995, 15, 0, 917531, 15, 0, 983067, 15, 0, 1048603, 15, 0, 524320, 17, 0, 589856, 17, 0, 655392, 17, 0, 524321, 17, 0, 589857, 17, 0, 655393, 17, 0, 524322, 17, 0, 589858, 17, 0, 655394, 17, 0, 524323, 17, 0, 589859, 17, 0, 655395, 17, 0, 524324, 17, 0, 589860, 17, 0, 655396, 17, 0, 524325, 17, 0, 589861, 17, 0, 655397, 17, 0, 524326, 17, 0, 589862, 17, 0, 655398, 17, 0, 524327, 17, 0, 589863, 17, 0, 655399, 17, 0, 524328, 17, 0, 589864, 17, 0, 655400, 17, 0, 524329, 17, 0, 589865, 17, 0, 655401, 17, 0, 524330, 17, 0, 589866, 17, 0, 655402, 17, 0, 524331, 17, 0, 589867, 17, 0, 655403, 17, 0, 196652, 17, 0, 262188, 17, 0, 196653, 17, 0, 262189, 17, 0, 196654, 17, 0, 262190, 17, 0, 196655, 17, 0, 262191, 17, 0, 589872, 17, 0, 655408, 17, 0, 720944, 17, 0, 589873, 17, 0, 655409, 17, 0, 720945, 17, 0, 589874, 17, 0, 655410, 17, 0, 720946, 17, 0, 589875, 17, 0, 655411, 17, 0, 720947, 17, 0, 1048608, 17, 0, 1114144, 17, 0, 1179680, 17, 0, 1245216, 17, 0, 1048609, 17, 0, 1114145, 17, 0, 1179681, 17, 0, 1245217, 17, 0, 1048610, 17, 0, 1114146, 17, 0, 1179682, 17, 0, 1245218, 17, 0, 1048611, 17, 0, 1114147, 17, 0, 1179683, 17, 0, 1245219, 17, 0, 1048612, 17, 0, 1114148, 17, 0, 1179684, 17, 0, 1245220, 17, 0, 1048613, 17, 0, 1114149, 17, 0, 1179685, 17, 0, 1245221, 17, 0, 1048614, 17, 0, 1114150, 17, 0, 1179686, 17, 0, 1245222, 17, 0, 1048615, 17, 0, 1114151, 17, 0, 1179687, 17, 0, 1245223, 17, 0, 1048616, 17, 0, 1114152, 17, 0, 1179688, 17, 0, 1245224, 17, 0, 1048617, 17, 0, 1114153, 17, 0, 1179689, 17, 0, 1245225, 17, 0, 1048618, 17, 0, 1114154, 17, 0, 1179690, 17, 0, 1245226, 17, 0, 1048619, 17, 0, 1114155, 17, 0, 1179691, 17, 0, 1245227, 17, 0, 1048629, 17, 0, 1114165, 17, 0, 1179701, 17, 0, 1245237, 17, 0, 1048630, 17, 0, 1114166, 17, 0, 1179702, 17, 0, 1245238, 17, 0, 1048631, 17, 0, 1114167, 17, 0, 1179703, 17, 0, 1245239, 17, 0, 1048632, 17, 0, 1114168, 17, 0, 1179704, 17, 0, 1245240, 17, 0, 458784, 14, 0, 458785, 14, 0, 458786, 14, 0, 458787, 14, 0, 458788, 14, 0, 458789, 14, 0, 458790, 14, 0, 458791, 14, 0, 458792, 14, 0, 458793, 14, 0, 458794, 14, 0, 458795, 327694, 1, 983072, 14, 0, 983073, 14, 0, 983074, 14, 0, 983075, 14, 0, 983076, 14, 0, 983077, 14, 0, 983078, 14, 0, 983079, 14, 0, 983080, 14, 0, 983081, 14, 0, 983082, 14, 0, 983083, 327694, 1, 917536, 327694, 0, 917537, 327694, 0, 917538, 327694, 0, 917539, 327694, 0, 917540, 327694, 0, 917541, 327694, 0, 917542, 327694, 0, 917543, 327694, 0, 917544, 327694, 0, 917545, 327694, 0, 917546, 327694, 0, 917547, 131086, 1, 917535, 262158, 0, 458783, 65550, 0, 524319, 65550, 1, 589855, 65550, 1, 655391, 65550, 1, 720927, 65550, 1, 786463, 131088, 0, 851999, 65550, 1, 983071, 65550, 0, 1048607, 65550, 1, 1114143, 65550, 1, 1179679, 65550, 1, 1245215, 65550, 1, 1310751, 65550, 1, 1376287, 65550, 1, 1441823, 65550, 1, 1507359, 262158, 0, 1507360, 327694, 0, 1507361, 327694, 0, 1507362, 327694, 0, 1507363, 327694, 0, 1507364, 327694, 0, 1507365, 327694, 0, 1507366, 327694, 0, 1507367, 327694, 0, 1507368, 327694, 0, 1507369, 327694, 0, 1507370, 327694, 0, 1507371, 327694, 0, 917548, 15, 0, 983084, 15, 0, 1376295, 65551, 0, 1245229, 65551, 0, 786470, 65551, 0, 786466, 65551, 0, 1048625, 17, 0, 1114161, 17, 0, 1179697, 17, 0, 1245233, 17, 0, 1048626, 17, 0, 1114162, 17, 0, 1179698, 17, 0, 1245234, 17, 0, 1048627, 17, 0, 1114163, 17, 0, 1179699, 17, 0, 1245235, 17, 0, 1048628, 17, 0, 1114164, 17, 0, 1179700, 17, 0, 1245236, 17, 0, 196651, 65550, 1, 262187, 65550, 1, 327723, 65550, 1, 393259, 65550, 1, 131115, 65550, 1, 131116, 17, 0, 131117, 17, 0, 131118, 17, 0, 131119, 17, 0, 1507372, 327694, 0, 1507373, 327694, 0, 1507374, 327694, 0, 1507375, 327694, 0, 1507376, 327694, 0, 1507377, 327694, 0, 1507378, 327694, 0, 1507379, 327694, 0, 1507380, 327694, 0, 1507381, 327694, 0, 1507382, 327694, 0, 1507383, 327694, 0, 1507384, 327694, 0, 1507385, 196622, 0, 1048633, 458766, 0, 1114169, 458766, 0, 1179705, 458766, 0, 1245241, 458766, 0, 1310777, 458766, 0, 1376313, 458766, 0, 1441849, 458766, 0, 983097, 131086, 0, 983089, 393230, 1, 983090, 14, 0, 983091, 14, 0, 983092, 14, 0, 983093, 14, 0, 983094, 14, 0, 983095, 14, 0, 983096, 14, 0, 917553, 14, 1, 917554, 327694, 0, 917555, 327694, 0, 917556, 327694, 0, 917557, 327694, 0, 917558, 327694, 0, 917559, 327694, 0, 917560, 327694, 0, 917561, 196622, 0, 589881, 458766, 0, 655417, 458766, 0, 720953, 458766, 0, 786489, 458766, 0, 852025, 458766, 0, 524345, 131086, 0, 524336, 393230, 1, 524337, 14, 0, 524338, 14, 0, 524339, 14, 0, 524340, 14, 0, 524341, 14, 0, 524342, 14, 0, 524343, 14, 0, 524344, 14, 0, 589876, 17, 0, 655412, 17, 0, 720948, 17, 0, 589877, 17, 0, 655413, 17, 0, 720949, 17, 0, 589878, 17, 0, 655414, 17, 0, 720950, 17, 0, 589879, 17, 0, 655415, 17, 0, 720951, 17, 0, 589880, 17, 0, 655416, 17, 0, 720952, 17, 0, 458800, 14, 1, 65579, 65550, 0, 65580, 14, 0, 65581, 14, 0, 65582, 14, 0, 65583, 327694, 1, 458801, 327694, 0, 458802, 327694, 0, 458803, 327694, 0, 458804, 327694, 0, 458805, 327694, 0, 458806, 327694, 0, 458807, 327694, 0, 458808, 327694, 0, 458809, 327694, 0, 458810, 327694, 0, 458811, 327694, 0, 458812, 327694, 0, 458813, 327694, 0, 458814, 327694, 0, 458815, 327694, 0, 458816, 327694, 0, 458817, 196622, 0, 131137, 458766, 0, 196673, 458766, 0, 262209, 458766, 0, 327745, 458766, 0, 393281, 458766, 0, 196669, 17, 0, 262205, 17, 0, 327741, 17, 0, 131133, 262158, 1, 65597, 196622, 1, -262082, 17, 0, -196546, 17, 0, -131010, 17, 0, -262081, 17, 0, -196545, 17, 0, -131009, 17, 0, -262080, 17, 0, -196544, 17, 0, -131008, 17, 0, -262079, 458766, 0, -196543, 458766, 0, -131007, 458766, 0, -65471, 458766, 0, 65, 458766, 0, 65601, 458766, 0, -327615, 131086, 0, -327619, 65550, 0, -327618, 14, 0, -327617, 14, 0, -327616, 14, 0, -262083, 327694, 1, -196547, 131089, 0, -131011, 131089, 0, -65475, 131089, 0, -196550, 17, 0, -131014, 17, 0, -65478, 17, 0, -196549, 17, 0, -131013, 17, 0, -65477, 17, 0, -196548, 17, 0, -131012, 17, 0, -65476, 17, 0, -262086, 14, 0, -262085, 14, 0, -262084, 14, 0, -262087, 65550, 0, -196551, 65550, 1, -131015, 65550, 1, -65479, 65550, 1, 57, 65550, 1, 65593, 327694, 1, 131127, 17, 0, 196663, 17, 0, 262199, 17, 0, 131128, 17, 0, 196664, 17, 0, 262200, 17, 0, 131129, 17, 0, 196665, 17, 0, 262201, 17, 0, 131123, 17, 0, 196659, 17, 0, 262195, 17, 0, 65587, 262158, 1, -262093, 393230, 0, -196557, 393230, 0, -131021, 393230, 0, -65485, 393230, 0, 51, 393230, 0, 65591, 393230, 1, 65592, 14, 0, -262089, 458766, 0, -196553, 458766, 0, -131017, 458766, 0, -65481, 458766, 0, 55, 458766, 0, -327625, 458766, 0, -393160, 327694, 0, -393159, 327694, 0, -393158, 327694, 0, -393157, 327694, 0, -393156, 327694, 0, -393155, 327694, 0, -393154, 327694, 0, -393153, 327694, 0, -393152, 327694, 0, -393161, 14, 1, -393151, 196622, 0, -589759, 458766, 0, -524223, 458766, 0, -458687, 458766, 0, -786377, 17, 0, -720841, 17, 0, -655305, 17, 0, -786376, 17, 0, -720840, 17, 0, -655304, 17, 0, -786375, 17, 0, -720839, 17, 0, -655303, 17, 0, -786374, 17, 0, -720838, 17, 0, -655302, 17, 0, -786373, 17, 0, -720837, 17, 0, -655301, 17, 0, -786372, 17, 0, -720836, 17, 0, -655300, 17, 0, -786371, 17, 0, -720835, 17, 0, -655299, 17, 0, -786370, 17, 0, -720834, 17, 0, -655298, 17, 0, -786369, 17, 0, -720833, 17, 0, -655297, 17, 0, -786368, 17, 0, -720832, 17, 0, -655296, 17, 0, -786367, 458766, 0, -720831, 458766, 0, -655295, 458766, 0, -851903, 131086, 0, -851916, 14, 0, -851915, 14, 0, -851914, 14, 0, -851913, 14, 0, -851912, 14, 0, -851911, 14, 0, -851910, 14, 0, -851909, 14, 0, -851908, 14, 0, -851907, 14, 0, -851906, 14, 0, -851905, 14, 0, -851904, 14, 0, -786381, 393230, 0, -720845, 393230, 0, -655309, 393230, 0, -589773, 393230, 0, -524237, 393230, 0, -458701, 393230, 0, -393165, 393230, 0, -327629, 393230, 0, -851917, 458766, 1, -786380, 17, 0, -720844, 17, 0, -655308, 17, 0, -786379, 17, 0, -720843, 17, 0, -655307, 17, 0, -786378, 17, 0, -720842, 17, 0, -655306, 17, 0, -196561, 65550, 1, -131025, 65550, 1, -65489, 65550, 1, 47, 65550, 1, -786390, 17, 0, -720854, 17, 0, -655318, 17, 0, -786389, 17, 0, -720853, 17, 0, -655317, 17, 0, -786388, 17, 0, -720852, 17, 0, -655316, 17, 0, -786384, 17, 0, -720848, 17, 0, -655312, 17, 0, -786383, 17, 0, -720847, 17, 0, -655311, 17, 0, -786382, 17, 0, -720846, 17, 0, -655310, 17, 0, -786393, 17, 0, -720857, 17, 0, -655321, 17, 0, -786392, 17, 0, -720856, 17, 0, -655320, 17, 0, -786391, 17, 0, -720855, 17, 0, -655319, 17, 0, -393169, 131086, 1, -327633, 65550, 1, -262097, 65550, 1, -393177, 327694, 0, -393176, 327694, 0, -393175, 327694, 0, -393174, 327694, 0, -393173, 327694, 0, -393172, 327694, 0, -393171, 327694, 0, -393170, 327694, 0, -393178, 262158, 0, -851930, 65550, 0, -786394, 65550, 1, -720858, 65550, 1, -655322, 65550, 1, -589786, 65550, 1, -524250, 65550, 1, -458714, 65550, 1, -851929, 14, 0, -851928, 14, 0, -851927, 14, 0, -851926, 14, 0, -851925, 14, 0, -851924, 327694, 1, -851920, 393230, 1, -851919, 14, 0, -851918, 14, 0, -1179604, 65550, 1, -1114068, 65550, 1, -1048532, 65550, 1, -982996, 65550, 1, -917460, 65550, 1, -917456, 14, 1, -917455, 327694, 0, -917454, 327694, 0, -917453, 327694, 0, -917452, 327694, 0, -917451, 327694, 0, -917450, 327694, 0, -917449, 327694, 0, -917448, 327694, 0, -917447, 327694, 0, -917446, 327694, 0, -917445, 327694, 0, -917444, 327694, 0, -917443, 327694, 0, -917442, 327694, 0, -917441, 327694, 0, -917440, 327694, 0, -1310672, 17, 0, -1245136, 17, 0, -1179600, 17, 0, -1310671, 17, 0, -1245135, 17, 0, -1179599, 17, 0, -1310670, 17, 0, -1245134, 17, 0, -1179598, 17, 0, -1310669, 17, 0, -1245133, 17, 0, -1179597, 17, 0, -1310668, 17, 0, -1245132, 17, 0, -1179596, 17, 0, -1310667, 17, 0, -1245131, 17, 0, -1179595, 17, 0, -1310666, 17, 0, -1245130, 17, 0, -1179594, 17, 0, -1310665, 17, 0, -1245129, 17, 0, -1179593, 17, 0, -1310664, 17, 0, -1245128, 17, 0, -1179592, 17, 0, -1310663, 17, 0, -1245127, 17, 0, -1179591, 17, 0, -1310662, 17, 0, -1245126, 17, 0, -1179590, 17, 0, -1310661, 17, 0, -1245125, 17, 0, -1179589, 17, 0, -1310660, 17, 0, -1245124, 17, 0, -1179588, 17, 0, -1310659, 17, 0, -1245123, 17, 0, -1179587, 17, 0, -1310658, 17, 0, -1245122, 17, 0, -1179586, 17, 0, -1310657, 17, 0, -1245121, 17, 0, -1179585, 17, 0, -1310656, 17, 0, -1245120, 17, 0, -1179584, 17, 0, -1376208, 393230, 1, -1572820, 65550, 1, -1507284, 65550, 1, -1441748, 65550, 1, -1376212, 65550, 1, -1310676, 65550, 1, -1245140, 65550, 1, -1703892, 65550, 1, -1638356, 65550, 1, -1769428, 65550, 1, -1834964, 65550, 0, -1834960, 131086, 0, -1834963, 14, 0, -1834962, 14, 0, -1834961, 14, 0, -1769424, 458766, 0, -1703888, 458766, 0, -1638352, 458766, 0, -1572816, 458766, 0, -1507280, 458766, 0, -1441744, 458766, 0, -1769427, 17, 0, -1703891, 17, 0, -1638355, 17, 0, -1769426, 17, 0, -1703890, 17, 0, -1638354, 17, 0, -1769425, 17, 0, -1703889, 17, 0, -1638353, 17, 0, -1376207, 14, 0, -1376206, 14, 0, -1376205, 14, 0, -1376204, 14, 0, -1376203, 14, 0, -1376202, 14, 0, -1376201, 14, 0, -1376200, 14, 0, -1376199, 14, 0, -1376198, 14, 0, -1376197, 14, 0, -1376196, 14, 0, -1376195, 14, 0, -1376194, 14, 0, -1376193, 14, 0, -1376192, 14, 0, -917439, 196622, 0, -1376191, 131086, 0, -1310655, 458766, 0, -1245119, 458766, 0, -1179583, 458766, 0, -1114047, 458766, 0, -1048511, 65552, 0, -982975, 458766, 0, -458734, 65550, 0, -393198, 65550, 1, -327662, 65550, 1, -262126, 65550, 1, -196590, 65550, 1, -131054, 65550, 1, -65518, 65550, 1, 18, 65550, 1, 65554, 65550, 1, 131090, 65550, 1, 196626, 65550, 1, 262162, 262158, 0, -458733, 14, 0, -393197, 17, 0, -327661, 17, 0, -262125, 17, 0, 262163, 327694, 0, -458732, 14, 0, -393196, 17, 0, -327660, 17, 0, -262124, 17, 0, 262164, 327694, 0, -458731, 14, 0, -393195, 17, 0, -327659, 17, 0, -262123, 17, 0, 262165, 327694, 0, -458730, 14, 0, -393194, 17, 0, -327658, 17, 0, -262122, 17, 0, 262166, 327694, 0, -458729, 14, 0, -393193, 17, 0, -327657, 17, 0, -262121, 17, 0, 262167, 327694, 0, -458728, 14, 0, -393192, 17, 0, -327656, 17, 0, -262120, 17, 0, 262168, 327694, 0, -458727, 14, 0, -393191, 17, 0, -327655, 17, 0, -262119, 17, 0, 262169, 327694, 0, -458726, 14, 0, -393190, 17, 0, -327654, 17, 0, -262118, 17, 0, 262170, 327694, 0, -458725, 14, 0, -393189, 17, 0, -327653, 17, 0, -262117, 17, 0, 262171, 327694, 0, -458724, 131086, 0, -393188, 458766, 0, -327652, 458766, 0, -262116, 458766, 0, -196580, 458766, 0, -131044, 458766, 0, -65508, 458766, 0, 28, 458766, 0, 65564, 458766, 0, 131100, 458766, 0, 196636, 458766, 0, 262172, 196622, 0, -1310702, 65550, 0, -1245166, 65550, 1, -1179630, 65550, 1, -1114094, 65550, 1, -1048558, 65550, 1, -983022, 65550, 1, -917486, 65550, 1, -851950, 65550, 1, -786414, 65550, 1, -720878, 65550, 1, -655342, 65550, 1, -589806, 262158, 0, -1310701, 14, 0, -1245165, 17, 0, -1179629, 17, 0, -1114093, 17, 0, -589805, 327694, 0, -1310700, 14, 0, -1245164, 17, 0, -1179628, 17, 0, -1114092, 17, 0, -589804, 327694, 0, -1310699, 14, 0, -1245163, 17, 0, -1179627, 17, 0, -1114091, 17, 0, -589803, 327694, 0, -1310698, 14, 0, -1245162, 17, 0, -1179626, 17, 0, -1114090, 17, 0, -589802, 327694, 0, -1310697, 14, 0, -1245161, 17, 0, -1179625, 17, 0, -1114089, 17, 0, -589801, 327694, 0, -1310696, 14, 0, -1245160, 17, 0, -1179624, 17, 0, -1114088, 17, 0, -589800, 327694, 0, -1310695, 14, 0, -1245159, 17, 0, -1179623, 17, 0, -1114087, 17, 0, -589799, 327694, 0, -1310694, 14, 0, -1245158, 17, 0, -1179622, 17, 0, -1114086, 17, 0, -589798, 327694, 0, -1310693, 14, 0, -1245157, 17, 0, -1179621, 17, 0, -1114085, 17, 0, -589797, 327694, 0, -1310692, 131086, 0, -1245156, 458766, 0, -1179620, 458766, 0, -1114084, 458766, 0, -1048548, 458766, 0, -983012, 458766, 0, -917476, 458766, 0, -851940, 458766, 0, -786404, 458766, 0, -720868, 458766, 0, -655332, 458766, 0, -589796, 196622, 0, -2162670, 65550, 0, -2097134, 65550, 1, -2031598, 65550, 1, -1966062, 65550, 1, -1900526, 65550, 1, -1834990, 65550, 1, -1769454, 65550, 1, -1703918, 65550, 1, -1638382, 65550, 1, -1572846, 65550, 1, -1507310, 65550, 1, -1441774, 262158, 0, -2162669, 14, 0, -2097133, 17, 0, -2031597, 17, 0, -1966061, 17, 0, -1441773, 327694, 0, -2162668, 14, 0, -2097132, 17, 0, -2031596, 17, 0, -1966060, 17, 0, -1441772, 327694, 0, -2162667, 14, 0, -2097131, 17, 0, -2031595, 17, 0, -1966059, 17, 0, -1441771, 327694, 0, -2162666, 14, 0, -2097130, 17, 0, -2031594, 17, 0, -1966058, 17, 0, -1441770, 327694, 0, -2162665, 14, 0, -2097129, 17, 0, -2031593, 17, 0, -1966057, 17, 0, -1441769, 327694, 0, -2162664, 14, 0, -2097128, 17, 0, -2031592, 17, 0, -1966056, 17, 0, -1441768, 327694, 0, -2162663, 14, 0, -2097127, 17, 0, -2031591, 17, 0, -1966055, 17, 0, -1441767, 327694, 0, -2162662, 14, 0, -2097126, 17, 0, -2031590, 17, 0, -1966054, 17, 0, -1441766, 327694, 0, -2162661, 14, 0, -2097125, 17, 0, -2031589, 17, 0, -1966053, 17, 0, -1441765, 327694, 0, -2162660, 131086, 0, -2097124, 458766, 0, -2031588, 458766, 0, -1966052, 458766, 0, -1900516, 458766, 0, -1834980, 458766, 0, -1769444, 458766, 0, -1703908, 458766, 0, -1638372, 458766, 0, -1572836, 458766, 0, -1507300, 458766, 0, -1441764, 196622, 0, -720872, 65551, 0, -851943, 65551, 0, -983018, 65551, 0, 65562, 65551, 0, 21, 65551, 0, -131052, 65551, 0, -65510, 131087, 0, 131092, 131087, 0, -720870, 131087, 0, -786405, 131087, 0, -917477, 131087, 0, -589820, 131086, 1, -524284, 65550, 1, -458748, 65550, 1, -393212, 65550, 1, -327676, 262158, 0, -327675, 327694, 0, -1048570, 14, 0, -983034, 17, 0, -917498, 17, 0, -851962, 17, 0, -327674, 327694, 0, -1048569, 14, 0, -983033, 17, 0, -917497, 17, 0, -851961, 17, 0, -327673, 327694, 0, -1048568, 14, 0, -983032, 17, 0, -917496, 17, 0, -851960, 17, 0, -327672, 327694, 0, -1048567, 14, 0, -983031, 17, 0, -917495, 17, 0, -851959, 17, 0, -327671, 16, 0, -1048566, 14, 0, -983030, 17, 0, -917494, 17, 0, -851958, 17, 0, -327670, 327694, 0, -1048565, 14, 0, -983029, 17, 0, -917493, 17, 0, -851957, 17, 0, -327669, 327694, 0, -1048564, 14, 0, -983028, 17, 0, -917492, 17, 0, -851956, 17, 0, -327668, 327694, 0, -1048563, 14, 0, -983027, 17, 0, -917491, 17, 0, -851955, 17, 0, -327667, 327694, 0, -1048562, 131086, 0, -983026, 458766, 0, -917490, 458766, 0, -851954, 458766, 0, -786418, 458766, 0, -720882, 458766, 0, -655346, 458766, 0, -589810, 458766, 0, -524274, 458766, 0, -458738, 458766, 0, -393202, 458766, 0, -327666, 196622, 0, -1048572, 14, 0, -1048571, 14, 0, -983035, 17, 0, -917499, 17, 0, -851963, 17, 0, -917511, 17, 0, -851975, 17, 0, -786439, 17, 0, -917510, 17, 0, -851974, 17, 0, -786438, 17, 0, -917509, 17, 0, -851973, 17, 0, -786437, 17, 0, -917508, 17, 0, -851972, 17, 0, -786436, 17, 0, -917507, 17, 0, -851971, 17, 0, -786435, 17, 0, -917506, 17, 0, -851970, 17, 0, -786434, 17, 0, -917505, 17, 0, -851969, 17, 0, -786433, 17, 0, -983040, 17, 0, -917504, 17, 0, -851968, 17, 0, -983039, 17, 0, -917503, 17, 0, -851967, 17, 0, -983038, 17, 0, -917502, 196625, 0, -851966, 17, 0, -983037, 17, 0, -917501, 17, 0, -851965, 17, 0, -983036, 17, 0, -917500, 17, 0, -851964, 17, 0, -524295, 327694, 0, -524294, 327694, 0, -524293, 327694, 0, -524292, 327694, 0, -524291, 327694, 0, -524290, 327694, 0, -524289, 327694, 0, -589824, 327694, 0, -589823, 327694, 0, -589822, 327694, 0, -589821, 327694, 0, -983047, 393230, 1, -983046, 14, 0, -983045, 14, 0, -983044, 14, 0, -983043, 14, 0, -983042, 14, 0, -983041, 14, 0, -1048576, 14, 0, -1048575, 14, 0, -1048574, 14, 0, -1048573, 14, 0, -524301, 327694, 0, -524300, 327694, 0, -524299, 327694, 0, -524298, 327694, 0, -524297, 327694, 0, -524296, 327694, 0, -524302, 262158, 0, -983054, 65550, 1, -917518, 65550, 1, -851982, 65550, 1, -786446, 65550, 1, -720910, 65550, 1, -655374, 65550, 1, -589838, 65550, 1, -1376263, 14, 1, -1310727, 458766, 0, -1245191, 458766, 0, -1179655, 458766, 0, -1114119, 458766, 0, -1048583, 458766, 0, -1703950, 65550, 1, -1638414, 65550, 1, -1572878, 65550, 1, -1507342, 65550, 1, -1441806, 65550, 1, -1376270, 65550, 1, -1310734, 65550, 1, -1245198, 65550, 1, -1179662, 65550, 1, -1114126, 65550, 1, -1048590, 65550, 1, -1900557, 17, 0, -1835021, 17, 0, -1769485, 17, 0, -1900556, 17, 0, -1835020, 17, 0, -1769484, 17, 0, -1900555, 17, 0, -1835019, 17, 0, -1769483, 17, 0, -1900554, 17, 0, -1835018, 17, 0, -1769482, 17, 0, -1900553, 17, 0, -1835017, 17, 0, -1769481, 17, 0, -1900552, 17, 0, -1835016, 17, 0, -1769480, 17, 0, -1900558, 65550, 1, -1835022, 65550, 1, -1769486, 65550, 1, -1966094, 65550, 0, -1966093, 14, 0, -1966092, 14, 0, -1966091, 14, 0, -1966090, 14, 0, -1966089, 14, 0, -1966088, 14, 0, -1376262, 327694, 0, -1376261, 131086, 1, -1310725, 65550, 1, -1245189, 65550, 1, -1179653, 65550, 1, -1114117, 262158, 0, -1114116, 327694, 0, -1114115, 327694, 0, -1114114, 327694, 0, -1114113, 327694, 0, -1179648, 327694, 0, -1179647, 327694, 0, -1179646, 327694, 0, -1179645, 327694, 0, -1179644, 327694, 0, -1179643, 327694, 0, -1179642, 327694, 0, -1179641, 327694, 0, -1179640, 327694, 0, -1179639, 327694, 0, -1179638, 327694, 0, -1179637, 327694, 0, -1179636, 327694, 0, -1179635, 327694, 0, -1179634, 196622, 0, -2097138, 458766, 0, -2031602, 458766, 0, -1966066, 458766, 0, -1900530, 458766, 0, -1834994, 458766, 0, -1769458, 458766, 0, -1703922, 458766, 0, -1638386, 458766, 0, -1572850, 458766, 0, -1507314, 458766, 0, -1441778, 458766, 0, -1376242, 458766, 0, -1310706, 458766, 0, -1245170, 458766, 0, -1900551, 17, 0, -1835015, 17, 0, -1769479, 17, 0, -1900550, 17, 0, -1835014, 17, 0, -1769478, 17, 0, -1900549, 17, 0, -1835013, 17, 0, -1769477, 17, 0, -1966087, 14, 0, -1966086, 14, 0, -1966085, 327694, 1, -2162693, 65550, 1, -2097157, 65550, 1, -2031621, 65550, 1, -2162674, 458766, 0, -2228210, 458766, 0, -2359300, 17, 0, -2293764, 17, 0, -2228228, 17, 0, -2359299, 17, 0, -2293763, 17, 0, -2228227, 17, 0, -2359298, 17, 0, -2293762, 17, 0, -2228226, 17, 0, -2359297, 17, 0, -2293761, 17, 0, -2228225, 17, 0, -2424832, 17, 0, -2359296, 17, 0, -2293760, 17, 0, -2424831, 17, 0, -2359295, 17, 0, -2293759, 17, 0, -2424830, 17, 0, -2359294, 17, 0, -2293758, 17, 0, -2424829, 17, 0, -2359293, 17, 0, -2293757, 17, 0, -2424828, 17, 0, -2359292, 17, 0, -2293756, 17, 0, -2424827, 17, 0, -2359291, 17, 0, -2293755, 17, 0, -2424826, 17, 0, -2359290, 17, 0, -2293754, 17, 0, -2424825, 17, 0, -2359289, 17, 0, -2293753, 17, 0, -2424824, 17, 0, -2359288, 17, 0, -2293752, 17, 0, -2424823, 17, 0, -2359287, 17, 0, -2293751, 17, 0, -2424822, 17, 0, -2359286, 17, 0, -2293750, 17, 0, -2424821, 17, 0, -2359285, 17, 0, -2293749, 17, 0, -2424820, 17, 0, -2359284, 17, 0, -2293748, 17, 0, -2424819, 17, 0, -2359283, 17, 0, -2293747, 17, 0, -2424818, 458766, 0, -2359282, 458766, 0, -2293746, 458766, 0, -2359301, 65550, 1, -2293765, 65550, 1, -2228229, 65550, 1, -2424837, 65550, 0, -2490354, 131086, 0, -2424836, 14, 0, -2424835, 14, 0, -2424834, 14, 0, -2424833, 14, 0, -2490368, 14, 0, -2490367, 14, 0, -2490366, 14, 0, -2490365, 14, 0, -2490364, 14, 0, -2490363, 14, 0, -2490362, 14, 0, -2490361, 14, 0, -2490360, 14, 0, -2490359, 14, 0, -2490358, 14, 0, -2490357, 14, 0, -2490356, 14, 0, -2490355, 14, 0, 1441806, 17, 0, 1507342, 17, 0, 1572878, 17, 0, 1638414, 17, 0, 1441807, 17, 0, 1507343, 17, 0, 1572879, 17, 0, 1638415, 17, 0, 1441808, 17, 0, 1507344, 17, 0, 1572880, 17, 0, 1638416, 17, 0, 1441809, 17, 0, 1507345, 17, 0, 1572881, 17, 0, 1638417, 17, 0, 1441810, 17, 0, 1507346, 17, 0, 1572882, 17, 0, 1638418, 17, 0, 1441811, 17, 0, 1507347, 17, 0, 1572883, 17, 0, 1638419, 17, 0, 1441812, 17, 0, 1507348, 17, 0, 1572884, 196625, 0, 1638420, 262161, 0, 1441813, 17, 0, 1507349, 17, 0, 1572885, 17, 0, 1638421, 17, 0, 1441814, 17, 0, 1507350, 17, 0, 1572886, 17, 0, 1638422, 17, 0, 1441815, 17, 0, 1507351, 17, 0, 1572887, 17, 0, 1638423, 17, 0, 1441816, 17, 0, 1507352, 17, 0, 1572888, 17, 0, 1638424, 17, 0, 1441817, 17, 0, 1507353, 17, 0, 1572889, 17, 0, 1638425, 17, 0, 1441818, 17, 0, 1507354, 17, 0, 1572890, 17, 0, 1638426, 17, 0, 1376270, 14, 0, 1376271, 14, 0, 1376272, 14, 0, 1376273, 14, 0, 1376274, 14, 0, 1376275, 14, 0, 1376276, 14, 0, 1376277, 14, 0, 1376278, 14, 0, 1376279, 14, 0, 1376280, 14, 0, 1376281, 14, 0, 1376282, 14, 0, 1376269, 65550, 0, 1376283, 131086, 0, 1441819, 458766, 0, 1507355, 458766, 0, 1572891, 458766, 0, 1638427, 458766, 0, 1703963, 458766, 0, 1769499, 458766, 0, 1835035, 458766, 0, 1900571, 458766, 0, 1966107, 458766, 0, 2031643, 458766, 0, 2097179, 458766, 0, 1441805, 65550, 1, 1507341, 65550, 1, 1572877, 65550, 1, 1638413, 65550, 1, 1703949, 65550, 1, 1769485, 65550, 1, 1835021, 65550, 1, 1900557, 65550, 1, 1966093, 65550, 1, 2031629, 65550, 1, 2097165, 65550, 1, 2162715, 458766, 0, 2162701, 65550, 1, 2228251, 458766, 0, 2228237, 65550, 1, 2293787, 458766, 0, 2293773, 65550, 1, 2359310, 327694, 0, 2359311, 327694, 0, 2359312, 327694, 0, 2359313, 327694, 0, 2359314, 327694, 0, 2359315, 327694, 0, 2359316, 327694, 0, 2359317, 327694, 0, 2359318, 327694, 0, 2359319, 327694, 0, 2359320, 327694, 0, 2359321, 327694, 0, 2359322, 327694, 0, 2359309, 262158, 0, 2359323, 196622, 0, 2162710, 65551, 0, 1900566, 65551, 0) + +[node name="bed" parent="." instance=ExtResource("2_7ee73")] +position = Vector2(47, 104) + +[node name="window" parent="." instance=ExtResource("3_1vbfb")] +position = Vector2(112, 40) + +[node name="komod" parent="." instance=ExtResource("4_5646q")] +position = Vector2(74, 91) + +[node name="papers" parent="." instance=ExtResource("5_th514")] +position = Vector2(104, 153) + +[node name="bookcase" parent="." instance=ExtResource("6_arv1g")] +position = Vector2(174, 91) + +[node name="window2" parent="." instance=ExtResource("3_1vbfb")] +position = Vector2(176, 367) + +[node name="window3" parent="." instance=ExtResource("3_1vbfb")] +position = Vector2(239, 367) + +[node name="window4" parent="." instance=ExtResource("3_1vbfb")] +position = Vector2(296, 367) + +[node name="window5" parent="." instance=ExtResource("3_1vbfb")] +position = Vector2(360, 367) + +[node name="door_closed" parent="." instance=ExtResource("7_kt8g1")] +position = Vector2(749, 328) + +[node name="door_closed2" parent="." instance=ExtResource("7_kt8g1")] +position = Vector2(820, 328) + +[node name="door_closed3" parent="." instance=ExtResource("7_kt8g1")] +position = Vector2(672, 328) + +[node name="skull" parent="." instance=ExtResource("8_sfpxp")] +position = Vector2(2033, -496) + +[node name="door_closed4" parent="." instance=ExtResource("7_kt8g1")] +position = Vector2(747, -120) + +[node name="pressure_plate" parent="." instance=ExtResource("9_6ydrq")] +position = Vector2(750, 16) + +[node name="pressure_plate2" parent="." instance=ExtResource("9_6ydrq")] +position = Vector2(624, -385) + +[node name="spikes" parent="." instance=ExtResource("10_yerk5")] +position = Vector2(683, -352) + +[node name="spikes2" parent="." instance=ExtResource("10_yerk5")] +position = Vector2(683, -384) + +[node name="spikes3" parent="." instance=ExtResource("10_yerk5")] +position = Vector2(683, -415) + +[node name="papers2" parent="." instance=ExtResource("5_th514")] +position = Vector2(751, 92) + +[node name="door_closed5" parent="." instance=ExtResource("7_kt8g1")] +position = Vector2(743, -536) + +[node name="door_closed6" parent="." instance=ExtResource("7_kt8g1")] +position = Vector2(752, -952) + +[node name="pressure_plate3" parent="." instance=ExtResource("9_6ydrq")] +position = Vector2(785, -785) + +[node name="pressure_plate4" parent="." instance=ExtResource("9_6ydrq")] +position = Vector2(688, -850) + +[node name="spikes4" parent="." instance=ExtResource("10_yerk5")] +position = Vector2(785, -847) + +[node name="spikes5" parent="." instance=ExtResource("10_yerk5")] +position = Vector2(847, -847) + +[node name="spikes6" parent="." instance=ExtResource("10_yerk5")] +position = Vector2(817, -847) + +[node name="spikes7" parent="." instance=ExtResource("10_yerk5")] +position = Vector2(848, -816) + +[node name="spikes8" parent="." instance=ExtResource("10_yerk5")] +position = Vector2(848, -783) + +[node name="spikes9" parent="." instance=ExtResource("10_yerk5")] +position = Vector2(848, -752) + +[node name="pressure_plate5" parent="." instance=ExtResource("9_6ydrq")] +position = Vector2(-113, -592) + +[node name="pressure_plate6" parent="." instance=ExtResource("9_6ydrq")] +position = Vector2(432, -592) + +[node name="pressure_plate7" parent="." instance=ExtResource("9_6ydrq")] +position = Vector2(-110, -1072) + +[node name="pressure_plate8" parent="." instance=ExtResource("9_6ydrq")] +position = Vector2(432, -1071) + +[node name="door_closed7" parent="." instance=ExtResource("7_kt8g1")] +position = Vector2(177, -1112) + +[node name="bookcase2" parent="." instance=ExtResource("6_arv1g")] +position = Vector2(-47, -922) + +[node name="bookcase3" parent="." instance=ExtResource("6_arv1g")] +position = Vector2(-14, -922) + +[node name="bookcase4" parent="." instance=ExtResource("6_arv1g")] +position = Vector2(18, -922) + +[node name="bookcase5" parent="." instance=ExtResource("6_arv1g")] +position = Vector2(86, -922) + +[node name="bookcase6" parent="." instance=ExtResource("6_arv1g")] +position = Vector2(119, -922) + +[node name="bookcase7" parent="." instance=ExtResource("6_arv1g")] +position = Vector2(152, -922) + +[node name="bookcase8" parent="." instance=ExtResource("6_arv1g")] +position = Vector2(217, -922) + +[node name="bookcase9" parent="." instance=ExtResource("6_arv1g")] +position = Vector2(250, -922) + +[node name="bookcase10" parent="." instance=ExtResource("6_arv1g")] +position = Vector2(283, -922) + +[node name="bookcase11" parent="." instance=ExtResource("6_arv1g")] +position = Vector2(-50, -793) + +[node name="bookcase12" parent="." instance=ExtResource("6_arv1g")] +position = Vector2(-17, -793) + +[node name="bookcase13" parent="." instance=ExtResource("6_arv1g")] +position = Vector2(16, -793) + +[node name="bookcase14" parent="." instance=ExtResource("6_arv1g")] +position = Vector2(85, -792) + +[node name="bookcase15" parent="." instance=ExtResource("6_arv1g")] +position = Vector2(118, -792) + +[node name="bookcase16" parent="." instance=ExtResource("6_arv1g")] +position = Vector2(151, -792) + +[node name="bookcase17" parent="." instance=ExtResource("6_arv1g")] +position = Vector2(224, -792) + +[node name="bookcase18" parent="." instance=ExtResource("6_arv1g")] +position = Vector2(257, -792) + +[node name="bookcase19" parent="." instance=ExtResource("6_arv1g")] +position = Vector2(290, -792) + +[node name="table2" parent="." instance=ExtResource("11_43o4k")] +position = Vector2(16, -1004) + +[node name="table3" parent="." instance=ExtResource("11_43o4k")] +position = Vector2(119, -1003) + +[node name="table4" parent="." instance=ExtResource("11_43o4k")] +position = Vector2(251, -1001) + +[node name="skull2" parent="." instance=ExtResource("8_sfpxp")] +position = Vector2(-19, -1053) + +[node name="book" parent="." instance=ExtResource("12_7tfnm")] +position = Vector2(-82, -865) + +[node name="book2" parent="." instance=ExtResource("12_7tfnm")] +position = Vector2(50, -834) + +[node name="book3" parent="." instance=ExtResource("12_7tfnm")] +position = Vector2(133, -711) + +[node name="book4" parent="." instance=ExtResource("12_7tfnm")] +position = Vector2(262, -615) + +[node name="book5" parent="." instance=ExtResource("12_7tfnm")] +position = Vector2(380, -786) + +[node name="book6" parent="." instance=ExtResource("12_7tfnm")] +position = Vector2(334, -962) + +[node name="window6" parent="." instance=ExtResource("3_1vbfb")] +position = Vector2(368, -431) + +[node name="window7" parent="." instance=ExtResource("3_1vbfb")] +position = Vector2(272, -431) + +[node name="window8" parent="." instance=ExtResource("3_1vbfb")] +position = Vector2(175, -431) + +[node name="window9" parent="." instance=ExtResource("3_1vbfb")] +position = Vector2(81, -431) + +[node name="window10" parent="." instance=ExtResource("3_1vbfb")] +position = Vector2(-15, -431) + +[node name="window11" parent="." instance=ExtResource("3_1vbfb")] +position = Vector2(-119, -432) + +[node name="window12" parent="." instance=ExtResource("3_1vbfb")] +position = Vector2(-299, -918) + +[node name="window13" parent="." instance=ExtResource("3_1vbfb")] +position = Vector2(593, 783) + +[node name="window14" parent="." instance=ExtResource("3_1vbfb")] +position = Vector2(717, 783) + +[node name="window15" parent="." instance=ExtResource("3_1vbfb")] +position = Vector2(503, 782) + +[node name="window16" parent="." instance=ExtResource("3_1vbfb")] +position = Vector2(791, 783) + +[node name="spikes10" parent="." instance=ExtResource("10_yerk5")] +position = Vector2(732, 980) + +[node name="spikes11" parent="." instance=ExtResource("10_yerk5")] +position = Vector2(764, 947) + +[node name="spikes12" parent="." instance=ExtResource("10_yerk5")] +position = Vector2(796, 915) + +[node name="spikes13" parent="." instance=ExtResource("10_yerk5")] +position = Vector2(576, 978) + +[node name="spikes14" parent="." instance=ExtResource("10_yerk5")] +position = Vector2(544, 946) + +[node name="spikes15" parent="." instance=ExtResource("10_yerk5")] +position = Vector2(512, 915) diff --git a/sprites/furniture/door-closed.png b/sprites/furniture/door-closed.png new file mode 100644 index 0000000..0c20157 Binary files /dev/null and b/sprites/furniture/door-closed.png differ diff --git a/sprites/furniture/door-closed.png.import b/sprites/furniture/door-closed.png.import new file mode 100644 index 0000000..81ca427 --- /dev/null +++ b/sprites/furniture/door-closed.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cn362llclhulw" +path="res://.godot/imported/door-closed.png-2d9738a7238db275aec53afd5638d120.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/furniture/door-closed.png" +dest_files=["res://.godot/imported/door-closed.png-2d9738a7238db275aec53afd5638d120.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/furniture/door-open.png b/sprites/furniture/door-open.png new file mode 100644 index 0000000..d88ed4c Binary files /dev/null and b/sprites/furniture/door-open.png differ diff --git a/sprites/furniture/door-open.png.import b/sprites/furniture/door-open.png.import new file mode 100644 index 0000000..48d2b2c --- /dev/null +++ b/sprites/furniture/door-open.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ccv54fdk8unka" +path="res://.godot/imported/door-open.png-34b4605eefd189c3cd1c565a99ac52ba.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/furniture/door-open.png" +dest_files=["res://.godot/imported/door-open.png-34b4605eefd189c3cd1c565a99ac52ba.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/tiles/QoL.tres b/sprites/tiles/QoL.tres new file mode 100644 index 0000000..532caea --- /dev/null +++ b/sprites/tiles/QoL.tres @@ -0,0 +1,139 @@ +[gd_resource type="TileSet" load_steps=10 format=3 uid="uid://b4dpeakjmn31p"] + +[ext_resource type="Texture2D" uid="uid://br3o2fekkyynd" path="res://sprites/tiles/frames/brd_atlas.png" id="1_r6rba"] +[ext_resource type="Texture2D" uid="uid://d32t4dsukrsq2" path="res://sprites/tiles/floor/floor_atlas.png" id="2_h4pc5"] +[ext_resource type="Texture2D" uid="uid://btojcdxy6i2uc" path="res://sprites/tiles/exits/exit1_atlas.png" id="3_tbs2i"] +[ext_resource type="Texture2D" uid="uid://1nx3r2uuxchq" path="res://sprites/tiles/brickwall/brickwall_atlas.png" id="4_6kvvw"] + +[sub_resource type="TileMapPattern" id="TileMapPattern_po38u"] +tile_data = PackedInt32Array(0, 65550, 0, 65536, 65550, 1, 131072, 65550, 1, 196608, 65550, 1, 262144, 65550, 1, 327680, 65550, 1, 393216, 65550, 1, 458752, 65550, 1, 524288, 65550, 1, 589824, 65550, 1, 655360, 65550, 1, 720896, 262158, 0, 1, 14, 0, 65537, 17, 0, 131073, 17, 0, 196609, 17, 0, 720897, 327694, 0, 2, 14, 0, 65538, 17, 0, 131074, 17, 0, 196610, 17, 0, 720898, 327694, 0, 3, 14, 0, 65539, 17, 0, 131075, 17, 0, 196611, 17, 0, 720899, 327694, 0, 4, 14, 0, 65540, 17, 0, 131076, 17, 0, 196612, 17, 0, 720900, 327694, 0, 5, 14, 0, 65541, 17, 0, 131077, 17, 0, 196613, 17, 0, 720901, 327694, 0, 6, 14, 0, 65542, 17, 0, 131078, 17, 0, 196614, 17, 0, 720902, 327694, 0, 7, 14, 0, 65543, 17, 0, 131079, 17, 0, 196615, 17, 0, 720903, 327694, 0, 8, 14, 0, 65544, 17, 0, 131080, 17, 0, 196616, 17, 0, 720904, 327694, 0, 9, 14, 0, 65545, 17, 0, 131081, 17, 0, 196617, 17, 0, 720905, 327694, 0, 10, 131086, 0, 65546, 458766, 0, 131082, 458766, 0, 196618, 458766, 0, 262154, 458766, 0, 327690, 458766, 0, 393226, 458766, 0, 458762, 458766, 0, 524298, 458766, 0, 589834, 458766, 0, 655370, 458766, 0, 720906, 196622, 0) + +[sub_resource type="TileSetAtlasSource" id="TileSetAtlasSource_rlgbh"] +texture = ExtResource("1_r6rba") +texture_region_size = Vector2i(32, 32) +0:0/0 = 0 +0:0/0/physics_layer_0/linear_velocity = Vector2(0, 0) +0:0/0/physics_layer_0/angular_velocity = 0.0 +0:0/0/physics_layer_0/polygon_0/points = PackedVector2Array(-16, -16, 16, -16, 16, 16, -16, 16) +1:0/0 = 0 +1:0/0/physics_layer_0/linear_velocity = Vector2(0, 0) +1:0/0/physics_layer_0/angular_velocity = 0.0 +1:0/0/physics_layer_0/polygon_0/points = PackedVector2Array(-16, -16, 16, -16, 16, 16, -16, 16) +2:0/0 = 0 +2:0/0/physics_layer_0/linear_velocity = Vector2(0, 0) +2:0/0/physics_layer_0/angular_velocity = 0.0 +2:0/0/physics_layer_0/polygon_0/points = PackedVector2Array(-16, -16, 16, -16, 16, 16, -16, 16) +3:0/0 = 0 +3:0/0/physics_layer_0/linear_velocity = Vector2(0, 0) +3:0/0/physics_layer_0/angular_velocity = 0.0 +3:0/0/physics_layer_0/polygon_0/points = PackedVector2Array(-16, -16, 16, -16, 16, 16, -16, 16) +4:0/0 = 0 +4:0/0/physics_layer_0/linear_velocity = Vector2(0, 0) +4:0/0/physics_layer_0/angular_velocity = 0.0 +4:0/0/physics_layer_0/polygon_0/points = PackedVector2Array(-16, -16, 16, -16, 16, 16, -16, 16) +5:0/0 = 0 +5:0/0/physics_layer_0/linear_velocity = Vector2(0, 0) +5:0/0/physics_layer_0/angular_velocity = 0.0 +5:0/0/physics_layer_0/polygon_0/points = PackedVector2Array(-16, -16, 16, -16, 16, 16, -16, 16) +6:0/0 = 0 +6:0/0/physics_layer_0/linear_velocity = Vector2(0, 0) +6:0/0/physics_layer_0/angular_velocity = 0.0 +6:0/0/physics_layer_0/polygon_0/points = PackedVector2Array(-16, -16, 16, -16, 16, 16, -16, 16) +7:0/0 = 0 +7:0/0/physics_layer_0/linear_velocity = Vector2(0, 0) +7:0/0/physics_layer_0/angular_velocity = 0.0 +7:0/0/physics_layer_0/polygon_0/points = PackedVector2Array(-16, -16, 16, -16, 16, 16, -16, 16) +0:1/0 = 0 +0:1/0/physics_layer_0/linear_velocity = Vector2(0, 0) +0:1/0/physics_layer_0/angular_velocity = 0.0 +0:1/0/physics_layer_0/polygon_0/points = PackedVector2Array(-16, -16, 16, -16, 16, 16, -16, 16) +1:1/0 = 0 +1:1/0/physics_layer_0/linear_velocity = Vector2(0, 0) +1:1/0/physics_layer_0/angular_velocity = 0.0 +1:1/0/physics_layer_0/polygon_0/points = PackedVector2Array(-16, -16, 16, -16, 16, 16, -16, 16) +2:1/0 = 0 +2:1/0/physics_layer_0/linear_velocity = Vector2(0, 0) +2:1/0/physics_layer_0/angular_velocity = 0.0 +2:1/0/physics_layer_0/polygon_0/points = PackedVector2Array(-16, -16, 16, -16, 16, 16, -16, 16) +3:1/0 = 0 +3:1/0/physics_layer_0/linear_velocity = Vector2(0, 0) +3:1/0/physics_layer_0/angular_velocity = 0.0 +3:1/0/physics_layer_0/polygon_0/points = PackedVector2Array(-16, -16, 16, -16, 16, 16, -16, 16) +4:1/0 = 0 +4:1/0/physics_layer_0/linear_velocity = Vector2(0, 0) +4:1/0/physics_layer_0/angular_velocity = 0.0 +4:1/0/physics_layer_0/polygon_0/points = PackedVector2Array(-16, -16, 16, -16, 16, 16, -16, 16) +5:1/0 = 0 +5:1/0/physics_layer_0/linear_velocity = Vector2(0, 0) +5:1/0/physics_layer_0/angular_velocity = 0.0 +5:1/0/physics_layer_0/polygon_0/points = PackedVector2Array(-16, -16, 16, -16, 16, 16, -16, 16) +6:1/0 = 0 +6:1/0/physics_layer_0/linear_velocity = Vector2(0, 0) +6:1/0/physics_layer_0/angular_velocity = 0.0 +6:1/0/physics_layer_0/polygon_0/points = PackedVector2Array(-16, -16, 16, -16, 16, 16, -16, 16) +7:1/0 = 0 +7:1/0/physics_layer_0/linear_velocity = Vector2(0, 0) +7:1/0/physics_layer_0/angular_velocity = 0.0 +7:1/0/physics_layer_0/polygon_0/points = PackedVector2Array(-16, -16, 16, -16, 16, 16, -16, 16) + +[sub_resource type="TileSetAtlasSource" id="TileSetAtlasSource_p8m8a"] +texture = ExtResource("2_h4pc5") +texture_region_size = Vector2i(32, 32) +0:0/0 = 0 +0:0/0/physics_layer_0/linear_velocity = Vector2(0, 0) +0:0/0/physics_layer_0/angular_velocity = 0.0 +1:0/0 = 0 +1:0/0/physics_layer_0/linear_velocity = Vector2(0, 0) +1:0/0/physics_layer_0/angular_velocity = 0.0 +2:0/0 = 0 +2:0/0/physics_layer_0/linear_velocity = Vector2(0, 0) +2:0/0/physics_layer_0/angular_velocity = 0.0 + +[sub_resource type="TileSetAtlasSource" id="TileSetAtlasSource_8dpje"] +texture = ExtResource("3_tbs2i") +texture_region_size = Vector2i(32, 32) +0:0/0 = 0 +0:0/0/physics_layer_0/linear_velocity = Vector2(0, 0) +0:0/0/physics_layer_0/angular_velocity = 0.0 +0:0/0/physics_layer_0/polygon_0/points = PackedVector2Array(-16, -9, 16, -9.25, 16, 16, -16, 16) +1:0/0 = 0 +1:0/0/physics_layer_0/linear_velocity = Vector2(0, 0) +1:0/0/physics_layer_0/angular_velocity = 0.0 +1:0/0/physics_layer_0/polygon_0/points = PackedVector2Array(-9.375, -16, 16, -16, 16, 16, -9.125, 16) +2:0/0 = 0 +2:0/0/physics_layer_0/linear_velocity = Vector2(0, 0) +2:0/0/physics_layer_0/angular_velocity = 0.0 +2:0/0/physics_layer_0/polygon_0/points = PackedVector2Array(-16, -16, 8.875, -16, 9.375, 16, -16, 16) + +[sub_resource type="TileSetAtlasSource" id="TileSetAtlasSource_ugfmg"] +texture = ExtResource("4_6kvvw") +texture_region_size = Vector2i(32, 32) +0:0/0 = 0 +0:0/0/physics_layer_0/linear_velocity = Vector2(0, 0) +0:0/0/physics_layer_0/angular_velocity = 0.0 +0:0/0/physics_layer_0/polygon_0/points = PackedVector2Array(-16, -16, 16, -16, 16, 16, -16, 16) +1:0/0 = 0 +1:0/0/physics_layer_0/linear_velocity = Vector2(0, 0) +1:0/0/physics_layer_0/angular_velocity = 0.0 +1:0/0/physics_layer_0/polygon_0/points = PackedVector2Array(-16, -16, 16, -16, 16, 16, -16, 16) +2:0/0 = 0 +2:0/0/physics_layer_0/linear_velocity = Vector2(0, 0) +2:0/0/physics_layer_0/angular_velocity = 0.0 +2:0/0/physics_layer_0/polygon_0/points = PackedVector2Array(-16, -16, 16, -16, 16, 16, -16, 16) +3:0/0 = 0 +3:0/0/physics_layer_0/linear_velocity = Vector2(0, 0) +3:0/0/physics_layer_0/angular_velocity = 0.0 +3:0/0/physics_layer_0/polygon_0/points = PackedVector2Array(-16, -16, 16, -16, 16, 16, -16, 16) +4:0/0 = 0 +4:0/0/physics_layer_0/linear_velocity = Vector2(0, 0) +4:0/0/physics_layer_0/angular_velocity = 0.0 +4:0/0/physics_layer_0/polygon_0/points = PackedVector2Array(-16, -16, 16, -16, 16, 16, -16, 16) + +[resource] +tile_size = Vector2i(32, 32) +physics_layer_0/collision_layer = 1 +sources/14 = SubResource("TileSetAtlasSource_rlgbh") +sources/15 = SubResource("TileSetAtlasSource_p8m8a") +sources/16 = SubResource("TileSetAtlasSource_8dpje") +sources/17 = SubResource("TileSetAtlasSource_ugfmg") +pattern_0 = SubResource("TileMapPattern_po38u") diff --git a/sprites/tiles/brickwall/brickwall_atlas.png b/sprites/tiles/brickwall/brickwall_atlas.png new file mode 100644 index 0000000..f38154b Binary files /dev/null and b/sprites/tiles/brickwall/brickwall_atlas.png differ diff --git a/sprites/tiles/brickwall/brickwall_atlas.png.import b/sprites/tiles/brickwall/brickwall_atlas.png.import new file mode 100644 index 0000000..198d864 --- /dev/null +++ b/sprites/tiles/brickwall/brickwall_atlas.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://1nx3r2uuxchq" +path="res://.godot/imported/brickwall_atlas.png-a192c5636713860bec649abb9cd1b598.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/tiles/brickwall/brickwall_atlas.png" +dest_files=["res://.godot/imported/brickwall_atlas.png-a192c5636713860bec649abb9cd1b598.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/tiles/brickwall/exit1_atlas.png b/sprites/tiles/brickwall/exit1_atlas.png new file mode 100644 index 0000000..70c1df0 Binary files /dev/null and b/sprites/tiles/brickwall/exit1_atlas.png differ diff --git a/sprites/tiles/brickwall/exit1_atlas.png.import b/sprites/tiles/brickwall/exit1_atlas.png.import new file mode 100644 index 0000000..f6f5bd9 --- /dev/null +++ b/sprites/tiles/brickwall/exit1_atlas.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://j65ff4rq7i1f" +path="res://.godot/imported/exit1_atlas.png-5c0f636fc325bbfe0a00dec42923dbeb.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/tiles/brickwall/exit1_atlas.png" +dest_files=["res://.godot/imported/exit1_atlas.png-5c0f636fc325bbfe0a00dec42923dbeb.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/tiles/exits/exit1_atlas.png b/sprites/tiles/exits/exit1_atlas.png new file mode 100644 index 0000000..70c1df0 Binary files /dev/null and b/sprites/tiles/exits/exit1_atlas.png differ diff --git a/sprites/tiles/exits/exit1_atlas.png.import b/sprites/tiles/exits/exit1_atlas.png.import new file mode 100644 index 0000000..7dca96c --- /dev/null +++ b/sprites/tiles/exits/exit1_atlas.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://btojcdxy6i2uc" +path="res://.godot/imported/exit1_atlas.png-f45c99f89cf5c642550297e049e779ef.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/tiles/exits/exit1_atlas.png" +dest_files=["res://.godot/imported/exit1_atlas.png-f45c99f89cf5c642550297e049e779ef.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/tiles/floor/floor_atlas.png b/sprites/tiles/floor/floor_atlas.png new file mode 100644 index 0000000..d50096b Binary files /dev/null and b/sprites/tiles/floor/floor_atlas.png differ diff --git a/sprites/tiles/floor/floor_atlas.png.import b/sprites/tiles/floor/floor_atlas.png.import new file mode 100644 index 0000000..d72ef32 --- /dev/null +++ b/sprites/tiles/floor/floor_atlas.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d32t4dsukrsq2" +path="res://.godot/imported/floor_atlas.png-db45b9c5fd3c21509698189c7061ac9f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/tiles/floor/floor_atlas.png" +dest_files=["res://.godot/imported/floor_atlas.png-db45b9c5fd3c21509698189c7061ac9f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/tiles/frames/brd_atlas.png b/sprites/tiles/frames/brd_atlas.png new file mode 100644 index 0000000..d1f3ecc Binary files /dev/null and b/sprites/tiles/frames/brd_atlas.png differ diff --git a/sprites/tiles/frames/brd_atlas.png.import b/sprites/tiles/frames/brd_atlas.png.import new file mode 100644 index 0000000..d8f98fe --- /dev/null +++ b/sprites/tiles/frames/brd_atlas.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://br3o2fekkyynd" +path="res://.godot/imported/brd_atlas.png-97ea256e600d1be48e06e41674f63c9e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/tiles/frames/brd_atlas.png" +dest_files=["res://.godot/imported/brd_atlas.png-97ea256e600d1be48e06e41674f63c9e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/tiles/frames/brd_hor.png b/sprites/tiles/frames/brd_hor.png new file mode 100644 index 0000000..0c02f1a Binary files /dev/null and b/sprites/tiles/frames/brd_hor.png differ diff --git a/sprites/tiles/frames/brd_hor.png.import b/sprites/tiles/frames/brd_hor.png.import new file mode 100644 index 0000000..74d6780 --- /dev/null +++ b/sprites/tiles/frames/brd_hor.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c03qtpslay1qj" +path="res://.godot/imported/brd_hor.png-b25625741d724860616bbf5aa0747332.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/tiles/frames/brd_hor.png" +dest_files=["res://.godot/imported/brd_hor.png-b25625741d724860616bbf5aa0747332.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/tiles/frames/corner_up.png b/sprites/tiles/frames/corner_up.png index 529f9d4..f41b26f 100644 Binary files a/sprites/tiles/frames/corner_up.png and b/sprites/tiles/frames/corner_up.png differ diff --git a/sprites/tiles/frames/corner_up1.png b/sprites/tiles/frames/corner_up1.png index 0940881..5531f3b 100644 Binary files a/sprites/tiles/frames/corner_up1.png and b/sprites/tiles/frames/corner_up1.png differ