summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonas Bernard <public.jbernard@web.de>2021-04-26 21:36:40 +0200
committerJonas Bernard <public.jbernard@web.de>2021-04-26 21:36:40 +0200
commitd44dfdce553254fed44c58a25fd4d5235fdc1326 (patch)
treeea79a719773ab5cc4bfae11a38c5fc82ca87b915
parentddbc6f7fe3e45bf17ecfc79b9cca3559e419b9fc (diff)
downloadldjam48-d44dfdce553254fed44c58a25fd4d5235fdc1326.tar.gz
ldjam48-d44dfdce553254fed44c58a25fd4d5235fdc1326.tar.bz2
ldjam48-d44dfdce553254fed44c58a25fd4d5235fdc1326.zip
Push
-rw-r--r--scenes/introduction/check_mail.gd6
-rw-r--r--scenes/levels/base_level.tscn2
-rw-r--r--scenes/levels/hearts_introduce.tscn14
-rw-r--r--scenes/levels/reactiontest.gd4
4 files changed, 11 insertions, 15 deletions
diff --git a/scenes/introduction/check_mail.gd b/scenes/introduction/check_mail.gd
index a2b20c4..6d03cce 100644
--- a/scenes/introduction/check_mail.gd
+++ b/scenes/introduction/check_mail.gd
@@ -15,13 +15,13 @@ func check_pw():
if passwordfield.text == correct:
login()
else:
- if passwordfield.text == "deeper" or trys == 10:
+ if passwordfield.text == "deeper" or trys == 5:
$Monolog2.start()
$Monolog1.visible = false
- if trys == 20:
+ if trys == 10:
$Monolog3.start()
$Monolog2.visible = false
- if trys == 30:
+ if trys == 15:
$Reset.visible = true
correct = "tom"
trys = trys + 1
diff --git a/scenes/levels/base_level.tscn b/scenes/levels/base_level.tscn
index c13cdaa..6681a7d 100644
--- a/scenes/levels/base_level.tscn
+++ b/scenes/levels/base_level.tscn
@@ -24,7 +24,6 @@ __meta__ = {
position = Vector2( 153.457, 427.259 )
current = true
script = ExtResource( 7 )
-speedup_time = 10
[node name="healthbar" parent="Camera2D" instance=ExtResource( 3 )]
position = Vector2( -595.377, -321.363 )
@@ -42,7 +41,6 @@ position = Vector2( 571.642, -311.599 )
text = "Menu"
[node name="PauseMenu" parent="Camera2D" instance=ExtResource( 5 )]
-
[connection signal="done" from="Camera2D" to="." method="_on_Camera2D_done"]
[connection signal="on_click" from="Camera2D/MenuButton" to="." method="_on_MenuButton_on_click"]
[connection signal="unpause" from="Camera2D/PauseMenu" to="." method="_on_PauseMenu_unpause"]
diff --git a/scenes/levels/hearts_introduce.tscn b/scenes/levels/hearts_introduce.tscn
index a1a3698..c44f076 100644
--- a/scenes/levels/hearts_introduce.tscn
+++ b/scenes/levels/hearts_introduce.tscn
@@ -14,18 +14,16 @@ frame_1/delay_sec = 0.0
script = ExtResource( 1 )
[node name="Sprite" type="Sprite" parent="."]
-visible = false
-position = Vector2( -337.617, -202.397 )
+position = Vector2( -445.373, -231.581 )
scale = Vector2( 3.095, 3.095 )
texture = SubResource( 1 )
[node name="Label" type="Label" parent="."]
-visible = false
-margin_left = -279.387
-margin_top = -196.326
-margin_right = 188.613
-margin_bottom = -164.326
-text = "As you can see, you have 10 lives"
+margin_left = -387.143
+margin_top = -225.51
+margin_right = 420.857
+margin_bottom = -193.51
+text = "As you can see, you have 10 lives. Pay attention on them."
__meta__ = {
"_edit_use_anchors_": false
}
diff --git a/scenes/levels/reactiontest.gd b/scenes/levels/reactiontest.gd
index a121ecb..ba6d97b 100644
--- a/scenes/levels/reactiontest.gd
+++ b/scenes/levels/reactiontest.gd
@@ -8,8 +8,8 @@ var timer = 0
func _total_time():
if Settings.difficulty == Settings.Difficulty.HARD:
- return 6
- return 10
+ return 4
+ return 6
func start():
.start()