diff --git a/Levels/Level01.tscn b/Levels/Level01.tscn index 5796377..aa67b9d 100644 --- a/Levels/Level01.tscn +++ b/Levels/Level01.tscn @@ -1,4 +1,4 @@ -[gd_scene load_steps=10 format=2] +[gd_scene load_steps=11 format=2] [ext_resource path="res://Objects/Player-tank/player.tscn" type="PackedScene" id=1] [ext_resource path="res://Objects/Ai-tank/tank00.tscn" type="PackedScene" id=2] @@ -7,6 +7,7 @@ [ext_resource path="res://Levels/Score.gd" type="Script" id=5] [ext_resource path="res://Audio/Tutorial_backround.wav" type="AudioStream" id=6] [ext_resource path="res://Audio/Music.gd" type="Script" id=7] +[ext_resource path="res://Objects/Hammer/Hammer.tscn" type="PackedScene" id=8] [sub_resource type="DynamicFont" id=1] size = 60 @@ -75,3 +76,12 @@ script = ExtResource( 7 ) [node name="WorldEnvironment" type="WorldEnvironment" parent="."] environment = SubResource( 2 ) + +[node name="Hammer" parent="." instance=ExtResource( 8 )] +transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 11.905, 0.316137, -42.6669 ) + +[node name="Hammer2" parent="." instance=ExtResource( 8 )] +transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, -176.031, 0.226439, 87.7901 ) + +[node name="Hammer3" parent="." instance=ExtResource( 8 )] +transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, -6.45557, 0.267753, 46.1506 ) diff --git a/Levels/Level02.tscn b/Levels/Level02.tscn index 653596e..81a8c5c 100644 --- a/Levels/Level02.tscn +++ b/Levels/Level02.tscn @@ -1,4 +1,4 @@ -[gd_scene load_steps=10 format=2] +[gd_scene load_steps=11 format=2] [ext_resource path="res://Objects/Player-tank/player.tscn" type="PackedScene" id=1] [ext_resource path="res://Objects/Ai-tank/tank00.tscn" type="PackedScene" id=2] @@ -7,6 +7,7 @@ [ext_resource path="res://Levels/Score.gd" type="Script" id=5] [ext_resource path="res://Audio/Music.gd" type="Script" id=6] [ext_resource path="res://Audio/Epic Combat LOOP.wav" type="AudioStream" id=7] +[ext_resource path="res://Objects/Hammer/Hammer.tscn" type="PackedScene" id=8] [sub_resource type="DynamicFont" id=1] size = 60 @@ -75,3 +76,12 @@ transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 100.246, 1.1, 128.309 ) [node name="WorldEnvironment" type="WorldEnvironment" parent="."] environment = SubResource( 2 ) + +[node name="Hammer" parent="." instance=ExtResource( 8 )] +transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 127.161, 0.190119, 60.1346 ) + +[node name="Hammer2" parent="." instance=ExtResource( 8 )] +transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, -6.63201, 0.265376, -100.664 ) + +[node name="Hammer3" parent="." instance=ExtResource( 8 )] +transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 200.005, 0.230888, -99.1484 ) diff --git a/Levels/Main.tscn b/Levels/Main.tscn index db58c73..73c7cf8 100644 --- a/Levels/Main.tscn +++ b/Levels/Main.tscn @@ -28,9 +28,6 @@ font_data = ExtResource( 2 ) anchor_right = 1.0 anchor_bottom = 1.0 script = ExtResource( 1 ) -__meta__ = { -"_edit_use_anchors_": false -} [node name="MenuScreen" type="Sprite" parent="."] position = Vector2( 960, 540 ) diff --git a/Objects/Bullet/Bullet.gd b/Objects/Bullet/Bullet.gd index d803637..c79bd64 100644 --- a/Objects/Bullet/Bullet.gd +++ b/Objects/Bullet/Bullet.gd @@ -6,7 +6,7 @@ export var muzzle_velocity = 25 # How fast the bullets are export var g = Vector3.DOWN * 20 var velocity = Vector3.ZERO -var bulletdamagelocal = 0.5 +var bulletdamagelocal = 0.8 ###### CHEATS var godmode = 0 @@ -21,20 +21,10 @@ func _physics_process(delta): if get_overlapping_bodies().has(get_parent().get_node("PlayerTank")): print ("Found Player Tank") self.queue_free() + Global.playerbody = body if (godmode == 0): Global.bulletdamage = bulletdamagelocal Global.playerhit = 1 - if Global.playerhealthexecfinish: - if Global.playerhealthbarscale <= 0: - body.queue_free() - Global.playerdead = 1 - Global.tankskilled = 0 - Global.beforedeathscene = get_tree().current_scene.filename - get_tree().change_scene("res://Levels/Dead.tscn") - Global.playerhealthbarscale = 2 - Global.playerhit = 0 - else: - pass # Replace me with new function you'll make soon else: if get_overlapping_bodies(): if body.has_node("TankAI"): diff --git a/Objects/Hammer/Hammer.gd b/Objects/Hammer/Hammer.gd new file mode 100644 index 0000000..01e49bb --- /dev/null +++ b/Objects/Hammer/Hammer.gd @@ -0,0 +1,12 @@ +extends Area + + +func _physics_process(delta): + for body in get_overlapping_bodies(): + if get_overlapping_bodies().has(get_parent().get_node("PlayerTank")): + print("Hammer") + self.queue_free() + if Global.playerhealthbarscale < 2: + Global.playerhealthbarscale = Global.playerhealthbarscale + 0.25 + Global.bulletdamage = 0 # Makes sure the player won't take damage + Global.playerhit = 1 # This is just to make the player script notice the change to the health bar diff --git a/Objects/Hammer/Hammer.glb b/Objects/Hammer/Hammer.glb new file mode 100644 index 0000000..543261d Binary files /dev/null and b/Objects/Hammer/Hammer.glb differ diff --git a/Objects/Hammer/Hammer.glb.import b/Objects/Hammer/Hammer.glb.import new file mode 100644 index 0000000..7bb4c78 --- /dev/null +++ b/Objects/Hammer/Hammer.glb.import @@ -0,0 +1,1065 @@ +[remap] + +importer="scene" +type="PackedScene" +path="res://.import/Hammer.glb-5a3f19986576ceddca5df615f4cd0ade.scn" + +[deps] + +source_file="res://Objects/Hammer/Hammer.glb" +dest_files=[ "res://.import/Hammer.glb-5a3f19986576ceddca5df615f4cd0ade.scn" ] + +[params] + +nodes/root_type="Spatial" +nodes/root_name="Scene Root" +nodes/root_scale=1.0 +nodes/custom_script="" +nodes/storage=0 +nodes/use_legacy_names=false +materials/location=1 +materials/storage=1 +materials/keep_on_reimport=true +meshes/octahedral_compression=true +meshes/compress=4286 +meshes/ensure_tangents=true +meshes/storage=0 +meshes/light_baking=0 +meshes/lightmap_texel_size=0.1 +skins/use_named_skins=true +external_files/store_in_subdir=false +animation/import=true +animation/fps=15 +animation/filter_script="" +animation/storage=false +animation/keep_custom_tracks=false +animation/optimizer/enabled=true +animation/optimizer/max_linear_error=0.05 +animation/optimizer/max_angular_error=0.01 +animation/optimizer/max_angle=22 +animation/optimizer/remove_unused_tracks=true +animation/clips/amount=0 +animation/clip_1/name="" +animation/clip_1/start_frame=0 +animation/clip_1/end_frame=0 +animation/clip_1/loops=false +animation/clip_2/name="" +animation/clip_2/start_frame=0 +animation/clip_2/end_frame=0 +animation/clip_2/loops=false +animation/clip_3/name="" +animation/clip_3/start_frame=0 +animation/clip_3/end_frame=0 +animation/clip_3/loops=false +animation/clip_4/name="" +animation/clip_4/start_frame=0 +animation/clip_4/end_frame=0 +animation/clip_4/loops=false +animation/clip_5/name="" +animation/clip_5/start_frame=0 +animation/clip_5/end_frame=0 +animation/clip_5/loops=false +animation/clip_6/name="" +animation/clip_6/start_frame=0 +animation/clip_6/end_frame=0 +animation/clip_6/loops=false +animation/clip_7/name="" +animation/clip_7/start_frame=0 +animation/clip_7/end_frame=0 +animation/clip_7/loops=false +animation/clip_8/name="" +animation/clip_8/start_frame=0 +animation/clip_8/end_frame=0 +animation/clip_8/loops=false +animation/clip_9/name="" +animation/clip_9/start_frame=0 +animation/clip_9/end_frame=0 +animation/clip_9/loops=false +animation/clip_10/name="" +animation/clip_10/start_frame=0 +animation/clip_10/end_frame=0 +animation/clip_10/loops=false +animation/clip_11/name="" +animation/clip_11/start_frame=0 +animation/clip_11/end_frame=0 +animation/clip_11/loops=false +animation/clip_12/name="" +animation/clip_12/start_frame=0 +animation/clip_12/end_frame=0 +animation/clip_12/loops=false +animation/clip_13/name="" +animation/clip_13/start_frame=0 +animation/clip_13/end_frame=0 +animation/clip_13/loops=false +animation/clip_14/name="" +animation/clip_14/start_frame=0 +animation/clip_14/end_frame=0 +animation/clip_14/loops=false +animation/clip_15/name="" +animation/clip_15/start_frame=0 +animation/clip_15/end_frame=0 +animation/clip_15/loops=false +animation/clip_16/name="" +animation/clip_16/start_frame=0 +animation/clip_16/end_frame=0 +animation/clip_16/loops=false +animation/clip_17/name="" +animation/clip_17/start_frame=0 +animation/clip_17/end_frame=0 +animation/clip_17/loops=false +animation/clip_18/name="" +animation/clip_18/start_frame=0 +animation/clip_18/end_frame=0 +animation/clip_18/loops=false +animation/clip_19/name="" +animation/clip_19/start_frame=0 +animation/clip_19/end_frame=0 +animation/clip_19/loops=false +animation/clip_20/name="" +animation/clip_20/start_frame=0 +animation/clip_20/end_frame=0 +animation/clip_20/loops=false +animation/clip_21/name="" +animation/clip_21/start_frame=0 +animation/clip_21/end_frame=0 +animation/clip_21/loops=false +animation/clip_22/name="" +animation/clip_22/start_frame=0 +animation/clip_22/end_frame=0 +animation/clip_22/loops=false +animation/clip_23/name="" +animation/clip_23/start_frame=0 +animation/clip_23/end_frame=0 +animation/clip_23/loops=false +animation/clip_24/name="" +animation/clip_24/start_frame=0 +animation/clip_24/end_frame=0 +animation/clip_24/loops=false +animation/clip_25/name="" +animation/clip_25/start_frame=0 +animation/clip_25/end_frame=0 +animation/clip_25/loops=false +animation/clip_26/name="" +animation/clip_26/start_frame=0 +animation/clip_26/end_frame=0 +animation/clip_26/loops=false +animation/clip_27/name="" +animation/clip_27/start_frame=0 +animation/clip_27/end_frame=0 +animation/clip_27/loops=false +animation/clip_28/name="" +animation/clip_28/start_frame=0 +animation/clip_28/end_frame=0 +animation/clip_28/loops=false +animation/clip_29/name="" +animation/clip_29/start_frame=0 +animation/clip_29/end_frame=0 +animation/clip_29/loops=false +animation/clip_30/name="" +animation/clip_30/start_frame=0 +animation/clip_30/end_frame=0 +animation/clip_30/loops=false +animation/clip_31/name="" +animation/clip_31/start_frame=0 +animation/clip_31/end_frame=0 +animation/clip_31/loops=false +animation/clip_32/name="" +animation/clip_32/start_frame=0 +animation/clip_32/end_frame=0 +animation/clip_32/loops=false +animation/clip_33/name="" +animation/clip_33/start_frame=0 +animation/clip_33/end_frame=0 +animation/clip_33/loops=false +animation/clip_34/name="" +animation/clip_34/start_frame=0 +animation/clip_34/end_frame=0 +animation/clip_34/loops=false +animation/clip_35/name="" +animation/clip_35/start_frame=0 +animation/clip_35/end_frame=0 +animation/clip_35/loops=false +animation/clip_36/name="" +animation/clip_36/start_frame=0 +animation/clip_36/end_frame=0 +animation/clip_36/loops=false +animation/clip_37/name="" +animation/clip_37/start_frame=0 +animation/clip_37/end_frame=0 +animation/clip_37/loops=false +animation/clip_38/name="" +animation/clip_38/start_frame=0 +animation/clip_38/end_frame=0 +animation/clip_38/loops=false +animation/clip_39/name="" +animation/clip_39/start_frame=0 +animation/clip_39/end_frame=0 +animation/clip_39/loops=false +animation/clip_40/name="" +animation/clip_40/start_frame=0 +animation/clip_40/end_frame=0 +animation/clip_40/loops=false +animation/clip_41/name="" +animation/clip_41/start_frame=0 +animation/clip_41/end_frame=0 +animation/clip_41/loops=false +animation/clip_42/name="" +animation/clip_42/start_frame=0 +animation/clip_42/end_frame=0 +animation/clip_42/loops=false +animation/clip_43/name="" +animation/clip_43/start_frame=0 +animation/clip_43/end_frame=0 +animation/clip_43/loops=false +animation/clip_44/name="" +animation/clip_44/start_frame=0 +animation/clip_44/end_frame=0 +animation/clip_44/loops=false +animation/clip_45/name="" +animation/clip_45/start_frame=0 +animation/clip_45/end_frame=0 +animation/clip_45/loops=false +animation/clip_46/name="" +animation/clip_46/start_frame=0 +animation/clip_46/end_frame=0 +animation/clip_46/loops=false +animation/clip_47/name="" +animation/clip_47/start_frame=0 +animation/clip_47/end_frame=0 +animation/clip_47/loops=false +animation/clip_48/name="" +animation/clip_48/start_frame=0 +animation/clip_48/end_frame=0 +animation/clip_48/loops=false +animation/clip_49/name="" +animation/clip_49/start_frame=0 +animation/clip_49/end_frame=0 +animation/clip_49/loops=false +animation/clip_50/name="" +animation/clip_50/start_frame=0 +animation/clip_50/end_frame=0 +animation/clip_50/loops=false +animation/clip_51/name="" +animation/clip_51/start_frame=0 +animation/clip_51/end_frame=0 +animation/clip_51/loops=false +animation/clip_52/name="" +animation/clip_52/start_frame=0 +animation/clip_52/end_frame=0 +animation/clip_52/loops=false +animation/clip_53/name="" +animation/clip_53/start_frame=0 +animation/clip_53/end_frame=0 +animation/clip_53/loops=false +animation/clip_54/name="" +animation/clip_54/start_frame=0 +animation/clip_54/end_frame=0 +animation/clip_54/loops=false +animation/clip_55/name="" +animation/clip_55/start_frame=0 +animation/clip_55/end_frame=0 +animation/clip_55/loops=false +animation/clip_56/name="" +animation/clip_56/start_frame=0 +animation/clip_56/end_frame=0 +animation/clip_56/loops=false +animation/clip_57/name="" +animation/clip_57/start_frame=0 +animation/clip_57/end_frame=0 +animation/clip_57/loops=false +animation/clip_58/name="" +animation/clip_58/start_frame=0 +animation/clip_58/end_frame=0 +animation/clip_58/loops=false +animation/clip_59/name="" +animation/clip_59/start_frame=0 +animation/clip_59/end_frame=0 +animation/clip_59/loops=false +animation/clip_60/name="" +animation/clip_60/start_frame=0 +animation/clip_60/end_frame=0 +animation/clip_60/loops=false +animation/clip_61/name="" +animation/clip_61/start_frame=0 +animation/clip_61/end_frame=0 +animation/clip_61/loops=false +animation/clip_62/name="" +animation/clip_62/start_frame=0 +animation/clip_62/end_frame=0 +animation/clip_62/loops=false +animation/clip_63/name="" +animation/clip_63/start_frame=0 +animation/clip_63/end_frame=0 +animation/clip_63/loops=false +animation/clip_64/name="" +animation/clip_64/start_frame=0 +animation/clip_64/end_frame=0 +animation/clip_64/loops=false +animation/clip_65/name="" +animation/clip_65/start_frame=0 +animation/clip_65/end_frame=0 +animation/clip_65/loops=false +animation/clip_66/name="" +animation/clip_66/start_frame=0 +animation/clip_66/end_frame=0 +animation/clip_66/loops=false +animation/clip_67/name="" +animation/clip_67/start_frame=0 +animation/clip_67/end_frame=0 +animation/clip_67/loops=false +animation/clip_68/name="" +animation/clip_68/start_frame=0 +animation/clip_68/end_frame=0 +animation/clip_68/loops=false +animation/clip_69/name="" +animation/clip_69/start_frame=0 +animation/clip_69/end_frame=0 +animation/clip_69/loops=false +animation/clip_70/name="" +animation/clip_70/start_frame=0 +animation/clip_70/end_frame=0 +animation/clip_70/loops=false +animation/clip_71/name="" +animation/clip_71/start_frame=0 +animation/clip_71/end_frame=0 +animation/clip_71/loops=false +animation/clip_72/name="" +animation/clip_72/start_frame=0 +animation/clip_72/end_frame=0 +animation/clip_72/loops=false +animation/clip_73/name="" +animation/clip_73/start_frame=0 +animation/clip_73/end_frame=0 +animation/clip_73/loops=false +animation/clip_74/name="" +animation/clip_74/start_frame=0 +animation/clip_74/end_frame=0 +animation/clip_74/loops=false +animation/clip_75/name="" +animation/clip_75/start_frame=0 +animation/clip_75/end_frame=0 +animation/clip_75/loops=false +animation/clip_76/name="" +animation/clip_76/start_frame=0 +animation/clip_76/end_frame=0 +animation/clip_76/loops=false +animation/clip_77/name="" +animation/clip_77/start_frame=0 +animation/clip_77/end_frame=0 +animation/clip_77/loops=false +animation/clip_78/name="" +animation/clip_78/start_frame=0 +animation/clip_78/end_frame=0 +animation/clip_78/loops=false +animation/clip_79/name="" +animation/clip_79/start_frame=0 +animation/clip_79/end_frame=0 +animation/clip_79/loops=false +animation/clip_80/name="" +animation/clip_80/start_frame=0 +animation/clip_80/end_frame=0 +animation/clip_80/loops=false +animation/clip_81/name="" +animation/clip_81/start_frame=0 +animation/clip_81/end_frame=0 +animation/clip_81/loops=false +animation/clip_82/name="" +animation/clip_82/start_frame=0 +animation/clip_82/end_frame=0 +animation/clip_82/loops=false +animation/clip_83/name="" +animation/clip_83/start_frame=0 +animation/clip_83/end_frame=0 +animation/clip_83/loops=false +animation/clip_84/name="" +animation/clip_84/start_frame=0 +animation/clip_84/end_frame=0 +animation/clip_84/loops=false +animation/clip_85/name="" +animation/clip_85/start_frame=0 +animation/clip_85/end_frame=0 +animation/clip_85/loops=false +animation/clip_86/name="" +animation/clip_86/start_frame=0 +animation/clip_86/end_frame=0 +animation/clip_86/loops=false +animation/clip_87/name="" +animation/clip_87/start_frame=0 +animation/clip_87/end_frame=0 +animation/clip_87/loops=false +animation/clip_88/name="" +animation/clip_88/start_frame=0 +animation/clip_88/end_frame=0 +animation/clip_88/loops=false +animation/clip_89/name="" +animation/clip_89/start_frame=0 +animation/clip_89/end_frame=0 +animation/clip_89/loops=false +animation/clip_90/name="" +animation/clip_90/start_frame=0 +animation/clip_90/end_frame=0 +animation/clip_90/loops=false +animation/clip_91/name="" +animation/clip_91/start_frame=0 +animation/clip_91/end_frame=0 +animation/clip_91/loops=false +animation/clip_92/name="" +animation/clip_92/start_frame=0 +animation/clip_92/end_frame=0 +animation/clip_92/loops=false +animation/clip_93/name="" +animation/clip_93/start_frame=0 +animation/clip_93/end_frame=0 +animation/clip_93/loops=false +animation/clip_94/name="" +animation/clip_94/start_frame=0 +animation/clip_94/end_frame=0 +animation/clip_94/loops=false +animation/clip_95/name="" +animation/clip_95/start_frame=0 +animation/clip_95/end_frame=0 +animation/clip_95/loops=false +animation/clip_96/name="" +animation/clip_96/start_frame=0 +animation/clip_96/end_frame=0 +animation/clip_96/loops=false +animation/clip_97/name="" +animation/clip_97/start_frame=0 +animation/clip_97/end_frame=0 +animation/clip_97/loops=false +animation/clip_98/name="" +animation/clip_98/start_frame=0 +animation/clip_98/end_frame=0 +animation/clip_98/loops=false +animation/clip_99/name="" +animation/clip_99/start_frame=0 +animation/clip_99/end_frame=0 +animation/clip_99/loops=false +animation/clip_100/name="" +animation/clip_100/start_frame=0 +animation/clip_100/end_frame=0 +animation/clip_100/loops=false +animation/clip_101/name="" +animation/clip_101/start_frame=0 +animation/clip_101/end_frame=0 +animation/clip_101/loops=false +animation/clip_102/name="" +animation/clip_102/start_frame=0 +animation/clip_102/end_frame=0 +animation/clip_102/loops=false +animation/clip_103/name="" +animation/clip_103/start_frame=0 +animation/clip_103/end_frame=0 +animation/clip_103/loops=false +animation/clip_104/name="" +animation/clip_104/start_frame=0 +animation/clip_104/end_frame=0 +animation/clip_104/loops=false +animation/clip_105/name="" +animation/clip_105/start_frame=0 +animation/clip_105/end_frame=0 +animation/clip_105/loops=false +animation/clip_106/name="" +animation/clip_106/start_frame=0 +animation/clip_106/end_frame=0 +animation/clip_106/loops=false +animation/clip_107/name="" +animation/clip_107/start_frame=0 +animation/clip_107/end_frame=0 +animation/clip_107/loops=false +animation/clip_108/name="" +animation/clip_108/start_frame=0 +animation/clip_108/end_frame=0 +animation/clip_108/loops=false +animation/clip_109/name="" +animation/clip_109/start_frame=0 +animation/clip_109/end_frame=0 +animation/clip_109/loops=false +animation/clip_110/name="" +animation/clip_110/start_frame=0 +animation/clip_110/end_frame=0 +animation/clip_110/loops=false +animation/clip_111/name="" +animation/clip_111/start_frame=0 +animation/clip_111/end_frame=0 +animation/clip_111/loops=false +animation/clip_112/name="" +animation/clip_112/start_frame=0 +animation/clip_112/end_frame=0 +animation/clip_112/loops=false +animation/clip_113/name="" +animation/clip_113/start_frame=0 +animation/clip_113/end_frame=0 +animation/clip_113/loops=false +animation/clip_114/name="" +animation/clip_114/start_frame=0 +animation/clip_114/end_frame=0 +animation/clip_114/loops=false +animation/clip_115/name="" +animation/clip_115/start_frame=0 +animation/clip_115/end_frame=0 +animation/clip_115/loops=false +animation/clip_116/name="" +animation/clip_116/start_frame=0 +animation/clip_116/end_frame=0 +animation/clip_116/loops=false +animation/clip_117/name="" +animation/clip_117/start_frame=0 +animation/clip_117/end_frame=0 +animation/clip_117/loops=false +animation/clip_118/name="" +animation/clip_118/start_frame=0 +animation/clip_118/end_frame=0 +animation/clip_118/loops=false +animation/clip_119/name="" +animation/clip_119/start_frame=0 +animation/clip_119/end_frame=0 +animation/clip_119/loops=false +animation/clip_120/name="" +animation/clip_120/start_frame=0 +animation/clip_120/end_frame=0 +animation/clip_120/loops=false +animation/clip_121/name="" +animation/clip_121/start_frame=0 +animation/clip_121/end_frame=0 +animation/clip_121/loops=false +animation/clip_122/name="" +animation/clip_122/start_frame=0 +animation/clip_122/end_frame=0 +animation/clip_122/loops=false +animation/clip_123/name="" +animation/clip_123/start_frame=0 +animation/clip_123/end_frame=0 +animation/clip_123/loops=false +animation/clip_124/name="" +animation/clip_124/start_frame=0 +animation/clip_124/end_frame=0 +animation/clip_124/loops=false +animation/clip_125/name="" +animation/clip_125/start_frame=0 +animation/clip_125/end_frame=0 +animation/clip_125/loops=false +animation/clip_126/name="" +animation/clip_126/start_frame=0 +animation/clip_126/end_frame=0 +animation/clip_126/loops=false +animation/clip_127/name="" +animation/clip_127/start_frame=0 +animation/clip_127/end_frame=0 +animation/clip_127/loops=false +animation/clip_128/name="" +animation/clip_128/start_frame=0 +animation/clip_128/end_frame=0 +animation/clip_128/loops=false +animation/clip_129/name="" +animation/clip_129/start_frame=0 +animation/clip_129/end_frame=0 +animation/clip_129/loops=false +animation/clip_130/name="" +animation/clip_130/start_frame=0 +animation/clip_130/end_frame=0 +animation/clip_130/loops=false +animation/clip_131/name="" +animation/clip_131/start_frame=0 +animation/clip_131/end_frame=0 +animation/clip_131/loops=false +animation/clip_132/name="" +animation/clip_132/start_frame=0 +animation/clip_132/end_frame=0 +animation/clip_132/loops=false +animation/clip_133/name="" +animation/clip_133/start_frame=0 +animation/clip_133/end_frame=0 +animation/clip_133/loops=false +animation/clip_134/name="" +animation/clip_134/start_frame=0 +animation/clip_134/end_frame=0 +animation/clip_134/loops=false +animation/clip_135/name="" +animation/clip_135/start_frame=0 +animation/clip_135/end_frame=0 +animation/clip_135/loops=false +animation/clip_136/name="" +animation/clip_136/start_frame=0 +animation/clip_136/end_frame=0 +animation/clip_136/loops=false +animation/clip_137/name="" +animation/clip_137/start_frame=0 +animation/clip_137/end_frame=0 +animation/clip_137/loops=false +animation/clip_138/name="" +animation/clip_138/start_frame=0 +animation/clip_138/end_frame=0 +animation/clip_138/loops=false +animation/clip_139/name="" +animation/clip_139/start_frame=0 +animation/clip_139/end_frame=0 +animation/clip_139/loops=false +animation/clip_140/name="" +animation/clip_140/start_frame=0 +animation/clip_140/end_frame=0 +animation/clip_140/loops=false +animation/clip_141/name="" +animation/clip_141/start_frame=0 +animation/clip_141/end_frame=0 +animation/clip_141/loops=false +animation/clip_142/name="" +animation/clip_142/start_frame=0 +animation/clip_142/end_frame=0 +animation/clip_142/loops=false +animation/clip_143/name="" +animation/clip_143/start_frame=0 +animation/clip_143/end_frame=0 +animation/clip_143/loops=false +animation/clip_144/name="" +animation/clip_144/start_frame=0 +animation/clip_144/end_frame=0 +animation/clip_144/loops=false +animation/clip_145/name="" +animation/clip_145/start_frame=0 +animation/clip_145/end_frame=0 +animation/clip_145/loops=false +animation/clip_146/name="" +animation/clip_146/start_frame=0 +animation/clip_146/end_frame=0 +animation/clip_146/loops=false +animation/clip_147/name="" +animation/clip_147/start_frame=0 +animation/clip_147/end_frame=0 +animation/clip_147/loops=false +animation/clip_148/name="" +animation/clip_148/start_frame=0 +animation/clip_148/end_frame=0 +animation/clip_148/loops=false +animation/clip_149/name="" +animation/clip_149/start_frame=0 +animation/clip_149/end_frame=0 +animation/clip_149/loops=false +animation/clip_150/name="" +animation/clip_150/start_frame=0 +animation/clip_150/end_frame=0 +animation/clip_150/loops=false +animation/clip_151/name="" +animation/clip_151/start_frame=0 +animation/clip_151/end_frame=0 +animation/clip_151/loops=false +animation/clip_152/name="" +animation/clip_152/start_frame=0 +animation/clip_152/end_frame=0 +animation/clip_152/loops=false +animation/clip_153/name="" +animation/clip_153/start_frame=0 +animation/clip_153/end_frame=0 +animation/clip_153/loops=false +animation/clip_154/name="" +animation/clip_154/start_frame=0 +animation/clip_154/end_frame=0 +animation/clip_154/loops=false +animation/clip_155/name="" +animation/clip_155/start_frame=0 +animation/clip_155/end_frame=0 +animation/clip_155/loops=false +animation/clip_156/name="" +animation/clip_156/start_frame=0 +animation/clip_156/end_frame=0 +animation/clip_156/loops=false +animation/clip_157/name="" +animation/clip_157/start_frame=0 +animation/clip_157/end_frame=0 +animation/clip_157/loops=false +animation/clip_158/name="" +animation/clip_158/start_frame=0 +animation/clip_158/end_frame=0 +animation/clip_158/loops=false +animation/clip_159/name="" +animation/clip_159/start_frame=0 +animation/clip_159/end_frame=0 +animation/clip_159/loops=false +animation/clip_160/name="" +animation/clip_160/start_frame=0 +animation/clip_160/end_frame=0 +animation/clip_160/loops=false +animation/clip_161/name="" +animation/clip_161/start_frame=0 +animation/clip_161/end_frame=0 +animation/clip_161/loops=false +animation/clip_162/name="" +animation/clip_162/start_frame=0 +animation/clip_162/end_frame=0 +animation/clip_162/loops=false +animation/clip_163/name="" +animation/clip_163/start_frame=0 +animation/clip_163/end_frame=0 +animation/clip_163/loops=false +animation/clip_164/name="" +animation/clip_164/start_frame=0 +animation/clip_164/end_frame=0 +animation/clip_164/loops=false +animation/clip_165/name="" +animation/clip_165/start_frame=0 +animation/clip_165/end_frame=0 +animation/clip_165/loops=false +animation/clip_166/name="" +animation/clip_166/start_frame=0 +animation/clip_166/end_frame=0 +animation/clip_166/loops=false +animation/clip_167/name="" +animation/clip_167/start_frame=0 +animation/clip_167/end_frame=0 +animation/clip_167/loops=false +animation/clip_168/name="" +animation/clip_168/start_frame=0 +animation/clip_168/end_frame=0 +animation/clip_168/loops=false +animation/clip_169/name="" +animation/clip_169/start_frame=0 +animation/clip_169/end_frame=0 +animation/clip_169/loops=false +animation/clip_170/name="" +animation/clip_170/start_frame=0 +animation/clip_170/end_frame=0 +animation/clip_170/loops=false +animation/clip_171/name="" +animation/clip_171/start_frame=0 +animation/clip_171/end_frame=0 +animation/clip_171/loops=false +animation/clip_172/name="" +animation/clip_172/start_frame=0 +animation/clip_172/end_frame=0 +animation/clip_172/loops=false +animation/clip_173/name="" +animation/clip_173/start_frame=0 +animation/clip_173/end_frame=0 +animation/clip_173/loops=false +animation/clip_174/name="" +animation/clip_174/start_frame=0 +animation/clip_174/end_frame=0 +animation/clip_174/loops=false +animation/clip_175/name="" +animation/clip_175/start_frame=0 +animation/clip_175/end_frame=0 +animation/clip_175/loops=false +animation/clip_176/name="" +animation/clip_176/start_frame=0 +animation/clip_176/end_frame=0 +animation/clip_176/loops=false +animation/clip_177/name="" +animation/clip_177/start_frame=0 +animation/clip_177/end_frame=0 +animation/clip_177/loops=false +animation/clip_178/name="" +animation/clip_178/start_frame=0 +animation/clip_178/end_frame=0 +animation/clip_178/loops=false +animation/clip_179/name="" +animation/clip_179/start_frame=0 +animation/clip_179/end_frame=0 +animation/clip_179/loops=false +animation/clip_180/name="" +animation/clip_180/start_frame=0 +animation/clip_180/end_frame=0 +animation/clip_180/loops=false +animation/clip_181/name="" +animation/clip_181/start_frame=0 +animation/clip_181/end_frame=0 +animation/clip_181/loops=false +animation/clip_182/name="" +animation/clip_182/start_frame=0 +animation/clip_182/end_frame=0 +animation/clip_182/loops=false +animation/clip_183/name="" +animation/clip_183/start_frame=0 +animation/clip_183/end_frame=0 +animation/clip_183/loops=false +animation/clip_184/name="" +animation/clip_184/start_frame=0 +animation/clip_184/end_frame=0 +animation/clip_184/loops=false +animation/clip_185/name="" +animation/clip_185/start_frame=0 +animation/clip_185/end_frame=0 +animation/clip_185/loops=false +animation/clip_186/name="" +animation/clip_186/start_frame=0 +animation/clip_186/end_frame=0 +animation/clip_186/loops=false +animation/clip_187/name="" +animation/clip_187/start_frame=0 +animation/clip_187/end_frame=0 +animation/clip_187/loops=false +animation/clip_188/name="" +animation/clip_188/start_frame=0 +animation/clip_188/end_frame=0 +animation/clip_188/loops=false +animation/clip_189/name="" +animation/clip_189/start_frame=0 +animation/clip_189/end_frame=0 +animation/clip_189/loops=false +animation/clip_190/name="" +animation/clip_190/start_frame=0 +animation/clip_190/end_frame=0 +animation/clip_190/loops=false +animation/clip_191/name="" +animation/clip_191/start_frame=0 +animation/clip_191/end_frame=0 +animation/clip_191/loops=false +animation/clip_192/name="" +animation/clip_192/start_frame=0 +animation/clip_192/end_frame=0 +animation/clip_192/loops=false +animation/clip_193/name="" +animation/clip_193/start_frame=0 +animation/clip_193/end_frame=0 +animation/clip_193/loops=false +animation/clip_194/name="" +animation/clip_194/start_frame=0 +animation/clip_194/end_frame=0 +animation/clip_194/loops=false +animation/clip_195/name="" +animation/clip_195/start_frame=0 +animation/clip_195/end_frame=0 +animation/clip_195/loops=false +animation/clip_196/name="" +animation/clip_196/start_frame=0 +animation/clip_196/end_frame=0 +animation/clip_196/loops=false +animation/clip_197/name="" +animation/clip_197/start_frame=0 +animation/clip_197/end_frame=0 +animation/clip_197/loops=false +animation/clip_198/name="" +animation/clip_198/start_frame=0 +animation/clip_198/end_frame=0 +animation/clip_198/loops=false +animation/clip_199/name="" +animation/clip_199/start_frame=0 +animation/clip_199/end_frame=0 +animation/clip_199/loops=false +animation/clip_200/name="" +animation/clip_200/start_frame=0 +animation/clip_200/end_frame=0 +animation/clip_200/loops=false +animation/clip_201/name="" +animation/clip_201/start_frame=0 +animation/clip_201/end_frame=0 +animation/clip_201/loops=false +animation/clip_202/name="" +animation/clip_202/start_frame=0 +animation/clip_202/end_frame=0 +animation/clip_202/loops=false +animation/clip_203/name="" +animation/clip_203/start_frame=0 +animation/clip_203/end_frame=0 +animation/clip_203/loops=false +animation/clip_204/name="" +animation/clip_204/start_frame=0 +animation/clip_204/end_frame=0 +animation/clip_204/loops=false +animation/clip_205/name="" +animation/clip_205/start_frame=0 +animation/clip_205/end_frame=0 +animation/clip_205/loops=false +animation/clip_206/name="" +animation/clip_206/start_frame=0 +animation/clip_206/end_frame=0 +animation/clip_206/loops=false +animation/clip_207/name="" +animation/clip_207/start_frame=0 +animation/clip_207/end_frame=0 +animation/clip_207/loops=false +animation/clip_208/name="" +animation/clip_208/start_frame=0 +animation/clip_208/end_frame=0 +animation/clip_208/loops=false +animation/clip_209/name="" +animation/clip_209/start_frame=0 +animation/clip_209/end_frame=0 +animation/clip_209/loops=false +animation/clip_210/name="" +animation/clip_210/start_frame=0 +animation/clip_210/end_frame=0 +animation/clip_210/loops=false +animation/clip_211/name="" +animation/clip_211/start_frame=0 +animation/clip_211/end_frame=0 +animation/clip_211/loops=false +animation/clip_212/name="" +animation/clip_212/start_frame=0 +animation/clip_212/end_frame=0 +animation/clip_212/loops=false +animation/clip_213/name="" +animation/clip_213/start_frame=0 +animation/clip_213/end_frame=0 +animation/clip_213/loops=false +animation/clip_214/name="" +animation/clip_214/start_frame=0 +animation/clip_214/end_frame=0 +animation/clip_214/loops=false +animation/clip_215/name="" +animation/clip_215/start_frame=0 +animation/clip_215/end_frame=0 +animation/clip_215/loops=false +animation/clip_216/name="" +animation/clip_216/start_frame=0 +animation/clip_216/end_frame=0 +animation/clip_216/loops=false +animation/clip_217/name="" +animation/clip_217/start_frame=0 +animation/clip_217/end_frame=0 +animation/clip_217/loops=false +animation/clip_218/name="" +animation/clip_218/start_frame=0 +animation/clip_218/end_frame=0 +animation/clip_218/loops=false +animation/clip_219/name="" +animation/clip_219/start_frame=0 +animation/clip_219/end_frame=0 +animation/clip_219/loops=false +animation/clip_220/name="" +animation/clip_220/start_frame=0 +animation/clip_220/end_frame=0 +animation/clip_220/loops=false +animation/clip_221/name="" +animation/clip_221/start_frame=0 +animation/clip_221/end_frame=0 +animation/clip_221/loops=false +animation/clip_222/name="" +animation/clip_222/start_frame=0 +animation/clip_222/end_frame=0 +animation/clip_222/loops=false +animation/clip_223/name="" +animation/clip_223/start_frame=0 +animation/clip_223/end_frame=0 +animation/clip_223/loops=false +animation/clip_224/name="" +animation/clip_224/start_frame=0 +animation/clip_224/end_frame=0 +animation/clip_224/loops=false +animation/clip_225/name="" +animation/clip_225/start_frame=0 +animation/clip_225/end_frame=0 +animation/clip_225/loops=false +animation/clip_226/name="" +animation/clip_226/start_frame=0 +animation/clip_226/end_frame=0 +animation/clip_226/loops=false +animation/clip_227/name="" +animation/clip_227/start_frame=0 +animation/clip_227/end_frame=0 +animation/clip_227/loops=false +animation/clip_228/name="" +animation/clip_228/start_frame=0 +animation/clip_228/end_frame=0 +animation/clip_228/loops=false +animation/clip_229/name="" +animation/clip_229/start_frame=0 +animation/clip_229/end_frame=0 +animation/clip_229/loops=false +animation/clip_230/name="" +animation/clip_230/start_frame=0 +animation/clip_230/end_frame=0 +animation/clip_230/loops=false +animation/clip_231/name="" +animation/clip_231/start_frame=0 +animation/clip_231/end_frame=0 +animation/clip_231/loops=false +animation/clip_232/name="" +animation/clip_232/start_frame=0 +animation/clip_232/end_frame=0 +animation/clip_232/loops=false +animation/clip_233/name="" +animation/clip_233/start_frame=0 +animation/clip_233/end_frame=0 +animation/clip_233/loops=false +animation/clip_234/name="" +animation/clip_234/start_frame=0 +animation/clip_234/end_frame=0 +animation/clip_234/loops=false +animation/clip_235/name="" +animation/clip_235/start_frame=0 +animation/clip_235/end_frame=0 +animation/clip_235/loops=false +animation/clip_236/name="" +animation/clip_236/start_frame=0 +animation/clip_236/end_frame=0 +animation/clip_236/loops=false +animation/clip_237/name="" +animation/clip_237/start_frame=0 +animation/clip_237/end_frame=0 +animation/clip_237/loops=false +animation/clip_238/name="" +animation/clip_238/start_frame=0 +animation/clip_238/end_frame=0 +animation/clip_238/loops=false +animation/clip_239/name="" +animation/clip_239/start_frame=0 +animation/clip_239/end_frame=0 +animation/clip_239/loops=false +animation/clip_240/name="" +animation/clip_240/start_frame=0 +animation/clip_240/end_frame=0 +animation/clip_240/loops=false +animation/clip_241/name="" +animation/clip_241/start_frame=0 +animation/clip_241/end_frame=0 +animation/clip_241/loops=false +animation/clip_242/name="" +animation/clip_242/start_frame=0 +animation/clip_242/end_frame=0 +animation/clip_242/loops=false +animation/clip_243/name="" +animation/clip_243/start_frame=0 +animation/clip_243/end_frame=0 +animation/clip_243/loops=false +animation/clip_244/name="" +animation/clip_244/start_frame=0 +animation/clip_244/end_frame=0 +animation/clip_244/loops=false +animation/clip_245/name="" +animation/clip_245/start_frame=0 +animation/clip_245/end_frame=0 +animation/clip_245/loops=false +animation/clip_246/name="" +animation/clip_246/start_frame=0 +animation/clip_246/end_frame=0 +animation/clip_246/loops=false +animation/clip_247/name="" +animation/clip_247/start_frame=0 +animation/clip_247/end_frame=0 +animation/clip_247/loops=false +animation/clip_248/name="" +animation/clip_248/start_frame=0 +animation/clip_248/end_frame=0 +animation/clip_248/loops=false +animation/clip_249/name="" +animation/clip_249/start_frame=0 +animation/clip_249/end_frame=0 +animation/clip_249/loops=false +animation/clip_250/name="" +animation/clip_250/start_frame=0 +animation/clip_250/end_frame=0 +animation/clip_250/loops=false +animation/clip_251/name="" +animation/clip_251/start_frame=0 +animation/clip_251/end_frame=0 +animation/clip_251/loops=false +animation/clip_252/name="" +animation/clip_252/start_frame=0 +animation/clip_252/end_frame=0 +animation/clip_252/loops=false +animation/clip_253/name="" +animation/clip_253/start_frame=0 +animation/clip_253/end_frame=0 +animation/clip_253/loops=false +animation/clip_254/name="" +animation/clip_254/start_frame=0 +animation/clip_254/end_frame=0 +animation/clip_254/loops=false +animation/clip_255/name="" +animation/clip_255/start_frame=0 +animation/clip_255/end_frame=0 +animation/clip_255/loops=false +animation/clip_256/name="" +animation/clip_256/start_frame=0 +animation/clip_256/end_frame=0 +animation/clip_256/loops=false diff --git a/Objects/Hammer/Hammer.tscn b/Objects/Hammer/Hammer.tscn new file mode 100644 index 0000000..0b7a47b --- /dev/null +++ b/Objects/Hammer/Hammer.tscn @@ -0,0 +1,49 @@ +[gd_scene load_steps=6 format=2] + +[ext_resource path="res://Objects/Hammer/Hammer.gd" type="Script" id=1] +[ext_resource path="res://Objects/Hammer/Material_002.material" type="Material" id=2] +[ext_resource path="res://Objects/Hammer/Material_001.material" type="Material" id=3] + +[sub_resource type="ArrayMesh" id=1] +resource_name = "Hammer_Cylinder" +surfaces/0 = { +"aabb": AABB( -1, -1, -1, 2, 2, 2 ), +"array_data": PoolByteArray( 0, 0, 0, 0, 0, 0, 128, 191, 0, 0, 128, 191, 129, 115, 141, 63, 0, 0, 0, 56, 0, 0, 0, 0, 0, 0, 128, 191, 0, 0, 128, 191, 0, 129, 126, 193, 0, 58, 20, 56, 0, 0, 0, 0, 0, 0, 128, 191, 0, 0, 128, 191, 127, 115, 129, 69, 0, 60, 0, 56, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 128, 191, 129, 115, 141, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 128, 191, 0, 127, 126, 63, 0, 52, 20, 56, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 128, 191, 127, 115, 129, 69, 0, 60, 0, 0, 194, 197, 71, 62, 0, 0, 128, 191, 190, 20, 123, 191, 0, 129, 126, 193, 95, 58, 29, 56, 194, 197, 71, 62, 0, 0, 128, 191, 190, 20, 123, 191, 127, 115, 129, 69, 192, 59, 0, 56, 194, 197, 71, 62, 0, 0, 128, 191, 190, 20, 123, 191, 127, 97, 129, 78, 192, 59, 0, 56, 194, 197, 71, 62, 0, 0, 128, 63, 190, 20, 123, 191, 0, 127, 126, 63, 191, 52, 29, 56, 194, 197, 71, 62, 0, 0, 128, 63, 190, 20, 123, 191, 127, 115, 129, 69, 192, 59, 0, 0, 194, 197, 71, 62, 0, 0, 128, 63, 190, 20, 123, 191, 127, 97, 129, 78, 192, 59, 0, 0, 22, 239, 195, 62, 0, 0, 128, 191, 94, 131, 108, 191, 0, 129, 127, 193, 188, 58, 57, 56, 22, 239, 195, 62, 0, 0, 128, 191, 94, 131, 108, 191, 127, 97, 129, 78, 128, 59, 0, 56, 22, 239, 195, 62, 0, 0, 128, 191, 94, 131, 108, 191, 127, 82, 129, 85, 128, 59, 0, 56, 22, 239, 195, 62, 0, 0, 128, 63, 94, 131, 108, 191, 0, 127, 126, 63, 120, 53, 57, 56, 22, 239, 195, 62, 0, 0, 128, 63, 94, 131, 108, 191, 127, 97, 129, 78, 128, 59, 0, 0, 22, 239, 195, 62, 0, 0, 128, 63, 94, 131, 108, 191, 127, 82, 129, 85, 128, 59, 0, 0, 218, 57, 14, 63, 0, 0, 128, 191, 49, 219, 84, 191, 0, 129, 127, 193, 17, 59, 103, 56, 218, 57, 14, 63, 0, 0, 128, 191, 49, 219, 84, 191, 127, 82, 129, 85, 64, 59, 0, 56, 218, 57, 14, 63, 0, 0, 128, 191, 49, 219, 84, 191, 127, 69, 129, 92, 64, 59, 0, 56, 218, 57, 14, 63, 0, 0, 128, 63, 49, 219, 84, 191, 0, 127, 126, 63, 34, 54, 103, 56, 218, 57, 14, 63, 0, 0, 128, 63, 49, 219, 84, 191, 127, 82, 129, 85, 64, 59, 0, 0, 218, 57, 14, 63, 0, 0, 128, 63, 49, 219, 84, 191, 127, 69, 129, 92, 64, 59, 0, 0, 243, 4, 53, 63, 0, 0, 128, 191, 243, 4, 53, 191, 0, 129, 126, 193, 91, 59, 164, 56, 243, 4, 53, 63, 0, 0, 128, 191, 243, 4, 53, 191, 127, 69, 129, 92, 0, 59, 0, 56, 243, 4, 53, 63, 0, 0, 128, 191, 243, 4, 53, 191, 127, 57, 129, 98, 0, 59, 0, 56, 243, 4, 53, 63, 0, 0, 128, 63, 243, 4, 53, 191, 0, 127, 126, 63, 183, 54, 164, 56, 243, 4, 53, 63, 0, 0, 128, 63, 243, 4, 53, 191, 127, 69, 129, 92, 0, 59, 0, 0, 243, 4, 53, 63, 0, 0, 128, 63, 243, 4, 53, 191, 127, 57, 129, 98, 0, 59, 0, 0, 49, 219, 84, 63, 0, 0, 128, 191, 218, 57, 14, 191, 0, 129, 127, 193, 152, 59, 238, 56, 49, 219, 84, 63, 0, 0, 128, 191, 218, 57, 14, 191, 127, 57, 129, 98, 192, 58, 0, 56, 49, 219, 84, 63, 0, 0, 128, 191, 218, 57, 14, 191, 127, 44, 129, 104, 192, 58, 0, 56, 49, 219, 84, 63, 0, 0, 128, 63, 218, 57, 14, 191, 0, 127, 126, 63, 49, 55, 238, 56, 49, 219, 84, 63, 0, 0, 128, 63, 218, 57, 14, 191, 127, 57, 129, 98, 192, 58, 0, 0, 49, 219, 84, 63, 0, 0, 128, 63, 218, 57, 14, 191, 127, 44, 129, 104, 192, 58, 0, 0, 94, 131, 108, 63, 0, 0, 128, 191, 21, 239, 195, 190, 0, 129, 127, 193, 198, 59, 67, 57, 94, 131, 108, 63, 0, 0, 128, 191, 21, 239, 195, 190, 127, 44, 129, 104, 128, 58, 0, 56, 94, 131, 108, 63, 0, 0, 128, 191, 21, 239, 195, 190, 127, 29, 129, 112, 128, 58, 0, 56, 94, 131, 108, 63, 0, 0, 128, 63, 21, 239, 195, 190, 0, 127, 126, 63, 140, 55, 67, 57, 94, 131, 108, 63, 0, 0, 128, 63, 21, 239, 195, 190, 127, 44, 129, 104, 128, 58, 0, 0, 94, 131, 108, 63, 0, 0, 128, 63, 21, 239, 195, 190, 127, 29, 129, 112, 128, 58, 0, 0, 190, 20, 123, 63, 0, 0, 128, 191, 196, 197, 71, 190, 0, 129, 127, 193, 226, 59, 160, 57, 190, 20, 123, 63, 0, 0, 128, 191, 196, 197, 71, 190, 127, 29, 129, 112, 64, 58, 0, 56, 190, 20, 123, 63, 0, 0, 128, 191, 196, 197, 71, 190, 127, 11, 129, 121, 64, 58, 0, 56, 190, 20, 123, 63, 0, 0, 128, 63, 196, 197, 71, 190, 0, 127, 126, 63, 196, 55, 160, 57, 190, 20, 123, 63, 0, 0, 128, 63, 196, 197, 71, 190, 127, 29, 129, 112, 64, 58, 0, 0, 190, 20, 123, 63, 0, 0, 128, 63, 196, 197, 71, 190, 127, 11, 129, 121, 64, 58, 0, 0, 0, 0, 128, 63, 0, 0, 128, 191, 46, 189, 59, 51, 0, 129, 126, 193, 235, 59, 0, 58, 0, 0, 128, 63, 0, 0, 128, 191, 46, 189, 59, 51, 127, 11, 129, 121, 0, 58, 0, 56, 0, 0, 128, 63, 0, 0, 128, 191, 46, 189, 59, 51, 115, 0, 127, 121, 0, 58, 0, 56, 0, 0, 128, 63, 0, 0, 128, 63, 46, 189, 59, 51, 0, 127, 126, 63, 215, 55, 0, 58, 0, 0, 128, 63, 0, 0, 128, 63, 46, 189, 59, 51, 127, 11, 129, 121, 0, 58, 0, 0, 0, 0, 128, 63, 0, 0, 128, 63, 46, 189, 59, 51, 115, 0, 127, 121, 0, 58, 0, 0, 190, 20, 123, 63, 0, 0, 128, 191, 194, 197, 71, 62, 0, 129, 127, 193, 226, 59, 95, 58, 190, 20, 123, 63, 0, 0, 128, 191, 194, 197, 71, 62, 97, 0, 127, 112, 192, 57, 0, 56, 190, 20, 123, 63, 0, 0, 128, 191, 194, 197, 71, 62, 115, 0, 127, 121, 192, 57, 0, 56, 190, 20, 123, 63, 0, 0, 128, 63, 194, 197, 71, 62, 0, 127, 126, 63, 196, 55, 95, 58, 190, 20, 123, 63, 0, 0, 128, 63, 194, 197, 71, 62, 97, 0, 127, 112, 192, 57, 0, 0, 190, 20, 123, 63, 0, 0, 128, 63, 194, 197, 71, 62, 115, 0, 127, 121, 192, 57, 0, 0, 95, 131, 108, 63, 0, 0, 128, 191, 20, 239, 195, 62, 0, 129, 126, 193, 198, 59, 188, 58, 95, 131, 108, 63, 0, 0, 128, 191, 20, 239, 195, 62, 82, 0, 127, 104, 128, 57, 0, 56, 95, 131, 108, 63, 0, 0, 128, 191, 20, 239, 195, 62, 97, 0, 127, 112, 128, 57, 0, 56, 95, 131, 108, 63, 0, 0, 128, 63, 20, 239, 195, 62, 0, 127, 126, 63, 140, 55, 188, 58, 95, 131, 108, 63, 0, 0, 128, 63, 20, 239, 195, 62, 82, 0, 127, 104, 128, 57, 0, 0, 95, 131, 108, 63, 0, 0, 128, 63, 20, 239, 195, 62, 97, 0, 127, 112, 128, 57, 0, 0, 50, 219, 84, 63, 0, 0, 128, 191, 217, 57, 14, 63, 0, 129, 127, 193, 152, 59, 17, 59, 50, 219, 84, 63, 0, 0, 128, 191, 217, 57, 14, 63, 69, 0, 127, 98, 64, 57, 0, 56, 50, 219, 84, 63, 0, 0, 128, 191, 217, 57, 14, 63, 82, 0, 127, 104, 64, 57, 0, 56, 50, 219, 84, 63, 0, 0, 128, 63, 217, 57, 14, 63, 0, 127, 126, 63, 49, 55, 17, 59, 50, 219, 84, 63, 0, 0, 128, 63, 217, 57, 14, 63, 69, 0, 127, 98, 64, 57, 0, 0, 50, 219, 84, 63, 0, 0, 128, 63, 217, 57, 14, 63, 82, 0, 127, 104, 64, 57, 0, 0, 243, 4, 53, 63, 0, 0, 128, 191, 243, 4, 53, 63, 0, 129, 127, 193, 91, 59, 91, 59, 243, 4, 53, 63, 0, 0, 128, 191, 243, 4, 53, 63, 57, 0, 127, 92, 0, 57, 0, 56, 243, 4, 53, 63, 0, 0, 128, 191, 243, 4, 53, 63, 69, 0, 127, 98, 0, 57, 0, 56, 243, 4, 53, 63, 0, 0, 128, 63, 243, 4, 53, 63, 0, 127, 126, 63, 183, 54, 91, 59, 243, 4, 53, 63, 0, 0, 128, 63, 243, 4, 53, 63, 57, 0, 127, 92, 0, 57, 0, 0, 243, 4, 53, 63, 0, 0, 128, 63, 243, 4, 53, 63, 69, 0, 127, 98, 0, 57, 0, 0, 217, 57, 14, 63, 0, 0, 128, 191, 50, 219, 84, 63, 0, 129, 127, 193, 17, 59, 152, 59, 217, 57, 14, 63, 0, 0, 128, 191, 50, 219, 84, 63, 44, 0, 127, 85, 192, 56, 0, 56, 217, 57, 14, 63, 0, 0, 128, 191, 50, 219, 84, 63, 57, 0, 127, 92, 192, 56, 0, 56, 217, 57, 14, 63, 0, 0, 128, 63, 50, 219, 84, 63, 0, 127, 126, 63, 34, 54, 152, 59, 217, 57, 14, 63, 0, 0, 128, 63, 50, 219, 84, 63, 44, 0, 127, 85, 192, 56, 0, 0, 217, 57, 14, 63, 0, 0, 128, 63, 50, 219, 84, 63, 57, 0, 127, 92, 192, 56, 0, 0, 23, 239, 195, 62, 0, 0, 128, 191, 94, 131, 108, 63, 0, 129, 126, 193, 188, 58, 198, 59, 23, 239, 195, 62, 0, 0, 128, 191, 94, 131, 108, 63, 29, 0, 127, 78, 128, 56, 0, 56, 23, 239, 195, 62, 0, 0, 128, 191, 94, 131, 108, 63, 44, 0, 127, 85, 128, 56, 0, 56, 23, 239, 195, 62, 0, 0, 128, 63, 94, 131, 108, 63, 0, 127, 126, 63, 120, 53, 198, 59, 23, 239, 195, 62, 0, 0, 128, 63, 94, 131, 108, 63, 29, 0, 127, 78, 128, 56, 0, 0, 23, 239, 195, 62, 0, 0, 128, 63, 94, 131, 108, 63, 44, 0, 127, 85, 128, 56, 0, 0, 193, 197, 71, 62, 0, 0, 128, 191, 191, 20, 123, 63, 0, 129, 127, 193, 95, 58, 226, 59, 193, 197, 71, 62, 0, 0, 128, 191, 191, 20, 123, 63, 11, 0, 127, 69, 64, 56, 0, 56, 193, 197, 71, 62, 0, 0, 128, 191, 191, 20, 123, 63, 29, 0, 127, 78, 64, 56, 0, 56, 193, 197, 71, 62, 0, 0, 128, 63, 191, 20, 123, 63, 0, 127, 126, 63, 191, 52, 226, 59, 193, 197, 71, 62, 0, 0, 128, 63, 191, 20, 123, 63, 11, 0, 127, 69, 64, 56, 0, 0, 193, 197, 71, 62, 0, 0, 128, 63, 191, 20, 123, 63, 29, 0, 127, 78, 64, 56, 0, 0, 46, 189, 187, 179, 0, 0, 128, 191, 0, 0, 128, 63, 245, 0, 115, 63, 0, 56, 0, 56, 46, 189, 187, 179, 0, 0, 128, 191, 0, 0, 128, 63, 0, 129, 127, 193, 0, 58, 235, 59, 46, 189, 187, 179, 0, 0, 128, 191, 0, 0, 128, 63, 11, 0, 127, 69, 0, 56, 0, 56, 46, 189, 187, 179, 0, 0, 128, 63, 0, 0, 128, 63, 245, 0, 115, 63, 0, 56, 0, 0, 46, 189, 187, 179, 0, 0, 128, 63, 0, 0, 128, 63, 0, 127, 126, 63, 255, 51, 235, 59, 46, 189, 187, 179, 0, 0, 128, 63, 0, 0, 128, 63, 11, 0, 127, 69, 0, 56, 0, 0, 189, 197, 71, 190, 0, 0, 128, 191, 191, 20, 123, 63, 227, 0, 97, 63, 128, 55, 0, 56, 189, 197, 71, 190, 0, 0, 128, 191, 191, 20, 123, 63, 245, 0, 115, 63, 128, 55, 0, 56, 189, 197, 71, 190, 0, 0, 128, 191, 191, 20, 123, 63, 0, 129, 127, 193, 160, 57, 226, 59, 189, 197, 71, 190, 0, 0, 128, 63, 191, 20, 123, 63, 227, 0, 97, 63, 128, 55, 0, 0, 189, 197, 71, 190, 0, 0, 128, 63, 191, 20, 123, 63, 245, 0, 115, 63, 128, 55, 0, 0, 189, 197, 71, 190, 0, 0, 128, 63, 191, 20, 123, 63, 0, 127, 126, 63, 128, 50, 226, 59, 21, 239, 195, 190, 0, 0, 128, 191, 94, 131, 108, 63, 212, 0, 82, 63, 0, 55, 0, 56, 21, 239, 195, 190, 0, 0, 128, 191, 94, 131, 108, 63, 227, 0, 97, 63, 0, 55, 0, 56, 21, 239, 195, 190, 0, 0, 128, 191, 94, 131, 108, 63, 0, 129, 126, 193, 67, 57, 198, 59, 21, 239, 195, 190, 0, 0, 128, 63, 94, 131, 108, 63, 212, 0, 82, 63, 0, 55, 0, 0, 21, 239, 195, 190, 0, 0, 128, 63, 94, 131, 108, 63, 227, 0, 97, 63, 0, 55, 0, 0, 21, 239, 195, 190, 0, 0, 128, 63, 94, 131, 108, 63, 0, 127, 126, 63, 15, 49, 198, 59, 219, 57, 14, 191, 0, 0, 128, 191, 48, 219, 84, 63, 199, 0, 69, 63, 128, 54, 0, 56, 219, 57, 14, 191, 0, 0, 128, 191, 48, 219, 84, 63, 212, 0, 82, 63, 128, 54, 0, 56, 219, 57, 14, 191, 0, 0, 128, 191, 48, 219, 84, 63, 0, 129, 127, 193, 238, 56, 152, 59, 219, 57, 14, 191, 0, 0, 128, 63, 48, 219, 84, 63, 199, 0, 69, 63, 128, 54, 0, 0, 219, 57, 14, 191, 0, 0, 128, 63, 48, 219, 84, 63, 212, 0, 82, 63, 128, 54, 0, 0, 219, 57, 14, 191, 0, 0, 128, 63, 48, 219, 84, 63, 0, 127, 126, 63, 119, 47, 152, 59, 242, 4, 53, 191, 0, 0, 128, 191, 244, 4, 53, 63, 187, 0, 57, 63, 0, 54, 0, 56, 242, 4, 53, 191, 0, 0, 128, 191, 244, 4, 53, 63, 199, 0, 69, 63, 0, 54, 0, 56, 242, 4, 53, 191, 0, 0, 128, 191, 244, 4, 53, 63, 0, 129, 126, 193, 164, 56, 91, 59, 242, 4, 53, 191, 0, 0, 128, 63, 244, 4, 53, 63, 187, 0, 57, 63, 0, 54, 0, 0, 242, 4, 53, 191, 0, 0, 128, 63, 244, 4, 53, 63, 199, 0, 69, 63, 0, 54, 0, 0, 242, 4, 53, 191, 0, 0, 128, 63, 244, 4, 53, 63, 0, 127, 126, 63, 35, 45, 91, 59, 47, 219, 84, 191, 0, 0, 128, 191, 221, 57, 14, 63, 174, 0, 44, 63, 128, 53, 0, 56, 47, 219, 84, 191, 0, 0, 128, 191, 221, 57, 14, 63, 187, 0, 57, 63, 128, 53, 0, 56, 47, 219, 84, 191, 0, 0, 128, 191, 221, 57, 14, 63, 0, 129, 126, 193, 103, 56, 17, 59, 47, 219, 84, 191, 0, 0, 128, 63, 221, 57, 14, 63, 174, 0, 44, 63, 128, 53, 0, 0, 47, 219, 84, 191, 0, 0, 128, 63, 221, 57, 14, 63, 187, 0, 57, 63, 128, 53, 0, 0, 47, 219, 84, 191, 0, 0, 128, 63, 221, 57, 14, 63, 0, 127, 126, 63, 117, 42, 17, 59, 94, 131, 108, 191, 0, 0, 128, 191, 26, 239, 195, 62, 159, 0, 29, 63, 0, 53, 0, 56, 94, 131, 108, 191, 0, 0, 128, 191, 26, 239, 195, 62, 174, 0, 44, 63, 0, 53, 0, 56, 94, 131, 108, 191, 0, 0, 128, 191, 26, 239, 195, 62, 0, 129, 126, 193, 57, 56, 188, 58, 94, 131, 108, 191, 0, 0, 128, 63, 26, 239, 195, 62, 159, 0, 29, 63, 0, 53, 0, 0, 94, 131, 108, 191, 0, 0, 128, 63, 26, 239, 195, 62, 174, 0, 44, 63, 0, 53, 0, 0, 94, 131, 108, 191, 0, 0, 128, 63, 26, 239, 195, 62, 0, 127, 126, 63, 60, 39, 188, 58, 190, 20, 123, 191, 0, 0, 128, 191, 198, 197, 71, 62, 141, 0, 11, 63, 128, 52, 0, 56, 190, 20, 123, 191, 0, 0, 128, 191, 198, 197, 71, 62, 159, 0, 29, 63, 128, 52, 0, 56, 190, 20, 123, 191, 0, 0, 128, 191, 198, 197, 71, 62, 0, 129, 127, 193, 29, 56, 95, 58, 190, 20, 123, 191, 0, 0, 128, 63, 198, 197, 71, 62, 141, 0, 11, 63, 128, 52, 0, 0, 190, 20, 123, 191, 0, 0, 128, 63, 198, 197, 71, 62, 159, 0, 29, 63, 128, 52, 0, 0, 190, 20, 123, 191, 0, 0, 128, 63, 198, 197, 71, 62, 0, 127, 126, 63, 123, 35, 95, 58, 0, 0, 128, 191, 0, 0, 128, 191, 46, 222, 76, 178, 129, 11, 245, 63, 0, 52, 0, 56, 0, 0, 128, 191, 0, 0, 128, 191, 46, 222, 76, 178, 141, 0, 11, 63, 0, 52, 0, 56, 0, 0, 128, 191, 0, 0, 128, 191, 46, 222, 76, 178, 0, 129, 127, 193, 20, 56, 0, 58, 0, 0, 128, 191, 0, 0, 128, 63, 46, 222, 76, 178, 129, 11, 245, 63, 0, 52, 0, 0, 0, 0, 128, 191, 0, 0, 128, 63, 46, 222, 76, 178, 141, 0, 11, 63, 0, 52, 0, 0, 0, 0, 128, 191, 0, 0, 128, 63, 46, 222, 76, 178, 0, 127, 126, 63, 30, 33, 0, 58, 190, 20, 123, 191, 0, 0, 128, 191, 200, 197, 71, 190, 129, 11, 245, 63, 0, 51, 0, 56, 190, 20, 123, 191, 0, 0, 128, 191, 200, 197, 71, 190, 129, 29, 227, 63, 0, 51, 0, 56, 190, 20, 123, 191, 0, 0, 128, 191, 200, 197, 71, 190, 0, 129, 127, 193, 29, 56, 160, 57, 190, 20, 123, 191, 0, 0, 128, 63, 200, 197, 71, 190, 129, 11, 245, 63, 0, 51, 0, 0, 190, 20, 123, 191, 0, 0, 128, 63, 200, 197, 71, 190, 129, 29, 227, 63, 0, 51, 0, 0, 190, 20, 123, 191, 0, 0, 128, 63, 200, 197, 71, 190, 0, 127, 126, 63, 123, 35, 160, 57, 93, 131, 108, 191, 0, 0, 128, 191, 27, 239, 195, 190, 129, 29, 227, 63, 0, 50, 0, 56, 93, 131, 108, 191, 0, 0, 128, 191, 27, 239, 195, 190, 129, 44, 212, 63, 0, 50, 0, 56, 93, 131, 108, 191, 0, 0, 128, 191, 27, 239, 195, 190, 0, 129, 127, 193, 57, 56, 67, 57, 93, 131, 108, 191, 0, 0, 128, 63, 27, 239, 195, 190, 129, 29, 227, 63, 0, 50, 0, 0, 93, 131, 108, 191, 0, 0, 128, 63, 27, 239, 195, 190, 129, 44, 212, 63, 0, 50, 0, 0, 93, 131, 108, 191, 0, 0, 128, 63, 27, 239, 195, 190, 0, 127, 126, 63, 60, 39, 67, 57, 51, 219, 84, 191, 0, 0, 128, 191, 215, 57, 14, 191, 129, 44, 212, 63, 0, 49, 0, 56, 51, 219, 84, 191, 0, 0, 128, 191, 215, 57, 14, 191, 129, 57, 199, 63, 0, 49, 0, 56, 51, 219, 84, 191, 0, 0, 128, 191, 215, 57, 14, 191, 0, 129, 127, 193, 103, 56, 238, 56, 51, 219, 84, 191, 0, 0, 128, 63, 215, 57, 14, 191, 129, 44, 212, 63, 0, 49, 0, 0, 51, 219, 84, 191, 0, 0, 128, 63, 215, 57, 14, 191, 129, 57, 199, 63, 0, 49, 0, 0, 51, 219, 84, 191, 0, 0, 128, 63, 215, 57, 14, 191, 0, 127, 126, 63, 117, 42, 238, 56, 245, 4, 53, 191, 0, 0, 128, 191, 241, 4, 53, 191, 129, 57, 199, 63, 0, 48, 0, 56, 245, 4, 53, 191, 0, 0, 128, 191, 241, 4, 53, 191, 129, 69, 187, 63, 0, 48, 0, 56, 245, 4, 53, 191, 0, 0, 128, 191, 241, 4, 53, 191, 0, 129, 127, 193, 164, 56, 164, 56, 245, 4, 53, 191, 0, 0, 128, 63, 241, 4, 53, 191, 129, 57, 199, 63, 0, 48, 0, 0, 245, 4, 53, 191, 0, 0, 128, 63, 241, 4, 53, 191, 129, 69, 187, 63, 0, 48, 0, 0, 245, 4, 53, 191, 0, 0, 128, 63, 241, 4, 53, 191, 0, 127, 126, 63, 35, 45, 164, 56, 219, 57, 14, 191, 0, 0, 128, 191, 49, 219, 84, 191, 129, 69, 187, 63, 0, 46, 0, 56, 219, 57, 14, 191, 0, 0, 128, 191, 49, 219, 84, 191, 129, 82, 174, 63, 0, 46, 0, 56, 219, 57, 14, 191, 0, 0, 128, 191, 49, 219, 84, 191, 0, 129, 127, 193, 238, 56, 103, 56, 219, 57, 14, 191, 0, 0, 128, 63, 49, 219, 84, 191, 129, 69, 187, 63, 0, 46, 0, 0, 219, 57, 14, 191, 0, 0, 128, 63, 49, 219, 84, 191, 129, 82, 174, 63, 0, 46, 0, 0, 219, 57, 14, 191, 0, 0, 128, 63, 49, 219, 84, 191, 0, 127, 126, 63, 119, 47, 103, 56, 21, 239, 195, 190, 0, 0, 128, 191, 95, 131, 108, 191, 129, 82, 174, 63, 0, 44, 0, 56, 21, 239, 195, 190, 0, 0, 128, 191, 95, 131, 108, 191, 129, 97, 159, 63, 0, 44, 0, 56, 21, 239, 195, 190, 0, 0, 128, 191, 95, 131, 108, 191, 0, 129, 126, 193, 67, 57, 57, 56, 21, 239, 195, 190, 0, 0, 128, 63, 95, 131, 108, 191, 129, 82, 174, 63, 0, 44, 0, 0, 21, 239, 195, 190, 0, 0, 128, 63, 95, 131, 108, 191, 129, 97, 159, 63, 0, 44, 0, 0, 21, 239, 195, 190, 0, 0, 128, 63, 95, 131, 108, 191, 0, 127, 126, 63, 15, 49, 57, 56, 188, 197, 71, 190, 0, 0, 128, 191, 191, 20, 123, 191, 129, 97, 159, 63, 0, 40, 0, 56, 188, 197, 71, 190, 0, 0, 128, 191, 191, 20, 123, 191, 129, 115, 141, 63, 0, 40, 0, 56, 188, 197, 71, 190, 0, 0, 128, 191, 191, 20, 123, 191, 0, 129, 126, 193, 160, 57, 29, 56, 188, 197, 71, 190, 0, 0, 128, 63, 191, 20, 123, 191, 129, 97, 159, 63, 0, 40, 0, 0, 188, 197, 71, 190, 0, 0, 128, 63, 191, 20, 123, 191, 129, 115, 141, 63, 0, 40, 0, 0, 188, 197, 71, 190, 0, 0, 128, 63, 191, 20, 123, 191, 0, 127, 126, 63, 128, 50, 29, 56 ), +"array_index_data": PoolByteArray( 2, 0, 10, 0, 5, 0, 2, 0, 7, 0, 10, 0, 8, 0, 16, 0, 11, 0, 8, 0, 13, 0, 16, 0, 14, 0, 22, 0, 17, 0, 14, 0, 19, 0, 22, 0, 20, 0, 28, 0, 23, 0, 20, 0, 25, 0, 28, 0, 26, 0, 34, 0, 29, 0, 26, 0, 31, 0, 34, 0, 32, 0, 40, 0, 35, 0, 32, 0, 37, 0, 40, 0, 38, 0, 46, 0, 41, 0, 38, 0, 43, 0, 46, 0, 44, 0, 52, 0, 47, 0, 44, 0, 49, 0, 52, 0, 50, 0, 59, 0, 53, 0, 50, 0, 56, 0, 59, 0, 55, 0, 65, 0, 58, 0, 55, 0, 62, 0, 65, 0, 61, 0, 71, 0, 64, 0, 61, 0, 68, 0, 71, 0, 67, 0, 77, 0, 70, 0, 67, 0, 74, 0, 77, 0, 73, 0, 83, 0, 76, 0, 73, 0, 80, 0, 83, 0, 79, 0, 89, 0, 82, 0, 79, 0, 86, 0, 89, 0, 85, 0, 95, 0, 88, 0, 85, 0, 92, 0, 95, 0, 91, 0, 101, 0, 94, 0, 91, 0, 98, 0, 101, 0, 96, 0, 106, 0, 99, 0, 96, 0, 103, 0, 106, 0, 102, 0, 112, 0, 105, 0, 102, 0, 109, 0, 112, 0, 108, 0, 118, 0, 111, 0, 108, 0, 115, 0, 118, 0, 114, 0, 124, 0, 117, 0, 114, 0, 121, 0, 124, 0, 120, 0, 130, 0, 123, 0, 120, 0, 127, 0, 130, 0, 126, 0, 136, 0, 129, 0, 126, 0, 133, 0, 136, 0, 132, 0, 142, 0, 135, 0, 132, 0, 139, 0, 142, 0, 138, 0, 148, 0, 141, 0, 138, 0, 145, 0, 148, 0, 144, 0, 153, 0, 147, 0, 144, 0, 150, 0, 153, 0, 151, 0, 159, 0, 154, 0, 151, 0, 156, 0, 159, 0, 157, 0, 165, 0, 160, 0, 157, 0, 162, 0, 165, 0, 163, 0, 171, 0, 166, 0, 163, 0, 168, 0, 171, 0, 169, 0, 177, 0, 172, 0, 169, 0, 174, 0, 177, 0, 175, 0, 183, 0, 178, 0, 175, 0, 180, 0, 183, 0, 15, 0, 4, 0, 9, 0, 4, 0, 185, 0, 191, 0, 185, 0, 173, 0, 179, 0, 173, 0, 161, 0, 167, 0, 161, 0, 149, 0, 155, 0, 149, 0, 137, 0, 143, 0, 137, 0, 125, 0, 131, 0, 125, 0, 113, 0, 119, 0, 113, 0, 100, 0, 107, 0, 100, 0, 87, 0, 93, 0, 87, 0, 75, 0, 81, 0, 75, 0, 63, 0, 69, 0, 63, 0, 51, 0, 57, 0, 51, 0, 39, 0, 45, 0, 39, 0, 27, 0, 33, 0, 27, 0, 15, 0, 21, 0, 15, 0, 185, 0, 4, 0, 185, 0, 161, 0, 173, 0, 161, 0, 137, 0, 149, 0, 137, 0, 113, 0, 125, 0, 113, 0, 87, 0, 100, 0, 87, 0, 63, 0, 75, 0, 63, 0, 39, 0, 51, 0, 39, 0, 15, 0, 27, 0, 15, 0, 161, 0, 185, 0, 161, 0, 113, 0, 137, 0, 113, 0, 63, 0, 87, 0, 63, 0, 15, 0, 39, 0, 15, 0, 113, 0, 161, 0, 113, 0, 15, 0, 63, 0, 181, 0, 189, 0, 184, 0, 181, 0, 186, 0, 189, 0, 187, 0, 3, 0, 190, 0, 187, 0, 0, 0, 3, 0, 188, 0, 6, 0, 1, 0, 6, 0, 18, 0, 12, 0, 18, 0, 30, 0, 24, 0, 30, 0, 42, 0, 36, 0, 42, 0, 54, 0, 48, 0, 54, 0, 66, 0, 60, 0, 66, 0, 78, 0, 72, 0, 78, 0, 90, 0, 84, 0, 90, 0, 104, 0, 97, 0, 104, 0, 116, 0, 110, 0, 116, 0, 128, 0, 122, 0, 128, 0, 140, 0, 134, 0, 140, 0, 152, 0, 146, 0, 152, 0, 164, 0, 158, 0, 164, 0, 176, 0, 170, 0, 176, 0, 188, 0, 182, 0, 188, 0, 18, 0, 6, 0, 18, 0, 42, 0, 30, 0, 42, 0, 66, 0, 54, 0, 66, 0, 90, 0, 78, 0, 90, 0, 116, 0, 104, 0, 116, 0, 140, 0, 128, 0, 140, 0, 164, 0, 152, 0, 164, 0, 188, 0, 176, 0, 188, 0, 42, 0, 18, 0, 42, 0, 90, 0, 66, 0, 90, 0, 140, 0, 116, 0, 140, 0, 188, 0, 164, 0, 188, 0, 90, 0, 42, 0, 90, 0, 188, 0, 140, 0 ), +"blend_shape_data": [ ], +"format": 2194711, +"index_count": 372, +"material": ExtResource( 3 ), +"primitive": 4, +"skeleton_aabb": [ ], +"vertex_count": 192 +} +surfaces/1 = { +"aabb": AABB( -1.33058, 0.993185, -3.88907, 2.66117, 0.492108, 7.77815 ), +"array_data": PoolByteArray( 150, 88, 129, 191, 193, 29, 190, 63, 227, 88, 108, 192, 232, 102, 146, 34, 0, 54, 0, 60, 150, 88, 129, 191, 193, 29, 190, 63, 227, 88, 108, 192, 35, 127, 146, 34, 0, 54, 0, 0, 150, 88, 129, 191, 193, 29, 190, 63, 227, 88, 108, 192, 0, 127, 127, 63, 0, 48, 0, 52, 101, 252, 136, 191, 90, 65, 126, 63, 147, 47, 108, 192, 223, 163, 59, 52, 0, 57, 0, 60, 101, 252, 136, 191, 90, 65, 126, 63, 147, 47, 108, 192, 0, 129, 129, 63, 0, 59, 0, 52, 101, 252, 136, 191, 90, 65, 126, 63, 147, 47, 108, 192, 40, 129, 57, 52, 0, 57, 0, 0, 150, 88, 129, 191, 193, 29, 190, 63, 29, 102, 107, 64, 232, 102, 190, 55, 0, 54, 0, 58, 150, 88, 129, 191, 193, 29, 190, 63, 29, 102, 107, 64, 0, 93, 192, 55, 0, 54, 0, 58, 150, 88, 129, 191, 193, 29, 190, 63, 29, 102, 107, 64, 0, 127, 127, 63, 0, 48, 0, 56, 101, 252, 136, 191, 90, 65, 126, 63, 132, 130, 105, 64, 223, 163, 106, 28, 0, 57, 0, 58, 101, 252, 136, 191, 90, 65, 126, 63, 132, 130, 105, 64, 0, 129, 129, 63, 0, 59, 0, 56, 101, 252, 136, 191, 90, 65, 126, 63, 132, 130, 105, 64, 0, 165, 106, 27, 0, 57, 0, 58, 168, 52, 110, 63, 193, 29, 190, 63, 227, 88, 108, 192, 35, 127, 111, 36, 0, 54, 0, 52, 168, 52, 110, 63, 193, 29, 190, 63, 227, 88, 108, 192, 0, 127, 127, 63, 0, 54, 0, 52, 168, 52, 110, 63, 193, 29, 190, 63, 227, 88, 108, 192, 20, 106, 112, 37, 0, 54, 0, 52, 247, 16, 130, 63, 90, 65, 126, 63, 147, 47, 108, 192, 0, 129, 129, 63, 0, 57, 0, 52, 247, 16, 130, 63, 90, 65, 126, 63, 147, 47, 108, 192, 40, 129, 191, 53, 0, 57, 0, 52, 247, 16, 130, 63, 90, 65, 126, 63, 147, 47, 108, 192, 29, 159, 190, 53, 0, 57, 0, 52, 168, 52, 110, 63, 193, 29, 190, 63, 29, 102, 107, 64, 0, 93, 73, 56, 0, 54, 0, 56, 168, 52, 110, 63, 193, 29, 190, 63, 29, 102, 107, 64, 0, 127, 127, 63, 0, 54, 0, 56, 168, 52, 110, 63, 193, 29, 190, 63, 29, 102, 107, 64, 20, 106, 75, 56, 0, 54, 0, 56, 247, 16, 130, 63, 90, 65, 126, 63, 132, 130, 105, 64, 0, 129, 129, 63, 0, 57, 0, 56, 247, 16, 130, 63, 90, 65, 126, 63, 132, 130, 105, 64, 0, 165, 149, 29, 0, 57, 0, 56, 247, 16, 130, 63, 90, 65, 126, 63, 132, 130, 105, 64, 29, 159, 148, 30, 0, 57, 0, 56, 154, 80, 170, 191, 146, 96, 180, 63, 149, 230, 120, 192, 129, 0, 0, 1, 158, 54, 0, 60, 154, 80, 170, 191, 146, 96, 180, 63, 149, 230, 120, 192, 232, 102, 146, 34, 158, 54, 0, 60, 154, 80, 170, 191, 146, 96, 180, 63, 149, 230, 120, 192, 127, 127, 0, 1, 158, 54, 0, 0, 154, 80, 170, 191, 146, 96, 180, 63, 149, 230, 120, 192, 35, 127, 149, 28, 158, 54, 0, 0, 154, 80, 170, 191, 146, 96, 180, 63, 149, 230, 120, 64, 129, 0, 0, 1, 158, 54, 0, 58, 154, 80, 170, 191, 146, 96, 180, 63, 149, 230, 120, 64, 232, 102, 188, 55, 158, 54, 0, 58, 154, 80, 170, 191, 146, 96, 180, 63, 149, 230, 120, 64, 0, 0, 0, 1, 158, 54, 0, 58, 154, 80, 170, 191, 146, 96, 180, 63, 149, 230, 120, 64, 0, 93, 190, 55, 158, 54, 0, 58, 154, 80, 170, 63, 146, 96, 180, 63, 149, 230, 120, 64, 0, 0, 0, 1, 158, 54, 0, 56, 154, 80, 170, 63, 146, 96, 180, 63, 149, 230, 120, 64, 0, 93, 58, 54, 158, 54, 0, 56, 154, 80, 170, 63, 146, 96, 180, 63, 149, 230, 120, 64, 20, 106, 73, 56, 158, 54, 0, 56, 154, 80, 170, 63, 146, 96, 180, 63, 149, 230, 120, 64, 127, 0, 0, 1, 158, 54, 0, 56, 154, 80, 170, 63, 146, 96, 180, 63, 149, 230, 120, 192, 127, 127, 0, 1, 158, 54, 0, 52, 154, 80, 170, 63, 146, 96, 180, 63, 149, 230, 120, 192, 35, 127, 112, 37, 158, 54, 0, 52, 154, 80, 170, 63, 146, 96, 180, 63, 149, 230, 120, 192, 20, 106, 112, 38, 158, 54, 0, 52, 154, 80, 170, 63, 146, 96, 180, 63, 149, 230, 120, 192, 127, 0, 0, 1, 158, 54, 0, 52, 154, 80, 170, 191, 27, 63, 139, 63, 149, 230, 120, 192, 129, 0, 0, 1, 157, 56, 0, 60, 154, 80, 170, 191, 27, 63, 139, 63, 149, 230, 120, 192, 223, 163, 61, 52, 157, 56, 0, 60, 154, 80, 170, 191, 27, 63, 139, 63, 149, 230, 120, 192, 40, 129, 59, 52, 157, 56, 0, 0, 154, 80, 170, 191, 27, 63, 139, 63, 149, 230, 120, 192, 127, 127, 0, 1, 157, 56, 0, 0, 154, 80, 170, 191, 27, 63, 139, 63, 149, 230, 120, 64, 129, 0, 0, 1, 157, 56, 0, 58, 154, 80, 170, 191, 27, 63, 139, 63, 149, 230, 120, 64, 223, 163, 106, 27, 157, 56, 0, 58, 154, 80, 170, 191, 27, 63, 139, 63, 149, 230, 120, 64, 0, 165, 103, 22, 157, 56, 0, 58, 154, 80, 170, 191, 27, 63, 139, 63, 149, 230, 120, 64, 0, 0, 0, 1, 157, 56, 0, 58, 154, 80, 170, 63, 27, 63, 139, 63, 149, 230, 120, 64, 0, 165, 148, 30, 157, 56, 0, 56, 154, 80, 170, 63, 27, 63, 139, 63, 149, 230, 120, 64, 0, 0, 0, 1, 157, 56, 0, 56, 154, 80, 170, 63, 27, 63, 139, 63, 149, 230, 120, 64, 29, 159, 149, 31, 157, 56, 0, 56, 154, 80, 170, 63, 27, 63, 139, 63, 149, 230, 120, 64, 127, 0, 0, 1, 157, 56, 0, 56, 154, 80, 170, 63, 27, 63, 139, 63, 149, 230, 120, 192, 40, 129, 202, 51, 157, 56, 0, 52, 154, 80, 170, 63, 27, 63, 139, 63, 149, 230, 120, 192, 127, 127, 0, 1, 157, 56, 0, 52, 154, 80, 170, 63, 27, 63, 139, 63, 149, 230, 120, 192, 29, 159, 191, 53, 157, 56, 0, 52, 154, 80, 170, 63, 27, 63, 139, 63, 149, 230, 120, 192, 127, 0, 0, 1, 157, 56, 0, 52 ), +"array_index_data": PoolByteArray( 41, 0, 9, 0, 3, 0, 41, 0, 45, 0, 9, 0, 46, 0, 22, 0, 11, 0, 46, 0, 48, 0, 22, 0, 50, 0, 17, 0, 23, 0, 50, 0, 54, 0, 17, 0, 52, 0, 5, 0, 16, 0, 52, 0, 42, 0, 5, 0, 8, 0, 13, 0, 19, 0, 8, 0, 2, 0, 13, 0, 21, 0, 4, 0, 10, 0, 21, 0, 15, 0, 4, 0, 12, 0, 27, 0, 37, 0, 12, 0, 1, 0, 27, 0, 20, 0, 38, 0, 34, 0, 20, 0, 14, 0, 38, 0, 7, 0, 33, 0, 31, 0, 7, 0, 18, 0, 33, 0, 0, 0, 29, 0, 25, 0, 0, 0, 6, 0, 29, 0, 36, 0, 43, 0, 53, 0, 36, 0, 26, 0, 43, 0, 35, 0, 55, 0, 51, 0, 35, 0, 39, 0, 55, 0, 30, 0, 49, 0, 47, 0, 30, 0, 32, 0, 49, 0, 24, 0, 44, 0, 40, 0, 24, 0, 28, 0, 44, 0 ), +"blend_shape_data": [ ], +"format": 2194711, +"index_count": 84, +"material": ExtResource( 2 ), +"primitive": 4, +"skeleton_aabb": [ ], +"vertex_count": 56 +} + +[sub_resource type="BoxShape" id=2] +extents = Vector3( 1.03333, 1, 1 ) + +[node name="Hammer" type="Area"] +script = ExtResource( 1 ) + +[node name="Cylinder" type="MeshInstance" parent="."] +transform = Transform( -5.28973e-09, 0.866025, 0.108279, -0.139736, -4.37114e-08, 0, -3.05403e-09, 0.5, -0.187544, 0, 0, 0 ) +mesh = SubResource( 1 ) +skeleton = NodePath("../../..") +material/0 = null +material/1 = null + +[node name="CollisionShape" type="CollisionShape" parent="."] +transform = Transform( 1.2236, 7.25631e-16, 0, 0, 0.362462, -1.77636e-15, 0, 1.16972e-15, 1.22042, 0.348244, 0, 0.225235 ) +shape = SubResource( 2 ) diff --git a/Objects/Hammer/Material_001.material b/Objects/Hammer/Material_001.material new file mode 100644 index 0000000..b5a318d Binary files /dev/null and b/Objects/Hammer/Material_001.material differ diff --git a/Objects/Hammer/Material_002.material b/Objects/Hammer/Material_002.material new file mode 100644 index 0000000..bfbea1e Binary files /dev/null and b/Objects/Hammer/Material_002.material differ diff --git a/Objects/Player-tank/Player.gd b/Objects/Player-tank/Player.gd index 39cb4d6..bcb71e0 100644 --- a/Objects/Player-tank/Player.gd +++ b/Objects/Player-tank/Player.gd @@ -50,6 +50,7 @@ func _physics_process(delta): Global.playerhit = 0 Global.bulletdamage = 0 Global.playerhealthexecfinish = 1 + Global._player_dead() velocity.x = direction.x * speed velocity.z = direction.z * speed diff --git a/misc/scripts/global.gd b/misc/scripts/global.gd index 39ebd5e..72c9bea 100644 --- a/misc/scripts/global.gd +++ b/misc/scripts/global.gd @@ -8,14 +8,24 @@ var playerhit = 0 var playerhealthbarscale = 2 var bulletdamage = 0 var playerhealthexecfinish = 0 +var playerbody func _resetvars(): playerdead = 0 - beforedeathscene tankskilled = 0 firstlevelcompleted = 0 playerhit = 0 playerhealthbarscale = 2 bulletdamage = 0 playerhealthexecfinish = 0 + +func _player_dead(): + if playerhealthbarscale <= 0: + playerbody.queue_free() + playerdead = 1 + tankskilled = 0 + beforedeathscene = get_tree().current_scene.filename + get_tree().change_scene("res://Levels/Dead.tscn") + playerhealthbarscale = 2 + playerhit = 0