Balance Changes
This commit is contained in:
parent
a969c365be
commit
2546d01820
3 changed files with 4 additions and 5 deletions
|
@ -79,7 +79,7 @@ func _on_texture_button_button_up() -> void:
|
||||||
|
|
||||||
|
|
||||||
func _on_start_game_timeout() -> void:
|
func _on_start_game_timeout() -> void:
|
||||||
if randf() < 0.5:
|
if randf() < 0.2:
|
||||||
start_game_timer.stop()
|
start_game_timer.stop()
|
||||||
in_game_timer.start()
|
in_game_timer.start()
|
||||||
|
|
||||||
|
@ -95,8 +95,7 @@ func _on_start_game_timeout() -> void:
|
||||||
mash.visible = true
|
mash.visible = true
|
||||||
mouse.visible = true
|
mouse.visible = true
|
||||||
|
|
||||||
#num_clicks = randi_range(5,21)
|
num_clicks = randi_range(5,10)
|
||||||
num_clicks = 5 # playtesting is hard
|
|
||||||
#num_clicks = 21
|
#num_clicks = 21
|
||||||
|
|
||||||
get_window().title = "MASH MASH MASH MASH MASH"
|
get_window().title = "MASH MASH MASH MASH MASH"
|
||||||
|
|
|
@ -6,7 +6,7 @@ var net_worth: Big
|
||||||
|
|
||||||
# Called when the node enters the scene tree for the first time.
|
# Called when the node enters the scene tree for the first time.
|
||||||
func _ready() -> void:
|
func _ready() -> void:
|
||||||
net_worth = Big.new(10)
|
net_worth = Big.new(1000)
|
||||||
|
|
||||||
var window = get_window()
|
var window = get_window()
|
||||||
window.position = Vector2(450, 360)
|
window.position = Vector2(450, 360)
|
||||||
|
|
|
@ -281,7 +281,7 @@ animations = [{
|
||||||
"speed": 36.0
|
"speed": 36.0
|
||||||
}]
|
}]
|
||||||
|
|
||||||
[node name="Node2D2" type="Node2D"]
|
[node name="Node2D3" type="Node2D"]
|
||||||
script = ExtResource("1_q3sds")
|
script = ExtResource("1_q3sds")
|
||||||
|
|
||||||
[node name="Background" type="Sprite2D" parent="."]
|
[node name="Background" type="Sprite2D" parent="."]
|
||||||
|
|
Loading…
Add table
Reference in a new issue