add example config files

This commit is contained in:
2026-04-17 22:13:34 +02:00
parent 6e737c908d
commit 8505c27cfa
5 changed files with 251 additions and 0 deletions

21
bin/config/stations.toml Normal file
View File

@@ -0,0 +1,21 @@
[player_station]
surface_mask = [
"SS",
"SS",
]
hp = 500
damage = 25
range = 400
fire_rate = 1.5
scrap_drop = 5
[enemy_station]
surface_mask = [
"SS",
"SS",
]
hp_formula = "300 + 150*x"
damage_formula = "20 + 10*x"
range_formula = "350 + 20*x"
fire_rate_formula = "1.0 + 0.2*x"
scrap_drop_formula = "10 + 5*x"