From 209648a39c98ccddc622703554912a21c2471531 Mon Sep 17 00:00:00 2001 From: Aki Date: Sun, 8 Jan 2023 15:38:00 +0100 Subject: Implemented naive armour and shield without parametrized resits --- universe/resources/universe/ship_types.json | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'universe/resources') diff --git a/universe/resources/universe/ship_types.json b/universe/resources/universe/ship_types.json index cc2d892..0e7bc89 100644 --- a/universe/resources/universe/ship_types.json +++ b/universe/resources/universe/ship_types.json @@ -2,16 +2,22 @@ { "name": "Anvil", "base_structure_points": 600.0, + "base_armour_points": 400.0, + "base_shield_points": 3700.0, "max_speed": 218.0 }, { "name": "Eclipse", "base_structure_points": 600.0, + "base_armour_points": 950.0, + "base_shield_points": 200.0, "max_speed": 263.0 }, { "name": "Warbringer", "base_structure_points": 600.0, + "base_armour_points": 400.0, + "base_shield_points": 1400.0, "max_speed": 336.0 } ] -- cgit v1.1