Compare commits

..

No commits in common. "c615b34312c65369b3ef8916b890f0c8314d1bf8" and "e12d39664e9eb1f06c720c374d3508c699e3b946" have entirely different histories.

View File

@ -1,20 +1,19 @@
extends Node2D extends Node2D
const SHIP_TYPES = { const SHIP_TYPES = {
"transport": { "transport": {
"name": "Transport", "name": "Transportowiec",
"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": "Frigate", "name": "Fregata",
"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"
} }
} }