Skip to content

Commit

Permalink
fix: Adjust ship speeds
Browse files Browse the repository at this point in the history
  • Loading branch information
Clashsoft committed Aug 13, 2024
1 parent 7dd3ba7 commit 58f948f
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions src/game-logic/ships.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export const SHIP_TYPES = {
id: 'explorer',
build_time: 4, // ship_construction + faster_ship_construction tech tree
health: 100, // armor_plating tech tree
speed: 5, // ship_speed tech tree
speed: 15, // ship_speed tech tree
attack: {},
defense: {
default: 10,
Expand All @@ -30,7 +30,7 @@ export const SHIP_TYPES = {
id: 'colonizer',
build_time: 5, // ship_construction + faster_ship_construction tech tree
health: 100, // armor_plating tech tree
speed: 5, // ship_speed tech tree
speed: 15, // ship_speed tech tree
attack: {},
defense: {
default: 10,
Expand All @@ -55,7 +55,7 @@ export const SHIP_TYPES = {
id: 'interceptor',
build_time: 4, // small_ship_construction + faster_ship_construction tech tree
health: 100, // armor_plating tech tree
speed: 10, // ship_speed tech tree
speed: 14, // ship_speed tech tree
attack: { // small_fighters tech tree
default: 10,
fighter: 30,
Expand All @@ -81,7 +81,7 @@ export const SHIP_TYPES = {
id: 'fighter',
build_time: 4, // small_ship_construction + faster_ship_construction tech tree
health: 100, // armor_plating tech tree
speed: 10, // ship_speed tech tree
speed: 12, // ship_speed tech tree
attack: { // small_fighters tech tree
default: 10,
interceptor: 30,
Expand Down Expand Up @@ -183,7 +183,7 @@ export const SHIP_TYPES = {
id: 'destroyer',
build_time: 0, // medium_ship_construction + faster_ship_construction tech tree
health: 250, // armor_plating tech tree
speed: 5, // ship_speed tech tree
speed: 7, // ship_speed tech tree
attack: { // medium_fighters tech tree
default: 50,
},
Expand All @@ -205,7 +205,7 @@ export const SHIP_TYPES = {
id: 'cruiser',
build_time: 0, // medium_ship_construction + faster_ship_construction tech tree
health: 300, // armor_plating tech tree
speed: 5, // ship_speed tech tree
speed: 6, // ship_speed tech tree
attack: { // medium_fighters tech tree
default: 100,
},
Expand All @@ -228,7 +228,7 @@ export const SHIP_TYPES = {
id: 'vanguard',
build_time: 0, // medium_ship_construction + faster_ship_construction tech tree
health: 300, // armor_plating tech tree
speed: 5, // ship_speed tech tree
speed: 6, // ship_speed tech tree
attack: { // medium_fighters tech tree
default: 150,
},
Expand All @@ -251,7 +251,7 @@ export const SHIP_TYPES = {
id: 'sentinel',
build_time: 0, // medium_ship_construction + faster_ship_construction tech tree
health: 300, // armor_plating tech tree
speed: 5, // ship_speed tech tree
speed: 6, // ship_speed tech tree
attack: { // medium_fighters tech tree
default: 200,
},
Expand Down Expand Up @@ -300,7 +300,7 @@ export const SHIP_TYPES = {
id: 'carrier',
build_time: 0, // large_ship_construction + faster_ship_construction tech tree
health: 800, // armor_plating tech tree
speed: 5, // ship_speed tech tree
speed: 4, // ship_speed tech tree
attack: { // large_fighters tech tree
default: 300,
},
Expand All @@ -322,7 +322,7 @@ export const SHIP_TYPES = {
id: 'dreadnought',
build_time: 0, // large_ship_construction + faster_ship_construction tech tree
health: 1000, // armor_plating tech tree
speed: 5, // ship_speed tech tree
speed: 3, // ship_speed tech tree
attack: { // large_fighters tech tree
default: 400,
},
Expand Down

0 comments on commit 58f948f

Please sign in to comment.