ArkSol/scripts/ships_type.gd
2025-11-14 14:59:50 +01:00

18 lines
348 B
GDScript

const SHIP_TYPES = {
"transport": {
"name": "Transportowiec",
"cost": {"iron": 10},
"speed": 80,
"cargo_capacity": 50,
"texture": "res://assets/ships/transport.png"
},
"frigate": {
"name": "Fregata",
"cost": {"iron": 10, "copper": 10},
"speed": 120,
"attack": 10,
"hp": 50,
"texture": "res://assets/ships/fregata.png"
}
}