Skip to content

Commit 58f948f

Browse files
committed
fix: Adjust ship speeds
1 parent 7dd3ba7 commit 58f948f

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

src/game-logic/ships.ts

+10-10
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ export const SHIP_TYPES = {
1010
id: 'explorer',
1111
build_time: 4, // ship_construction + faster_ship_construction tech tree
1212
health: 100, // armor_plating tech tree
13-
speed: 5, // ship_speed tech tree
13+
speed: 15, // ship_speed tech tree
1414
attack: {},
1515
defense: {
1616
default: 10,
@@ -30,7 +30,7 @@ export const SHIP_TYPES = {
3030
id: 'colonizer',
3131
build_time: 5, // ship_construction + faster_ship_construction tech tree
3232
health: 100, // armor_plating tech tree
33-
speed: 5, // ship_speed tech tree
33+
speed: 15, // ship_speed tech tree
3434
attack: {},
3535
defense: {
3636
default: 10,
@@ -55,7 +55,7 @@ export const SHIP_TYPES = {
5555
id: 'interceptor',
5656
build_time: 4, // small_ship_construction + faster_ship_construction tech tree
5757
health: 100, // armor_plating tech tree
58-
speed: 10, // ship_speed tech tree
58+
speed: 14, // ship_speed tech tree
5959
attack: { // small_fighters tech tree
6060
default: 10,
6161
fighter: 30,
@@ -81,7 +81,7 @@ export const SHIP_TYPES = {
8181
id: 'fighter',
8282
build_time: 4, // small_ship_construction + faster_ship_construction tech tree
8383
health: 100, // armor_plating tech tree
84-
speed: 10, // ship_speed tech tree
84+
speed: 12, // ship_speed tech tree
8585
attack: { // small_fighters tech tree
8686
default: 10,
8787
interceptor: 30,
@@ -183,7 +183,7 @@ export const SHIP_TYPES = {
183183
id: 'destroyer',
184184
build_time: 0, // medium_ship_construction + faster_ship_construction tech tree
185185
health: 250, // armor_plating tech tree
186-
speed: 5, // ship_speed tech tree
186+
speed: 7, // ship_speed tech tree
187187
attack: { // medium_fighters tech tree
188188
default: 50,
189189
},
@@ -205,7 +205,7 @@ export const SHIP_TYPES = {
205205
id: 'cruiser',
206206
build_time: 0, // medium_ship_construction + faster_ship_construction tech tree
207207
health: 300, // armor_plating tech tree
208-
speed: 5, // ship_speed tech tree
208+
speed: 6, // ship_speed tech tree
209209
attack: { // medium_fighters tech tree
210210
default: 100,
211211
},
@@ -228,7 +228,7 @@ export const SHIP_TYPES = {
228228
id: 'vanguard',
229229
build_time: 0, // medium_ship_construction + faster_ship_construction tech tree
230230
health: 300, // armor_plating tech tree
231-
speed: 5, // ship_speed tech tree
231+
speed: 6, // ship_speed tech tree
232232
attack: { // medium_fighters tech tree
233233
default: 150,
234234
},
@@ -251,7 +251,7 @@ export const SHIP_TYPES = {
251251
id: 'sentinel',
252252
build_time: 0, // medium_ship_construction + faster_ship_construction tech tree
253253
health: 300, // armor_plating tech tree
254-
speed: 5, // ship_speed tech tree
254+
speed: 6, // ship_speed tech tree
255255
attack: { // medium_fighters tech tree
256256
default: 200,
257257
},
@@ -300,7 +300,7 @@ export const SHIP_TYPES = {
300300
id: 'carrier',
301301
build_time: 0, // large_ship_construction + faster_ship_construction tech tree
302302
health: 800, // armor_plating tech tree
303-
speed: 5, // ship_speed tech tree
303+
speed: 4, // ship_speed tech tree
304304
attack: { // large_fighters tech tree
305305
default: 300,
306306
},
@@ -322,7 +322,7 @@ export const SHIP_TYPES = {
322322
id: 'dreadnought',
323323
build_time: 0, // large_ship_construction + faster_ship_construction tech tree
324324
health: 1000, // armor_plating tech tree
325-
speed: 5, // ship_speed tech tree
325+
speed: 3, // ship_speed tech tree
326326
attack: { // large_fighters tech tree
327327
default: 400,
328328
},

0 commit comments

Comments
 (0)