From 80c69b5e2b8c2ba2165fb51c9582f0f0fd3a084d Mon Sep 17 00:00:00 2001 From: Jakob Feldmann Date: Mon, 18 Sep 2023 15:05:49 +0200 Subject: [PATCH] =?UTF-8?q?feat,=20fix:=20made=20frog=20rideable?= =?UTF-8?q?=F0=9F=A4=A0,=20no=20death=20animation=20when=20falliing=20into?= =?UTF-8?q?=20pit?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/Actors/Blobby/Blobby.gd | 8 +- src/Actors/Blobby/Blobby.tscn | 7 +- src/Actors/BlobbyCam.gd | 5 +- src/Actors/BlobbyCam.tscn | 6 +- src/Actors/Friendlies/WhatAreFrog.gd | 18 +- src/Actors/Friendlies/WhatAreFrog.tscn | 36 +- src/Environment/Grass/ShaderGrass.tscn | 1 - src/Levels/Legacy/huh.tscn | 413 ++++++++++++++++++ src/Levels/Level 0.1.tscn | 2 +- src/Levels/Level 1.tscn | 2 +- src/Levels/Level 2.tscn | 67 +-- src/Levels/Level 3.tscn | 2 +- src/Levels/Level 4.tscn | 371 +++------------- src/Levels/Templates/Template.tscn | 2 +- src/ObstacleObjects/Spikes.tscn | 4 +- src/Sounds/default_bus_layout.tres | 2 +- .../MainMenu/ControlsMenu/ControlsMenu.tscn | 2 - 17 files changed, 580 insertions(+), 368 deletions(-) create mode 100644 src/Levels/Legacy/huh.tscn diff --git a/src/Actors/Blobby/Blobby.gd b/src/Actors/Blobby/Blobby.gd index 0a17f3b..c4b173a 100644 --- a/src/Actors/Blobby/Blobby.gd +++ b/src/Actors/Blobby/Blobby.gd @@ -19,7 +19,6 @@ onready var init_boost = player_state_machine.init_boost onready var init_boost_type = player_state_machine.init_boost_type var wall_touch_direction = 1 - var stomping = false var floor_angle = Vector2(0, 0) var previous_rotation = 0 @@ -460,8 +459,11 @@ func die(animation_number: int = 0) -> void: signal_manager.emit_signal("player_died", animation_number) $"%BlobbymationTree".active = false $"%BlobbymationPlayer".play("dying3") - if animation_number < 1: + if animation_number == 0: $"%BlobbymationPlayer".play("expandingDisolve") + if animation_number == -1: + respawn() + return scene_audio.play_parallel_sound(death_sound_1, -15) scene_audio.play_parallel_sound(death_sound_2, -16) @@ -483,6 +485,8 @@ func _on_BlobbySkin_area_entered(area: Area2D) -> void: if area.is_in_group("harmful"): die() if area.is_in_group("pit"): + #scene_audio.play_parallel_sound(death_sound_1, -15) + scene_audio.play_parallel_sound(death_sound_2, -16) $PitfallTimer.start() diff --git a/src/Actors/Blobby/Blobby.tscn b/src/Actors/Blobby/Blobby.tscn index a250edf..d1c490d 100644 --- a/src/Actors/Blobby/Blobby.tscn +++ b/src/Actors/Blobby/Blobby.tscn @@ -4335,7 +4335,7 @@ tracks/2/keys = { } [node name="Blobby" type="KinematicBody2D" groups=["player"]] -collision_mask = 248 +collision_mask = 250 collision/safe_margin = 0.001 script = ExtResource( 4 ) __meta__ = { @@ -4343,7 +4343,6 @@ __meta__ = { } [node name="StateLabel" type="Label" parent="."] -visible = false show_behind_parent = true margin_left = -37.0 margin_top = -44.0 @@ -4385,7 +4384,7 @@ texture = SubResource( 62 ) offset = Vector2( 1, 0 ) hframes = 6 vframes = 6 -frame = 10 +frame = 8 __meta__ = { "_editor_description_": "YXNlcHJpdGVfd2l6YXJkX2NvbmZpZwpwbGF5ZXJ8PUJsb2JieVNwcml0ZS9CbG9iYnltYXRpb25QbGF5ZXIKc291cmNlfD1yZXM6Ly9hc3NldHMvYmxvYmJ5L2Jsb2JieS1zcHJpdGVzaGVldHQuYXNlcHJpdGUKbGF5ZXJ8PUJsb2JieQpvcF9leHB8PUZhbHNlCm9fZm9sZGVyfD0Kb19uYW1lfD0Kb25seV92aXNpYmxlfD1GYWxzZQpvX2V4X3B8PQo=" } @@ -4572,5 +4571,5 @@ one_shot = true [connection signal="got_grounded" from="BlobbyStateMachine" to="." method="_on_Blobby_got_grounded"] [connection signal="timeout" from="BlobbyStateMachine/JumpBufferTimer" to="BlobbyStateMachine" method="_on_JumpBufferTimer_timeout"] [connection signal="timeout" from="InvincibilityTimer" to="." method="_on_InvincibilityTimer_timeout"] -[connection signal="timeout" from="PitfallTimer" to="." method="die_for_real"] [connection signal="timeout" from="PitfallTimer" to="." method="_on_PitfallTimer_timeout"] +[connection signal="timeout" from="PitfallTimer" to="." method="die_for_real" binds= [ -1 ]] diff --git a/src/Actors/BlobbyCam.gd b/src/Actors/BlobbyCam.gd index 3ceaee1..2d6a48b 100644 --- a/src/Actors/BlobbyCam.gd +++ b/src/Actors/BlobbyCam.gd @@ -251,12 +251,13 @@ func reset_limits() -> void: func _death_cam(animation_number: int = 0) -> void: - if animation_number < 1: + if animation_number == -1: + return + if animation_number == 0: $CameraAnimationPlayer.play("deathCamJustZoom") if animation_number == 1: $CameraAnimationPlayer.play("deathCamLateRotation") - # TODO Rename to alarm lights specially func _update_lighting_shader() -> void: if !terminal_activated: diff --git a/src/Actors/BlobbyCam.tscn b/src/Actors/BlobbyCam.tscn index 620e067..2a8dcdd 100644 --- a/src/Actors/BlobbyCam.tscn +++ b/src/Actors/BlobbyCam.tscn @@ -1,4 +1,4 @@ -[gd_scene load_steps=57 format=2] +[gd_scene load_steps=58 format=2] [ext_resource path="res://src/Actors/BlobbyCam.gd" type="Script" id=1] [ext_resource path="res://assets/environment/background/starry-space-near.png" type="Texture" id=2] @@ -557,6 +557,9 @@ tracks/9/keys = { "values": [ false ] } +[sub_resource type="Animation" id=23] +resource_name = "justRespawn" + [sub_resource type="Animation" id=11] resource_name = "shiftingCenter" length = 0.6 @@ -910,6 +913,7 @@ anims/RESET = SubResource( 5 ) anims/deathCam = SubResource( 6 ) anims/deathCamJustZoom = SubResource( 15 ) anims/deathCamLateRotation = SubResource( 14 ) +anims/justRespawn = SubResource( 23 ) anims/shiftingCenter = SubResource( 11 ) anims/shiftingLeft = SubResource( 12 ) anims/shiftingRight = SubResource( 13 ) diff --git a/src/Actors/Friendlies/WhatAreFrog.gd b/src/Actors/Friendlies/WhatAreFrog.gd index eea5a0d..c4f0e18 100644 --- a/src/Actors/Friendlies/WhatAreFrog.gd +++ b/src/Actors/Friendlies/WhatAreFrog.gd @@ -135,14 +135,9 @@ func _on_StompDetector_body_entered(body: Node) -> void: if body.is_in_group("player"): attached_player = body $FeelerRayCast.collision_mask -= 1 - if !body.is_in_group("player") || is_hurt: + if !body.is_in_group("player") || is_hurt || !$StompTimeout.is_stopped(): return var incoming_vel_vector: Vector2 = body.velocity.normalized() - # TODO This is not the right angle somehow -# print(rad2deg(abs(incoming_vel_vector.angle_to(Vector2.DOWN.rotated(rotation))))) -# if abs(incoming_vel_vector.angle_to(\Vector2.DOWN.rotated(rotation))) > deg2rad(60): -# print("too shallow entry") -# return signal_manager.emit_signal("got_stomped") remove_from_group("harmful") # TODO Weakpoint group is not needed per se @@ -156,6 +151,7 @@ func _on_StompDetector_body_entered(body: Node) -> void: func _on_StompDetector_body_exited(body: Node) -> void: if attached_player == body: $FeelerRayCast.collision_mask += 1 + $StompTimeout.start() attached_player = null @@ -511,6 +507,7 @@ func is_jump_path_safe(v: Vector2, pos: Vector2) -> bool: var jump_distance = calculate_jump_distance(v) var harmful_nodes = get_tree().get_nodes_in_group("harmful") harmful_nodes.append_array(get_tree().get_nodes_in_group("pit")) + var result = true for node in harmful_nodes: var node_pos = node.global_position # TODO Ignores spikes more than 4 blocks below and 3 jumps away @@ -531,12 +528,13 @@ func is_jump_path_safe(v: Vector2, pos: Vector2) -> bool: var distance = abs(term1) + abs(term2) # print("distance to next spike") # print(pos.x + sign(v.x) * distance - node_pos.x) - var safe_distance = block_size / 2.0 + # TODO absolutly set sprite size + var safe_distance = 24 / 2.0 if sign(initial_throw_height) < 0: - safe_distance = block_size + safe_distance = 24 if abs(pos.x + sign(v.x) * distance - node_pos.x) < safe_distance: - return false - return true + result = false + return result func calculate_jump_height(v: Vector2) -> float: diff --git a/src/Actors/Friendlies/WhatAreFrog.tscn b/src/Actors/Friendlies/WhatAreFrog.tscn index f538ac4..48de187 100644 --- a/src/Actors/Friendlies/WhatAreFrog.tscn +++ b/src/Actors/Friendlies/WhatAreFrog.tscn @@ -1,4 +1,4 @@ -[gd_scene load_steps=50 format=2] +[gd_scene load_steps=51 format=2] [ext_resource path="res://assets/enemy/froshler.png" type="Texture" id=1] [ext_resource path="res://src/Actors/Friendlies/WhatAreFrog.gd" type="Script" id=2] @@ -420,25 +420,28 @@ states/sleeping/node = SubResource( 54 ) states/sleeping/position = Vector2( 177.848, 205.619 ) transitions = [ "idleHappy", "liftOff", SubResource( 27 ), "liftOff", "midJumping", SubResource( 28 ), "idleMean", "liftOff", SubResource( 29 ), "midJumping", "liftOff", SubResource( 30 ), "liftOff", "idleMean", SubResource( 31 ), "liftOff", "idleHappy", SubResource( 32 ), "idleHappy", "sleeping", SubResource( 55 ), "idleMean", "sleeping", SubResource( 56 ), "sleeping", "idleHappy", SubResource( 57 ), "sleeping", "idleMean", SubResource( 58 ) ] start_node = "idleHappy" -graph_offset = Vector2( -379, -204 ) +graph_offset = Vector2( -377, -42 ) [sub_resource type="AnimationNodeStateMachinePlayback" id=11] [sub_resource type="RectangleShape2D" id=1] -extents = Vector2( 12, 9 ) +extents = Vector2( 12, 6 ) [sub_resource type="RectangleShape2D" id=2] -extents = Vector2( 12, 0.5 ) +extents = Vector2( 12, 0.75 ) [sub_resource type="RectangleShape2D" id=3] extents = Vector2( 18.2143, 13.5955 ) [sub_resource type="RectangleShape2D" id=59] -extents = Vector2( 10, 15 ) +extents = Vector2( 12, 15 ) -[node name="WhatAreFrog" type="KinematicBody2D"] +[sub_resource type="RectangleShape2D" id=60] +extents = Vector2( 12, 0.53125 ) + +[node name="WhatAreFrog" type="KinematicBody2D" groups=["frog"]] collision_layer = 2 -collision_mask = 185 +collision_mask = 184 collision/safe_margin = 0.002 script = ExtResource( 2 ) @@ -481,6 +484,7 @@ position = Vector2( 0, -7 ) texture = ExtResource( 1 ) hframes = 2 vframes = 4 +frame = 1 [node name="AnimationPlayer" type="AnimationPlayer" parent="FrogSprite"] anims/RESET = SubResource( 5 ) @@ -546,6 +550,7 @@ collision_mask = 297 collide_with_areas = true [node name="EnemyBody" type="CollisionShape2D" parent="."] +position = Vector2( 0, 3 ) shape = SubResource( 1 ) [node name="cshape" type="Node2D" parent="."] @@ -564,7 +569,7 @@ input_pickable = false monitorable = false [node name="CollisionShape2D" type="CollisionShape2D" parent="StompDetector"] -position = Vector2( 0, -0.875 ) +position = Vector2( 0, 0.25 ) shape = SubResource( 2 ) [node name="GroundDetector" type="Area2D" parent="."] @@ -581,6 +586,7 @@ shape = SubResource( 2 ) [node name="EnemySkin" type="Area2D" parent="."] process_priority = -1 +visible = false scale = Vector2( 0.7, 0.7 ) collision_layer = 2 collision_mask = 106 @@ -593,14 +599,26 @@ shape = SubResource( 3 ) wait_time = 3.236 one_shot = true +[node name="StompTimeout" type="Timer" parent="."] +wait_time = 0.3 +one_shot = true + [node name="JumpCollisionBody" type="KinematicBody2D" parent="."] -collision_layer = 2 +visible = false +collision_layer = 0 collision_mask = 8 [node name="CollisionShape2D" type="CollisionShape2D" parent="JumpCollisionBody"] position = Vector2( 0, -6 ) shape = SubResource( 59 ) +[node name="RideCollisionBody" type="KinematicBody2D" parent="."] +position = Vector2( 0, -7 ) +collision_layer = 2 + +[node name="CollisionShape2D" type="CollisionShape2D" parent="RideCollisionBody"] +shape = SubResource( 60 ) + [connection signal="body_entered" from="StompDetector" to="." method="_on_StompDetector_body_entered"] [connection signal="body_exited" from="StompDetector" to="." method="_on_StompDetector_body_exited"] [connection signal="area_entered" from="EnemySkin" to="." method="_on_EnemySkin_area_entered"] diff --git a/src/Environment/Grass/ShaderGrass.tscn b/src/Environment/Grass/ShaderGrass.tscn index c5fbfa0..7b4d996 100644 --- a/src/Environment/Grass/ShaderGrass.tscn +++ b/src/Environment/Grass/ShaderGrass.tscn @@ -78,7 +78,6 @@ uv = PoolVector2Array( 4.9375, 11.875, 5, 8.8125, 2.8125, 7, -0.375, 4.0625, 2.2 polygons = [ PoolIntArray( 0, 6, 7 ), PoolIntArray( 0, 1, 6 ), PoolIntArray( 1, 5, 6 ), PoolIntArray( 1, 2, 5 ), PoolIntArray( 2, 4, 5 ), PoolIntArray( 2, 3, 4 ) ] [node name="Sprite" type="Sprite" parent="."] -visible = false position = Vector2( 5.00909, 19.9567 ) z_index = -1 texture = ExtResource( 10 ) diff --git a/src/Levels/Legacy/huh.tscn b/src/Levels/Legacy/huh.tscn new file mode 100644 index 0000000..47f89d5 --- /dev/null +++ b/src/Levels/Legacy/huh.tscn @@ -0,0 +1,413 @@ +[gd_scene load_steps=29 format=2] + +[ext_resource path="res://src/Environment/Legacy/AlienShipTileSet.tres" type="TileSet" id=1] +[ext_resource path="res://src/Utilities/SignalManager.tscn" type="PackedScene" id=2] +[ext_resource path="res://src/Utilities/LevelState.tscn" type="PackedScene" id=3] +[ext_resource path="res://src/Actors/BlobbyCam.tscn" type="PackedScene" id=4] +[ext_resource path="res://src/Actors/Friendlies/BoundFrog.tscn" type="PackedScene" id=5] +[ext_resource path="res://src/Actors/Enemies/Flyer.tscn" type="PackedScene" id=6] +[ext_resource path="res://src/BenefitialObjects/Coin.tscn" type="PackedScene" id=7] +[ext_resource path="res://src/Actors/Blobby/Blobby.tscn" type="PackedScene" id=8] +[ext_resource path="res://src/UserInterface/UserInterface.tscn" type="PackedScene" id=9] +[ext_resource path="res://src/Contraptions/Triggers/FrogFreeButton.tscn" type="PackedScene" id=10] +[ext_resource path="res://src/Contraptions/Portal/Portal.tscn" type="PackedScene" id=11] +[ext_resource path="res://src/Platforms/Spring/SpringPlatform.tscn" type="PackedScene" id=13] +[ext_resource path="res://src/Platforms/legacy/DropThroughPlatform.tscn" type="PackedScene" id=14] +[ext_resource path="res://src/Contraptions/GateBlock.tscn" type="PackedScene" id=15] +[ext_resource path="res://src/Contraptions/Triggers/GateButton.tscn" type="PackedScene" id=16] + +[sub_resource type="Shader" id=16] +code = "shader_type canvas_item; + +uniform vec4 in_color:hint_color; +uniform vec4 out_color:hint_color; + +uniform float in_out:hint_range(0.,1.)=0.; + +uniform float position:hint_range(-1.5,1.) = 0.856; +uniform vec2 size = vec2(16., 16.); + +void fragment(){ + + vec2 a = (1./SCREEN_PIXEL_SIZE) / size; + + vec2 uv=UV; + uv *= a; + + vec2 i_uv = floor(uv); + vec2 f_uv = fract(uv); + + float wave = max(0.,i_uv.x/(a.x) - position); + + vec2 center = f_uv*2.-1.; + float circle = length(center); + circle = 1. - step(wave,circle); + + vec4 color = mix(in_color, out_color, step(0.5, in_out)); + + COLOR=vec4(circle) * color; +}" + +[sub_resource type="ShaderMaterial" id=17] +shader = SubResource( 16 ) +shader_param/in_color = Color( 0, 0, 0, 1 ) +shader_param/out_color = Color( 0, 0, 0, 0.568627 ) +shader_param/in_out = 0.0 +shader_param/position = -1.5 +shader_param/size = Vector2( 32, 32 ) + +[sub_resource type="AnimationNodeStateMachinePlayback" id=15] + +[sub_resource type="AnimationNodeStateMachinePlayback" id=5] + +[sub_resource type="Animation" id=6] +length = 0.001 +tracks/0/type = "value" +tracks/0/path = NodePath(".:frame") +tracks/0/interp = 1 +tracks/0/loop_wrap = true +tracks/0/imported = false +tracks/0/enabled = true +tracks/0/keys = { +"times": PoolRealArray( 0 ), +"transitions": PoolRealArray( 1 ), +"update": 0, +"values": [ 0 ] +} + +[sub_resource type="Animation" id=7] +resource_name = "hunting" +length = 1.62 +loop = true +step = 0.01 +tracks/0/type = "value" +tracks/0/path = NodePath(".:frame") +tracks/0/interp = 1 +tracks/0/loop_wrap = true +tracks/0/imported = false +tracks/0/enabled = true +tracks/0/keys = { +"times": PoolRealArray( 0 ), +"transitions": PoolRealArray( 1 ), +"update": 1, +"values": [ 0 ] +} +tracks/1/type = "value" +tracks/1/path = NodePath(".:scale") +tracks/1/interp = 1 +tracks/1/loop_wrap = true +tracks/1/imported = false +tracks/1/enabled = true +tracks/1/keys = { +"times": PoolRealArray( 0 ), +"transitions": PoolRealArray( 1 ), +"update": 1, +"values": [ Vector2( -1, 1 ) ] +} + +[sub_resource type="Animation" id=8] +resource_name = "huntingLeft" +length = 0.042 +loop = true +tracks/0/type = "value" +tracks/0/path = NodePath(".:frame") +tracks/0/interp = 1 +tracks/0/loop_wrap = true +tracks/0/imported = false +tracks/0/enabled = true +tracks/0/keys = { +"times": PoolRealArray( 0 ), +"transitions": PoolRealArray( 1 ), +"update": 1, +"values": [ 0 ] +} +tracks/1/type = "value" +tracks/1/path = NodePath(".:scale") +tracks/1/interp = 1 +tracks/1/loop_wrap = true +tracks/1/imported = false +tracks/1/enabled = true +tracks/1/keys = { +"times": PoolRealArray( 0 ), +"transitions": PoolRealArray( 1 ), +"update": 1, +"values": [ Vector2( 1, 1 ) ] +} + +[sub_resource type="Animation" id=9] +resource_name = "searching" +length = 1.62 +loop = true +step = 0.01 +tracks/0/type = "value" +tracks/0/path = NodePath(".:frame") +tracks/0/interp = 1 +tracks/0/loop_wrap = true +tracks/0/imported = false +tracks/0/enabled = true +tracks/0/keys = { +"times": PoolRealArray( 0.02 ), +"transitions": PoolRealArray( 1 ), +"update": 1, +"values": [ 1 ] +} +tracks/1/type = "value" +tracks/1/path = NodePath(".:scale") +tracks/1/interp = 1 +tracks/1/loop_wrap = true +tracks/1/imported = false +tracks/1/enabled = true +tracks/1/keys = { +"times": PoolRealArray( 0 ), +"transitions": PoolRealArray( 1 ), +"update": 1, +"values": [ Vector2( -1, 1 ) ] +} + +[sub_resource type="Animation" id=10] +resource_name = "searchingLeft" +length = 1.62 +loop = true +step = 0.01 +tracks/0/type = "value" +tracks/0/path = NodePath(".:frame") +tracks/0/interp = 1 +tracks/0/loop_wrap = true +tracks/0/imported = false +tracks/0/enabled = true +tracks/0/keys = { +"times": PoolRealArray( 0 ), +"transitions": PoolRealArray( 1 ), +"update": 1, +"values": [ 1 ] +} +tracks/1/type = "value" +tracks/1/path = NodePath(".:scale") +tracks/1/interp = 1 +tracks/1/loop_wrap = true +tracks/1/imported = false +tracks/1/enabled = true +tracks/1/keys = { +"times": PoolRealArray( 0 ), +"transitions": PoolRealArray( 1 ), +"update": 1, +"values": [ Vector2( 1, 1 ) ] +} + +[sub_resource type="AnimationNodeStateMachinePlayback" id=11] + +[sub_resource type="AnimationNodeStateMachinePlayback" id=14] + +[sub_resource type="Animation" id=12] +length = 0.001 +tracks/0/type = "value" +tracks/0/path = NodePath(".:position") +tracks/0/interp = 1 +tracks/0/loop_wrap = true +tracks/0/imported = false +tracks/0/enabled = true +tracks/0/keys = { +"times": PoolRealArray( 0 ), +"transitions": PoolRealArray( 1 ), +"update": 0, +"values": [ Vector2( 0, -7 ) ] +} + +[sub_resource type="Animation" id=13] +resource_name = "onning" +length = 0.809 +tracks/0/type = "value" +tracks/0/path = NodePath(".: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.8 ), +"transitions": PoolRealArray( 1, 2.73207 ), +"update": 0, +"values": [ Vector2( 0, -7 ), Vector2( 0, 7 ) ] +} + +[node name="Level 4" type="Node2D"] +__meta__ = { +"_edit_horizontal_guides_": [ 464.0 ], +"_edit_vertical_guides_": [ 2880.0 ] +} + +[node name="SignalManager" parent="." instance=ExtResource( 2 )] + +[node name="LevelState" parent="." instance=ExtResource( 3 )] +unique_name_in_owner = true + +[node name="TransitionLayer" type="CanvasLayer" parent="."] +visible = false + +[node name="SceneTransition" type="ColorRect" parent="TransitionLayer"] +material = SubResource( 17 ) +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 +size_flags_horizontal = 3 +size_flags_vertical = 3 + +[node name="UserInterface" parent="." instance=ExtResource( 9 )] +unique_name_in_owner = true + +[node name="Timer" parent="UserInterface/HUD/HUDOverlay/GetBackTimer" index="0"] +wait_time = 20.0 + +[node name="BlobbyCam" parent="." instance=ExtResource( 4 )] +unique_name_in_owner = true +drag_margin_top = 0.13 +drag_margin_bottom = 0.3 + +[node name="Blobby" parent="." instance=ExtResource( 8 )] +unique_name_in_owner = true +position = Vector2( 21, -9 ) + +[node name="StateLabel" parent="Blobby" index="0"] +visible = true + +[node name="BlobbySprite" parent="Blobby" index="5"] +frame = 7 + +[node name="BlobbymationTree" parent="Blobby/BlobbySprite" index="0"] +parameters/playback = SubResource( 15 ) + +[node name="Coin" parent="." instance=ExtResource( 7 )] +position = Vector2( 216, -216 ) + +[node name="Coin2" parent="." instance=ExtResource( 7 )] +position = Vector2( 695, -48 ) + +[node name="Coin3" parent="." instance=ExtResource( 7 )] +position = Vector2( 1272, -192 ) + +[node name="Flyer" parent="." instance=ExtResource( 6 )] +position = Vector2( 483, -270 ) +aggressive = false + +[node name="AnimationTree" parent="Flyer/FlyerSprite" index="1"] +parameters/playback = SubResource( 5 ) + +[node name="Position2D2" parent="Flyer/PatrolPath" index="0"] +position = Vector2( -3, -21 ) + +[node name="Position2D3" parent="Flyer/PatrolPath" index="1"] +position = Vector2( -3, 12 ) + +[node name="Flyer2" parent="." instance=ExtResource( 6 )] +position = Vector2( 1041, -32 ) +aggressive = false + +[node name="AnimationPlayer" parent="Flyer2/FlyerSprite" index="0"] +anims/RESET = SubResource( 6 ) +anims/hunting = SubResource( 7 ) +anims/huntingLeft = SubResource( 8 ) +anims/searching = SubResource( 9 ) +anims/searchingLeft = SubResource( 10 ) + +[node name="AnimationTree" parent="Flyer2/FlyerSprite" index="1"] +parameters/playback = SubResource( 11 ) + +[node name="Position2D2" parent="Flyer2/PatrolPath" index="0"] +position = Vector2( -3, -21 ) + +[node name="Position2D3" parent="Flyer2/PatrolPath" index="1"] +position = Vector2( -3, 12 ) + +[node name="BoundFrog" parent="." instance=ExtResource( 5 )] +position = Vector2( 778, -9 ) + +[node name="BoundFrog2" parent="." instance=ExtResource( 5 )] +position = Vector2( 1266, -537 ) + +[node name="WhatAreFrog" parent="BoundFrog2" index="0"] +frog_number = 1 + +[node name="Digit" parent="BoundFrog2/WhatAreFrog" index="3"] +frame = 1 + +[node name="AnimationTree" parent="BoundFrog2/WhatAreFrog/FrogSprite" index="1"] +root_motion_track = NodePath(".") +parameters/playback = SubResource( 14 ) + +[node name="Portal" parent="." instance=ExtResource( 11 )] +position = Vector2( 1368, -552 ) + +[node name="SpringPlatform" parent="." instance=ExtResource( 13 )] +position = Vector2( 1272, -36 ) + +[node name="SpringPlatform2" parent="." instance=ExtResource( 13 )] +position = Vector2( 600, -279 ) + +[node name="TileMap" type="TileMap" parent="."] +unique_name_in_owner = true +tile_set = ExtResource( 1 ) +cell_size = Vector2( 24, 24 ) +cell_quadrant_size = 3 +cell_custom_transform = Transform2D( 24, 0, 0, 24, 0, 0 ) +collision_layer = 8 +collision_mask = 8 +bake_navigation = true +format = 1 +tile_data = PoolIntArray( -1966085, 1610612751, 0, -1966084, 1610612746, 0, -1966083, 1610612746, 0, -1966082, 1610612746, 0, -1966081, 1610612746, 0, -2031616, 1610612746, 0, -2031615, 1610612746, 0, -2031614, 1610612746, 0, -2031613, 1610612746, 0, -2031612, 1610612746, 0, -2031611, 1610612746, 0, -2031610, 1610612746, 0, -2031609, 1610612746, 0, -2031608, 1610612746, 0, -2031607, 1610612746, 0, -2031606, 1610612746, 0, -2031605, 1610612746, 0, -2031604, 1610612746, 0, -2031603, 1610612746, 0, -2031602, 1610612746, 0, -2031601, 1610612746, 0, -2031600, 1610612746, 0, -2031599, 1610612746, 0, -2031598, 1610612746, 0, -2031597, 1610612746, 0, -2031596, 1610612746, 0, -2031595, 1610612746, 0, -2031594, 1610612746, 0, -2031593, 1610612746, 0, -2031592, 1610612746, 0, -2031591, 1610612746, 0, -2031590, 1610612746, 0, -2031589, 1610612746, 0, -2031588, 1610612746, 0, -2031587, 1610612746, 0, -2031586, 1610612746, 0, -2031585, 1610612746, 0, -2031584, 1610612746, 0, -2031583, 1610612746, 0, -2031582, 1610612746, 0, -2031581, 1610612746, 0, -2031580, 1610612746, 0, -2031579, 1610612746, 0, -2031578, 1610612746, 0, -2031577, 1610612746, 0, -2031576, 1610612746, 0, -2031575, 1610612746, 0, -2031574, 1610612746, 0, -2031573, 1610612746, 0, -2031572, 1610612746, 0, -2031571, 1610612746, 0, -2031570, 1610612746, 0, -2031569, 1610612746, 0, -2031568, 1610612746, 0, -2031567, 1610612746, 0, -2031566, 1610612746, 0, -2031565, 1610612746, 0, -2031564, 1610612746, 0, -2031563, 1610612746, 0, -2031562, 1610612746, 0, -2031561, 1610612746, 0, -2031560, 1610612746, 0, -2031559, 1610612746, 0, -2031558, 1610612746, 0, -2031557, -1073741809, 0, -1900549, -1610612726, 0, -1900548, 1610612739, 0, -1900547, 1610612738, 0, -1900546, 1610612738, 0, -1900545, 1610612738, 0, -1966080, 1610612738, 0, -1966079, 1610612738, 0, -1966078, 1610612738, 0, -1966077, 1610612738, 0, -1966076, 1610612738, 0, -1966075, 1610612738, 0, -1966074, 1610612738, 0, -1966073, 1610612738, 0, -1966072, 1610612738, 0, -1966071, 1610612738, 0, -1966070, 1610612738, 0, -1966069, 1610612738, 0, -1966068, 1610612738, 0, -1966067, 1610612738, 0, -1966066, 1610612738, 0, -1966065, 1610612738, 0, -1966064, 1610612738, 0, -1966063, 1610612738, 0, -1966062, 1610612738, 0, -1966061, 1610612738, 0, -1966060, 1610612738, 0, -1966059, 1610612738, 0, -1966058, 1610612738, 0, -1966057, 1610612738, 0, -1966056, 1610612738, 0, -1966055, 1610612738, 0, -1966054, 3, 0, -1966053, 3, 0, -1966052, 1610612738, 0, -1966051, 1610612738, 0, -1966050, 1610612738, 0, -1966049, 1610612738, 0, -1966048, 1610612738, 0, -1966047, 1610612738, 0, -1966046, 1610612738, 0, -1966045, 1610612738, 0, -1966044, 1610612738, 0, -1966043, 1610612738, 0, -1966042, 1610612738, 0, -1966041, 1610612738, 0, -1966040, 1610612738, 0, -1966039, 1610612738, 0, -1966038, 1610612738, 0, -1966037, 1610612738, 0, -1966036, 1610612738, 0, -1966035, 1610612738, 0, -1966034, 1610612738, 0, -1966033, 1610612738, 0, -1966032, 1610612738, 0, -1966031, 1610612738, 0, -1966030, 1610612738, 0, -1966029, 1610612738, 0, -1966028, 1610612738, 0, -1966027, 1610612738, 0, -1966026, 1610612738, 0, -1966025, 1610612738, 0, -1966024, 1610612738, 0, -1966023, 1610612738, 0, -1966022, 1610612739, 0, -1966021, -1073741814, 0, -1835013, -1610612726, 0, -1835012, -1610612734, 0, -1900518, -1073741822, 0, -1900517, -1610612734, 0, -1900486, -1073741822, 0, -1900485, -1073741814, 0, -1769477, -1610612726, 0, -1769476, -1610612734, 0, -1834982, -1073741822, 0, -1834981, -1610612734, 0, -1834950, -1073741822, 0, -1834949, -1073741814, 0, -1703941, -1610612726, 0, -1703940, -1610612734, 0, -1769446, -1073741822, 0, -1769445, -1610612734, 0, -1769414, -1073741822, 0, -1769413, -1073741814, 0, -1638405, -1610612726, 0, -1638404, -1610612734, 0, -1703910, -1073741822, 0, -1703909, -1610612734, 0, -1703878, -1073741822, 0, -1703877, -1073741814, 0, -1572869, -1610612726, 0, -1572868, -1610612734, 0, -1638374, -1073741822, 0, -1638373, 1610612739, 0, -1638372, 2, 0, -1638371, 2, 0, -1638370, 2, 0, -1638369, 2, 0, -1638368, 2, 0, -1638367, 2, 0, -1638366, 2, 0, -1638365, -1610612729, 0, -1638342, -1073741822, 0, -1638341, -1073741814, 0, -1507333, -1610612726, 0, -1507332, -1610612734, 0, -1572838, -1073741817, 0, -1572837, 1610612738, 0, -1572836, 1610612738, 0, -1572835, 1610612738, 0, -1572834, 1610612738, 0, -1572833, 1610612738, 0, -1572832, 1610612738, 0, -1572831, 1610612738, 0, -1572830, 1610612738, 0, -1572829, 1610612743, 0, -1572806, -1073741822, 0, -1572805, -1073741814, 0, -1441797, -1610612726, 0, -1441796, -1610612734, 0, -1507270, -1073741822, 0, -1507269, -1073741814, 0, -1376261, -1610612726, 0, -1376260, -1610612734, 0, -1441751, 7, 0, -1441750, 2, 0, -1441749, 2, 0, -1441748, 2, 0, -1441747, 2, 0, -1441746, 2, 0, -1441745, 2, 0, -1441744, 2, 0, -1441743, 2, 0, -1441742, 2, 0, -1441741, 2, 0, -1441740, 2, 0, -1441739, 2, 0, -1441738, 2, 0, -1441737, 2, 0, -1441736, 2, 0, -1441735, 2, 0, -1441734, 3, 0, -1441733, -1073741814, 0, -1310725, -1610612726, 0, -1310724, -1610612734, 0, -1376215, -1073741817, 0, -1376214, 1610612738, 0, -1376213, 1610612738, 0, -1376212, 1610612738, 0, -1376211, 1610612738, 0, -1376210, 1610612738, 0, -1376209, 1610612738, 0, -1376208, 1610612738, 0, -1376207, 1610612738, 0, -1376206, 1610612738, 0, -1376205, 1610612738, 0, -1376204, 1610612738, 0, -1376203, 1610612738, 0, -1376202, 1610612738, 0, -1376201, 1610612738, 0, -1376200, 1610612738, 0, -1376199, 1610612738, 0, -1376198, 3, 0, -1376197, -1073741814, 0, -1245189, -1610612726, 0, -1245188, -1610612734, 0, -1310683, 2, 0, -1310682, 2, 0, -1310681, 2, 0, -1310662, -1073741822, 0, -1310661, -1073741814, 0, -1179653, -1610612726, 0, -1179652, -1610612734, 0, -1245126, -1073741822, 0, -1245125, -1073741814, 0, -1114117, -1610612726, 0, -1114116, -1610612734, 0, -1179615, 2, 0, -1179614, 2, 0, -1179613, 2, 0, -1179612, 2, 0, -1179590, -1073741822, 0, -1179589, -1073741814, 0, -1048581, -1610612726, 0, -1048580, -1610612734, 0, -1114054, -1073741822, 0, -1114053, -1073741814, 0, -983045, -1610612726, 0, -983044, -1610612734, 0, -983043, -1610612727, 0, -983042, -1610612727, 0, -983041, -1610612727, 0, -1048576, -1610612727, 0, -1048575, -1610612727, 0, -1048574, -1610612727, 0, -1048573, -1610612727, 0, -1048572, -1610612727, 0, -1048571, -1610612727, 0, -1048570, -1610612727, 0, -1048569, -1610612727, 0, -1048568, -1610612727, 0, -1048567, -1610612727, 0, -1048566, -1610612727, 0, -1048565, -1610612727, 0, -1048564, -1610612727, 0, -1048563, -1610612727, 0, -1048562, -1610612727, 0, -1048561, -1610612727, 0, -1048560, -1610612727, 0, -1048559, -1610612727, 0, -1048558, -1610612727, 0, -1048557, -1610612727, 0, -1048556, 7, 0, -1048555, 2, 0, -1048554, -1610612729, 0, -1048553, -1610612727, 0, -1048552, -1610612727, 0, -1048551, -1610612727, 0, -1048550, -1610612727, 0, -1048549, -1610612727, 0, -1048548, -1610612727, 0, -1048547, -1610612727, 0, -1048546, 2, 0, -1048545, 2, 0, -1048544, 2, 0, -1048543, -1610612727, 0, -1048542, -1610612727, 0, -1048541, -1610612727, 0, -1048540, -1610612727, 0, -1048539, -1610612727, 0, -1048538, -1610612727, 0, -1048537, -1610612727, 0, -1048536, -1610612727, 0, -1048535, -1610612727, 0, -1048534, -1610612727, 0, -1048533, -1610612727, 0, -1048518, -1073741822, 0, -1048517, -1073741814, 0, -917509, -1610612726, 0, -917508, -1610612734, 0, -917507, -1610612727, 0, -917506, -1610612727, 0, -917505, -1610612727, 0, -983040, -1610612727, 0, -983039, -1610612727, 0, -983038, -1610612727, 0, -983037, -1610612727, 0, -983036, -1610612727, 0, -983035, -1610612727, 0, -983034, -1610612727, 0, -983033, -1610612727, 0, -983032, -1610612727, 0, -983031, -1610612727, 0, -983030, -1610612727, 0, -983029, -1610612727, 0, -983028, -1610612727, 0, -983027, -1610612727, 0, -983026, -1610612727, 0, -983025, -1610612727, 0, -983024, -1610612727, 0, -983023, -1610612727, 0, -983022, 7, 0, -983021, 2, 0, -983020, 3, 0, -983019, 1610612738, 0, -983018, 1610612743, 0, -983017, -1610612727, 0, -983016, -1610612727, 0, -983015, -1610612727, 0, -983014, -1610612727, 0, -983013, -1610612727, 0, -983012, -1610612727, 0, -983011, -1610612727, 0, -983010, -1610612727, 0, -983009, -1610612727, 0, -983008, -1610612727, 0, -983007, -1610612727, 0, -983006, -1610612727, 0, -983005, -1610612727, 0, -983004, -1610612727, 0, -983003, -1610612727, 0, -983002, -1610612727, 0, -983001, -1610612727, 0, -983000, -1610612727, 0, -982999, -1610612727, 0, -982998, -1610612727, 0, -982997, -1610612727, 0, -982982, -1073741822, 0, -982981, -1073741814, 0, -851973, -1610612726, 0, -851972, -1610612734, 0, -851971, -1610612727, 0, -851970, -1610612727, 0, -851969, -1610612727, 0, -917504, -1610612727, 0, -917503, -1610612727, 0, -917502, -1610612727, 0, -917501, -1610612727, 0, -917500, -1610612727, 0, -917499, -1610612727, 0, -917498, -1610612727, 0, -917497, -1610612727, 0, -917496, -1610612727, 0, -917495, -1610612727, 0, -917494, -1610612727, 0, -917493, -1610612727, 0, -917492, -1610612727, 0, -917491, -1610612727, 0, -917490, -1610612727, 0, -917489, -1610612727, 0, -917488, 7, 0, -917487, 2, 0, -917486, 3, 0, -917485, 1610612738, 0, -917484, 1610612743, 0, -917483, -1610612727, 0, -917482, -1610612727, 0, -917481, -1610612727, 0, -917480, -1610612727, 0, -917479, -1610612727, 0, -917478, -1610612727, 0, -917477, 2, 0, -917476, 2, 0, -917475, 2, 0, -917474, -1610612727, 0, -917473, -1610612727, 0, -917472, -1610612727, 0, -917471, -1610612727, 0, -917470, -1610612727, 0, -917469, -1610612727, 0, -917468, -1610612727, 0, -917467, -1610612727, 0, -917466, -1610612727, 0, -917465, -1610612727, 0, -917464, -1610612727, 0, -917463, -1610612727, 0, -917462, -1610612727, 0, -917461, -1610612727, 0, -917460, -1610612727, 0, -917446, -1073741822, 0, -917445, -1073741814, 0, -786437, -1610612726, 0, -786436, -1610612734, 0, -786435, -1610612727, 0, -786434, -1610612727, 0, -786433, -1610612727, 0, -851968, -1610612727, 0, -851967, -1610612727, 0, -851966, -1610612727, 0, -851965, -1610612727, 0, -851964, -1610612727, 0, -851963, -1610612727, 0, -851962, 7, 0, -851961, 2, 0, -851960, 2, 0, -851959, 2, 0, -851958, 2, 0, -851957, 2, 0, -851956, 2, 0, -851955, 2, 0, -851954, 2, 0, -851953, 2, 0, -851952, 3, 0, -851951, 1610612739, 0, -851950, 1610612743, 0, -851949, -1610612727, 0, -851948, -1610612727, 0, -851947, -1610612727, 0, -851946, -1610612727, 0, -851945, -1610612727, 0, -851944, -1610612727, 0, -851943, -1610612727, 0, -851942, -1610612727, 0, -851941, -1610612727, 0, -851940, -1610612727, 0, -851939, -1610612727, 0, -851938, -1610612727, 0, -851937, -1610612727, 0, -851936, -1610612727, 0, -851935, -1610612727, 0, -851934, -1610612727, 0, -851933, -1610612727, 0, -851932, -1610612727, 0, -851931, -1610612727, 0, -851930, -1610612727, 0, -851929, -1610612727, 0, -851928, -1610612727, 0, -851927, -1610612727, 0, -851926, -1610612727, 0, -851925, -1610612727, 0, -851924, -1610612727, 0, -851910, -1073741822, 0, -851909, -1073741814, 0, -720901, -1610612726, 0, -720900, -1610612734, 0, -720899, -1610612727, 0, -720898, -1610612727, 0, -720897, -1610612727, 0, -786432, -1610612727, 0, -786431, -1610612727, 0, -786430, -1610612727, 0, -786428, -1610612727, 0, -786427, -1610612727, 0, -786426, -1073741822, 0, -786425, 3, 0, -786424, 1610612738, 0, -786423, 1610612738, 0, -786422, 1610612738, 0, -786421, 1610612738, 0, -786420, 1610612738, 0, -786419, 1610612738, 0, -786418, 1610612738, 0, -786417, 1610612738, 0, -786416, 1610612738, 0, -786415, 1610612743, 0, -786414, -1610612727, 0, -786413, -1610612727, 0, -786412, -1610612727, 0, -786411, -1610612727, 0, -786410, -1610612727, 0, -786409, -1610612727, 0, -786408, -1610612727, 0, -786407, -1610612727, 0, -786406, -1610612727, 0, -786405, -1610612727, 0, -786404, -1610612727, 0, -786403, -1610612727, 0, -786402, -1610612727, 0, -786401, -1610612727, 0, -786400, -1610612727, 0, -786399, -1610612727, 0, -786398, -1610612727, 0, -786397, -1610612727, 0, -786396, -1610612727, 0, -786395, -1610612727, 0, -786394, -1610612727, 0, -786393, -1610612727, 0, -786392, -1610612727, 0, -786391, -1610612727, 0, -786390, -1610612727, 0, -786389, -1610612727, 0, -786388, -1610612727, 0, -786374, -1073741822, 0, -786373, -1073741814, 0, -655365, -1610612726, 0, -655364, -1610612734, 0, -655363, -1610612727, 0, -655362, -1610612727, 0, -655361, -1610612727, 0, -720896, -1610612727, 0, -720895, -1610612727, 0, -720894, -1610612727, 0, -720892, -1610612727, 0, -720891, -1610612727, 0, -720890, -1073741822, 0, -720889, -1610612734, 0, -720888, -1610612727, 0, -720887, -1610612727, 0, -720886, -1610612727, 0, -720885, -1610612727, 0, -720884, -1610612727, 0, -720883, -1610612727, 0, -720882, -1610612727, 0, -720881, -1610612727, 0, -720880, -1610612727, 0, -720879, -1610612727, 0, -720878, -1610612727, 0, -720877, -1610612727, 0, -720876, -1610612727, 0, -720875, -1610612727, 0, -720874, -1610612727, 0, -720873, -1610612727, 0, -720872, -1610612727, 0, -720871, -1610612727, 0, -720870, -1610612727, 0, -720869, -1610612727, 0, -720868, -1610612727, 0, -720867, -1610612727, 0, -720866, -1610612727, 0, -720865, -1610612727, 0, -720864, -1610612727, 0, -720863, -1610612727, 0, -720862, -1610612727, 0, -720861, -1610612727, 0, -720860, -1610612727, 0, -720859, -1610612727, 0, -720858, -1610612727, 0, -720857, -1610612727, 0, -720856, -1610612727, 0, -720855, -1610612727, 0, -720854, -1610612727, 0, -720853, -1610612727, 0, -720852, -1610612727, 0, -720838, -1073741822, 0, -720837, -1073741814, 0, -589829, -1610612726, 0, -589828, -1610612734, 0, -589827, -1610612727, 0, -589826, -1610612727, 0, -589825, -1610612727, 0, -655360, -1610612727, 0, -655359, -1610612727, 0, -655358, -1610612727, 0, -655356, -1610612727, 0, -655355, -1610612727, 0, -655354, -1073741822, 0, -655353, -1610612734, 0, -655352, -1610612727, 0, -655351, -1610612727, 0, -655350, -1610612727, 0, -655349, -1610612727, 0, -655348, -1610612727, 0, -655347, -1610612727, 0, -655346, -1610612727, 0, -655345, -1610612727, 0, -655344, -1610612727, 0, -655343, -1610612727, 0, -655342, 7, 0, -655341, 2, 0, -655340, 2, 0, -655339, 2, 0, -655338, 2, 0, -655337, 2, 0, -655336, 2, 0, -655335, 2, 0, -655334, 2, 0, -655333, 2, 0, -655332, 2, 0, -655331, 2, 0, -655330, 2, 0, -655329, 2, 0, -655328, 2, 0, -655327, 2, 0, -655326, 2, 0, -655325, -1610612729, 0, -655324, -1610612727, 0, -655323, -1610612727, 0, -655322, -1610612727, 0, -655321, -1610612727, 0, -655320, -1610612727, 0, -655319, -1610612727, 0, -655318, -1610612727, 0, -655317, -1610612727, 0, -655316, -1610612727, 0, -655302, -1073741822, 0, -655301, -1073741814, 0, -524293, -1610612726, 0, -524292, -1610612734, 0, -524291, -1610612727, 0, -524290, -1610612727, 0, -524289, -1610612727, 0, -589824, -1610612727, 0, -589823, -1610612727, 0, -589822, -1610612727, 0, -589820, -1610612727, 0, -589819, -1610612727, 0, -589818, -1073741822, 0, -589817, -1610612734, 0, -589816, -1610612727, 0, -589815, -1610612727, 0, -589814, -1610612727, 0, -589813, -1610612727, 0, -589812, -1610612727, 0, -589811, -1610612727, 0, -589810, -1610612727, 0, -589809, -1610612727, 0, -589808, 7, 0, -589807, 2, 0, -589806, 3, 0, -589805, 3, 0, -589804, 1610612738, 0, -589803, 1610612738, 0, -589802, 1610612738, 0, -589801, 1610612738, 0, -589800, 1610612738, 0, -589799, 1610612738, 0, -589798, 1610612738, 0, -589797, 1610612738, 0, -589796, 1610612738, 0, -589795, 1610612738, 0, -589794, 1610612738, 0, -589793, 1610612738, 0, -589792, 1610612738, 0, -589791, 1610612738, 0, -589790, 1610612738, 0, -589789, 1610612743, 0, -589788, -1610612727, 0, -589787, -1610612727, 0, -589786, -1610612727, 0, -589785, -1610612727, 0, -589784, -1610612727, 0, -589783, -1610612727, 0, -589782, -1610612727, 0, -589781, -1610612727, 0, -589780, -1610612727, 0, -589766, -1073741822, 0, -589765, -1073741814, 0, -458757, -1610612726, 0, -458756, -1610612734, 0, -458755, -1610612727, 0, -458754, -1610612727, 0, -458753, -1610612727, 0, -524288, -1610612727, 0, -524287, -1610612727, 0, -524286, -1610612727, 0, -524284, -1610612727, 0, -524283, -1610612727, 0, -524282, -1073741822, 0, -524281, 3, 0, -524280, 2, 0, -524279, 2, 0, -524278, 2, 0, -524277, 2, 0, -524276, 2, 0, -524275, 2, 0, -524274, 2, 0, -524273, 2, 0, -524272, 3, 0, -524271, 3, 0, -524270, 1610612738, 0, -524269, 1610612743, 0, -524268, -1610612727, 0, -524267, -1610612727, 0, -524266, -1610612727, 0, -524265, -1610612727, 0, -524264, -1610612727, 0, -524263, -1610612727, 0, -524262, -1610612727, 0, -524261, -1610612727, 0, -524260, -1610612727, 0, -524259, -1610612727, 0, -524258, -1610612727, 0, -524257, -1610612727, 0, -524256, -1610612727, 0, -524255, -1610612727, 0, -524254, -1610612727, 0, -524253, -1610612727, 0, -524252, 7, 0, -524251, 2, 0, -524250, 2, 0, -524248, -1610612727, 0, -524247, -1610612727, 0, -524246, -1610612727, 0, -524245, -1610612727, 0, -524244, -1610612727, 0, -524230, -1073741822, 0, -524229, -1073741814, 0, -393221, -1610612726, 0, -393220, -1610612734, 0, -393219, -1610612727, 0, -393218, -1610612727, 0, -393217, -1610612727, 0, -458752, -1610612727, 0, -458751, -1610612727, 0, -458750, -1610612727, 0, -458748, -1610612727, 0, -458747, -1610612727, 0, -458746, -1073741817, 0, -458745, 1610612738, 0, -458744, 1610612738, 0, -458743, 1610612738, 0, -458742, 1610612738, 0, -458741, 1610612738, 0, -458740, 1610612738, 0, -458739, 1610612738, 0, -458738, 1610612738, 0, -458737, 1610612738, 0, -458736, 1610612738, 0, -458735, 1610612743, 0, -458731, -1610612727, 0, -458730, -1610612727, 0, -458729, -1610612727, 0, -458728, -1610612727, 0, -458727, -1610612727, 0, -458726, -1610612727, 0, -458725, -1610612727, 0, -458724, -1610612727, 0, -458723, -1610612727, 0, -458722, -1610612727, 0, -458721, -1610612727, 0, -458720, -1610612727, 0, -458719, -1610612727, 0, -458718, -1610612727, 0, -458717, -1610612727, 0, -458716, -1073741817, 0, -458715, 1610612738, 0, -458714, 1610612738, 0, -458713, 2, 0, -458712, 2, 0, -458711, -1610612727, 0, -458710, -1610612727, 0, -458709, -1610612727, 0, -458694, -1073741822, 0, -458693, -1073741814, 0, -327685, -1610612726, 0, -327684, -1610612734, 0, -327683, -1610612727, 0, -327682, -1610612727, 0, -327681, -1610612727, 0, -393216, -1610612727, 0, -393215, -1610612727, 0, -393214, -1610612727, 0, -393212, -1610612727, 0, -393211, -1610612727, 0, -393210, -1610612727, 0, -393209, -1610612727, 0, -393208, -1610612727, 0, -393207, -1610612727, 0, -393206, -1610612727, 0, -393205, -1610612727, 0, -393204, -1610612727, 0, -393203, -1610612727, 0, -393202, -1610612727, 0, -393201, -1610612727, 0, -393200, -1610612727, 0, -393199, -1610612727, 0, -393198, -1610612727, 0, -393197, -1610612727, 0, -393196, -1610612727, 0, -393195, -1610612727, 0, -393194, -1610612727, 0, -393193, -1610612727, 0, -393192, -1610612727, 0, -393191, -1610612727, 0, -393190, -1610612727, 0, -393189, -1610612727, 0, -393188, -1610612727, 0, -393187, -1610612727, 0, -393186, -1610612727, 0, -393185, -1610612727, 0, -393184, -1610612727, 0, -393183, -1610612727, 0, -393182, -1610612727, 0, -393181, -1610612727, 0, -393180, -1610612727, 0, -393179, -1610612727, 0, -393178, -1610612727, 0, -393177, -1610612727, 0, -393176, -1610612727, 0, -393175, -1610612727, 0, -393174, -1610612727, 0, -393173, -1610612727, 0, -393158, -1073741822, 0, -393157, -1073741814, 0, -262149, -1610612726, 0, -262148, -1610612734, 0, -262147, -1610612727, 0, -262146, -1610612727, 0, -262145, -1610612727, 0, -327680, -1610612727, 0, -327679, -1610612727, 0, -327678, -1610612727, 0, -327676, -1610612727, 0, -327664, -1610612727, 0, -327663, -1610612727, 0, -327662, -1610612727, 0, -327661, -1610612727, 0, -327660, -1610612727, 0, -327659, -1610612727, 0, -327658, -1610612727, 0, -327657, -1610612727, 0, -327656, -1610612727, 0, -327655, 7, 0, -327654, 2, 0, -327653, 2, 0, -327652, 2, 0, -327651, 2, 0, -327650, 2, 0, -327649, 2, 0, -327648, 2, 0, -327647, 2, 0, -327646, 2, 0, -327645, 2, 0, -327644, 2, 0, -327643, 2, 0, -327642, 2, 0, -327641, 2, 0, -327640, 2, 0, -327639, 2, 0, -327638, 2, 0, -327637, -1610612729, 0, -327636, -1610612727, 0, -327622, -1073741822, 0, -327621, -1073741814, 0, -196613, -1610612726, 0, -196612, -1610612734, 0, -196611, -1610612727, 0, -196610, -1610612727, 0, -196609, -1610612727, 0, -262144, -1610612727, 0, -262143, -1610612727, 0, -262142, -1610612727, 0, -262140, -1610612727, 0, -262139, -1610612727, 0, -262138, -1610612727, 0, -262137, -1610612727, 0, -262136, -1610612727, 0, -262135, -1610612727, 0, -262134, -1610612727, 0, -262133, -1610612727, 0, -262132, -1610612727, 0, -262131, -1610612727, 0, -262130, -1610612727, 0, -262129, -1610612727, 0, -262128, -1610612727, 0, -262127, -1610612727, 0, -262126, -1610612727, 0, -262125, -1610612727, 0, -262124, -1610612727, 0, -262123, -1610612727, 0, -262119, -1073741822, 0, -262118, 1610612739, 0, -262117, 1610612738, 0, -262116, 1610612738, 0, -262115, 1610612738, 0, -262114, 1610612738, 0, -262113, 1610612738, 0, -262112, 1610612738, 0, -262111, 1610612738, 0, -262110, 1610612738, 0, -262109, 1610612738, 0, -262108, 1610612738, 0, -262107, 1610612738, 0, -262106, 1610612738, 0, -262105, 1610612738, 0, -262104, 1610612738, 0, -262103, 1610612738, 0, -262102, 1610612738, 0, -262101, 1610612743, 0, -262100, -1610612727, 0, -262086, -1073741822, 0, -262085, -1073741814, 0, -131077, -1610612726, 0, -131076, -1610612734, 0, -131075, -1610612727, 0, -131074, -1610612727, 0, -131073, -1610612727, 0, -196608, -1610612727, 0, -196607, -1610612727, 0, -196606, -1610612727, 0, -196605, -1610612727, 0, -196604, -1610612727, 0, -196603, -1610612727, 0, -196602, -1610612727, 0, -196601, -1610612727, 0, -196600, -1610612727, 0, -196599, -1610612727, 0, -196598, -1610612727, 0, -196597, -1610612727, 0, -196596, -1610612727, 0, -196595, -1610612727, 0, -196594, -1610612727, 0, -196593, -1610612727, 0, -196592, -1610612727, 0, -196591, -1610612727, 0, -196590, -1610612727, 0, -196587, 7, 0, -196586, 2, 0, -196585, 2, 0, -196584, 2, 0, -196583, 3, 0, -196582, -1610612734, 0, -196581, -1610612727, 0, -196580, -1610612727, 0, -196579, -1610612727, 0, -196578, -1610612727, 0, -196577, -1610612727, 0, -196576, -1610612727, 0, -196575, -1610612727, 0, -196574, -1610612727, 0, -196573, -1610612727, 0, -196572, -1610612727, 0, -196571, -1610612727, 0, -196570, -1610612727, 0, -196569, -1610612727, 0, -196566, -1610612727, 0, -196565, -1610612727, 0, -196564, -1610612727, 0, -196550, -1073741822, 0, -196549, -1073741814, 0, -65541, -1610612726, 0, -65540, -1610612734, 0, -65539, -1610612727, 0, -65538, -1610612727, 0, -65537, -1610612727, 0, -131072, -1610612727, 0, -131071, -1610612727, 0, -131070, -1610612727, 0, -131069, -1610612727, 0, -131068, -1610612727, 0, -131067, -1610612727, 0, -131066, -1610612727, 0, -131065, -1610612727, 0, -131064, -1610612727, 0, -131063, -1610612727, 0, -131062, -1610612727, 0, -131061, -1610612727, 0, -131060, -1610612727, 0, -131059, -1610612727, 0, -131058, -1610612727, 0, -131057, -1610612727, 0, -131056, -1610612727, 0, -131055, -1610612727, 0, -131054, 7, 0, -131053, 2, 0, -131052, 2, 0, -131051, 3, 0, -131050, 3, 0, -131049, 3, 0, -131048, 3, 0, -131047, 3, 0, -131046, -1610612734, 0, -131045, -1610612727, 0, -131044, -1610612727, 0, -131043, -1610612727, 0, -131042, -1610612727, 0, -131041, -1610612727, 0, -131040, -1610612727, 0, -131039, -1610612727, 0, -131038, -1610612727, 0, -131037, -1610612727, 0, -131036, -1610612727, 0, -131035, -1610612727, 0, -131034, -1610612727, 0, -131033, -1610612727, 0, -131032, -1610612727, 0, -131031, -1610612727, 0, -131030, -1610612727, 0, -131029, -1610612727, 0, -131028, -1610612727, 0, -131014, -1073741822, 0, -131013, -1073741814, 0, -5, -1610612726, 0, -4, -1610612734, 0, -3, -1610612727, 0, -2, -1610612727, 0, -1, -1610612727, 0, -65536, -1610612727, 0, -65535, -1610612727, 0, -65534, -1610612727, 0, -65533, -1610612727, 0, -65532, -1610612727, 0, -65531, -1610612727, 0, -65530, -1610612727, 0, -65529, -1610612727, 0, -65528, -1610612727, 0, -65527, -1610612727, 0, -65526, -1610612727, 0, -65525, -1610612727, 0, -65524, -1610612727, 0, -65523, -1610612727, 0, -65522, -1610612727, 0, -65521, -1610612727, 0, -65520, 7, 0, -65519, 2, 0, -65518, 2, 0, -65517, 3, 0, -65516, 3, 0, -65515, 3, 0, -65514, 3, 0, -65513, 3, 0, -65512, 3, 0, -65511, 3, 0, -65510, -1610612734, 0, -65509, -1610612727, 0, -65508, -1610612727, 0, -65507, -1610612727, 0, -65506, -1610612727, 0, -65505, -1610612727, 0, -65504, -1610612727, 0, -65503, -1610612727, 0, -65502, -1610612727, 0, -65501, -1610612727, 0, -65500, -1610612727, 0, -65499, -1610612727, 0, -65498, -1610612727, 0, -65497, -1610612727, 0, -65496, -1610612727, 0, -65495, -1610612727, 0, -65494, -1610612727, 0, -65493, -1610612727, 0, -65478, -1073741822, 0, -65477, -1073741814, 0, 65531, -1610612726, 0, 65532, 1610612739, 0, 65533, 2, 0, 65534, 2, 0, 65535, 2, 0, 0, 2, 0, 1, 2, 0, 2, 2, 0, 3, 2, 0, 4, 2, 0, 5, 2, 0, 6, 2, 0, 7, 2, 0, 8, 2, 0, 9, 2, 0, 10, 2, 0, 11, 2, 0, 12, 2, 0, 13, 2, 0, 14, 2, 0, 15, 2, 0, 16, 2, 0, 17, 2, 0, 18, 2, 0, 19, 2, 0, 20, 2, 0, 21, 2, 0, 22, 2, 0, 23, 2, 0, 24, 2, 0, 25, 1610612739, 0, 26, 1610612739, 0, 27, 2, 0, 28, 2, 0, 29, 2, 0, 30, 2, 0, 31, 2, 0, 32, 2, 0, 33, 2, 0, 34, 2, 0, 35, 2, 0, 36, 2, 0, 37, 2, 0, 38, 2, 0, 39, 2, 0, 40, 2, 0, 41, 2, 0, 42, 2, 0, 43, 2, 0, 44, 2, 0, 45, 2, 0, 46, 2, 0, 47, 2, 0, 48, 2, 0, 49, 2, 0, 50, 2, 0, 51, 2, 0, 52, 2, 0, 53, 2, 0, 54, 2, 0, 55, 2, 0, 56, 2, 0, 57, 2, 0, 58, 3, 0, 59, -1073741814, 0, 131067, -1610612721, 0, 131068, 10, 0, 131069, 10, 0, 131070, 10, 0, 131071, 10, 0, 65536, 10, 0, 65537, 10, 0, 65538, 10, 0, 65539, 10, 0, 65540, 10, 0, 65541, 10, 0, 65542, 10, 0, 65543, 10, 0, 65544, 10, 0, 65545, 10, 0, 65546, 10, 0, 65547, 10, 0, 65548, 10, 0, 65549, 10, 0, 65550, 10, 0, 65551, 10, 0, 65552, 10, 0, 65553, 10, 0, 65554, 10, 0, 65555, 10, 0, 65556, 10, 0, 65557, 10, 0, 65558, 10, 0, 65559, 10, 0, 65560, 10, 0, 65561, 10, 0, 65562, 10, 0, 65563, 10, 0, 65564, 10, 0, 65565, 10, 0, 65566, 10, 0, 65567, 10, 0, 65568, 10, 0, 65569, 10, 0, 65570, 10, 0, 65571, 10, 0, 65572, 10, 0, 65573, 10, 0, 65574, 10, 0, 65575, 10, 0, 65576, 10, 0, 65577, 10, 0, 65578, 10, 0, 65579, 10, 0, 65580, 10, 0, 65581, 10, 0, 65582, 10, 0, 65583, 10, 0, 65584, 10, 0, 65585, 10, 0, 65586, 10, 0, 65587, 10, 0, 65588, 10, 0, 65589, 10, 0, 65590, 10, 0, 65591, 10, 0, 65592, 10, 0, 65593, 10, 0, 65594, 10, 0, 65595, 15, 0 ) + +[node name="DropThroughPlatform" parent="." instance=ExtResource( 14 )] +position = Vector2( 1128, -27 ) +tile_data = PoolIntArray( -2949142, 1, 0, -2949141, 0, 0, -2949140, 0, 0, -2949139, 0, 0, -2949138, 0, 0, -2949137, 2, 0, -393222, 1, 0, -393221, 0, 0, -393219, 2, 0, -458751, 1, 0, -458750, 0, 0, -458748, 2, 0 ) + +[node name="FrogFreeButton" parent="." instance=ExtResource( 10 )] +position = Vector2( 696, -144 ) + +[node name="FrogFreeButton2" parent="." instance=ExtResource( 10 )] +position = Vector2( 744, -624 ) +frog_number = 1 + +[node name="Digit" parent="FrogFreeButton2" index="3"] +frame = 1 + +[node name="IndicatorPlayer" parent="FrogFreeButton2/Indicator" index="0"] +anims/RESET = SubResource( 12 ) +anims/onning = SubResource( 13 ) + +[node name="GateButton" parent="." instance=ExtResource( 16 )] +position = Vector2( 108, -30 ) + +[node name="GateBlock" parent="." instance=ExtResource( 15 )] +position = Vector2( 156, -12 ) + +[node name="GateBlock2" parent="GateBlock" instance=ExtResource( 15 )] +position = Vector2( 0, -24 ) + +[node name="GateBlock3" parent="GateBlock" instance=ExtResource( 15 )] +position = Vector2( 0, -48 ) + +[node name="GateBlock4" parent="GateBlock" instance=ExtResource( 15 )] +position = Vector2( 0, -72 ) + +[node name="GateBlock5" parent="GateBlock" instance=ExtResource( 15 )] +position = Vector2( 0, -96 ) + +[node name="GateBlock6" parent="GateBlock" instance=ExtResource( 15 )] +position = Vector2( 0, -120 ) + +[connection signal="ready" from="." to="BoundFrog" method="_on_Level_ready"] +[connection signal="body_exited" from="Blobby/BlobbySkin" to="Blobby" method="_on_BlobbySkin_body_exited"] +[connection signal="button_pushed" from="FrogFreeButton" to="BoundFrog" method="_on_FrogFreeButton_pushed"] +[connection signal="button_pushed" from="FrogFreeButton2" to="BoundFrog2" method="_on_FrogFreeButton_pushed"] + +[editable path="SignalManager"] +[editable path="LevelState"] +[editable path="UserInterface"] +[editable path="UserInterface/HUD"] +[editable path="BlobbyCam"] +[editable path="Blobby"] +[editable path="Flyer"] +[editable path="Flyer2"] +[editable path="BoundFrog2"] +[editable path="BoundFrog2/WhatAreFrog"] +[editable path="BoundFrog2/RopeAnchor"] +[editable path="FrogFreeButton2"] diff --git a/src/Levels/Level 0.1.tscn b/src/Levels/Level 0.1.tscn index b53e204..4ee1244 100644 --- a/src/Levels/Level 0.1.tscn +++ b/src/Levels/Level 0.1.tscn @@ -277,7 +277,7 @@ position = Vector2( -70, 1 ) scale = Vector2( 0.878906, 0.936025 ) [node name="BlobbySprite" parent="Blobby" index="5"] -frame = 7 +frame = 10 [node name="BlobbymationTree" parent="Blobby/BlobbySprite" index="0"] parameters/playback = SubResource( 14 ) diff --git a/src/Levels/Level 1.tscn b/src/Levels/Level 1.tscn index 1f40043..413d2f4 100644 --- a/src/Levels/Level 1.tscn +++ b/src/Levels/Level 1.tscn @@ -134,7 +134,7 @@ position = Vector2( -70, -1.90735e-06 ) scale = Vector2( 0.878906, 0.936025 ) [node name="BlobbySprite" parent="Blobby" index="5"] -frame = 5 +frame = 7 [node name="BlobbymationTree" parent="Blobby/BlobbySprite" index="0"] parameters/playback = SubResource( 6 ) diff --git a/src/Levels/Level 2.tscn b/src/Levels/Level 2.tscn index aa6377a..9aa240b 100644 --- a/src/Levels/Level 2.tscn +++ b/src/Levels/Level 2.tscn @@ -131,11 +131,11 @@ drag_margin_bottom = 0.3 [node name="Blobby" parent="." instance=ExtResource( 11 )] unique_name_in_owner = true -position = Vector2( -70, -1.90735e-06 ) +position = Vector2( -64, -1.90735e-06 ) scale = Vector2( 0.878906, 0.936025 ) [node name="BlobbySprite" parent="Blobby" index="5"] -frame = 8 +frame = 7 [node name="BlobbymationTree" parent="Blobby/BlobbySprite" index="0"] parameters/playback = SubResource( 6 ) @@ -161,7 +161,7 @@ position = Vector2( -17, 0 ) position = Vector2( 816, -272 ) [node name="BoundFrog" parent="." instance=ExtResource( 16 )] -position = Vector2( 768, -219 ) +position = Vector2( 769, -220 ) movement_radius = 6 [node name="TileMap" type="TileMap" parent="."] @@ -209,73 +209,88 @@ position = Vector2( 16, -207 ) position = Vector2( 336, -206 ) [node name="Spikes" parent="." instance=ExtResource( 20 )] -position = Vector2( 448, 176 ) +position = Vector2( 447, 176 ) [node name="Spikes2" parent="." instance=ExtResource( 20 )] -position = Vector2( 480, 176 ) +position = Vector2( 473, 176 ) [node name="Spikes3" parent="." instance=ExtResource( 20 )] -position = Vector2( 512, 176 ) +position = Vector2( 499, 176 ) [node name="Spikes4" parent="." instance=ExtResource( 20 )] -position = Vector2( 544, 176 ) +position = Vector2( 525, 176 ) [node name="Spikes5" parent="." instance=ExtResource( 20 )] -position = Vector2( 576, 176 ) +position = Vector2( 551, 176 ) [node name="Spikes6" parent="." instance=ExtResource( 20 )] -position = Vector2( 608, 176 ) +position = Vector2( 577, 176 ) [node name="Spikes7" parent="." instance=ExtResource( 20 )] -position = Vector2( 640, 176 ) +position = Vector2( 603, 176 ) [node name="Spikes8" parent="." instance=ExtResource( 20 )] -position = Vector2( 672, 176 ) +position = Vector2( 629, 176 ) [node name="Spikes9" parent="." instance=ExtResource( 20 )] -position = Vector2( 704, 176 ) +position = Vector2( 655, 176 ) [node name="Spikes10" parent="." instance=ExtResource( 20 )] -position = Vector2( 736, 176 ) +position = Vector2( 681, 176 ) [node name="Spikes11" parent="." instance=ExtResource( 20 )] -position = Vector2( 768, 176 ) +position = Vector2( 707, 176 ) [node name="Spikes12" parent="." instance=ExtResource( 20 )] -position = Vector2( 800, 176 ) +position = Vector2( 733, 176 ) [node name="Spikes13" parent="." instance=ExtResource( 20 )] -position = Vector2( 832, 176 ) +position = Vector2( 759, 176 ) [node name="Spikes14" parent="." instance=ExtResource( 20 )] -position = Vector2( 864, 176 ) +position = Vector2( 785, 176 ) [node name="Spikes15" parent="." instance=ExtResource( 20 )] -position = Vector2( 896, 176 ) +position = Vector2( 811, 176 ) [node name="Spikes16" parent="." instance=ExtResource( 20 )] -position = Vector2( 928, 176 ) +position = Vector2( 837, 176 ) [node name="Spikes17" parent="." instance=ExtResource( 20 )] -position = Vector2( 960, 176 ) +position = Vector2( 863, 176 ) [node name="Spikes18" parent="." instance=ExtResource( 20 )] -position = Vector2( 992, 176 ) +position = Vector2( 889, 176 ) [node name="Spikes19" parent="." instance=ExtResource( 20 )] -position = Vector2( 1024, 176 ) +position = Vector2( 915, 176 ) [node name="Spikes20" parent="." instance=ExtResource( 20 )] -position = Vector2( 1056, 176 ) +position = Vector2( 941, 176 ) [node name="Spikes21" parent="." instance=ExtResource( 20 )] -position = Vector2( 1088, 176 ) +position = Vector2( 967, 176 ) [node name="Spikes22" parent="." instance=ExtResource( 20 )] -position = Vector2( 1120, 176 ) +position = Vector2( 993, 176 ) [node name="Spikes23" parent="." instance=ExtResource( 20 )] -position = Vector2( 1152, 176 ) +position = Vector2( 1019, 176 ) + +[node name="Spikes24" parent="." instance=ExtResource( 20 )] +position = Vector2( 1045, 176 ) + +[node name="Spikes25" parent="." instance=ExtResource( 20 )] +position = Vector2( 1071, 176 ) + +[node name="Spikes26" parent="." instance=ExtResource( 20 )] +position = Vector2( 1097, 176 ) + +[node name="Spikes27" parent="." instance=ExtResource( 20 )] +position = Vector2( 1123, 176 ) + +[node name="Spikes28" parent="." instance=ExtResource( 20 )] +position = Vector2( 1149, 176 ) [node name="Coin" parent="." instance=ExtResource( 21 )] position = Vector2( 720, 24 ) diff --git a/src/Levels/Level 3.tscn b/src/Levels/Level 3.tscn index 2d6a6ae..aa114bf 100644 --- a/src/Levels/Level 3.tscn +++ b/src/Levels/Level 3.tscn @@ -197,7 +197,7 @@ position = Vector2( -38, 0 ) scale = Vector2( 0.878906, 0.936025 ) [node name="BlobbySprite" parent="Blobby" index="5"] -frame = 9 +frame = 7 [node name="BlobbymationTree" parent="Blobby/BlobbySprite" index="0"] parameters/playback = SubResource( 6 ) diff --git a/src/Levels/Level 4.tscn b/src/Levels/Level 4.tscn index 3b5dbb5..1b10694 100644 --- a/src/Levels/Level 4.tscn +++ b/src/Levels/Level 4.tscn @@ -1,22 +1,20 @@ -[gd_scene load_steps=29 format=2] +[gd_scene load_steps=18 format=2] -[ext_resource path="res://src/Environment/Legacy/AlienShipTileSet.tres" type="TileSet" id=1] +[ext_resource path="res://src/Environment/GreenHouseTiles.tres" type="TileSet" id=1] [ext_resource path="res://src/Utilities/SignalManager.tscn" type="PackedScene" id=2] [ext_resource path="res://src/Utilities/LevelState.tscn" type="PackedScene" id=3] [ext_resource path="res://src/Actors/BlobbyCam.tscn" type="PackedScene" id=4] -[ext_resource path="res://src/Actors/Friendlies/BoundFrog.tscn" type="PackedScene" id=5] -[ext_resource path="res://src/Actors/Enemies/Flyer.tscn" type="PackedScene" id=6] -[ext_resource path="res://src/BenefitialObjects/Coin.tscn" type="PackedScene" id=7] +[ext_resource path="res://src/Environment/DropThroughPlatforms.tres" type="TileSet" id=5] +[ext_resource path="res://src/Utilities/SceneAudio.tscn" type="PackedScene" id=6] +[ext_resource path="res://src/Contraptions/Triggers/ElevatorButton.tscn" type="PackedScene" id=7] [ext_resource path="res://src/Actors/Blobby/Blobby.tscn" type="PackedScene" id=8] [ext_resource path="res://src/UserInterface/UserInterface.tscn" type="PackedScene" id=9] -[ext_resource path="res://src/Contraptions/Triggers/FrogFreeButton.tscn" type="PackedScene" id=10] +[ext_resource path="res://src/Levels/Templates/LevelTemplate.gd" type="Script" id=10] [ext_resource path="res://src/Contraptions/Portal/Portal.tscn" type="PackedScene" id=11] -[ext_resource path="res://src/Platforms/Spring/SpringPlatform.tscn" type="PackedScene" id=13] -[ext_resource path="res://src/Platforms/legacy/DropThroughPlatform.tscn" type="PackedScene" id=14] -[ext_resource path="res://src/Contraptions/GateBlock.tscn" type="PackedScene" id=15] -[ext_resource path="res://src/Contraptions/Triggers/GateButton.tscn" type="PackedScene" id=16] +[ext_resource path="res://assets/environment/decor/platform-plants.png" type="Texture" id=12] +[ext_resource path="res://src/Platforms/FlyingLaserCutter.tscn" type="PackedScene" id=13] -[sub_resource type="Shader" id=16] +[sub_resource type="Shader" id=15] code = "shader_type canvas_item; uniform vec4 in_color:hint_color; @@ -48,188 +46,41 @@ void fragment(){ COLOR=vec4(circle) * color; }" -[sub_resource type="ShaderMaterial" id=17] -shader = SubResource( 16 ) +[sub_resource type="ShaderMaterial" id=16] +shader = SubResource( 15 ) shader_param/in_color = Color( 0, 0, 0, 1 ) shader_param/out_color = Color( 0, 0, 0, 0.568627 ) shader_param/in_out = 0.0 shader_param/position = -1.5 shader_param/size = Vector2( 32, 32 ) -[sub_resource type="AnimationNodeStateMachinePlayback" id=15] +[sub_resource type="AnimationNodeStateMachinePlayback" id=6] -[sub_resource type="AnimationNodeStateMachinePlayback" id=5] +[sub_resource type="TileSet" id=5] +0/name = "platform-plants.png 0" +0/texture = ExtResource( 12 ) +0/tex_offset = Vector2( 0, 0 ) +0/modulate = Color( 1, 1, 1, 1 ) +0/region = Rect2( 16, 0, 256, 16 ) +0/tile_mode = 2 +0/autotile/icon_coordinate = Vector2( 5, 0 ) +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 -[sub_resource type="Animation" id=6] -length = 0.001 -tracks/0/type = "value" -tracks/0/path = NodePath(".:frame") -tracks/0/interp = 1 -tracks/0/loop_wrap = true -tracks/0/imported = false -tracks/0/enabled = true -tracks/0/keys = { -"times": PoolRealArray( 0 ), -"transitions": PoolRealArray( 1 ), -"update": 0, -"values": [ 0 ] -} - -[sub_resource type="Animation" id=7] -resource_name = "hunting" -length = 1.62 -loop = true -step = 0.01 -tracks/0/type = "value" -tracks/0/path = NodePath(".:frame") -tracks/0/interp = 1 -tracks/0/loop_wrap = true -tracks/0/imported = false -tracks/0/enabled = true -tracks/0/keys = { -"times": PoolRealArray( 0 ), -"transitions": PoolRealArray( 1 ), -"update": 1, -"values": [ 0 ] -} -tracks/1/type = "value" -tracks/1/path = NodePath(".:scale") -tracks/1/interp = 1 -tracks/1/loop_wrap = true -tracks/1/imported = false -tracks/1/enabled = true -tracks/1/keys = { -"times": PoolRealArray( 0 ), -"transitions": PoolRealArray( 1 ), -"update": 1, -"values": [ Vector2( -1, 1 ) ] -} - -[sub_resource type="Animation" id=8] -resource_name = "huntingLeft" -length = 0.042 -loop = true -tracks/0/type = "value" -tracks/0/path = NodePath(".:frame") -tracks/0/interp = 1 -tracks/0/loop_wrap = true -tracks/0/imported = false -tracks/0/enabled = true -tracks/0/keys = { -"times": PoolRealArray( 0 ), -"transitions": PoolRealArray( 1 ), -"update": 1, -"values": [ 0 ] -} -tracks/1/type = "value" -tracks/1/path = NodePath(".:scale") -tracks/1/interp = 1 -tracks/1/loop_wrap = true -tracks/1/imported = false -tracks/1/enabled = true -tracks/1/keys = { -"times": PoolRealArray( 0 ), -"transitions": PoolRealArray( 1 ), -"update": 1, -"values": [ Vector2( 1, 1 ) ] -} - -[sub_resource type="Animation" id=9] -resource_name = "searching" -length = 1.62 -loop = true -step = 0.01 -tracks/0/type = "value" -tracks/0/path = NodePath(".:frame") -tracks/0/interp = 1 -tracks/0/loop_wrap = true -tracks/0/imported = false -tracks/0/enabled = true -tracks/0/keys = { -"times": PoolRealArray( 0.02 ), -"transitions": PoolRealArray( 1 ), -"update": 1, -"values": [ 1 ] -} -tracks/1/type = "value" -tracks/1/path = NodePath(".:scale") -tracks/1/interp = 1 -tracks/1/loop_wrap = true -tracks/1/imported = false -tracks/1/enabled = true -tracks/1/keys = { -"times": PoolRealArray( 0 ), -"transitions": PoolRealArray( 1 ), -"update": 1, -"values": [ Vector2( -1, 1 ) ] -} - -[sub_resource type="Animation" id=10] -resource_name = "searchingLeft" -length = 1.62 -loop = true -step = 0.01 -tracks/0/type = "value" -tracks/0/path = NodePath(".:frame") -tracks/0/interp = 1 -tracks/0/loop_wrap = true -tracks/0/imported = false -tracks/0/enabled = true -tracks/0/keys = { -"times": PoolRealArray( 0 ), -"transitions": PoolRealArray( 1 ), -"update": 1, -"values": [ 1 ] -} -tracks/1/type = "value" -tracks/1/path = NodePath(".:scale") -tracks/1/interp = 1 -tracks/1/loop_wrap = true -tracks/1/imported = false -tracks/1/enabled = true -tracks/1/keys = { -"times": PoolRealArray( 0 ), -"transitions": PoolRealArray( 1 ), -"update": 1, -"values": [ Vector2( 1, 1 ) ] -} - -[sub_resource type="AnimationNodeStateMachinePlayback" id=11] - -[sub_resource type="AnimationNodeStateMachinePlayback" id=14] - -[sub_resource type="Animation" id=12] -length = 0.001 -tracks/0/type = "value" -tracks/0/path = NodePath(".:position") -tracks/0/interp = 1 -tracks/0/loop_wrap = true -tracks/0/imported = false -tracks/0/enabled = true -tracks/0/keys = { -"times": PoolRealArray( 0 ), -"transitions": PoolRealArray( 1 ), -"update": 0, -"values": [ Vector2( 0, -7 ) ] -} - -[sub_resource type="Animation" id=13] -resource_name = "onning" -length = 0.809 -tracks/0/type = "value" -tracks/0/path = NodePath(".: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.8 ), -"transitions": PoolRealArray( 1, 2.73207 ), -"update": 0, -"values": [ Vector2( 0, -7 ), Vector2( 0, 7 ) ] -} - -[node name="Level 4" type="Node2D"] +[node name="LevelTemplate" type="Node2D"] +script = ExtResource( 10 ) __meta__ = { "_edit_horizontal_guides_": [ 464.0 ], "_edit_vertical_guides_": [ 2880.0 ] @@ -237,6 +88,8 @@ __meta__ = { [node name="SignalManager" parent="." instance=ExtResource( 2 )] +[node name="SceneAudio" parent="." instance=ExtResource( 6 )] + [node name="LevelState" parent="." instance=ExtResource( 3 )] unique_name_in_owner = true @@ -244,7 +97,7 @@ unique_name_in_owner = true visible = false [node name="SceneTransition" type="ColorRect" parent="TransitionLayer"] -material = SubResource( 17 ) +material = SubResource( 16 ) anchor_right = 1.0 anchor_bottom = 1.0 grow_horizontal = 2 @@ -260,144 +113,58 @@ wait_time = 20.0 [node name="BlobbyCam" parent="." instance=ExtResource( 4 )] unique_name_in_owner = true -drag_margin_top = 0.13 drag_margin_bottom = 0.3 [node name="Blobby" parent="." instance=ExtResource( 8 )] unique_name_in_owner = true -position = Vector2( 21, -9 ) - -[node name="StateLabel" parent="Blobby" index="0"] -visible = true +position = Vector2( -70, -1.90735e-06 ) +scale = Vector2( 0.878906, 0.936025 ) [node name="BlobbySprite" parent="Blobby" index="5"] -frame = 9 +frame = 7 [node name="BlobbymationTree" parent="Blobby/BlobbySprite" index="0"] -parameters/playback = SubResource( 15 ) - -[node name="Coin" parent="." instance=ExtResource( 7 )] -position = Vector2( 216, -216 ) - -[node name="Coin2" parent="." instance=ExtResource( 7 )] -position = Vector2( 695, -48 ) - -[node name="Coin3" parent="." instance=ExtResource( 7 )] -position = Vector2( 1272, -192 ) - -[node name="Flyer" parent="." instance=ExtResource( 6 )] -position = Vector2( 483, -270 ) -aggressive = false - -[node name="AnimationTree" parent="Flyer/FlyerSprite" index="1"] -parameters/playback = SubResource( 5 ) - -[node name="Position2D2" parent="Flyer/PatrolPath" index="0"] -position = Vector2( -3, -21 ) - -[node name="Position2D3" parent="Flyer/PatrolPath" index="1"] -position = Vector2( -3, 12 ) - -[node name="Flyer2" parent="." instance=ExtResource( 6 )] -position = Vector2( 1041, -32 ) -aggressive = false - -[node name="AnimationPlayer" parent="Flyer2/FlyerSprite" index="0"] -anims/RESET = SubResource( 6 ) -anims/hunting = SubResource( 7 ) -anims/huntingLeft = SubResource( 8 ) -anims/searching = SubResource( 9 ) -anims/searchingLeft = SubResource( 10 ) - -[node name="AnimationTree" parent="Flyer2/FlyerSprite" index="1"] -parameters/playback = SubResource( 11 ) - -[node name="Position2D2" parent="Flyer2/PatrolPath" index="0"] -position = Vector2( -3, -21 ) - -[node name="Position2D3" parent="Flyer2/PatrolPath" index="1"] -position = Vector2( -3, 12 ) - -[node name="BoundFrog" parent="." instance=ExtResource( 5 )] -position = Vector2( 778, -9 ) - -[node name="BoundFrog2" parent="." instance=ExtResource( 5 )] -position = Vector2( 1266, -537 ) - -[node name="WhatAreFrog" parent="BoundFrog2" index="0"] -frog_number = 1 - -[node name="Digit" parent="BoundFrog2/WhatAreFrog" index="3"] -frame = 1 - -[node name="AnimationTree" parent="BoundFrog2/WhatAreFrog/FrogSprite" index="1"] -root_motion_track = NodePath(".") -parameters/playback = SubResource( 14 ) - -[node name="Portal" parent="." instance=ExtResource( 11 )] -position = Vector2( 1368, -552 ) - -[node name="SpringPlatform" parent="." instance=ExtResource( 13 )] -position = Vector2( 1272, -36 ) - -[node name="SpringPlatform2" parent="." instance=ExtResource( 13 )] -position = Vector2( 600, -279 ) +parameters/playback = SubResource( 6 ) [node name="TileMap" type="TileMap" parent="."] unique_name_in_owner = true tile_set = ExtResource( 1 ) -cell_size = Vector2( 24, 24 ) +cell_size = Vector2( 16, 16 ) cell_quadrant_size = 3 cell_custom_transform = Transform2D( 24, 0, 0, 24, 0, 0 ) collision_layer = 8 collision_mask = 8 bake_navigation = true format = 1 -tile_data = PoolIntArray( -1966085, 1610612751, 0, -1966084, 1610612746, 0, -1966083, 1610612746, 0, -1966082, 1610612746, 0, -1966081, 1610612746, 0, -2031616, 1610612746, 0, -2031615, 1610612746, 0, -2031614, 1610612746, 0, -2031613, 1610612746, 0, -2031612, 1610612746, 0, -2031611, 1610612746, 0, -2031610, 1610612746, 0, -2031609, 1610612746, 0, -2031608, 1610612746, 0, -2031607, 1610612746, 0, -2031606, 1610612746, 0, -2031605, 1610612746, 0, -2031604, 1610612746, 0, -2031603, 1610612746, 0, -2031602, 1610612746, 0, -2031601, 1610612746, 0, -2031600, 1610612746, 0, -2031599, 1610612746, 0, -2031598, 1610612746, 0, -2031597, 1610612746, 0, -2031596, 1610612746, 0, -2031595, 1610612746, 0, -2031594, 1610612746, 0, -2031593, 1610612746, 0, -2031592, 1610612746, 0, -2031591, 1610612746, 0, -2031590, 1610612746, 0, -2031589, 1610612746, 0, -2031588, 1610612746, 0, -2031587, 1610612746, 0, -2031586, 1610612746, 0, -2031585, 1610612746, 0, -2031584, 1610612746, 0, -2031583, 1610612746, 0, -2031582, 1610612746, 0, -2031581, 1610612746, 0, -2031580, 1610612746, 0, -2031579, 1610612746, 0, -2031578, 1610612746, 0, -2031577, 1610612746, 0, -2031576, 1610612746, 0, -2031575, 1610612746, 0, -2031574, 1610612746, 0, -2031573, 1610612746, 0, -2031572, 1610612746, 0, -2031571, 1610612746, 0, -2031570, 1610612746, 0, -2031569, 1610612746, 0, -2031568, 1610612746, 0, -2031567, 1610612746, 0, -2031566, 1610612746, 0, -2031565, 1610612746, 0, -2031564, 1610612746, 0, -2031563, 1610612746, 0, -2031562, 1610612746, 0, -2031561, 1610612746, 0, -2031560, 1610612746, 0, -2031559, 1610612746, 0, -2031558, 1610612746, 0, -2031557, -1073741809, 0, -1900549, -1610612726, 0, -1900548, 1610612739, 0, -1900547, 1610612738, 0, -1900546, 1610612738, 0, -1900545, 1610612738, 0, -1966080, 1610612738, 0, -1966079, 1610612738, 0, -1966078, 1610612738, 0, -1966077, 1610612738, 0, -1966076, 1610612738, 0, -1966075, 1610612738, 0, -1966074, 1610612738, 0, -1966073, 1610612738, 0, -1966072, 1610612738, 0, -1966071, 1610612738, 0, -1966070, 1610612738, 0, -1966069, 1610612738, 0, -1966068, 1610612738, 0, -1966067, 1610612738, 0, -1966066, 1610612738, 0, -1966065, 1610612738, 0, -1966064, 1610612738, 0, -1966063, 1610612738, 0, -1966062, 1610612738, 0, -1966061, 1610612738, 0, -1966060, 1610612738, 0, -1966059, 1610612738, 0, -1966058, 1610612738, 0, -1966057, 1610612738, 0, -1966056, 1610612738, 0, -1966055, 1610612738, 0, -1966054, 3, 0, -1966053, 3, 0, -1966052, 1610612738, 0, -1966051, 1610612738, 0, -1966050, 1610612738, 0, -1966049, 1610612738, 0, -1966048, 1610612738, 0, -1966047, 1610612738, 0, -1966046, 1610612738, 0, -1966045, 1610612738, 0, -1966044, 1610612738, 0, -1966043, 1610612738, 0, -1966042, 1610612738, 0, -1966041, 1610612738, 0, -1966040, 1610612738, 0, -1966039, 1610612738, 0, -1966038, 1610612738, 0, -1966037, 1610612738, 0, -1966036, 1610612738, 0, -1966035, 1610612738, 0, -1966034, 1610612738, 0, -1966033, 1610612738, 0, -1966032, 1610612738, 0, -1966031, 1610612738, 0, -1966030, 1610612738, 0, -1966029, 1610612738, 0, -1966028, 1610612738, 0, -1966027, 1610612738, 0, -1966026, 1610612738, 0, -1966025, 1610612738, 0, -1966024, 1610612738, 0, -1966023, 1610612738, 0, -1966022, 1610612739, 0, -1966021, -1073741814, 0, -1835013, -1610612726, 0, -1835012, -1610612734, 0, -1900518, -1073741822, 0, -1900517, -1610612734, 0, -1900486, -1073741822, 0, -1900485, -1073741814, 0, -1769477, -1610612726, 0, -1769476, -1610612734, 0, -1834982, -1073741822, 0, -1834981, -1610612734, 0, -1834950, -1073741822, 0, -1834949, -1073741814, 0, -1703941, -1610612726, 0, -1703940, -1610612734, 0, -1769446, -1073741822, 0, -1769445, -1610612734, 0, -1769414, -1073741822, 0, -1769413, -1073741814, 0, -1638405, -1610612726, 0, -1638404, -1610612734, 0, -1703910, -1073741822, 0, -1703909, -1610612734, 0, -1703878, -1073741822, 0, -1703877, -1073741814, 0, -1572869, -1610612726, 0, -1572868, -1610612734, 0, -1638374, -1073741822, 0, -1638373, 1610612739, 0, -1638372, 2, 0, -1638371, 2, 0, -1638370, 2, 0, -1638369, 2, 0, -1638368, 2, 0, -1638367, 2, 0, -1638366, 2, 0, -1638365, -1610612729, 0, -1638342, -1073741822, 0, -1638341, -1073741814, 0, -1507333, -1610612726, 0, -1507332, -1610612734, 0, -1572838, -1073741817, 0, -1572837, 1610612738, 0, -1572836, 1610612738, 0, -1572835, 1610612738, 0, -1572834, 1610612738, 0, -1572833, 1610612738, 0, -1572832, 1610612738, 0, -1572831, 1610612738, 0, -1572830, 1610612738, 0, -1572829, 1610612743, 0, -1572806, -1073741822, 0, -1572805, -1073741814, 0, -1441797, -1610612726, 0, -1441796, -1610612734, 0, -1507270, -1073741822, 0, -1507269, -1073741814, 0, -1376261, -1610612726, 0, -1376260, -1610612734, 0, -1441751, 7, 0, -1441750, 2, 0, -1441749, 2, 0, -1441748, 2, 0, -1441747, 2, 0, -1441746, 2, 0, -1441745, 2, 0, -1441744, 2, 0, -1441743, 2, 0, -1441742, 2, 0, -1441741, 2, 0, -1441740, 2, 0, -1441739, 2, 0, -1441738, 2, 0, -1441737, 2, 0, -1441736, 2, 0, -1441735, 2, 0, -1441734, 3, 0, -1441733, -1073741814, 0, -1310725, -1610612726, 0, -1310724, -1610612734, 0, -1376215, -1073741817, 0, -1376214, 1610612738, 0, -1376213, 1610612738, 0, -1376212, 1610612738, 0, -1376211, 1610612738, 0, -1376210, 1610612738, 0, -1376209, 1610612738, 0, -1376208, 1610612738, 0, -1376207, 1610612738, 0, -1376206, 1610612738, 0, -1376205, 1610612738, 0, -1376204, 1610612738, 0, -1376203, 1610612738, 0, -1376202, 1610612738, 0, -1376201, 1610612738, 0, -1376200, 1610612738, 0, -1376199, 1610612738, 0, -1376198, 3, 0, -1376197, -1073741814, 0, -1245189, -1610612726, 0, -1245188, -1610612734, 0, -1310683, 2, 0, -1310682, 2, 0, -1310681, 2, 0, -1310662, -1073741822, 0, -1310661, -1073741814, 0, -1179653, -1610612726, 0, -1179652, -1610612734, 0, -1245126, -1073741822, 0, -1245125, -1073741814, 0, -1114117, -1610612726, 0, -1114116, -1610612734, 0, -1179615, 2, 0, -1179614, 2, 0, -1179613, 2, 0, -1179612, 2, 0, -1179590, -1073741822, 0, -1179589, -1073741814, 0, -1048581, -1610612726, 0, -1048580, -1610612734, 0, -1114054, -1073741822, 0, -1114053, -1073741814, 0, -983045, -1610612726, 0, -983044, -1610612734, 0, -983043, -1610612727, 0, -983042, -1610612727, 0, -983041, -1610612727, 0, -1048576, -1610612727, 0, -1048575, -1610612727, 0, -1048574, -1610612727, 0, -1048573, -1610612727, 0, -1048572, -1610612727, 0, -1048571, -1610612727, 0, -1048570, -1610612727, 0, -1048569, -1610612727, 0, -1048568, -1610612727, 0, -1048567, -1610612727, 0, -1048566, -1610612727, 0, -1048565, -1610612727, 0, -1048564, -1610612727, 0, -1048563, -1610612727, 0, -1048562, -1610612727, 0, -1048561, -1610612727, 0, -1048560, -1610612727, 0, -1048559, -1610612727, 0, -1048558, -1610612727, 0, -1048557, -1610612727, 0, -1048556, 7, 0, -1048555, 2, 0, -1048554, -1610612729, 0, -1048553, -1610612727, 0, -1048552, -1610612727, 0, -1048551, -1610612727, 0, -1048550, -1610612727, 0, -1048549, -1610612727, 0, -1048548, -1610612727, 0, -1048547, -1610612727, 0, -1048546, 2, 0, -1048545, 2, 0, -1048544, 2, 0, -1048543, -1610612727, 0, -1048542, -1610612727, 0, -1048541, -1610612727, 0, -1048540, -1610612727, 0, -1048539, -1610612727, 0, -1048538, -1610612727, 0, -1048537, -1610612727, 0, -1048536, -1610612727, 0, -1048535, -1610612727, 0, -1048534, -1610612727, 0, -1048533, -1610612727, 0, -1048518, -1073741822, 0, -1048517, -1073741814, 0, -917509, -1610612726, 0, -917508, -1610612734, 0, -917507, -1610612727, 0, -917506, -1610612727, 0, -917505, -1610612727, 0, -983040, -1610612727, 0, -983039, -1610612727, 0, -983038, -1610612727, 0, -983037, -1610612727, 0, -983036, -1610612727, 0, -983035, -1610612727, 0, -983034, -1610612727, 0, -983033, -1610612727, 0, -983032, -1610612727, 0, -983031, -1610612727, 0, -983030, -1610612727, 0, -983029, -1610612727, 0, -983028, -1610612727, 0, -983027, -1610612727, 0, -983026, -1610612727, 0, -983025, -1610612727, 0, -983024, -1610612727, 0, -983023, -1610612727, 0, -983022, 7, 0, -983021, 2, 0, -983020, 3, 0, -983019, 1610612738, 0, -983018, 1610612743, 0, -983017, -1610612727, 0, -983016, -1610612727, 0, -983015, -1610612727, 0, -983014, -1610612727, 0, -983013, -1610612727, 0, -983012, -1610612727, 0, -983011, -1610612727, 0, -983010, -1610612727, 0, -983009, -1610612727, 0, -983008, -1610612727, 0, -983007, -1610612727, 0, -983006, -1610612727, 0, -983005, -1610612727, 0, -983004, -1610612727, 0, -983003, -1610612727, 0, -983002, -1610612727, 0, -983001, -1610612727, 0, -983000, -1610612727, 0, -982999, -1610612727, 0, -982998, -1610612727, 0, -982997, -1610612727, 0, -982982, -1073741822, 0, -982981, -1073741814, 0, -851973, -1610612726, 0, -851972, -1610612734, 0, -851971, -1610612727, 0, -851970, -1610612727, 0, -851969, -1610612727, 0, -917504, -1610612727, 0, -917503, -1610612727, 0, -917502, -1610612727, 0, -917501, -1610612727, 0, -917500, -1610612727, 0, -917499, -1610612727, 0, -917498, -1610612727, 0, -917497, -1610612727, 0, -917496, -1610612727, 0, -917495, -1610612727, 0, -917494, -1610612727, 0, -917493, -1610612727, 0, -917492, -1610612727, 0, -917491, -1610612727, 0, -917490, -1610612727, 0, -917489, -1610612727, 0, -917488, 7, 0, -917487, 2, 0, -917486, 3, 0, -917485, 1610612738, 0, -917484, 1610612743, 0, -917483, -1610612727, 0, -917482, -1610612727, 0, -917481, -1610612727, 0, -917480, -1610612727, 0, -917479, -1610612727, 0, -917478, -1610612727, 0, -917477, 2, 0, -917476, 2, 0, -917475, 2, 0, -917474, -1610612727, 0, -917473, -1610612727, 0, -917472, -1610612727, 0, -917471, -1610612727, 0, -917470, -1610612727, 0, -917469, -1610612727, 0, -917468, -1610612727, 0, -917467, -1610612727, 0, -917466, -1610612727, 0, -917465, -1610612727, 0, -917464, -1610612727, 0, -917463, -1610612727, 0, -917462, -1610612727, 0, -917461, -1610612727, 0, -917460, -1610612727, 0, -917446, -1073741822, 0, -917445, -1073741814, 0, -786437, -1610612726, 0, -786436, -1610612734, 0, -786435, -1610612727, 0, -786434, -1610612727, 0, -786433, -1610612727, 0, -851968, -1610612727, 0, -851967, -1610612727, 0, -851966, -1610612727, 0, -851965, -1610612727, 0, -851964, -1610612727, 0, -851963, -1610612727, 0, -851962, 7, 0, -851961, 2, 0, -851960, 2, 0, -851959, 2, 0, -851958, 2, 0, -851957, 2, 0, -851956, 2, 0, -851955, 2, 0, -851954, 2, 0, -851953, 2, 0, -851952, 3, 0, -851951, 1610612739, 0, -851950, 1610612743, 0, -851949, -1610612727, 0, -851948, -1610612727, 0, -851947, -1610612727, 0, -851946, -1610612727, 0, -851945, -1610612727, 0, -851944, -1610612727, 0, -851943, -1610612727, 0, -851942, -1610612727, 0, -851941, -1610612727, 0, -851940, -1610612727, 0, -851939, -1610612727, 0, -851938, -1610612727, 0, -851937, -1610612727, 0, -851936, -1610612727, 0, -851935, -1610612727, 0, -851934, -1610612727, 0, -851933, -1610612727, 0, -851932, -1610612727, 0, -851931, -1610612727, 0, -851930, -1610612727, 0, -851929, -1610612727, 0, -851928, -1610612727, 0, -851927, -1610612727, 0, -851926, -1610612727, 0, -851925, -1610612727, 0, -851924, -1610612727, 0, -851910, -1073741822, 0, -851909, -1073741814, 0, -720901, -1610612726, 0, -720900, -1610612734, 0, -720899, -1610612727, 0, -720898, -1610612727, 0, -720897, -1610612727, 0, -786432, -1610612727, 0, -786431, -1610612727, 0, -786430, -1610612727, 0, -786428, -1610612727, 0, -786427, -1610612727, 0, -786426, -1073741822, 0, -786425, 3, 0, -786424, 1610612738, 0, -786423, 1610612738, 0, -786422, 1610612738, 0, -786421, 1610612738, 0, -786420, 1610612738, 0, -786419, 1610612738, 0, -786418, 1610612738, 0, -786417, 1610612738, 0, -786416, 1610612738, 0, -786415, 1610612743, 0, -786414, -1610612727, 0, -786413, -1610612727, 0, -786412, -1610612727, 0, -786411, -1610612727, 0, -786410, -1610612727, 0, -786409, -1610612727, 0, -786408, -1610612727, 0, -786407, -1610612727, 0, -786406, -1610612727, 0, -786405, -1610612727, 0, -786404, -1610612727, 0, -786403, -1610612727, 0, -786402, -1610612727, 0, -786401, -1610612727, 0, -786400, -1610612727, 0, -786399, -1610612727, 0, -786398, -1610612727, 0, -786397, -1610612727, 0, -786396, -1610612727, 0, -786395, -1610612727, 0, -786394, -1610612727, 0, -786393, -1610612727, 0, -786392, -1610612727, 0, -786391, -1610612727, 0, -786390, -1610612727, 0, -786389, -1610612727, 0, -786388, -1610612727, 0, -786374, -1073741822, 0, -786373, -1073741814, 0, -655365, -1610612726, 0, -655364, -1610612734, 0, -655363, -1610612727, 0, -655362, -1610612727, 0, -655361, -1610612727, 0, -720896, -1610612727, 0, -720895, -1610612727, 0, -720894, -1610612727, 0, -720892, -1610612727, 0, -720891, -1610612727, 0, -720890, -1073741822, 0, -720889, -1610612734, 0, -720888, -1610612727, 0, -720887, -1610612727, 0, -720886, -1610612727, 0, -720885, -1610612727, 0, -720884, -1610612727, 0, -720883, -1610612727, 0, -720882, -1610612727, 0, -720881, -1610612727, 0, -720880, -1610612727, 0, -720879, -1610612727, 0, -720878, -1610612727, 0, -720877, -1610612727, 0, -720876, -1610612727, 0, -720875, -1610612727, 0, -720874, -1610612727, 0, -720873, -1610612727, 0, -720872, -1610612727, 0, -720871, -1610612727, 0, -720870, -1610612727, 0, -720869, -1610612727, 0, -720868, -1610612727, 0, -720867, -1610612727, 0, -720866, -1610612727, 0, -720865, -1610612727, 0, -720864, -1610612727, 0, -720863, -1610612727, 0, -720862, -1610612727, 0, -720861, -1610612727, 0, -720860, -1610612727, 0, -720859, -1610612727, 0, -720858, -1610612727, 0, -720857, -1610612727, 0, -720856, -1610612727, 0, -720855, -1610612727, 0, -720854, -1610612727, 0, -720853, -1610612727, 0, -720852, -1610612727, 0, -720838, -1073741822, 0, -720837, -1073741814, 0, -589829, -1610612726, 0, -589828, -1610612734, 0, -589827, -1610612727, 0, -589826, -1610612727, 0, -589825, -1610612727, 0, -655360, -1610612727, 0, -655359, -1610612727, 0, -655358, -1610612727, 0, -655356, -1610612727, 0, -655355, -1610612727, 0, -655354, -1073741822, 0, -655353, -1610612734, 0, -655352, -1610612727, 0, -655351, -1610612727, 0, -655350, -1610612727, 0, -655349, -1610612727, 0, -655348, -1610612727, 0, -655347, -1610612727, 0, -655346, -1610612727, 0, -655345, -1610612727, 0, -655344, -1610612727, 0, -655343, -1610612727, 0, -655342, 7, 0, -655341, 2, 0, -655340, 2, 0, -655339, 2, 0, -655338, 2, 0, -655337, 2, 0, -655336, 2, 0, -655335, 2, 0, -655334, 2, 0, -655333, 2, 0, -655332, 2, 0, -655331, 2, 0, -655330, 2, 0, -655329, 2, 0, -655328, 2, 0, -655327, 2, 0, -655326, 2, 0, -655325, -1610612729, 0, -655324, -1610612727, 0, -655323, -1610612727, 0, -655322, -1610612727, 0, -655321, -1610612727, 0, -655320, -1610612727, 0, -655319, -1610612727, 0, -655318, -1610612727, 0, -655317, -1610612727, 0, -655316, -1610612727, 0, -655302, -1073741822, 0, -655301, -1073741814, 0, -524293, -1610612726, 0, -524292, -1610612734, 0, -524291, -1610612727, 0, -524290, -1610612727, 0, -524289, -1610612727, 0, -589824, -1610612727, 0, -589823, -1610612727, 0, -589822, -1610612727, 0, -589820, -1610612727, 0, -589819, -1610612727, 0, -589818, -1073741822, 0, -589817, -1610612734, 0, -589816, -1610612727, 0, -589815, -1610612727, 0, -589814, -1610612727, 0, -589813, -1610612727, 0, -589812, -1610612727, 0, -589811, -1610612727, 0, -589810, -1610612727, 0, -589809, -1610612727, 0, -589808, 7, 0, -589807, 2, 0, -589806, 3, 0, -589805, 3, 0, -589804, 1610612738, 0, -589803, 1610612738, 0, -589802, 1610612738, 0, -589801, 1610612738, 0, -589800, 1610612738, 0, -589799, 1610612738, 0, -589798, 1610612738, 0, -589797, 1610612738, 0, -589796, 1610612738, 0, -589795, 1610612738, 0, -589794, 1610612738, 0, -589793, 1610612738, 0, -589792, 1610612738, 0, -589791, 1610612738, 0, -589790, 1610612738, 0, -589789, 1610612743, 0, -589788, -1610612727, 0, -589787, -1610612727, 0, -589786, -1610612727, 0, -589785, -1610612727, 0, -589784, -1610612727, 0, -589783, -1610612727, 0, -589782, -1610612727, 0, -589781, -1610612727, 0, -589780, -1610612727, 0, -589766, -1073741822, 0, -589765, -1073741814, 0, -458757, -1610612726, 0, -458756, -1610612734, 0, -458755, -1610612727, 0, -458754, -1610612727, 0, -458753, -1610612727, 0, -524288, -1610612727, 0, -524287, -1610612727, 0, -524286, -1610612727, 0, -524284, -1610612727, 0, -524283, -1610612727, 0, -524282, -1073741822, 0, -524281, 3, 0, -524280, 2, 0, -524279, 2, 0, -524278, 2, 0, -524277, 2, 0, -524276, 2, 0, -524275, 2, 0, -524274, 2, 0, -524273, 2, 0, -524272, 3, 0, -524271, 3, 0, -524270, 1610612738, 0, -524269, 1610612743, 0, -524268, -1610612727, 0, -524267, -1610612727, 0, -524266, -1610612727, 0, -524265, -1610612727, 0, -524264, -1610612727, 0, -524263, -1610612727, 0, -524262, -1610612727, 0, -524261, -1610612727, 0, -524260, -1610612727, 0, -524259, -1610612727, 0, -524258, -1610612727, 0, -524257, -1610612727, 0, -524256, -1610612727, 0, -524255, -1610612727, 0, -524254, -1610612727, 0, -524253, -1610612727, 0, -524252, 7, 0, -524251, 2, 0, -524250, 2, 0, -524248, -1610612727, 0, -524247, -1610612727, 0, -524246, -1610612727, 0, -524245, -1610612727, 0, -524244, -1610612727, 0, -524230, -1073741822, 0, -524229, -1073741814, 0, -393221, -1610612726, 0, -393220, -1610612734, 0, -393219, -1610612727, 0, -393218, -1610612727, 0, -393217, -1610612727, 0, -458752, -1610612727, 0, -458751, -1610612727, 0, -458750, -1610612727, 0, -458748, -1610612727, 0, -458747, -1610612727, 0, -458746, -1073741817, 0, -458745, 1610612738, 0, -458744, 1610612738, 0, -458743, 1610612738, 0, -458742, 1610612738, 0, -458741, 1610612738, 0, -458740, 1610612738, 0, -458739, 1610612738, 0, -458738, 1610612738, 0, -458737, 1610612738, 0, -458736, 1610612738, 0, -458735, 1610612743, 0, -458731, -1610612727, 0, -458730, -1610612727, 0, -458729, -1610612727, 0, -458728, -1610612727, 0, -458727, -1610612727, 0, -458726, -1610612727, 0, -458725, -1610612727, 0, -458724, -1610612727, 0, -458723, -1610612727, 0, -458722, -1610612727, 0, -458721, -1610612727, 0, -458720, -1610612727, 0, -458719, -1610612727, 0, -458718, -1610612727, 0, -458717, -1610612727, 0, -458716, -1073741817, 0, -458715, 1610612738, 0, -458714, 1610612738, 0, -458713, 2, 0, -458712, 2, 0, -458711, -1610612727, 0, -458710, -1610612727, 0, -458709, -1610612727, 0, -458694, -1073741822, 0, -458693, -1073741814, 0, -327685, -1610612726, 0, -327684, -1610612734, 0, -327683, -1610612727, 0, -327682, -1610612727, 0, -327681, -1610612727, 0, -393216, -1610612727, 0, -393215, -1610612727, 0, -393214, -1610612727, 0, -393212, -1610612727, 0, -393211, -1610612727, 0, -393210, -1610612727, 0, -393209, -1610612727, 0, -393208, -1610612727, 0, -393207, -1610612727, 0, -393206, -1610612727, 0, -393205, -1610612727, 0, -393204, -1610612727, 0, -393203, -1610612727, 0, -393202, -1610612727, 0, -393201, -1610612727, 0, -393200, -1610612727, 0, -393199, -1610612727, 0, -393198, -1610612727, 0, -393197, -1610612727, 0, -393196, -1610612727, 0, -393195, -1610612727, 0, -393194, -1610612727, 0, -393193, -1610612727, 0, -393192, -1610612727, 0, -393191, -1610612727, 0, -393190, -1610612727, 0, -393189, -1610612727, 0, -393188, -1610612727, 0, -393187, -1610612727, 0, -393186, -1610612727, 0, -393185, -1610612727, 0, -393184, -1610612727, 0, -393183, -1610612727, 0, -393182, -1610612727, 0, -393181, -1610612727, 0, -393180, -1610612727, 0, -393179, -1610612727, 0, -393178, -1610612727, 0, -393177, -1610612727, 0, -393176, -1610612727, 0, -393175, -1610612727, 0, -393174, -1610612727, 0, -393173, -1610612727, 0, -393158, -1073741822, 0, -393157, -1073741814, 0, -262149, -1610612726, 0, -262148, -1610612734, 0, -262147, -1610612727, 0, -262146, -1610612727, 0, -262145, -1610612727, 0, -327680, -1610612727, 0, -327679, -1610612727, 0, -327678, -1610612727, 0, -327676, -1610612727, 0, -327664, -1610612727, 0, -327663, -1610612727, 0, -327662, -1610612727, 0, -327661, -1610612727, 0, -327660, -1610612727, 0, -327659, -1610612727, 0, -327658, -1610612727, 0, -327657, -1610612727, 0, -327656, -1610612727, 0, -327655, 7, 0, -327654, 2, 0, -327653, 2, 0, -327652, 2, 0, -327651, 2, 0, -327650, 2, 0, -327649, 2, 0, -327648, 2, 0, -327647, 2, 0, -327646, 2, 0, -327645, 2, 0, -327644, 2, 0, -327643, 2, 0, -327642, 2, 0, -327641, 2, 0, -327640, 2, 0, -327639, 2, 0, -327638, 2, 0, -327637, -1610612729, 0, -327636, -1610612727, 0, -327622, -1073741822, 0, -327621, -1073741814, 0, -196613, -1610612726, 0, -196612, -1610612734, 0, -196611, -1610612727, 0, -196610, -1610612727, 0, -196609, -1610612727, 0, -262144, -1610612727, 0, -262143, -1610612727, 0, -262142, -1610612727, 0, -262140, -1610612727, 0, -262139, -1610612727, 0, -262138, -1610612727, 0, -262137, -1610612727, 0, -262136, -1610612727, 0, -262135, -1610612727, 0, -262134, -1610612727, 0, -262133, -1610612727, 0, -262132, -1610612727, 0, -262131, -1610612727, 0, -262130, -1610612727, 0, -262129, -1610612727, 0, -262128, -1610612727, 0, -262127, -1610612727, 0, -262126, -1610612727, 0, -262125, -1610612727, 0, -262124, -1610612727, 0, -262123, -1610612727, 0, -262119, -1073741822, 0, -262118, 1610612739, 0, -262117, 1610612738, 0, -262116, 1610612738, 0, -262115, 1610612738, 0, -262114, 1610612738, 0, -262113, 1610612738, 0, -262112, 1610612738, 0, -262111, 1610612738, 0, -262110, 1610612738, 0, -262109, 1610612738, 0, -262108, 1610612738, 0, -262107, 1610612738, 0, -262106, 1610612738, 0, -262105, 1610612738, 0, -262104, 1610612738, 0, -262103, 1610612738, 0, -262102, 1610612738, 0, -262101, 1610612743, 0, -262100, -1610612727, 0, -262086, -1073741822, 0, -262085, -1073741814, 0, -131077, -1610612726, 0, -131076, -1610612734, 0, -131075, -1610612727, 0, -131074, -1610612727, 0, -131073, -1610612727, 0, -196608, -1610612727, 0, -196607, -1610612727, 0, -196606, -1610612727, 0, -196605, -1610612727, 0, -196604, -1610612727, 0, -196603, -1610612727, 0, -196602, -1610612727, 0, -196601, -1610612727, 0, -196600, -1610612727, 0, -196599, -1610612727, 0, -196598, -1610612727, 0, -196597, -1610612727, 0, -196596, -1610612727, 0, -196595, -1610612727, 0, -196594, -1610612727, 0, -196593, -1610612727, 0, -196592, -1610612727, 0, -196591, -1610612727, 0, -196590, -1610612727, 0, -196587, 7, 0, -196586, 2, 0, -196585, 2, 0, -196584, 2, 0, -196583, 3, 0, -196582, -1610612734, 0, -196581, -1610612727, 0, -196580, -1610612727, 0, -196579, -1610612727, 0, -196578, -1610612727, 0, -196577, -1610612727, 0, -196576, -1610612727, 0, -196575, -1610612727, 0, -196574, -1610612727, 0, -196573, -1610612727, 0, -196572, -1610612727, 0, -196571, -1610612727, 0, -196570, -1610612727, 0, -196569, -1610612727, 0, -196566, -1610612727, 0, -196565, -1610612727, 0, -196564, -1610612727, 0, -196550, -1073741822, 0, -196549, -1073741814, 0, -65541, -1610612726, 0, -65540, -1610612734, 0, -65539, -1610612727, 0, -65538, -1610612727, 0, -65537, -1610612727, 0, -131072, -1610612727, 0, -131071, -1610612727, 0, -131070, -1610612727, 0, -131069, -1610612727, 0, -131068, -1610612727, 0, -131067, -1610612727, 0, -131066, -1610612727, 0, -131065, -1610612727, 0, -131064, -1610612727, 0, -131063, -1610612727, 0, -131062, -1610612727, 0, -131061, -1610612727, 0, -131060, -1610612727, 0, -131059, -1610612727, 0, -131058, -1610612727, 0, -131057, -1610612727, 0, -131056, -1610612727, 0, -131055, -1610612727, 0, -131054, 7, 0, -131053, 2, 0, -131052, 2, 0, -131051, 3, 0, -131050, 3, 0, -131049, 3, 0, -131048, 3, 0, -131047, 3, 0, -131046, -1610612734, 0, -131045, -1610612727, 0, -131044, -1610612727, 0, -131043, -1610612727, 0, -131042, -1610612727, 0, -131041, -1610612727, 0, -131040, -1610612727, 0, -131039, -1610612727, 0, -131038, -1610612727, 0, -131037, -1610612727, 0, -131036, -1610612727, 0, -131035, -1610612727, 0, -131034, -1610612727, 0, -131033, -1610612727, 0, -131032, -1610612727, 0, -131031, -1610612727, 0, -131030, -1610612727, 0, -131029, -1610612727, 0, -131028, -1610612727, 0, -131014, -1073741822, 0, -131013, -1073741814, 0, -5, -1610612726, 0, -4, -1610612734, 0, -3, -1610612727, 0, -2, -1610612727, 0, -1, -1610612727, 0, -65536, -1610612727, 0, -65535, -1610612727, 0, -65534, -1610612727, 0, -65533, -1610612727, 0, -65532, -1610612727, 0, -65531, -1610612727, 0, -65530, -1610612727, 0, -65529, -1610612727, 0, -65528, -1610612727, 0, -65527, -1610612727, 0, -65526, -1610612727, 0, -65525, -1610612727, 0, -65524, -1610612727, 0, -65523, -1610612727, 0, -65522, -1610612727, 0, -65521, -1610612727, 0, -65520, 7, 0, -65519, 2, 0, -65518, 2, 0, -65517, 3, 0, -65516, 3, 0, -65515, 3, 0, -65514, 3, 0, -65513, 3, 0, -65512, 3, 0, -65511, 3, 0, -65510, -1610612734, 0, -65509, -1610612727, 0, -65508, -1610612727, 0, -65507, -1610612727, 0, -65506, -1610612727, 0, -65505, -1610612727, 0, -65504, -1610612727, 0, -65503, -1610612727, 0, -65502, -1610612727, 0, -65501, -1610612727, 0, -65500, -1610612727, 0, -65499, -1610612727, 0, -65498, -1610612727, 0, -65497, -1610612727, 0, -65496, -1610612727, 0, -65495, -1610612727, 0, -65494, -1610612727, 0, -65493, -1610612727, 0, -65478, -1073741822, 0, -65477, -1073741814, 0, 65531, -1610612726, 0, 65532, 1610612739, 0, 65533, 2, 0, 65534, 2, 0, 65535, 2, 0, 0, 2, 0, 1, 2, 0, 2, 2, 0, 3, 2, 0, 4, 2, 0, 5, 2, 0, 6, 2, 0, 7, 2, 0, 8, 2, 0, 9, 2, 0, 10, 2, 0, 11, 2, 0, 12, 2, 0, 13, 2, 0, 14, 2, 0, 15, 2, 0, 16, 2, 0, 17, 2, 0, 18, 2, 0, 19, 2, 0, 20, 2, 0, 21, 2, 0, 22, 2, 0, 23, 2, 0, 24, 2, 0, 25, 1610612739, 0, 26, 1610612739, 0, 27, 2, 0, 28, 2, 0, 29, 2, 0, 30, 2, 0, 31, 2, 0, 32, 2, 0, 33, 2, 0, 34, 2, 0, 35, 2, 0, 36, 2, 0, 37, 2, 0, 38, 2, 0, 39, 2, 0, 40, 2, 0, 41, 2, 0, 42, 2, 0, 43, 2, 0, 44, 2, 0, 45, 2, 0, 46, 2, 0, 47, 2, 0, 48, 2, 0, 49, 2, 0, 50, 2, 0, 51, 2, 0, 52, 2, 0, 53, 2, 0, 54, 2, 0, 55, 2, 0, 56, 2, 0, 57, 2, 0, 58, 3, 0, 59, -1073741814, 0, 131067, -1610612721, 0, 131068, 10, 0, 131069, 10, 0, 131070, 10, 0, 131071, 10, 0, 65536, 10, 0, 65537, 10, 0, 65538, 10, 0, 65539, 10, 0, 65540, 10, 0, 65541, 10, 0, 65542, 10, 0, 65543, 10, 0, 65544, 10, 0, 65545, 10, 0, 65546, 10, 0, 65547, 10, 0, 65548, 10, 0, 65549, 10, 0, 65550, 10, 0, 65551, 10, 0, 65552, 10, 0, 65553, 10, 0, 65554, 10, 0, 65555, 10, 0, 65556, 10, 0, 65557, 10, 0, 65558, 10, 0, 65559, 10, 0, 65560, 10, 0, 65561, 10, 0, 65562, 10, 0, 65563, 10, 0, 65564, 10, 0, 65565, 10, 0, 65566, 10, 0, 65567, 10, 0, 65568, 10, 0, 65569, 10, 0, 65570, 10, 0, 65571, 10, 0, 65572, 10, 0, 65573, 10, 0, 65574, 10, 0, 65575, 10, 0, 65576, 10, 0, 65577, 10, 0, 65578, 10, 0, 65579, 10, 0, 65580, 10, 0, 65581, 10, 0, 65582, 10, 0, 65583, 10, 0, 65584, 10, 0, 65585, 10, 0, 65586, 10, 0, 65587, 10, 0, 65588, 10, 0, 65589, 10, 0, 65590, 10, 0, 65591, 10, 0, 65592, 10, 0, 65593, 10, 0, 65594, 10, 0, 65595, 15, 0 ) +tile_data = PoolIntArray( -393230, 5, 65540, -393229, 5, 10, -393228, 5, 10, -393227, 5, 10, -393226, 5, 10, -393225, 5, 10, -393224, 5, 10, -393223, 5, 10, -393222, 5, 10, -393221, 5, 10, -393220, 5, 10, -393219, 5, 10, -393218, 5, 10, -393217, 5, 10, -458752, 5, 10, -458751, 5, 10, -458750, 5, 10, -458749, 5, 10, -458748, 5, 10, -458747, 5, 10, -458746, 5, 10, -458745, 5, 10, -458744, 5, 10, -458743, 5, 10, -458742, 5, 10, -458741, 5, 10, -458740, 5, 10, -458739, 5, 10, -458738, 5, 10, -458737, 5, 10, -458736, 5, 10, -458735, 5, 10, -458734, 5, 10, -458733, 5, 10, -458732, 5, 10, -458731, 5, 10, -458730, 5, 10, -458729, 5, 10, -458728, 5, 10, -458727, 5, 10, -458726, 5, 10, -458725, 5, 10, -458724, 5, 10, -458723, 5, 10, -458722, 5, 10, -458721, 5, 10, -458720, 5, 10, -458719, 5, 10, -458718, 5, 10, -458717, 5, 10, -458716, 5, 10, -458715, 5, 10, -458714, 5, 10, -458713, 5, 10, -458712, 5, 10, -458711, 5, 10, -458710, 5, 10, -458709, 5, 10, -458708, 5, 10, -458707, 5, 65541, -327694, 5, 7, -327693, 7, 0, -327692, 7, 0, -327691, 7, 0, -327690, 7, 0, -327689, 7, 0, -327688, 7, 0, -327687, 7, 0, -327686, 7, 0, -327685, 7, 0, -327684, 7, 0, -327683, 7, 0, -327682, 7, 0, -327681, 7, 0, -393216, 7, 0, -393215, 7, 0, -393214, 7, 0, -393213, 7, 0, -393212, 7, 0, -393211, 7, 0, -393210, 7, 0, -393209, 7, 0, -393208, 7, 0, -393207, 7, 0, -393206, 7, 0, -393205, 7, 0, -393204, 7, 0, -393203, 7, 0, -393202, 7, 0, -393201, 7, 0, -393200, 7, 0, -393199, 7, 0, -393198, 7, 0, -393171, 5, 6, -262158, 5, 7, -262157, 7, 0, -262156, 7, 0, -262155, 7, 0, -262154, 7, 0, -262153, 7, 0, -262152, 7, 0, -262151, 7, 0, -262150, 7, 0, -262149, 7, 0, -262148, 7, 0, -262147, 7, 0, -262146, 7, 0, -262145, 7, 0, -327680, 7, 0, -327679, 7, 0, -327678, 7, 0, -327677, 7, 0, -327676, 7, 0, -327675, 7, 0, -327674, 7, 0, -327673, 7, 0, -327672, 7, 0, -327671, 7, 0, -327670, 7, 0, -327669, 7, 0, -327668, 7, 0, -327667, 7, 0, -327666, 7, 0, -327665, 7, 0, -327664, 7, 0, -327663, 7, 0, -327662, 7, 0, -327635, 5, 6, -196622, 5, 7, -196621, 7, 0, -196620, 7, 0, -196619, 7, 0, -196618, 7, 0, -196617, 7, 0, -196616, 7, 0, -196615, 7, 0, -196614, 7, 0, -196613, 7, 0, -196612, 7, 0, -196611, 7, 0, -196610, 7, 0, -196609, 7, 0, -262144, 7, 0, -262143, 7, 0, -262142, 7, 0, -262141, 7, 0, -262140, 7, 0, -262139, 7, 0, -262138, 7, 0, -262137, 7, 0, -262136, 7, 0, -262135, 7, 0, -262134, 7, 0, -262133, 7, 0, -262132, 7, 0, -262131, 7, 0, -262130, 7, 0, -262129, 7, 0, -262128, 7, 0, -262127, 7, 0, -262126, 7, 0, -262099, 5, 6, -131086, 5, 7, -131085, 7, 0, -131084, 7, 0, -131083, 7, 0, -131082, 7, 0, -131081, 7, 0, -131080, 7, 0, -131079, 7, 0, -131078, 7, 0, -131077, 7, 0, -131076, 7, 0, -131075, 7, 0, -131074, 7, 0, -131073, 7, 0, -196608, 7, 0, -196607, 7, 0, -196606, 7, 0, -196605, 7, 0, -196604, 7, 0, -196603, 7, 0, -196602, 7, 0, -196601, 7, 0, -196600, 7, 0, -196599, 7, 0, -196598, 7, 0, -196597, 7, 0, -196596, 7, 0, -196595, 7, 0, -196594, 7, 0, -196593, 7, 0, -196592, 7, 0, -196591, 7, 0, -196590, 7, 0, -196563, 5, 6, -65550, 5, 7, -65549, 7, 0, -65548, 7, 0, -65547, 7, 0, -65546, 7, 0, -65545, 7, 0, -65544, 7, 0, -65543, 7, 0, -65542, 7, 0, -65541, 7, 0, -65540, 7, 0, -65539, 7, 0, -65538, 7, 0, -65537, 7, 0, -131072, 7, 0, -131071, 7, 0, -131070, 7, 0, -131069, 7, 0, -131068, 7, 0, -131067, 7, 0, -131066, 7, 0, -131065, 7, 0, -131064, 7, 0, -131063, 7, 0, -131062, 7, 0, -131061, 7, 0, -131060, 7, 0, -131059, 7, 0, -131058, 7, 0, -131057, 7, 0, -131056, 7, 0, -131055, 7, 0, -131054, 7, 0, -131027, 5, 6, -14, 5, 7, -13, 7, 0, -12, 7, 0, -11, 7, 0, -10, 7, 0, -9, 7, 0, -8, 7, 0, -7, 7, 0, -6, 7, 0, -5, 7, 0, -4, 7, 0, -3, 7, 0, -2, 7, 0, -1, 7, 0, -65536, 7, 0, -65535, 7, 0, -65534, 7, 0, -65533, 7, 0, -65532, 7, 0, -65531, 7, 0, -65530, 7, 0, -65529, 7, 0, -65528, 7, 0, -65527, 7, 0, -65526, 7, 0, -65525, 7, 0, -65524, 7, 0, -65523, 7, 0, -65522, 7, 0, -65521, 7, 0, -65520, 7, 0, -65519, 7, 0, -65518, 7, 0, -65491, 5, 6, 65522, 5, 7, 65523, 7, 0, 65524, 7, 0, 65525, 7, 0, 65526, 7, 0, 65527, 7, 0, 65528, 7, 0, 65529, 7, 0, 65530, 7, 0, 65531, 7, 0, 65532, 7, 0, 65533, 7, 0, 65534, 7, 0, 65535, 7, 0, 0, 7, 0, 1, 7, 0, 2, 7, 0, 3, 7, 0, 4, 7, 0, 5, 7, 0, 6, 7, 0, 7, 7, 0, 8, 7, 0, 9, 7, 0, 10, 7, 0, 11, 7, 0, 12, 7, 0, 13, 7, 0, 14, 7, 0, 15, 7, 0, 16, 7, 0, 17, 7, 0, 18, 7, 0, 45, 5, 6, 131058, 5, 7, 131059, 7, 0, 131060, 7, 0, 131061, 7, 0, 131062, 7, 0, 131063, 7, 0, 131064, 7, 0, 131065, 7, 0, 131066, 7, 0, 131067, 7, 0, 131068, 7, 0, 131069, 7, 0, 131070, 7, 0, 131071, 7, 0, 65536, 7, 0, 65537, 7, 0, 65538, 7, 0, 65539, 7, 0, 65540, 7, 0, 65541, 7, 0, 65542, 7, 0, 65543, 7, 0, 65544, 7, 0, 65545, 7, 0, 65546, 7, 0, 65547, 7, 0, 65548, 7, 0, 65549, 7, 0, 65550, 7, 0, 65551, 7, 0, 65552, 7, 0, 65553, 7, 0, 65554, 7, 0, 65581, 5, 6, 196594, 5, 7, 196595, 7, 0, 196596, 7, 0, 196597, 7, 0, 196598, 7, 0, 196599, 7, 0, 196600, 7, 0, 196601, 7, 0, 196602, 7, 0, 196603, 7, 0, 196604, 7, 0, 196605, 7, 0, 196606, 7, 0, 196607, 7, 0, 131072, 7, 0, 131073, 7, 0, 131074, 7, 0, 131075, 7, 0, 131076, 7, 0, 131077, 7, 0, 131078, 7, 0, 131079, 7, 0, 131080, 7, 0, 131081, 7, 0, 131082, 7, 0, 131083, 7, 0, 131084, 7, 0, 131085, 7, 0, 131086, 7, 0, 131087, 7, 0, 131088, 7, 0, 131089, 7, 0, 131090, 7, 0, 131117, 5, 6, 262130, 5, 7, 262131, 7, 0, 262132, 7, 0, 262133, 7, 0, 262134, 7, 0, 262135, 7, 0, 262136, 7, 0, 262137, 7, 0, 262138, 7, 0, 262139, 7, 0, 262140, 7, 0, 262141, 7, 0, 262142, 7, 0, 262143, 7, 0, 196608, 7, 0, 196609, 7, 0, 196610, 7, 0, 196611, 7, 0, 196612, 7, 0, 196613, 7, 0, 196614, 7, 0, 196615, 7, 0, 196616, 7, 0, 196617, 7, 0, 196618, 7, 0, 196619, 7, 0, 196620, 7, 0, 196621, 7, 0, 196622, 7, 0, 196623, 7, 0, 196624, 7, 0, 196625, 7, 0, 196626, 7, 0, 196653, 5, 6, 327666, 5, 7, 327667, 7, 0, 327668, 7, 0, 327669, 7, 0, 327670, 7, 0, 327671, 7, 0, 327672, 7, 0, 327673, 7, 0, 327674, 7, 0, 327675, 7, 0, 327676, 7, 0, 327677, 7, 0, 327678, 7, 0, 327679, 7, 0, 262144, 7, 0, 262145, 7, 0, 262146, 7, 0, 262147, 7, 0, 262148, 7, 0, 262149, 7, 0, 262150, 7, 0, 262151, 7, 0, 262152, 7, 0, 262153, 7, 0, 262154, 7, 0, 262155, 7, 0, 262156, 7, 0, 262157, 7, 0, 262158, 7, 0, 262159, 7, 0, 262160, 7, 0, 262161, 7, 0, 262162, 7, 0, 262189, 5, 6, 393202, 5, 7, 393203, 7, 0, 393204, 7, 0, 393205, 7, 0, 393206, 7, 0, 393207, 7, 0, 393208, 7, 0, 393209, 7, 0, 393210, 7, 0, 393211, 7, 0, 393212, 7, 0, 393213, 7, 0, 393214, 7, 0, 393215, 7, 0, 327680, 7, 0, 327681, 7, 0, 327682, 7, 0, 327683, 7, 0, 327684, 7, 0, 327685, 7, 0, 327686, 7, 0, 327687, 7, 0, 327688, 7, 0, 327689, 7, 0, 327690, 7, 0, 327691, 7, 0, 327692, 7, 0, 327693, 7, 0, 327694, 7, 0, 327695, 7, 0, 327696, 7, 0, 327697, 7, 0, 327698, 7, 0, 327725, 5, 6, 458738, 5, 7, 458739, 7, 0, 458740, 7, 0, 458741, 7, 0, 458742, 7, 0, 458743, 7, 0, 458744, 7, 0, 458745, 7, 0, 458746, 7, 0, 458747, 7, 0, 458748, 7, 0, 458749, 7, 0, 458750, 7, 0, 458751, 7, 0, 393216, 7, 0, 393217, 7, 0, 393218, 7, 0, 393219, 7, 0, 393220, 7, 0, 393221, 7, 0, 393222, 7, 0, 393223, 7, 0, 393224, 7, 0, 393225, 7, 0, 393226, 7, 0, 393227, 7, 0, 393228, 7, 0, 393229, 7, 0, 393230, 7, 0, 393231, 7, 0, 393232, 7, 0, 393233, 7, 0, 393234, 7, 0, 393261, 5, 6, 524274, 5, 65538, 524275, 5, 2, 524276, 5, 2, 524277, 5, 2, 524278, 5, 2, 524279, 5, 2, 524280, 5, 2, 524281, 5, 2, 524282, 5, 2, 524283, 5, 2, 524284, 5, 2, 524285, 5, 2, 524286, 5, 2, 524287, 5, 2, 458752, 5, 2, 458753, 5, 2, 458754, 5, 2, 458755, 5, 2, 458756, 5, 2, 458757, 5, 2, 458758, 5, 2, 458759, 5, 2, 458760, 5, 2, 458761, 5, 2, 458762, 5, 2, 458763, 5, 2, 458764, 5, 2, 458765, 5, 2, 458766, 5, 2, 458767, 5, 2, 458768, 5, 2, 458769, 5, 2, 458770, 5, 2, 458771, 5, 2, 458772, 5, 2, 458773, 5, 2, 458774, 5, 2, 458775, 5, 2, 458776, 5, 2, 458777, 5, 2, 458778, 5, 2, 458779, 5, 2, 458780, 5, 2, 458781, 5, 2, 458782, 5, 2, 458783, 5, 2, 458784, 5, 2, 458785, 5, 2, 458786, 5, 2, 458787, 5, 2, 458788, 5, 2, 458789, 5, 2, 458790, 5, 2, 458791, 5, 2, 458792, 5, 2, 458793, 5, 2, 458794, 5, 2, 458795, 5, 2, 458796, 5, 2, 458797, 5, 65539 ) -[node name="DropThroughPlatform" parent="." instance=ExtResource( 14 )] -position = Vector2( 1128, -27 ) -tile_data = PoolIntArray( -2949142, 1, 0, -2949141, 0, 0, -2949140, 0, 0, -2949139, 0, 0, -2949138, 0, 0, -2949137, 2, 0, -393222, 1, 0, -393221, 0, 0, -393219, 2, 0, -458751, 1, 0, -458750, 0, 0, -458748, 2, 0 ) +[node name="DropThroughPlatforms" type="TileMap" parent="."] +tile_set = ExtResource( 5 ) +cell_size = Vector2( 16, 16 ) +collision_layer = 128 +collision_mask = 128 +format = 1 -[node name="FrogFreeButton" parent="." instance=ExtResource( 10 )] -position = Vector2( 696, -144 ) +[node name="PlatformPlants" type="TileMap" parent="."] +tile_set = SubResource( 5 ) +cell_size = Vector2( 16, 16 ) +format = 1 -[node name="FrogFreeButton2" parent="." instance=ExtResource( 10 )] -position = Vector2( 744, -624 ) -frog_number = 1 +[node name="ElevatorButton" parent="." instance=ExtResource( 7 )] +position = Vector2( 158, -124 ) +elevator_time = 10 -[node name="Digit" parent="FrogFreeButton2" index="3"] -frame = 1 +[node name="Portal" parent="ElevatorButton" instance=ExtResource( 11 )] +position = Vector2( 36, -8 ) +scale = Vector2( 0.5, 0.5 ) +next_scene = "res://src/Levels/Actual Level 1.tscn" -[node name="IndicatorPlayer" parent="FrogFreeButton2/Indicator" index="0"] -anims/RESET = SubResource( 12 ) -anims/onning = SubResource( 13 ) +[node name="FlyingLaserCutter" parent="." instance=ExtResource( 13 )] +position = Vector2( 80, 47 ) +rotation = 1.57079 +scale = Vector2( 1, 1.00162 ) -[node name="GateButton" parent="." instance=ExtResource( 16 )] -position = Vector2( 108, -30 ) - -[node name="GateBlock" parent="." instance=ExtResource( 15 )] -position = Vector2( 156, -12 ) - -[node name="GateBlock2" parent="GateBlock" instance=ExtResource( 15 )] -position = Vector2( 0, -24 ) - -[node name="GateBlock3" parent="GateBlock" instance=ExtResource( 15 )] -position = Vector2( 0, -48 ) - -[node name="GateBlock4" parent="GateBlock" instance=ExtResource( 15 )] -position = Vector2( 0, -72 ) - -[node name="GateBlock5" parent="GateBlock" instance=ExtResource( 15 )] -position = Vector2( 0, -96 ) - -[node name="GateBlock6" parent="GateBlock" instance=ExtResource( 15 )] -position = Vector2( 0, -120 ) - -[connection signal="ready" from="." to="BoundFrog" method="_on_Level_ready"] [connection signal="body_exited" from="Blobby/BlobbySkin" to="Blobby" method="_on_BlobbySkin_body_exited"] -[connection signal="button_pushed" from="FrogFreeButton" to="BoundFrog" method="_on_FrogFreeButton_pushed"] -[connection signal="button_pushed" from="FrogFreeButton2" to="BoundFrog2" method="_on_FrogFreeButton_pushed"] [editable path="SignalManager"] [editable path="LevelState"] @@ -405,9 +172,3 @@ position = Vector2( 0, -120 ) [editable path="UserInterface/HUD"] [editable path="BlobbyCam"] [editable path="Blobby"] -[editable path="Flyer"] -[editable path="Flyer2"] -[editable path="BoundFrog2"] -[editable path="BoundFrog2/WhatAreFrog"] -[editable path="BoundFrog2/RopeAnchor"] -[editable path="FrogFreeButton2"] diff --git a/src/Levels/Templates/Template.tscn b/src/Levels/Templates/Template.tscn index 78a52c8..878cda4 100644 --- a/src/Levels/Templates/Template.tscn +++ b/src/Levels/Templates/Template.tscn @@ -120,7 +120,7 @@ position = Vector2( -70, -1.90735e-06 ) scale = Vector2( 0.878906, 0.936025 ) [node name="BlobbySprite" parent="Blobby" index="5"] -frame = 6 +frame = 7 [node name="BlobbymationTree" parent="Blobby/BlobbySprite" index="0"] parameters/playback = SubResource( 6 ) diff --git a/src/ObstacleObjects/Spikes.tscn b/src/ObstacleObjects/Spikes.tscn index 8d5fe90..14a0856 100644 --- a/src/ObstacleObjects/Spikes.tscn +++ b/src/ObstacleObjects/Spikes.tscn @@ -4,7 +4,7 @@ [ext_resource path="res://assets/obstacle object/speiku/speiku16.png" type="Texture" id=23] [sub_resource type="RectangleShape2D" id=1] -extents = Vector2( 11, 11 ) +extents = Vector2( 9, 9.25 ) [node name="Spikes" type="StaticBody2D"] collision_layer = 8 @@ -17,3 +17,5 @@ texture = ExtResource( 23 ) [node name="CollisionShape2D" type="CollisionShape2D" parent="."] shape = SubResource( 1 ) + +[editable path="DangerousBlockArea"] diff --git a/src/Sounds/default_bus_layout.tres b/src/Sounds/default_bus_layout.tres index 9b417ca..dcc1b97 100644 --- a/src/Sounds/default_bus_layout.tres +++ b/src/Sounds/default_bus_layout.tres @@ -41,7 +41,7 @@ resource_name = "LowPassFilter" cutoff_hz = 3000.0 [resource] -bus/0/volume_db = -13.9794 +bus/0/volume_db = inf_neg bus/1/name = "Music" bus/1/solo = false bus/1/mute = false diff --git a/src/UserInterface/Screens/MainMenu/ControlsMenu/ControlsMenu.tscn b/src/UserInterface/Screens/MainMenu/ControlsMenu/ControlsMenu.tscn index b6b0f41..0eebad4 100644 --- a/src/UserInterface/Screens/MainMenu/ControlsMenu/ControlsMenu.tscn +++ b/src/UserInterface/Screens/MainMenu/ControlsMenu/ControlsMenu.tscn @@ -255,8 +255,6 @@ follow_focus = true [node name="ActionKeyList" type="VBoxContainer" parent="Panel/KeymapViewer/ScrollContainer"] unique_name_in_owner = true -margin_right = 600.0 -margin_bottom = 189.0 size_flags_horizontal = 3 size_flags_vertical = 3 script = ExtResource( 14 )