add units in config files

This commit is contained in:
2026-06-06 12:13:05 +02:00
parent 66cf9ae23a
commit 6b95619806
24 changed files with 198 additions and 194 deletions

View File

@@ -10,8 +10,8 @@ glyph = "L"
[module.weapon]
damage_formula = "2"
attack_range_formula = "50"
attack_rate_formula = "2.0"
attack_range_m_formula = "50"
attack_rate_hz_formula = "2.0"
[[module]]
id = "salvager"
@@ -24,9 +24,9 @@ fill_color = "#AACC44"
glyph = "Sv"
[module.salvage]
collection_range_formula = "500"
collection_range_m_formula = "500"
cargo_capacity_formula = "10"
collection_rate_formula = "0.5"
collection_rate_hz_formula = "0.5"
[[module]]
id = "repair_tool"
@@ -39,5 +39,5 @@ fill_color = "#66CCFF"
glyph = "Rp"
[module.repair]
repair_rate_formula = "5 + x"
repair_range_formula = "800"
repair_rate_hz_formula = "5 + x"
repair_range_m_formula = "800"

View File

@@ -16,14 +16,14 @@ cost_formula = "10"
hp_formula = "3"
[ship.movement]
speed_formula = "40"
main_acceleration_formula = "80"
maneuvering_acceleration_formula = "40"
angular_acceleration_formula = "12.56"
max_rotation_speed_formula = "6.28"
speed_mps_formula = "40"
main_acceleration_mpss_formula = "80"
maneuvering_acceleration_mpss_formula = "40"
angular_acceleration_radpss_formula = "12.56"
max_rotation_speed_radps_formula = "6.28"
[ship.sensor]
sensor_range_formula = "150"
sensor_range_m_formula = "150"
[ship.loot]
scrap_drop = 2

View File

@@ -14,8 +14,8 @@ surface_mask = [
level = 1
hp_formula = "300"
damage_formula = "5"
range_formula = "200"
fire_rate_formula = "1"
range_m_formula = "200"
fire_rate_hz_formula = "1"
scrap_drop_formula = "10"
[enemy_station]
@@ -25,6 +25,6 @@ surface_mask = [
]
hp_formula = "300 + 150*x"
damage_formula = "2 + 1*x"
range_formula = "200"
fire_rate_formula = "1.0 + 0.2*x"
range_m_formula = "200"
fire_rate_hz_formula = "1.0 + 0.2*x"
scrap_drop_formula = "10 + 5*x"

View File

@@ -5,21 +5,21 @@ starting_building_blocks = 1000
scrap_despawn_seconds = 30
tile_size_m = 10
belt_speed_mps = 20
tunnel_max_distance = 10
tunnel_max_distance_tiles = 10
departure_interval_seconds = 20
[regions]
asteroid_width = 40
player_buffer_width = 20
contest_zone_width = 60
enemy_buffer_width = 20
asteroid_width_tiles = 40
player_buffer_width_tiles = 20
contest_zone_width_tiles = 60
enemy_buffer_width_tiles = 20
[expansion]
columns_per_expansion = 10
columns_per_expansion_tiles = 10
cost_building_blocks = 200
[push]
push_expand_columns = 10
push_expand_columns_tiles = 10
boss_advance_seconds = 60
[waves]