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
|