1
0
mirror of https://github.com/ComfyFactory/ComfyFactorio.git synced 2025-02-03 13:12:11 +02:00

18 lines
545 B
Lua
Raw Normal View History

2020-04-24 13:05:16 +02:00
local Public = {}
Public.wagon_types = {
2021-03-24 16:46:00 +01:00
['cargo-wagon'] = true,
['artillery-wagon'] = true,
['fluid-wagon'] = true,
['locomotive'] = true
2020-04-24 13:05:16 +02:00
}
2020-04-25 12:08:55 +02:00
Public.wagon_areas = {
2021-03-24 16:46:00 +01:00
['cargo-wagon'] = {left_top = {x = -11, y = 0}, right_bottom = {x = 11, y = 40}},
['artillery-wagon'] = {left_top = {x = -11, y = 0}, right_bottom = {x = 11, y = 40}},
['fluid-wagon'] = {left_top = {x = -11, y = 0}, right_bottom = {x = 11, y = 40}},
['locomotive'] = {left_top = {x = -11, y = 0}, right_bottom = {x = 11, y = 40}}
2020-04-25 12:08:55 +02:00
}
2021-03-24 16:46:00 +01:00
return Public