1
0
mirror of https://github.com/ComfyFactory/ComfyFactorio.git synced 2025-01-08 00:39:30 +02:00
ComfyFactorio/modules/immersive_cargo_wagons/constants.lua

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 17:46:00 +02: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 17:46:00 +02: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 17:46:00 +02:00
return Public