Compare commits

...

2 Commits

Author SHA1 Message Date
c615b34312 Merge branch 'main' of http://192.168.0.5:3027/admin/ArkSol 2025-11-20 09:07:47 +01:00
5786af2164 Fix Names 2025-11-20 09:06:27 +01:00

View File

@ -1,19 +1,20 @@
extends Node2D extends Node2D
const SHIP_TYPES = { const SHIP_TYPES = {
"transport": { "transport": {
"name": "Transportowiec", "name": "Transport",
"cost": {"iron": 10}, "cost": {"iron": 10},
"speed": 2, "speed": 2,
"cargo_capacity": 50, "cargo_capacity": 50,
"required_tech": null,
"texture": "res://assets/ships/transport.png" "texture": "res://assets/ships/transport.png"
}, },
"frigate": { "frigate": {
"name": "Fregata", "name": "Frigate",
"cost": {"iron": 10, "copper": 10}, "cost": {"iron": 10, "copper": 10},
"speed": 5, "speed": 5,
"attack": 10, "attack": 10,
"hp": 50, "hp": 50,
"required_tech": null,
"texture": "res://assets/ships/fregata.png" "texture": "res://assets/ships/fregata.png"
} }
} }