-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathdata.lua
51 lines (47 loc) · 2.36 KB
/
data.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
require "__FreightForwarding__.prototypes.water"
require "__FreightForwarding__.prototypes.landfill"
require "__FreightForwarding__.prototypes.titansteel"
require "__FreightForwarding__.prototypes.slag"
require "__FreightForwarding__.prototypes.lava-pool"
require "__FreightForwarding__.prototypes.battery-transport"
require "__FreightForwarding__.prototypes.seismic-scanner"
require "__FreightForwarding__.prototypes.sonar-buoy"
require "__FreightForwarding__.prototypes.rocket-silo"
require "__FreightForwarding__.prototypes.seamount"
require "__FreightForwarding__.prototypes.dredger"
require "__FreightForwarding__.prototypes.nodule"
require "__FreightForwarding__.prototypes.cobalt"
require "__FreightForwarding__.prototypes.underwater-pipe"
require "__FreightForwarding__.prototypes.offshore-tank"
require "__FreightForwarding__.prototypes.lex-aircraft"
require "__FreightForwarding__.prototypes.trains"
require "__FreightForwarding__.prototypes.cargo-ships"
require "__FreightForwarding__.prototypes.transport-science"
require "__FreightForwarding__.prototypes.endgame"
require "__FreightForwarding__.prototypes.resources"
require "__FreightForwarding__.prototypes.map-gen"
require "__FreightForwarding__.prototypes.map-gen-presets"
require "__FreightForwarding__.prototypes.recipe"
require "__FreightForwarding__.prototypes.tips-and-tricks"
require "__FreightForwarding__.simulations.menu"
local radar = data.raw["radar"]["radar"]
radar.max_distance_of_sector_revealed = 17 -- 35x35 chunk square
radar.energy_per_sector = "3MJ"
radar.max_distance_of_nearby_sector_revealed = 4
radar.energy_per_nearby_scan = "150kJ"
--[[
Vanilla radar:
max_distance_of_sector_revealed = 14 -- 29x29 chunk square
energy_per_sector = "10MJ"
max_distance_of_nearby_sector_revealed = 3
energy_per_nearby_scan = "250kJ"
]]
data.raw["spider-vehicle"]["lex-flying-gunship"].torso_bob_speed = 0.7
data.raw["spider-vehicle"]["lex-flying-cargo"].torso_bob_speed = 0.3
data.raw["spider-vehicle"]["lex-flying-heavyship"].torso_bob_speed = 0.45
data.raw["spider-vehicle"]["lex-flying-cargo"].chunk_exploration_radius = 6
data.raw["spider-vehicle"]["lex-flying-heavyship"].chunk_exploration_radius = 6
-- Compatibility
require "__FreightForwarding__.compatibility.advanced-centrifuge.data"
require "__FreightForwarding__.compatibility.beautiful-bridge-railway.data"
require "__FreightForwarding__.compatibility.krastorio2.data"