diff --git a/Enemies/Chasing Glowing Ghost.gd b/Enemies/Chasing Glowing Ghost.gd new file mode 100644 index 0000000..8597781 --- /dev/null +++ b/Enemies/Chasing Glowing Ghost.gd @@ -0,0 +1,40 @@ +extends KinematicBody2D + +const SPEED: int = 50 + +var player: KinematicBody2D = null +var velocity: Vector2 = Vector2.ZERO +var health: int = 2 + + +func _physics_process(_delta: float) -> void: + velocity = Vector2.ZERO + + if player and position.distance_to(player.position) > 1: + velocity = position.direction_to(player.position).normalized() * SPEED + + velocity = move_and_slide(velocity) + return + + +func _on_player_detector_body_entered(body: Node) -> void: + if body.is_in_group('player'): + player = body + return + + +func _on_player_detector_body_exited(body: Node) -> void: + if body.is_in_group('player'): + player = null + return + + +func _on_hitbox_area_entered(area: Area2D) -> void: + if area.is_in_group('player_weapon_1'): + health -= 1 + elif area.is_in_group('player_weapon_2'): + health -= 2 + + if health <= 0: + call_deferred('queue_free') + return diff --git a/Enemies/Chasing Glowing Ghost.tscn b/Enemies/Chasing Glowing Ghost.tscn new file mode 100644 index 0000000..ef34429 --- /dev/null +++ b/Enemies/Chasing Glowing Ghost.tscn @@ -0,0 +1,80 @@ +[gd_scene load_steps=8 format=2] + +[ext_resource path="res://Resources/Level_5_Enemy_Glowing_Ghost_Occluder.tres" type="OccluderPolygon2D" id=1] +[ext_resource path="res://Sprites/Assets/Light.png" type="Texture" id=2] +[ext_resource path="res://Sprites/Enemies/Chasing_Glowing_Ghost.png" type="Texture" id=3] +[ext_resource path="res://Enemies/Chasing Glowing Ghost.gd" type="Script" id=4] + +[sub_resource type="CapsuleShape2D" id=3] +radius = 1.5 +height = 3.0 + +[sub_resource type="CapsuleShape2D" id=1] +radius = 3.0 +height = 2.0 + +[sub_resource type="CircleShape2D" id=2] +radius = 50.0 + +[node name="Chasing Glowing Ghost" type="KinematicBody2D" groups=["enemy"]] +light_mask = 0 +collision_layer = 4 +collision_mask = 5 +script = ExtResource( 4 ) + +[node name="Sprite" type="Sprite" parent="."] +light_mask = 4 +position = Vector2( 0, -3 ) +texture = ExtResource( 3 ) +offset = Vector2( 0, 0.5 ) + +[node name="Collision" type="CollisionShape2D" parent="."] +visible = false +light_mask = 0 +rotation = 1.5708 +shape = SubResource( 3 ) + +[node name="Hitbox" type="Area2D" parent="." groups=["enemy_hitbox_1"]] +light_mask = 0 +collision_layer = 4 +collision_mask = 2 + +[node name="CollisionShape2D" type="CollisionShape2D" parent="Hitbox"] +visible = false +light_mask = 0 +position = Vector2( 0, -2.5 ) +shape = SubResource( 1 ) + +[node name="Player Detector" type="Area2D" parent="."] +light_mask = 0 +collision_layer = 0 +collision_mask = 2 +input_pickable = false +monitorable = false + +[node name="CollisionShape2D" type="CollisionShape2D" parent="Player Detector"] +visible = false +light_mask = 0 +shape = SubResource( 2 ) + +[node name="Light" type="Light2D" parent="."] +texture = ExtResource( 2 ) +texture_scale = 0.5 +color = Color( 0.984314, 0.94902, 0.211765, 0.392157 ) +energy = 2.0 +range_item_cull_mask = 11 + +[node name="Eyes" type="Light2D" parent="."] +scale = Vector2( 0.1, 0.1 ) +texture = ExtResource( 2 ) +offset = Vector2( 5, -35 ) +range_item_cull_mask = 4 +shadow_item_cull_mask = 0 + +[node name="Occluder" type="LightOccluder2D" parent="."] +show_behind_parent = true +occluder = ExtResource( 1 ) + +[connection signal="area_entered" from="Hitbox" to="." method="_on_hitbox_area_entered"] +[connection signal="body_entered" from="Player Detector" to="." method="_on_player_detector_body_entered"] +[connection signal="body_exited" from="Player Detector" to="." method="_on_player_detector_body_exited"] diff --git a/Enemies/Creepy Glowing Ghost.gd b/Enemies/Creepy Glowing Ghost.gd new file mode 100644 index 0000000..f8c4166 --- /dev/null +++ b/Enemies/Creepy Glowing Ghost.gd @@ -0,0 +1,53 @@ +extends KinematicBody2D + +const SPEED: int = 35 + +export var creepy_hand: PackedScene + +var player: KinematicBody2D = null +var velocity: Vector2 = Vector2.ZERO +var health: int = 3 + + +func _physics_process(_delta: float) -> void: + velocity = Vector2.ZERO + + if player: + if position.distance_to(player.position) < 40: + velocity = position.direction_to(player.position).normalized() * -SPEED + elif position.distance_to(player.position) > 41: + velocity = position.direction_to(player.position).normalized() * SPEED + + velocity = move_and_slide(velocity) + return + + +func _on_player_detector_body_entered(body: Node) -> void: + if body.is_in_group('player'): + player = body + return + + +func _on_player_detector_body_exited(body: Node) -> void: + if body.is_in_group('player'): + player = null + return + + +func _on_projectile_timer_timeout() -> void: + if player: + var projectile: Node = creepy_hand.instance() + projectile.init($Sprite.global_position, player.position) + get_tree().get_current_scene().get_node('Projectiles').add_child(projectile) + return + + +func _on_hitbox_area_entered(area: Area2D) -> void: + if area.is_in_group('player_weapon_1'): + health -= 1 + elif area.is_in_group('player_weapon_2'): + health -= 2 + + if health <= 0: + call_deferred('queue_free') + return diff --git a/Enemies/Creepy Glowing Ghost.tscn b/Enemies/Creepy Glowing Ghost.tscn new file mode 100644 index 0000000..340f0b5 --- /dev/null +++ b/Enemies/Creepy Glowing Ghost.tscn @@ -0,0 +1,87 @@ +[gd_scene load_steps=9 format=2] + +[ext_resource path="res://Resources/Level_5_Enemy_Glowing_Ghost_Occluder.tres" type="OccluderPolygon2D" id=1] +[ext_resource path="res://Sprites/Assets/Light.png" type="Texture" id=2] +[ext_resource path="res://Sprites/Enemies/Creepy_Glowing_Ghost.png" type="Texture" id=3] +[ext_resource path="res://Enemies/Creepy Glowing Ghost.gd" type="Script" id=4] +[ext_resource path="res://Enemies/Projectiles/Creepy Hand.tscn" type="PackedScene" id=5] + +[sub_resource type="CapsuleShape2D" id=3] +radius = 1.5 +height = 3.0 + +[sub_resource type="CapsuleShape2D" id=1] +radius = 3.0 +height = 2.0 + +[sub_resource type="CircleShape2D" id=2] +radius = 60.0 + +[node name="Creepy Glowing Ghost" type="KinematicBody2D" groups=["enemy"]] +light_mask = 0 +collision_layer = 4 +collision_mask = 5 +script = ExtResource( 4 ) +creepy_hand = ExtResource( 5 ) + +[node name="Sprite" type="Sprite" parent="."] +light_mask = 4 +position = Vector2( 0, -3 ) +texture = ExtResource( 3 ) +offset = Vector2( 0, 0.5 ) + +[node name="Collision" type="CollisionShape2D" parent="."] +visible = false +light_mask = 0 +rotation = 1.5708 +shape = SubResource( 3 ) + +[node name="Hitbox" type="Area2D" parent="." groups=["enemy_hitbox_1"]] +light_mask = 0 +collision_layer = 4 +collision_mask = 2 + +[node name="CollisionShape2D" type="CollisionShape2D" parent="Hitbox"] +visible = false +light_mask = 0 +position = Vector2( 0, -2.5 ) +shape = SubResource( 1 ) + +[node name="Player Detector" type="Area2D" parent="."] +light_mask = 0 +collision_layer = 0 +collision_mask = 2 +input_pickable = false +monitorable = false + +[node name="CollisionShape2D" type="CollisionShape2D" parent="Player Detector"] +visible = false +light_mask = 0 +shape = SubResource( 2 ) + +[node name="Light" type="Light2D" parent="."] +texture = ExtResource( 2 ) +texture_scale = 0.5 +color = Color( 0.698039, 0.211765, 0.984314, 0.392157 ) +energy = 2.0 +range_item_cull_mask = 11 + +[node name="Eyes" type="Light2D" parent="."] +scale = Vector2( 0.1, 0.1 ) +texture = ExtResource( 2 ) +offset = Vector2( 5, -35 ) +range_item_cull_mask = 4 +shadow_item_cull_mask = 0 + +[node name="Occluder" type="LightOccluder2D" parent="."] +show_behind_parent = true +occluder = ExtResource( 1 ) + +[node name="Projectile Timer" type="Timer" parent="."] +wait_time = 2.0 +autostart = true + +[connection signal="area_entered" from="Hitbox" to="." method="_on_hitbox_area_entered"] +[connection signal="body_entered" from="Player Detector" to="." method="_on_player_detector_body_entered"] +[connection signal="body_exited" from="Player Detector" to="." method="_on_player_detector_body_exited"] +[connection signal="timeout" from="Projectile Timer" to="." method="_on_projectile_timer_timeout"] diff --git a/Enemies/DemonBoss.gd b/Enemies/DemonBoss.gd new file mode 100644 index 0000000..1c17330 --- /dev/null +++ b/Enemies/DemonBoss.gd @@ -0,0 +1,50 @@ +extends KinematicBody2D + +const SPEED: int = 30 + +var player: KinematicBody2D = null +var velocity: Vector2 = Vector2.ZERO + +var status = "walk" + +func _physics_process(_delta: float) -> void: + velocity = Vector2.ZERO + + if player: + velocity = position.direction_to(player.position).normalized() * SPEED + var angle = position.angle_to_point(player.position) + if abs(angle) > PI/2: + $AnimatedSprite1.scale.x = -0.563 + else: + $AnimatedSprite1.scale.x = 0.563 + + velocity = move_and_slide(velocity) + return + + +func _on_player_detector_area_entered(area: Area2D) -> void: + if area.get_parent().name == 'Player': + player = area.get_parent() + $AnimatedSprite1.animation = "Walk" + return + + +func _on_player_detector_area_exited(_area: Area2D): + player = null + $AnimatedSprite1.animation = "Idle" + return + + +func _on_Player_Attack_area_entered(area: Area2D) -> void: + if area.get_parent().name == 'Player': + player = area.get_parent() + $AnimatedSprite1.animation = "Attack" + status = "attack" + return + + +func _on_Player_Attack_area_exited(area: Area2D) -> void: + player = null + if not status == "attack": + $AnimatedSprite1.animation = "Walk" + return diff --git a/Enemies/DemonBoss.tscn b/Enemies/DemonBoss.tscn new file mode 100644 index 0000000..ddcd95e --- /dev/null +++ b/Enemies/DemonBoss.tscn @@ -0,0 +1,404 @@ +[gd_scene load_steps=68 format=2] + +[ext_resource path="res://Resources/Level_5_Enemy_Glowing_Ghost_Occluder.tres" type="OccluderPolygon2D" id=1] +[ext_resource path="res://Sprites/Assets/Light.png" type="Texture" id=2] +[ext_resource path="res://Sprites/Enemies/demon_slime_FREE_v1.0_288x160_spritesheet.png" type="Texture" id=3] +[ext_resource path="res://Enemies/DemonBoss.gd" type="Script" id=4] + +[sub_resource type="AtlasTexture" id=3] +flags = 4 +atlas = ExtResource( 3 ) +region = Rect2( 0, 640, 288, 160 ) + +[sub_resource type="AtlasTexture" id=4] +flags = 4 +atlas = ExtResource( 3 ) +region = Rect2( 288, 640, 288, 160 ) + +[sub_resource type="AtlasTexture" id=5] +flags = 4 +atlas = ExtResource( 3 ) +region = Rect2( 576, 640, 288, 160 ) + +[sub_resource type="AtlasTexture" id=6] +flags = 4 +atlas = ExtResource( 3 ) +region = Rect2( 864, 640, 288, 160 ) + +[sub_resource type="AtlasTexture" id=7] +flags = 4 +atlas = ExtResource( 3 ) +region = Rect2( 1152, 640, 288, 160 ) + +[sub_resource type="AtlasTexture" id=8] +flags = 4 +atlas = ExtResource( 3 ) +region = Rect2( 1440, 640, 288, 160 ) + +[sub_resource type="AtlasTexture" id=9] +flags = 4 +atlas = ExtResource( 3 ) +region = Rect2( 1728, 640, 288, 160 ) + +[sub_resource type="AtlasTexture" id=10] +flags = 4 +atlas = ExtResource( 3 ) +region = Rect2( 2016, 640, 288, 160 ) + +[sub_resource type="AtlasTexture" id=11] +flags = 4 +atlas = ExtResource( 3 ) +region = Rect2( 2304, 640, 288, 160 ) + +[sub_resource type="AtlasTexture" id=12] +flags = 4 +atlas = ExtResource( 3 ) +region = Rect2( 2592, 640, 288, 160 ) + +[sub_resource type="AtlasTexture" id=13] +flags = 4 +atlas = ExtResource( 3 ) +region = Rect2( 2880, 640, 288, 160 ) + +[sub_resource type="AtlasTexture" id=14] +flags = 4 +atlas = ExtResource( 3 ) +region = Rect2( 3168, 640, 288, 160 ) + +[sub_resource type="AtlasTexture" id=15] +flags = 4 +atlas = ExtResource( 3 ) +region = Rect2( 3456, 640, 288, 160 ) + +[sub_resource type="AtlasTexture" id=16] +flags = 4 +atlas = ExtResource( 3 ) +region = Rect2( 3744, 640, 288, 160 ) + +[sub_resource type="AtlasTexture" id=17] +flags = 4 +atlas = ExtResource( 3 ) +region = Rect2( 4032, 640, 288, 160 ) + +[sub_resource type="AtlasTexture" id=18] +flags = 4 +atlas = ExtResource( 3 ) +region = Rect2( 4320, 640, 288, 160 ) + +[sub_resource type="AtlasTexture" id=19] +flags = 4 +atlas = ExtResource( 3 ) +region = Rect2( 4608, 640, 288, 160 ) + +[sub_resource type="AtlasTexture" id=20] +flags = 4 +atlas = ExtResource( 3 ) +region = Rect2( 4896, 640, 288, 160 ) + +[sub_resource type="AtlasTexture" id=21] +flags = 4 +atlas = ExtResource( 3 ) +region = Rect2( 5184, 640, 288, 160 ) + +[sub_resource type="AtlasTexture" id=22] +flags = 4 +atlas = ExtResource( 3 ) +region = Rect2( 5472, 640, 288, 160 ) + +[sub_resource type="AtlasTexture" id=23] +flags = 4 +atlas = ExtResource( 3 ) +region = Rect2( 5760, 640, 288, 160 ) + +[sub_resource type="AtlasTexture" id=24] +flags = 4 +atlas = ExtResource( 3 ) +region = Rect2( 6048, 640, 288, 160 ) + +[sub_resource type="AtlasTexture" id=25] +flags = 4 +atlas = ExtResource( 3 ) +region = Rect2( 0, 160, 288, 160 ) + +[sub_resource type="AtlasTexture" id=26] +flags = 4 +atlas = ExtResource( 3 ) +region = Rect2( 288, 160, 288, 160 ) + +[sub_resource type="AtlasTexture" id=27] +flags = 4 +atlas = ExtResource( 3 ) +region = Rect2( 576, 160, 288, 160 ) + +[sub_resource type="AtlasTexture" id=28] +flags = 4 +atlas = ExtResource( 3 ) +region = Rect2( 864, 160, 288, 160 ) + +[sub_resource type="AtlasTexture" id=29] +flags = 4 +atlas = ExtResource( 3 ) +region = Rect2( 1152, 160, 288, 160 ) + +[sub_resource type="AtlasTexture" id=30] +flags = 4 +atlas = ExtResource( 3 ) +region = Rect2( 1440, 160, 288, 160 ) + +[sub_resource type="AtlasTexture" id=31] +flags = 4 +atlas = ExtResource( 3 ) +region = Rect2( 1728, 160, 288, 160 ) + +[sub_resource type="AtlasTexture" id=32] +flags = 4 +atlas = ExtResource( 3 ) +region = Rect2( 2016, 160, 288, 160 ) + +[sub_resource type="AtlasTexture" id=33] +flags = 4 +atlas = ExtResource( 3 ) +region = Rect2( 2304, 160, 288, 160 ) + +[sub_resource type="AtlasTexture" id=34] +flags = 4 +atlas = ExtResource( 3 ) +region = Rect2( 2592, 160, 288, 160 ) + +[sub_resource type="AtlasTexture" id=35] +flags = 4 +atlas = ExtResource( 3 ) +region = Rect2( 2880, 160, 288, 160 ) + +[sub_resource type="AtlasTexture" id=36] +flags = 4 +atlas = ExtResource( 3 ) +region = Rect2( 3168, 160, 288, 160 ) + +[sub_resource type="AtlasTexture" id=37] +flags = 4 +atlas = ExtResource( 3 ) +region = Rect2( 0, 0, 288, 160 ) + +[sub_resource type="AtlasTexture" id=38] +flags = 4 +atlas = ExtResource( 3 ) +region = Rect2( 288, 0, 288, 160 ) + +[sub_resource type="AtlasTexture" id=39] +flags = 4 +atlas = ExtResource( 3 ) +region = Rect2( 576, 0, 288, 160 ) + +[sub_resource type="AtlasTexture" id=40] +flags = 4 +atlas = ExtResource( 3 ) +region = Rect2( 864, 0, 288, 160 ) + +[sub_resource type="AtlasTexture" id=41] +flags = 4 +atlas = ExtResource( 3 ) +region = Rect2( 1152, 0, 288, 160 ) + +[sub_resource type="AtlasTexture" id=42] +flags = 4 +atlas = ExtResource( 3 ) +region = Rect2( 1440, 0, 288, 160 ) + +[sub_resource type="AtlasTexture" id=43] +flags = 4 +atlas = ExtResource( 3 ) +region = Rect2( 0, 320, 288, 160 ) + +[sub_resource type="AtlasTexture" id=44] +flags = 4 +atlas = ExtResource( 3 ) +region = Rect2( 288, 320, 288, 160 ) + +[sub_resource type="AtlasTexture" id=45] +flags = 4 +atlas = ExtResource( 3 ) +region = Rect2( 576, 320, 288, 160 ) + +[sub_resource type="AtlasTexture" id=46] +flags = 4 +atlas = ExtResource( 3 ) +region = Rect2( 864, 320, 288, 160 ) + +[sub_resource type="AtlasTexture" id=47] +flags = 4 +atlas = ExtResource( 3 ) +region = Rect2( 1152, 320, 288, 160 ) + +[sub_resource type="AtlasTexture" id=48] +flags = 4 +atlas = ExtResource( 3 ) +region = Rect2( 1440, 320, 288, 160 ) + +[sub_resource type="AtlasTexture" id=49] +flags = 4 +atlas = ExtResource( 3 ) +region = Rect2( 1728, 320, 288, 160 ) + +[sub_resource type="AtlasTexture" id=50] +flags = 4 +atlas = ExtResource( 3 ) +region = Rect2( 2016, 320, 288, 160 ) + +[sub_resource type="AtlasTexture" id=51] +flags = 4 +atlas = ExtResource( 3 ) +region = Rect2( 2304, 320, 288, 160 ) + +[sub_resource type="AtlasTexture" id=52] +flags = 4 +atlas = ExtResource( 3 ) +region = Rect2( 2592, 320, 288, 160 ) + +[sub_resource type="AtlasTexture" id=53] +flags = 4 +atlas = ExtResource( 3 ) +region = Rect2( 2880, 320, 288, 160 ) + +[sub_resource type="AtlasTexture" id=54] +flags = 4 +atlas = ExtResource( 3 ) +region = Rect2( 3168, 320, 288, 160 ) + +[sub_resource type="AtlasTexture" id=55] +flags = 4 +atlas = ExtResource( 3 ) +region = Rect2( 3456, 320, 288, 160 ) + +[sub_resource type="AtlasTexture" id=56] +flags = 4 +atlas = ExtResource( 3 ) +region = Rect2( 3744, 320, 288, 160 ) + +[sub_resource type="AtlasTexture" id=57] +flags = 4 +atlas = ExtResource( 3 ) +region = Rect2( 4032, 320, 288, 160 ) + +[sub_resource type="AtlasTexture" id=58] +flags = 4 +atlas = ExtResource( 3 ) +region = Rect2( 0, 480, 288, 160 ) + +[sub_resource type="AtlasTexture" id=59] +flags = 4 +atlas = ExtResource( 3 ) +region = Rect2( 288, 480, 288, 160 ) + +[sub_resource type="AtlasTexture" id=60] +flags = 4 +atlas = ExtResource( 3 ) +region = Rect2( 576, 480, 288, 160 ) + +[sub_resource type="AtlasTexture" id=61] +flags = 4 +atlas = ExtResource( 3 ) +region = Rect2( 864, 480, 288, 160 ) + +[sub_resource type="AtlasTexture" id=62] +flags = 4 +atlas = ExtResource( 3 ) +region = Rect2( 1152, 480, 288, 160 ) + +[sub_resource type="SpriteFrames" id=63] +animations = [ { +"frames": [ SubResource( 3 ), SubResource( 4 ), SubResource( 5 ), SubResource( 6 ), SubResource( 7 ), SubResource( 8 ), SubResource( 9 ), SubResource( 10 ), SubResource( 11 ), SubResource( 12 ), SubResource( 13 ), SubResource( 14 ), SubResource( 15 ), SubResource( 16 ), SubResource( 17 ), SubResource( 18 ), SubResource( 19 ), SubResource( 20 ), SubResource( 21 ), SubResource( 22 ), SubResource( 23 ), SubResource( 24 ) ], +"loop": true, +"name": "Death", +"speed": 5.0 +}, { +"frames": [ SubResource( 25 ), SubResource( 26 ), SubResource( 27 ), SubResource( 28 ), SubResource( 29 ), SubResource( 30 ), SubResource( 31 ), SubResource( 32 ), SubResource( 33 ), SubResource( 34 ), SubResource( 35 ), SubResource( 36 ) ], +"loop": true, +"name": "Walk", +"speed": 5.0 +}, { +"frames": [ SubResource( 37 ), SubResource( 38 ), SubResource( 39 ), SubResource( 40 ), SubResource( 41 ), SubResource( 42 ) ], +"loop": true, +"name": "Idle", +"speed": 5.0 +}, { +"frames": [ SubResource( 43 ), SubResource( 44 ), SubResource( 45 ), SubResource( 46 ), SubResource( 47 ), SubResource( 48 ), SubResource( 49 ), SubResource( 50 ), SubResource( 51 ), SubResource( 52 ), SubResource( 53 ), SubResource( 54 ), SubResource( 55 ), SubResource( 56 ), SubResource( 57 ) ], +"loop": true, +"name": "Attack", +"speed": 15.0 +}, { +"frames": [ SubResource( 58 ), SubResource( 59 ), SubResource( 60 ), SubResource( 61 ), SubResource( 62 ) ], +"loop": true, +"name": "Hit", +"speed": 5.0 +} ] + +[sub_resource type="CapsuleShape2D" id=1] +radius = 3.0 +height = 2.0 + +[sub_resource type="CircleShape2D" id=2] +radius = 50.0 + +[node name="DemonBoss" type="KinematicBody2D" groups=["enemies"]] +collision_layer = 2 +script = ExtResource( 4 ) + +[node name="AnimatedSprite1" type="AnimatedSprite" parent="."] +position = Vector2( 1, -3 ) +scale = Vector2( 0.5, 0.5 ) +frames = SubResource( 63 ) +animation = "Idle" +playing = true + +[node name="Hitbox" type="CollisionShape2D" parent="."] +visible = false +position = Vector2( 0, -3 ) +shape = SubResource( 1 ) + +[node name="Player Detector" type="Area2D" parent="."] +collision_layer = 0 +collision_mask = 2 +input_pickable = false +monitorable = false + +[node name="CollisionShape2D" type="CollisionShape2D" parent="Player Detector"] +scale = Vector2( 2, 2 ) +shape = SubResource( 2 ) + +[node name="Player Attack" type="Area2D" parent="."] +visible = false +collision_layer = 0 +collision_mask = 2 +input_pickable = false +monitorable = false + +[node name="Attack" type="CollisionShape2D" parent="Player Attack"] +position = Vector2( 0, 7 ) +scale = Vector2( 1, 0.75 ) +shape = SubResource( 2 ) + +[node name="Light2D" type="Light2D" parent="."] +visible = false +scale = Vector2( 0.5, 0.5 ) +texture = ExtResource( 2 ) +color = Color( 0.984314, 0.94902, 0.211765, 0.392157 ) +energy = 2.0 +range_item_cull_mask = 11 + +[node name="Light2DEyes" type="Light2D" parent="."] +visible = false +scale = Vector2( 0.1, 0.1 ) +texture = ExtResource( 2 ) +offset = Vector2( 5, -40 ) +range_item_cull_mask = 4 + +[node name="LightOccluder2D" type="LightOccluder2D" parent="."] +visible = false +show_behind_parent = true +occluder = ExtResource( 1 ) + +[connection signal="area_entered" from="Player Detector" to="." method="_on_player_detector_area_entered"] +[connection signal="area_exited" from="Player Detector" to="." method="_on_player_detector_area_exited"] +[connection signal="area_entered" from="Player Attack" to="." method="_on_Player_Attack_area_entered"] +[connection signal="area_exited" from="Player Attack" to="." method="_on_Player_Attack_area_exited"] diff --git a/Enemies/Glowing Ghost.gd b/Enemies/Flaming Skull.gd similarity index 99% rename from Enemies/Glowing Ghost.gd rename to Enemies/Flaming Skull.gd index 2825b5c..33b597d 100644 --- a/Enemies/Glowing Ghost.gd +++ b/Enemies/Flaming Skull.gd @@ -19,6 +19,7 @@ func _physics_process(_delta: float) -> void: func _on_player_detector_area_entered(area: Area2D) -> void: if area.get_parent().name == 'Player': player = area.get_parent() + return diff --git a/Enemies/Glowing Ghost.tscn b/Enemies/Flaming Skull.tscn similarity index 60% rename from Enemies/Glowing Ghost.tscn rename to Enemies/Flaming Skull.tscn index 78e26a0..33e2f68 100644 --- a/Enemies/Glowing Ghost.tscn +++ b/Enemies/Flaming Skull.tscn @@ -1,9 +1,32 @@ -[gd_scene load_steps=7 format=2] +[gd_scene load_steps=11 format=2] [ext_resource path="res://Resources/Level_5_Enemy_Glowing_Ghost_Occluder.tres" type="OccluderPolygon2D" id=1] [ext_resource path="res://Sprites/Assets/Light.png" type="Texture" id=2] -[ext_resource path="res://Sprites/Enemies/Glowing_Ghost.png" type="Texture" id=3] -[ext_resource path="res://Enemies/Glowing Ghost.gd" type="Script" id=4] +[ext_resource path="res://Enemies/Flaming Skull.gd" type="Script" id=4] +[ext_resource path="res://Sprites/Enemies/flaming skull design.png" type="Texture" id=5] + +[sub_resource type="AtlasTexture" id=3] +flags = 4 +atlas = ExtResource( 5 ) +region = Rect2( 0, 0, 672, 672 ) + +[sub_resource type="AtlasTexture" id=4] +flags = 4 +atlas = ExtResource( 5 ) +region = Rect2( 672, 0, 672, 672 ) + +[sub_resource type="AtlasTexture" id=5] +flags = 4 +atlas = ExtResource( 5 ) +region = Rect2( 1344, 0, 672, 672 ) + +[sub_resource type="SpriteFrames" id=6] +animations = [ { +"frames": [ SubResource( 3 ), SubResource( 4 ), SubResource( 5 ) ], +"loop": true, +"name": "default", +"speed": 5.0 +} ] [sub_resource type="CapsuleShape2D" id=1] radius = 3.0 @@ -12,14 +35,14 @@ height = 2.0 [sub_resource type="CircleShape2D" id=2] radius = 50.0 -[node name="Glowing Ghost" type="KinematicBody2D" groups=["enemies"]] +[node name="Flaming Skull" type="KinematicBody2D" groups=["enemies"]] collision_layer = 2 script = ExtResource( 4 ) -[node name="Sprite" type="Sprite" parent="."] -light_mask = 4 -position = Vector2( 0, -3 ) -texture = ExtResource( 3 ) +[node name="AnimatedSprite" type="AnimatedSprite" parent="."] +scale = Vector2( 0.0446429, 0.0446429 ) +frames = SubResource( 6 ) +playing = true [node name="Hitbox" type="CollisionShape2D" parent="."] visible = false @@ -37,6 +60,7 @@ visible = false shape = SubResource( 2 ) [node name="Light2D" type="Light2D" parent="."] +visible = false scale = Vector2( 0.5, 0.5 ) texture = ExtResource( 2 ) color = Color( 0.984314, 0.94902, 0.211765, 0.392157 ) @@ -44,12 +68,14 @@ energy = 2.0 range_item_cull_mask = 11 [node name="Light2DEyes" type="Light2D" parent="."] +visible = false scale = Vector2( 0.1, 0.1 ) texture = ExtResource( 2 ) offset = Vector2( 5, -40 ) range_item_cull_mask = 4 [node name="LightOccluder2D" type="LightOccluder2D" parent="."] +visible = false show_behind_parent = true occluder = ExtResource( 1 ) diff --git a/Enemies/Hellhound.gd b/Enemies/Hellhound.gd new file mode 100644 index 0000000..8b49b5b --- /dev/null +++ b/Enemies/Hellhound.gd @@ -0,0 +1,47 @@ +extends KinematicBody2D + +const SPEED: int = 60 + +var player: KinematicBody2D = null +var velocity: Vector2 = Vector2.ZERO + + +func _physics_process(_delta: float) -> void: + velocity = Vector2.ZERO + + if player: + velocity = position.direction_to(player.position).normalized() * SPEED + var angle = position.angle_to_point(player.position) + if abs(angle) > PI/2: + $AnimatedSprite1.scale.x = -0.563 + else: + $AnimatedSprite1.scale.x = 0.563 + + velocity = move_and_slide(velocity) + return + + +func _on_player_detector_area_entered(area: Area2D) -> void: + if area.get_parent().name == 'Player': + player = area.get_parent() + $AnimatedSprite1.animation = "Running" + return + + +func _on_player_detector_area_exited(_area: Area2D): + player = null + $AnimatedSprite1.animation = "Idle" + return + + +func _on_Player_Attack_area_entered(area: Area2D) -> void: + if area.get_parent().name == 'Player': + player = area.get_parent() + $AnimatedSprite1.animation = "Jump" + return + + +func _on_Player_Attack_area_exited(area: Area2D) -> void: + player = null + $AnimatedSprite1.animation = "Running" + return diff --git a/Enemies/Hellhound.tscn b/Enemies/Hellhound.tscn new file mode 100644 index 0000000..ce42851 --- /dev/null +++ b/Enemies/Hellhound.tscn @@ -0,0 +1,183 @@ +[gd_scene load_steps=27 format=2] + +[ext_resource path="res://Resources/Level_5_Enemy_Glowing_Ghost_Occluder.tres" type="OccluderPolygon2D" id=1] +[ext_resource path="res://Sprites/Assets/Light.png" type="Texture" id=2] +[ext_resource path="res://Sprites/Enemies/hell-hound-idle.png" type="Texture" id=3] +[ext_resource path="res://Enemies/Hellhound.gd" type="Script" id=4] +[ext_resource path="res://Sprites/Enemies/hell-hound-jump.png" type="Texture" id=5] +[ext_resource path="res://Sprites/Enemies/hell-hound-run.png" type="Texture" id=6] + +[sub_resource type="AtlasTexture" id=9] +flags = 4 +atlas = ExtResource( 3 ) +region = Rect2( 0, 0, 64, 32 ) + +[sub_resource type="AtlasTexture" id=10] +flags = 4 +atlas = ExtResource( 3 ) +region = Rect2( 64, 0, 64, 32 ) + +[sub_resource type="AtlasTexture" id=11] +flags = 4 +atlas = ExtResource( 3 ) +region = Rect2( 128, 0, 64, 32 ) + +[sub_resource type="AtlasTexture" id=12] +flags = 4 +atlas = ExtResource( 3 ) +region = Rect2( 192, 0, 64, 32 ) + +[sub_resource type="AtlasTexture" id=13] +flags = 4 +atlas = ExtResource( 3 ) +region = Rect2( 256, 0, 64, 32 ) + +[sub_resource type="AtlasTexture" id=14] +flags = 4 +atlas = ExtResource( 3 ) +region = Rect2( 320, 0, 64, 32 ) + +[sub_resource type="AtlasTexture" id=3] +flags = 4 +atlas = ExtResource( 5 ) +region = Rect2( 0, 0, 65, 48 ) + +[sub_resource type="AtlasTexture" id=4] +flags = 4 +atlas = ExtResource( 5 ) +region = Rect2( 65, 0, 65, 48 ) + +[sub_resource type="AtlasTexture" id=5] +flags = 4 +atlas = ExtResource( 5 ) +region = Rect2( 130, 0, 65, 48 ) + +[sub_resource type="AtlasTexture" id=6] +flags = 4 +atlas = ExtResource( 5 ) +region = Rect2( 195, 0, 65, 48 ) + +[sub_resource type="AtlasTexture" id=7] +flags = 4 +atlas = ExtResource( 5 ) +region = Rect2( 260, 0, 65, 48 ) + +[sub_resource type="AtlasTexture" id=8] +flags = 4 +atlas = ExtResource( 5 ) +region = Rect2( 325, 0, 65, 48 ) + +[sub_resource type="AtlasTexture" id=15] +flags = 4 +atlas = ExtResource( 6 ) +region = Rect2( 0, 0, 67, 32 ) + +[sub_resource type="AtlasTexture" id=16] +flags = 4 +atlas = ExtResource( 6 ) +region = Rect2( 67, 0, 67, 32 ) + +[sub_resource type="AtlasTexture" id=17] +flags = 4 +atlas = ExtResource( 6 ) +region = Rect2( 134, 0, 67, 32 ) + +[sub_resource type="AtlasTexture" id=18] +flags = 4 +atlas = ExtResource( 6 ) +region = Rect2( 201, 0, 67, 32 ) + +[sub_resource type="AtlasTexture" id=19] +flags = 4 +atlas = ExtResource( 6 ) +region = Rect2( 268, 0, 67, 32 ) + +[sub_resource type="SpriteFrames" id=20] +animations = [ { +"frames": [ SubResource( 9 ), SubResource( 10 ), SubResource( 11 ), SubResource( 12 ), SubResource( 13 ), SubResource( 14 ) ], +"loop": true, +"name": "Idle", +"speed": 3.0 +}, { +"frames": [ SubResource( 3 ), SubResource( 4 ), SubResource( 5 ), SubResource( 6 ), SubResource( 7 ), SubResource( 8 ) ], +"loop": true, +"name": "Jump", +"speed": 8.0 +}, { +"frames": [ SubResource( 15 ), SubResource( 16 ), SubResource( 17 ), SubResource( 18 ), SubResource( 19 ) ], +"loop": true, +"name": "Running", +"speed": 5.0 +} ] + +[sub_resource type="CapsuleShape2D" id=1] +radius = 3.0 +height = 2.0 + +[sub_resource type="CircleShape2D" id=2] +radius = 50.0 + +[node name="Hellhound" type="KinematicBody2D" groups=["enemies"]] +collision_layer = 2 +script = ExtResource( 4 ) + +[node name="AnimatedSprite1" type="AnimatedSprite" parent="."] +position = Vector2( 1, -3 ) +scale = Vector2( 0.5625, 0.5625 ) +frames = SubResource( 20 ) +animation = "Idle" +frame = 5 +playing = true + +[node name="Hitbox" type="CollisionShape2D" parent="."] +visible = false +position = Vector2( 0, -3 ) +shape = SubResource( 1 ) + +[node name="Player Detector" type="Area2D" parent="."] +collision_layer = 0 +collision_mask = 2 +input_pickable = false +monitorable = false + +[node name="CollisionShape2D" type="CollisionShape2D" parent="Player Detector"] +visible = false +scale = Vector2( 1.5, 1.5 ) +shape = SubResource( 2 ) + +[node name="Player Attack" type="Area2D" parent="."] +visible = false +collision_layer = 0 +collision_mask = 2 +input_pickable = false +monitorable = false + +[node name="Attack" type="CollisionShape2D" parent="Player Attack"] +visible = false +scale = Vector2( 0.5, 0.5 ) +shape = SubResource( 2 ) + +[node name="Light2D" type="Light2D" parent="."] +visible = false +scale = Vector2( 0.5, 0.5 ) +texture = ExtResource( 2 ) +color = Color( 0.984314, 0.94902, 0.211765, 0.392157 ) +energy = 2.0 +range_item_cull_mask = 11 + +[node name="Light2DEyes" type="Light2D" parent="."] +visible = false +scale = Vector2( 0.1, 0.1 ) +texture = ExtResource( 2 ) +offset = Vector2( 5, -40 ) +range_item_cull_mask = 4 + +[node name="LightOccluder2D" type="LightOccluder2D" parent="."] +visible = false +show_behind_parent = true +occluder = ExtResource( 1 ) + +[connection signal="area_entered" from="Player Detector" to="." method="_on_player_detector_area_entered"] +[connection signal="area_exited" from="Player Detector" to="." method="_on_player_detector_area_exited"] +[connection signal="area_entered" from="Player Attack" to="." method="_on_Player_Attack_area_entered"] +[connection signal="area_exited" from="Player Attack" to="." method="_on_Player_Attack_area_exited"] diff --git a/Enemies/Projectiles/Creepy Hand.gd b/Enemies/Projectiles/Creepy Hand.gd new file mode 100644 index 0000000..6e9b749 --- /dev/null +++ b/Enemies/Projectiles/Creepy Hand.gd @@ -0,0 +1,28 @@ +extends Area2D + +const SPEED: int = 35 + +var player_position: Vector2 +var velocity: Vector2 = Vector2.ZERO + + +func init(spawn_position: Vector2, shoot_position: Vector2) -> void: + position = spawn_position + player_position = shoot_position + $Sprite.rotation = player_position.angle_to_point(position) + deg2rad(90) + return + + +func _physics_process(delta: float) -> void: + velocity = Vector2.ZERO + + if position.distance_to(player_position) > 1: + velocity = position.direction_to(player_position).normalized() * SPEED * delta + + position += velocity + return + + +func _on_tifetime_timeout() -> void: + call_deferred('queue_free') + return diff --git a/Enemies/Projectiles/Creepy Hand.tscn b/Enemies/Projectiles/Creepy Hand.tscn new file mode 100644 index 0000000..9005976 --- /dev/null +++ b/Enemies/Projectiles/Creepy Hand.tscn @@ -0,0 +1,41 @@ +[gd_scene load_steps=5 format=2] + +[ext_resource path="res://Sprites/Assets/Light.png" type="Texture" id=1] +[ext_resource path="res://Sprites/Enemies/Projectiles/Creepy_Hand.png" type="Texture" id=2] +[ext_resource path="res://Enemies/Projectiles/Creepy Hand.gd" type="Script" id=3] + +[sub_resource type="CircleShape2D" id=1] +radius = 12.0 + +[node name="Creepy Hand" type="Area2D" groups=["enemy_projectile_1"]] +light_mask = 0 +scale = Vector2( 0.5, 0.5 ) +collision_layer = 0 +collision_mask = 2 +input_pickable = false +monitoring = false +script = ExtResource( 3 ) + +[node name="Sprite" type="Sprite" parent="."] +light_mask = 0 +texture = ExtResource( 2 ) + +[node name="CollisionShape2D" type="CollisionShape2D" parent="."] +visible = false +light_mask = 0 +shape = SubResource( 1 ) + +[node name="Light" type="Light2D" parent="."] +texture = ExtResource( 1 ) +texture_scale = 0.3 +color = Color( 0.698039, 0.211765, 0.984314, 1 ) +energy = 1.5 +range_item_cull_mask = 15 +shadow_item_cull_mask = 0 + +[node name="Lifetime" type="Timer" parent="."] +wait_time = 2.0 +one_shot = true +autostart = true + +[connection signal="timeout" from="Lifetime" to="." method="_on_tifetime_timeout"] diff --git a/GUI/HUD.gd b/GUI/HUD.gd index d216863..34f8d12 100644 --- a/GUI/HUD.gd +++ b/GUI/HUD.gd @@ -1,6 +1,7 @@ extends CanvasLayer signal add_currency(amount) +var weapon = "sword" func _on_Add_Currency_pressed() -> void: @@ -33,6 +34,7 @@ func _on_select_bow_pressed() -> void: $'Weapon Selection/Sword'.set_visible(true) $'Weapon Selection'.set_visible(false) + weapon = "bow" return @@ -46,6 +48,7 @@ func _on_select_javelin_pressed() -> void: $'Weapon Selection/Sword'.set_visible(true) $'Weapon Selection'.set_visible(false) + weapon = "javelin" return @@ -59,6 +62,7 @@ func _on_select_staff_pressed() -> void: $'Weapon Selection/Sword'.set_visible(true) $'Weapon Selection'.set_visible(false) + weapon = "staff" return @@ -72,4 +76,5 @@ func _on_select_sword_pressed() -> void: $'Weapon Selection/Staff'.set_visible(true) $'Weapon Selection'.set_visible(false) + weapon = "sword" return diff --git a/GUI/Level Select Menu.tscn b/GUI/Level Select Menu.tscn index 7a8c8c6..be9933a 100644 --- a/GUI/Level Select Menu.tscn +++ b/GUI/Level Select Menu.tscn @@ -11,7 +11,7 @@ [node name="Level Select Menu" type="Node"] script = ExtResource( 7 ) -[node name="MarginContainer" type="MarginContainer" parent="."] +[node name="Menu" type="CenterContainer" parent="."] margin_left = 10.0 margin_top = 10.0 margin_right = 310.0 @@ -21,54 +21,50 @@ __meta__ = { "_edit_use_anchors_": false } -[node name="CenterContainer" type="CenterContainer" parent="MarginContainer"] -margin_right = 300.0 -margin_bottom = 160.0 - -[node name="HBoxContainer" type="HBoxContainer" parent="MarginContainer/CenterContainer"] +[node name="Menu Options" type="HBoxContainer" parent="Menu"] margin_left = 20.0 margin_top = 60.0 margin_right = 280.0 margin_bottom = 100.0 -[node name="Hub World" type="TextureButton" parent="MarginContainer/CenterContainer/HBoxContainer"] +[node name="Hub World" type="TextureButton" parent="Menu/Menu Options"] margin_right = 40.0 margin_bottom = 40.0 texture_normal = ExtResource( 6 ) -[node name="Level 1" type="TextureButton" parent="MarginContainer/CenterContainer/HBoxContainer"] +[node name="Level 1" type="TextureButton" parent="Menu/Menu Options"] margin_left = 44.0 margin_right = 84.0 margin_bottom = 40.0 texture_normal = ExtResource( 2 ) -[node name="Level 2" type="TextureButton" parent="MarginContainer/CenterContainer/HBoxContainer"] +[node name="Level 2" type="TextureButton" parent="Menu/Menu Options"] margin_left = 88.0 margin_right = 128.0 margin_bottom = 40.0 texture_normal = ExtResource( 4 ) -[node name="Level 3" type="TextureButton" parent="MarginContainer/CenterContainer/HBoxContainer"] +[node name="Level 3" type="TextureButton" parent="Menu/Menu Options"] margin_left = 132.0 margin_right = 172.0 margin_bottom = 40.0 texture_normal = ExtResource( 1 ) -[node name="Level 4" type="TextureButton" parent="MarginContainer/CenterContainer/HBoxContainer"] +[node name="Level 4" type="TextureButton" parent="Menu/Menu Options"] margin_left = 176.0 margin_right = 216.0 margin_bottom = 40.0 texture_normal = ExtResource( 3 ) -[node name="Level 5" type="TextureButton" parent="MarginContainer/CenterContainer/HBoxContainer"] +[node name="Level 5" type="TextureButton" parent="Menu/Menu Options"] margin_left = 220.0 margin_right = 260.0 margin_bottom = 40.0 texture_normal = ExtResource( 5 ) -[connection signal="pressed" from="MarginContainer/CenterContainer/HBoxContainer/Hub World" to="." method="_on_hub_world_button_pressed"] -[connection signal="pressed" from="MarginContainer/CenterContainer/HBoxContainer/Level 1" to="." method="_on_level_1_button_pressed"] -[connection signal="pressed" from="MarginContainer/CenterContainer/HBoxContainer/Level 2" to="." method="_on_level_2_button_pressed"] -[connection signal="pressed" from="MarginContainer/CenterContainer/HBoxContainer/Level 3" to="." method="_on_level_3_button_pressed"] -[connection signal="pressed" from="MarginContainer/CenterContainer/HBoxContainer/Level 4" to="." method="_on_level_4_button_pressed"] -[connection signal="pressed" from="MarginContainer/CenterContainer/HBoxContainer/Level 5" to="." method="_on_level_5_button_pressed"] +[connection signal="pressed" from="Menu/Menu Options/Hub World" to="." method="_on_hub_world_button_pressed"] +[connection signal="pressed" from="Menu/Menu Options/Level 1" to="." method="_on_level_1_button_pressed"] +[connection signal="pressed" from="Menu/Menu Options/Level 2" to="." method="_on_level_2_button_pressed"] +[connection signal="pressed" from="Menu/Menu Options/Level 3" to="." method="_on_level_3_button_pressed"] +[connection signal="pressed" from="Menu/Menu Options/Level 4" to="." method="_on_level_4_button_pressed"] +[connection signal="pressed" from="Menu/Menu Options/Level 5" to="." method="_on_level_5_button_pressed"] diff --git a/GUI/Main Menu.tscn b/GUI/Main Menu.tscn index b529e84..9b7cfab 100644 --- a/GUI/Main Menu.tscn +++ b/GUI/Main Menu.tscn @@ -44,7 +44,7 @@ __meta__ = { [node name="Menu Elements" type="VBoxContainer" parent="Menu"] margin_left = 42.0 -margin_top = 11.0 +margin_top = 10.0 margin_right = 257.0 margin_bottom = 149.0 alignment = 2 @@ -61,7 +61,7 @@ valign = 1 [node name="Menu Options" type="VBoxContainer" parent="Menu/Menu Elements"] margin_top = 44.0 margin_right = 215.0 -margin_bottom = 138.0 +margin_bottom = 139.0 [node name="Continue" type="CenterContainer" parent="Menu/Menu Elements/Menu Options"] margin_right = 215.0 @@ -79,19 +79,19 @@ texture_disabled = ExtResource( 6 ) [node name="New Game" type="CenterContainer" parent="Menu/Menu Elements/Menu Options"] margin_top = 19.0 margin_right = 215.0 -margin_bottom = 33.0 +margin_bottom = 34.0 [node name="New Game Button" type="TextureButton" parent="Menu/Menu Elements/Menu Options/New Game"] margin_left = 66.0 margin_right = 149.0 -margin_bottom = 14.0 +margin_bottom = 15.0 texture_normal = ExtResource( 5 ) texture_hover = ExtResource( 7 ) [node name="Settings" type="CenterContainer" parent="Menu/Menu Elements/Menu Options"] -margin_top = 37.0 +margin_top = 38.0 margin_right = 215.0 -margin_bottom = 56.0 +margin_bottom = 57.0 [node name="Settings Button" type="TextureButton" parent="Menu/Menu Elements/Menu Options/Settings"] margin_left = 77.0 @@ -101,9 +101,9 @@ texture_normal = ExtResource( 1 ) texture_hover = ExtResource( 10 ) [node name="Credits" type="CenterContainer" parent="Menu/Menu Elements/Menu Options"] -margin_top = 60.0 +margin_top = 61.0 margin_right = 215.0 -margin_bottom = 75.0 +margin_bottom = 76.0 [node name="Credits Button" type="TextureButton" parent="Menu/Menu Elements/Menu Options/Credits"] margin_left = 82.0 @@ -113,9 +113,9 @@ texture_normal = ExtResource( 3 ) texture_hover = ExtResource( 9 ) [node name="Quit" type="CenterContainer" parent="Menu/Menu Elements/Menu Options"] -margin_top = 79.0 +margin_top = 80.0 margin_right = 215.0 -margin_bottom = 94.0 +margin_bottom = 95.0 [node name="Quit Button" type="TextureButton" parent="Menu/Menu Elements/Menu Options/Quit"] margin_left = 90.0 @@ -127,7 +127,7 @@ texture_hover = ExtResource( 11 ) [node name="BGM" type="AudioStreamPlayer" parent="."] pause_mode = 2 stream = ExtResource( 15 ) -volume_db = -15.0 +volume_db = -12.0 autoplay = true [node name="Menu Button Hover" type="AudioStreamPlayer" parent="."] diff --git a/GUI/Splash Screen.tscn b/GUI/Splash Screen.tscn index ae20341..46568e1 100644 --- a/GUI/Splash Screen.tscn +++ b/GUI/Splash Screen.tscn @@ -14,5 +14,5 @@ script = ExtResource( 2 ) [node name="BGM" type="AudioStreamPlayer" parent="."] stream = ExtResource( 3 ) -volume_db = -15.0 +volume_db = -10.0 autoplay = true diff --git a/Levels/Interactables/Silver Barrier.gd b/Levels/Interactables/Silver Barrier.gd new file mode 100644 index 0000000..7041dbf --- /dev/null +++ b/Levels/Interactables/Silver Barrier.gd @@ -0,0 +1,23 @@ +extends StaticBody2D + +export var alignment: String = 'V' + + +func _ready() -> void: + if not alignment in ['V', 'H']: + print('Silver Barrier rotation needs to be "V" or "H"') + elif alignment == 'H': + rotation_degrees = 90 + return + + +func _on_unlock_body_entered(body: Node) -> void: + if not 'player' in body.get_groups(): + return + + if body.has_item('Silver Key'): + body.remove_item('Silver Key') + $Sprite.animation = 'open' + $Collision.set_deferred('disabled', true) + $Unlock.set_deferred('monitoring', false) + return diff --git a/Levels/Interactables/Silver Barrier.tscn b/Levels/Interactables/Silver Barrier.tscn new file mode 100644 index 0000000..43cb211 --- /dev/null +++ b/Levels/Interactables/Silver Barrier.tscn @@ -0,0 +1,51 @@ +[gd_scene load_steps=7 format=2] + +[ext_resource path="res://Sprites/Levels/Interactables/Silver_Barrier_Open.png" type="Texture" id=1] +[ext_resource path="res://Sprites/Levels/Interactables/Silver_Barrier_Closed.png" type="Texture" id=2] +[ext_resource path="res://Levels/Interactables/Silver Barrier.gd" type="Script" id=3] + +[sub_resource type="SpriteFrames" id=1] +animations = [ { +"frames": [ ExtResource( 1 ) ], +"loop": true, +"name": "open", +"speed": 5.0 +}, { +"frames": [ ExtResource( 2 ) ], +"loop": true, +"name": "closed", +"speed": 5.0 +} ] + +[sub_resource type="RectangleShape2D" id=2] +extents = Vector2( 6, 8 ) + +[sub_resource type="RectangleShape2D" id=3] +extents = Vector2( 12, 10 ) + +[node name="Silver Barrier" type="StaticBody2D"] +collision_mask = 0 +script = ExtResource( 3 ) + +[node name="Sprite" type="AnimatedSprite" parent="."] +light_mask = 8 +frames = SubResource( 1 ) +animation = "closed" + +[node name="Collision" type="CollisionShape2D" parent="."] +light_mask = 0 +shape = SubResource( 2 ) + +[node name="Unlock" type="Area2D" parent="."] +light_mask = 0 +collision_layer = 0 +collision_mask = 2 +input_pickable = false +monitorable = false + +[node name="CollisionShape2D" type="CollisionShape2D" parent="Unlock"] +visible = false +light_mask = 0 +shape = SubResource( 3 ) + +[connection signal="body_entered" from="Unlock" to="." method="_on_unlock_body_entered"] diff --git a/Levels/Interactables/Silver Key Pickup.gd b/Levels/Interactables/Silver Key Pickup.gd new file mode 100644 index 0000000..219a404 --- /dev/null +++ b/Levels/Interactables/Silver Key Pickup.gd @@ -0,0 +1,9 @@ +extends Area2D + + +func _on_silver_key_pickup_body_entered(body: Node): + if 'player' in body.get_groups(): + body.add_item('Silver Key') + + call_deferred('queue_free') + return diff --git a/Levels/Interactables/Silver Key Pickup.tscn b/Levels/Interactables/Silver Key Pickup.tscn new file mode 100644 index 0000000..7f78ef6 --- /dev/null +++ b/Levels/Interactables/Silver Key Pickup.tscn @@ -0,0 +1,23 @@ +[gd_scene load_steps=4 format=2] + +[ext_resource path="res://Sprites/Levels/Interactables/Silver_Key.png" type="Texture" id=1] +[ext_resource path="res://Levels/Interactables/Silver Key Pickup.gd" type="Script" id=2] + +[sub_resource type="CircleShape2D" id=1] + +[node name="Silver Key Pickup" type="Area2D"] +collision_layer = 0 +collision_mask = 2 +monitorable = false +script = ExtResource( 2 ) + +[node name="Sprite" type="Sprite" parent="."] +texture = ExtResource( 1 ) +centered = false + +[node name="CollisionShape2D" type="CollisionShape2D" parent="."] +visible = false +position = Vector2( 8, 8 ) +shape = SubResource( 1 ) + +[connection signal="body_entered" from="." to="." method="_on_silver_key_pickup_body_entered"] diff --git a/Levels/Level 4.gd b/Levels/Level 4.gd new file mode 100644 index 0000000..2bb0e4d --- /dev/null +++ b/Levels/Level 4.gd @@ -0,0 +1,24 @@ +extends Node2D + +var gems: int = 4 + +func _ready() -> void: + #$YSort/Player.position = get_viewport_rect().size / 2 + $YSort/Player.load_hud($HUD) + return + + +func _on_TreasureChest_gem_collected() -> void: + gems -= 1 + + if gems == 0: + $YSort/Items/Door/doorClosed.visible = false + $YSort/Items/Door/doorOpened.visible = true + $DoorCollision.layers = 5 + + + +func _on_NextArea_area_entered(area: Area2D) -> void: + if area.get_parent().name == 'Player': + $YSort/Player.position.x = 195 + $YSort/Player.position.y = -335 diff --git a/Levels/Level 4.tscn b/Levels/Level 4.tscn new file mode 100644 index 0000000..887ef92 --- /dev/null +++ b/Levels/Level 4.tscn @@ -0,0 +1,226 @@ +[gd_scene load_steps=31 format=2] + +[ext_resource path="res://Sprites/Levels/Environment/fire_column_medium_12.png" type="Texture" id=1] +[ext_resource path="res://Enemies/Hellhound.tscn" type="PackedScene" id=2] +[ext_resource path="res://Sprites/Levels/Environment/fire_column_medium_3.png" type="Texture" id=3] +[ext_resource path="res://Sprites/Levels/Environment/fire_column_medium_9.png" type="Texture" id=4] +[ext_resource path="res://Levels/Objects/Door.tscn" type="PackedScene" id=5] +[ext_resource path="res://Sprites/Levels/Environment/fire_column_medium_10.png" type="Texture" id=6] +[ext_resource path="res://Sprites/Levels/Environment/fire_column_medium_4.png" type="Texture" id=7] +[ext_resource path="res://Sprites/Levels/Environment/fire_column_medium_6.png" type="Texture" id=8] +[ext_resource path="res://Levels/Level 4.gd" type="Script" id=9] +[ext_resource path="res://Sprites/Levels/Environment/fire_column_medium_1.png" type="Texture" id=10] +[ext_resource path="res://Sprites/Levels/Environment/fire_column_medium_13.png" type="Texture" id=11] +[ext_resource path="res://Sprites/Levels/Environment/fire_column_medium_14.png" type="Texture" id=12] +[ext_resource path="res://Sprites/Levels/Environment/fire_column_medium_11.png" type="Texture" id=13] +[ext_resource path="res://Sprites/Levels/Environment/fire_column_medium_8.png" type="Texture" id=14] +[ext_resource path="res://Resources/Level_4_Tileset.tres" type="TileSet" id=15] +[ext_resource path="res://Levels/Objects/TreasureChest.tscn" type="PackedScene" id=16] +[ext_resource path="res://Sprites/Levels/Environment/fire_column_medium_2.png" type="Texture" id=17] +[ext_resource path="res://Sprites/Levels/Environment/fire_column_medium_7.png" type="Texture" id=18] +[ext_resource path="res://Sprites/Assets/transparent16x16.png" type="Texture" id=19] +[ext_resource path="res://Sprites/Levels/Environment/fire_column_medium_5.png" type="Texture" id=20] +[ext_resource path="res://Player/Player.tscn" type="PackedScene" id=21] +[ext_resource path="res://GUI/Pause Screen.tscn" type="PackedScene" id=22] +[ext_resource path="res://GUI/HUD.tscn" type="PackedScene" id=23] +[ext_resource path="res://Enemies/Flaming Skull.tscn" type="PackedScene" id=24] +[ext_resource path="res://Enemies/DemonBoss.tscn" type="PackedScene" id=26] + +[sub_resource type="SpriteFrames" id=1] +animations = [ { +"frames": [ ExtResource( 10 ), ExtResource( 17 ), ExtResource( 3 ), ExtResource( 7 ), ExtResource( 20 ), ExtResource( 8 ), ExtResource( 18 ), ExtResource( 14 ), ExtResource( 4 ), ExtResource( 6 ), ExtResource( 13 ), ExtResource( 1 ), ExtResource( 11 ), ExtResource( 12 ) ], +"loop": true, +"name": "default", +"speed": 10.0 +} ] + +[sub_resource type="ConvexPolygonShape2D" id=10] +points = PoolVector2Array( 16, 16, 0, 16, 0, 0, 16, 0 ) + +[sub_resource type="TileSet" id=9] +0/name = "transparent16x16.png 0" +0/texture = ExtResource( 19 ) +0/tex_offset = Vector2( 0, 0 ) +0/modulate = Color( 1, 1, 1, 1 ) +0/region = Rect2( 0, 0, 16, 16 ) +0/tile_mode = 0 +0/occluder_offset = Vector2( 0, 0 ) +0/navigation_offset = Vector2( 0, 0 ) +0/shape_offset = Vector2( 0, 0 ) +0/shape_transform = Transform2D( 1, 0, 0, 1, 0, 0 ) +0/shape = SubResource( 10 ) +0/shape_one_way = false +0/shape_one_way_margin = 1.0 +0/shapes = [ { +"autotile_coord": Vector2( 0, 0 ), +"one_way": false, +"one_way_margin": 1.0, +"shape": SubResource( 10 ), +"shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 ) +} ] +0/z_index = 0 + +[sub_resource type="RectangleShape2D" id=11] +extents = Vector2( 39, 10 ) + +[sub_resource type="RectangleShape2D" id=12] +extents = Vector2( 26.5, 10 ) + +[node name="World" type="Node2D"] +script = ExtResource( 9 ) + +[node name="BGTileMap" type="TileMap" parent="."] +tile_set = ExtResource( 15 ) +cell_size = Vector2( 16, 16 ) +cell_custom_transform = Transform2D( 16, 0, 0, 16, 0, 0 ) +format = 1 +tile_data = PoolIntArray( -851986, 0, 1, -851985, 0, 2, -851984, 0, 2, -851983, 0, 2, -851982, 0, 2, -851981, 0, 2, -851980, 0, 2, -851979, 0, 2, -851978, 0, 2, -851977, 0, 2, -851976, 0, 2, -851975, 0, 2, -851974, 0, 2, -851973, 0, 2, -851972, 0, 2, -851971, 0, 2, -851970, 0, 2, -851969, 0, 2, -917504, 0, 2, -917503, 0, 2, -917502, 0, 2, -917501, 0, 2, -917500, 0, 2, -917499, 0, 2, -917498, 0, 2, -917497, 0, 2, -917496, 0, 2, -917495, 0, 2, -917494, 0, 2, -917493, 0, 2, -917492, 0, 2, -917491, 0, 2, -917490, 0, 2, -917489, 0, 2, -917488, 0, 2, -917487, 0, 2, -917486, 0, 2, -917485, 0, 2, -917484, 0, 2, -917483, 0, 2, -917482, 0, 2, -917481, 0, 2, -917480, 0, 2, -917479, 0, 2, -917478, 0, 2, -917477, 0, 2, -917476, 0, 2, -917475, 0, 2, -917474, 0, 2, -917473, 0, 2, -917472, 0, 2, -917471, 0, 2, -917470, 0, 2, -917469, 0, 2, -917468, 0, 2, -917467, 0, 3, -786450, 0, 65537, -786449, 0, 65538, -786448, 0, 65538, -786447, 0, 65538, -786446, 0, 65538, -786445, 0, 65538, -786444, 0, 65538, -786443, 0, 65538, -786442, 0, 65538, -786441, 0, 65538, -786440, 0, 65538, -786439, 0, 65538, -786438, 0, 65538, -786437, 0, 65538, -786436, 0, 65538, -786435, 0, 65538, -786434, 0, 65538, -786433, 0, 65538, -851968, 0, 65538, -851967, 0, 65538, -851966, 0, 65538, -851965, 0, 65538, -851964, 0, 65538, -851963, 0, 65538, -851962, 0, 65538, -851961, 0, 65538, -851960, 0, 65538, -851959, 0, 65538, -851958, 0, 65538, -851957, 0, 65538, -851956, 0, 65538, -851955, 0, 65538, -851954, 0, 65538, -851953, 0, 65538, -851952, 0, 65538, -851951, 0, 65538, -851950, 0, 65538, -851949, 0, 65538, -851948, 0, 65538, -851947, 0, 65538, -851946, 0, 65538, -851945, 0, 65538, -851944, 0, 65538, -851943, 0, 65538, -851942, 0, 65538, -851941, 0, 65538, -851940, 0, 65538, -851939, 0, 65538, -851938, 0, 65538, -851937, 0, 65538, -851936, 0, 65538, -851935, 0, 65538, -851934, 0, 65538, -851933, 0, 65538, -851932, 0, 65538, -851931, 0, 65539, -720914, 0, 65537, -720913, 0, 65538, -720912, 0, 65538, -720911, 0, 65538, -720910, 0, 65538, -720909, 0, 65538, -720908, 0, 65538, -720907, 0, 65538, -720906, 0, 65538, -720905, 0, 65538, -720904, 0, 65538, -720903, 0, 65538, -720902, 0, 65538, -720901, 0, 65538, -720900, 0, 65538, -720899, 0, 65538, -720898, 0, 65538, -720897, 0, 65538, -786432, 0, 65538, -786431, 0, 65538, -786430, 0, 65538, -786429, 0, 65538, -786428, 0, 65538, -786427, 0, 65538, -786426, 0, 65538, -786425, 0, 65538, -786424, 0, 65538, -786423, 0, 65538, -786422, 0, 65538, -786421, 0, 65538, -786420, 0, 65538, -786419, 0, 65538, -786418, 0, 65538, -786417, 0, 65538, -786416, 0, 65538, -786415, 0, 65538, -786414, 0, 65538, -786413, 0, 65538, -786412, 0, 65538, -786411, 0, 65538, -786410, 0, 65538, -786409, 0, 65538, -786408, 0, 65538, -786407, 0, 65538, -786406, 0, 65538, -786405, 0, 65538, -786404, 0, 65538, -786403, 0, 65538, -786402, 0, 65538, -786401, 0, 65538, -786400, 0, 65538, -786399, 0, 65538, -786398, 0, 65538, -786397, 0, 65538, -786396, 0, 65538, -786395, 0, 65539, -655378, 0, 65537, -655377, 0, 65538, -655376, 0, 65538, -655375, 0, 65538, -655374, 0, 65538, -655373, 0, 65538, -655372, 0, 65538, -655371, 0, 65538, -655370, 0, 65538, -655369, 0, 65538, -655368, 0, 65538, -655367, 0, 65538, -655366, 0, 65538, -655365, 0, 65538, -655364, 0, 65538, -655363, 0, 65538, -655362, 0, 65538, -655361, 0, 65538, -720896, 0, 65538, -720895, 0, 65538, -720894, 0, 65538, -720893, 0, 65538, -720892, 0, 65538, -720891, 0, 65538, -720890, 0, 65538, -720889, 0, 65538, -720888, 0, 65538, -720887, 0, 65538, -720886, 0, 65538, -720885, 0, 65538, -720884, 0, 65538, -720883, 0, 65538, -720882, 0, 65538, -720881, 0, 65538, -720880, 0, 65538, -720879, 0, 65538, -720878, 0, 65538, -720877, 0, 65538, -720876, 0, 65538, -720875, 0, 65538, -720874, 0, 65538, -720873, 0, 65538, -720872, 0, 65538, -720871, 0, 65538, -720870, 0, 65538, -720869, 0, 65538, -720868, 0, 65538, -720867, 0, 65538, -720866, 0, 65538, -720865, 0, 65538, -720864, 0, 65538, -720863, 0, 65538, -720862, 0, 65538, -720861, 0, 65538, -720860, 0, 65538, -720859, 0, 65539, -589842, 0, 65537, -589841, 0, 65538, -589840, 0, 65538, -589839, 0, 65538, -589838, 0, 65538, -589837, 0, 65538, -589836, 0, 65538, -589835, 0, 65538, -589834, 0, 65538, -589833, 0, 65538, -589832, 0, 65538, -589831, 0, 65538, -589830, 0, 65538, -589829, 0, 65538, -589828, 0, 65538, -589827, 0, 65538, -589826, 0, 65538, -589825, 0, 65538, -655360, 0, 65538, -655359, 0, 65538, -655358, 0, 65538, -655357, 0, 65538, -655356, 0, 65538, -655355, 0, 65538, -655354, 0, 65538, -655353, 0, 65538, -655352, 0, 65538, -655351, 0, 65538, -655350, 0, 65538, -655349, 0, 65538, -655348, 0, 65538, -655347, 0, 65538, -655346, 0, 65538, -655345, 0, 65538, -655344, 0, 65538, -655343, 0, 65538, -655342, 0, 65538, -655341, 0, 65538, -655340, 0, 65538, -655339, 0, 65538, -655338, 0, 65538, -655337, 0, 65538, -655336, 0, 65538, -655335, 0, 65538, -655334, 0, 65538, -655333, 0, 65538, -655332, 0, 65538, -655331, 0, 65538, -655330, 0, 65538, -655329, 0, 65538, -655328, 0, 65538, -655327, 0, 65538, -655326, 0, 65538, -655325, 0, 65538, -655324, 0, 65538, -655323, 0, 65539, -524306, 0, 65537, -524305, 0, 65538, -524304, 0, 65538, -524303, 0, 65538, -524302, 0, 65538, -524301, 0, 65538, -524300, 0, 65538, -524299, 0, 65538, -524298, 0, 65538, -524297, 0, 65538, -524296, 0, 65538, -524295, 0, 65538, -524294, 0, 65538, -524293, 0, 65538, -524292, 0, 65538, -524291, 0, 65538, -524290, 0, 65538, -524289, 0, 65538, -589824, 0, 65538, -589823, 0, 65538, -589822, 0, 65538, -589821, 0, 65538, -589820, 0, 65538, -589819, 0, 65538, -589818, 0, 65538, -589817, 0, 65538, -589816, 0, 65538, -589815, 0, 65538, -589814, 0, 65538, -589813, 0, 65538, -589812, 0, 65538, -589811, 0, 65538, -589810, 0, 65538, -589809, 0, 65538, -589808, 0, 65538, -589807, 0, 65538, -589806, 0, 65538, -589805, 0, 65538, -589804, 0, 65538, -589803, 0, 65538, -589802, 0, 65538, -589801, 0, 65538, -589800, 0, 65538, -589799, 0, 65538, -589798, 0, 65538, -589797, 0, 65538, -589796, 0, 65538, -589795, 0, 65538, -589794, 0, 65538, -589793, 0, 65538, -589792, 0, 65538, -589791, 0, 65538, -589790, 0, 65538, -589789, 0, 65538, -589788, 0, 65538, -589787, 0, 65539, -458770, 0, 65537, -458769, 0, 65538, -458768, 0, 65538, -458767, 0, 65538, -458766, 0, 65538, -458765, 0, 65538, -458764, 0, 65538, -458763, 0, 65538, -458762, 0, 65538, -458761, 0, 65538, -458760, 0, 65538, -458759, 0, 65538, -458758, 0, 65538, -458757, 0, 65538, -458756, 0, 65538, -458755, 0, 65538, -458754, 0, 65538, -458753, 0, 65538, -524288, 0, 65538, -524287, 0, 65538, -524286, 0, 65538, -524285, 0, 65538, -524284, 0, 65538, -524283, 0, 65538, -524282, 0, 65538, -524281, 0, 65538, -524280, 0, 65538, -524279, 0, 65538, -524278, 0, 65538, -524277, 0, 65538, -524276, 0, 65538, -524275, 0, 65538, -524274, 0, 65538, -524273, 0, 65538, -524272, 0, 65538, -524271, 0, 65538, -524270, 0, 65538, -524269, 0, 65538, -524268, 0, 65538, -524267, 0, 65538, -524266, 0, 65538, -524265, 0, 65538, -524264, 0, 65538, -524263, 0, 65538, -524262, 0, 65538, -524261, 0, 65538, -524260, 0, 65538, -524259, 0, 65538, -524258, 0, 65538, -524257, 0, 65538, -524256, 0, 65538, -524255, 0, 65538, -524254, 0, 65538, -524253, 0, 65538, -524252, 0, 65538, -524251, 0, 65539, -393234, 0, 65537, -393233, 0, 65538, -393232, 0, 65538, -393231, 0, 65538, -393230, 0, 65538, -393229, 0, 65538, -393228, 0, 65538, -393227, 0, 65538, -393226, 0, 65538, -393225, 0, 65538, -393224, 0, 65538, -393223, 0, 65538, -393222, 0, 65538, -393221, 0, 65538, -393220, 0, 65538, -393219, 0, 65538, -393218, 0, 65538, -393217, 0, 65538, -458752, 0, 65538, -458751, 0, 65538, -458750, 0, 65538, -458749, 0, 65538, -458748, 0, 65538, -458747, 0, 65538, -458746, 0, 65538, -458745, 0, 65538, -458744, 0, 65538, -458743, 0, 65538, -458742, 0, 65538, -458741, 0, 65538, -458740, 0, 65538, -458739, 0, 65538, -458738, 0, 65538, -458737, 0, 65538, -458736, 0, 65538, -458735, 0, 65538, -458734, 0, 65538, -458733, 0, 65538, -458732, 0, 65538, -458731, 0, 65538, -458730, 0, 65538, -458729, 0, 65538, -458728, 0, 65538, -458727, 0, 65538, -458726, 0, 65538, -458725, 0, 65538, -458724, 0, 65538, -458723, 0, 65538, -458722, 0, 65538, -458721, 0, 65538, -458720, 0, 65538, -458719, 0, 65538, -458718, 0, 65538, -458717, 0, 65538, -458716, 0, 65538, -458715, 0, 65539, -327698, 0, 65537, -327697, 0, 65538, -327696, 0, 65538, -327695, 0, 65538, -327694, 0, 65538, -327693, 0, 65538, -327692, 0, 65538, -327691, 0, 65538, -327690, 0, 65538, -327689, 0, 65538, -327688, 0, 65538, -327687, 0, 65538, -327686, 0, 65538, -327685, 0, 65538, -327684, 0, 65538, -327683, 0, 65538, -327682, 0, 65538, -327681, 0, 65538, -393216, 0, 65538, -393215, 0, 65538, -393214, 0, 65538, -393213, 0, 65538, -393212, 0, 65538, -393211, 0, 65538, -393210, 0, 65538, -393209, 0, 65538, -393208, 0, 65538, -393207, 0, 65538, -393206, 0, 65538, -393205, 0, 65538, -393204, 0, 65538, -393203, 0, 65538, -393202, 0, 65538, -393201, 0, 65538, -393200, 0, 65538, -393199, 0, 65538, -393198, 0, 65538, -393197, 0, 65538, -393196, 0, 65538, -393195, 0, 65538, -393194, 0, 65538, -393193, 0, 65538, -393192, 0, 65538, -393191, 0, 65538, -393190, 0, 65538, -393189, 0, 65538, -393188, 0, 65538, -393187, 0, 65538, -393186, 0, 65538, -393185, 0, 65538, -393184, 0, 65538, -393183, 0, 65538, -393182, 0, 65538, -393181, 0, 65538, -393180, 0, 65538, -393179, 0, 65539, -262162, 0, 65537, -262161, 0, 65538, -262160, 0, 65538, -262159, 0, 65538, -262158, 0, 65538, -262157, 0, 65538, -262156, 0, 65538, -262155, 0, 65538, -262154, 0, 65538, -262153, 0, 65538, -262152, 0, 65538, -262151, 0, 65538, -262150, 0, 65538, -262149, 0, 65538, -262148, 0, 65538, -262147, 0, 65538, -262146, 0, 65538, -262145, 0, 65538, -327680, 0, 65538, -327679, 0, 65538, -327678, 0, 65538, -327677, 0, 65538, -327676, 0, 65538, -327675, 0, 65538, -327674, 0, 65538, -327673, 0, 65538, -327672, 0, 65538, -327671, 0, 65538, -327670, 0, 65538, -327669, 0, 65538, -327668, 0, 65538, -327667, 0, 65538, -327666, 0, 65538, -327665, 0, 65538, -327664, 0, 65538, -327663, 0, 65538, -327662, 0, 65538, -327661, 0, 65538, -327660, 0, 65538, -327659, 0, 65538, -327658, 0, 65538, -327657, 0, 65538, -327656, 0, 65538, -327655, 0, 65538, -327654, 0, 65538, -327653, 0, 65538, -327652, 0, 65538, -327651, 0, 65538, -327650, 0, 65538, -327649, 0, 65538, -327648, 0, 65538, -327647, 0, 65538, -327646, 0, 65538, -327645, 0, 65538, -327644, 0, 65538, -327643, 0, 65539, -196626, 0, 65537, -196625, 0, 65538, -196624, 0, 65538, -196623, 0, 65538, -196622, 0, 65538, -196621, 0, 65538, -196620, 0, 65538, -196619, 0, 65538, -196618, 0, 65538, -196617, 0, 65538, -196616, 0, 65538, -196615, 0, 65538, -196614, 0, 65538, -196613, 0, 65538, -196612, 0, 65538, -196611, 0, 65538, -196610, 0, 65538, -196609, 0, 65538, -262144, 0, 65538, -262143, 0, 65538, -262142, 0, 65538, -262141, 0, 65538, -262140, 0, 65538, -262139, 0, 65538, -262138, 0, 65538, -262137, 0, 65538, -262136, 0, 65538, -262135, 0, 65538, -262134, 0, 65538, -262133, 0, 65538, -262132, 0, 65538, -262131, 0, 65538, -262130, 0, 65538, -262129, 0, 65538, -262128, 0, 65538, -262127, 0, 65538, -262126, 0, 65538, -262125, 0, 65538, -262124, 0, 65538, -262123, 0, 65538, -262122, 0, 65538, -262121, 0, 65538, -262120, 0, 65538, -262119, 0, 65538, -262118, 0, 65538, -262117, 0, 65538, -262116, 0, 65538, -262115, 0, 65538, -262114, 0, 65538, -262113, 0, 65538, -262112, 0, 65538, -262111, 0, 65538, -262110, 0, 65538, -262109, 0, 65538, -262108, 0, 65538, -262107, 0, 65539, -131090, 0, 65537, -131089, 0, 65538, -131088, 0, 65538, -131087, 0, 65538, -131086, 0, 65538, -131085, 0, 65538, -131084, 0, 65538, -131083, 0, 65538, -131082, 0, 65538, -131081, 0, 65538, -131080, 0, 65538, -131079, 0, 65538, -131078, 0, 65538, -131077, 0, 65538, -131076, 0, 65538, -131075, 0, 65538, -131074, 0, 65538, -131073, 0, 65538, -196608, 0, 65538, -196607, 0, 65538, -196606, 0, 65538, -196605, 0, 65538, -196604, 0, 65538, -196603, 0, 65538, -196602, 0, 65538, -196601, 0, 65538, -196600, 0, 65538, -196599, 0, 65538, -196598, 0, 65542, -196597, 0, 131074, -196596, 0, 131074, -196595, 0, 131074, -196594, 0, 65543, -196593, 0, 65538, -196592, 0, 65538, -196591, 0, 65538, -196590, 0, 65538, -196589, 0, 65538, -196588, 0, 65538, -196587, 0, 65538, -196586, 0, 65538, -196585, 0, 65538, -196584, 0, 65538, -196583, 0, 65538, -196582, 0, 65538, -196581, 0, 65538, -196580, 0, 65538, -196579, 0, 65538, -196578, 0, 65538, -196577, 0, 65538, -196576, 0, 65538, -196575, 0, 65538, -196574, 0, 65538, -196573, 0, 65538, -196572, 0, 65538, -196571, 0, 65539, -65554, 0, 65537, -65553, 0, 65538, -65552, 0, 65538, -65551, 0, 65538, -65550, 0, 65538, -65549, 0, 65538, -65548, 0, 65538, -65547, 0, 65538, -65546, 0, 65538, -65545, 0, 65538, -65544, 0, 65538, -65543, 0, 65538, -65542, 0, 65538, -65541, 0, 65538, -65540, 0, 65538, -65539, 0, 65538, -65538, 0, 65538, -65537, 0, 65538, -131072, 0, 65538, -131071, 0, 65538, -131070, 0, 65538, -131069, 0, 65538, -131068, 0, 65538, -131067, 0, 65538, -131066, 0, 65538, -131065, 0, 65538, -131064, 0, 65538, -131063, 0, 65538, -131062, 0, 65539, -131058, 0, 65537, -131057, 0, 65538, -131056, 0, 65538, -131055, 0, 65538, -131054, 0, 65538, -131053, 0, 65538, -131052, 0, 65538, -131051, 0, 65538, -131050, 0, 65538, -131049, 0, 65538, -131048, 0, 65538, -131047, 0, 65538, -131046, 0, 65538, -131045, 0, 65538, -131044, 0, 65538, -131043, 0, 65538, -131042, 0, 65538, -131041, 0, 65538, -131040, 0, 65538, -131039, 0, 65538, -131038, 0, 65538, -131037, 0, 65538, -131036, 0, 65538, -131035, 0, 65539, -18, 0, 65537, -17, 0, 65538, -16, 0, 65538, -15, 0, 65538, -14, 0, 65538, -13, 0, 65538, -12, 0, 65538, -11, 0, 65538, -10, 0, 65538, -9, 0, 65538, -8, 0, 65538, -7, 0, 65538, -6, 0, 65538, -5, 0, 65538, -4, 0, 65538, -3, 0, 65538, -2, 0, 65538, -1, 0, 65538, -65536, 0, 65538, -65535, 0, 65538, -65534, 0, 65538, -65533, 0, 65538, -65532, 0, 65538, -65531, 0, 65538, -65530, 0, 65538, -65529, 0, 65538, -65528, 0, 65538, -65527, 0, 65538, -65526, 0, 65539, -65522, 0, 65537, -65521, 0, 65538, -65520, 0, 65538, -65519, 0, 65538, -65518, 0, 65538, -65517, 0, 65538, -65516, 0, 65538, -65515, 0, 65538, -65514, 0, 65538, -65513, 0, 65538, -65512, 0, 65538, -65511, 0, 65538, -65510, 0, 65538, -65509, 0, 65538, -65508, 0, 65538, -65507, 0, 65538, -65506, 0, 65538, -65505, 0, 65538, -65504, 0, 65538, -65503, 0, 65538, -65502, 0, 65538, -65501, 0, 65538, -65500, 0, 65538, -65499, 0, 65539, 65518, 0, 65537, 65519, 0, 65538, 65520, 0, 65538, 65521, 0, 65538, 65522, 0, 65538, 65523, 0, 65538, 65524, 0, 65538, 65525, 0, 65538, 65526, 0, 65538, 65527, 0, 65538, 65528, 0, 65538, 65529, 0, 65538, 65530, 0, 65538, 65531, 0, 65538, 65532, 0, 65538, 65533, 0, 65538, 65534, 0, 65538, 65535, 0, 65538, 0, 0, 65538, 1, 0, 65542, 2, 0, 131074, 3, 0, 131074, 4, 0, 131074, 5, 0, 131074, 6, 0, 131074, 7, 0, 131074, 8, 0, 131074, 9, 0, 131074, 10, 0, 131075, 11, 8, 196648, 13, 8, 196648, 14, 0, 131073, 15, 0, 131074, 16, 0, 131074, 17, 0, 131074, 18, 0, 131074, 19, 0, 65543, 20, 0, 65538, 21, 0, 65538, 22, 0, 65538, 23, 0, 65538, 24, 0, 65538, 25, 0, 65538, 26, 0, 65538, 27, 0, 65538, 28, 0, 65538, 29, 0, 65538, 30, 0, 65538, 31, 0, 65538, 32, 0, 65538, 33, 0, 65538, 34, 0, 65538, 35, 0, 65538, 36, 0, 65538, 37, 0, 65539, 131054, 0, 65537, 131055, 0, 65538, 131056, 0, 65538, 131057, 0, 65538, 131058, 0, 65538, 131059, 0, 65538, 131060, 0, 65538, 131061, 0, 65538, 131062, 0, 65538, 131063, 0, 65538, 131064, 0, 65538, 131065, 0, 65538, 131066, 0, 65538, 131067, 0, 65538, 131068, 0, 65538, 131069, 0, 65538, 131070, 0, 65538, 131071, 0, 65538, 65536, 0, 65542, 65537, 0, 131075, 65555, 0, 65537, 65556, 0, 65538, 65557, 0, 65538, 65558, 0, 65538, 65559, 0, 65538, 65560, 0, 65538, 65561, 0, 65538, 65562, 0, 65538, 65563, 0, 65538, 65564, 0, 65538, 65565, 0, 65538, 65566, 0, 65538, 65567, 0, 65538, 65568, 0, 65538, 65569, 0, 65538, 65570, 0, 65538, 65571, 0, 65538, 65572, 0, 65538, 65573, 0, 65539, 196590, 0, 65537, 196591, 0, 65538, 196592, 0, 65538, 196593, 0, 65538, 196594, 0, 65538, 196595, 0, 65538, 196596, 0, 65538, 196597, 0, 65538, 196598, 0, 65538, 196599, 0, 65538, 196600, 0, 65538, 196601, 0, 65538, 196602, 0, 65538, 196603, 0, 65538, 196604, 0, 65538, 196605, 0, 65538, 196606, 0, 65538, 196607, 0, 65538, 131072, 0, 65539, 131091, 0, 65537, 131092, 0, 65538, 131093, 0, 65538, 131094, 0, 65538, 131095, 0, 65538, 131096, 0, 65538, 131097, 0, 65538, 131098, 0, 65538, 131099, 0, 65538, 131100, 0, 65538, 131101, 0, 65538, 131102, 0, 65538, 131103, 0, 65538, 131104, 0, 65538, 131105, 0, 65538, 131106, 0, 65538, 131107, 0, 65538, 131108, 0, 65538, 131109, 0, 65539, 262126, 0, 65537, 262127, 0, 65538, 262128, 0, 65538, 262129, 0, 65538, 262130, 0, 65538, 262131, 0, 65538, 262132, 0, 65538, 262133, 0, 65538, 262134, 0, 65538, 262135, 0, 65538, 262136, 0, 65538, 262137, 0, 65538, 262138, 0, 65538, 262139, 0, 65538, 262140, 0, 65538, 262141, 0, 65538, 262142, 0, 65538, 262143, 0, 65538, 196608, 0, 65539, 196627, 0, 65537, 196628, 0, 65538, 196629, 0, 65538, 196630, 0, 65538, 196631, 0, 65538, 196632, 0, 65538, 196633, 0, 65538, 196634, 0, 65538, 196635, 0, 65538, 196636, 0, 65538, 196637, 0, 65538, 196638, 0, 65538, 196639, 0, 65538, 196640, 0, 65538, 196641, 0, 65538, 196642, 0, 65538, 196643, 0, 65538, 196644, 0, 65538, 196645, 0, 65539, 327662, 0, 65537, 327663, 0, 65538, 327664, 0, 65538, 327665, 0, 65538, 327666, 0, 65538, 327667, 0, 65538, 327668, 0, 65538, 327669, 0, 65538, 327670, 0, 65538, 327671, 0, 65538, 327672, 0, 65538, 327673, 0, 65538, 327674, 0, 65538, 327675, 0, 65538, 327676, 0, 65538, 327677, 0, 65538, 327678, 0, 65538, 327679, 0, 65538, 262144, 0, 65539, 262163, 0, 65537, 262164, 0, 65538, 262165, 0, 65538, 262166, 0, 65538, 262167, 0, 65538, 262168, 0, 65538, 262169, 0, 65538, 262170, 0, 65538, 262171, 0, 65538, 262172, 0, 65538, 262173, 0, 65538, 262174, 0, 65538, 262175, 0, 65538, 262176, 0, 65538, 262177, 0, 65538, 262178, 0, 65538, 262179, 0, 65538, 262180, 0, 65538, 262181, 0, 65539, 393198, 0, 65537, 393199, 0, 65538, 393200, 0, 65538, 393201, 0, 65538, 393202, 0, 65538, 393203, 0, 65538, 393204, 0, 65538, 393205, 0, 65538, 393206, 0, 65538, 393207, 0, 65538, 393208, 0, 65538, 393209, 0, 65538, 393210, 0, 65538, 393211, 0, 65538, 393212, 0, 65538, 393213, 0, 65538, 393214, 0, 65538, 393215, 0, 65538, 327680, 0, 65539, 327685, 0, 1, 327686, 0, 2, 327687, 0, 2, 327688, 0, 3, 327699, 0, 65537, 327700, 0, 65538, 327701, 0, 65538, 327702, 0, 65538, 327703, 0, 65538, 327704, 0, 65538, 327705, 0, 65538, 327706, 0, 65538, 327707, 0, 65538, 327708, 0, 65538, 327709, 0, 65538, 327710, 0, 65538, 327711, 0, 65538, 327712, 0, 65538, 327713, 0, 65538, 327714, 0, 65538, 327715, 0, 65538, 327716, 0, 65538, 327717, 0, 65539, 458734, 0, 65537, 458735, 0, 65538, 458736, 0, 65538, 458737, 0, 65538, 458738, 0, 65538, 458739, 0, 65538, 458740, 0, 65538, 458741, 0, 65538, 458742, 0, 65538, 458743, 0, 65538, 458744, 0, 65538, 458745, 0, 65538, 458746, 0, 65538, 458747, 0, 65538, 458748, 0, 65538, 458749, 0, 65538, 458750, 0, 65538, 458751, 0, 65538, 393216, 0, 65539, 393219, 0, 1, 393220, 0, 2, 393221, 0, 131079, 393222, 0, 65538, 393223, 0, 65538, 393224, 0, 131078, 393225, 0, 2, 393226, 0, 2, 393227, 0, 2, 393228, 0, 2, 393229, 0, 3, 393235, 0, 65537, 393236, 0, 65538, 393237, 0, 65538, 393238, 0, 65538, 393239, 0, 65538, 393240, 0, 65538, 393241, 0, 65538, 393242, 0, 65538, 393243, 0, 65538, 393244, 0, 65538, 393245, 0, 65538, 393246, 0, 65538, 393247, 0, 65538, 393248, 0, 65538, 393249, 0, 65538, 393250, 0, 65538, 393251, 0, 65538, 393252, 0, 65538, 393253, 0, 65539, 524270, 0, 65537, 524271, 0, 65538, 524272, 0, 65538, 524273, 0, 65538, 524274, 0, 65538, 524275, 0, 65538, 524276, 0, 65538, 524277, 0, 65538, 524278, 0, 65538, 524279, 0, 65538, 524280, 0, 65538, 524281, 0, 65538, 524282, 0, 65538, 524283, 0, 65538, 524284, 0, 65538, 524285, 0, 65538, 524286, 0, 65538, 524287, 0, 65538, 458752, 0, 65539, 458754, 0, 1, 458755, 0, 131079, 458756, 0, 65538, 458757, 0, 65538, 458758, 0, 65538, 458759, 0, 65538, 458760, 0, 65538, 458761, 0, 65538, 458762, 0, 65538, 458763, 0, 65538, 458764, 0, 65538, 458765, 0, 131078, 458766, 0, 3, 458771, 0, 65537, 458772, 0, 65538, 458773, 0, 65538, 458774, 0, 65538, 458775, 0, 65538, 458776, 0, 65538, 458777, 0, 65538, 458778, 0, 65538, 458779, 0, 65538, 458780, 0, 65538, 458781, 0, 65538, 458782, 0, 65538, 458783, 0, 65538, 458784, 0, 65538, 458785, 0, 65538, 458786, 0, 65538, 458787, 0, 65538, 458788, 0, 65538, 458789, 0, 65539, 589806, 0, 65537, 589807, 0, 65538, 589808, 0, 65538, 589809, 0, 65538, 589810, 0, 65538, 589811, 0, 65538, 589812, 0, 65538, 589813, 0, 65538, 589814, 0, 65538, 589815, 0, 65538, 589816, 0, 65538, 589817, 0, 65538, 589818, 0, 65538, 589819, 0, 65538, 589820, 0, 65538, 589821, 0, 65538, 589822, 0, 65538, 589823, 0, 65538, 524288, 0, 65539, 524290, 0, 131073, 524291, 0, 65543, 524292, 0, 65538, 524293, 0, 65538, 524294, 0, 65538, 524295, 0, 65538, 524296, 0, 65538, 524297, 0, 65538, 524298, 0, 65538, 524299, 0, 65538, 524300, 0, 65538, 524301, 0, 65542, 524302, 0, 131075, 524307, 0, 65537, 524308, 0, 65538, 524309, 0, 65538, 524310, 0, 65538, 524311, 0, 65538, 524312, 0, 65538, 524313, 0, 65538, 524314, 0, 65538, 524315, 0, 65538, 524316, 0, 65538, 524317, 0, 65538, 524318, 0, 65538, 524319, 0, 65538, 524320, 0, 65538, 524321, 0, 65538, 524322, 0, 65538, 524323, 0, 65538, 524324, 0, 65538, 524325, 0, 65539, 655342, 0, 65537, 655343, 0, 65538, 655344, 0, 65538, 655345, 0, 65538, 655346, 0, 65538, 655347, 0, 65538, 655348, 0, 65538, 655349, 0, 65538, 655350, 0, 65538, 655351, 0, 65538, 655352, 0, 65538, 655353, 0, 65538, 655354, 0, 65538, 655355, 0, 65538, 655356, 0, 65538, 655357, 0, 65538, 655358, 0, 65538, 655359, 0, 65538, 589824, 0, 65539, 589827, 0, 131073, 589828, 0, 131074, 589829, 0, 131074, 589830, 0, 131074, 589831, 0, 131074, 589832, 0, 131074, 589833, 0, 131074, 589834, 0, 131074, 589835, 0, 131074, 589836, 0, 131074, 589837, 0, 131075, 589843, 0, 65537, 589844, 0, 65538, 589845, 0, 65538, 589846, 0, 65538, 589847, 0, 65538, 589848, 0, 65538, 589849, 0, 65538, 589850, 0, 65538, 589851, 0, 65538, 589852, 0, 65538, 589853, 0, 65538, 589854, 0, 65538, 589855, 0, 65538, 589856, 0, 65538, 589857, 0, 65538, 589858, 0, 65538, 589859, 0, 65538, 589860, 0, 65538, 589861, 0, 65539, 720878, 0, 65537, 720879, 0, 65538, 720880, 0, 65538, 720881, 0, 65538, 720882, 0, 65538, 720883, 0, 65538, 720884, 0, 65538, 720885, 0, 65538, 720886, 0, 65538, 720887, 0, 65538, 720888, 0, 65538, 720889, 0, 65538, 720890, 0, 65538, 720891, 0, 65538, 720892, 0, 65538, 720893, 0, 65538, 720894, 0, 65538, 720895, 0, 65538, 655360, 0, 65539, 655379, 0, 65537, 655380, 0, 65538, 655381, 0, 65538, 655382, 0, 65538, 655383, 0, 65538, 655384, 0, 65538, 655385, 0, 65538, 655386, 0, 65538, 655387, 0, 65538, 655388, 0, 65538, 655389, 0, 65538, 655390, 0, 65538, 655391, 0, 65538, 655392, 0, 65538, 655393, 0, 65538, 655394, 0, 65538, 655395, 0, 65538, 655396, 0, 65538, 655397, 0, 65539, 786414, 0, 65537, 786415, 0, 65538, 786416, 0, 65538, 786417, 0, 65538, 786418, 0, 65538, 786419, 0, 65538, 786420, 0, 65538, 786421, 0, 65538, 786422, 0, 65538, 786423, 0, 65538, 786424, 0, 65538, 786425, 0, 65538, 786426, 0, 65538, 786427, 0, 65538, 786428, 0, 65538, 786429, 0, 65538, 786430, 0, 65538, 786431, 0, 65538, 720896, 0, 131078, 720897, 0, 2, 720898, 0, 2, 720899, 0, 2, 720900, 0, 2, 720901, 0, 2, 720902, 0, 2, 720903, 0, 2, 720904, 0, 2, 720905, 0, 2, 720906, 0, 2, 720907, 0, 2, 720908, 0, 2, 720909, 0, 2, 720910, 0, 2, 720911, 0, 2, 720912, 0, 2, 720913, 0, 2, 720914, 0, 2, 720915, 0, 131079, 720916, 0, 65538, 720917, 0, 65538, 720918, 0, 65538, 720919, 0, 65538, 720920, 0, 65538, 720921, 0, 65538, 720922, 0, 65538, 720923, 0, 65538, 720924, 0, 65538, 720925, 0, 65538, 720926, 0, 65538, 720927, 0, 65538, 720928, 0, 65538, 720929, 0, 65538, 720930, 0, 65538, 720931, 0, 65538, 720932, 0, 65538, 720933, 0, 65539, 851950, 0, 65537, 851951, 0, 65538, 851952, 0, 65538, 851953, 0, 65538, 851954, 0, 65538, 851955, 0, 65538, 851956, 0, 65538, 851957, 0, 65538, 851958, 0, 65538, 851959, 0, 65538, 851960, 0, 65538, 851961, 0, 65538, 851962, 0, 65538, 851963, 0, 65538, 851964, 0, 65538, 851965, 0, 65538, 851966, 0, 65538, 851967, 0, 65538, 786432, 0, 65538, 786433, 0, 65538, 786434, 0, 65538, 786435, 0, 65538, 786436, 0, 65538, 786437, 0, 65538, 786438, 0, 65538, 786439, 0, 65538, 786440, 0, 65538, 786441, 0, 65538, 786442, 0, 65538, 786443, 0, 65538, 786444, 0, 65538, 786445, 0, 65538, 786446, 0, 65538, 786447, 0, 65538, 786448, 0, 65538, 786449, 0, 65538, 786450, 0, 65538, 786451, 0, 65538, 786452, 0, 65538, 786453, 0, 65538, 786454, 0, 65538, 786455, 0, 65538, 786456, 0, 65538, 786457, 0, 65538, 786458, 0, 65538, 786459, 0, 65538, 786460, 0, 65538, 786461, 0, 65538, 786462, 0, 65538, 786463, 0, 65538, 786464, 0, 65538, 786465, 0, 65538, 786466, 0, 65538, 786467, 0, 65538, 786468, 0, 65538, 786469, 0, 65539, 917486, 0, 65537, 917487, 0, 65538, 917488, 0, 65538, 917489, 0, 65538, 917490, 0, 65538, 917491, 0, 65538, 917492, 0, 65538, 917493, 0, 65538, 917494, 0, 65538, 917495, 0, 65538, 917496, 0, 65538, 917497, 0, 65538, 917498, 0, 65538, 917499, 0, 65538, 917500, 0, 65538, 917501, 0, 65538, 917502, 0, 65538, 917503, 0, 65538, 851968, 0, 65538, 851969, 0, 65538, 851970, 0, 65538, 851971, 0, 65538, 851972, 0, 65538, 851973, 0, 65538, 851974, 0, 65538, 851975, 0, 65538, 851976, 0, 65538, 851977, 0, 65538, 851978, 0, 65538, 851979, 0, 65538, 851980, 0, 65538, 851981, 0, 65538, 851982, 0, 65538, 851983, 0, 65538, 851984, 0, 65538, 851985, 0, 65538, 851986, 0, 65538, 851987, 0, 65538, 851988, 0, 65538, 851989, 0, 65538, 851990, 0, 65538, 851991, 0, 65538, 851992, 0, 65538, 851993, 0, 65538, 851994, 0, 65538, 851995, 0, 65538, 851996, 0, 65538, 851997, 0, 65538, 851998, 0, 65538, 851999, 0, 65538, 852000, 0, 65538, 852001, 0, 65538, 852002, 0, 65538, 852003, 0, 65538, 852004, 0, 65538, 852005, 0, 65539, 983022, 0, 65537, 983023, 0, 65538, 983024, 0, 65538, 983025, 0, 65538, 983026, 0, 65538, 983027, 0, 65538, 983028, 0, 65538, 983029, 0, 65538, 983030, 0, 65538, 983031, 0, 65538, 983032, 0, 65538, 983033, 0, 65538, 983034, 0, 65538, 983035, 0, 65538, 983036, 0, 65538, 983037, 0, 65538, 983038, 0, 65538, 983039, 0, 65538, 917504, 0, 65538, 917505, 0, 65538, 917506, 0, 65538, 917507, 0, 65538, 917508, 0, 65538, 917509, 0, 65538, 917510, 0, 65538, 917511, 0, 65538, 917512, 0, 65538, 917513, 0, 65538, 917514, 0, 65538, 917515, 0, 65538, 917516, 0, 65538, 917517, 0, 65538, 917518, 0, 65538, 917519, 0, 65538, 917520, 0, 65538, 917521, 0, 65538, 917522, 0, 65538, 917523, 0, 65538, 917524, 0, 65538, 917525, 0, 65538, 917526, 0, 65538, 917527, 0, 65538, 917528, 0, 65538, 917529, 0, 65538, 917530, 0, 65538, 917531, 0, 65538, 917532, 0, 65538, 917533, 0, 65538, 917534, 0, 65538, 917535, 0, 65538, 917536, 0, 65538, 917537, 0, 65538, 917538, 0, 65538, 917539, 0, 65538, 917540, 0, 65538, 917541, 0, 65539, 1048558, 0, 65537, 1048559, 0, 65538, 1048560, 0, 65538, 1048561, 0, 65538, 1048562, 0, 65538, 1048563, 0, 65538, 1048564, 0, 65538, 1048565, 0, 65538, 1048566, 0, 65538, 1048567, 0, 65538, 1048568, 0, 65538, 1048569, 0, 65538, 1048570, 0, 65538, 1048571, 0, 65538, 1048572, 0, 65538, 1048573, 0, 65538, 1048574, 0, 65538, 1048575, 0, 65538, 983040, 0, 65538, 983041, 0, 65538, 983042, 0, 65538, 983043, 0, 65538, 983044, 0, 65538, 983045, 0, 65538, 983046, 0, 65538, 983047, 0, 65538, 983048, 0, 65538, 983049, 0, 65538, 983050, 0, 65538, 983051, 0, 65538, 983052, 0, 65538, 983053, 0, 65538, 983054, 0, 65538, 983055, 0, 65538, 983056, 0, 65538, 983057, 0, 65538, 983058, 0, 65538, 983059, 0, 65538, 983060, 0, 65538, 983061, 0, 65538, 983062, 0, 65538, 983063, 0, 65538, 983064, 0, 65538, 983065, 0, 65538, 983066, 0, 65538, 983067, 0, 65538, 983068, 0, 65538, 983069, 0, 65538, 983070, 0, 65538, 983071, 0, 65538, 983072, 0, 65538, 983073, 0, 65538, 983074, 0, 65538, 983075, 0, 65538, 983076, 0, 65538, 983077, 0, 65539, 1114094, 0, 65537, 1114095, 0, 65538, 1114096, 0, 65538, 1114097, 0, 65538, 1114098, 0, 65538, 1114099, 0, 65538, 1114100, 0, 65538, 1114101, 0, 65538, 1114102, 0, 65538, 1114103, 0, 65538, 1114104, 0, 65538, 1114105, 0, 65538, 1114106, 0, 65538, 1114107, 0, 65538, 1114108, 0, 65538, 1114109, 0, 65538, 1114110, 0, 65538, 1114111, 0, 65538, 1048576, 0, 65538, 1048577, 0, 65538, 1048578, 0, 65538, 1048579, 0, 65538, 1048580, 0, 65538, 1048581, 0, 65538, 1048582, 0, 65538, 1048583, 0, 65538, 1048584, 0, 65538, 1048585, 0, 65538, 1048586, 0, 65538, 1048587, 0, 65538, 1048588, 0, 65538, 1048589, 0, 65538, 1048590, 0, 65538, 1048591, 0, 65538, 1048592, 0, 65538, 1048593, 0, 65538, 1048594, 0, 65538, 1048595, 0, 65538, 1048596, 0, 65538, 1048597, 0, 65538, 1048598, 0, 65538, 1048599, 0, 65538, 1048600, 0, 65538, 1048601, 0, 65538, 1048602, 0, 65538, 1048603, 0, 65538, 1048604, 0, 65538, 1048605, 0, 65538, 1048606, 0, 65538, 1048607, 0, 65538, 1048608, 0, 65538, 1048609, 0, 65538, 1048610, 0, 65538, 1048611, 0, 65538, 1048612, 0, 65538, 1048613, 0, 65539, 1179630, 0, 65537, 1179631, 0, 65538, 1179632, 0, 65538, 1179633, 0, 65538, 1179634, 0, 65538, 1179635, 0, 65538, 1179636, 0, 65538, 1179637, 0, 65538, 1179638, 0, 65538, 1179639, 0, 65538, 1179640, 0, 65538, 1179641, 0, 65538, 1179642, 0, 65538, 1179643, 0, 65538, 1179644, 0, 65538, 1179645, 0, 65538, 1179646, 0, 65538, 1179647, 0, 65538, 1114112, 0, 65538, 1114113, 0, 65538, 1114114, 0, 65538, 1114115, 0, 65538, 1114116, 0, 65538, 1114117, 0, 65538, 1114118, 0, 65538, 1114119, 0, 65538, 1114120, 0, 65538, 1114121, 0, 65538, 1114122, 0, 65538, 1114123, 0, 65538, 1114124, 0, 65538, 1114125, 0, 65538, 1114126, 0, 65538, 1114127, 0, 65538, 1114128, 0, 65538, 1114129, 0, 65538, 1114130, 0, 65538, 1114131, 0, 65538, 1114132, 0, 65538, 1114133, 0, 65538, 1114134, 0, 65538, 1114135, 0, 65538, 1114136, 0, 65538, 1114137, 0, 65538, 1114138, 0, 65538, 1114139, 0, 65538, 1114140, 0, 65538, 1114141, 0, 65538, 1114142, 0, 65538, 1114143, 0, 65538, 1114144, 0, 65538, 1114145, 0, 65538, 1114146, 0, 65538, 1114147, 0, 65538, 1114148, 0, 65538, 1114149, 0, 65539, 1245166, 0, 65537, 1245167, 0, 65538, 1245168, 0, 65538, 1245169, 0, 65538, 1245170, 0, 65538, 1245171, 0, 65538, 1245172, 0, 65538, 1245173, 0, 65538, 1245174, 0, 65538, 1245175, 0, 65538, 1245176, 0, 65538, 1245177, 0, 65538, 1245178, 0, 65538, 1245179, 0, 65538, 1245180, 0, 65538, 1245181, 0, 65538, 1245182, 0, 65538, 1245183, 0, 65538, 1179648, 0, 65538, 1179649, 0, 65538, 1179650, 0, 65538, 1179651, 0, 65538, 1179652, 0, 65538, 1179653, 0, 65538, 1179654, 0, 65538, 1179655, 0, 65538, 1179656, 0, 65538, 1179657, 0, 65538, 1179658, 0, 65538, 1179659, 0, 65538, 1179660, 0, 65538, 1179661, 0, 65538, 1179662, 0, 65538, 1179663, 0, 65538, 1179664, 0, 65538, 1179665, 0, 65538, 1179666, 0, 65538, 1179667, 0, 65538, 1179668, 0, 65538, 1179669, 0, 65538, 1179670, 0, 65538, 1179671, 0, 65538, 1179672, 0, 65538, 1179673, 0, 65538, 1179674, 0, 65538, 1179675, 0, 65538, 1179676, 0, 65538, 1179677, 0, 65538, 1179678, 0, 65538, 1179679, 0, 65538, 1179680, 0, 65538, 1179681, 0, 65538, 1179682, 0, 65538, 1179683, 0, 65538, 1179684, 0, 65538, 1179685, 0, 65539, 1310702, 0, 65537, 1310703, 0, 65538, 1310704, 0, 65538, 1310705, 0, 65538, 1310706, 0, 65538, 1310707, 0, 65538, 1310708, 0, 65538, 1310709, 0, 65538, 1310710, 0, 65538, 1310711, 0, 65538, 1310712, 0, 65538, 1310713, 0, 65538, 1310714, 0, 65538, 1310715, 0, 65538, 1310716, 0, 65538, 1310717, 0, 65538, 1310718, 0, 65538, 1310719, 0, 65538, 1245184, 0, 65538, 1245185, 0, 65538, 1245186, 0, 65538, 1245187, 0, 65538, 1245188, 0, 65538, 1245189, 0, 65538, 1245190, 0, 65538, 1245191, 0, 65538, 1245192, 0, 65538, 1245193, 0, 65538, 1245194, 0, 65538, 1245195, 0, 65538, 1245196, 0, 65538, 1245197, 0, 65538, 1245198, 0, 65538, 1245199, 0, 65538, 1245200, 0, 65538, 1245201, 0, 65538, 1245202, 0, 65538, 1245203, 0, 65538, 1245204, 0, 65538, 1245205, 0, 65538, 1245206, 0, 65538, 1245207, 0, 65538, 1245208, 0, 65538, 1245209, 0, 65538, 1245210, 0, 65538, 1245211, 0, 65538, 1245212, 0, 65538, 1245213, 0, 65538, 1245214, 0, 65538, 1245215, 0, 65538, 1245216, 0, 65538, 1245217, 0, 65538, 1245218, 0, 65538, 1245219, 0, 65538, 1245220, 0, 65538, 1245221, 0, 65539, 1376238, 0, 65537, 1376239, 0, 65538, 1376240, 0, 65538, 1376241, 0, 65538, 1376242, 0, 65538, 1376243, 0, 65538, 1376244, 0, 65538, 1376245, 0, 65538, 1376246, 0, 65538, 1376247, 0, 65538, 1376248, 0, 65538, 1376249, 0, 65538, 1376250, 0, 65538, 1376251, 0, 65538, 1376252, 0, 65538, 1376253, 0, 65538, 1376254, 0, 65538, 1376255, 0, 65538, 1310720, 0, 65538, 1310721, 0, 65538, 1310722, 0, 65538, 1310723, 0, 65538, 1310724, 0, 65538, 1310725, 0, 65538, 1310726, 0, 65538, 1310727, 0, 65538, 1310728, 0, 65538, 1310729, 0, 65538, 1310730, 0, 65538, 1310731, 0, 65538, 1310732, 0, 65538, 1310733, 0, 65538, 1310734, 0, 65538, 1310735, 0, 65538, 1310736, 0, 65538, 1310737, 0, 65538, 1310738, 0, 65538, 1310739, 0, 65538, 1310740, 0, 65538, 1310741, 0, 65538, 1310742, 0, 65538, 1310743, 0, 65538, 1310744, 0, 65538, 1310745, 0, 65538, 1310746, 0, 65538, 1310747, 0, 65538, 1310748, 0, 65538, 1310749, 0, 65538, 1310750, 0, 65538, 1310751, 0, 65538, 1310752, 0, 65538, 1310753, 0, 65538, 1310754, 0, 65538, 1310755, 0, 65538, 1310756, 0, 65538, 1310757, 0, 65539, 1441774, 0, 65537, 1441775, 0, 65538, 1441776, 0, 65538, 1441777, 0, 65538, 1441778, 0, 65538, 1441779, 0, 65538, 1441780, 0, 65538, 1441781, 0, 65538, 1441782, 0, 65538, 1441783, 0, 65538, 1441784, 0, 65538, 1441785, 0, 65538, 1441786, 0, 65538, 1441787, 0, 65538, 1441788, 0, 65538, 1441789, 0, 65538, 1441790, 0, 65538, 1441791, 0, 65538, 1376256, 0, 65538, 1376257, 0, 65538, 1376258, 0, 65538, 1376259, 0, 65538, 1376260, 0, 65538, 1376261, 0, 65538, 1376262, 0, 65538, 1376263, 0, 65538, 1376264, 0, 65538, 1376265, 0, 65538, 1376266, 0, 65538, 1376267, 0, 65538, 1376268, 0, 65538, 1376269, 0, 65538, 1376270, 0, 65538, 1376271, 0, 65538, 1376272, 0, 65538, 1376273, 0, 65538, 1376274, 0, 65538, 1376275, 0, 65538, 1376276, 0, 65538, 1376277, 0, 65538, 1376278, 0, 65538, 1376279, 0, 65538, 1376280, 0, 65538, 1376281, 0, 65538, 1376282, 0, 65538, 1376283, 0, 65538, 1376284, 0, 65538, 1376285, 0, 65538, 1376286, 0, 65538, 1376287, 0, 65538, 1376288, 0, 65538, 1376289, 0, 65538, 1376290, 0, 65538, 1376291, 0, 65538, 1376292, 0, 65538, 1376293, 0, 65539, 1507310, 0, 65537, 1507311, 0, 65538, 1507312, 0, 65538, 1507313, 0, 65538, 1507314, 0, 65538, 1507315, 0, 65538, 1507316, 0, 65538, 1507317, 0, 65538, 1507318, 0, 65538, 1507319, 0, 65538, 1507320, 0, 65538, 1507321, 0, 65538, 1507322, 0, 65538, 1507323, 0, 65538, 1507324, 0, 65538, 1507325, 0, 65538, 1507326, 0, 65538, 1507327, 0, 65538, 1441792, 0, 65538, 1441793, 0, 65538, 1441794, 0, 65538, 1441795, 0, 65538, 1441796, 0, 65538, 1441797, 0, 65538, 1441798, 0, 65538, 1441799, 0, 65538, 1441800, 0, 65538, 1441801, 0, 65538, 1441802, 0, 65538, 1441803, 0, 65538, 1441804, 0, 65538, 1441805, 0, 65538, 1441806, 0, 65538, 1441807, 0, 65538, 1441808, 0, 65538, 1441809, 0, 65538, 1441810, 0, 65538, 1441811, 0, 65538, 1441812, 0, 65538, 1441813, 0, 65538, 1441814, 0, 65538, 1441815, 0, 65538, 1441816, 0, 65538, 1441817, 0, 65538, 1441818, 0, 65538, 1441819, 0, 65538, 1441820, 0, 65538, 1441821, 0, 65538, 1441822, 0, 65538, 1441823, 0, 65538, 1441824, 0, 65538, 1441825, 0, 65538, 1441826, 0, 65538, 1441827, 0, 65538, 1441828, 0, 65538, 1441829, 0, 65539, 1572846, 0, 65537, 1572847, 0, 65538, 1572848, 0, 65538, 1572849, 0, 65538, 1572850, 0, 65538, 1572851, 0, 65538, 1572852, 0, 65538, 1572853, 0, 65538, 1572854, 0, 65538, 1572855, 0, 65538, 1572856, 0, 65538, 1572857, 0, 65538, 1572858, 0, 65538, 1572859, 0, 65538, 1572860, 0, 65538, 1572861, 0, 65538, 1572862, 0, 65538, 1572863, 0, 65538, 1507328, 0, 65538, 1507329, 0, 65538, 1507330, 0, 65538, 1507331, 0, 65538, 1507332, 0, 65538, 1507333, 0, 65538, 1507334, 0, 65538, 1507335, 0, 65538, 1507336, 0, 65538, 1507337, 0, 65538, 1507338, 0, 65538, 1507339, 0, 65538, 1507340, 0, 65538, 1507341, 0, 65538, 1507342, 0, 65538, 1507343, 0, 65538, 1507344, 0, 65538, 1507345, 0, 65538, 1507346, 0, 65538, 1507347, 0, 65538, 1507348, 0, 65538, 1507349, 0, 65538, 1507350, 0, 65538, 1507351, 0, 65538, 1507352, 0, 65538, 1507353, 0, 65538, 1507354, 0, 65538, 1507355, 0, 65538, 1507356, 0, 65538, 1507357, 0, 65538, 1507358, 0, 65538, 1507359, 0, 65538, 1507360, 0, 65538, 1507361, 0, 65538, 1507362, 0, 65538, 1507363, 0, 65538, 1507364, 0, 65538, 1507365, 0, 65539, 1638382, 0, 65537, 1638383, 0, 65538, 1638384, 0, 65538, 1638385, 0, 65538, 1638386, 0, 65538, 1638387, 0, 65538, 1638388, 0, 65538, 1638389, 0, 65538, 1638390, 0, 65538, 1638391, 0, 65538, 1638392, 0, 65538, 1638393, 0, 65538, 1638394, 0, 65538, 1638395, 0, 65538, 1638396, 0, 65538, 1638397, 0, 65538, 1638398, 0, 65538, 1638399, 0, 65538, 1572864, 0, 65538, 1572865, 0, 65538, 1572866, 0, 65538, 1572867, 0, 65538, 1572868, 0, 65538, 1572869, 0, 65538, 1572870, 0, 65538, 1572871, 0, 65538, 1572872, 0, 65538, 1572873, 0, 65538, 1572874, 0, 65538, 1572875, 0, 65538, 1572876, 0, 65538, 1572877, 0, 65538, 1572878, 0, 65538, 1572879, 0, 65538, 1572880, 0, 65538, 1572881, 0, 65538, 1572882, 0, 65538, 1572883, 0, 65538, 1572884, 0, 65538, 1572885, 0, 65538, 1572886, 0, 65538, 1572887, 0, 65538, 1572888, 0, 65538, 1572889, 0, 65538, 1572890, 0, 65538, 1572891, 0, 65538, 1572892, 0, 65538, 1572893, 0, 65538, 1572894, 0, 65538, 1572895, 0, 65538, 1572896, 0, 65538, 1572897, 0, 65538, 1572898, 0, 65538, 1572899, 0, 65538, 1572900, 0, 65538, 1572901, 0, 65539, 1703918, 0, 131073, 1703919, 0, 131074, 1703920, 0, 131074, 1703921, 0, 131074, 1703922, 0, 131074, 1703923, 0, 131074, 1703924, 0, 131074, 1703925, 0, 131074, 1703926, 0, 131074, 1703927, 0, 131074, 1703928, 0, 131074, 1703929, 0, 131074, 1703930, 0, 131074, 1703931, 0, 131074, 1703932, 0, 131074, 1703933, 0, 131074, 1703934, 0, 131074, 1703935, 0, 131074, 1638400, 0, 131074, 1638401, 0, 131074, 1638402, 0, 131074, 1638403, 0, 131074, 1638404, 0, 131074, 1638405, 0, 131074, 1638406, 0, 131074, 1638407, 0, 131074, 1638408, 0, 131074, 1638409, 0, 131074, 1638410, 0, 131074, 1638411, 0, 131074, 1638412, 0, 131074, 1638413, 0, 131074, 1638414, 0, 131074, 1638415, 0, 131074, 1638416, 0, 131074, 1638417, 0, 131074, 1638418, 0, 131074, 1638419, 0, 131074, 1638420, 0, 131074, 1638421, 0, 131074, 1638422, 0, 131074, 1638423, 0, 131074, 1638424, 0, 131074, 1638425, 0, 131074, 1638426, 0, 131074, 1638427, 0, 131074, 1638428, 0, 131074, 1638429, 0, 131074, 1638430, 0, 131074, 1638431, 0, 131074, 1638432, 0, 131074, 1638433, 0, 131074, 1638434, 0, 131074, 1638435, 0, 131074, 1638436, 0, 131074, 1638437, 0, 131075 ) + +[node name="Wall" type="TileMap" parent="."] +tile_set = ExtResource( 15 ) +cell_size = Vector2( 16, 16 ) +cell_custom_transform = Transform2D( 16, 0, 0, 16, 0, 0 ) +format = 1 +tile_data = PoolIntArray( -2359292, 0, 5, -2359291, 0, 196610, -2359290, 0, 196610, -2359289, 0, 196610, -2359288, 0, 196610, -2359287, 0, 196610, -2359286, 0, 196610, -2359285, 0, 196610, -2359284, 0, 196610, -2359283, 0, 196610, -2359282, 0, 196610, -2359281, 0, 196610, -2359280, 0, 196610, -2359279, 0, 196610, -2359278, 0, 196610, -2359277, 0, 196610, -2359276, 0, 8, -2293756, 0, 65540, -2293740, 0, 65540, -2228220, 0, 65540, -2228204, 0, 65540, -2162684, 0, 65540, -2162668, 0, 65540, -2097148, 0, 65540, -2097132, 0, 65540, -2031612, 0, 65540, -2031596, 0, 65540, -1966076, 0, 65540, -1966060, 0, 65540, -1900540, 0, 65540, -1900524, 0, 65540, -1835004, 0, 65540, -1834988, 0, 65540, -1769468, 0, 65540, -1769452, 0, 65540, -1703932, 0, 65540, -1703916, 0, 65540, -1638396, 0, 196613, -1638395, 0, 196610, -1638394, 0, 196610, -1638393, 0, 196610, -1638392, 0, 196610, -1638391, 0, 196610, -1638390, 0, 8, -1638386, 0, 5, -1638385, 0, 196610, -1638384, 0, 196610, -1638383, 0, 196610, -1638382, 0, 196610, -1638381, 0, 196610, -1638380, 0, 196616, -1572854, 0, 65540, -1572850, 0, 65540, -1507318, 0, 65540, -1507314, 0, 65540, -1441782, 0, 65540, -1441778, 0, 65540, -1376246, 0, 65540, -1376242, 0, 65540, -1310710, 0, 65540, -1310706, 0, 65540, -1245174, 0, 65540, -1245170, 0, 65540, -1179638, 0, 65540, -1179634, 0, 65540, -1114102, 0, 262149, -1114101, 0, 196610, -1114100, 0, 196610, -1114099, 0, 196610, -1114098, 0, 262152, -1048566, 0, 65540, -1048562, 0, 65540, -983030, 0, 65540, -983026, 0, 65540, -917494, 0, 65540, -917490, 0, 65540, -851958, 0, 65540, -851954, 0, 65540, -786422, 0, 65540, -786418, 0, 65540, -720886, 0, 65540, -720882, 0, 65540, -655350, 0, 65540, -655346, 0, 65540, -524290, 0, 5, -524289, 0, 196610, -589824, 0, 196610, -589823, 0, 196610, -589822, 0, 196610, -589821, 0, 196610, -589820, 0, 196610, -589819, 0, 8, -589814, 0, 65540, -589810, 0, 65540, -458754, 0, 65540, -524283, 0, 65540, -524278, 0, 65540, -524274, 0, 65540, -393218, 0, 65540, -458747, 0, 65540, -458742, 0, 65540, -458738, 0, 65540, -327682, 0, 65540, -393211, 0, 65540, -393206, 0, 65540, -393202, 0, 65540, -262146, 0, 65540, -327675, 0, 65540, -327670, 0, 65540, -327666, 0, 65540, -196610, 0, 196613, -196609, 0, 8, -262140, 0, 5, -262139, 0, 196616, -262134, 0, 65540, -262130, 0, 65540, -131073, 0, 65540, -196604, 0, 65540, -196598, 0, 65540, -196594, 0, 65540, -65537, 0, 65540, -131068, 0, 65540, -131062, 0, 65540, -131058, 0, 65540, -131049, 0, 5, -131048, 0, 196610, -131047, 0, 196610, -131046, 0, 196610, -131045, 0, 196610, -131044, 0, 8, -1, 0, 65540, -65532, 0, 196613, -65531, 0, 196610, -65530, 0, 196610, -65529, 0, 196610, -65528, 0, 196610, -65527, 0, 196610, -65526, 0, 196616, -65522, 0, 196613, -65521, 0, 196610, -65520, 0, 196610, -65519, 0, 196610, -65518, 0, 196610, -65517, 0, 196610, -65516, 0, 196610, -65515, 0, 196610, -65514, 0, 196610, -65513, 0, 196616, -65508, 0, 65540, 65535, 0, 65540, 28, 0, 65540, 131071, 0, 65540, 65564, 0, 65540, 196607, 0, 65540, 131100, 0, 65540, 262143, 0, 65540, 196611, 0, 196609, 196612, 0, 196610, 196613, 0, 196610, 196614, 0, 196611, 196618, 0, 196609, 196619, 0, 196610, 196620, 0, 196610, 196621, 0, 196611, 196625, 0, 4, 196636, 0, 65540, 327679, 0, 65540, 262161, 0, 65540, 262164, 0, 5, 262165, 0, 196610, 262166, 0, 196610, 262167, 0, 8, 262172, 0, 65540, 393215, 0, 65540, 327697, 0, 65540, 327700, 0, 65540, 327703, 0, 196613, 327704, 0, 196610, 327705, 0, 196610, 327706, 0, 196610, 327707, 0, 196610, 327708, 0, 196616, 458743, 0, 5, 458744, 0, 196610, 458745, 0, 196610, 458746, 0, 196610, 458747, 0, 196610, 458748, 0, 8, 458751, 0, 65540, 393233, 0, 65540, 393236, 0, 65540, 524279, 0, 65540, 524284, 0, 196613, 524285, 0, 196610, 524286, 0, 196610, 524287, 0, 196616, 458756, 0, 4, 458760, 0, 4, 458764, 0, 4, 458769, 0, 65540, 458772, 0, 65540, 589815, 0, 65540, 524292, 0, 131076, 524296, 0, 131076, 524300, 0, 131076, 524305, 0, 131076, 524308, 0, 65540, 655351, 0, 65540, 589844, 0, 65540, 720887, 0, 65540, 655380, 0, 65540, 786423, 0, 65540, 720916, 0, 65540, 851959, 0, 65540, 851964, 0, 5, 851965, 0, 196610, 851966, 0, 196610, 851967, 0, 196610, 786432, 0, 196610, 786433, 0, 196610, 786434, 0, 196610, 786435, 0, 196610, 786436, 0, 196610, 786437, 0, 196610, 786438, 0, 196610, 786439, 0, 196610, 786440, 0, 196610, 786441, 0, 196610, 786442, 0, 196610, 786443, 0, 196610, 786444, 0, 196610, 786445, 0, 196610, 786446, 0, 196610, 786447, 0, 8, 786452, 0, 65540, 917495, 0, 196613, 917496, 0, 196610, 917497, 0, 196610, 917498, 0, 196610, 917499, 0, 196610, 917500, 0, 196616, 851983, 0, 65540, 851988, 0, 65540, 917519, 0, 65540, 917524, 0, 65540, 983054, 0, 5, 983055, 0, 196616, 983060, 0, 196613, 983061, 0, 8, 1048590, 0, 65540, 1048597, 0, 65540, 1114126, 0, 65540, 1114133, 0, 65540, 1179662, 0, 65540, 1179669, 0, 65540, 1245198, 0, 65540, 1245205, 0, 65540, 1310734, 0, 196613, 1310735, 0, 196610, 1310736, 0, 196610, 1310737, 0, 196610, 1310738, 0, 196610, 1310739, 0, 196610, 1310740, 0, 196610, 1310741, 0, 196616 ) + +[node name="Fire3" type="AnimatedSprite" parent="."] +position = Vector2( -607.628, -210.601 ) +frames = SubResource( 1 ) +frame = 1 +playing = true +offset = Vector2( 679.819, 333.222 ) + +[node name="Fire2" type="AnimatedSprite" parent="."] +position = Vector2( -543.25, -212.563 ) +frames = SubResource( 1 ) +frame = 4 +playing = true +offset = Vector2( 679.819, 333.222 ) + +[node name="Fire1" type="AnimatedSprite" parent="."] +position = Vector2( -479.806, -214.167 ) +frames = SubResource( 1 ) +frame = 11 +playing = true +offset = Vector2( 679.819, 333.222 ) + +[node name="Floor" type="TileMap" parent="."] +tile_set = ExtResource( 15 ) +cell_size = Vector2( 16, 16 ) +cell_custom_transform = Transform2D( 16, 0, 0, 16, 0, 0 ) +format = 1 +tile_data = PoolIntArray( -2293755, 8, 37, -2293754, 8, 38, -2293753, 8, 38, -2293752, 8, 38, -2293751, 8, 38, -2293750, 8, 38, -2293749, 8, 38, -2293748, 8, 38, -2293747, 8, 38, -2293746, 8, 38, -2293745, 8, 38, -2293744, 8, 38, -2293743, 8, 38, -2293742, 8, 38, -2293741, 8, 39, -2228219, 8, 65573, -2228218, 8, 65574, -2228217, 8, 65574, -2228216, 8, 65574, -2228215, 8, 65574, -2228214, 8, 65574, -2228213, 8, 65574, -2228212, 8, 65574, -2228211, 8, 65574, -2228210, 8, 65574, -2228209, 8, 65574, -2228208, 8, 65574, -2228207, 8, 65574, -2228206, 8, 65574, -2228205, 8, 65575, -2162683, 8, 65573, -2162682, 8, 65574, -2162681, 8, 65574, -2162680, 8, 65574, -2162679, 8, 65574, -2162678, 8, 65574, -2162677, 8, 65574, -2162676, 8, 65574, -2162675, 8, 65574, -2162674, 8, 65574, -2162673, 8, 65574, -2162672, 8, 65574, -2162671, 8, 65574, -2162670, 8, 65574, -2162669, 8, 65575, -2097147, 8, 65573, -2097146, 8, 65574, -2097145, 8, 65574, -2097144, 8, 65574, -2097143, 8, 65574, -2097142, 8, 65574, -2097141, 8, 65574, -2097140, 8, 65574, -2097139, 8, 65574, -2097138, 8, 65574, -2097137, 8, 65574, -2097136, 8, 65574, -2097135, 8, 65574, -2097134, 8, 65574, -2097133, 8, 65575, -2031611, 8, 65573, -2031610, 8, 65574, -2031609, 8, 65574, -2031608, 8, 65574, -2031607, 8, 65574, -2031606, 8, 65574, -2031605, 8, 65574, -2031604, 8, 65574, -2031603, 8, 65574, -2031602, 8, 65574, -2031601, 8, 65574, -2031600, 8, 65574, -2031599, 8, 65574, -2031598, 8, 65574, -2031597, 8, 65575, -1966075, 8, 65573, -1966074, 8, 65574, -1966073, 8, 65574, -1966072, 8, 65574, -1966071, 8, 65574, -1966070, 8, 65574, -1966069, 8, 65574, -1966068, 8, 65574, -1966067, 8, 65574, -1966066, 8, 65574, -1966065, 8, 65574, -1966064, 8, 65574, -1966063, 8, 65574, -1966062, 8, 65574, -1966061, 8, 65575, -1900539, 8, 65573, -1900538, 8, 65574, -1900537, 8, 65574, -1900536, 8, 65574, -1900535, 8, 65574, -1900534, 8, 65574, -1900533, 8, 65574, -1900532, 8, 65574, -1900531, 8, 65574, -1900530, 8, 65574, -1900529, 8, 65574, -1900528, 8, 65574, -1900527, 8, 65574, -1900526, 8, 65574, -1900525, 8, 65575, -1835003, 8, 65573, -1835002, 8, 65574, -1835001, 8, 65574, -1835000, 8, 65574, -1834999, 8, 65574, -1834998, 8, 65574, -1834997, 8, 65574, -1834996, 8, 65574, -1834995, 8, 65574, -1834994, 8, 65574, -1834993, 8, 65574, -1834992, 8, 65574, -1834991, 8, 65574, -1834990, 8, 65574, -1834989, 8, 65575, -1769467, 8, 65573, -1769466, 8, 65574, -1769465, 8, 65574, -1769464, 8, 65574, -1769463, 8, 65574, -1769462, 8, 65574, -1769461, 8, 65574, -1769460, 8, 65574, -1769459, 8, 65574, -1769458, 8, 65574, -1769457, 8, 65574, -1769456, 8, 65574, -1769455, 8, 65574, -1769454, 8, 65574, -1769453, 8, 65575, -1703931, 8, 131109, -1703930, 8, 131110, -1703929, 8, 131110, -1703928, 8, 131110, -1703927, 8, 131110, -1703926, 8, 131110, -1703925, 8, 65579, -1703924, 8, 65574, -1703923, 8, 65578, -1703922, 8, 131110, -1703921, 8, 131110, -1703920, 8, 131110, -1703919, 8, 131110, -1703918, 8, 131110, -1703917, 8, 131111, -1638389, 8, 65573, -1638388, 8, 65574, -1638387, 8, 65575, -1572853, 8, 65573, -1572852, 8, 65574, -1572851, 8, 65575, -1507317, 8, 65573, -1507316, 8, 65574, -1507315, 8, 65575, -1441781, 8, 65573, -1441780, 8, 65574, -1441779, 8, 65575, -1376245, 8, 65573, -1376244, 8, 65574, -1376243, 8, 65575, -1310709, 8, 65573, -1310708, 8, 65574, -1310707, 8, 65575, -1245173, 8, 65573, -1245172, 8, 65574, -1245171, 8, 65575, -1179637, 8, 131109, -1179636, 8, 131110, -1179635, 8, 131111, -1048565, 8, 37, -1048564, 8, 38, -1048563, 8, 39, -983029, 8, 65573, -983028, 8, 65574, -983027, 8, 65575, -917493, 8, 65573, -917492, 8, 65574, -917491, 8, 65575, -851957, 8, 65573, -851956, 8, 65574, -851955, 8, 65575, -786421, 8, 65573, -786420, 8, 65574, -786419, 8, 65575, -720885, 8, 65573, -720884, 8, 65574, -720883, 8, 65575, -655349, 8, 65573, -655348, 8, 65574, -655347, 8, 65575, -589813, 8, 65573, -589812, 8, 65574, -589811, 8, 65575, -458753, 8, 37, -524288, 8, 38, -524287, 8, 38, -524286, 8, 38, -524285, 8, 38, -524284, 8, 39, -524277, 8, 65573, -524276, 8, 65574, -524275, 8, 65575, -393217, 8, 65573, -458752, 8, 65574, -458751, 8, 65574, -458750, 8, 65574, -458749, 8, 65574, -458748, 8, 65575, -458741, 8, 65573, -458740, 8, 65574, -458739, 8, 65575, -327681, 8, 65573, -393216, 8, 65574, -393215, 8, 65574, -393214, 8, 65574, -393213, 8, 65574, -393212, 8, 65575, -393205, 8, 65573, -393204, 8, 65574, -393203, 8, 65575, -262145, 8, 131109, -327680, 8, 65579, -327679, 8, 65574, -327678, 8, 65574, -327677, 8, 65578, -327676, 8, 131111, -327669, 8, 65573, -327668, 8, 65574, -327667, 8, 65575, -262144, 8, 65573, -262143, 8, 65574, -262142, 8, 65574, -262141, 8, 65575, -262133, 8, 65573, -262132, 8, 65574, -262131, 8, 65575, -196608, 8, 65573, -196607, 8, 65574, -196606, 8, 65574, -196605, 8, 65575, -196597, 8, 65573, -196596, 8, 65574, -196595, 8, 65575, -131072, 8, 65573, -131071, 8, 65574, -131070, 8, 65574, -131069, 8, 65575, -131061, 8, 65573, -131060, 8, 65574, -131059, 8, 65575, -65536, 8, 65573, -65535, 8, 65574, -65534, 8, 65574, -65533, 8, 65575, -65525, 8, 65573, -65524, 8, 65574, -65523, 8, 65575, -65512, 8, 37, -65511, 8, 38, -65510, 8, 38, -65509, 8, 39, 0, 8, 65573, 1, 8, 65574, 2, 8, 65574, 3, 8, 131114, 4, 8, 38, 5, 8, 38, 6, 8, 38, 7, 8, 38, 8, 8, 38, 9, 8, 38, 10, 8, 38, 11, 8, 131115, 12, 8, 65574, 13, 8, 131114, 14, 8, 38, 15, 8, 38, 16, 8, 38, 17, 8, 38, 18, 8, 38, 19, 8, 38, 20, 8, 38, 21, 8, 38, 22, 8, 38, 23, 8, 38, 24, 8, 131115, 25, 8, 65574, 26, 8, 65574, 27, 8, 65575, 65536, 8, 65573, 65537, 8, 65574, 65538, 8, 65574, 65539, 8, 65574, 65540, 8, 65574, 65541, 8, 65574, 65542, 8, 65574, 65543, 8, 65574, 65544, 8, 65574, 65545, 8, 65574, 65546, 8, 65574, 65547, 8, 65574, 65548, 8, 65574, 65549, 8, 65574, 65550, 8, 65574, 65551, 8, 65574, 65552, 8, 65574, 65553, 8, 65574, 65554, 8, 65574, 65555, 8, 65574, 65556, 8, 65574, 65557, 8, 65574, 65558, 8, 65574, 65559, 8, 65574, 65560, 8, 65574, 65561, 8, 65574, 65562, 8, 65574, 65563, 8, 65575, 131072, 8, 65573, 131073, 8, 65574, 131074, 8, 65578, 131075, 8, 131110, 131076, 8, 131110, 131077, 8, 131110, 131078, 8, 131110, 131079, 8, 65579, 131080, 8, 65574, 131081, 8, 65578, 131082, 8, 131110, 131083, 8, 131110, 131084, 8, 131110, 131085, 8, 131110, 131086, 8, 65579, 131087, 8, 65574, 131088, 8, 65578, 131089, 8, 131110, 131090, 8, 65579, 131091, 8, 65574, 131092, 8, 65574, 131093, 8, 65574, 131094, 8, 65574, 131095, 8, 65574, 131096, 8, 65574, 131097, 8, 65574, 131098, 8, 65574, 131099, 8, 65575, 196608, 8, 65573, 196609, 8, 65574, 196610, 8, 65575, 196615, 8, 65573, 196616, 8, 65574, 196617, 8, 65575, 196622, 8, 65573, 196623, 8, 65574, 196624, 8, 65575, 196626, 8, 65573, 196627, 8, 65578, 196628, 8, 131110, 196629, 8, 131110, 196630, 8, 131110, 196631, 8, 131110, 196632, 8, 65579, 196633, 8, 65574, 196634, 8, 65574, 196635, 8, 65575, 262144, 8, 65573, 262145, 8, 65574, 262146, 8, 131114, 262147, 8, 38, 262148, 8, 38, 262149, 8, 38, 262150, 8, 38, 262151, 8, 131115, 262152, 8, 65574, 262153, 8, 131114, 262154, 8, 38, 262155, 8, 38, 262156, 8, 38, 262157, 8, 38, 262158, 8, 131115, 262159, 8, 65574, 262160, 8, 65575, 262162, 8, 65573, 262163, 8, 65575, 262168, 8, 131109, 262169, 8, 131110, 262170, 8, 131110, 262171, 8, 131111, 327680, 8, 65573, 327681, 8, 65574, 327682, 8, 65574, 327683, 8, 65574, 327684, 8, 65574, 327685, 8, 65574, 327686, 8, 65574, 327687, 8, 65574, 327688, 8, 65574, 327689, 8, 65574, 327690, 8, 65574, 327691, 8, 65574, 327692, 8, 65574, 327693, 8, 65574, 327694, 8, 65574, 327695, 8, 65574, 327696, 8, 65575, 327698, 8, 65573, 327699, 8, 65575, 393216, 8, 65573, 393217, 8, 65574, 393218, 8, 65574, 393219, 8, 65578, 393220, 8, 131110, 393221, 8, 65579, 393222, 8, 65574, 393223, 8, 65578, 393224, 8, 131110, 393225, 8, 65579, 393226, 8, 65574, 393227, 8, 65578, 393228, 8, 131110, 393229, 8, 65579, 393230, 8, 65574, 393231, 8, 65574, 393232, 8, 65575, 393234, 8, 65573, 393235, 8, 65575, 524280, 8, 37, 524281, 8, 38, 524282, 8, 38, 524283, 8, 39, 458752, 8, 65573, 458753, 8, 65574, 458754, 8, 65574, 458755, 8, 65575, 458757, 8, 65573, 458758, 8, 65574, 458759, 8, 65575, 458761, 8, 65573, 458762, 8, 65574, 458763, 8, 65575, 458765, 8, 65573, 458766, 8, 65574, 458767, 8, 65574, 458768, 8, 65575, 458770, 8, 65573, 458771, 8, 65575, 589816, 8, 65573, 589817, 8, 65574, 589818, 8, 65574, 589819, 8, 131114, 589820, 8, 38, 589821, 8, 38, 589822, 8, 38, 589823, 8, 38, 524288, 8, 131115, 524289, 8, 65574, 524290, 8, 65574, 524291, 8, 65575, 524293, 8, 65573, 524294, 8, 65574, 524295, 8, 65575, 524297, 8, 65573, 524298, 8, 65574, 524299, 8, 65575, 524301, 8, 65573, 524302, 8, 65574, 524303, 8, 65574, 524304, 8, 65575, 524306, 8, 65573, 524307, 8, 65575, 655352, 8, 65573, 655353, 8, 65574, 655354, 8, 65574, 655355, 8, 65574, 655356, 8, 65574, 655357, 8, 65574, 655358, 8, 65574, 655359, 8, 65574, 589824, 8, 65574, 589825, 8, 65574, 589826, 8, 65574, 589827, 8, 131114, 589828, 8, 38, 589829, 8, 131115, 589830, 8, 65574, 589831, 8, 131114, 589832, 8, 38, 589833, 8, 131115, 589834, 8, 65574, 589835, 8, 131114, 589836, 8, 38, 589837, 8, 131115, 589838, 8, 65574, 589839, 8, 65574, 589840, 8, 131114, 589841, 8, 38, 589842, 8, 131115, 589843, 8, 65575, 720888, 8, 65573, 720889, 8, 65574, 720890, 8, 65574, 720891, 8, 65574, 720892, 8, 65574, 720893, 8, 65574, 720894, 8, 65574, 720895, 8, 65574, 655360, 8, 65574, 655361, 8, 65574, 655362, 8, 65574, 655363, 8, 65574, 655364, 8, 65574, 655365, 8, 65574, 655366, 8, 65574, 655367, 8, 65574, 655368, 8, 65574, 655369, 8, 65574, 655370, 8, 65574, 655371, 8, 65574, 655372, 8, 65574, 655373, 8, 65574, 655374, 8, 65574, 655375, 8, 65574, 655376, 8, 65574, 655377, 8, 65574, 655378, 8, 65574, 655379, 8, 65575, 786424, 8, 65573, 786425, 8, 65574, 786426, 8, 65574, 786427, 8, 65578, 786428, 8, 131110, 786429, 8, 131110, 786430, 8, 131110, 786431, 8, 131110, 720896, 8, 131110, 720897, 8, 131110, 720898, 8, 131110, 720899, 8, 131110, 720900, 8, 131110, 720901, 8, 131110, 720902, 8, 131110, 720903, 8, 131110, 720904, 8, 131110, 720905, 8, 131110, 720906, 8, 131110, 720907, 8, 131110, 720908, 8, 131110, 720909, 8, 131110, 720910, 8, 131110, 720911, 8, 131110, 720912, 8, 65579, 720913, 8, 65574, 720914, 8, 65574, 720915, 8, 65575, 851960, 8, 131109, 851961, 8, 131110, 851962, 8, 131110, 851963, 8, 131111, 786448, 8, 65573, 786449, 8, 65574, 786450, 8, 65574, 786451, 8, 65575, 851984, 8, 65573, 851985, 8, 65574, 851986, 8, 65574, 851987, 8, 65575, 917520, 8, 65573, 917521, 8, 65574, 917522, 8, 65574, 917523, 8, 65575, 983056, 8, 65573, 983057, 8, 65574, 983058, 8, 65574, 983059, 8, 65575, 1048591, 8, 37, 1048592, 8, 131115, 1048593, 8, 65574, 1048594, 8, 65574, 1048595, 8, 131114, 1048596, 8, 39, 1114127, 8, 65573, 1114128, 8, 65574, 1114129, 8, 65574, 1114130, 8, 65574, 1114131, 8, 65574, 1114132, 8, 65575, 1179663, 8, 65573, 1179664, 8, 65574, 1179665, 8, 65574, 1179666, 8, 65574, 1179667, 8, 65574, 1179668, 8, 65575, 1245199, 8, 131109, 1245200, 8, 131110, 1245201, 8, 131110, 1245202, 8, 131110, 1245203, 8, 131110, 1245204, 8, 131111 ) + +[node name="Wall (Collision)" type="TileMap" parent="."] +tile_set = SubResource( 9 ) +cell_size = Vector2( 16, 16 ) +cell_custom_transform = Transform2D( 8, 0, 0, 8, 0, 0 ) +show_collision = true +collision_layer = 2 +collision_mask = 2 +format = 1 +tile_data = PoolIntArray( -2359292, 0, 0, -2359291, 0, 0, -2359290, 0, 0, -2359289, 0, 0, -2359288, 0, 0, -2359287, 0, 0, -2359286, 0, 0, -2359285, 0, 0, -2359284, 0, 0, -2359283, 0, 0, -2359282, 0, 0, -2359281, 0, 0, -2359280, 0, 0, -2359279, 0, 0, -2359278, 0, 0, -2359277, 0, 0, -2359276, 0, 0, -2293756, 0, 0, -2293740, 0, 0, -2228220, 0, 0, -2228204, 0, 0, -2162684, 0, 0, -2162668, 0, 0, -2097148, 0, 0, -2097132, 0, 0, -2031612, 0, 0, -2031596, 0, 0, -1966076, 0, 0, -1966060, 0, 0, -1900540, 0, 0, -1900524, 0, 0, -1835004, 0, 0, -1834988, 0, 0, -1769468, 0, 0, -1769452, 0, 0, -1703932, 0, 0, -1703916, 0, 0, -1638396, 0, 0, -1638395, 0, 0, -1638394, 0, 0, -1638393, 0, 0, -1638392, 0, 0, -1638391, 0, 0, -1638390, 0, 0, -1638386, 0, 0, -1638385, 0, 0, -1638384, 0, 0, -1638383, 0, 0, -1638382, 0, 0, -1638381, 0, 0, -1638380, 0, 0, -1114101, 0, 0, -1114100, 0, 0, -1114099, 0, 0, -524290, 0, 0, -524289, 0, 0, -589824, 0, 0, -589823, 0, 0, -589822, 0, 0, -589821, 0, 0, -589820, 0, 0, -589819, 0, 0, -458754, 0, 0, -524283, 0, 0, -393218, 0, 0, -458747, 0, 0, -327682, 0, 0, -393211, 0, 0, -393206, 0, 0, -393205, 0, 0, -393204, 0, 0, -393203, 0, 0, -393202, 0, 0, -262146, 0, 0, -327675, 0, 0, -327670, 0, 0, -327666, 0, 0, -196610, 0, 0, -196609, 0, 0, -262140, 0, 0, -262139, 0, 0, -262134, 0, 0, -262130, 0, 0, -131073, 0, 0, -196604, 0, 0, -196598, 0, 0, -196594, 0, 0, -65537, 0, 0, -131068, 0, 0, -131062, 0, 0, -131058, 0, 0, -131049, 0, 0, -131048, 0, 0, -131047, 0, 0, -131046, 0, 0, -131045, 0, 0, -131044, 0, 0, -1, 0, 0, -65532, 0, 0, -65531, 0, 0, -65530, 0, 0, -65529, 0, 0, -65528, 0, 0, -65527, 0, 0, -65526, 0, 0, -65522, 0, 0, -65521, 0, 0, -65520, 0, 0, -65519, 0, 0, -65518, 0, 0, -65517, 0, 0, -65516, 0, 0, -65515, 0, 0, -65514, 0, 0, -65513, 0, 0, -65508, 0, 0, 65535, 0, 0, 28, 0, 0, 131071, 0, 0, 65564, 0, 0, 196607, 0, 0, 131100, 0, 0, 262143, 0, 0, 196611, 0, 0, 196612, 0, 0, 196613, 0, 0, 196614, 0, 0, 196618, 0, 0, 196619, 0, 0, 196620, 0, 0, 196621, 0, 0, 196625, 0, 0, 196636, 0, 0, 327679, 0, 0, 262161, 0, 0, 262164, 0, 0, 262165, 0, 0, 262166, 0, 0, 262167, 0, 0, 262172, 0, 0, 393215, 0, 0, 327697, 0, 0, 327700, 0, 0, 327703, 0, 0, 327704, 0, 0, 327705, 0, 0, 327706, 0, 0, 327707, 0, 0, 327708, 0, 0, 458743, 0, 0, 458744, 0, 0, 458745, 0, 0, 458746, 0, 0, 458747, 0, 0, 458748, 0, 0, 458751, 0, 0, 393233, 0, 0, 393236, 0, 0, 524279, 0, 0, 524284, 0, 0, 524285, 0, 0, 524286, 0, 0, 524287, 0, 0, 458756, 0, 0, 458760, 0, 0, 458764, 0, 0, 458769, 0, 0, 458772, 0, 0, 589815, 0, 0, 524292, 0, 0, 524296, 0, 0, 524300, 0, 0, 524305, 0, 0, 524308, 0, 0, 655351, 0, 0, 589844, 0, 0, 720887, 0, 0, 655380, 0, 0, 786423, 0, 0, 720916, 0, 0, 851959, 0, 0, 851964, 0, 0, 851965, 0, 0, 851966, 0, 0, 851967, 0, 0, 786432, 0, 0, 786433, 0, 0, 786434, 0, 0, 786435, 0, 0, 786436, 0, 0, 786437, 0, 0, 786438, 0, 0, 786439, 0, 0, 786440, 0, 0, 786441, 0, 0, 786442, 0, 0, 786443, 0, 0, 786444, 0, 0, 786445, 0, 0, 786446, 0, 0, 786447, 0, 0, 786452, 0, 0, 917495, 0, 0, 917496, 0, 0, 917497, 0, 0, 917498, 0, 0, 917499, 0, 0, 917500, 0, 0, 851983, 0, 0, 851988, 0, 0, 917519, 0, 0, 917524, 0, 0, 983054, 0, 0, 983055, 0, 0, 983060, 0, 0, 983061, 0, 0, 1048590, 0, 0, 1048597, 0, 0, 1114126, 0, 0, 1114133, 0, 0, 1179662, 0, 0, 1179669, 0, 0, 1245198, 0, 0, 1245205, 0, 0, 1310734, 0, 0, 1310735, 0, 0, 1310736, 0, 0, 1310737, 0, 0, 1310738, 0, 0, 1310739, 0, 0, 1310740, 0, 0, 1310741, 0, 0 ) + +[node name="YSort" type="YSort" parent="."] + +[node name="Player" parent="YSort" instance=ExtResource( 21 )] +position = Vector2( 158, 91 ) +z_index = 5 +collision_mask = 2 + +[node name="Camera2D" type="Camera2D" parent="YSort/Player"] +current = true + +[node name="Enemies" type="YSort" parent="YSort"] + +[node name="Flaming Skull" parent="YSort/Enemies" instance=ExtResource( 24 )] +position = Vector2( 25, 53 ) +z_index = 4 + +[node name="Flaming Skull2" parent="YSort/Enemies" instance=ExtResource( 24 )] +position = Vector2( 29, 158 ) +z_index = 4 + +[node name="Flaming Skull3" parent="YSort/Enemies" instance=ExtResource( 24 )] +position = Vector2( 281, 22 ) +z_index = 4 + +[node name="Flaming Skull4" parent="YSort/Enemies" instance=ExtResource( 24 )] +position = Vector2( 242, 149 ) +z_index = 4 + +[node name="Flaming Skull5" parent="YSort/Enemies" instance=ExtResource( 24 )] +position = Vector2( 165, 170 ) +z_index = 4 + +[node name="Flaming Skull6" parent="YSort/Enemies" instance=ExtResource( 24 )] +position = Vector2( 121, 12 ) +z_index = 4 + +[node name="Hellhound" parent="YSort/Enemies" instance=ExtResource( 2 )] +position = Vector2( -77, 157 ) + +[node name="Hellhound2" parent="YSort/Enemies" instance=ExtResource( 2 )] +position = Vector2( 395, 33 ) +z_index = 4 + +[node name="Hellhound3" parent="YSort/Enemies" instance=ExtResource( 2 )] +position = Vector2( 35, -79 ) +z_index = 4 + +[node name="Hellhound4" parent="YSort/Enemies" instance=ExtResource( 2 )] +position = Vector2( 290, 273 ) +z_index = 4 + +[node name="Items" type="YSort" parent="YSort"] + +[node name="TreasureChest" parent="YSort/Items" instance=ExtResource( 16 )] +position = Vector2( 33, -101 ) +scale = Vector2( 0.35, 0.35 ) +z_index = 2 + +[node name="TreasureChest2" parent="YSort/Items" instance=ExtResource( 16 )] +position = Vector2( -96, 158 ) +scale = Vector2( 0.35, 0.35 ) +z_index = 2 + +[node name="TreasureChest3" parent="YSort/Items" instance=ExtResource( 16 )] +position = Vector2( 290, 295 ) +scale = Vector2( 0.35, 0.35 ) +z_index = 2 + +[node name="TreasureChest4" parent="YSort/Items" instance=ExtResource( 16 )] +position = Vector2( 417, 34 ) +scale = Vector2( 0.35, 0.35 ) +z_index = 2 + +[node name="Door" parent="YSort/Items" instance=ExtResource( 5 )] +position = Vector2( 200, -30 ) +scale = Vector2( 1.25, 1.25 ) + +[node name="HUD" parent="." instance=ExtResource( 23 )] + +[node name="Pause Screen" parent="." instance=ExtResource( 22 )] + +[node name="DoorCollision" type="StaticBody2D" parent="."] +collision_layer = 2 + +[node name="CollisionShape2D" type="CollisionShape2D" parent="DoorCollision"] +position = Vector2( 201, -10 ) +shape = SubResource( 11 ) + +[node name="NextArea" type="Area2D" parent="."] +collision_layer = 2 + +[node name="CollisionShape2D" type="CollisionShape2D" parent="NextArea"] +position = Vector2( 200, -56 ) +shape = SubResource( 12 ) + +[node name="DemonBoss" parent="." instance=ExtResource( 26 )] +position = Vector2( 194, -550 ) + +[connection signal="gem_collected" from="YSort/Items/TreasureChest" to="." method="_on_TreasureChest_gem_collected"] +[connection signal="gem_collected" from="YSort/Items/TreasureChest2" to="." method="_on_TreasureChest_gem_collected"] +[connection signal="gem_collected" from="YSort/Items/TreasureChest3" to="." method="_on_TreasureChest_gem_collected"] +[connection signal="gem_collected" from="YSort/Items/TreasureChest4" to="." method="_on_TreasureChest_gem_collected"] +[connection signal="area_entered" from="NextArea" to="." method="_on_NextArea_area_entered"] diff --git a/Levels/Level 5.tscn b/Levels/Level 5.tscn index abe97fe..6df2c83 100644 --- a/Levels/Level 5.tscn +++ b/Levels/Level 5.tscn @@ -1,4 +1,4 @@ -[gd_scene load_steps=11 format=2] +[gd_scene load_steps=14 format=2] [ext_resource path="res://Player/Player.tscn" type="PackedScene" id=1] [ext_resource path="res://Levels/Level 5.gd" type="Script" id=2] @@ -8,19 +8,25 @@ [ext_resource path="res://Music/Level_5.mp3" type="AudioStream" id=6] [ext_resource path="res://GUI/Pause Screen.tscn" type="PackedScene" id=7] [ext_resource path="res://Resources/Level_5_Walls_Tileset.tres" type="TileSet" id=8] -[ext_resource path="res://Enemies/Glowing Ghost.tscn" type="PackedScene" id=9] +[ext_resource path="res://Enemies/Chasing Glowing Ghost.tscn" type="PackedScene" id=9] [ext_resource path="res://Levels/Traps/Spawn Trap.tscn" type="PackedScene" id=10] +[ext_resource path="res://Levels/Interactables/Silver Key Pickup.tscn" type="PackedScene" id=11] +[ext_resource path="res://Levels/Interactables/Silver Barrier.tscn" type="PackedScene" id=12] +[ext_resource path="res://Enemies/Creepy Glowing Ghost.tscn" type="PackedScene" id=13] [node name="Void Level" type="Node2D"] script = ExtResource( 2 ) -[node name="CanvasModulate" type="CanvasModulate" parent="."] +[node name="Darkness" type="CanvasModulate" parent="."] color = Color( 0, 0, 0, 1 ) [node name="Floor" type="TileMap" parent="."] self_modulate = Color( 0.627451, 0.627451, 0.627451, 1 ) tile_set = ExtResource( 4 ) cell_size = Vector2( 16, 16 ) +collision_layer = 0 +collision_mask = 0 +occluder_light_mask = 0 format = 1 tile_data = PoolIntArray( -393225, 0, 0, -393224, 0, 1, -393223, 0, 1, -393222, 0, 1, -393221, 0, 1, -393220, 0, 1, -393219, 0, 1, -393218, 0, 1, -393217, 0, 1, -458752, 0, 1, -458751, 0, 1, -458750, 0, 1, -458749, 0, 1, -458748, 0, 1, -458747, 0, 1, -458746, 0, 1, -458745, 0, 1, -458744, 0, 1, -458743, 0, 1, -458742, 0, 1, -458741, 0, 1, -458740, 0, 1, -458739, 0, 1, -458738, 0, 1, -458737, 0, 1, -458736, 0, 1, -458735, 0, 1, -458734, 0, 1, -458733, 0, 1, -458732, 0, 1, -458731, 0, 1, -458730, 0, 1, -458729, 0, 1, -458728, 0, 1, -458727, 0, 1, -458726, 0, 1, -458725, 0, 1, -458724, 0, 1, -458723, 0, 1, -458722, 0, 1, -458721, 0, 1, -458720, 0, 1, -458719, 0, 1, -458718, 0, 1, -458717, 0, 1, -458716, 0, 2, -327689, 0, 65536, -327688, 0, 65537, -327687, 0, 65537, -327686, 0, 65537, -327685, 0, 65537, -327684, 0, 65537, -327683, 0, 65537, -327682, 0, 65537, -327681, 0, 65537, -393216, 0, 65537, -393215, 0, 65537, -393214, 0, 65537, -393213, 0, 65537, -393212, 0, 65537, -393211, 0, 65537, -393210, 0, 65537, -393209, 0, 65537, -393208, 0, 65537, -393207, 0, 65537, -393206, 0, 65537, -393205, 0, 65537, -393204, 0, 65537, -393203, 0, 65537, -393202, 0, 65537, -393201, 0, 65537, -393200, 0, 65537, -393199, 0, 65537, -393198, 0, 65537, -393197, 0, 65537, -393196, 0, 65537, -393195, 0, 65537, -393194, 0, 65537, -393193, 0, 65537, -393192, 0, 65537, -393191, 0, 65537, -393190, 0, 65537, -393189, 0, 65537, -393188, 0, 65537, -393187, 0, 65537, -393186, 0, 65537, -393185, 0, 65537, -393184, 0, 65537, -393183, 0, 65537, -393182, 0, 65537, -393181, 0, 65537, -393180, 0, 65538, -262153, 0, 65536, -262152, 0, 65537, -262151, 0, 65537, -262150, 0, 65537, -262149, 0, 65537, -262148, 0, 65537, -262147, 0, 65537, -262146, 0, 65537, -262145, 0, 65537, -327680, 0, 65537, -327679, 0, 65537, -327678, 0, 65537, -327677, 0, 65537, -327676, 0, 65537, -327675, 0, 65537, -327674, 0, 65537, -327673, 0, 65537, -327672, 0, 65537, -327671, 0, 65537, -327670, 0, 65537, -327669, 0, 65537, -327668, 0, 65537, -327667, 0, 65537, -327666, 0, 65537, -327665, 0, 65537, -327664, 0, 65537, -327663, 0, 65537, -327662, 0, 65537, -327661, 0, 65537, -327660, 0, 65537, -327659, 0, 65537, -327658, 0, 65537, -327657, 0, 65537, -327656, 0, 65537, -327655, 0, 65537, -327654, 0, 65537, -327653, 0, 65537, -327652, 0, 65537, -327651, 0, 65537, -327650, 0, 65537, -327649, 0, 65537, -327648, 0, 65537, -327647, 0, 65537, -327646, 0, 65537, -327645, 0, 65537, -327644, 0, 65538, -196617, 0, 65536, -196616, 0, 65537, -196615, 0, 65537, -196614, 0, 65537, -196613, 0, 65537, -196612, 0, 65537, -196611, 0, 65537, -196610, 0, 65537, -196609, 0, 65537, -262144, 0, 65537, -262143, 0, 65537, -262142, 0, 65537, -262141, 0, 65537, -262140, 0, 65537, -262139, 0, 65537, -262138, 0, 65537, -262137, 0, 65537, -262136, 0, 65537, -262135, 0, 65537, -262134, 0, 65537, -262133, 0, 65537, -262132, 0, 65537, -262131, 0, 65537, -262130, 0, 65537, -262129, 0, 65537, -262128, 0, 65537, -262127, 0, 65537, -262126, 0, 65537, -262125, 0, 65537, -262124, 0, 65537, -262123, 0, 65537, -262122, 0, 65537, -262121, 0, 65537, -262120, 0, 65537, -262119, 0, 65537, -262118, 0, 65537, -262117, 0, 65537, -262116, 0, 65537, -262115, 0, 65537, -262114, 0, 65537, -262113, 0, 65537, -262112, 0, 65537, -262111, 0, 65537, -262110, 0, 65537, -262109, 0, 65537, -262108, 0, 65538, -131081, 0, 65536, -131080, 0, 65537, -131079, 0, 65537, -131078, 0, 65537, -131077, 0, 65537, -131076, 0, 65537, -131075, 0, 65537, -131074, 0, 65537, -131073, 0, 65537, -196608, 0, 65537, -196607, 0, 65537, -196606, 0, 65537, -196605, 0, 65537, -196604, 0, 65537, -196603, 0, 65537, -196602, 0, 65537, -196601, 0, 65537, -196600, 0, 65537, -196599, 0, 65537, -196598, 0, 65537, -196597, 0, 65537, -196596, 0, 65537, -196595, 0, 65537, -196594, 0, 65537, -196593, 0, 65537, -196592, 0, 65537, -196591, 0, 65537, -196590, 0, 65537, -196589, 0, 65537, -196588, 0, 65537, -196587, 0, 65537, -196586, 0, 65537, -196585, 0, 65537, -196584, 0, 65537, -196583, 0, 65537, -196582, 0, 65537, -196581, 0, 65537, -196580, 0, 65537, -196579, 0, 65537, -196578, 0, 65537, -196577, 0, 65537, -196576, 0, 65537, -196575, 0, 65537, -196574, 0, 65537, -196573, 0, 65537, -196572, 0, 65538, -65545, 0, 65536, -65544, 0, 65537, -65543, 0, 65537, -65542, 0, 65537, -65541, 0, 65537, -65540, 0, 65537, -65539, 0, 65537, -65538, 0, 65537, -65537, 0, 65537, -131072, 0, 65537, -131071, 0, 65537, -131070, 0, 65537, -131069, 0, 65537, -131068, 0, 65537, -131067, 0, 65537, -131066, 0, 65537, -131065, 0, 65537, -131064, 0, 65537, -131063, 0, 65537, -131062, 0, 65537, -131061, 0, 65537, -131060, 0, 65537, -131059, 0, 65537, -131058, 0, 65537, -131057, 0, 65537, -131056, 0, 65537, -131055, 0, 65537, -131054, 0, 65537, -131053, 0, 65537, -131052, 0, 65537, -131051, 0, 65537, -131050, 0, 65537, -131049, 0, 65537, -131048, 0, 65537, -131047, 0, 65537, -131046, 0, 65537, -131045, 0, 65537, -131044, 0, 65537, -131043, 0, 65537, -131042, 0, 65537, -131041, 0, 65537, -131040, 0, 65537, -131039, 0, 65537, -131038, 0, 65537, -131037, 0, 65537, -131036, 0, 65538, -9, 0, 65536, -8, 0, 65537, -7, 0, 65537, -6, 0, 65537, -5, 0, 65537, -4, 0, 65537, -3, 0, 65537, -2, 0, 65537, -1, 0, 65537, -65536, 0, 65537, -65535, 0, 65537, -65534, 0, 65537, -65533, 0, 65537, -65532, 0, 65537, -65531, 0, 65537, -65530, 0, 65537, -65529, 0, 65537, -65528, 0, 65537, -65527, 0, 65537, -65526, 0, 65537, -65525, 0, 65537, -65524, 0, 65537, -65523, 0, 65537, -65522, 0, 65537, -65521, 0, 65537, -65520, 0, 65537, -65519, 0, 65537, -65518, 0, 65537, -65517, 0, 65537, -65516, 0, 65537, -65515, 0, 65537, -65514, 0, 65537, -65513, 0, 65537, -65512, 0, 65537, -65511, 0, 65537, -65510, 0, 65537, -65509, 0, 65537, -65508, 0, 65537, -65507, 0, 65537, -65506, 0, 65537, -65505, 0, 65537, -65504, 0, 65537, -65503, 0, 65537, -65502, 0, 65537, -65501, 0, 65537, -65500, 0, 65538, 65527, 0, 65536, 65528, 0, 65537, 65529, 0, 65537, 65530, 0, 65537, 65531, 0, 65537, 65532, 0, 65537, 65533, 0, 65537, 65534, 0, 65537, 65535, 0, 65537, 0, 0, 65537, 1, 0, 65537, 2, 0, 65537, 3, 0, 65537, 4, 0, 65537, 5, 0, 65537, 6, 0, 65537, 7, 0, 65537, 8, 0, 65537, 9, 0, 65537, 10, 0, 65537, 11, 0, 65537, 12, 0, 65537, 13, 0, 65537, 14, 0, 65537, 15, 0, 65537, 16, 0, 65537, 17, 0, 65537, 18, 0, 65537, 19, 0, 65537, 20, 0, 65537, 21, 0, 65537, 22, 0, 65537, 23, 0, 65537, 24, 0, 65537, 25, 0, 65537, 26, 0, 65537, 27, 0, 65537, 28, 0, 65537, 29, 0, 65537, 30, 0, 65537, 31, 0, 65537, 32, 0, 65537, 33, 0, 65537, 34, 0, 65537, 35, 0, 65537, 36, 0, 65538, 131063, 0, 65536, 131064, 0, 65537, 131065, 0, 65537, 131066, 0, 65537, 131067, 0, 65537, 131068, 0, 65537, 131069, 0, 65537, 131070, 0, 65537, 131071, 0, 65537, 65536, 0, 65537, 65537, 0, 65537, 65538, 0, 65537, 65539, 0, 65537, 65540, 0, 65537, 65541, 0, 65537, 65542, 0, 65537, 65543, 0, 65537, 65544, 0, 65537, 65545, 0, 65537, 65546, 0, 65537, 65547, 0, 65537, 65548, 0, 65537, 65549, 0, 65537, 65550, 0, 65537, 65551, 0, 65537, 65552, 0, 65537, 65553, 0, 65537, 65554, 0, 65537, 65555, 0, 65537, 65556, 0, 65537, 65557, 0, 65537, 65558, 0, 65537, 65559, 0, 65537, 65560, 0, 65537, 65561, 0, 65537, 65562, 0, 65537, 65563, 0, 65537, 65564, 0, 65537, 65565, 0, 65537, 65566, 0, 65537, 65567, 0, 65537, 65568, 0, 65537, 65569, 0, 65537, 65570, 0, 65537, 65571, 0, 65537, 65572, 0, 65538, 196599, 0, 65536, 196600, 0, 65537, 196601, 0, 65537, 196602, 0, 65537, 196603, 0, 65537, 196604, 0, 65537, 196605, 0, 65537, 196606, 0, 65537, 196607, 0, 65537, 131072, 0, 65537, 131073, 0, 65537, 131074, 0, 65537, 131075, 0, 65537, 131076, 0, 65537, 131077, 0, 65537, 131078, 0, 65537, 131079, 0, 65537, 131080, 0, 65537, 131081, 0, 65537, 131082, 0, 65537, 131083, 0, 65537, 131084, 0, 65537, 131085, 0, 65537, 131086, 0, 65537, 131087, 0, 65537, 131088, 0, 65537, 131089, 0, 65537, 131090, 0, 65537, 131091, 0, 65537, 131092, 0, 65537, 131093, 0, 65537, 131094, 0, 65537, 131095, 0, 65537, 131096, 0, 65537, 131097, 0, 65537, 131098, 0, 65537, 131099, 0, 65537, 131100, 0, 65537, 131101, 0, 65537, 131102, 0, 65537, 131103, 0, 65537, 131104, 0, 65537, 131105, 0, 65537, 131106, 0, 65537, 131107, 0, 65537, 131108, 0, 65538, 262135, 0, 65536, 262136, 0, 65537, 262137, 0, 65537, 262138, 0, 65537, 262139, 0, 65537, 262140, 0, 65537, 262141, 0, 65537, 262142, 0, 65537, 262143, 0, 65537, 196608, 0, 65537, 196609, 0, 65537, 196610, 0, 65537, 196611, 0, 65537, 196612, 0, 65537, 196613, 0, 65537, 196614, 0, 65537, 196615, 0, 65537, 196616, 0, 65537, 196617, 0, 65537, 196618, 0, 65537, 196619, 0, 65537, 196620, 0, 65537, 196621, 0, 65537, 196622, 0, 65537, 196623, 0, 65537, 196624, 0, 65537, 196625, 0, 65537, 196626, 0, 65537, 196627, 0, 65537, 196628, 0, 65537, 196629, 0, 65537, 196630, 0, 65537, 196631, 0, 65537, 196632, 0, 65537, 196633, 0, 65537, 196634, 0, 65537, 196635, 0, 65537, 196636, 0, 65537, 196637, 0, 65537, 196638, 0, 65537, 196639, 0, 65537, 196640, 0, 65537, 196641, 0, 65537, 196642, 0, 65537, 196643, 0, 65537, 196644, 0, 65538, 327671, 0, 65536, 327672, 0, 65537, 327673, 0, 65537, 327674, 0, 65537, 327675, 0, 65537, 327676, 0, 65537, 327677, 0, 65537, 327678, 0, 65537, 327679, 0, 65537, 262144, 0, 65537, 262145, 0, 65537, 262146, 0, 65537, 262147, 0, 65537, 262148, 0, 65537, 262149, 0, 65537, 262150, 0, 65537, 262151, 0, 65537, 262152, 0, 65537, 262153, 0, 65537, 262154, 0, 65537, 262155, 0, 65537, 262156, 0, 65537, 262157, 0, 65537, 262158, 0, 65537, 262159, 0, 65537, 262160, 0, 65537, 262161, 0, 65537, 262162, 0, 65537, 262163, 0, 65537, 262164, 0, 65537, 262165, 0, 65537, 262166, 0, 65537, 262167, 0, 65537, 262168, 0, 65537, 262169, 0, 65537, 262170, 0, 65537, 262171, 0, 65537, 262172, 0, 65537, 262173, 0, 65537, 262174, 0, 65537, 262175, 0, 65537, 262176, 0, 65537, 262177, 0, 65537, 262178, 0, 65537, 262179, 0, 65537, 262180, 0, 65538, 393207, 0, 65536, 393208, 0, 65537, 393209, 0, 65537, 393210, 0, 65537, 393211, 0, 65537, 393212, 0, 65537, 393213, 0, 65537, 393214, 0, 65537, 393215, 0, 65537, 327680, 0, 65537, 327681, 0, 65537, 327682, 0, 65537, 327683, 0, 65537, 327684, 0, 65537, 327685, 0, 65537, 327686, 0, 65537, 327687, 0, 65537, 327688, 0, 65537, 327689, 0, 65537, 327690, 0, 65537, 327691, 0, 65537, 327692, 0, 65537, 327693, 0, 65537, 327694, 0, 65537, 327695, 0, 65537, 327696, 0, 65537, 327697, 0, 65537, 327698, 0, 65537, 327699, 0, 65537, 327700, 0, 65537, 327701, 0, 65537, 327702, 0, 65537, 327703, 0, 65537, 327704, 0, 65537, 327705, 0, 65537, 327706, 0, 65537, 327707, 0, 65537, 327708, 0, 65537, 327709, 0, 65537, 327710, 0, 65537, 327711, 0, 65537, 327712, 0, 65537, 327713, 0, 65537, 327714, 0, 65537, 327715, 0, 65537, 327716, 0, 65538, 458743, 0, 65536, 458744, 0, 65537, 458745, 0, 65537, 458746, 0, 65537, 458747, 0, 65537, 458748, 0, 65537, 458749, 0, 65537, 458750, 0, 65537, 458751, 0, 65537, 393216, 0, 65537, 393217, 0, 65537, 393218, 0, 65537, 393219, 0, 65537, 393220, 0, 65537, 393221, 0, 65537, 393222, 0, 65537, 393223, 0, 65537, 393224, 0, 65537, 393225, 0, 65537, 393226, 0, 65537, 393227, 0, 65537, 393228, 0, 65537, 393229, 0, 65537, 393230, 0, 65537, 393231, 0, 65537, 393232, 0, 65537, 393233, 0, 65537, 393234, 0, 65537, 393235, 0, 65537, 393236, 0, 65537, 393237, 0, 65537, 393238, 0, 65537, 393239, 0, 65537, 393240, 0, 65537, 393241, 0, 65537, 393242, 0, 65537, 393243, 0, 65537, 393244, 0, 65537, 393245, 0, 65537, 393246, 0, 65537, 393247, 0, 65537, 393248, 0, 65537, 393249, 0, 65537, 393250, 0, 65537, 393251, 0, 65537, 393252, 0, 65538, 524279, 0, 65536, 524280, 0, 65537, 524281, 0, 65537, 524282, 0, 65537, 524283, 0, 65537, 524284, 0, 65537, 524285, 0, 65537, 524286, 0, 65537, 524287, 0, 65537, 458752, 0, 65537, 458753, 0, 65537, 458754, 0, 65537, 458755, 0, 65537, 458756, 0, 65537, 458757, 0, 65537, 458758, 0, 65537, 458759, 0, 65537, 458760, 0, 65537, 458761, 0, 65537, 458762, 0, 65537, 458763, 0, 65537, 458764, 0, 65537, 458765, 0, 65537, 458766, 0, 65537, 458767, 0, 65537, 458768, 0, 65537, 458769, 0, 65537, 458770, 0, 65537, 458771, 0, 65537, 458772, 0, 65537, 458773, 0, 65537, 458774, 0, 65537, 458775, 0, 65537, 458776, 0, 65537, 458777, 0, 65537, 458778, 0, 65537, 458779, 0, 65537, 458780, 0, 65537, 458781, 0, 65537, 458782, 0, 65537, 458783, 0, 65537, 458784, 0, 65537, 458785, 0, 65537, 458786, 0, 65537, 458787, 0, 65537, 458788, 0, 65538, 589815, 0, 65536, 589816, 0, 65537, 589817, 0, 65537, 589818, 0, 65537, 589819, 0, 65537, 589820, 0, 65537, 589821, 0, 65537, 589822, 0, 65537, 589823, 0, 65537, 524288, 0, 65537, 524289, 0, 65537, 524290, 0, 65537, 524291, 0, 65537, 524292, 0, 65537, 524293, 0, 65537, 524294, 0, 65537, 524295, 0, 65537, 524296, 0, 65537, 524297, 0, 65537, 524298, 0, 65537, 524299, 0, 65537, 524300, 0, 65537, 524301, 0, 65537, 524302, 0, 65537, 524303, 0, 65537, 524304, 0, 65537, 524305, 0, 65537, 524306, 0, 65537, 524307, 0, 65537, 524308, 0, 65537, 524309, 0, 65537, 524310, 0, 65537, 524311, 0, 65537, 524312, 0, 65537, 524313, 0, 65537, 524314, 0, 65537, 524315, 0, 65537, 524316, 0, 65537, 524317, 0, 65537, 524318, 0, 65537, 524319, 0, 65537, 524320, 0, 65537, 524321, 0, 65537, 524322, 0, 65537, 524323, 0, 65537, 524324, 0, 65538, 655351, 0, 65536, 655352, 0, 65537, 655353, 0, 65537, 655354, 0, 65537, 655355, 0, 65537, 655356, 0, 65537, 655357, 0, 65537, 655358, 0, 65537, 655359, 0, 65537, 589824, 0, 65537, 589825, 0, 65537, 589826, 0, 65537, 589827, 0, 65537, 589828, 0, 65537, 589829, 0, 65537, 589830, 0, 65537, 589831, 0, 65537, 589832, 0, 65537, 589833, 0, 65537, 589834, 0, 65537, 589835, 0, 65537, 589836, 0, 65537, 589837, 0, 65537, 589838, 0, 65537, 589839, 0, 65537, 589840, 0, 65537, 589841, 0, 65537, 589842, 0, 65537, 589843, 0, 65537, 589844, 0, 65537, 589845, 0, 65537, 589846, 0, 65537, 589847, 0, 65537, 589848, 0, 65537, 589849, 0, 65537, 589850, 0, 65537, 589851, 0, 65537, 589852, 0, 65537, 589853, 0, 65537, 589854, 0, 65537, 589855, 0, 65537, 589856, 0, 65537, 589857, 0, 65537, 589858, 0, 65537, 589859, 0, 65537, 589860, 0, 65538, 720887, 0, 65536, 720888, 0, 65537, 720889, 0, 65537, 720890, 0, 65537, 720891, 0, 65537, 720892, 0, 65537, 720893, 0, 65537, 720894, 0, 65537, 720895, 0, 65537, 655360, 0, 65537, 655361, 0, 65537, 655362, 0, 65537, 655363, 0, 65537, 655364, 0, 65537, 655365, 0, 65537, 655366, 0, 65537, 655367, 0, 65537, 655368, 0, 65537, 655369, 0, 65537, 655370, 0, 65537, 655371, 0, 65537, 655372, 0, 65537, 655373, 0, 65537, 655374, 0, 65537, 655375, 0, 65537, 655376, 0, 65537, 655377, 0, 65537, 655378, 0, 65537, 655379, 0, 65537, 655380, 0, 65537, 655381, 0, 65537, 655382, 0, 65537, 655383, 0, 65537, 655384, 0, 65537, 655385, 0, 65537, 655386, 0, 65537, 655387, 0, 65537, 655388, 0, 65537, 655389, 0, 65537, 655390, 0, 65537, 655391, 0, 65537, 655392, 0, 65537, 655393, 0, 65537, 655394, 0, 65537, 655395, 0, 65537, 655396, 0, 65538, 786423, 0, 65536, 786424, 0, 65537, 786425, 0, 65537, 786426, 0, 65537, 786427, 0, 65537, 786428, 0, 65537, 786429, 0, 65537, 786430, 0, 65537, 786431, 0, 65537, 720896, 0, 65537, 720897, 0, 65537, 720898, 0, 65537, 720899, 0, 65537, 720900, 0, 65537, 720901, 0, 65537, 720902, 0, 65537, 720903, 0, 65537, 720904, 0, 65537, 720905, 0, 65537, 720906, 0, 65537, 720907, 0, 65537, 720908, 0, 65537, 720909, 0, 65537, 720910, 0, 65537, 720911, 0, 65537, 720912, 0, 65537, 720913, 0, 65537, 720914, 0, 65537, 720915, 0, 65537, 720916, 0, 65537, 720917, 0, 65537, 720918, 0, 65537, 720919, 0, 65537, 720920, 0, 65537, 720921, 0, 65537, 720922, 0, 65537, 720923, 0, 65537, 720924, 0, 65537, 720925, 0, 65537, 720926, 0, 65537, 720927, 0, 65537, 720928, 0, 65537, 720929, 0, 65537, 720930, 0, 65537, 720931, 0, 65537, 720932, 0, 65538, 851959, 0, 65536, 851960, 0, 65537, 851961, 0, 65537, 851962, 0, 65537, 851963, 0, 65537, 851964, 0, 65537, 851965, 0, 65537, 851966, 0, 65537, 851967, 0, 65537, 786432, 0, 65537, 786433, 0, 65537, 786434, 0, 65537, 786435, 0, 65537, 786436, 0, 65537, 786437, 0, 65537, 786438, 0, 65537, 786439, 0, 65537, 786440, 0, 65537, 786441, 0, 65537, 786442, 0, 65537, 786443, 0, 65537, 786444, 0, 65537, 786445, 0, 65537, 786446, 0, 65537, 786447, 0, 65537, 786448, 0, 65537, 786449, 0, 65537, 786450, 0, 65537, 786451, 0, 65537, 786452, 0, 65537, 786453, 0, 65537, 786454, 0, 65537, 786455, 0, 65537, 786456, 0, 65537, 786457, 0, 65537, 786458, 0, 65537, 786459, 0, 65537, 786460, 0, 65537, 786461, 0, 65537, 786462, 0, 65537, 786463, 0, 65537, 786464, 0, 65537, 786465, 0, 65537, 786466, 0, 65537, 786467, 0, 65537, 786468, 0, 65538, 917495, 0, 65536, 917496, 0, 65537, 917497, 0, 65537, 917498, 0, 65537, 917499, 0, 65537, 917500, 0, 65537, 917501, 0, 65537, 917502, 0, 65537, 917503, 0, 65537, 851968, 0, 65537, 851969, 0, 65537, 851970, 0, 65537, 851971, 0, 65537, 851972, 0, 65537, 851973, 0, 65537, 851974, 0, 65537, 851975, 0, 65537, 851976, 0, 65537, 851977, 0, 65537, 851978, 0, 65537, 851979, 0, 65537, 851980, 0, 65537, 851981, 0, 65537, 851982, 0, 65537, 851983, 0, 65537, 851984, 0, 65537, 851985, 0, 65537, 851986, 0, 65537, 851987, 0, 65537, 851988, 0, 65537, 851989, 0, 65537, 851990, 0, 65537, 851991, 0, 65537, 851992, 0, 65537, 851993, 0, 65537, 851994, 0, 65537, 851995, 0, 65537, 851996, 0, 65537, 851997, 0, 65537, 851998, 0, 65537, 851999, 0, 65537, 852000, 0, 65537, 852001, 0, 65537, 852002, 0, 65537, 852003, 0, 65537, 852004, 0, 65538, 983031, 0, 65536, 983032, 0, 65537, 983033, 0, 65537, 983034, 0, 65537, 983035, 0, 65537, 983036, 0, 65537, 983037, 0, 65537, 983038, 0, 65537, 983039, 0, 65537, 917504, 0, 65537, 917505, 0, 65537, 917506, 0, 65537, 917507, 0, 65537, 917508, 0, 65537, 917509, 0, 65537, 917510, 0, 65537, 917511, 0, 65537, 917512, 0, 65537, 917513, 0, 65537, 917514, 0, 65537, 917515, 0, 65537, 917516, 0, 65537, 917517, 0, 65537, 917518, 0, 65537, 917519, 0, 65537, 917520, 0, 65537, 917521, 0, 65537, 917522, 0, 65537, 917523, 0, 65537, 917524, 0, 65537, 917525, 0, 65537, 917526, 0, 65537, 917527, 0, 65537, 917528, 0, 65537, 917529, 0, 65537, 917530, 0, 65537, 917531, 0, 65537, 917532, 0, 65537, 917533, 0, 65537, 917534, 0, 65537, 917535, 0, 65537, 917536, 0, 65537, 917537, 0, 65537, 917538, 0, 65537, 917539, 0, 65537, 917540, 0, 65538, 1048567, 0, 65536, 1048568, 0, 65537, 1048569, 0, 65537, 1048570, 0, 65537, 1048571, 0, 65537, 1048572, 0, 65537, 1048573, 0, 65537, 1048574, 0, 65537, 1048575, 0, 65537, 983040, 0, 65537, 983041, 0, 65537, 983042, 0, 65537, 983043, 0, 65537, 983044, 0, 65537, 983045, 0, 65537, 983046, 0, 65537, 983047, 0, 65537, 983048, 0, 65537, 983049, 0, 65537, 983050, 0, 65537, 983051, 0, 65537, 983052, 0, 65537, 983053, 0, 65537, 983054, 0, 65537, 983055, 0, 65537, 983056, 0, 65537, 983057, 0, 65537, 983058, 0, 65537, 983059, 0, 65537, 983060, 0, 65537, 983061, 0, 65537, 983062, 0, 65537, 983063, 0, 65537, 983064, 0, 65537, 983065, 0, 65537, 983066, 0, 65537, 983067, 0, 65537, 983068, 0, 65537, 983069, 0, 65537, 983070, 0, 65537, 983071, 0, 65537, 983072, 0, 65537, 983073, 0, 65537, 983074, 0, 65537, 983075, 0, 65537, 983076, 0, 65538, 1114103, 0, 65536, 1114104, 0, 65537, 1114105, 0, 65537, 1114106, 0, 65537, 1114107, 0, 65537, 1114108, 0, 65537, 1114109, 0, 65537, 1114110, 0, 65537, 1114111, 0, 65537, 1048576, 0, 65537, 1048577, 0, 65537, 1048578, 0, 65537, 1048579, 0, 65537, 1048580, 0, 65537, 1048581, 0, 65537, 1048582, 0, 65537, 1048583, 0, 65537, 1048584, 0, 65537, 1048585, 0, 65537, 1048586, 0, 65537, 1048587, 0, 65537, 1048588, 0, 65537, 1048589, 0, 65537, 1048590, 0, 65537, 1048591, 0, 65537, 1048592, 0, 65537, 1048593, 0, 65537, 1048594, 0, 65537, 1048595, 0, 65537, 1048596, 0, 65537, 1048597, 0, 65537, 1048598, 0, 65537, 1048599, 0, 65537, 1048600, 0, 65537, 1048601, 0, 65537, 1048602, 0, 65537, 1048603, 0, 65537, 1048604, 0, 65537, 1048605, 0, 65537, 1048606, 0, 65537, 1048607, 0, 65537, 1048608, 0, 65537, 1048609, 0, 65537, 1048610, 0, 65537, 1048611, 0, 65537, 1048612, 0, 65538, 1179639, 0, 131072, 1179640, 0, 131073, 1179641, 0, 131073, 1179642, 0, 131073, 1179643, 0, 131073, 1179644, 0, 131073, 1179645, 0, 131073, 1179646, 0, 131073, 1179647, 0, 131073, 1114112, 0, 131073, 1114113, 0, 131073, 1114114, 0, 131073, 1114115, 0, 131073, 1114116, 0, 131073, 1114117, 0, 131073, 1114118, 0, 131073, 1114119, 0, 131073, 1114120, 0, 131073, 1114121, 0, 131073, 1114122, 0, 131073, 1114123, 0, 131073, 1114124, 0, 131073, 1114125, 0, 131073, 1114126, 0, 131073, 1114127, 0, 131073, 1114128, 0, 131073, 1114129, 0, 131073, 1114130, 0, 131073, 1114131, 0, 131073, 1114132, 0, 131073, 1114133, 0, 131073, 1114134, 0, 131073, 1114135, 0, 131073, 1114136, 0, 131073, 1114137, 0, 131073, 1114138, 0, 131073, 1114139, 0, 131073, 1114140, 0, 131073, 1114141, 0, 131073, 1114142, 0, 131073, 1114143, 0, 131073, 1114144, 0, 131073, 1114145, 0, 131073, 1114146, 0, 131073, 1114147, 0, 131073, 1114148, 0, 131074 ) @@ -28,38 +34,59 @@ tile_data = PoolIntArray( -393225, 0, 0, -393224, 0, 1, -393223, 0, 1, -393222, light_mask = 8 tile_set = ExtResource( 8 ) cell_size = Vector2( 16, 16 ) +collision_mask = 0 format = 1 -tile_data = PoolIntArray( -196589, 0, 0, -196588, 0, 1, -196587, 0, 1, -196586, 0, 1, -196585, 0, 1, -196584, 0, 1, -196583, 0, 2, -131055, 0, 0, -131054, 0, 1, -131053, 0, 131078, -131052, 0, 65541, -131051, 0, 131073, -131050, 0, 131073, -131049, 0, 131073, -131048, 0, 65542, -131047, 0, 65538, -65524, 0, 0, -65523, 0, 1, -65522, 0, 1, -65521, 0, 1, -65520, 0, 1, -65519, 0, 65545, -65518, 0, 131073, -65517, 0, 131073, -65516, 0, 131074, -65512, 0, 65536, -65511, 0, 65538, 12, 0, 65536, 13, 0, 65541, 14, 0, 131073, 15, 0, 131073, 16, 0, 131073, 17, 0, 131074, 24, 0, 65536, 25, 0, 65538, 65548, 0, 65536, 65549, 0, 65538, 65560, 0, 65536, 65561, 0, 65538, 131078, 0, 0, 131079, 0, 1, 131080, 0, 1, 131081, 0, 1, 131082, 0, 1, 131083, 0, 1, 131084, 0, 131078, 131085, 0, 65538, 131089, 0, 3, 131096, 0, 65536, 131097, 0, 65538, 196614, 0, 65536, 196615, 0, 65541, 196616, 0, 131073, 196617, 0, 131073, 196618, 0, 131073, 196619, 0, 131073, 196620, 0, 65542, 196621, 0, 65538, 196625, 0, 65539, 196632, 0, 65536, 196633, 0, 65538, 262150, 0, 65536, 262151, 0, 65538, 262156, 0, 65536, 262157, 0, 65538, 262161, 0, 65539, 262163, 0, 0, 262164, 0, 2, 262167, 0, 0, 262168, 0, 131078, 262169, 0, 65538, 327686, 0, 65536, 327687, 0, 65538, 327692, 0, 65536, 327693, 0, 65538, 327696, 0, 4, 327697, 0, 196615, 327699, 0, 131072, 327700, 0, 65543, 327703, 0, 65536, 327704, 0, 65541, 327705, 0, 131074, 393222, 0, 65536, 393223, 0, 65538, 393228, 0, 65536, 393229, 0, 131077, 393230, 0, 5, 393231, 0, 196609, 393232, 0, 196615, 393236, 0, 131075, 393239, 0, 65536, 393240, 0, 65538, 458758, 0, 131072, 458759, 0, 131074, 458761, 0, 0, 458762, 0, 2, 458764, 0, 131072, 458765, 0, 131073, 458766, 0, 131074, 458774, 0, 0, 458775, 0, 131078, 458776, 0, 65538, 524297, 0, 65536, 524298, 0, 65538, 524309, 0, 0, 524310, 0, 131078, 524311, 0, 65541, 524312, 0, 131074, 589833, 0, 65536, 589834, 0, 131077, 589835, 0, 1, 589836, 0, 1, 589837, 0, 1, 589838, 0, 1, 589839, 0, 1, 589840, 0, 1, 589841, 0, 1, 589842, 0, 1, 589843, 0, 1, 589844, 0, 1, 589845, 0, 131078, 589846, 0, 65541, 589847, 0, 131074, 655369, 0, 131072, 655370, 0, 131073, 655371, 0, 131073, 655372, 0, 131073, 655373, 0, 131073, 655374, 0, 131073, 655375, 0, 131073, 655376, 0, 131073, 655377, 0, 131073, 655378, 0, 131073, 655379, 0, 131073, 655380, 0, 131073, 655381, 0, 131073, 655382, 0, 131074 ) +tile_data = PoolIntArray( -196589, 0, 0, -196588, 0, 1, -196587, 0, 1, -196586, 0, 1, -196585, 0, 1, -196584, 0, 1, -196583, 0, 2, -131055, 0, 0, -131054, 0, 1, -131053, 0, 131078, -131052, 0, 65541, -131051, 0, 131073, -131050, 0, 131073, -131049, 0, 131073, -131048, 0, 65542, -131047, 0, 65538, -65524, 0, 0, -65523, 0, 1, -65522, 0, 1, -65521, 0, 1, -65520, 0, 1, -65519, 0, 65545, -65518, 0, 131073, -65517, 0, 131073, -65516, 0, 131074, -65512, 0, 65536, -65511, 0, 65538, 12, 0, 65536, 13, 0, 65541, 14, 0, 131073, 15, 0, 131073, 16, 0, 131073, 17, 0, 131074, 24, 0, 65536, 25, 0, 65538, 65548, 0, 65536, 65549, 0, 65538, 65560, 0, 65536, 65561, 0, 65538, 131078, 0, 0, 131079, 0, 1, 131080, 0, 1, 131081, 0, 1, 131082, 0, 1, 131083, 0, 1, 131084, 0, 131078, 131085, 0, 65538, 131089, 0, 3, 131096, 0, 65536, 131097, 0, 65538, 196614, 0, 65536, 196615, 0, 65541, 196616, 0, 131073, 196617, 0, 131073, 196618, 0, 131073, 196619, 0, 131073, 196620, 0, 65542, 196621, 0, 65538, 196625, 0, 65539, 196632, 0, 65536, 196633, 0, 65538, 262150, 0, 65536, 262151, 0, 65538, 262156, 0, 65536, 262157, 0, 65538, 262161, 0, 65539, 262163, 0, 0, 262164, 0, 2, 262167, 0, 0, 262168, 0, 131078, 262169, 0, 65538, 327686, 0, 65536, 327687, 0, 65538, 327692, 0, 65536, 327693, 0, 65538, 327696, 0, 4, 327697, 0, 196615, 327699, 0, 131072, 327700, 0, 65543, 327703, 0, 65536, 327704, 0, 65541, 327705, 0, 131074, 393222, 0, 65536, 393223, 0, 65538, 393228, 0, 65536, 393229, 0, 131077, 393230, 0, 5, 393231, 0, 196609, 393232, 0, 196615, 393236, 0, 131075, 393239, 0, 65536, 393240, 0, 65538, 458755, 0, 0, 458756, 0, 2, 458758, 0, 65536, 458759, 0, 65538, 458761, 0, 0, 458762, 0, 2, 458764, 0, 131072, 458765, 0, 131073, 458766, 0, 131074, 458774, 0, 0, 458775, 0, 131078, 458776, 0, 65538, 524291, 0, 65536, 524292, 0, 65538, 524294, 0, 65536, 524295, 0, 65538, 524297, 0, 65536, 524298, 0, 65538, 524309, 0, 0, 524310, 0, 131078, 524311, 0, 65541, 524312, 0, 131074, 589827, 0, 65536, 589828, 0, 65538, 589830, 0, 131072, 589831, 0, 131074, 589833, 0, 65536, 589834, 0, 131077, 589835, 0, 1, 589836, 0, 1, 589837, 0, 1, 589838, 0, 1, 589839, 0, 1, 589840, 0, 1, 589841, 0, 1, 589842, 0, 1, 589843, 0, 1, 589844, 0, 1, 589845, 0, 131078, 589846, 0, 65541, 589847, 0, 131074, 655363, 0, 65536, 655364, 0, 65538, 655369, 0, 65536, 655370, 0, 65541, 655371, 0, 131073, 655372, 0, 131073, 655373, 0, 131073, 655374, 0, 131073, 655375, 0, 131073, 655376, 0, 131073, 655377, 0, 131073, 655378, 0, 131073, 655379, 0, 131073, 655380, 0, 131073, 655381, 0, 131073, 655382, 0, 131074, 720899, 0, 65536, 720900, 0, 65538, 720905, 0, 65536, 720906, 0, 65538, 786435, 0, 65536, 786436, 0, 65538, 786441, 0, 65536, 786442, 0, 65538, 851971, 0, 65536, 851972, 0, 65538, 851977, 0, 65536, 851978, 0, 65538, 917507, 0, 65536, 917508, 0, 65538, 917513, 0, 65536, 917514, 0, 65538, 983043, 0, 65536, 983044, 0, 131077, 983045, 0, 1, 983046, 0, 1, 983047, 0, 1, 983048, 0, 1, 983049, 0, 131078, 983050, 0, 65538, 1048579, 0, 131072, 1048580, 0, 131073, 1048581, 0, 131073, 1048582, 0, 131073, 1048583, 0, 131073, 1048584, 0, 131073, 1048585, 0, 131073, 1048586, 0, 131074 ) [node name="YSort" type="YSort" parent="."] [node name="Player" parent="YSort" instance=ExtResource( 1 )] position = Vector2( 160, 90 ) -[node name="Camera2D" type="Camera2D" parent="YSort/Player"] +[node name="Camera" type="Camera2D" parent="YSort/Player"] current = true -[node name="Light2D" type="Light2D" parent="YSort/Player"] +[node name="Light" type="Light2D" parent="YSort/Player"] texture = ExtResource( 5 ) range_item_cull_mask = 15 shadow_enabled = true [node name="Enemies" type="YSort" parent="YSort"] -[node name="Glowing Ghost 0" parent="YSort/Enemies" instance=ExtResource( 9 )] +[node name="Chasing Glowing Ghost 0" parent="YSort/Enemies" instance=ExtResource( 9 )] position = Vector2( 281, 109 ) -[node name="Glowing Ghost 1" parent="YSort/Enemies" instance=ExtResource( 9 )] +[node name="Chasing Glowing Ghost 1" parent="YSort/Enemies" instance=ExtResource( 9 )] position = Vector2( 328.5, 20 ) +[node name="Creepy Glowing Ghost 00" parent="YSort/Enemies" instance=ExtResource( 13 )] +position = Vector2( 310, 40 ) + +[node name="Creepy Glowing Ghost 01" parent="YSort/Enemies" instance=ExtResource( 13 )] +position = Vector2( 90, 175 ) + +[node name="Creepy Glowing Ghost 02" parent="YSort/Enemies" instance=ExtResource( 13 )] +position = Vector2( 100, 220 ) + +[node name="Interactables" type="Node2D" parent="."] + +[node name="Silver Key Pickup" parent="Interactables" instance=ExtResource( 11 )] +position = Vector2( 240, 80 ) + +[node name="Silver Barrier" parent="Interactables" instance=ExtResource( 12 )] +position = Vector2( 136, 120 ) +alignment = "H" + [node name="Traps" type="Node2D" parent="."] [node name="Spawn Trap" parent="Traps" instance=ExtResource( 10 )] position = Vector2( 256, 16 ) -enemy_path = "res://Enemies/Glowing Ghost.tscn" +enemy_path = "res://Enemies/Chasing Glowing Ghost.tscn" relative_x_tiles = -1 relative_y_tiles = 2 +[node name="Projectiles" type="Node2D" parent="."] + [node name="HUD" parent="." instance=ExtResource( 3 )] [node name="Pause Screen" parent="." instance=ExtResource( 7 )] diff --git a/Levels/Objects/Door.tscn b/Levels/Objects/Door.tscn new file mode 100644 index 0000000..3de6b2d --- /dev/null +++ b/Levels/Objects/Door.tscn @@ -0,0 +1,13 @@ +[gd_scene load_steps=3 format=2] + +[ext_resource path="res://Sprites/Levels/Objects/DoorOpen.png" type="Texture" id=1] +[ext_resource path="res://Sprites/Levels/Objects/DoorClosed.png" type="Texture" id=2] + +[node name="Door" type="Sprite"] + +[node name="doorClosed" type="Sprite" parent="."] +texture = ExtResource( 2 ) + +[node name="doorOpened" type="Sprite" parent="."] +visible = false +texture = ExtResource( 1 ) diff --git a/Levels/Objects/Gem.gd b/Levels/Objects/Gem.gd new file mode 100644 index 0000000..13267fc --- /dev/null +++ b/Levels/Objects/Gem.gd @@ -0,0 +1,24 @@ +extends Node2D + + +# Declare member variables here. Examples: +# var a: int = 2 +# var b: String = "text" + + +# Called when the node enters the scene tree for the first time. +func _ready() -> void: + pass # Replace with function body. + + +# Called every frame. 'delta' is the elapsed time since the previous frame. +#func _process(delta: float) -> void: +# pass + + +func _on_AnimationPlayer_animation_finished(anim_name: String) -> void: + $GemSprite.visible = false + + +func _on_AnimationPlayer_animation_started(anim_name: String) -> void: + $GemSprite.visible = true diff --git a/Levels/Objects/Gem.tscn b/Levels/Objects/Gem.tscn new file mode 100644 index 0000000..d7ea503 --- /dev/null +++ b/Levels/Objects/Gem.tscn @@ -0,0 +1,34 @@ +[gd_scene load_steps=4 format=2] + +[ext_resource path="res://Sprites/Assets/resources_basic.png" type="Texture" id=1] +[ext_resource path="res://Levels/Objects/Gem.gd" type="Script" id=2] + +[sub_resource type="Animation" id=3] +resource_name = "rise" +length = 1.2 +tracks/0/type = "value" +tracks/0/path = NodePath("GemSprite:position") +tracks/0/interp = 1 +tracks/0/loop_wrap = true +tracks/0/imported = false +tracks/0/enabled = true +tracks/0/keys = { +"times": PoolRealArray( 0, 0.3, 0.8, 1.2 ), +"transitions": PoolRealArray( 1, 1, 1, 1 ), +"update": 0, +"values": [ Vector2( 0, 0 ), Vector2( 0, -10 ), Vector2( 0, -18 ), Vector2( 0, -20 ) ] +} + +[node name="Gem" type="Node2D"] +script = ExtResource( 2 ) + +[node name="GemSprite" type="Sprite" parent="."] +position = Vector2( 0, -20 ) +texture = ExtResource( 1 ) +region_enabled = true +region_rect = Rect2( 2, 50, 20, 20 ) + +[node name="AnimationPlayer" type="AnimationPlayer" parent="."] +anims/rise = SubResource( 3 ) + +[connection signal="animation_finished" from="AnimationPlayer" to="." method="_on_AnimationPlayer_animation_finished"] diff --git a/Levels/Objects/TreasureChest.gd b/Levels/Objects/TreasureChest.gd new file mode 100644 index 0000000..d75d9a2 --- /dev/null +++ b/Levels/Objects/TreasureChest.gd @@ -0,0 +1,33 @@ +extends Sprite + +var is_player_inside: bool = false +var is_opened: bool = false +var has_gem: bool = true + +signal gem_collected + +# Declare member variables here. Examples: +# var a: int = 2 +# var b: String = "text" + + +# Called when the node enters the scene tree for the first time. +func _ready() -> void: + pass # Replace with function body. + + +# Called every frame. 'delta' is the elapsed time since the previous frame. +#func _process(delta: float) -> void: +# pass + + +func _on_Player_Detector_area_entered(area: Area2D) -> void: + if area.get_parent().name == 'Player': + if is_opened == false: + $chestClosed.visible = false + $chestOpened.visible = true + $Gem.visible = true + $Gem/AnimationPlayer.play("rise") + is_opened = true + has_gem = false + emit_signal("gem_collected") diff --git a/Levels/Objects/TreasureChest.tscn b/Levels/Objects/TreasureChest.tscn new file mode 100644 index 0000000..5e8e87f --- /dev/null +++ b/Levels/Objects/TreasureChest.tscn @@ -0,0 +1,36 @@ +[gd_scene load_steps=6 format=2] + +[ext_resource path="res://Sprites/Levels/Interactables/treasureChestOpen.png" type="Texture" id=1] +[ext_resource path="res://Sprites/Levels/Interactables/treasureChest.png" type="Texture" id=2] +[ext_resource path="res://Levels/Objects/Gem.tscn" type="PackedScene" id=3] +[ext_resource path="res://Levels/Objects/TreasureChest.gd" type="Script" id=4] + +[sub_resource type="RectangleShape2D" id=1] +extents = Vector2( 21.3333, 17.3333 ) + +[node name="TreasureChest" type="Sprite" groups=["enemies"]] +script = ExtResource( 4 ) + +[node name="chestOpened" type="Sprite" parent="."] +visible = false +texture = ExtResource( 1 ) + +[node name="chestClosed" type="Sprite" parent="."] +texture = ExtResource( 2 ) + +[node name="Gem" parent="." instance=ExtResource( 3 )] +visible = false + +[node name="Player Detector" type="Area2D" parent="."] +collision_layer = 0 +collision_mask = 2 +input_pickable = false +monitorable = false + +[node name="CollisionShape2D" type="CollisionShape2D" parent="Player Detector"] +visible = false +position = Vector2( 1, -1 ) +scale = Vector2( 1.5, 1.5 ) +shape = SubResource( 1 ) + +[connection signal="area_entered" from="Player Detector" to="." method="_on_Player_Detector_area_entered"] diff --git a/Levels/Traps/Spawn Trap.gd b/Levels/Traps/Spawn Trap.gd index 7e356e7..2fb1afe 100644 --- a/Levels/Traps/Spawn Trap.gd +++ b/Levels/Traps/Spawn Trap.gd @@ -5,14 +5,15 @@ export var relative_x_tiles: int export var relative_y_tiles: int -func _on_spawn_trap_area_entered(_area: Area2D) -> void: - set_deferred('monitoring', false) - $Tile.set_deferred('disabled', true) +func _on_spawn_trap_body_entered(body: Node) -> void: + if body.is_in_group('player'): + set_deferred('monitoring', false) - var enemy: KinematicBody2D = load(enemy_path).instance() - enemy.position.x = position.x + (relative_x_tiles * 16 + 8) - enemy.position.y = position.y + (relative_y_tiles * 16 + 8) + var enemy: KinematicBody2D = load(enemy_path).instance() + enemy.position.x = position.x + (relative_x_tiles * 16 + 8) + enemy.position.y = position.y + (relative_y_tiles * 16 + 8) - var enemies: YSort = get_tree().get_current_scene().get_node('YSort/Enemies') - enemies.call_deferred('add_child', enemy) + var enemies: YSort = get_tree().get_current_scene().get_node('YSort/Enemies') + enemies.call_deferred('add_child', enemy) + call_deferred('queue_free') return diff --git a/Levels/Traps/Spawn Trap.tscn b/Levels/Traps/Spawn Trap.tscn index 6c2cc07..1aaac32 100644 --- a/Levels/Traps/Spawn Trap.tscn +++ b/Levels/Traps/Spawn Trap.tscn @@ -14,7 +14,8 @@ monitorable = false script = ExtResource( 1 ) [node name="Tile" type="CollisionShape2D" parent="."] +light_mask = 0 position = Vector2( 8, 8 ) shape = SubResource( 1 ) -[connection signal="area_entered" from="." to="." method="_on_spawn_trap_area_entered"] +[connection signal="body_entered" from="." to="." method="_on_spawn_trap_body_entered"] diff --git a/Main.gd b/Main.gd index 1f849e5..045d744 100644 --- a/Main.gd +++ b/Main.gd @@ -66,10 +66,8 @@ func level_select_menu_option(option: String) -> void: new_game(level) return - func free_connected_node(node: Node, connected_function: String) -> void: node.disconnect('complete', self, connected_function) - remove_child(node) node.queue_free() return diff --git a/Player/Inventory.gd b/Player/Inventory.gd index 807e50d..dbc4434 100644 --- a/Player/Inventory.gd +++ b/Player/Inventory.gd @@ -3,43 +3,38 @@ extends Node signal update_currency(amount) var __currency: int - -var __weapons: Array -var __accessories: Array -var __categories: Dictionary +var __items: Array func _ready() -> void: - self.__currency = 100 - - self.__weapons = [] - self.__accessories = [] - self.__categories = { - 'Weapon': self.__weapons, - 'Accessory': self.__accessories} + __currency = 100 + __items = [] return func get_currency() -> int: - return self.__currency + return __currency func add_currency(amount: int) -> void: - self.__currency += amount - emit_signal('update_currency', self.__currency) + __currency += amount + emit_signal('update_currency', __currency) return -func add(item) -> void: - self.__categories[item.type].append(item) +func contains(item: String) -> bool: + if item in __items: + return true + return false + + +func add(item: String) -> void: + __items.append(item) return -func discard(item) -> void: - var index: int = 0 - for itr in self.__categories[item.type]: - if itr.equals(item): - self.__categories[item.type].remove(index) - break - index += 1 +func remove(item: String) -> void: + for k in range(len(__items)): + if __items[k] == item: + __items.remove(k) return diff --git a/Player/Player.gd b/Player/Player.gd index 7a75077..a6ca229 100644 --- a/Player/Player.gd +++ b/Player/Player.gd @@ -7,10 +7,17 @@ export var FRICTION: int = 1000 const HEALTH_SLICES: Array = [0, 18, 35, 50, 65, 82, 100] var health_index: int = 6 +var l5_gems: int = 0 + var hud: CanvasLayer = null var velocity: Vector2 = Vector2.ZERO +func _ready() -> void: + set_weapon_position(Vector2(1, 0)) + return + + func _physics_process(delta: float) -> void: var input_vector: Vector2 = Vector2.ZERO @@ -23,6 +30,7 @@ func _physics_process(delta: float) -> void: if input_vector != Vector2.ZERO: $AnimationTree.set('parameters/Idle/blend_position', input_vector) velocity = velocity.move_toward(input_vector * MAX_SPEED, ACCELERATION * delta) + set_weapon_position(input_vector) else: velocity = velocity.move_toward(Vector2.ZERO, FRICTION * delta) @@ -40,29 +48,77 @@ func load_hud(node: CanvasLayer) -> void: return +func set_weapon_position(pos: Vector2) -> void: + # facing left + if pos[0] < 0: + $Sword.rotation_degrees = -90 + $Javelin.rotation_degrees = -90 + + # facing right + elif pos[0] > 0: + $Sword.rotation_degrees = 90 + $Javelin.rotation_degrees = 90 + + # facing up + elif pos[1] < 0: + $Sword.rotation_degrees = 0 + $Javelin.rotation_degrees = 0 + + # facing down + elif pos[1] > 0: + $Sword.rotation_degrees = 180 + $Javelin.rotation_degrees = 180 + return + + func add_currency(amount: int) -> void: $Inventory.add_currency(amount) return +func has_item(item: String) -> bool: + return $Inventory.contains(item) + + +func add_item(item: String) -> void: + $Inventory.add(item) + return + + +func remove_item(item: String) -> void: + $Inventory.remove(item) + return + + func _on_Inventory_update_currency(amount: int) -> void: hud.update_currency(amount) return -func _on_Hitbox_body_entered(body: Node) -> void: - if not 'enemies' in body.get_groups(): +func _on_hitbox_area_entered(area: Area2D) -> void: + var hit: int = 0 + + if area.is_in_group('enemy_hitbox_1') or area.is_in_group('enemy_projectile_1'): + hit = 1 + elif area.is_in_group('enemy_hitbox_2') or area.is_in_group('enemy_projectile_2'): + hit = 2 + elif area.is_in_group('enemy_hitbox_3') or area.is_in_group('enemy_projectile_3'): + hit = 3 + else: return #var timer = Timer.new() + elif body.name.begins_with("blue_snowman"): MAX_SPEED = 20 yield(get_tree().create_timer(3.0), "timeout") MAX_SPEED = 120 - elif health_index != 0: - health_index != 0 - health_index -= 1 + if health_index != 0: + health_index -= hit + if health_index < 0: + health_index = 0 + hud.update_health(HEALTH_SLICES[health_index]) else: get_tree().change_scene('res://Levels/Hub World.tscn') @@ -71,10 +127,16 @@ func _on_Hitbox_body_entered(body: Node) -> void: func _input(event: InputEvent) -> void: + if event.is_action_pressed('player_attack'): + if hud.weapon == 'sword': + $'Sword/Sword Animation'.play('swing') + elif hud.weapon == 'javelin': + $'Javelin/Javelin Animation'.play('swing') + if event.is_action_pressed('screenshot'): var img: Image = get_viewport().get_texture().get_data() - yield(get_tree(), "idle_frame") - yield(get_tree(), "idle_frame") + yield(get_tree(), 'idle_frame') + yield(get_tree(), 'idle_frame') img.flip_y() diff --git a/Player/Player.tscn b/Player/Player.tscn index 9567c6a..030126b 100644 --- a/Player/Player.tscn +++ b/Player/Player.tscn @@ -1,10 +1,12 @@ -[gd_scene load_steps=20 format=2] +[gd_scene load_steps=22 format=2] [ext_resource path="res://Player/Player.gd" type="Script" id=1] [ext_resource path="res://Sprites/Player/Player.png" type="Texture" id=2] [ext_resource path="res://Sprites/Player/Player_Down.png" type="Texture" id=3] [ext_resource path="res://Sprites/Player/Player_Up.png" type="Texture" id=4] [ext_resource path="res://Player/Inventory.tscn" type="PackedScene" id=5] +[ext_resource path="res://Player/Weapons/Javelin.tscn" type="PackedScene" id=6] +[ext_resource path="res://Player/Weapons/Sword.tscn" type="PackedScene" id=7] [sub_resource type="SpriteFrames" id=1] animations = [ { @@ -180,24 +182,26 @@ graph_offset = Vector2( -3591.37, -302.6 ) [sub_resource type="AnimationNodeStateMachinePlayback" id=14] -[node name="Player" type="KinematicBody2D"] +[node name="Player" type="KinematicBody2D" groups=["player"]] collision_layer = 2 script = ExtResource( 1 ) [node name="Sprite" type="AnimatedSprite" parent="."] light_mask = 2 +z_index = 1 frames = SubResource( 1 ) animation = "look_right" -offset = Vector2( 0, -5 ) +offset = Vector2( 0, -4 ) [node name="Collision" type="CollisionShape2D" parent="."] visible = false rotation = 1.5708 shape = SubResource( 2 ) -[node name="Hitbox" type="Area2D" parent="."] +[node name="Hitbox" type="Area2D" parent="." groups=["player_hitbox"]] collision_layer = 2 -collision_mask = 2 +collision_mask = 4 +input_pickable = false [node name="CollisionShape2D" type="CollisionShape2D" parent="Hitbox"] visible = false @@ -220,6 +224,11 @@ parameters/Idle/blend_position = Vector2( 0.0760697, 0 ) [node name="Inventory" parent="." instance=ExtResource( 5 )] -[connection signal="area_entered" from="Hitbox" to="." method="_on_Hitbox_area_entered"] -[connection signal="body_entered" from="Hitbox" to="." method="_on_Hitbox_body_entered"] +[node name="Sword" parent="." instance=ExtResource( 7 )] +position = Vector2( 0, -4 ) + +[node name="Javelin" parent="." instance=ExtResource( 6 )] +position = Vector2( 0, -4 ) + +[connection signal="area_entered" from="Hitbox" to="." method="_on_hitbox_area_entered"] [connection signal="update_currency" from="Inventory" to="." method="_on_Inventory_update_currency"] diff --git a/Player/Weapons/Javelin.gd b/Player/Weapons/Javelin.gd new file mode 100644 index 0000000..c826efb --- /dev/null +++ b/Player/Weapons/Javelin.gd @@ -0,0 +1,11 @@ +extends Node2D + + +func _on_javelin_animation_animation_started(anim_name: String) -> void: + $Animation/CollisionShape2D.set_deferred('monitorable', true) + return + + +func _on_javelin_animation_animation_finished(anim_name: String) -> void: + $Animation/CollisionShape2D.set_deferred('monitorable', false) + return diff --git a/Player/Weapons/Javelin.tscn b/Player/Weapons/Javelin.tscn new file mode 100644 index 0000000..641fd33 --- /dev/null +++ b/Player/Weapons/Javelin.tscn @@ -0,0 +1,75 @@ +[gd_scene load_steps=4 format=2] + +[ext_resource path="res://Sprites/Items/Javelin.png" type="Texture" id=1] + +[sub_resource type="RectangleShape2D" id=3] +extents = Vector2( 2.2, 3 ) + +[sub_resource type="Animation" id=2] +resource_name = "swing" +length = 0.4 +tracks/0/type = "value" +tracks/0/path = NodePath("Animation:position") +tracks/0/interp = 1 +tracks/0/loop_wrap = true +tracks/0/imported = false +tracks/0/enabled = true +tracks/0/keys = { +"times": PoolRealArray( 0.01, 0.21 ), +"transitions": PoolRealArray( 1, 1 ), +"update": 0, +"values": [ Vector2( 0, 0 ), Vector2( 0, -7 ) ] +} +tracks/1/type = "value" +tracks/1/path = NodePath("Animation/Javelin:visible") +tracks/1/interp = 1 +tracks/1/loop_wrap = true +tracks/1/imported = false +tracks/1/enabled = true +tracks/1/keys = { +"times": PoolRealArray( 0, 0.01, 0.4 ), +"transitions": PoolRealArray( 1, 1, 1 ), +"update": 1, +"values": [ false, true, false ] +} +tracks/2/type = "value" +tracks/2/path = NodePath("Animation:monitorable") +tracks/2/interp = 1 +tracks/2/loop_wrap = true +tracks/2/imported = false +tracks/2/enabled = true +tracks/2/keys = { +"times": PoolRealArray( 0.02, 0.22 ), +"transitions": PoolRealArray( 1, 1 ), +"update": 1, +"values": [ true, false ] +} + +[node name="Javelin" type="Node2D"] +light_mask = 0 + +[node name="Animation" type="Area2D" parent="." groups=["player_weapon_2"]] +light_mask = 0 +position = Vector2( 0, -7 ) +collision_layer = 0 +collision_mask = 4 +input_pickable = false +monitoring = false +monitorable = false + +[node name="Javelin" type="Sprite" parent="Animation"] +visible = false +light_mask = 8 +position = Vector2( 0, -7 ) +rotation = 0.785398 +scale = Vector2( 0.65, 0.65 ) +texture = ExtResource( 1 ) + +[node name="CollisionShape2D" type="CollisionShape2D" parent="Animation"] +visible = false +light_mask = 0 +position = Vector2( 0, -11.5 ) +shape = SubResource( 3 ) + +[node name="Javelin Animation" type="AnimationPlayer" parent="."] +anims/swing = SubResource( 2 ) diff --git a/Player/Weapons/Sword.gd b/Player/Weapons/Sword.gd new file mode 100644 index 0000000..e75cbc3 --- /dev/null +++ b/Player/Weapons/Sword.gd @@ -0,0 +1,26 @@ +extends Node2D + + +# Declare member variables here. Examples: +# var a: int = 2 +# var b: String = "text" + + +# Called when the node enters the scene tree for the first time. +func _ready() -> void: + pass # Replace with function body. + + +# Called every frame. 'delta' is the elapsed time since the previous frame. +#func _process(delta: float) -> void: +# pass + + +func _on_SwordAttack_animation_started(anim_name: String) -> void: + $Sword.visible = true + return + + +func _on_SwordAttack_animation_finished(anim_name: String) -> void: + $Sword.visible = false + return diff --git a/Player/Weapons/Sword.tscn b/Player/Weapons/Sword.tscn new file mode 100644 index 0000000..3c3abe9 --- /dev/null +++ b/Player/Weapons/Sword.tscn @@ -0,0 +1,75 @@ +[gd_scene load_steps=4 format=2] + +[ext_resource path="res://Sprites/Items/Sword.png" type="Texture" id=1] + +[sub_resource type="RectangleShape2D" id=6] +extents = Vector2( 1.5, 4.2 ) + +[sub_resource type="Animation" id=5] +resource_name = "swing" +length = 0.2 +tracks/0/type = "value" +tracks/0/path = NodePath("Animation/Sword:visible") +tracks/0/interp = 1 +tracks/0/loop_wrap = true +tracks/0/imported = false +tracks/0/enabled = true +tracks/0/keys = { +"times": PoolRealArray( 0, 0.01, 0.2 ), +"transitions": PoolRealArray( 1, 1, 1 ), +"update": 1, +"values": [ false, true, false ] +} +tracks/1/type = "value" +tracks/1/path = NodePath("Animation:rotation_degrees") +tracks/1/interp = 1 +tracks/1/loop_wrap = true +tracks/1/imported = false +tracks/1/enabled = true +tracks/1/keys = { +"times": PoolRealArray( 0.01, 0.19 ), +"transitions": PoolRealArray( 1, 1 ), +"update": 0, +"values": [ -45.0, 45.0 ] +} +tracks/2/type = "value" +tracks/2/path = NodePath("Animation:monitorable") +tracks/2/interp = 1 +tracks/2/loop_wrap = true +tracks/2/imported = false +tracks/2/enabled = true +tracks/2/keys = { +"times": PoolRealArray( 0.02, 0.2 ), +"transitions": PoolRealArray( 1, 1 ), +"update": 1, +"values": [ true, false ] +} + +[node name="Sword" type="Node2D"] +light_mask = 0 + +[node name="Animation" type="Area2D" parent="." groups=["player_weapon_1"]] +light_mask = 0 +rotation = 0.785398 +collision_layer = 0 +collision_mask = 4 +input_pickable = false +monitoring = false +monitorable = false + +[node name="Sword" type="Sprite" parent="Animation"] +visible = false +light_mask = 8 +rotation = 0.785398 +scale = Vector2( 0.5, 0.5 ) +texture = ExtResource( 1 ) +offset = Vector2( -16, -16 ) + +[node name="CollisionShape2D" type="CollisionShape2D" parent="Animation"] +visible = false +light_mask = 0 +position = Vector2( 0, -13 ) +shape = SubResource( 6 ) + +[node name="Sword Animation" type="AnimationPlayer" parent="."] +anims/swing = SubResource( 5 ) diff --git a/Resources/Level_4_Tileset.tres b/Resources/Level_4_Tileset.tres new file mode 100644 index 0000000..11c8ccf --- /dev/null +++ b/Resources/Level_4_Tileset.tres @@ -0,0 +1,281 @@ +[gd_resource type="TileSet" load_steps=2 format=2] + +[ext_resource path="res://Sprites/Levels/Tilesets/Level_4_Tileset.png" type="Texture" id=1] + +[resource] +0/name = "tileset_mk_16_16_nature_tileset_godot.png 0" +0/texture = ExtResource( 1 ) +0/tex_offset = Vector2( 0, 0 ) +0/modulate = Color( 1, 1, 1, 1 ) +0/region = Rect2( 0, 0, 960, 400 ) +0/tile_mode = 1 +0/autotile/bitmask_mode = 1 +0/autotile/bitmask_flags = [ Vector2( 1, 0 ), 432, Vector2( 1, 1 ), 438, Vector2( 1, 2 ), 54, Vector2( 1, 3 ), 48, Vector2( 2, 0 ), 504, Vector2( 2, 1 ), 511, Vector2( 2, 2 ), 63, Vector2( 2, 3 ), 56, Vector2( 3, 0 ), 216, Vector2( 3, 1 ), 219, Vector2( 3, 2 ), 27, Vector2( 3, 3 ), 24, Vector2( 4, 0 ), 144, Vector2( 4, 1 ), 146, Vector2( 4, 2 ), 18, Vector2( 4, 3 ), 16, Vector2( 5, 0 ), 176, Vector2( 5, 1 ), 182, Vector2( 5, 2 ), 434, Vector2( 5, 3 ), 50, Vector2( 5, 4 ), 178, Vector2( 6, 0 ), 248, Vector2( 6, 1 ), 255, Vector2( 6, 2 ), 507, Vector2( 6, 3 ), 59, Vector2( 6, 4 ), 251, Vector2( 7, 0 ), 440, Vector2( 7, 1 ), 447, Vector2( 7, 2 ), 510, Vector2( 7, 3 ), 62, Vector2( 7, 4 ), 446, Vector2( 8, 0 ), 152, Vector2( 8, 1 ), 155, Vector2( 8, 2 ), 218, Vector2( 8, 3 ), 26, Vector2( 8, 4 ), 154, Vector2( 9, 0 ), 184, Vector2( 9, 1 ), 191, Vector2( 9, 2 ), 506, Vector2( 9, 3 ), 58, Vector2( 9, 4 ), 186, Vector2( 10, 0 ), 443, Vector2( 10, 1 ), 254, Vector2( 10, 2 ), 442, Vector2( 10, 3 ), 190, Vector2( 11, 2 ), 250, Vector2( 11, 3 ), 187 ] +0/autotile/icon_coordinate = Vector2( 2, 1 ) +0/autotile/tile_size = Vector2( 16, 16 ) +0/autotile/spacing = 0 +0/autotile/occluder_map = [ ] +0/autotile/navpoly_map = [ ] +0/autotile/priority_map = [ ] +0/autotile/z_index_map = [ ] +0/occluder_offset = Vector2( 0, 0 ) +0/navigation_offset = Vector2( 0, 0 ) +0/shape_offset = Vector2( 0, 0 ) +0/shape_transform = Transform2D( 1, 0, 0, 1, 0, 0 ) +0/shape_one_way = false +0/shape_one_way_margin = 0.0 +0/shapes = [ ] +0/z_index = 0 +1/name = "tileset_mk_16_16_nature_tileset_godot.png 1" +1/texture = ExtResource( 1 ) +1/tex_offset = Vector2( 0, 0 ) +1/modulate = Color( 1, 1, 1, 1 ) +1/region = Rect2( 0, 0, 960, 400 ) +1/tile_mode = 1 +1/autotile/bitmask_mode = 1 +1/autotile/bitmask_flags = [ Vector2( 1, 6 ), 432, Vector2( 1, 7 ), 438, Vector2( 1, 8 ), 54, Vector2( 1, 9 ), 48, Vector2( 2, 6 ), 504, Vector2( 2, 7 ), 511, Vector2( 2, 8 ), 63, Vector2( 2, 9 ), 56, Vector2( 3, 6 ), 216, Vector2( 3, 7 ), 219, Vector2( 3, 8 ), 27, Vector2( 3, 9 ), 24, Vector2( 4, 6 ), 144, Vector2( 4, 7 ), 146, Vector2( 4, 8 ), 18, Vector2( 4, 9 ), 16, Vector2( 5, 6 ), 176, Vector2( 5, 7 ), 182, Vector2( 5, 8 ), 434, Vector2( 5, 9 ), 50, Vector2( 5, 10 ), 178, Vector2( 6, 6 ), 248, Vector2( 6, 7 ), 255, Vector2( 6, 8 ), 507, Vector2( 6, 9 ), 59, Vector2( 6, 10 ), 251, Vector2( 7, 6 ), 440, Vector2( 7, 7 ), 447, Vector2( 7, 8 ), 510, Vector2( 7, 9 ), 62, Vector2( 7, 10 ), 446, Vector2( 8, 6 ), 152, Vector2( 8, 7 ), 155, Vector2( 8, 8 ), 218, Vector2( 8, 9 ), 26, Vector2( 8, 10 ), 154, Vector2( 9, 6 ), 184, Vector2( 9, 7 ), 191, Vector2( 9, 8 ), 506, Vector2( 9, 9 ), 58, Vector2( 9, 10 ), 186, Vector2( 10, 6 ), 443, Vector2( 10, 7 ), 254, Vector2( 10, 8 ), 442, Vector2( 10, 9 ), 190, Vector2( 11, 8 ), 250, Vector2( 11, 9 ), 187 ] +1/autotile/icon_coordinate = Vector2( 2, 7 ) +1/autotile/tile_size = Vector2( 16, 16 ) +1/autotile/spacing = 0 +1/autotile/occluder_map = [ ] +1/autotile/navpoly_map = [ ] +1/autotile/priority_map = [ ] +1/autotile/z_index_map = [ ] +1/occluder_offset = Vector2( 0, 0 ) +1/navigation_offset = Vector2( 0, 0 ) +1/shape_offset = Vector2( 0, 0 ) +1/shape_transform = Transform2D( 1, 0, 0, 1, 0, 0 ) +1/shape_one_way = false +1/shape_one_way_margin = 0.0 +1/shapes = [ ] +1/z_index = 0 +2/name = "tileset_mk_16_16_nature_tileset_godot.png 2" +2/texture = ExtResource( 1 ) +2/tex_offset = Vector2( 0, 0 ) +2/modulate = Color( 1, 1, 1, 1 ) +2/region = Rect2( 0, 0, 960, 400 ) +2/tile_mode = 1 +2/autotile/bitmask_mode = 1 +2/autotile/bitmask_flags = [ Vector2( 13, 0 ), 432, Vector2( 13, 1 ), 438, Vector2( 13, 2 ), 54, Vector2( 13, 3 ), 48, Vector2( 14, 0 ), 504, Vector2( 14, 1 ), 511, Vector2( 14, 2 ), 63, Vector2( 14, 3 ), 56, Vector2( 15, 0 ), 216, Vector2( 15, 1 ), 219, Vector2( 15, 2 ), 27, Vector2( 15, 3 ), 24, Vector2( 16, 0 ), 144, Vector2( 16, 1 ), 146, Vector2( 16, 2 ), 18, Vector2( 16, 3 ), 16, Vector2( 17, 0 ), 176, Vector2( 17, 1 ), 182, Vector2( 17, 2 ), 434, Vector2( 17, 3 ), 50, Vector2( 17, 4 ), 178, Vector2( 18, 0 ), 248, Vector2( 18, 1 ), 255, Vector2( 18, 2 ), 507, Vector2( 18, 3 ), 59, Vector2( 18, 4 ), 251, Vector2( 19, 0 ), 440, Vector2( 19, 1 ), 447, Vector2( 19, 2 ), 510, Vector2( 19, 3 ), 62, Vector2( 19, 4 ), 446, Vector2( 20, 0 ), 152, Vector2( 20, 1 ), 155, Vector2( 20, 2 ), 218, Vector2( 20, 3 ), 26, Vector2( 20, 4 ), 154, Vector2( 21, 0 ), 184, Vector2( 21, 1 ), 191, Vector2( 21, 2 ), 506, Vector2( 21, 3 ), 58, Vector2( 21, 4 ), 186, Vector2( 22, 0 ), 443, Vector2( 22, 1 ), 254, Vector2( 22, 2 ), 442, Vector2( 22, 3 ), 190, Vector2( 23, 2 ), 250, Vector2( 23, 3 ), 187 ] +2/autotile/icon_coordinate = Vector2( 14, 1 ) +2/autotile/tile_size = Vector2( 16, 16 ) +2/autotile/spacing = 0 +2/autotile/occluder_map = [ ] +2/autotile/navpoly_map = [ ] +2/autotile/priority_map = [ ] +2/autotile/z_index_map = [ ] +2/occluder_offset = Vector2( 0, 0 ) +2/navigation_offset = Vector2( 0, 0 ) +2/shape_offset = Vector2( 0, 0 ) +2/shape_transform = Transform2D( 1, 0, 0, 1, 0, 0 ) +2/shape_one_way = false +2/shape_one_way_margin = 0.0 +2/shapes = [ ] +2/z_index = 0 +3/name = "tileset_mk_16_16_nature_tileset_godot.png 3" +3/texture = ExtResource( 1 ) +3/tex_offset = Vector2( 0, 0 ) +3/modulate = Color( 1, 1, 1, 1 ) +3/region = Rect2( 0, 0, 960, 400 ) +3/tile_mode = 1 +3/autotile/bitmask_mode = 1 +3/autotile/bitmask_flags = [ Vector2( 13, 6 ), 432, Vector2( 13, 7 ), 438, Vector2( 13, 8 ), 54, Vector2( 13, 9 ), 48, Vector2( 14, 6 ), 504, Vector2( 14, 7 ), 511, Vector2( 14, 8 ), 63, Vector2( 14, 9 ), 56, Vector2( 15, 6 ), 216, Vector2( 15, 7 ), 219, Vector2( 15, 8 ), 27, Vector2( 15, 9 ), 24, Vector2( 16, 6 ), 144, Vector2( 16, 7 ), 146, Vector2( 16, 8 ), 18, Vector2( 16, 9 ), 16, Vector2( 17, 6 ), 176, Vector2( 17, 7 ), 182, Vector2( 17, 8 ), 434, Vector2( 17, 9 ), 50, Vector2( 17, 10 ), 178, Vector2( 18, 6 ), 248, Vector2( 18, 7 ), 255, Vector2( 18, 8 ), 507, Vector2( 18, 9 ), 59, Vector2( 18, 10 ), 251, Vector2( 19, 6 ), 440, Vector2( 19, 7 ), 447, Vector2( 19, 8 ), 510, Vector2( 19, 9 ), 62, Vector2( 19, 10 ), 446, Vector2( 20, 6 ), 152, Vector2( 20, 7 ), 155, Vector2( 20, 8 ), 218, Vector2( 20, 9 ), 26, Vector2( 20, 10 ), 154, Vector2( 21, 6 ), 184, Vector2( 21, 7 ), 191, Vector2( 21, 8 ), 506, Vector2( 21, 9 ), 58, Vector2( 21, 10 ), 186, Vector2( 22, 6 ), 443, Vector2( 22, 7 ), 254, Vector2( 22, 8 ), 442, Vector2( 22, 9 ), 190, Vector2( 23, 8 ), 250, Vector2( 23, 9 ), 187 ] +3/autotile/icon_coordinate = Vector2( 14, 7 ) +3/autotile/tile_size = Vector2( 16, 16 ) +3/autotile/spacing = 0 +3/autotile/occluder_map = [ ] +3/autotile/navpoly_map = [ ] +3/autotile/priority_map = [ ] +3/autotile/z_index_map = [ ] +3/occluder_offset = Vector2( 0, 0 ) +3/navigation_offset = Vector2( 0, 0 ) +3/shape_offset = Vector2( 0, 0 ) +3/shape_transform = Transform2D( 1, 0, 0, 1, 0, 0 ) +3/shape_one_way = false +3/shape_one_way_margin = 0.0 +3/shapes = [ ] +3/z_index = 0 +4/name = "tileset_mk_16_16_nature_tileset_godot.png 4" +4/texture = ExtResource( 1 ) +4/tex_offset = Vector2( 0, 0 ) +4/modulate = Color( 1, 1, 1, 1 ) +4/region = Rect2( 0, 0, 960, 400 ) +4/tile_mode = 1 +4/autotile/bitmask_mode = 1 +4/autotile/bitmask_flags = [ Vector2( 0, 14 ), 432, Vector2( 0, 15 ), 438, Vector2( 0, 16 ), 54, Vector2( 0, 17 ), 48, Vector2( 1, 14 ), 504, Vector2( 1, 15 ), 511, Vector2( 1, 16 ), 63, Vector2( 1, 17 ), 56, Vector2( 2, 14 ), 216, Vector2( 2, 15 ), 219, Vector2( 2, 16 ), 27, Vector2( 2, 17 ), 24, Vector2( 3, 14 ), 144, Vector2( 3, 15 ), 146, Vector2( 3, 16 ), 18, Vector2( 3, 17 ), 16, Vector2( 4, 14 ), 176, Vector2( 4, 15 ), 182, Vector2( 4, 16 ), 434, Vector2( 4, 17 ), 50, Vector2( 4, 18 ), 178, Vector2( 5, 14 ), 248, Vector2( 5, 15 ), 255, Vector2( 5, 16 ), 507, Vector2( 5, 17 ), 59, Vector2( 5, 18 ), 251, Vector2( 6, 14 ), 440, Vector2( 6, 15 ), 447, Vector2( 6, 16 ), 510, Vector2( 6, 17 ), 62, Vector2( 6, 18 ), 446, Vector2( 7, 14 ), 152, Vector2( 7, 15 ), 155, Vector2( 7, 16 ), 218, Vector2( 7, 17 ), 26, Vector2( 7, 18 ), 154, Vector2( 8, 14 ), 184, Vector2( 8, 15 ), 191, Vector2( 8, 16 ), 506, Vector2( 8, 17 ), 58, Vector2( 8, 18 ), 186, Vector2( 9, 14 ), 443, Vector2( 9, 15 ), 254, Vector2( 9, 16 ), 442, Vector2( 9, 17 ), 190, Vector2( 10, 16 ), 250, Vector2( 10, 17 ), 187 ] +4/autotile/icon_coordinate = Vector2( 1, 15 ) +4/autotile/tile_size = Vector2( 16, 16 ) +4/autotile/spacing = 0 +4/autotile/occluder_map = [ ] +4/autotile/navpoly_map = [ ] +4/autotile/priority_map = [ ] +4/autotile/z_index_map = [ ] +4/occluder_offset = Vector2( 0, 0 ) +4/navigation_offset = Vector2( 0, 0 ) +4/shape_offset = Vector2( 0, 0 ) +4/shape_transform = Transform2D( 1, 0, 0, 1, 0, 0 ) +4/shape_one_way = false +4/shape_one_way_margin = 0.0 +4/shapes = [ ] +4/z_index = 0 +5/name = "tileset_mk_16_16_nature_tileset_godot.png 5" +5/texture = ExtResource( 1 ) +5/tex_offset = Vector2( 0, 0 ) +5/modulate = Color( 1, 1, 1, 1 ) +5/region = Rect2( 0, 0, 960, 400 ) +5/tile_mode = 1 +5/autotile/bitmask_mode = 1 +5/autotile/bitmask_flags = [ Vector2( 0, 20 ), 432, Vector2( 0, 21 ), 438, Vector2( 0, 22 ), 54, Vector2( 0, 23 ), 48, Vector2( 1, 20 ), 504, Vector2( 1, 21 ), 511, Vector2( 1, 22 ), 63, Vector2( 1, 23 ), 56, Vector2( 2, 20 ), 216, Vector2( 2, 21 ), 219, Vector2( 2, 22 ), 27, Vector2( 2, 23 ), 24, Vector2( 3, 20 ), 144, Vector2( 3, 21 ), 146, Vector2( 3, 22 ), 18, Vector2( 3, 23 ), 16, Vector2( 4, 20 ), 176, Vector2( 4, 21 ), 182, Vector2( 4, 22 ), 434, Vector2( 4, 23 ), 50, Vector2( 4, 24 ), 178, Vector2( 5, 20 ), 248, Vector2( 5, 21 ), 255, Vector2( 5, 22 ), 507, Vector2( 5, 23 ), 59, Vector2( 5, 24 ), 251, Vector2( 6, 20 ), 440, Vector2( 6, 21 ), 447, Vector2( 6, 22 ), 510, Vector2( 6, 23 ), 62, Vector2( 6, 24 ), 446, Vector2( 7, 20 ), 152, Vector2( 7, 21 ), 155, Vector2( 7, 22 ), 218, Vector2( 7, 23 ), 26, Vector2( 7, 24 ), 154, Vector2( 8, 20 ), 184, Vector2( 8, 21 ), 191, Vector2( 8, 22 ), 506, Vector2( 8, 23 ), 58, Vector2( 8, 24 ), 186, Vector2( 9, 20 ), 443, Vector2( 9, 21 ), 254, Vector2( 9, 22 ), 442, Vector2( 9, 23 ), 190, Vector2( 10, 22 ), 250, Vector2( 10, 23 ), 187 ] +5/autotile/icon_coordinate = Vector2( 1, 21 ) +5/autotile/tile_size = Vector2( 16, 16 ) +5/autotile/spacing = 0 +5/autotile/occluder_map = [ ] +5/autotile/navpoly_map = [ ] +5/autotile/priority_map = [ ] +5/autotile/z_index_map = [ ] +5/occluder_offset = Vector2( 0, 0 ) +5/navigation_offset = Vector2( 0, 0 ) +5/shape_offset = Vector2( 0, 0 ) +5/shape_transform = Transform2D( 1, 0, 0, 1, 0, 0 ) +5/shape_one_way = false +5/shape_one_way_margin = 0.0 +5/shapes = [ ] +5/z_index = 0 +6/name = "tileset_mk_16_16_nature_tileset_godot.png 6" +6/texture = ExtResource( 1 ) +6/tex_offset = Vector2( 0, 0 ) +6/modulate = Color( 1, 1, 1, 1 ) +6/region = Rect2( 0, 0, 960, 400 ) +6/tile_mode = 1 +6/autotile/bitmask_mode = 1 +6/autotile/bitmask_flags = [ Vector2( 25, 0 ), 432, Vector2( 25, 1 ), 438, Vector2( 25, 2 ), 54, Vector2( 25, 3 ), 48, Vector2( 26, 0 ), 504, Vector2( 26, 1 ), 511, Vector2( 26, 2 ), 63, Vector2( 26, 3 ), 56, Vector2( 27, 0 ), 216, Vector2( 27, 1 ), 219, Vector2( 27, 2 ), 27, Vector2( 27, 3 ), 24, Vector2( 28, 0 ), 144, Vector2( 28, 1 ), 146, Vector2( 28, 2 ), 18, Vector2( 28, 3 ), 16, Vector2( 29, 0 ), 176, Vector2( 29, 1 ), 182, Vector2( 29, 2 ), 434, Vector2( 29, 3 ), 50, Vector2( 29, 4 ), 178, Vector2( 30, 0 ), 248, Vector2( 30, 1 ), 255, Vector2( 30, 2 ), 507, Vector2( 30, 3 ), 59, Vector2( 30, 4 ), 251, Vector2( 31, 0 ), 440, Vector2( 31, 1 ), 447, Vector2( 31, 2 ), 510, Vector2( 31, 3 ), 62, Vector2( 31, 4 ), 446, Vector2( 32, 0 ), 152, Vector2( 32, 1 ), 155, Vector2( 32, 2 ), 218, Vector2( 32, 3 ), 26, Vector2( 32, 4 ), 154, Vector2( 33, 0 ), 184, Vector2( 33, 1 ), 191, Vector2( 33, 2 ), 506, Vector2( 33, 3 ), 58, Vector2( 33, 4 ), 186, Vector2( 34, 0 ), 443, Vector2( 34, 1 ), 254, Vector2( 34, 2 ), 442, Vector2( 34, 3 ), 190, Vector2( 35, 2 ), 250, Vector2( 35, 3 ), 187 ] +6/autotile/icon_coordinate = Vector2( 26, 1 ) +6/autotile/tile_size = Vector2( 16, 16 ) +6/autotile/spacing = 0 +6/autotile/occluder_map = [ ] +6/autotile/navpoly_map = [ ] +6/autotile/priority_map = [ ] +6/autotile/z_index_map = [ ] +6/occluder_offset = Vector2( 0, 0 ) +6/navigation_offset = Vector2( 0, 0 ) +6/shape_offset = Vector2( 0, 0 ) +6/shape_transform = Transform2D( 1, 0, 0, 1, 0, 0 ) +6/shape_one_way = false +6/shape_one_way_margin = 0.0 +6/shapes = [ ] +6/z_index = 0 +7/name = "tileset_mk_16_16_nature_tileset_godot.png 7" +7/texture = ExtResource( 1 ) +7/tex_offset = Vector2( 0, 0 ) +7/modulate = Color( 1, 1, 1, 1 ) +7/region = Rect2( 0, 0, 960, 400 ) +7/tile_mode = 1 +7/autotile/bitmask_mode = 1 +7/autotile/bitmask_flags = [ Vector2( 25, 6 ), 432, Vector2( 25, 7 ), 438, Vector2( 25, 8 ), 54, Vector2( 25, 9 ), 48, Vector2( 26, 6 ), 504, Vector2( 26, 7 ), 511, Vector2( 26, 8 ), 63, Vector2( 26, 9 ), 56, Vector2( 27, 6 ), 216, Vector2( 27, 7 ), 219, Vector2( 27, 8 ), 27, Vector2( 27, 9 ), 24, Vector2( 28, 6 ), 144, Vector2( 28, 7 ), 146, Vector2( 28, 8 ), 18, Vector2( 28, 9 ), 16, Vector2( 29, 6 ), 176, Vector2( 29, 7 ), 182, Vector2( 29, 8 ), 434, Vector2( 29, 9 ), 50, Vector2( 29, 10 ), 178, Vector2( 30, 6 ), 248, Vector2( 30, 7 ), 255, Vector2( 30, 8 ), 507, Vector2( 30, 9 ), 59, Vector2( 30, 10 ), 251, Vector2( 31, 6 ), 440, Vector2( 31, 7 ), 447, Vector2( 31, 8 ), 510, Vector2( 31, 9 ), 62, Vector2( 31, 10 ), 446, Vector2( 32, 6 ), 152, Vector2( 32, 7 ), 155, Vector2( 32, 8 ), 218, Vector2( 32, 9 ), 26, Vector2( 32, 10 ), 154, Vector2( 33, 6 ), 184, Vector2( 33, 7 ), 191, Vector2( 33, 8 ), 506, Vector2( 33, 9 ), 58, Vector2( 33, 10 ), 186, Vector2( 34, 6 ), 443, Vector2( 34, 7 ), 254, Vector2( 34, 8 ), 442, Vector2( 34, 9 ), 190, Vector2( 35, 8 ), 250, Vector2( 35, 9 ), 187 ] +7/autotile/icon_coordinate = Vector2( 26, 7 ) +7/autotile/tile_size = Vector2( 16, 16 ) +7/autotile/spacing = 0 +7/autotile/occluder_map = [ ] +7/autotile/navpoly_map = [ ] +7/autotile/priority_map = [ ] +7/autotile/z_index_map = [ ] +7/occluder_offset = Vector2( 0, 0 ) +7/navigation_offset = Vector2( 0, 0 ) +7/shape_offset = Vector2( 0, 0 ) +7/shape_transform = Transform2D( 1, 0, 0, 1, 0, 0 ) +7/shape_one_way = false +7/shape_one_way_margin = 0.0 +7/shapes = [ ] +7/z_index = 0 +8/name = "tileset_mk_16_16_nature_tileset_godot.png 8" +8/texture = ExtResource( 1 ) +8/tex_offset = Vector2( 0, 0 ) +8/modulate = Color( 1, 1, 1, 1 ) +8/region = Rect2( 0, 0, 960, 400 ) +8/tile_mode = 1 +8/autotile/bitmask_mode = 1 +8/autotile/bitmask_flags = [ Vector2( 37, 0 ), 432, Vector2( 37, 1 ), 438, Vector2( 37, 2 ), 54, Vector2( 37, 3 ), 48, Vector2( 38, 0 ), 504, Vector2( 38, 1 ), 511, Vector2( 38, 2 ), 63, Vector2( 38, 3 ), 56, Vector2( 39, 0 ), 216, Vector2( 39, 1 ), 219, Vector2( 39, 2 ), 27, Vector2( 39, 3 ), 24, Vector2( 40, 0 ), 144, Vector2( 40, 1 ), 146, Vector2( 40, 2 ), 18, Vector2( 40, 3 ), 16, Vector2( 41, 0 ), 176, Vector2( 41, 1 ), 182, Vector2( 41, 2 ), 434, Vector2( 41, 3 ), 50, Vector2( 41, 4 ), 178, Vector2( 42, 0 ), 248, Vector2( 42, 1 ), 255, Vector2( 42, 2 ), 507, Vector2( 42, 3 ), 59, Vector2( 42, 4 ), 251, Vector2( 43, 0 ), 440, Vector2( 43, 1 ), 447, Vector2( 43, 2 ), 510, Vector2( 43, 3 ), 62, Vector2( 43, 4 ), 446, Vector2( 44, 0 ), 152, Vector2( 44, 1 ), 155, Vector2( 44, 2 ), 218, Vector2( 44, 3 ), 26, Vector2( 44, 4 ), 154, Vector2( 45, 0 ), 184, Vector2( 45, 1 ), 191, Vector2( 45, 2 ), 506, Vector2( 45, 3 ), 58, Vector2( 45, 4 ), 186, Vector2( 46, 0 ), 443, Vector2( 46, 1 ), 254, Vector2( 46, 2 ), 442, Vector2( 46, 3 ), 190, Vector2( 47, 2 ), 250, Vector2( 47, 3 ), 187 ] +8/autotile/icon_coordinate = Vector2( 38, 1 ) +8/autotile/tile_size = Vector2( 16, 16 ) +8/autotile/spacing = 0 +8/autotile/occluder_map = [ ] +8/autotile/navpoly_map = [ ] +8/autotile/priority_map = [ ] +8/autotile/z_index_map = [ ] +8/occluder_offset = Vector2( 0, 0 ) +8/navigation_offset = Vector2( 0, 0 ) +8/shape_offset = Vector2( 0, 0 ) +8/shape_transform = Transform2D( 1, 0, 0, 1, 0, 0 ) +8/shape_one_way = false +8/shape_one_way_margin = 0.0 +8/shapes = [ ] +8/z_index = 0 +9/name = "tileset_mk_16_16_nature_tileset_godot.png 9" +9/texture = ExtResource( 1 ) +9/tex_offset = Vector2( 0, 0 ) +9/modulate = Color( 1, 1, 1, 1 ) +9/region = Rect2( 0, 0, 960, 400 ) +9/tile_mode = 1 +9/autotile/bitmask_mode = 1 +9/autotile/bitmask_flags = [ Vector2( 37, 6 ), 432, Vector2( 37, 7 ), 438, Vector2( 37, 8 ), 54, Vector2( 37, 9 ), 48, Vector2( 38, 6 ), 504, Vector2( 38, 7 ), 511, Vector2( 38, 8 ), 63, Vector2( 38, 9 ), 56, Vector2( 39, 6 ), 216, Vector2( 39, 7 ), 219, Vector2( 39, 8 ), 27, Vector2( 39, 9 ), 24, Vector2( 40, 6 ), 144, Vector2( 40, 7 ), 146, Vector2( 40, 8 ), 18, Vector2( 40, 9 ), 16, Vector2( 41, 6 ), 176, Vector2( 41, 7 ), 182, Vector2( 41, 8 ), 434, Vector2( 41, 9 ), 50, Vector2( 41, 10 ), 178, Vector2( 42, 6 ), 248, Vector2( 42, 7 ), 255, Vector2( 42, 8 ), 507, Vector2( 42, 9 ), 59, Vector2( 42, 10 ), 251, Vector2( 43, 6 ), 440, Vector2( 43, 7 ), 447, Vector2( 43, 8 ), 510, Vector2( 43, 9 ), 62, Vector2( 43, 10 ), 446, Vector2( 44, 6 ), 152, Vector2( 44, 7 ), 155, Vector2( 44, 8 ), 218, Vector2( 44, 9 ), 26, Vector2( 44, 10 ), 154, Vector2( 45, 6 ), 184, Vector2( 45, 7 ), 191, Vector2( 45, 8 ), 506, Vector2( 45, 9 ), 58, Vector2( 45, 10 ), 186, Vector2( 46, 6 ), 443, Vector2( 46, 7 ), 254, Vector2( 46, 8 ), 442, Vector2( 46, 9 ), 190, Vector2( 47, 8 ), 250, Vector2( 47, 9 ), 187 ] +9/autotile/icon_coordinate = Vector2( 38, 7 ) +9/autotile/tile_size = Vector2( 16, 16 ) +9/autotile/spacing = 0 +9/autotile/occluder_map = [ ] +9/autotile/navpoly_map = [ ] +9/autotile/priority_map = [ ] +9/autotile/z_index_map = [ ] +9/occluder_offset = Vector2( 0, 0 ) +9/navigation_offset = Vector2( 0, 0 ) +9/shape_offset = Vector2( 0, 0 ) +9/shape_transform = Transform2D( 1, 0, 0, 1, 0, 0 ) +9/shape_one_way = false +9/shape_one_way_margin = 0.0 +9/shapes = [ ] +9/z_index = 0 +10/name = "tileset_mk_16_16_nature_tileset_godot.png 10" +10/texture = ExtResource( 1 ) +10/tex_offset = Vector2( 0, 0 ) +10/modulate = Color( 1, 1, 1, 1 ) +10/region = Rect2( 0, 0, 960, 400 ) +10/tile_mode = 1 +10/autotile/bitmask_mode = 1 +10/autotile/bitmask_flags = [ Vector2( 49, 0 ), 432, Vector2( 49, 1 ), 438, Vector2( 49, 2 ), 54, Vector2( 49, 3 ), 48, Vector2( 50, 0 ), 504, Vector2( 50, 1 ), 511, Vector2( 50, 2 ), 63, Vector2( 50, 3 ), 56, Vector2( 51, 0 ), 216, Vector2( 51, 1 ), 219, Vector2( 51, 2 ), 27, Vector2( 51, 3 ), 24, Vector2( 52, 0 ), 144, Vector2( 52, 1 ), 146, Vector2( 52, 2 ), 18, Vector2( 52, 3 ), 16, Vector2( 53, 0 ), 176, Vector2( 53, 1 ), 182, Vector2( 53, 2 ), 434, Vector2( 53, 3 ), 50, Vector2( 53, 4 ), 178, Vector2( 54, 0 ), 248, Vector2( 54, 1 ), 255, Vector2( 54, 2 ), 507, Vector2( 54, 3 ), 59, Vector2( 54, 4 ), 251, Vector2( 55, 0 ), 440, Vector2( 55, 1 ), 447, Vector2( 55, 2 ), 510, Vector2( 55, 3 ), 62, Vector2( 55, 4 ), 446, Vector2( 56, 0 ), 152, Vector2( 56, 1 ), 155, Vector2( 56, 2 ), 218, Vector2( 56, 3 ), 26, Vector2( 56, 4 ), 154, Vector2( 57, 0 ), 184, Vector2( 57, 1 ), 191, Vector2( 57, 2 ), 506, Vector2( 57, 3 ), 58, Vector2( 57, 4 ), 186, Vector2( 58, 0 ), 443, Vector2( 58, 1 ), 254, Vector2( 58, 2 ), 442, Vector2( 58, 3 ), 190, Vector2( 59, 2 ), 250, Vector2( 59, 3 ), 187 ] +10/autotile/icon_coordinate = Vector2( 50, 1 ) +10/autotile/tile_size = Vector2( 16, 16 ) +10/autotile/spacing = 0 +10/autotile/occluder_map = [ ] +10/autotile/navpoly_map = [ ] +10/autotile/priority_map = [ ] +10/autotile/z_index_map = [ ] +10/occluder_offset = Vector2( 0, 0 ) +10/navigation_offset = Vector2( 0, 0 ) +10/shape_offset = Vector2( 0, 0 ) +10/shape_transform = Transform2D( 1, 0, 0, 1, 0, 0 ) +10/shape_one_way = false +10/shape_one_way_margin = 0.0 +10/shapes = [ ] +10/z_index = 0 +11/name = "tileset_mk_16_16_nature_tileset_godot.png 11" +11/texture = ExtResource( 1 ) +11/tex_offset = Vector2( 0, 0 ) +11/modulate = Color( 1, 1, 1, 1 ) +11/region = Rect2( 0, 0, 960, 400 ) +11/tile_mode = 1 +11/autotile/bitmask_mode = 1 +11/autotile/bitmask_flags = [ Vector2( 49, 6 ), 432, Vector2( 49, 7 ), 438, Vector2( 49, 8 ), 54, Vector2( 49, 9 ), 48, Vector2( 50, 6 ), 504, Vector2( 50, 7 ), 511, Vector2( 50, 8 ), 63, Vector2( 50, 9 ), 56, Vector2( 51, 6 ), 216, Vector2( 51, 7 ), 219, Vector2( 51, 8 ), 27, Vector2( 51, 9 ), 24, Vector2( 52, 6 ), 144, Vector2( 52, 7 ), 146, Vector2( 52, 8 ), 18, Vector2( 52, 9 ), 16, Vector2( 53, 6 ), 176, Vector2( 53, 7 ), 182, Vector2( 53, 8 ), 434, Vector2( 53, 9 ), 50, Vector2( 53, 10 ), 178, Vector2( 54, 6 ), 248, Vector2( 54, 7 ), 255, Vector2( 54, 8 ), 507, Vector2( 54, 9 ), 59, Vector2( 54, 10 ), 251, Vector2( 55, 6 ), 440, Vector2( 55, 7 ), 447, Vector2( 55, 8 ), 510, Vector2( 55, 9 ), 62, Vector2( 55, 10 ), 446, Vector2( 56, 6 ), 152, Vector2( 56, 7 ), 155, Vector2( 56, 8 ), 218, Vector2( 56, 9 ), 26, Vector2( 56, 10 ), 154, Vector2( 57, 6 ), 184, Vector2( 57, 7 ), 191, Vector2( 57, 8 ), 506, Vector2( 57, 9 ), 58, Vector2( 57, 10 ), 186, Vector2( 58, 6 ), 443, Vector2( 58, 7 ), 254, Vector2( 58, 8 ), 442, Vector2( 58, 9 ), 190, Vector2( 59, 8 ), 250, Vector2( 59, 9 ), 187 ] +11/autotile/icon_coordinate = Vector2( 50, 7 ) +11/autotile/tile_size = Vector2( 16, 16 ) +11/autotile/spacing = 0 +11/autotile/occluder_map = [ ] +11/autotile/navpoly_map = [ ] +11/autotile/priority_map = [ ] +11/autotile/z_index_map = [ ] +11/occluder_offset = Vector2( 0, 0 ) +11/navigation_offset = Vector2( 0, 0 ) +11/shape_offset = Vector2( 0, 0 ) +11/shape_transform = Transform2D( 1, 0, 0, 1, 0, 0 ) +11/shape_one_way = false +11/shape_one_way_margin = 0.0 +11/shapes = [ ] +11/z_index = 0 diff --git a/Resources/Level_5_Enemy_Glowing_Ghost_Occluder.tres b/Resources/Level_5_Enemy_Glowing_Ghost_Occluder.tres index 625c140..2bef589 100644 --- a/Resources/Level_5_Enemy_Glowing_Ghost_Occluder.tres +++ b/Resources/Level_5_Enemy_Glowing_Ghost_Occluder.tres @@ -1,4 +1,4 @@ [gd_resource type="OccluderPolygon2D" format=2] [resource] -polygon = PoolVector2Array( -3, -1, 3, -1, 1.5, 1, -1.5, 1 ) +polygon = PoolVector2Array( -3, -0.5, 3, -0.5, 1.5, 1.5, -1.5, 1.5 ) diff --git a/Resources/Level_5_Floor_Tileset.tres b/Resources/Level_5_Floor_Tileset.tres index 6a44339..7fca9c3 100644 --- a/Resources/Level_5_Floor_Tileset.tres +++ b/Resources/Level_5_Floor_Tileset.tres @@ -1,6 +1,6 @@ [gd_resource type="TileSet" load_steps=2 format=2] -[ext_resource path="res://Sprites/Assets/Level_5_Floor_Tileset.png" type="Texture" id=1] +[ext_resource path="res://Sprites/Levels/Tilesets/Level_5_Floor_Tileset.png" type="Texture" id=1] [resource] 0/name = "void_level_base_tileset.png 0" diff --git a/Resources/Level_5_Walls_Tileset.tres b/Resources/Level_5_Walls_Tileset.tres index f645a98..36936e7 100644 --- a/Resources/Level_5_Walls_Tileset.tres +++ b/Resources/Level_5_Walls_Tileset.tres @@ -1,6 +1,6 @@ [gd_resource type="TileSet" load_steps=96 format=2] -[ext_resource path="res://Sprites/Assets/Level_5_Walls_Tileset.png" type="Texture" id=1] +[ext_resource path="res://Sprites/Levels/Tilesets/Level_5_Walls_Tileset.png" type="Texture" id=1] [sub_resource type="OccluderPolygon2D" id=1] polygon = PoolVector2Array( 0, 0, 16, 0, 16, 16, 0, 16 ) diff --git a/Sprites/Assets/Key.png b/Sprites/Assets/Key.png new file mode 100644 index 0000000..5e1a333 Binary files /dev/null and b/Sprites/Assets/Key.png differ diff --git a/Sprites/Enemies/Glowing_Ghost.png.import b/Sprites/Assets/Key.png.import similarity index 69% rename from Sprites/Enemies/Glowing_Ghost.png.import rename to Sprites/Assets/Key.png.import index 228ea0a..f994de8 100644 --- a/Sprites/Enemies/Glowing_Ghost.png.import +++ b/Sprites/Assets/Key.png.import @@ -2,15 +2,15 @@ importer="texture" type="StreamTexture" -path="res://.import/Glowing_Ghost.png-46379ff53bc263370d2e0d62c670229c.stex" +path="res://.import/Key.png-355b2247adfc82050edc9f2df9c6440a.stex" metadata={ "vram_texture": false } [deps] -source_file="res://Sprites/Enemies/Glowing_Ghost.png" -dest_files=[ "res://.import/Glowing_Ghost.png-46379ff53bc263370d2e0d62c670229c.stex" ] +source_file="res://Sprites/Assets/Key.png" +dest_files=[ "res://.import/Key.png-355b2247adfc82050edc9f2df9c6440a.stex" ] [params] diff --git a/Sprites/Assets/resources_basic.png b/Sprites/Assets/resources_basic.png new file mode 100644 index 0000000..1817c5f Binary files /dev/null and b/Sprites/Assets/resources_basic.png differ diff --git a/Sprites/Assets/Level_5_Floor_Tileset.png.import b/Sprites/Assets/resources_basic.png.import similarity index 67% rename from Sprites/Assets/Level_5_Floor_Tileset.png.import rename to Sprites/Assets/resources_basic.png.import index b7d9784..4949442 100644 --- a/Sprites/Assets/Level_5_Floor_Tileset.png.import +++ b/Sprites/Assets/resources_basic.png.import @@ -2,15 +2,15 @@ importer="texture" type="StreamTexture" -path="res://.import/Level_5_Floor_Tileset.png-8417e5e7747082b0687716c91f243b2e.stex" +path="res://.import/resources_basic.png-128bab182945611297ec1bda48bed0c4.stex" metadata={ "vram_texture": false } [deps] -source_file="res://Sprites/Assets/Level_5_Floor_Tileset.png" -dest_files=[ "res://.import/Level_5_Floor_Tileset.png-8417e5e7747082b0687716c91f243b2e.stex" ] +source_file="res://Sprites/Assets/resources_basic.png" +dest_files=[ "res://.import/resources_basic.png-128bab182945611297ec1bda48bed0c4.stex" ] [params] diff --git a/Sprites/Assets/transparent16x16.png b/Sprites/Assets/transparent16x16.png new file mode 100644 index 0000000..c22f319 Binary files /dev/null and b/Sprites/Assets/transparent16x16.png differ diff --git a/Sprites/Assets/Level_5_Walls_Tileset.png.import b/Sprites/Assets/transparent16x16.png.import similarity index 67% rename from Sprites/Assets/Level_5_Walls_Tileset.png.import rename to Sprites/Assets/transparent16x16.png.import index 25b1ba1..b31d427 100644 --- a/Sprites/Assets/Level_5_Walls_Tileset.png.import +++ b/Sprites/Assets/transparent16x16.png.import @@ -2,15 +2,15 @@ importer="texture" type="StreamTexture" -path="res://.import/Level_5_Walls_Tileset.png-d7ec241820f3c5ab4d160dc1b4772cd2.stex" +path="res://.import/transparent16x16.png-f6f9707588e3381f4a86cbf58a077ee1.stex" metadata={ "vram_texture": false } [deps] -source_file="res://Sprites/Assets/Level_5_Walls_Tileset.png" -dest_files=[ "res://.import/Level_5_Walls_Tileset.png-d7ec241820f3c5ab4d160dc1b4772cd2.stex" ] +source_file="res://Sprites/Assets/transparent16x16.png" +dest_files=[ "res://.import/transparent16x16.png-f6f9707588e3381f4a86cbf58a077ee1.stex" ] [params] diff --git a/Sprites/Enemies/Glowing_Ghost.png b/Sprites/Enemies/Chasing_Glowing_Ghost.png similarity index 100% rename from Sprites/Enemies/Glowing_Ghost.png rename to Sprites/Enemies/Chasing_Glowing_Ghost.png diff --git a/Sprites/Enemies/Chasing_Glowing_Ghost.png.import b/Sprites/Enemies/Chasing_Glowing_Ghost.png.import new file mode 100644 index 0000000..ca1a92d --- /dev/null +++ b/Sprites/Enemies/Chasing_Glowing_Ghost.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/Chasing_Glowing_Ghost.png-058a2155c6f21646fb4dbe49b2572e1a.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://Sprites/Enemies/Chasing_Glowing_Ghost.png" +dest_files=[ "res://.import/Chasing_Glowing_Ghost.png-058a2155c6f21646fb4dbe49b2572e1a.stex" ] + +[params] + +compress/mode=0 +compress/lossy_quality=0.7 +compress/hdr_mode=0 +compress/bptc_ldr=0 +compress/normal_map=2 +flags/repeat=0 +flags/filter=false +flags/mipmaps=false +flags/anisotropic=false +flags/srgb=0 +process/fix_alpha_border=false +process/premult_alpha=false +process/HDR_as_SRGB=false +process/invert_color=false +process/normal_map_invert_y=false +stream=false +size_limit=0 +detect_3d=false +svg/scale=1.0 diff --git a/Sprites/Enemies/Creepy_Glowing_Ghost.png b/Sprites/Enemies/Creepy_Glowing_Ghost.png new file mode 100644 index 0000000..469d14d Binary files /dev/null and b/Sprites/Enemies/Creepy_Glowing_Ghost.png differ diff --git a/Sprites/Enemies/Creepy_Glowing_Ghost.png.import b/Sprites/Enemies/Creepy_Glowing_Ghost.png.import new file mode 100644 index 0000000..adc3708 --- /dev/null +++ b/Sprites/Enemies/Creepy_Glowing_Ghost.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/Creepy_Glowing_Ghost.png-a6711d66d268c21b09d75a78af11cb3c.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://Sprites/Enemies/Creepy_Glowing_Ghost.png" +dest_files=[ "res://.import/Creepy_Glowing_Ghost.png-a6711d66d268c21b09d75a78af11cb3c.stex" ] + +[params] + +compress/mode=0 +compress/lossy_quality=0.7 +compress/hdr_mode=0 +compress/bptc_ldr=0 +compress/normal_map=2 +flags/repeat=0 +flags/filter=false +flags/mipmaps=false +flags/anisotropic=false +flags/srgb=2 +process/fix_alpha_border=false +process/premult_alpha=false +process/HDR_as_SRGB=false +process/invert_color=false +process/normal_map_invert_y=false +stream=false +size_limit=0 +detect_3d=false +svg/scale=1.0 diff --git a/Sprites/Enemies/Projectiles/Creepy_Hand.png b/Sprites/Enemies/Projectiles/Creepy_Hand.png new file mode 100644 index 0000000..a675a3e Binary files /dev/null and b/Sprites/Enemies/Projectiles/Creepy_Hand.png differ diff --git a/Sprites/Enemies/Projectiles/Creepy_Hand.png.import b/Sprites/Enemies/Projectiles/Creepy_Hand.png.import new file mode 100644 index 0000000..f989b68 --- /dev/null +++ b/Sprites/Enemies/Projectiles/Creepy_Hand.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/Creepy_Hand.png-08a92e3a11f7b6f5409d8d2c9c2390a5.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://Sprites/Enemies/Projectiles/Creepy_Hand.png" +dest_files=[ "res://.import/Creepy_Hand.png-08a92e3a11f7b6f5409d8d2c9c2390a5.stex" ] + +[params] + +compress/mode=0 +compress/lossy_quality=0.7 +compress/hdr_mode=0 +compress/bptc_ldr=0 +compress/normal_map=2 +flags/repeat=0 +flags/filter=false +flags/mipmaps=false +flags/anisotropic=false +flags/srgb=0 +process/fix_alpha_border=false +process/premult_alpha=false +process/HDR_as_SRGB=false +process/invert_color=false +process/normal_map_invert_y=false +stream=false +size_limit=0 +detect_3d=false +svg/scale=1.0 diff --git a/Sprites/Enemies/demon_slime_FREE_v1.0_288x160_spritesheet.png b/Sprites/Enemies/demon_slime_FREE_v1.0_288x160_spritesheet.png new file mode 100644 index 0000000..e7fc86e Binary files /dev/null and b/Sprites/Enemies/demon_slime_FREE_v1.0_288x160_spritesheet.png differ diff --git a/Sprites/Enemies/demon_slime_FREE_v1.0_288x160_spritesheet.png.import b/Sprites/Enemies/demon_slime_FREE_v1.0_288x160_spritesheet.png.import new file mode 100644 index 0000000..4a20b45 --- /dev/null +++ b/Sprites/Enemies/demon_slime_FREE_v1.0_288x160_spritesheet.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/demon_slime_FREE_v1.0_288x160_spritesheet.png-da4c04e9c38eb5ed99cae0d2f557eb77.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://Sprites/Enemies/demon_slime_FREE_v1.0_288x160_spritesheet.png" +dest_files=[ "res://.import/demon_slime_FREE_v1.0_288x160_spritesheet.png-da4c04e9c38eb5ed99cae0d2f557eb77.stex" ] + +[params] + +compress/mode=0 +compress/lossy_quality=0.7 +compress/hdr_mode=0 +compress/bptc_ldr=0 +compress/normal_map=2 +flags/repeat=0 +flags/filter=false +flags/mipmaps=false +flags/anisotropic=false +flags/srgb=0 +process/fix_alpha_border=false +process/premult_alpha=false +process/HDR_as_SRGB=false +process/invert_color=false +process/normal_map_invert_y=false +stream=false +size_limit=0 +detect_3d=false +svg/scale=1.0 diff --git a/Sprites/Enemies/flaming skull design.png b/Sprites/Enemies/flaming skull design.png new file mode 100644 index 0000000..0550c08 Binary files /dev/null and b/Sprites/Enemies/flaming skull design.png differ diff --git a/Sprites/Enemies/flaming skull design.png.import b/Sprites/Enemies/flaming skull design.png.import new file mode 100644 index 0000000..1df09c8 --- /dev/null +++ b/Sprites/Enemies/flaming skull design.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/flaming skull design.png-6cdb00fac9a58170d068889a670f71dd.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://Sprites/Enemies/flaming skull design.png" +dest_files=[ "res://.import/flaming skull design.png-6cdb00fac9a58170d068889a670f71dd.stex" ] + +[params] + +compress/mode=0 +compress/lossy_quality=0.7 +compress/hdr_mode=0 +compress/bptc_ldr=0 +compress/normal_map=2 +flags/repeat=0 +flags/filter=false +flags/mipmaps=false +flags/anisotropic=false +flags/srgb=0 +process/fix_alpha_border=false +process/premult_alpha=false +process/HDR_as_SRGB=false +process/invert_color=false +process/normal_map_invert_y=false +stream=false +size_limit=0 +detect_3d=false +svg/scale=1.0 diff --git a/Sprites/Enemies/hell-hound-idle.png b/Sprites/Enemies/hell-hound-idle.png new file mode 100644 index 0000000..d4c661a Binary files /dev/null and b/Sprites/Enemies/hell-hound-idle.png differ diff --git a/Sprites/Enemies/hell-hound-idle.png.import b/Sprites/Enemies/hell-hound-idle.png.import new file mode 100644 index 0000000..8a437f6 --- /dev/null +++ b/Sprites/Enemies/hell-hound-idle.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/hell-hound-idle.png-04adabe67f632c3810ca4f6f4217166b.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://Sprites/Enemies/hell-hound-idle.png" +dest_files=[ "res://.import/hell-hound-idle.png-04adabe67f632c3810ca4f6f4217166b.stex" ] + +[params] + +compress/mode=0 +compress/lossy_quality=0.7 +compress/hdr_mode=0 +compress/bptc_ldr=0 +compress/normal_map=2 +flags/repeat=0 +flags/filter=false +flags/mipmaps=false +flags/anisotropic=false +flags/srgb=0 +process/fix_alpha_border=false +process/premult_alpha=false +process/HDR_as_SRGB=false +process/invert_color=false +process/normal_map_invert_y=false +stream=false +size_limit=0 +detect_3d=false +svg/scale=1.0 diff --git a/Sprites/Enemies/hell-hound-jump.png b/Sprites/Enemies/hell-hound-jump.png new file mode 100644 index 0000000..72472ae Binary files /dev/null and b/Sprites/Enemies/hell-hound-jump.png differ diff --git a/Sprites/Enemies/hell-hound-jump.png.import b/Sprites/Enemies/hell-hound-jump.png.import new file mode 100644 index 0000000..852375d --- /dev/null +++ b/Sprites/Enemies/hell-hound-jump.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/hell-hound-jump.png-fb98aad763e717154d47c9a25ba1d282.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://Sprites/Enemies/hell-hound-jump.png" +dest_files=[ "res://.import/hell-hound-jump.png-fb98aad763e717154d47c9a25ba1d282.stex" ] + +[params] + +compress/mode=0 +compress/lossy_quality=0.7 +compress/hdr_mode=0 +compress/bptc_ldr=0 +compress/normal_map=2 +flags/repeat=0 +flags/filter=false +flags/mipmaps=false +flags/anisotropic=false +flags/srgb=0 +process/fix_alpha_border=false +process/premult_alpha=false +process/HDR_as_SRGB=false +process/invert_color=false +process/normal_map_invert_y=false +stream=false +size_limit=0 +detect_3d=false +svg/scale=1.0 diff --git a/Sprites/Enemies/hell-hound-run.png b/Sprites/Enemies/hell-hound-run.png new file mode 100644 index 0000000..8d49efb Binary files /dev/null and b/Sprites/Enemies/hell-hound-run.png differ diff --git a/Sprites/Enemies/hell-hound-run.png.import b/Sprites/Enemies/hell-hound-run.png.import new file mode 100644 index 0000000..cf5f36d --- /dev/null +++ b/Sprites/Enemies/hell-hound-run.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/hell-hound-run.png-591e4b1772e53a1946fa4c0e7f6d00c7.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://Sprites/Enemies/hell-hound-run.png" +dest_files=[ "res://.import/hell-hound-run.png-591e4b1772e53a1946fa4c0e7f6d00c7.stex" ] + +[params] + +compress/mode=0 +compress/lossy_quality=0.7 +compress/hdr_mode=0 +compress/bptc_ldr=0 +compress/normal_map=2 +flags/repeat=0 +flags/filter=false +flags/mipmaps=false +flags/anisotropic=false +flags/srgb=0 +process/fix_alpha_border=false +process/premult_alpha=false +process/HDR_as_SRGB=false +process/invert_color=false +process/normal_map_invert_y=false +stream=false +size_limit=0 +detect_3d=false +svg/scale=1.0 diff --git a/Sprites/Enemies/hell-hound-walk.png b/Sprites/Enemies/hell-hound-walk.png new file mode 100644 index 0000000..177f2a5 Binary files /dev/null and b/Sprites/Enemies/hell-hound-walk.png differ diff --git a/Sprites/Enemies/hell-hound-walk.png.import b/Sprites/Enemies/hell-hound-walk.png.import new file mode 100644 index 0000000..30ffd13 --- /dev/null +++ b/Sprites/Enemies/hell-hound-walk.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/hell-hound-walk.png-4d5c769f8d94572a8bd6351223e7a1fe.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://Sprites/Enemies/hell-hound-walk.png" +dest_files=[ "res://.import/hell-hound-walk.png-4d5c769f8d94572a8bd6351223e7a1fe.stex" ] + +[params] + +compress/mode=0 +compress/lossy_quality=0.7 +compress/hdr_mode=0 +compress/bptc_ldr=0 +compress/normal_map=2 +flags/repeat=0 +flags/filter=false +flags/mipmaps=false +flags/anisotropic=false +flags/srgb=0 +process/fix_alpha_border=false +process/premult_alpha=false +process/HDR_as_SRGB=false +process/invert_color=false +process/normal_map_invert_y=false +stream=false +size_limit=0 +detect_3d=false +svg/scale=1.0 diff --git a/Sprites/Levels/Environment/fire_column_medium_1.png b/Sprites/Levels/Environment/fire_column_medium_1.png new file mode 100644 index 0000000..2ada560 Binary files /dev/null and b/Sprites/Levels/Environment/fire_column_medium_1.png differ diff --git a/Sprites/Levels/Environment/fire_column_medium_1.png.import b/Sprites/Levels/Environment/fire_column_medium_1.png.import new file mode 100644 index 0000000..6a0e1c8 --- /dev/null +++ b/Sprites/Levels/Environment/fire_column_medium_1.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/fire_column_medium_1.png-e5fad2ff6a417d8a32652f145b5c1f58.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://Sprites/Levels/Environment/fire_column_medium_1.png" +dest_files=[ "res://.import/fire_column_medium_1.png-e5fad2ff6a417d8a32652f145b5c1f58.stex" ] + +[params] + +compress/mode=0 +compress/lossy_quality=0.7 +compress/hdr_mode=0 +compress/bptc_ldr=0 +compress/normal_map=2 +flags/repeat=0 +flags/filter=false +flags/mipmaps=false +flags/anisotropic=false +flags/srgb=0 +process/fix_alpha_border=false +process/premult_alpha=false +process/HDR_as_SRGB=false +process/invert_color=false +process/normal_map_invert_y=false +stream=false +size_limit=0 +detect_3d=false +svg/scale=1.0 diff --git a/Sprites/Levels/Environment/fire_column_medium_10.png b/Sprites/Levels/Environment/fire_column_medium_10.png new file mode 100644 index 0000000..490e710 Binary files /dev/null and b/Sprites/Levels/Environment/fire_column_medium_10.png differ diff --git a/Sprites/Levels/Environment/fire_column_medium_10.png.import b/Sprites/Levels/Environment/fire_column_medium_10.png.import new file mode 100644 index 0000000..009fedc --- /dev/null +++ b/Sprites/Levels/Environment/fire_column_medium_10.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/fire_column_medium_10.png-9ae78a0f5ef8531c3b56d09574ecd317.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://Sprites/Levels/Environment/fire_column_medium_10.png" +dest_files=[ "res://.import/fire_column_medium_10.png-9ae78a0f5ef8531c3b56d09574ecd317.stex" ] + +[params] + +compress/mode=0 +compress/lossy_quality=0.7 +compress/hdr_mode=0 +compress/bptc_ldr=0 +compress/normal_map=2 +flags/repeat=0 +flags/filter=false +flags/mipmaps=false +flags/anisotropic=false +flags/srgb=0 +process/fix_alpha_border=false +process/premult_alpha=false +process/HDR_as_SRGB=false +process/invert_color=false +process/normal_map_invert_y=false +stream=false +size_limit=0 +detect_3d=false +svg/scale=1.0 diff --git a/Sprites/Levels/Environment/fire_column_medium_11.png b/Sprites/Levels/Environment/fire_column_medium_11.png new file mode 100644 index 0000000..953dd58 Binary files /dev/null and b/Sprites/Levels/Environment/fire_column_medium_11.png differ diff --git a/Sprites/Levels/Environment/fire_column_medium_11.png.import b/Sprites/Levels/Environment/fire_column_medium_11.png.import new file mode 100644 index 0000000..a00b07c --- /dev/null +++ b/Sprites/Levels/Environment/fire_column_medium_11.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/fire_column_medium_11.png-f6c2ac8f20428aebca0febd0f65a5806.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://Sprites/Levels/Environment/fire_column_medium_11.png" +dest_files=[ "res://.import/fire_column_medium_11.png-f6c2ac8f20428aebca0febd0f65a5806.stex" ] + +[params] + +compress/mode=0 +compress/lossy_quality=0.7 +compress/hdr_mode=0 +compress/bptc_ldr=0 +compress/normal_map=2 +flags/repeat=0 +flags/filter=false +flags/mipmaps=false +flags/anisotropic=false +flags/srgb=0 +process/fix_alpha_border=false +process/premult_alpha=false +process/HDR_as_SRGB=false +process/invert_color=false +process/normal_map_invert_y=false +stream=false +size_limit=0 +detect_3d=false +svg/scale=1.0 diff --git a/Sprites/Levels/Environment/fire_column_medium_12.png b/Sprites/Levels/Environment/fire_column_medium_12.png new file mode 100644 index 0000000..f3ebd22 Binary files /dev/null and b/Sprites/Levels/Environment/fire_column_medium_12.png differ diff --git a/Sprites/Levels/Environment/fire_column_medium_12.png.import b/Sprites/Levels/Environment/fire_column_medium_12.png.import new file mode 100644 index 0000000..81d1075 --- /dev/null +++ b/Sprites/Levels/Environment/fire_column_medium_12.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/fire_column_medium_12.png-25bc0d063fd42a44b6e9e423e3bf2656.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://Sprites/Levels/Environment/fire_column_medium_12.png" +dest_files=[ "res://.import/fire_column_medium_12.png-25bc0d063fd42a44b6e9e423e3bf2656.stex" ] + +[params] + +compress/mode=0 +compress/lossy_quality=0.7 +compress/hdr_mode=0 +compress/bptc_ldr=0 +compress/normal_map=2 +flags/repeat=0 +flags/filter=false +flags/mipmaps=false +flags/anisotropic=false +flags/srgb=0 +process/fix_alpha_border=false +process/premult_alpha=false +process/HDR_as_SRGB=false +process/invert_color=false +process/normal_map_invert_y=false +stream=false +size_limit=0 +detect_3d=false +svg/scale=1.0 diff --git a/Sprites/Levels/Environment/fire_column_medium_13.png b/Sprites/Levels/Environment/fire_column_medium_13.png new file mode 100644 index 0000000..1690568 Binary files /dev/null and b/Sprites/Levels/Environment/fire_column_medium_13.png differ diff --git a/Sprites/Levels/Environment/fire_column_medium_13.png.import b/Sprites/Levels/Environment/fire_column_medium_13.png.import new file mode 100644 index 0000000..37d9656 --- /dev/null +++ b/Sprites/Levels/Environment/fire_column_medium_13.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/fire_column_medium_13.png-6f8490642f9a7a3884a31ae3975deb08.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://Sprites/Levels/Environment/fire_column_medium_13.png" +dest_files=[ "res://.import/fire_column_medium_13.png-6f8490642f9a7a3884a31ae3975deb08.stex" ] + +[params] + +compress/mode=0 +compress/lossy_quality=0.7 +compress/hdr_mode=0 +compress/bptc_ldr=0 +compress/normal_map=2 +flags/repeat=0 +flags/filter=false +flags/mipmaps=false +flags/anisotropic=false +flags/srgb=0 +process/fix_alpha_border=false +process/premult_alpha=false +process/HDR_as_SRGB=false +process/invert_color=false +process/normal_map_invert_y=false +stream=false +size_limit=0 +detect_3d=false +svg/scale=1.0 diff --git a/Sprites/Levels/Environment/fire_column_medium_14.png b/Sprites/Levels/Environment/fire_column_medium_14.png new file mode 100644 index 0000000..93a4ce9 Binary files /dev/null and b/Sprites/Levels/Environment/fire_column_medium_14.png differ diff --git a/Sprites/Levels/Environment/fire_column_medium_14.png.import b/Sprites/Levels/Environment/fire_column_medium_14.png.import new file mode 100644 index 0000000..4a9861f --- /dev/null +++ b/Sprites/Levels/Environment/fire_column_medium_14.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/fire_column_medium_14.png-81452b14764f0dd97e4008c5f9448c38.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://Sprites/Levels/Environment/fire_column_medium_14.png" +dest_files=[ "res://.import/fire_column_medium_14.png-81452b14764f0dd97e4008c5f9448c38.stex" ] + +[params] + +compress/mode=0 +compress/lossy_quality=0.7 +compress/hdr_mode=0 +compress/bptc_ldr=0 +compress/normal_map=2 +flags/repeat=0 +flags/filter=false +flags/mipmaps=false +flags/anisotropic=false +flags/srgb=0 +process/fix_alpha_border=false +process/premult_alpha=false +process/HDR_as_SRGB=false +process/invert_color=false +process/normal_map_invert_y=false +stream=false +size_limit=0 +detect_3d=false +svg/scale=1.0 diff --git a/Sprites/Levels/Environment/fire_column_medium_2.png b/Sprites/Levels/Environment/fire_column_medium_2.png new file mode 100644 index 0000000..40fcef8 Binary files /dev/null and b/Sprites/Levels/Environment/fire_column_medium_2.png differ diff --git a/Sprites/Levels/Environment/fire_column_medium_2.png.import b/Sprites/Levels/Environment/fire_column_medium_2.png.import new file mode 100644 index 0000000..cd22d23 --- /dev/null +++ b/Sprites/Levels/Environment/fire_column_medium_2.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/fire_column_medium_2.png-2dc93225051974fe79e1ae37758ee746.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://Sprites/Levels/Environment/fire_column_medium_2.png" +dest_files=[ "res://.import/fire_column_medium_2.png-2dc93225051974fe79e1ae37758ee746.stex" ] + +[params] + +compress/mode=0 +compress/lossy_quality=0.7 +compress/hdr_mode=0 +compress/bptc_ldr=0 +compress/normal_map=2 +flags/repeat=0 +flags/filter=false +flags/mipmaps=false +flags/anisotropic=false +flags/srgb=0 +process/fix_alpha_border=false +process/premult_alpha=false +process/HDR_as_SRGB=false +process/invert_color=false +process/normal_map_invert_y=false +stream=false +size_limit=0 +detect_3d=false +svg/scale=1.0 diff --git a/Sprites/Levels/Environment/fire_column_medium_3.png b/Sprites/Levels/Environment/fire_column_medium_3.png new file mode 100644 index 0000000..28bd9e3 Binary files /dev/null and b/Sprites/Levels/Environment/fire_column_medium_3.png differ diff --git a/Sprites/Levels/Environment/fire_column_medium_3.png.import b/Sprites/Levels/Environment/fire_column_medium_3.png.import new file mode 100644 index 0000000..42d250a --- /dev/null +++ b/Sprites/Levels/Environment/fire_column_medium_3.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/fire_column_medium_3.png-a89ea72ee320c5a0fb7e0489e57be6cf.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://Sprites/Levels/Environment/fire_column_medium_3.png" +dest_files=[ "res://.import/fire_column_medium_3.png-a89ea72ee320c5a0fb7e0489e57be6cf.stex" ] + +[params] + +compress/mode=0 +compress/lossy_quality=0.7 +compress/hdr_mode=0 +compress/bptc_ldr=0 +compress/normal_map=2 +flags/repeat=0 +flags/filter=false +flags/mipmaps=false +flags/anisotropic=false +flags/srgb=0 +process/fix_alpha_border=false +process/premult_alpha=false +process/HDR_as_SRGB=false +process/invert_color=false +process/normal_map_invert_y=false +stream=false +size_limit=0 +detect_3d=false +svg/scale=1.0 diff --git a/Sprites/Levels/Environment/fire_column_medium_4.png b/Sprites/Levels/Environment/fire_column_medium_4.png new file mode 100644 index 0000000..5705dae Binary files /dev/null and b/Sprites/Levels/Environment/fire_column_medium_4.png differ diff --git a/Sprites/Levels/Environment/fire_column_medium_4.png.import b/Sprites/Levels/Environment/fire_column_medium_4.png.import new file mode 100644 index 0000000..f3b5e07 --- /dev/null +++ b/Sprites/Levels/Environment/fire_column_medium_4.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/fire_column_medium_4.png-1d5adb5c7f9e950902bfa4b3dfe1b30d.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://Sprites/Levels/Environment/fire_column_medium_4.png" +dest_files=[ "res://.import/fire_column_medium_4.png-1d5adb5c7f9e950902bfa4b3dfe1b30d.stex" ] + +[params] + +compress/mode=0 +compress/lossy_quality=0.7 +compress/hdr_mode=0 +compress/bptc_ldr=0 +compress/normal_map=2 +flags/repeat=0 +flags/filter=false +flags/mipmaps=false +flags/anisotropic=false +flags/srgb=0 +process/fix_alpha_border=false +process/premult_alpha=false +process/HDR_as_SRGB=false +process/invert_color=false +process/normal_map_invert_y=false +stream=false +size_limit=0 +detect_3d=false +svg/scale=1.0 diff --git a/Sprites/Levels/Environment/fire_column_medium_5.png b/Sprites/Levels/Environment/fire_column_medium_5.png new file mode 100644 index 0000000..7cff9fb Binary files /dev/null and b/Sprites/Levels/Environment/fire_column_medium_5.png differ diff --git a/Sprites/Levels/Environment/fire_column_medium_5.png.import b/Sprites/Levels/Environment/fire_column_medium_5.png.import new file mode 100644 index 0000000..d741579 --- /dev/null +++ b/Sprites/Levels/Environment/fire_column_medium_5.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/fire_column_medium_5.png-3f4cdedb3ab5f295259dbbc7c43bb67c.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://Sprites/Levels/Environment/fire_column_medium_5.png" +dest_files=[ "res://.import/fire_column_medium_5.png-3f4cdedb3ab5f295259dbbc7c43bb67c.stex" ] + +[params] + +compress/mode=0 +compress/lossy_quality=0.7 +compress/hdr_mode=0 +compress/bptc_ldr=0 +compress/normal_map=2 +flags/repeat=0 +flags/filter=false +flags/mipmaps=false +flags/anisotropic=false +flags/srgb=0 +process/fix_alpha_border=false +process/premult_alpha=false +process/HDR_as_SRGB=false +process/invert_color=false +process/normal_map_invert_y=false +stream=false +size_limit=0 +detect_3d=false +svg/scale=1.0 diff --git a/Sprites/Levels/Environment/fire_column_medium_6.png b/Sprites/Levels/Environment/fire_column_medium_6.png new file mode 100644 index 0000000..5fc646a Binary files /dev/null and b/Sprites/Levels/Environment/fire_column_medium_6.png differ diff --git a/Sprites/Levels/Environment/fire_column_medium_6.png.import b/Sprites/Levels/Environment/fire_column_medium_6.png.import new file mode 100644 index 0000000..13074a6 --- /dev/null +++ b/Sprites/Levels/Environment/fire_column_medium_6.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/fire_column_medium_6.png-a33d29f0ee3f5f8d97961c768b5c561a.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://Sprites/Levels/Environment/fire_column_medium_6.png" +dest_files=[ "res://.import/fire_column_medium_6.png-a33d29f0ee3f5f8d97961c768b5c561a.stex" ] + +[params] + +compress/mode=0 +compress/lossy_quality=0.7 +compress/hdr_mode=0 +compress/bptc_ldr=0 +compress/normal_map=2 +flags/repeat=0 +flags/filter=false +flags/mipmaps=false +flags/anisotropic=false +flags/srgb=0 +process/fix_alpha_border=false +process/premult_alpha=false +process/HDR_as_SRGB=false +process/invert_color=false +process/normal_map_invert_y=false +stream=false +size_limit=0 +detect_3d=false +svg/scale=1.0 diff --git a/Sprites/Levels/Environment/fire_column_medium_7.png b/Sprites/Levels/Environment/fire_column_medium_7.png new file mode 100644 index 0000000..4eb3657 Binary files /dev/null and b/Sprites/Levels/Environment/fire_column_medium_7.png differ diff --git a/Sprites/Levels/Environment/fire_column_medium_7.png.import b/Sprites/Levels/Environment/fire_column_medium_7.png.import new file mode 100644 index 0000000..458291a --- /dev/null +++ b/Sprites/Levels/Environment/fire_column_medium_7.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/fire_column_medium_7.png-459881ecfca759b4bf3c2006428301fa.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://Sprites/Levels/Environment/fire_column_medium_7.png" +dest_files=[ "res://.import/fire_column_medium_7.png-459881ecfca759b4bf3c2006428301fa.stex" ] + +[params] + +compress/mode=0 +compress/lossy_quality=0.7 +compress/hdr_mode=0 +compress/bptc_ldr=0 +compress/normal_map=2 +flags/repeat=0 +flags/filter=false +flags/mipmaps=false +flags/anisotropic=false +flags/srgb=0 +process/fix_alpha_border=false +process/premult_alpha=false +process/HDR_as_SRGB=false +process/invert_color=false +process/normal_map_invert_y=false +stream=false +size_limit=0 +detect_3d=false +svg/scale=1.0 diff --git a/Sprites/Levels/Environment/fire_column_medium_8.png b/Sprites/Levels/Environment/fire_column_medium_8.png new file mode 100644 index 0000000..acd47a8 Binary files /dev/null and b/Sprites/Levels/Environment/fire_column_medium_8.png differ diff --git a/Sprites/Levels/Environment/fire_column_medium_8.png.import b/Sprites/Levels/Environment/fire_column_medium_8.png.import new file mode 100644 index 0000000..ada8c4e --- /dev/null +++ b/Sprites/Levels/Environment/fire_column_medium_8.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/fire_column_medium_8.png-689a02f8e8a19cd708fbf08eee4dd203.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://Sprites/Levels/Environment/fire_column_medium_8.png" +dest_files=[ "res://.import/fire_column_medium_8.png-689a02f8e8a19cd708fbf08eee4dd203.stex" ] + +[params] + +compress/mode=0 +compress/lossy_quality=0.7 +compress/hdr_mode=0 +compress/bptc_ldr=0 +compress/normal_map=2 +flags/repeat=0 +flags/filter=false +flags/mipmaps=false +flags/anisotropic=false +flags/srgb=0 +process/fix_alpha_border=false +process/premult_alpha=false +process/HDR_as_SRGB=false +process/invert_color=false +process/normal_map_invert_y=false +stream=false +size_limit=0 +detect_3d=false +svg/scale=1.0 diff --git a/Sprites/Levels/Environment/fire_column_medium_9.png b/Sprites/Levels/Environment/fire_column_medium_9.png new file mode 100644 index 0000000..e9aacd3 Binary files /dev/null and b/Sprites/Levels/Environment/fire_column_medium_9.png differ diff --git a/Sprites/Levels/Environment/fire_column_medium_9.png.import b/Sprites/Levels/Environment/fire_column_medium_9.png.import new file mode 100644 index 0000000..b46e6ce --- /dev/null +++ b/Sprites/Levels/Environment/fire_column_medium_9.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/fire_column_medium_9.png-6c6b88cfcbb7648bdab2e00bb51a528c.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://Sprites/Levels/Environment/fire_column_medium_9.png" +dest_files=[ "res://.import/fire_column_medium_9.png-6c6b88cfcbb7648bdab2e00bb51a528c.stex" ] + +[params] + +compress/mode=0 +compress/lossy_quality=0.7 +compress/hdr_mode=0 +compress/bptc_ldr=0 +compress/normal_map=2 +flags/repeat=0 +flags/filter=false +flags/mipmaps=false +flags/anisotropic=false +flags/srgb=0 +process/fix_alpha_border=false +process/premult_alpha=false +process/HDR_as_SRGB=false +process/invert_color=false +process/normal_map_invert_y=false +stream=false +size_limit=0 +detect_3d=false +svg/scale=1.0 diff --git a/Sprites/Levels/Interactables/Silver_Barrier_Closed.png b/Sprites/Levels/Interactables/Silver_Barrier_Closed.png new file mode 100644 index 0000000..bb3fa50 Binary files /dev/null and b/Sprites/Levels/Interactables/Silver_Barrier_Closed.png differ diff --git a/Sprites/Levels/Interactables/Silver_Barrier_Closed.png.import b/Sprites/Levels/Interactables/Silver_Barrier_Closed.png.import new file mode 100644 index 0000000..a9f83c3 --- /dev/null +++ b/Sprites/Levels/Interactables/Silver_Barrier_Closed.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/Silver_Barrier_Closed.png-f21af0f8676e345e4c4665869fd9b81c.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://Sprites/Levels/Interactables/Silver_Barrier_Closed.png" +dest_files=[ "res://.import/Silver_Barrier_Closed.png-f21af0f8676e345e4c4665869fd9b81c.stex" ] + +[params] + +compress/mode=0 +compress/lossy_quality=0.7 +compress/hdr_mode=0 +compress/bptc_ldr=0 +compress/normal_map=2 +flags/repeat=0 +flags/filter=false +flags/mipmaps=false +flags/anisotropic=false +flags/srgb=0 +process/fix_alpha_border=false +process/premult_alpha=false +process/HDR_as_SRGB=false +process/invert_color=false +process/normal_map_invert_y=false +stream=false +size_limit=0 +detect_3d=false +svg/scale=1.0 diff --git a/Sprites/Levels/Interactables/Silver_Barrier_Open.png b/Sprites/Levels/Interactables/Silver_Barrier_Open.png new file mode 100644 index 0000000..8a19385 Binary files /dev/null and b/Sprites/Levels/Interactables/Silver_Barrier_Open.png differ diff --git a/Sprites/Levels/Interactables/Silver_Barrier_Open.png.import b/Sprites/Levels/Interactables/Silver_Barrier_Open.png.import new file mode 100644 index 0000000..096529e --- /dev/null +++ b/Sprites/Levels/Interactables/Silver_Barrier_Open.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/Silver_Barrier_Open.png-98c2210bfdfd797f9554a71cb67cfeee.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://Sprites/Levels/Interactables/Silver_Barrier_Open.png" +dest_files=[ "res://.import/Silver_Barrier_Open.png-98c2210bfdfd797f9554a71cb67cfeee.stex" ] + +[params] + +compress/mode=0 +compress/lossy_quality=0.7 +compress/hdr_mode=0 +compress/bptc_ldr=0 +compress/normal_map=2 +flags/repeat=0 +flags/filter=false +flags/mipmaps=false +flags/anisotropic=false +flags/srgb=0 +process/fix_alpha_border=false +process/premult_alpha=false +process/HDR_as_SRGB=false +process/invert_color=false +process/normal_map_invert_y=false +stream=false +size_limit=0 +detect_3d=false +svg/scale=1.0 diff --git a/Sprites/Levels/Interactables/Silver_Key.png b/Sprites/Levels/Interactables/Silver_Key.png new file mode 100644 index 0000000..b8704e8 Binary files /dev/null and b/Sprites/Levels/Interactables/Silver_Key.png differ diff --git a/Sprites/Levels/Interactables/Silver_Key.png.import b/Sprites/Levels/Interactables/Silver_Key.png.import new file mode 100644 index 0000000..da710b3 --- /dev/null +++ b/Sprites/Levels/Interactables/Silver_Key.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/Silver_Key.png-257bee058565f7389053b11d401f95fc.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://Sprites/Levels/Interactables/Silver_Key.png" +dest_files=[ "res://.import/Silver_Key.png-257bee058565f7389053b11d401f95fc.stex" ] + +[params] + +compress/mode=0 +compress/lossy_quality=0.7 +compress/hdr_mode=0 +compress/bptc_ldr=0 +compress/normal_map=2 +flags/repeat=0 +flags/filter=false +flags/mipmaps=false +flags/anisotropic=false +flags/srgb=0 +process/fix_alpha_border=false +process/premult_alpha=false +process/HDR_as_SRGB=false +process/invert_color=false +process/normal_map_invert_y=false +stream=false +size_limit=0 +detect_3d=false +svg/scale=1.0 diff --git a/Sprites/Levels/Interactables/treasureChest.png b/Sprites/Levels/Interactables/treasureChest.png new file mode 100644 index 0000000..8906f54 Binary files /dev/null and b/Sprites/Levels/Interactables/treasureChest.png differ diff --git a/Sprites/Levels/Interactables/treasureChest.png.import b/Sprites/Levels/Interactables/treasureChest.png.import new file mode 100644 index 0000000..9a09125 --- /dev/null +++ b/Sprites/Levels/Interactables/treasureChest.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/treasureChest.png-00812ccff7703c7ad90ee61e6ad40942.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://Sprites/Levels/Interactables/treasureChest.png" +dest_files=[ "res://.import/treasureChest.png-00812ccff7703c7ad90ee61e6ad40942.stex" ] + +[params] + +compress/mode=0 +compress/lossy_quality=0.7 +compress/hdr_mode=0 +compress/bptc_ldr=0 +compress/normal_map=2 +flags/repeat=0 +flags/filter=false +flags/mipmaps=false +flags/anisotropic=false +flags/srgb=0 +process/fix_alpha_border=false +process/premult_alpha=false +process/HDR_as_SRGB=false +process/invert_color=false +process/normal_map_invert_y=false +stream=false +size_limit=0 +detect_3d=false +svg/scale=1.0 diff --git a/Sprites/Levels/Interactables/treasureChestOpen.png b/Sprites/Levels/Interactables/treasureChestOpen.png new file mode 100644 index 0000000..8ac3f37 Binary files /dev/null and b/Sprites/Levels/Interactables/treasureChestOpen.png differ diff --git a/Sprites/Levels/Interactables/treasureChestOpen.png.import b/Sprites/Levels/Interactables/treasureChestOpen.png.import new file mode 100644 index 0000000..94bd2bf --- /dev/null +++ b/Sprites/Levels/Interactables/treasureChestOpen.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/treasureChestOpen.png-8ddefbdb69c01adae555fb1c2ff8c4d5.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://Sprites/Levels/Interactables/treasureChestOpen.png" +dest_files=[ "res://.import/treasureChestOpen.png-8ddefbdb69c01adae555fb1c2ff8c4d5.stex" ] + +[params] + +compress/mode=0 +compress/lossy_quality=0.7 +compress/hdr_mode=0 +compress/bptc_ldr=0 +compress/normal_map=2 +flags/repeat=0 +flags/filter=false +flags/mipmaps=false +flags/anisotropic=false +flags/srgb=0 +process/fix_alpha_border=false +process/premult_alpha=false +process/HDR_as_SRGB=false +process/invert_color=false +process/normal_map_invert_y=false +stream=false +size_limit=0 +detect_3d=false +svg/scale=1.0 diff --git a/Sprites/Levels/Objects/DoorClosed.png b/Sprites/Levels/Objects/DoorClosed.png new file mode 100644 index 0000000..34af79e Binary files /dev/null and b/Sprites/Levels/Objects/DoorClosed.png differ diff --git a/Sprites/Levels/Objects/DoorClosed.png.import b/Sprites/Levels/Objects/DoorClosed.png.import new file mode 100644 index 0000000..80619bb --- /dev/null +++ b/Sprites/Levels/Objects/DoorClosed.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/DoorClosed.png-73f7be6ed66e30f0d07630ea7eb0a73e.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://Sprites/Levels/Objects/DoorClosed.png" +dest_files=[ "res://.import/DoorClosed.png-73f7be6ed66e30f0d07630ea7eb0a73e.stex" ] + +[params] + +compress/mode=0 +compress/lossy_quality=0.7 +compress/hdr_mode=0 +compress/bptc_ldr=0 +compress/normal_map=2 +flags/repeat=0 +flags/filter=false +flags/mipmaps=false +flags/anisotropic=false +flags/srgb=0 +process/fix_alpha_border=false +process/premult_alpha=false +process/HDR_as_SRGB=false +process/invert_color=false +process/normal_map_invert_y=false +stream=false +size_limit=0 +detect_3d=false +svg/scale=1.0 diff --git a/Sprites/Levels/Objects/DoorOpen.png b/Sprites/Levels/Objects/DoorOpen.png new file mode 100644 index 0000000..1aa6de8 Binary files /dev/null and b/Sprites/Levels/Objects/DoorOpen.png differ diff --git a/Sprites/Levels/Objects/DoorOpen.png.import b/Sprites/Levels/Objects/DoorOpen.png.import new file mode 100644 index 0000000..99c836c --- /dev/null +++ b/Sprites/Levels/Objects/DoorOpen.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/DoorOpen.png-d1c13e53ea84e75de40f424611f73f31.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://Sprites/Levels/Objects/DoorOpen.png" +dest_files=[ "res://.import/DoorOpen.png-d1c13e53ea84e75de40f424611f73f31.stex" ] + +[params] + +compress/mode=0 +compress/lossy_quality=0.7 +compress/hdr_mode=0 +compress/bptc_ldr=0 +compress/normal_map=2 +flags/repeat=0 +flags/filter=false +flags/mipmaps=false +flags/anisotropic=false +flags/srgb=0 +process/fix_alpha_border=false +process/premult_alpha=false +process/HDR_as_SRGB=false +process/invert_color=false +process/normal_map_invert_y=false +stream=false +size_limit=0 +detect_3d=false +svg/scale=1.0 diff --git a/Sprites/Levels/Tilesets/Level_4_Tileset.png b/Sprites/Levels/Tilesets/Level_4_Tileset.png new file mode 100644 index 0000000..a238f7e Binary files /dev/null and b/Sprites/Levels/Tilesets/Level_4_Tileset.png differ diff --git a/Sprites/Levels/Tilesets/Level_4_Tileset.png.import b/Sprites/Levels/Tilesets/Level_4_Tileset.png.import new file mode 100644 index 0000000..8712a02 --- /dev/null +++ b/Sprites/Levels/Tilesets/Level_4_Tileset.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/Level_4_Tileset.png-0952ef474b7235043baefccd7c567727.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://Sprites/Levels/Tilesets/Level_4_Tileset.png" +dest_files=[ "res://.import/Level_4_Tileset.png-0952ef474b7235043baefccd7c567727.stex" ] + +[params] + +compress/mode=0 +compress/lossy_quality=0.7 +compress/hdr_mode=0 +compress/bptc_ldr=0 +compress/normal_map=2 +flags/repeat=0 +flags/filter=false +flags/mipmaps=false +flags/anisotropic=false +flags/srgb=0 +process/fix_alpha_border=false +process/premult_alpha=false +process/HDR_as_SRGB=false +process/invert_color=false +process/normal_map_invert_y=false +stream=false +size_limit=0 +detect_3d=false +svg/scale=1.0 diff --git a/Sprites/Assets/Level_5_Floor_Tileset.png b/Sprites/Levels/Tilesets/Level_5_Floor_Tileset.png similarity index 100% rename from Sprites/Assets/Level_5_Floor_Tileset.png rename to Sprites/Levels/Tilesets/Level_5_Floor_Tileset.png diff --git a/Sprites/Levels/Tilesets/Level_5_Floor_Tileset.png.import b/Sprites/Levels/Tilesets/Level_5_Floor_Tileset.png.import new file mode 100644 index 0000000..89efb0b --- /dev/null +++ b/Sprites/Levels/Tilesets/Level_5_Floor_Tileset.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/Level_5_Floor_Tileset.png-6659a9a904b381125cc681dd7104e9c4.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://Sprites/Levels/Tilesets/Level_5_Floor_Tileset.png" +dest_files=[ "res://.import/Level_5_Floor_Tileset.png-6659a9a904b381125cc681dd7104e9c4.stex" ] + +[params] + +compress/mode=0 +compress/lossy_quality=0.7 +compress/hdr_mode=0 +compress/bptc_ldr=0 +compress/normal_map=2 +flags/repeat=0 +flags/filter=false +flags/mipmaps=false +flags/anisotropic=false +flags/srgb=0 +process/fix_alpha_border=false +process/premult_alpha=false +process/HDR_as_SRGB=false +process/invert_color=false +process/normal_map_invert_y=false +stream=false +size_limit=0 +detect_3d=false +svg/scale=1.0 diff --git a/Sprites/Assets/Level_5_Walls_Tileset.png b/Sprites/Levels/Tilesets/Level_5_Walls_Tileset.png similarity index 100% rename from Sprites/Assets/Level_5_Walls_Tileset.png rename to Sprites/Levels/Tilesets/Level_5_Walls_Tileset.png diff --git a/Sprites/Levels/Tilesets/Level_5_Walls_Tileset.png.import b/Sprites/Levels/Tilesets/Level_5_Walls_Tileset.png.import new file mode 100644 index 0000000..fe92aff --- /dev/null +++ b/Sprites/Levels/Tilesets/Level_5_Walls_Tileset.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/Level_5_Walls_Tileset.png-c7ee165ac033cd739afab432c8bab7bd.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://Sprites/Levels/Tilesets/Level_5_Walls_Tileset.png" +dest_files=[ "res://.import/Level_5_Walls_Tileset.png-c7ee165ac033cd739afab432c8bab7bd.stex" ] + +[params] + +compress/mode=0 +compress/lossy_quality=0.7 +compress/hdr_mode=0 +compress/bptc_ldr=0 +compress/normal_map=2 +flags/repeat=0 +flags/filter=false +flags/mipmaps=false +flags/anisotropic=false +flags/srgb=0 +process/fix_alpha_border=false +process/premult_alpha=false +process/HDR_as_SRGB=false +process/invert_color=false +process/normal_map_invert_y=false +stream=false +size_limit=0 +detect_3d=false +svg/scale=1.0 diff --git a/project.godot b/project.godot index 951352d..bdd2666 100644 --- a/project.godot +++ b/project.godot @@ -54,6 +54,17 @@ screenshot={ "events": [ Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"alt":false,"shift":false,"control":false,"meta":false,"command":false,"pressed":false,"scancode":16777245,"unicode":0,"echo":false,"script":null) ] } +player_attack={ +"deadzone": 0.5, +"events": [ Object(InputEventMouseButton,"resource_local_to_scene":false,"resource_name":"","device":0,"alt":false,"shift":false,"control":false,"meta":false,"command":false,"button_mask":0,"position":Vector2( 0, 0 ),"global_position":Vector2( 0, 0 ),"factor":1.0,"button_index":1,"pressed":false,"doubleclick":false,"script":null) + ] +} + +[layer_names] + +2d_physics/layer_1="Immovable" +2d_physics/layer_2="Player" +2d_physics/layer_3="Enemies" [physics]