From 3cbee20d2f929905cfc42aa6e0516f8606190a65 Mon Sep 17 00:00:00 2001 From: Diego Date: Thu, 23 Jul 2020 23:04:24 -0500 Subject: [PATCH] fart --- ai/Scenes/Skeleton Enemy.tscn | 15 ++++++++++++++- ai/Scenes/ogre.tscn | 11 +++++------ ai/Script/Demon.gd | 2 +- ai/Script/Skeleton Enemy.gd | 13 ++++++++++++- ai/Script/ogre.gd | 10 ++++++---- levels/Campaign/Level 1/Level 1.tscn | 8 ++++---- levels/Campaign/Level 2/Level_2.tscn | 3 +-- levels/Campaign/Level 3/Level_3.tscn | 19 +++++++++---------- 8 files changed, 52 insertions(+), 29 deletions(-) diff --git a/ai/Scenes/Skeleton Enemy.tscn b/ai/Scenes/Skeleton Enemy.tscn index c980cbc..83402d8 100644 --- a/ai/Scenes/Skeleton Enemy.tscn +++ b/ai/Scenes/Skeleton Enemy.tscn @@ -1,4 +1,4 @@ -[gd_scene load_steps=6 format=2] +[gd_scene load_steps=7 format=2] [ext_resource path="res://ai/Script/Skeleton Enemy.gd" type="Script" id=1] [ext_resource path="res://Music and Fonts(Misc.)/Skeleton Hit.tres" type="Animation" id=2] @@ -24,6 +24,9 @@ tracks/0/keys = { "values": [ 0, 1, 2, 3, 4, 5, 6, 7 ] } +[sub_resource type="RectangleShape2D" id=3] +extents = Vector2( 6, 2 ) + [node name="Skeleton Enemy" type="KinematicBody2D"] collision_layer = 4 collision_mask = 15 @@ -59,3 +62,13 @@ autoplay = "Skeleton Jump" [node name="AnimationPlayer2" type="AnimationPlayer" parent="."] anims/Hit = ExtResource( 2 ) + +[node name="Area2D" type="Area2D" parent="."] + +[node name="CollisionShape2D" type="CollisionShape2D" parent="Area2D"] +position = Vector2( 0, -6 ) +shape = SubResource( 3 ) + +[node name="DamageCD" type="Timer" parent="."] +wait_time = 0.5 +[connection signal="body_entered" from="Area2D" to="." method="_on_Area2D_body_entered"] diff --git a/ai/Scenes/ogre.tscn b/ai/Scenes/ogre.tscn index 48ef88e..7cb3f94 100644 --- a/ai/Scenes/ogre.tscn +++ b/ai/Scenes/ogre.tscn @@ -5,8 +5,8 @@ [ext_resource path="res://Music and Fonts(Misc.)/Ogre Hit.tres" type="Animation" id=3] [ext_resource path="res://Music and Fonts(Misc.)/Ogre Run.tres" type="Animation" id=4] -[sub_resource type="CapsuleShape2D" id=1] -height = 4.0 +[sub_resource type="RectangleShape2D" id=3] +extents = Vector2( 11.7397, 12.875 ) [sub_resource type="CapsuleShape2D" id=2] radius = 12.0 @@ -22,11 +22,10 @@ script = ExtResource( 1 ) position = Vector2( 0, -17 ) texture = ExtResource( 2 ) hframes = 4 -frame = 3 [node name="CollisionShape2D" type="CollisionShape2D" parent="."] -position = Vector2( 1, -12 ) -shape = SubResource( 1 ) +position = Vector2( -0.25, -12.25 ) +shape = SubResource( 3 ) [node name="DamageCD" type="Timer" parent="."] wait_time = 0.5 @@ -44,5 +43,5 @@ anims/Hit = ExtResource( 3 ) collision_layer = 0 [node name="CollisionShape2D" type="CollisionShape2D" parent="Area2D"] -position = Vector2( 1, -13 ) +position = Vector2( -0.375, -11.625 ) shape = SubResource( 2 ) diff --git a/ai/Script/Demon.gd b/ai/Script/Demon.gd index 6212830..3180040 100644 --- a/ai/Script/Demon.gd +++ b/ai/Script/Demon.gd @@ -24,7 +24,7 @@ func _physics_process(_delta): var collider = PlayerRaycast.get_collider() - if dist <= 200: + if dist <= 250: velocity.x = position.direction_to(player_position).normalized().x * speed if collider != null && collider.has_method("get_type") && collider.get_type() == "player": shoot_fireball(position.direction_to(player_position)) diff --git a/ai/Script/Skeleton Enemy.gd b/ai/Script/Skeleton Enemy.gd index b39201d..2bfe6eb 100644 --- a/ai/Script/Skeleton Enemy.gd +++ b/ai/Script/Skeleton Enemy.gd @@ -1,12 +1,15 @@ extends Enemy -export var max_range: int = 200 +export var max_range: int = 250 export var stationary: bool = false +var contact_damage = 0.5 var Spinning_Bone = preload("res://ai/Scenes/SpinningBone.tscn") onready var ShootDelay : Timer = $ShootDelay onready var ProjectileSpawn: Node2D = $Position2D +onready var Hurtbox = $Area2D +onready var DamageCD = $DamageCD func _ready(): health = 1.5 @@ -69,3 +72,11 @@ func do_knockback(normal): else: knockback = Vector2(4, 0) + + +func deal_damage(): + if DamageCD.is_stopped(): + for body in Hurtbox.get_overlapping_bodies(): + if body.has_method("get_type") && body.get_type() == "player": + body.health -= contact_damage + DamageCD.start() diff --git a/ai/Script/ogre.gd b/ai/Script/ogre.gd index 621b01e..8a307b5 100644 --- a/ai/Script/ogre.gd +++ b/ai/Script/ogre.gd @@ -13,6 +13,7 @@ func _ready(): health = 5 func _physics_process(delta): + print(is_on_wall()) if knockback != Vector2.ZERO: knockback = lerp(knockback, Vector2.ZERO, 0.5) move_and_slide(-knockback * knockback_amount) @@ -21,22 +22,23 @@ func _physics_process(delta): return var player = Player.position var distance = global_position.distance_to(player) - if distance <= 200 and is_on_floor(): + if distance <= 250 and is_on_floor(): if player.x > global_position.x: Spr.flip_h = false velocity.x = speed elif player.x < global_position.x: Spr.flip_h = true velocity.x = -speed + else: + velocity.x = 0 if stationary: velocity.x = 0 if health <= 0: queue_free() if not is_on_floor(): velocity.y = gravity - if is_on_floor() and is_on_wall(): - velocity.y = -100 - print("jump") + if is_on_floor() and is_on_wall() == true: + velocity.y = -150 velocity = move_and_slide(velocity, Vector2.UP) deal_damage() diff --git a/levels/Campaign/Level 1/Level 1.tscn b/levels/Campaign/Level 1/Level 1.tscn index 6f99736..ea838a3 100644 --- a/levels/Campaign/Level 1/Level 1.tscn +++ b/levels/Campaign/Level 1/Level 1.tscn @@ -92,7 +92,7 @@ margin_top = 60.0 margin_right = 435.0 margin_bottom = 137.0 custom_fonts/font = SubResource( 1 ) -text = "Experiment with combos, and craft the best magic for the situation." +text = "Experiment with combo's, and craft the best magic for the situation." align = 1 valign = 1 autowrap = true @@ -149,7 +149,7 @@ color = Color( 0.564706, 0.564706, 0.564706, 1 ) [node name="CanvasLayer" type="CanvasLayer" parent="."] [node name="Sprite" type="Sprite" parent="CanvasLayer"] -modulate = Color( 0, 0, 0, 1 ) +modulate = Color( 0, 0, 0, 0 ) texture = ExtResource( 7 ) centered = false @@ -167,7 +167,7 @@ percent_visible = 0.0 __meta__ = { "_edit_use_anchors_": false } -[connection signal="body_entered" from="Leap" to="Timer" method="_on_Leap_body_entered"] -[connection signal="body_entered" from="Leap" to="AnimationPlayer2" method="_on_Leap_body_entered"] [connection signal="body_entered" from="Leap" to="AnimationPlayer" method="_on_Leap_body_entered"] +[connection signal="body_entered" from="Leap" to="AnimationPlayer2" method="_on_Leap_body_entered"] +[connection signal="body_entered" from="Leap" to="Timer" method="_on_Leap_body_entered"] [connection signal="timeout" from="Timer" to="Timer" method="_on_Timer_timeout"] diff --git a/levels/Campaign/Level 2/Level_2.tscn b/levels/Campaign/Level 2/Level_2.tscn index e364fff..4fc03f6 100644 --- a/levels/Campaign/Level 2/Level_2.tscn +++ b/levels/Campaign/Level 2/Level_2.tscn @@ -19,7 +19,6 @@ extents = Vector2( 7, 39 ) [node name="Door" parent="." instance=ExtResource( 8 )] position = Vector2( 880, 64 ) next_scene = "res://levels/Campaign/Level 3/Level_3.tscn" -text = "Stage 3: Green Giants" [node name="door" type="Sprite" parent="."] position = Vector2( 16, 161 ) @@ -34,7 +33,7 @@ cell_size = Vector2( 16, 16 ) collision_layer = 2 collision_mask = 0 format = 1 -tile_data = PoolIntArray( -3, 0, 8, -2, 0, 10, -1, 0, 10, -65536, 0, 10, -65535, 0, 10, -65534, 0, 10, -65533, 0, 10, -65532, 0, 10, -65531, 0, 10, -65530, 0, 10, -65529, 0, 10, -65528, 0, 10, -65527, 0, 10, -65526, 0, 10, -65525, 0, 10, -65524, 0, 10, -65523, 0, 10, -65522, 0, 10, -65521, 0, 10, -65520, 0, 10, -65519, 0, 10, -65518, 0, 10, -65517, 0, 10, -65516, 0, 10, -65515, 0, 10, -65514, 0, 10, -65513, 0, 10, -65512, 0, 10, -65511, 0, 10, -65510, 0, 10, -65509, 0, 10, -65508, 0, 10, -65507, 0, 10, -65506, 0, 10, -65505, 0, 10, -65504, 0, 10, -65503, 0, 10, -65502, 0, 10, -65501, 0, 10, -65500, 0, 10, -65499, 0, 10, -65498, 0, 10, -65497, 0, 10, -65496, 0, 10, -65495, 0, 10, -65494, 0, 10, -65493, 0, 10, -65492, 0, 10, -65491, 0, 10, -65490, 0, 10, -65489, 0, 10, -65488, 0, 10, -65487, 0, 10, -65486, 0, 10, -65485, 0, 10, -65484, 0, 10, -65483, 0, 10, -65482, 0, 10, -65481, 0, 10, -65480, 0, 10, -65479, 0, 10, -65478, 0, 10, -65477, 0, 10, -65476, 0, 11, 65533, 0, 65544, 65534, 0, 131081, 65535, 0, 131081, 0, 0, 131081, 1, 0, 131081, 2, 0, 131081, 3, 0, 131081, 4, 0, 131081, 5, 0, 131081, 6, 0, 131081, 7, 0, 131081, 8, 0, 131081, 9, 0, 131081, 10, 0, 131081, 11, 0, 131081, 12, 0, 131081, 13, 0, 131081, 14, 0, 131081, 15, 0, 131081, 16, 0, 131081, 17, 0, 131081, 18, 0, 131081, 19, 0, 131081, 20, 0, 131081, 21, 0, 131081, 22, 0, 131081, 23, 0, 131081, 24, 0, 131081, 25, 0, 131081, 26, 0, 131081, 27, 0, 131081, 28, 0, 131081, 29, 0, 131081, 30, 0, 131081, 31, 0, 131081, 32, 0, 131081, 33, 0, 131081, 34, 0, 131081, 35, 0, 131081, 36, 0, 131081, 37, 0, 131081, 38, 0, 131081, 39, 0, 131081, 40, 0, 131081, 41, 0, 131081, 42, 0, 131081, 43, 0, 131081, 44, 0, 131081, 45, 0, 131081, 46, 0, 131081, 47, 0, 131081, 48, 0, 131081, 49, 0, 131081, 50, 0, 131081, 51, 0, 131081, 52, 0, 131081, 53, 0, 131081, 54, 0, 131081, 55, 0, 131081, 56, 0, 131081, 57, 0, 131081, 58, 0, 131081, 59, 0, 131081, 60, 0, 131083, 131069, 0, 65544, 131070, 0, 131081, 131071, 0, 131078, 65536, 0, 196617, 65537, 0, 196617, 65538, 0, 196617, 65539, 0, 196617, 65540, 0, 196617, 65541, 0, 196617, 65542, 0, 196617, 65543, 0, 196617, 65544, 0, 196617, 65545, 0, 196617, 65546, 0, 196617, 65547, 0, 196617, 65548, 0, 196617, 65549, 0, 196617, 65550, 0, 196617, 65551, 0, 196617, 65552, 0, 196617, 65553, 0, 196617, 65554, 0, 196617, 65555, 0, 196617, 65556, 0, 196617, 65557, 0, 196617, 65558, 0, 196617, 65559, 0, 196617, 65560, 0, 196617, 65561, 0, 196617, 65562, 0, 196617, 65563, 0, 196617, 65564, 0, 196617, 65565, 0, 196617, 65566, 0, 196617, 65567, 0, 196617, 65568, 0, 196617, 65569, 0, 196617, 65570, 0, 196617, 65571, 0, 196617, 65572, 0, 196617, 65573, 0, 196617, 65574, 0, 196617, 65575, 0, 196617, 65576, 0, 196617, 65577, 0, 196617, 65578, 0, 196617, 65579, 0, 196617, 65580, 0, 196617, 65581, 0, 196617, 65582, 0, 196617, 65583, 0, 196617, 65584, 0, 196617, 65585, 0, 196617, 65586, 0, 196617, 65587, 0, 196617, 65588, 0, 196617, 65589, 0, 196617, 65590, 0, 196617, 65591, 0, 196617, 65592, 0, 196617, 65593, 0, 196617, 65594, 0, 131077, 65595, 0, 131081, 65596, 0, 131083, 196605, 0, 65544, 196606, 0, 131081, 196607, 0, 131083, 131130, 0, 65544, 131131, 0, 131081, 131132, 0, 131083, 262141, 0, 65544, 262142, 0, 131081, 262143, 0, 131083, 196666, 0, 65544, 196667, 0, 131081, 196668, 0, 131083, 327677, 0, 65544, 327678, 0, 131081, 327679, 0, 131083, 262202, 0, 65544, 262203, 0, 131081, 262204, 0, 131083, 393213, 0, 65544, 393214, 0, 131081, 393215, 0, 131083, 327738, 0, 65544, 327739, 0, 131081, 327740, 0, 131083, 458749, 0, 65544, 458750, 0, 131081, 458751, 0, 131083, 393234, 0, 8, 393235, 0, 10, 393236, 0, 10, 393237, 0, 10, 393238, 0, 10, 393239, 0, 10, 393240, 0, 10, 393241, 0, 10, 393242, 0, 10, 393243, 0, 10, 393244, 0, 10, 393245, 0, 11, 393251, 0, 8, 393252, 0, 11, 393266, 0, 8, 393267, 0, 10, 393268, 0, 10, 393269, 0, 10, 393270, 0, 10, 393271, 0, 10, 393272, 0, 10, 393273, 0, 10, 393274, 0, 65541, 393275, 0, 131081, 393276, 0, 131083, 524285, 0, 65544, 524286, 0, 131081, 524287, 0, 131083, 458769, 0, 8, 458770, 0, 65541, 458771, 0, 131081, 458772, 0, 131081, 458773, 0, 131081, 458774, 0, 131081, 458775, 0, 131081, 458776, 0, 131081, 458777, 0, 131081, 458778, 0, 131081, 458779, 0, 131081, 458780, 0, 131081, 458781, 0, 131083, 458783, 0, 8, 458784, 0, 11, 458787, 0, 65544, 458788, 0, 131083, 458792, 0, 8, 458793, 0, 11, 458802, 0, 65544, 458803, 0, 131081, 458804, 0, 131081, 458805, 0, 131081, 458806, 0, 131081, 458807, 0, 131081, 458808, 0, 131078, 458809, 0, 196617, 458810, 0, 196617, 458811, 0, 196617, 458812, 0, 196619, 589821, 0, 65544, 589822, 0, 131081, 589823, 0, 131083, 524304, 0, 8, 524305, 0, 65541, 524306, 0, 131081, 524307, 0, 131081, 524308, 0, 131081, 524309, 0, 131081, 524310, 0, 131081, 524311, 0, 131081, 524312, 0, 131081, 524313, 0, 131081, 524314, 0, 131081, 524315, 0, 131081, 524316, 0, 131081, 524317, 0, 131083, 524319, 0, 65544, 524320, 0, 131083, 524323, 0, 65544, 524324, 0, 131083, 524328, 0, 65544, 524329, 0, 131083, 524334, 0, 8, 524335, 0, 11, 524338, 0, 65544, 524339, 0, 131081, 524340, 0, 131081, 524341, 0, 131081, 524342, 0, 131081, 524343, 0, 131078, 524344, 0, 196619, 655357, 0, 65544, 655358, 0, 131081, 655359, 0, 131083, 589839, 0, 8, 589840, 0, 65541, 589841, 0, 131081, 589842, 0, 131081, 589843, 0, 131081, 589844, 0, 131081, 589845, 0, 131081, 589846, 0, 131081, 589847, 0, 131081, 589848, 0, 131081, 589849, 0, 131081, 589850, 0, 131081, 589851, 0, 131081, 589852, 0, 131081, 589853, 0, 65542, 589854, 0, 10, 589855, 0, 65541, 589856, 0, 65542, 589857, 0, 10, 589858, 0, 10, 589859, 0, 65541, 589860, 0, 65542, 589861, 0, 10, 589862, 0, 10, 589863, 0, 10, 589864, 0, 65541, 589865, 0, 131083, 589870, 0, 65544, 589871, 0, 131083, 589874, 0, 65544, 589875, 0, 131081, 589876, 0, 131081, 589877, 0, 131081, 589878, 0, 131078, 589879, 0, 196619, 720893, 0, 65544, 720894, 0, 131081, 720895, 0, 131083, 655374, 0, 8, 655375, 0, 65541, 655376, 0, 131081, 655377, 0, 131081, 655378, 0, 131081, 655379, 0, 131081, 655380, 0, 131081, 655381, 0, 131081, 655382, 0, 131081, 655383, 0, 131081, 655384, 0, 131081, 655385, 0, 131081, 655386, 0, 131081, 655387, 0, 131081, 655388, 0, 131081, 655389, 0, 131081, 655390, 0, 131081, 655391, 0, 131081, 655392, 0, 131081, 655393, 0, 131081, 655394, 0, 131081, 655395, 0, 131081, 655396, 0, 131081, 655397, 0, 131081, 655398, 0, 131081, 655399, 0, 131081, 655400, 0, 131081, 655401, 0, 65542, 655402, 0, 10, 655403, 0, 10, 655404, 0, 10, 655405, 0, 10, 655406, 0, 65541, 655407, 0, 65542, 655408, 0, 10, 655409, 0, 10, 655410, 0, 65541, 655411, 0, 131081, 655412, 0, 131081, 655413, 0, 131078, 655414, 0, 196619, 786429, 0, 65544, 786430, 0, 131081, 786431, 0, 65542, 720896, 0, 10, 720897, 0, 10, 720898, 0, 10, 720899, 0, 10, 720900, 0, 10, 720901, 0, 10, 720902, 0, 10, 720903, 0, 10, 720904, 0, 10, 720905, 0, 10, 720906, 0, 10, 720907, 0, 10, 720908, 0, 10, 720909, 0, 10, 720910, 0, 65541, 720911, 0, 131081, 720912, 0, 131081, 720913, 0, 131081, 720914, 0, 131081, 720915, 0, 131081, 720916, 0, 131081, 720917, 0, 131081, 720918, 0, 131081, 720919, 0, 131081, 720920, 0, 131081, 720921, 0, 131081, 720922, 0, 131081, 720923, 0, 131081, 720924, 0, 131081, 720925, 0, 131081, 720926, 0, 131081, 720927, 0, 131081, 720928, 0, 131081, 720929, 0, 131081, 720930, 0, 131081, 720931, 0, 131081, 720932, 0, 131081, 720933, 0, 131081, 720934, 0, 131081, 720935, 0, 131081, 720936, 0, 131081, 720937, 0, 131081, 720938, 0, 131081, 720939, 0, 131081, 720940, 0, 131081, 720941, 0, 131081, 720942, 0, 131081, 720943, 0, 131081, 720944, 0, 131081, 720945, 0, 131081, 720946, 0, 131081, 720947, 0, 131081, 720948, 0, 131078, 720949, 0, 196619, 851965, 0, 65544, 851966, 0, 131081, 851967, 0, 131081, 786432, 0, 131081, 786433, 0, 131081, 786434, 0, 131081, 786435, 0, 131081, 786436, 0, 131081, 786437, 0, 131081, 786438, 0, 131081, 786439, 0, 131081, 786440, 0, 131081, 786441, 0, 131081, 786442, 0, 131081, 786443, 0, 131081, 786444, 0, 131081, 786445, 0, 131081, 786446, 0, 131081, 786447, 0, 131081, 786448, 0, 131081, 786449, 0, 131081, 786450, 0, 131081, 786451, 0, 131081, 786452, 0, 131081, 786453, 0, 131081, 786454, 0, 131081, 786455, 0, 131081, 786456, 0, 131081, 786457, 0, 131081, 786458, 0, 131081, 786459, 0, 131081, 786460, 0, 131081, 786461, 0, 131081, 786462, 0, 131081, 786463, 0, 131081, 786464, 0, 131081, 786465, 0, 131081, 786466, 0, 131081, 786467, 0, 131081, 786468, 0, 131081, 786469, 0, 131081, 786470, 0, 131081, 786471, 0, 131081, 786472, 0, 131081, 786473, 0, 131081, 786474, 0, 131081, 786475, 0, 131081, 786476, 0, 131081, 786477, 0, 131081, 786478, 0, 131081, 786479, 0, 131081, 786480, 0, 131081, 786481, 0, 131081, 786482, 0, 131081, 786483, 0, 131078, 786484, 0, 196619, 917501, 0, 196616, 917502, 0, 196617, 917503, 0, 196617, 851968, 0, 196617, 851969, 0, 196617, 851970, 0, 196617, 851971, 0, 196617, 851972, 0, 196617, 851973, 0, 196617, 851974, 0, 196617, 851975, 0, 196617, 851976, 0, 196617, 851977, 0, 196617, 851978, 0, 196617, 851979, 0, 196617, 851980, 0, 196617, 851981, 0, 196617, 851982, 0, 196617, 851983, 0, 196617, 851984, 0, 196617, 851985, 0, 196617, 851986, 0, 196617, 851987, 0, 196617, 851988, 0, 196617, 851989, 0, 196617, 851990, 0, 196617, 851991, 0, 196617, 851992, 0, 196617, 851993, 0, 196617, 851994, 0, 196617, 851995, 0, 196617, 851996, 0, 196617, 851997, 0, 196617, 851998, 0, 196617, 851999, 0, 196617, 852000, 0, 196617, 852001, 0, 196617, 852002, 0, 196617, 852003, 0, 196617, 852004, 0, 196617, 852005, 0, 196617, 852006, 0, 196617, 852007, 0, 196617, 852008, 0, 196617, 852009, 0, 196617, 852010, 0, 196617, 852011, 0, 196617, 852012, 0, 196617, 852013, 0, 196617, 852014, 0, 196617, 852015, 0, 196617, 852016, 0, 196617, 852017, 0, 196617, 852018, 0, 196617, 852019, 0, 196619 ) +tile_data = PoolIntArray( -3, 0, 8, -2, 0, 10, -1, 0, 10, -65536, 0, 10, -65535, 0, 10, -65534, 0, 10, -65533, 0, 10, -65532, 0, 10, -65531, 0, 10, -65530, 0, 10, -65529, 0, 10, -65528, 0, 10, -65527, 0, 10, -65526, 0, 10, -65525, 0, 10, -65524, 0, 10, -65523, 0, 10, -65522, 0, 10, -65521, 0, 10, -65520, 0, 10, -65519, 0, 10, -65518, 0, 10, -65517, 0, 10, -65516, 0, 10, -65515, 0, 10, -65514, 0, 10, -65513, 0, 10, -65512, 0, 10, -65511, 0, 10, -65510, 0, 10, -65509, 0, 10, -65508, 0, 10, -65507, 0, 10, -65506, 0, 10, -65505, 0, 10, -65504, 0, 10, -65503, 0, 10, -65502, 0, 10, -65501, 0, 10, -65500, 0, 10, -65499, 0, 10, -65498, 0, 10, -65497, 0, 10, -65496, 0, 10, -65495, 0, 10, -65494, 0, 10, -65493, 0, 10, -65492, 0, 10, -65491, 0, 10, -65490, 0, 10, -65489, 0, 10, -65488, 0, 10, -65487, 0, 10, -65486, 0, 10, -65485, 0, 10, -65484, 0, 10, -65483, 0, 10, -65482, 0, 10, -65481, 0, 10, -65480, 0, 10, -65479, 0, 10, -65478, 0, 10, -65477, 0, 10, -65476, 0, 11, 65533, 0, 65544, 65534, 0, 131081, 65535, 0, 131081, 0, 0, 131081, 1, 0, 131081, 2, 0, 131081, 3, 0, 131081, 4, 0, 131081, 5, 0, 131081, 6, 0, 131081, 7, 0, 131081, 8, 0, 131081, 9, 0, 131081, 10, 0, 131081, 11, 0, 131081, 12, 0, 131081, 13, 0, 131081, 14, 0, 131081, 15, 0, 131081, 16, 0, 131081, 17, 0, 131081, 18, 0, 131081, 19, 0, 131081, 20, 0, 131081, 21, 0, 131081, 22, 0, 131081, 23, 0, 131081, 24, 0, 131081, 25, 0, 131081, 26, 0, 131081, 27, 0, 131081, 28, 0, 131081, 29, 0, 131081, 30, 0, 131081, 31, 0, 131081, 32, 0, 131081, 33, 0, 131081, 34, 0, 131081, 35, 0, 131081, 36, 0, 131081, 37, 0, 131081, 38, 0, 131081, 39, 0, 131081, 40, 0, 131081, 41, 0, 131081, 42, 0, 131081, 43, 0, 131081, 44, 0, 131081, 45, 0, 131081, 46, 0, 131081, 47, 0, 131081, 48, 0, 131081, 49, 0, 131081, 50, 0, 131081, 51, 0, 131081, 52, 0, 131081, 53, 0, 131081, 54, 0, 131081, 55, 0, 131081, 56, 0, 131081, 57, 0, 131081, 58, 0, 131081, 59, 0, 131081, 60, 0, 131083, 131069, 0, 65544, 131070, 0, 131081, 131071, 0, 131078, 65536, 0, 196617, 65537, 0, 196617, 65538, 0, 196617, 65539, 0, 196617, 65540, 0, 196617, 65541, 0, 196617, 65542, 0, 196617, 65543, 0, 196617, 65544, 0, 196617, 65545, 0, 196617, 65546, 0, 196617, 65547, 0, 196617, 65548, 0, 196617, 65549, 0, 196617, 65550, 0, 196617, 65551, 0, 196617, 65552, 0, 196617, 65553, 0, 196617, 65554, 0, 196617, 65555, 0, 196617, 65556, 0, 196617, 65557, 0, 196617, 65558, 0, 196617, 65559, 0, 196617, 65560, 0, 196617, 65561, 0, 196617, 65562, 0, 196617, 65563, 0, 196617, 65564, 0, 196617, 65565, 0, 196617, 65566, 0, 196617, 65567, 0, 196617, 65568, 0, 196617, 65569, 0, 196617, 65570, 0, 196617, 65571, 0, 196617, 65572, 0, 196617, 65573, 0, 196617, 65574, 0, 196617, 65575, 0, 196617, 65576, 0, 196617, 65577, 0, 196617, 65578, 0, 196617, 65579, 0, 196617, 65580, 0, 196617, 65581, 0, 196617, 65582, 0, 196617, 65583, 0, 196617, 65584, 0, 196617, 65585, 0, 196617, 65586, 0, 196617, 65587, 0, 196617, 65588, 0, 196617, 65589, 0, 196617, 65590, 0, 196617, 65591, 0, 196617, 65592, 0, 196617, 65593, 0, 196617, 65594, 0, 131077, 65595, 0, 131081, 65596, 0, 131083, 196605, 0, 65544, 196606, 0, 131081, 196607, 0, 131083, 131130, 0, 65544, 131131, 0, 131081, 131132, 0, 131083, 262141, 0, 65544, 262142, 0, 131081, 262143, 0, 131083, 196666, 0, 65544, 196667, 0, 131081, 196668, 0, 131083, 327677, 0, 65544, 327678, 0, 131081, 327679, 0, 131083, 262202, 0, 65544, 262203, 0, 131081, 262204, 0, 131083, 393213, 0, 65544, 393214, 0, 131081, 393215, 0, 131083, 327738, 0, 65544, 327739, 0, 131081, 327740, 0, 131083, 458749, 0, 65544, 458750, 0, 131081, 458751, 0, 131083, 393234, 0, 8, 393235, 0, 10, 393236, 0, 10, 393237, 0, 10, 393238, 0, 10, 393239, 0, 10, 393240, 0, 10, 393241, 0, 10, 393242, 0, 10, 393243, 0, 10, 393244, 0, 10, 393245, 0, 11, 393251, 0, 8, 393252, 0, 11, 393266, 0, 8, 393267, 0, 10, 393268, 0, 10, 393269, 0, 10, 393270, 0, 10, 393271, 0, 10, 393272, 0, 10, 393273, 0, 10, 393274, 0, 65541, 393275, 0, 131081, 393276, 0, 131083, 524285, 0, 65544, 524286, 0, 131081, 524287, 0, 131083, 458769, 0, 8, 458770, 0, 65541, 458771, 0, 131081, 458772, 0, 131081, 458773, 0, 131081, 458774, 0, 131081, 458775, 0, 131081, 458776, 0, 131081, 458777, 0, 131081, 458778, 0, 131081, 458779, 0, 131081, 458780, 0, 131081, 458781, 0, 131083, 458783, 0, 8, 458784, 0, 11, 458787, 0, 65544, 458788, 0, 131083, 458792, 0, 8, 458793, 0, 11, 458802, 0, 65544, 458803, 0, 131081, 458804, 0, 131081, 458805, 0, 131081, 458806, 0, 131081, 458807, 0, 131081, 458808, 0, 131081, 458809, 0, 131081, 458810, 0, 131081, 458811, 0, 131081, 458812, 0, 131083, 589821, 0, 65544, 589822, 0, 131081, 589823, 0, 131083, 524304, 0, 8, 524305, 0, 65541, 524306, 0, 131081, 524307, 0, 131081, 524308, 0, 131081, 524309, 0, 131081, 524310, 0, 131081, 524311, 0, 131081, 524312, 0, 131081, 524313, 0, 131081, 524314, 0, 131081, 524315, 0, 131081, 524316, 0, 131081, 524317, 0, 131083, 524319, 0, 65544, 524320, 0, 131083, 524323, 0, 65544, 524324, 0, 131083, 524328, 0, 65544, 524329, 0, 131083, 524334, 0, 8, 524335, 0, 11, 524338, 0, 65544, 524339, 0, 131081, 524340, 0, 131081, 524341, 0, 131081, 524342, 0, 131081, 524343, 0, 131081, 524344, 0, 131081, 524345, 0, 131081, 524346, 0, 131081, 524347, 0, 131081, 524348, 0, 131083, 655357, 0, 65544, 655358, 0, 131081, 655359, 0, 131083, 589839, 0, 8, 589840, 0, 65541, 589841, 0, 131081, 589842, 0, 131081, 589843, 0, 131081, 589844, 0, 131081, 589845, 0, 131081, 589846, 0, 131081, 589847, 0, 131081, 589848, 0, 131081, 589849, 0, 131081, 589850, 0, 131081, 589851, 0, 131081, 589852, 0, 131081, 589853, 0, 65542, 589854, 0, 10, 589855, 0, 65541, 589856, 0, 65542, 589857, 0, 10, 589858, 0, 10, 589859, 0, 65541, 589860, 0, 65542, 589861, 0, 10, 589862, 0, 10, 589863, 0, 10, 589864, 0, 65541, 589865, 0, 131083, 589870, 0, 65544, 589871, 0, 131083, 589874, 0, 65544, 589875, 0, 131081, 589876, 0, 131081, 589877, 0, 131081, 589878, 0, 131081, 589879, 0, 131081, 589880, 0, 131081, 589881, 0, 131081, 589882, 0, 131081, 589883, 0, 131081, 589884, 0, 131083, 720893, 0, 65544, 720894, 0, 131081, 720895, 0, 131083, 655374, 0, 8, 655375, 0, 65541, 655376, 0, 131081, 655377, 0, 131081, 655378, 0, 131081, 655379, 0, 131081, 655380, 0, 131081, 655381, 0, 131081, 655382, 0, 131081, 655383, 0, 131081, 655384, 0, 131081, 655385, 0, 131081, 655386, 0, 131081, 655387, 0, 131081, 655388, 0, 131081, 655389, 0, 131081, 655390, 0, 131081, 655391, 0, 131081, 655392, 0, 131081, 655393, 0, 131081, 655394, 0, 131081, 655395, 0, 131081, 655396, 0, 131081, 655397, 0, 131081, 655398, 0, 131081, 655399, 0, 131081, 655400, 0, 131081, 655401, 0, 65542, 655402, 0, 10, 655403, 0, 10, 655404, 0, 10, 655405, 0, 10, 655406, 0, 65541, 655407, 0, 65542, 655408, 0, 10, 655409, 0, 10, 655410, 0, 65541, 655411, 0, 131081, 655412, 0, 131081, 655413, 0, 131081, 655414, 0, 131081, 655415, 0, 131081, 655416, 0, 131081, 655417, 0, 131081, 655418, 0, 131081, 655419, 0, 131081, 655420, 0, 131083, 786429, 0, 65544, 786430, 0, 131081, 786431, 0, 65542, 720896, 0, 10, 720897, 0, 10, 720898, 0, 10, 720899, 0, 10, 720900, 0, 10, 720901, 0, 10, 720902, 0, 10, 720903, 0, 10, 720904, 0, 10, 720905, 0, 10, 720906, 0, 10, 720907, 0, 10, 720908, 0, 10, 720909, 0, 10, 720910, 0, 65541, 720911, 0, 131081, 720912, 0, 131081, 720913, 0, 131081, 720914, 0, 131081, 720915, 0, 131081, 720916, 0, 131081, 720917, 0, 131081, 720918, 0, 131081, 720919, 0, 131081, 720920, 0, 131081, 720921, 0, 131081, 720922, 0, 131081, 720923, 0, 131081, 720924, 0, 131081, 720925, 0, 131081, 720926, 0, 131081, 720927, 0, 131081, 720928, 0, 131081, 720929, 0, 131081, 720930, 0, 131081, 720931, 0, 131081, 720932, 0, 131081, 720933, 0, 131081, 720934, 0, 131081, 720935, 0, 131081, 720936, 0, 131081, 720937, 0, 131081, 720938, 0, 131081, 720939, 0, 131081, 720940, 0, 131081, 720941, 0, 131081, 720942, 0, 131081, 720943, 0, 131081, 720944, 0, 131081, 720945, 0, 131081, 720946, 0, 131081, 720947, 0, 131081, 720948, 0, 131081, 720949, 0, 131081, 720950, 0, 131081, 720951, 0, 131081, 720952, 0, 131081, 720953, 0, 131081, 720954, 0, 131081, 720955, 0, 131081, 720956, 0, 131083, 851965, 0, 65544, 851966, 0, 131081, 851967, 0, 131081, 786432, 0, 131081, 786433, 0, 131081, 786434, 0, 131081, 786435, 0, 131081, 786436, 0, 131081, 786437, 0, 131081, 786438, 0, 131081, 786439, 0, 131081, 786440, 0, 131081, 786441, 0, 131081, 786442, 0, 131081, 786443, 0, 131081, 786444, 0, 131081, 786445, 0, 131081, 786446, 0, 131081, 786447, 0, 131081, 786448, 0, 131081, 786449, 0, 131081, 786450, 0, 131081, 786451, 0, 131081, 786452, 0, 131081, 786453, 0, 131081, 786454, 0, 131081, 786455, 0, 131081, 786456, 0, 131081, 786457, 0, 131081, 786458, 0, 131081, 786459, 0, 131081, 786460, 0, 131081, 786461, 0, 131081, 786462, 0, 131081, 786463, 0, 131081, 786464, 0, 131081, 786465, 0, 131081, 786466, 0, 131081, 786467, 0, 131081, 786468, 0, 131081, 786469, 0, 131081, 786470, 0, 131081, 786471, 0, 131081, 786472, 0, 131081, 786473, 0, 131081, 786474, 0, 131081, 786475, 0, 131081, 786476, 0, 131081, 786477, 0, 131081, 786478, 0, 131081, 786479, 0, 131081, 786480, 0, 131081, 786481, 0, 131081, 786482, 0, 131081, 786483, 0, 131081, 786484, 0, 131081, 786485, 0, 131081, 786486, 0, 131081, 786487, 0, 131081, 786488, 0, 131081, 786489, 0, 131081, 786490, 0, 131081, 786491, 0, 131081, 786492, 0, 131083, 917501, 0, 196616, 917502, 0, 196617, 917503, 0, 196617, 851968, 0, 196617, 851969, 0, 196617, 851970, 0, 196617, 851971, 0, 196617, 851972, 0, 196617, 851973, 0, 196617, 851974, 0, 196617, 851975, 0, 196617, 851976, 0, 196617, 851977, 0, 196617, 851978, 0, 196617, 851979, 0, 196617, 851980, 0, 196617, 851981, 0, 196617, 851982, 0, 196617, 851983, 0, 196617, 851984, 0, 196617, 851985, 0, 196617, 851986, 0, 196617, 851987, 0, 196617, 851988, 0, 196617, 851989, 0, 196617, 851990, 0, 196617, 851991, 0, 196617, 851992, 0, 196617, 851993, 0, 196617, 851994, 0, 196617, 851995, 0, 196617, 851996, 0, 196617, 851997, 0, 196617, 851998, 0, 196617, 851999, 0, 196617, 852000, 0, 196617, 852001, 0, 196617, 852002, 0, 196617, 852003, 0, 196617, 852004, 0, 196617, 852005, 0, 196617, 852006, 0, 196617, 852007, 0, 196617, 852008, 0, 196617, 852009, 0, 196617, 852010, 0, 196617, 852011, 0, 196617, 852012, 0, 196617, 852013, 0, 196617, 852014, 0, 196617, 852015, 0, 196617, 852016, 0, 196617, 852017, 0, 196617, 852018, 0, 196617, 852019, 0, 196617, 852020, 0, 196617, 852021, 0, 196617, 852022, 0, 196617, 852023, 0, 196617, 852024, 0, 196617, 852025, 0, 196617, 852026, 0, 196617, 852027, 0, 196617, 852028, 0, 196619 ) [node name="Node" type="Node" parent="."] diff --git a/levels/Campaign/Level 3/Level_3.tscn b/levels/Campaign/Level 3/Level_3.tscn index 11be9b5..3cc386d 100644 --- a/levels/Campaign/Level 3/Level_3.tscn +++ b/levels/Campaign/Level 3/Level_3.tscn @@ -1,4 +1,4 @@ -[gd_scene load_steps=16 format=2] +[gd_scene load_steps=15 format=2] [ext_resource path="res://Player/Player.tscn" type="PackedScene" id=1] [ext_resource path="res://meta/DungeonTilemap.tres" type="TileSet" id=2] @@ -19,9 +19,6 @@ extents = Vector2( 152, 18 ) [sub_resource type="RectangleShape2D" id=2] extents = Vector2( 10, 45 ) -[sub_resource type="RectangleShape2D" id=3] -extents = Vector2( 10, 55 ) - [node name="Level 3" type="Node"] [node name="Spikes" type="Node" parent="."] @@ -57,6 +54,9 @@ position = Vector2( 1136, 48 ) [node name="torch3" parent="Torches" instance=ExtResource( 9 )] position = Vector2( 672, 48 ) +[node name="torch4" parent="Torches" instance=ExtResource( 9 )] +position = Vector2( 504.192, 139.481 ) + [node name="torch5" parent="Torches" instance=ExtResource( 9 )] position = Vector2( 896, 48 ) @@ -80,7 +80,7 @@ cell_size = Vector2( 16, 16 ) collision_layer = 2 collision_mask = 0 format = 1 -tile_data = PoolIntArray( -131050, 0, 8, -131049, 0, 10, -131048, 0, 10, -131047, 0, 10, -131046, 0, 10, -131045, 0, 10, -131044, 0, 10, -131043, 0, 10, -131042, 0, 10, -131041, 0, 10, -131040, 0, 10, -131039, 0, 10, -131038, 0, 10, -131037, 0, 10, -131036, 0, 10, -131035, 0, 10, -131034, 0, 10, -131033, 0, 10, -131032, 0, 10, -131031, 0, 10, -131030, 0, 10, -131029, 0, 10, -131028, 0, 10, -131027, 0, 10, -131026, 0, 10, -131025, 0, 11, -131011, 0, 8, -131010, 0, 10, -131009, 0, 10, -131008, 0, 10, -131007, 0, 10, -131006, 0, 10, -131005, 0, 10, -131004, 0, 10, -131003, 0, 10, -131002, 0, 10, -131001, 0, 10, -131000, 0, 10, -130999, 0, 10, -130998, 0, 11, -65514, 0, 65544, -65513, 0, 131081, -65512, 0, 131081, -65511, 0, 131081, -65510, 0, 131081, -65509, 0, 131081, -65508, 0, 131081, -65507, 0, 131081, -65506, 0, 131081, -65505, 0, 131081, -65504, 0, 131081, -65503, 0, 131081, -65502, 0, 131081, -65501, 0, 131081, -65500, 0, 131081, -65499, 0, 131081, -65498, 0, 131081, -65497, 0, 131081, -65496, 0, 131081, -65495, 0, 131081, -65494, 0, 131081, -65493, 0, 131081, -65492, 0, 131081, -65491, 0, 131081, -65490, 0, 131081, -65489, 0, 131083, -65475, 0, 65544, -65474, 0, 131081, -65473, 0, 131081, -65472, 0, 131081, -65471, 0, 131081, -65470, 0, 131081, -65469, 0, 131081, -65468, 0, 131081, -65467, 0, 131081, -65466, 0, 131081, -65465, 0, 131081, -65464, 0, 131081, -65463, 0, 131081, -65462, 0, 131083, 22, 0, 65544, 23, 0, 131081, 24, 0, 131078, 25, 0, 196617, 26, 0, 196617, 27, 0, 196617, 28, 0, 196617, 29, 0, 196617, 30, 0, 196617, 31, 0, 196617, 32, 0, 196617, 33, 0, 196617, 34, 0, 196617, 35, 0, 196617, 36, 0, 196617, 37, 0, 196617, 38, 0, 196617, 39, 0, 196617, 40, 0, 196617, 41, 0, 196617, 42, 0, 196617, 43, 0, 196617, 44, 0, 196617, 45, 0, 196617, 46, 0, 196617, 47, 0, 196619, 61, 0, 196616, 62, 0, 196617, 63, 0, 196617, 64, 0, 196617, 65, 0, 196617, 66, 0, 196617, 67, 0, 196617, 68, 0, 196617, 69, 0, 196617, 70, 0, 196617, 71, 0, 196617, 72, 0, 131077, 73, 0, 131081, 74, 0, 131083, 65558, 0, 65544, 65559, 0, 131081, 65560, 0, 131083, 65608, 0, 65544, 65609, 0, 131081, 65610, 0, 131083, 131094, 0, 65544, 131095, 0, 131081, 131096, 0, 131083, 131144, 0, 65544, 131145, 0, 131081, 131146, 0, 131083, 196630, 0, 65544, 196631, 0, 131081, 196632, 0, 131083, 196680, 0, 65544, 196681, 0, 131081, 196682, 0, 131083, 262166, 0, 65544, 262167, 0, 131081, 262168, 0, 131083, 262216, 0, 65544, 262217, 0, 131081, 262218, 0, 131083, 327702, 0, 65544, 327703, 0, 131081, 327704, 0, 131083, 327743, 0, 8, 327744, 0, 10, 327745, 0, 10, 327746, 0, 10, 327747, 0, 10, 327748, 0, 10, 327749, 0, 10, 327750, 0, 10, 327751, 0, 10, 327752, 0, 65541, 327753, 0, 131081, 327754, 0, 131083, 393238, 0, 65544, 393239, 0, 131081, 393240, 0, 65547, 393241, 0, 196610, 393242, 0, 196610, 393243, 0, 196611, 393279, 0, 65544, 393280, 0, 131081, 393281, 0, 131081, 393282, 0, 131081, 393283, 0, 131081, 393284, 0, 131081, 393285, 0, 131081, 393286, 0, 131081, 393287, 0, 131081, 393288, 0, 131081, 393289, 0, 131081, 393290, 0, 131083, 458774, 0, 65544, 458775, 0, 131081, 458776, 0, 131083, 458815, 0, 65544, 458816, 0, 131081, 458817, 0, 131081, 458818, 0, 131081, 458819, 0, 131081, 458820, 0, 131081, 458821, 0, 131081, 458822, 0, 131081, 458823, 0, 131081, 458824, 0, 131081, 458825, 0, 131081, 458826, 0, 131083, 524310, 0, 65544, 524311, 0, 131081, 524312, 0, 131083, 524331, 0, 8, 524332, 0, 10, 524333, 0, 11, 524351, 0, 65544, 524352, 0, 131081, 524353, 0, 131081, 524354, 0, 131081, 524355, 0, 131081, 524356, 0, 131081, 524357, 0, 131081, 524358, 0, 131081, 524359, 0, 131081, 524360, 0, 131081, 524361, 0, 131081, 524362, 0, 131083, 589846, 0, 65544, 589847, 0, 131081, 589848, 0, 131083, 589864, 0, 8, 589865, 0, 10, 589866, 0, 10, 589867, 0, 65541, 589868, 0, 131081, 589869, 0, 131083, 589887, 0, 65544, 589888, 0, 131081, 589889, 0, 131081, 589890, 0, 131081, 589891, 0, 131081, 589892, 0, 131081, 589893, 0, 131081, 589894, 0, 131081, 589895, 0, 131081, 589896, 0, 131081, 589897, 0, 131081, 589898, 0, 131083, 655382, 0, 65544, 655383, 0, 131081, 655384, 0, 131083, 655397, 0, 8, 655398, 0, 10, 655399, 0, 10, 655400, 0, 65541, 655401, 0, 131081, 655402, 0, 131081, 655403, 0, 131081, 655404, 0, 131081, 655405, 0, 131083, 655423, 0, 65544, 655424, 0, 131081, 655425, 0, 131081, 655426, 0, 131081, 655427, 0, 131081, 655428, 0, 131081, 655429, 0, 131081, 655430, 0, 131081, 655431, 0, 131081, 655432, 0, 131081, 655433, 0, 131081, 655434, 0, 131083, 720918, 0, 65544, 720919, 0, 131081, 720920, 0, 131083, 720930, 0, 8, 720931, 0, 10, 720932, 0, 10, 720933, 0, 65541, 720934, 0, 131081, 720935, 0, 131081, 720936, 0, 131081, 720937, 0, 131081, 720938, 0, 131081, 720939, 0, 131081, 720940, 0, 131081, 720941, 0, 131083, 720959, 0, 65544, 720960, 0, 131081, 720961, 0, 131081, 720962, 0, 131081, 720963, 0, 131081, 720964, 0, 131081, 720965, 0, 131081, 720966, 0, 131081, 720967, 0, 131081, 720968, 0, 131081, 720969, 0, 131081, 720970, 0, 131083, 786454, 0, 65544, 786455, 0, 131081, 786456, 0, 131083, 786463, 0, 8, 786464, 0, 10, 786465, 0, 10, 786466, 0, 65541, 786467, 0, 131081, 786468, 0, 131081, 786469, 0, 131081, 786470, 0, 131081, 786471, 0, 131081, 786472, 0, 131081, 786473, 0, 131081, 786474, 0, 131081, 786475, 0, 131081, 786476, 0, 131081, 786477, 0, 131083, 786495, 0, 65544, 786496, 0, 131081, 786497, 0, 131081, 786498, 0, 131081, 786499, 0, 131081, 786500, 0, 131081, 786501, 0, 131081, 786502, 0, 131081, 786503, 0, 131081, 786504, 0, 131081, 786505, 0, 131081, 786506, 0, 131083, 851990, 0, 65544, 851991, 0, 131081, 851992, 0, 65542, 851993, 0, 10, 851994, 0, 10, 851995, 0, 10, 851996, 0, 10, 851997, 0, 10, 851998, 0, 10, 851999, 0, 65541, 852000, 0, 131081, 852001, 0, 131081, 852002, 0, 131081, 852003, 0, 131081, 852004, 0, 131081, 852005, 0, 131081, 852006, 0, 131081, 852007, 0, 131081, 852008, 0, 131081, 852009, 0, 131081, 852010, 0, 131081, 852011, 0, 131081, 852012, 0, 131081, 852013, 0, 131083, 852031, 0, 65544, 852032, 0, 131081, 852033, 0, 131081, 852034, 0, 131081, 852035, 0, 131081, 852036, 0, 131081, 852037, 0, 131081, 852038, 0, 131081, 852039, 0, 131081, 852040, 0, 131081, 852041, 0, 131081, 852042, 0, 131083, 917526, 0, 65544, 917527, 0, 131081, 917528, 0, 131081, 917529, 0, 131081, 917530, 0, 131081, 917531, 0, 131081, 917532, 0, 131081, 917533, 0, 131081, 917534, 0, 131081, 917535, 0, 131081, 917536, 0, 131081, 917537, 0, 131081, 917538, 0, 131081, 917539, 0, 131081, 917540, 0, 131081, 917541, 0, 131081, 917542, 0, 131081, 917543, 0, 131081, 917544, 0, 131081, 917545, 0, 131081, 917546, 0, 131081, 917547, 0, 131081, 917548, 0, 131081, 917549, 0, 65542, 917550, 0, 10, 917551, 0, 10, 917552, 0, 10, 917553, 0, 10, 917554, 0, 10, 917555, 0, 10, 917556, 0, 10, 917557, 0, 10, 917558, 0, 10, 917559, 0, 10, 917560, 0, 10, 917561, 0, 10, 917562, 0, 10, 917563, 0, 10, 917564, 0, 10, 917565, 0, 10, 917566, 0, 10, 917567, 0, 65541, 917568, 0, 131081, 917569, 0, 131081, 917570, 0, 131081, 917571, 0, 131081, 917572, 0, 131081, 917573, 0, 131081, 917574, 0, 131081, 917575, 0, 131081, 917576, 0, 131081, 917577, 0, 131081, 917578, 0, 131083, 983062, 0, 196616, 983063, 0, 196617, 983064, 0, 196617, 983065, 0, 196617, 983066, 0, 196617, 983067, 0, 196617, 983068, 0, 196617, 983069, 0, 196617, 983070, 0, 196617, 983071, 0, 196617, 983072, 0, 196617, 983073, 0, 196617, 983074, 0, 196617, 983075, 0, 196617, 983076, 0, 196617, 983077, 0, 196617, 983078, 0, 196617, 983079, 0, 196617, 983080, 0, 196617, 983081, 0, 196617, 983082, 0, 196617, 983083, 0, 196617, 983084, 0, 196617, 983085, 0, 196617, 983086, 0, 196617, 983087, 0, 196617, 983088, 0, 196617, 983089, 0, 196617, 983090, 0, 196617, 983091, 0, 196617, 983092, 0, 196617, 983093, 0, 196617, 983094, 0, 196617, 983095, 0, 196617, 983096, 0, 196617, 983097, 0, 196617, 983098, 0, 196617, 983099, 0, 196617, 983100, 0, 196617, 983101, 0, 196617, 983102, 0, 196617, 983103, 0, 196617, 983104, 0, 196617, 983105, 0, 196617, 983106, 0, 196617, 983107, 0, 196617, 983108, 0, 196617, 983109, 0, 196617, 983110, 0, 196617, 983111, 0, 196617, 983112, 0, 196617, 983113, 0, 196617, 983114, 0, 196619 ) +tile_data = PoolIntArray( -131050, 0, 8, -131049, 0, 10, -131048, 0, 10, -131047, 0, 10, -131046, 0, 10, -131045, 0, 10, -131044, 0, 10, -131043, 0, 10, -131042, 0, 10, -131041, 0, 10, -131040, 0, 10, -131039, 0, 10, -131038, 0, 10, -131037, 0, 10, -131036, 0, 10, -131035, 0, 10, -131034, 0, 10, -131033, 0, 10, -131032, 0, 10, -131031, 0, 10, -131030, 0, 10, -131029, 0, 10, -131028, 0, 10, -131027, 0, 10, -131026, 0, 10, -131025, 0, 11, -131011, 0, 8, -131010, 0, 10, -131009, 0, 10, -131008, 0, 10, -131007, 0, 10, -131006, 0, 10, -131005, 0, 10, -131004, 0, 10, -131003, 0, 10, -131002, 0, 10, -131001, 0, 10, -131000, 0, 10, -130999, 0, 10, -130998, 0, 11, -65514, 0, 65544, -65513, 0, 131081, -65512, 0, 131081, -65511, 0, 131081, -65510, 0, 131081, -65509, 0, 131081, -65508, 0, 131081, -65507, 0, 131081, -65506, 0, 131081, -65505, 0, 131081, -65504, 0, 131081, -65503, 0, 131081, -65502, 0, 131081, -65501, 0, 131081, -65500, 0, 131081, -65499, 0, 131081, -65498, 0, 131081, -65497, 0, 131081, -65496, 0, 131081, -65495, 0, 131081, -65494, 0, 131081, -65493, 0, 131081, -65492, 0, 131081, -65491, 0, 131081, -65490, 0, 131081, -65489, 0, 131083, -65475, 0, 65544, -65474, 0, 131081, -65473, 0, 131081, -65472, 0, 131081, -65471, 0, 131081, -65470, 0, 131081, -65469, 0, 131081, -65468, 0, 131081, -65467, 0, 131081, -65466, 0, 131081, -65465, 0, 131081, -65464, 0, 131081, -65463, 0, 131081, -65462, 0, 131083, 22, 0, 65544, 23, 0, 131081, 24, 0, 131078, 25, 0, 196617, 26, 0, 196617, 27, 0, 196617, 28, 0, 196617, 29, 0, 196617, 30, 0, 196617, 31, 0, 196617, 32, 0, 196617, 33, 0, 196617, 34, 0, 196617, 35, 0, 196617, 36, 0, 196617, 37, 0, 196617, 38, 0, 196617, 39, 0, 196617, 40, 0, 196617, 41, 0, 196617, 42, 0, 196617, 43, 0, 196617, 44, 0, 196617, 45, 0, 196617, 46, 0, 196617, 47, 0, 196619, 61, 0, 196616, 62, 0, 196617, 63, 0, 196617, 64, 0, 196617, 65, 0, 196617, 66, 0, 196617, 67, 0, 196617, 68, 0, 196617, 69, 0, 196617, 70, 0, 196617, 71, 0, 196617, 72, 0, 131077, 73, 0, 131081, 74, 0, 131083, 65558, 0, 65544, 65559, 0, 131081, 65560, 0, 131083, 65608, 0, 65544, 65609, 0, 131081, 65610, 0, 131083, 131091, 0, 0, 131094, 0, 65544, 131095, 0, 131081, 131096, 0, 131083, 131144, 0, 65544, 131145, 0, 131081, 131146, 0, 131083, 196627, 0, 65536, 196630, 0, 65544, 196631, 0, 131081, 196632, 0, 131083, 196680, 0, 65544, 196681, 0, 131081, 196682, 0, 131083, 262163, 0, 65536, 262166, 0, 65544, 262167, 0, 131081, 262168, 0, 131083, 262216, 0, 65544, 262217, 0, 131081, 262218, 0, 131083, 327699, 0, 65536, 327702, 0, 65544, 327703, 0, 131081, 327704, 0, 131083, 327743, 0, 8, 327744, 0, 10, 327745, 0, 10, 327746, 0, 10, 327747, 0, 10, 327748, 0, 10, 327749, 0, 10, 327750, 0, 10, 327751, 0, 10, 327752, 0, 65541, 327753, 0, 131081, 327754, 0, 131083, 393235, 0, 131073, 393236, 0, 196610, 393237, 0, 196610, 393238, 0, 131080, 393239, 0, 131081, 393240, 0, 65547, 393241, 0, 196610, 393242, 0, 196610, 393243, 0, 196611, 393279, 0, 65544, 393280, 0, 131081, 393281, 0, 131081, 393282, 0, 131081, 393283, 0, 131081, 393284, 0, 131081, 393285, 0, 131081, 393286, 0, 131081, 393287, 0, 131081, 393288, 0, 131081, 393289, 0, 131081, 393290, 0, 131083, 458774, 0, 65544, 458775, 0, 131081, 458776, 0, 131083, 458815, 0, 65544, 458816, 0, 131081, 458817, 0, 131081, 458818, 0, 131081, 458819, 0, 131081, 458820, 0, 131081, 458821, 0, 131081, 458822, 0, 131081, 458823, 0, 131081, 458824, 0, 131081, 458825, 0, 131081, 458826, 0, 131083, 524310, 0, 65544, 524311, 0, 131081, 524312, 0, 131083, 524331, 0, 8, 524332, 0, 10, 524333, 0, 11, 524351, 0, 65544, 524352, 0, 131081, 524353, 0, 131081, 524354, 0, 131081, 524355, 0, 131081, 524356, 0, 131081, 524357, 0, 131081, 524358, 0, 131081, 524359, 0, 131081, 524360, 0, 131081, 524361, 0, 131081, 524362, 0, 131083, 589846, 0, 65544, 589847, 0, 131081, 589848, 0, 131083, 589864, 0, 8, 589865, 0, 10, 589866, 0, 10, 589867, 0, 65541, 589868, 0, 131081, 589869, 0, 131083, 589887, 0, 65544, 589888, 0, 131081, 589889, 0, 131081, 589890, 0, 131081, 589891, 0, 131081, 589892, 0, 131081, 589893, 0, 131081, 589894, 0, 131081, 589895, 0, 131081, 589896, 0, 131081, 589897, 0, 131081, 589898, 0, 131083, 655382, 0, 65544, 655383, 0, 131081, 655384, 0, 131083, 655397, 0, 8, 655398, 0, 10, 655399, 0, 10, 655400, 0, 65541, 655401, 0, 131081, 655402, 0, 131081, 655403, 0, 131081, 655404, 0, 131081, 655405, 0, 131083, 655423, 0, 65544, 655424, 0, 131081, 655425, 0, 131081, 655426, 0, 131081, 655427, 0, 131081, 655428, 0, 131081, 655429, 0, 131081, 655430, 0, 131081, 655431, 0, 131081, 655432, 0, 131081, 655433, 0, 131081, 655434, 0, 131083, 720918, 0, 65544, 720919, 0, 131081, 720920, 0, 131083, 720930, 0, 8, 720931, 0, 10, 720932, 0, 10, 720933, 0, 65541, 720934, 0, 131081, 720935, 0, 131081, 720936, 0, 131081, 720937, 0, 131081, 720938, 0, 131081, 720939, 0, 131081, 720940, 0, 131081, 720941, 0, 131083, 720959, 0, 65544, 720960, 0, 131081, 720961, 0, 131081, 720962, 0, 131081, 720963, 0, 131081, 720964, 0, 131081, 720965, 0, 131081, 720966, 0, 131081, 720967, 0, 131081, 720968, 0, 131081, 720969, 0, 131081, 720970, 0, 131083, 786454, 0, 65544, 786455, 0, 131081, 786456, 0, 131083, 786463, 0, 8, 786464, 0, 10, 786465, 0, 10, 786466, 0, 65541, 786467, 0, 131081, 786468, 0, 131081, 786469, 0, 131081, 786470, 0, 131081, 786471, 0, 131081, 786472, 0, 131081, 786473, 0, 131081, 786474, 0, 131081, 786475, 0, 131081, 786476, 0, 131081, 786477, 0, 131083, 786495, 0, 65544, 786496, 0, 131081, 786497, 0, 131081, 786498, 0, 131081, 786499, 0, 131081, 786500, 0, 131081, 786501, 0, 131081, 786502, 0, 131081, 786503, 0, 131081, 786504, 0, 131081, 786505, 0, 131081, 786506, 0, 131083, 851990, 0, 65544, 851991, 0, 131081, 851992, 0, 65542, 851993, 0, 10, 851994, 0, 10, 851995, 0, 10, 851996, 0, 10, 851997, 0, 10, 851998, 0, 10, 851999, 0, 65541, 852000, 0, 131081, 852001, 0, 131081, 852002, 0, 131081, 852003, 0, 131081, 852004, 0, 131081, 852005, 0, 131081, 852006, 0, 131081, 852007, 0, 131081, 852008, 0, 131081, 852009, 0, 131081, 852010, 0, 131081, 852011, 0, 131081, 852012, 0, 131081, 852013, 0, 131083, 852031, 0, 65544, 852032, 0, 131081, 852033, 0, 131081, 852034, 0, 131081, 852035, 0, 131081, 852036, 0, 131081, 852037, 0, 131081, 852038, 0, 131081, 852039, 0, 131081, 852040, 0, 131081, 852041, 0, 131081, 852042, 0, 131083, 917526, 0, 65544, 917527, 0, 131081, 917528, 0, 131081, 917529, 0, 131081, 917530, 0, 131081, 917531, 0, 131081, 917532, 0, 131081, 917533, 0, 131081, 917534, 0, 131081, 917535, 0, 131081, 917536, 0, 131081, 917537, 0, 131081, 917538, 0, 131081, 917539, 0, 131081, 917540, 0, 131081, 917541, 0, 131081, 917542, 0, 131081, 917543, 0, 131081, 917544, 0, 131081, 917545, 0, 131081, 917546, 0, 131081, 917547, 0, 131081, 917548, 0, 131081, 917549, 0, 65542, 917550, 0, 10, 917551, 0, 10, 917552, 0, 10, 917553, 0, 10, 917554, 0, 10, 917555, 0, 10, 917556, 0, 10, 917557, 0, 10, 917558, 0, 10, 917559, 0, 10, 917560, 0, 10, 917561, 0, 10, 917562, 0, 10, 917563, 0, 10, 917564, 0, 10, 917565, 0, 10, 917566, 0, 10, 917567, 0, 65541, 917568, 0, 131081, 917569, 0, 131081, 917570, 0, 131081, 917571, 0, 131081, 917572, 0, 131081, 917573, 0, 131081, 917574, 0, 131081, 917575, 0, 131081, 917576, 0, 131081, 917577, 0, 131081, 917578, 0, 131083, 983062, 0, 196616, 983063, 0, 196617, 983064, 0, 196617, 983065, 0, 196617, 983066, 0, 196617, 983067, 0, 196617, 983068, 0, 196617, 983069, 0, 196617, 983070, 0, 196617, 983071, 0, 196617, 983072, 0, 196617, 983073, 0, 196617, 983074, 0, 196617, 983075, 0, 196617, 983076, 0, 196617, 983077, 0, 196617, 983078, 0, 196617, 983079, 0, 196617, 983080, 0, 196617, 983081, 0, 196617, 983082, 0, 196617, 983083, 0, 196617, 983084, 0, 196617, 983085, 0, 196617, 983086, 0, 196617, 983087, 0, 196617, 983088, 0, 196617, 983089, 0, 196617, 983090, 0, 196617, 983091, 0, 196617, 983092, 0, 196617, 983093, 0, 196617, 983094, 0, 196617, 983095, 0, 196617, 983096, 0, 196617, 983097, 0, 196617, 983098, 0, 196617, 983099, 0, 196617, 983100, 0, 196617, 983101, 0, 196617, 983102, 0, 196617, 983103, 0, 196617, 983104, 0, 196617, 983105, 0, 196617, 983106, 0, 196617, 983107, 0, 196617, 983108, 0, 196617, 983109, 0, 196617, 983110, 0, 196617, 983111, 0, 196617, 983112, 0, 196617, 983113, 0, 196617, 983114, 0, 196619 ) [node name="TileMapAppearing" type="TileMap" parent="."] visible = false @@ -135,10 +135,6 @@ shape = SubResource( 2 ) position = Vector2( -49, -9 ) shape = SubResource( 2 ) -[node name="CollisionShape2D7" type="CollisionShape2D" parent="EnemyCollision"] -position = Vector2( 157, 109 ) -shape = SubResource( 3 ) - [node name="Ogre" parent="." instance=ExtResource( 7 )] position = Vector2( 800, -52 ) @@ -149,7 +145,10 @@ position = Vector2( 876, -53 ) position = Vector2( 956, -53 ) [node name="Ogre4" parent="." instance=ExtResource( 7 )] -position = Vector2( 1070, 72 ) +position = Vector2( 673.242, 139.816 ) + +[node name="Ogre5" parent="." instance=ExtResource( 7 )] +position = Vector2( 712.133, 122.845 ) [node name="CanvasModulate" type="CanvasModulate" parent="."] color = Color( 0.564706, 0.564706, 0.564706, 1 )