From 5786af21649a2d52c3db34cd04744266f9c1b678 Mon Sep 17 00:00:00 2001 From: Tirith Date: Thu, 20 Nov 2025 09:06:27 +0100 Subject: [PATCH] Fix Names --- scripts/ships_type.gd | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/scripts/ships_type.gd b/scripts/ships_type.gd index d903d96..d10b2d5 100644 --- a/scripts/ships_type.gd +++ b/scripts/ships_type.gd @@ -1,17 +1,20 @@ +extends Node2D const SHIP_TYPES = { "transport": { - "name": "Transportowiec", + "name": "Transport", "cost": {"iron": 10}, "speed": 80, "cargo_capacity": 50, + "required_tech": null, "texture": "res://assets/ships/transport.png" }, "frigate": { - "name": "Fregata", + "name": "Frigate", "cost": {"iron": 10, "copper": 10}, "speed": 120, "attack": 10, "hp": 50, + "required_tech": null, "texture": "res://assets/ships/fregata.png" } }