Who knows what

This commit is contained in:
Dan 2026-01-28 13:22:04 +00:00
parent 0fe23420ab
commit 9214d13054
422 changed files with 1412 additions and 4783 deletions

View file

@ -1,7 +1,8 @@
extends Node
# SETTINGS
var play_background_music: bool = false
var play_background_music: bool = true
var game_continue_pressed : bool = false
# STRINGS
var currency_symbol: String = "¥"
@ -12,16 +13,17 @@ var wood_color: Color = Color(0.95, 0.6, 0.35) # Light pumpkin orange (autumn le
var stock_color: Color = Color(0.6, 0.75, 0.95) # Light periwinkle blue (clear autumn sky)
# GAMEPLAY VALUES
var base_sale_price: float = 100
var target_currency: float = 1000
var base_sale_price: float = 30
var base_wood_respawn: float = 5 # seconds
var wood_per_click: float = 5
var cost_per_whittle: float = 1 # This is how many items can be produced per tick
var base_purchase_rate: float = 1
var wholesale_unlock_id = 5
var wholesale_bundle_size = 100
var wholesale_discount_multiplier = 1.2
var wholesale_unlock_id: int = 5
var wholesale_bundle_size: int = 100
var wholesale_discount_multiplier: float = 1.2
var multicraft_unlock_id = 6
var multicraft_unlock_id: int = 6
var autowood_unlock_id = 7
var autowood_unlock_id: int = 7