super_space_game/scripts/global.gd
2025-12-05 22:34:56 -05:00

38 lines
494 B
GDScript

extends Node
var ground_location = null
var orbit_zones = [
{
"name": "The Star",
"distance": 2048 * 1.5,
"spawns": []
},
{
"name": "Test Zone",
"distance": 0,
"spawns": [
{
"type": "asteroid",
"chance_percent": 100,
"amount_min": 4,
"amount_max": 5,
}
]
},
]
var stats = {
"fuel": 12,
"fuel_tank_size": 1,
"speed": 512,
"boost_tank_size": 1,
"marks": 200,
}
var settings = {
"master_volume": 1.0,
"music_volume": 1.0,
"sfx_volume": 1.0,
}