Balance Changes

This commit is contained in:
Zoey Kitt 2024-11-17 11:21:48 -06:00
parent a5e2c5cf4b
commit b2acf9c2f4
2 changed files with 14 additions and 1 deletions

View file

@ -38,6 +38,9 @@ func _ready() -> void:
succfail_timer = $SuccessFail
success_timer = $Success
get_window().title = "Relaxing Fishing Game 🙂"
# Called every frame. 'delta' is the elapsed time since the previous frame.
func _process(delta: float) -> void:
@ -71,9 +74,12 @@ func _on_texture_button_button_up() -> void:
success_timer.start()
$"Yippee!".play()
get_window().title = "Yippee!"
func _on_start_game_timeout() -> void:
if randf() < 0.1:
if randf() < 0.5:
start_game_timer.stop()
in_game_timer.start()
@ -92,6 +98,8 @@ func _on_start_game_timeout() -> void:
num_clicks = randi_range(5,21)
#num_clicks = 21
get_window().title = "MASH MASH MASH MASH MASH"
# YOU LOSE
func _on_in_game_timeout() -> void:
@ -111,6 +119,8 @@ func _on_in_game_timeout() -> void:
succfail_timer.start()
$"Fart".play()
get_window().title = "🙂👎"
func _on_success_fail_timeout() -> void:
sad.visible = false
@ -119,6 +129,8 @@ func _on_success_fail_timeout() -> void:
succfail_timer.stop()
start_game_timer.start()
get_window().title = "Relaxing Fishing Game 🙂"
func _on_success_timeout() -> void:
win.emit()

View file

@ -28,6 +28,7 @@ func _on_start_pressed() -> void:
new_window.size = Vector2i(1280, 720)
new_window.initial_position = Window.WINDOW_INITIAL_POSITION_CENTER_SCREEN_WITH_MOUSE_FOCUS
#new_window.canvas_item_default_texture_filter = Viewport.DEFAULT_CANVAS_ITEM_TEXTURE_FILTER_NEAREST
new_window.unresizable = true
var main_scene = preload("res://scenes/main.tscn")
var main_scene_instance = main_scene.instantiate()
new_window.add_child(main_scene_instance)