Fix fluidboxes
This commit is contained in:
parent
8233489b4c
commit
ac93709ae6
34 changed files with 619 additions and 819 deletions
|
@ -58,55 +58,50 @@ data:extend({
|
||||||
energy_usage = '400kW',
|
energy_usage = '400kW',
|
||||||
fluid_boxes = {
|
fluid_boxes = {
|
||||||
{
|
{
|
||||||
|
|
||||||
base_area = 1,
|
volume = 200,
|
||||||
height = 2,
|
|
||||||
base_level = 1,
|
base_level = 1,
|
||||||
pipe_covers = pipecoverspictures(),
|
pipe_covers = pipecoverspictures(),
|
||||||
pipe_picture = grey_south_pipe_picture,
|
pipe_picture = grey_south_pipe_picture,
|
||||||
pipe_connections =
|
pipe_connections =
|
||||||
{
|
{
|
||||||
{type = "output", position = {0, -4}},
|
{flow_direction = "output", direction = defines.direction.north, position = {0, -3}},
|
||||||
},
|
|
||||||
production_type = "output"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
|
|
||||||
base_area = 1,
|
|
||||||
height = 2,
|
|
||||||
base_level = 1,
|
|
||||||
pipe_covers = pipecoverspictures(),
|
|
||||||
pipe_picture = grey_south_pipe_picture,
|
|
||||||
pipe_connections =
|
|
||||||
{
|
|
||||||
{type = "output", position = {-4, 0}}
|
|
||||||
},
|
|
||||||
production_type = "output"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
|
|
||||||
base_area = 1,
|
|
||||||
height = 2,
|
|
||||||
base_level = 1,
|
|
||||||
pipe_covers = pipecoverspictures(),
|
|
||||||
pipe_picture = grey_south_pipe_picture,
|
|
||||||
pipe_connections =
|
|
||||||
{
|
|
||||||
{type = "output", position = {4, 0}},
|
|
||||||
--{type = "output", position = {2, -2.5}}
|
|
||||||
},
|
},
|
||||||
production_type = "output"
|
production_type = "output"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|
||||||
base_area = 1,
|
volume = 200,
|
||||||
height = 2,
|
|
||||||
base_level = 1,
|
base_level = 1,
|
||||||
pipe_covers = pipecoverspictures(),
|
pipe_covers = pipecoverspictures(),
|
||||||
pipe_picture = grey_south_pipe_picture,
|
pipe_picture = grey_south_pipe_picture,
|
||||||
pipe_connections =
|
pipe_connections =
|
||||||
{
|
{
|
||||||
{type = "output", position = {0, 4}},
|
{flow_direction = "output", direction = defines.direction.west, position = {-3, 0}}
|
||||||
|
},
|
||||||
|
production_type = "output"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
|
||||||
|
volume = 200,
|
||||||
|
base_level = 1,
|
||||||
|
pipe_covers = pipecoverspictures(),
|
||||||
|
pipe_picture = grey_south_pipe_picture,
|
||||||
|
pipe_connections =
|
||||||
|
{
|
||||||
|
{flow_direction = "output", direction = defines.direction.east, position = {3, 0}},
|
||||||
|
},
|
||||||
|
production_type = "output"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
|
||||||
|
volume = 200,
|
||||||
|
base_level = 1,
|
||||||
|
pipe_covers = pipecoverspictures(),
|
||||||
|
pipe_picture = grey_south_pipe_picture,
|
||||||
|
pipe_connections =
|
||||||
|
{
|
||||||
|
{flow_direction = "output", direction = defines.direction.south, position = {0, 3}},
|
||||||
},
|
},
|
||||||
production_type = "output"
|
production_type = "output"
|
||||||
},
|
},
|
||||||
|
@ -150,25 +145,4 @@ data:extend({
|
||||||
apparent_volume = 0.1,
|
apparent_volume = 0.1,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
|
|
||||||
--{
|
|
||||||
-- production_type = "input",
|
|
||||||
--pipe_picture = assembler2pipepictures(),
|
|
||||||
--pipe_covers = pipecoverspictures(),
|
|
||||||
-- base_area = 10,
|
|
||||||
-- base_level = -1,
|
|
||||||
-- pipe_connections = {
|
|
||||||
-- { type="input", position = {-2, -2,5} },
|
|
||||||
-- { type="input", position = {2, -2.5} },
|
|
||||||
-- },
|
|
||||||
-- },
|
|
||||||
-- {
|
|
||||||
-- production_type = "output",
|
|
||||||
--pipe_picture = assembler2pipepictures(),
|
|
||||||
--pipe_covers = pipecoverspictures(),
|
|
||||||
-- base_area = 10,
|
|
||||||
-- base_level = 1,
|
|
||||||
-- pipe_connections = {{ type="output", position = {2, 2.5} }},
|
|
||||||
-- },
|
|
||||||
-- off_when_no_fluid_recipe = true
|
|
|
@ -139,8 +139,8 @@ data:extend({
|
||||||
burns_fluid = true,
|
burns_fluid = true,
|
||||||
fluid_usage_per_tick = 1,
|
fluid_usage_per_tick = 1,
|
||||||
fluid_box = {
|
fluid_box = {
|
||||||
base_area = 1,
|
|
||||||
height = 2,
|
volume = 200,
|
||||||
base_level = -1,
|
base_level = -1,
|
||||||
filter = 'el_desulfurized_kerosene',
|
filter = 'el_desulfurized_kerosene',
|
||||||
pipe_covers = pipecoverspictures(),
|
pipe_covers = pipecoverspictures(),
|
||||||
|
@ -149,10 +149,10 @@ data:extend({
|
||||||
maximum_temperature = 40,
|
maximum_temperature = 40,
|
||||||
production_type = 'input-output',
|
production_type = 'input-output',
|
||||||
pipe_connections = {
|
pipe_connections = {
|
||||||
{type = "input-output", position = {2, 0}},
|
{flow_direction = "input-output", direction = defines.direction.east, position = {1, 0}},
|
||||||
{type = "input-output", position = {-2, 0}},
|
{flow_direction = "input-output", direction = defines.direction.west, position = {-1, 0}},
|
||||||
{type = "input-output", position = {0, 2}},
|
{flow_direction = "input-output", direction = defines.direction.south, position = {0, 1}},
|
||||||
{type = "input-output", position = {0, -2}},
|
{flow_direction = "input-output", direction = defines.direction.north, position = {0, -1}},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
fluid_input = {
|
fluid_input = {
|
||||||
|
|
|
@ -59,55 +59,50 @@ data:extend({
|
||||||
energy_usage = '100kW',
|
energy_usage = '100kW',
|
||||||
fluid_boxes = {
|
fluid_boxes = {
|
||||||
{
|
{
|
||||||
|
|
||||||
base_area = 1,
|
volume = 200,
|
||||||
height = 2,
|
|
||||||
base_level = -1,
|
base_level = -1,
|
||||||
pipe_covers = pipecoverspictures(),
|
pipe_covers = pipecoverspictures(),
|
||||||
pipe_picture = grey_south_pipe_picture,
|
pipe_picture = grey_south_pipe_picture,
|
||||||
pipe_connections =
|
pipe_connections =
|
||||||
{
|
{
|
||||||
{type = "input", position = {0, -4}},
|
{flow_direction = "input", direction = defines.direction.north, position = {0, -3}},
|
||||||
},
|
|
||||||
production_type = "input"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
|
|
||||||
base_area = 1,
|
|
||||||
height = 2,
|
|
||||||
base_level = -1,
|
|
||||||
pipe_covers = pipecoverspictures(),
|
|
||||||
pipe_picture = grey_south_pipe_picture,
|
|
||||||
pipe_connections =
|
|
||||||
{
|
|
||||||
{type = "input", position = {-4, 0}}
|
|
||||||
},
|
|
||||||
production_type = "input"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
|
|
||||||
base_area = 1,
|
|
||||||
height = 2,
|
|
||||||
base_level = -1,
|
|
||||||
pipe_covers = pipecoverspictures(),
|
|
||||||
pipe_picture = grey_south_pipe_picture,
|
|
||||||
pipe_connections =
|
|
||||||
{
|
|
||||||
{type = "input", position = {4, 0}},
|
|
||||||
--{type = "output", position = {2, -2.5}}
|
|
||||||
},
|
},
|
||||||
production_type = "input"
|
production_type = "input"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|
||||||
base_area = 1,
|
volume = 200,
|
||||||
height = 2,
|
|
||||||
base_level = -1,
|
base_level = -1,
|
||||||
pipe_covers = pipecoverspictures(),
|
pipe_covers = pipecoverspictures(),
|
||||||
pipe_picture = grey_south_pipe_picture,
|
pipe_picture = grey_south_pipe_picture,
|
||||||
pipe_connections =
|
pipe_connections =
|
||||||
{
|
{
|
||||||
{type = "input", position = {0, 4}},
|
{flow_direction = "input", direction = defines.direction.west, position = {-3, 0}}
|
||||||
|
},
|
||||||
|
production_type = "input"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
|
||||||
|
volume = 200,
|
||||||
|
base_level = -1,
|
||||||
|
pipe_covers = pipecoverspictures(),
|
||||||
|
pipe_picture = grey_south_pipe_picture,
|
||||||
|
pipe_connections =
|
||||||
|
{
|
||||||
|
{flow_direction = "input", direction = defines.direction.east, position = {3, 0}},
|
||||||
|
},
|
||||||
|
production_type = "input"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
|
||||||
|
volume = 200,
|
||||||
|
base_level = -1,
|
||||||
|
pipe_covers = pipecoverspictures(),
|
||||||
|
pipe_picture = grey_south_pipe_picture,
|
||||||
|
pipe_connections =
|
||||||
|
{
|
||||||
|
{flow_direction = "input", direction = defines.direction.south, position = {0, 3}},
|
||||||
},
|
},
|
||||||
production_type = "input"
|
production_type = "input"
|
||||||
},
|
},
|
||||||
|
@ -144,25 +139,4 @@ data:extend({
|
||||||
apparent_volume = 0.1,
|
apparent_volume = 0.1,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
|
|
||||||
--{
|
|
||||||
-- production_type = "input",
|
|
||||||
--pipe_picture = assembler2pipepictures(),
|
|
||||||
--pipe_covers = pipecoverspictures(),
|
|
||||||
-- base_area = 10,
|
|
||||||
-- base_level = -1,
|
|
||||||
-- pipe_connections = {
|
|
||||||
-- { type="input", position = {-2, -2,5} },
|
|
||||||
-- { type="input", position = {2, -2.5} },
|
|
||||||
-- },
|
|
||||||
-- },
|
|
||||||
-- {
|
|
||||||
-- production_type = "output",
|
|
||||||
--pipe_picture = assembler2pipepictures(),
|
|
||||||
--pipe_covers = pipecoverspictures(),
|
|
||||||
-- base_area = 10,
|
|
||||||
-- base_level = 1,
|
|
||||||
-- pipe_connections = {{ type="output", position = {2, 2.5} }},
|
|
||||||
-- },
|
|
||||||
-- off_when_no_fluid_recipe = true
|
|
|
@ -27,7 +27,6 @@ data:extend({
|
||||||
--prototype
|
--prototype
|
||||||
{
|
{
|
||||||
name = 'el_charger_entity',
|
name = 'el_charger_entity',
|
||||||
--type = 'furnace',
|
|
||||||
type = 'assembling-machine',
|
type = 'assembling-machine',
|
||||||
icon = sprite('icon.png'),
|
icon = sprite('icon.png'),
|
||||||
icon_size = 64,
|
icon_size = 64,
|
||||||
|
@ -42,10 +41,7 @@ data:extend({
|
||||||
result = 'el_charger_item',
|
result = 'el_charger_item',
|
||||||
},
|
},
|
||||||
crafting_categories = {'el_charger_category'},
|
crafting_categories = {'el_charger_category'},
|
||||||
--result_inventory_size = 1,
|
|
||||||
--source_inventory_size = 1,
|
|
||||||
crafting_speed = 1,
|
crafting_speed = 1,
|
||||||
--fixed_recipe = 'el_water_pressure_recipe',
|
|
||||||
energy_source = {
|
energy_source = {
|
||||||
type = 'electric',
|
type = 'electric',
|
||||||
usage_priority = 'secondary-input',
|
usage_priority = 'secondary-input',
|
||||||
|
@ -54,58 +50,53 @@ data:extend({
|
||||||
fluid_boxes = {
|
fluid_boxes = {
|
||||||
{
|
{
|
||||||
|
|
||||||
base_area = 20,
|
volume = 4000,
|
||||||
filter = 'water',
|
filter = 'water',
|
||||||
height = 2,
|
|
||||||
base_level = -1,
|
base_level = -1,
|
||||||
pipe_covers = pipecoverspictures(),
|
pipe_covers = pipecoverspictures(),
|
||||||
pipe_picture = grey_south_pipe_picture,
|
pipe_picture = grey_south_pipe_picture,
|
||||||
pipe_connections =
|
pipe_connections =
|
||||||
{
|
{
|
||||||
{type = "input", position = {0, -4}},
|
{flow_direction = "input", direction = defines.direction.north, position = {0, -3}},
|
||||||
},
|
},
|
||||||
production_type = "input"
|
production_type = "input"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|
||||||
base_area = 20,
|
volume = 4000,
|
||||||
height = 2,
|
|
||||||
filter = 'fu_oxygen',
|
filter = 'fu_oxygen',
|
||||||
base_level = 1,
|
base_level = 1,
|
||||||
pipe_covers = pipecoverspictures(),
|
pipe_covers = pipecoverspictures(),
|
||||||
pipe_picture = grey_south_pipe_picture,
|
pipe_picture = grey_south_pipe_picture,
|
||||||
pipe_connections =
|
pipe_connections =
|
||||||
{
|
{
|
||||||
{type = "output", position = {-4, 0}}
|
{flow_direction = "output", direction = defines.direction.west, position = {-3, 0}}
|
||||||
},
|
|
||||||
production_type = "output"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
|
|
||||||
base_area = 20,
|
|
||||||
height = 2,
|
|
||||||
filter = 'fu_hydrogen',
|
|
||||||
base_level = 1,
|
|
||||||
pipe_covers = pipecoverspictures(),
|
|
||||||
pipe_picture = grey_south_pipe_picture,
|
|
||||||
pipe_connections =
|
|
||||||
{
|
|
||||||
{type = "output", position = {4, 0}},
|
|
||||||
--{type = "output", position = {2, -2.5}}
|
|
||||||
},
|
},
|
||||||
production_type = "output"
|
production_type = "output"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|
||||||
base_area = 20,
|
volume = 4000,
|
||||||
height = 2,
|
|
||||||
filter = 'fu_hydrogen',
|
filter = 'fu_hydrogen',
|
||||||
base_level = 1,
|
base_level = 1,
|
||||||
pipe_covers = pipecoverspictures(),
|
pipe_covers = pipecoverspictures(),
|
||||||
pipe_picture = grey_south_pipe_picture,
|
pipe_picture = grey_south_pipe_picture,
|
||||||
pipe_connections =
|
pipe_connections =
|
||||||
{
|
{
|
||||||
{type = "output", position = {0, 4}},
|
{flow_direction = "output", direction = defines.direction.east, position = {3, 0}},
|
||||||
|
},
|
||||||
|
production_type = "output"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
|
||||||
|
volume = 4000,
|
||||||
|
filter = 'fu_hydrogen',
|
||||||
|
base_level = 1,
|
||||||
|
pipe_covers = pipecoverspictures(),
|
||||||
|
pipe_picture = grey_south_pipe_picture,
|
||||||
|
pipe_connections =
|
||||||
|
{
|
||||||
|
{flow_direction = "output", direction = defines.direction.south, position = {0, 3}},
|
||||||
},
|
},
|
||||||
production_type = "output"
|
production_type = "output"
|
||||||
},
|
},
|
||||||
|
@ -149,25 +140,4 @@ data:extend({
|
||||||
apparent_volume = 0.1,
|
apparent_volume = 0.1,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
|
|
||||||
--{
|
|
||||||
-- production_type = "input",
|
|
||||||
--pipe_picture = assembler2pipepictures(),
|
|
||||||
--pipe_covers = pipecoverspictures(),
|
|
||||||
-- base_area = 10,
|
|
||||||
-- base_level = -1,
|
|
||||||
-- pipe_connections = {
|
|
||||||
-- { type="input", position = {-2, -2,5} },
|
|
||||||
-- { type="input", position = {2, -2.5} },
|
|
||||||
-- },
|
|
||||||
-- },
|
|
||||||
-- {
|
|
||||||
-- production_type = "output",
|
|
||||||
--pipe_picture = assembler2pipepictures(),
|
|
||||||
--pipe_covers = pipecoverspictures(),
|
|
||||||
-- base_area = 10,
|
|
||||||
-- base_level = 1,
|
|
||||||
-- pipe_connections = {{ type="output", position = {2, 2.5} }},
|
|
||||||
-- },
|
|
||||||
-- off_when_no_fluid_recipe = true
|
|
|
@ -59,51 +59,50 @@ data:extend({
|
||||||
energy_usage = '200kW',
|
energy_usage = '200kW',
|
||||||
fluid_boxes = {
|
fluid_boxes = {
|
||||||
{
|
{
|
||||||
base_area = 1,
|
|
||||||
height = 2,
|
volume = 200,
|
||||||
base_level = -1,
|
base_level = -1,
|
||||||
pipe_covers = pipecoverspictures(),
|
pipe_covers = pipecoverspictures(),
|
||||||
pipe_picture = south_basic_pipe_picture,
|
pipe_picture = south_basic_pipe_picture,
|
||||||
pipe_connections =
|
pipe_connections =
|
||||||
{
|
{
|
||||||
{type = "input", position = {0, -3}},
|
{flow_direction = "input", direction = defines.direction.north, position = {0, -2}},
|
||||||
},
|
|
||||||
production_type = "input"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
base_area = 1,
|
|
||||||
height = 2,
|
|
||||||
base_level = -1,
|
|
||||||
pipe_covers = pipecoverspictures(),
|
|
||||||
pipe_picture = south_basic_pipe_picture,
|
|
||||||
pipe_connections =
|
|
||||||
{
|
|
||||||
{type = "input", position = {-3, 0}}
|
|
||||||
},
|
|
||||||
production_type = "input"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
base_area = 1,
|
|
||||||
height = 2,
|
|
||||||
base_level = -1,
|
|
||||||
pipe_covers = pipecoverspictures(),
|
|
||||||
pipe_picture = south_basic_pipe_picture,
|
|
||||||
pipe_connections =
|
|
||||||
{
|
|
||||||
{type = "input", position = {3, 0}},
|
|
||||||
--{type = "output", position = {2, -2.5}}
|
|
||||||
},
|
},
|
||||||
production_type = "input"
|
production_type = "input"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
base_area = 1,
|
|
||||||
height = 2,
|
volume = 200,
|
||||||
base_level = -1,
|
base_level = -1,
|
||||||
pipe_covers = pipecoverspictures(),
|
pipe_covers = pipecoverspictures(),
|
||||||
pipe_picture = south_basic_pipe_picture,
|
pipe_picture = south_basic_pipe_picture,
|
||||||
pipe_connections =
|
pipe_connections =
|
||||||
{
|
{
|
||||||
{type = "input", position = {0, 3}},
|
{flow_direction = "input", direction = defines.direction.west, position = {-2, 0}}
|
||||||
|
},
|
||||||
|
production_type = "input"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
|
||||||
|
volume = 200,
|
||||||
|
base_level = -1,
|
||||||
|
pipe_covers = pipecoverspictures(),
|
||||||
|
pipe_picture = south_basic_pipe_picture,
|
||||||
|
pipe_connections =
|
||||||
|
{
|
||||||
|
{flow_direction = "input", direction = defines.direction.east, position = {2, 0}},
|
||||||
|
},
|
||||||
|
production_type = "input"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
|
||||||
|
volume = 200,
|
||||||
|
base_level = -1,
|
||||||
|
pipe_covers = pipecoverspictures(),
|
||||||
|
pipe_picture = south_basic_pipe_picture,
|
||||||
|
pipe_connections =
|
||||||
|
{
|
||||||
|
{flow_direction = "input", direction = defines.direction.south, position = {0, 2}},
|
||||||
},
|
},
|
||||||
production_type = "input"
|
production_type = "input"
|
||||||
},
|
},
|
||||||
|
|
|
@ -100,53 +100,53 @@ data:extend({
|
||||||
fluid_boxes = {
|
fluid_boxes = {
|
||||||
{
|
{
|
||||||
filter = 'el_ki_cpu_fluid',
|
filter = 'el_ki_cpu_fluid',
|
||||||
base_area = 1,
|
|
||||||
height = 2,
|
volume = 200,
|
||||||
base_level = -1,
|
base_level = -1,
|
||||||
pipe_covers = pipecoverspictures(),
|
pipe_covers = pipecoverspictures(),
|
||||||
pipe_picture = grey_south_long_north_pipe_picture,
|
pipe_picture = grey_south_long_north_pipe_picture,
|
||||||
pipe_connections =
|
pipe_connections =
|
||||||
{
|
{
|
||||||
{type = "input", position = {0.5, -3.5}},
|
{flow_direction = "input", direction = defines.direction.north, position = {0.5, -2.5}},
|
||||||
},
|
},
|
||||||
production_type = "input"
|
production_type = "input"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
filter = 'el_ki_cpu_fluid',
|
filter = 'el_ki_cpu_fluid',
|
||||||
base_area = 1,
|
|
||||||
height = 2,
|
volume = 200,
|
||||||
base_level = -1,
|
base_level = -1,
|
||||||
pipe_covers = pipecoverspictures(),
|
pipe_covers = pipecoverspictures(),
|
||||||
pipe_picture = grey_south_long_north_pipe_picture,
|
pipe_picture = grey_south_long_north_pipe_picture,
|
||||||
pipe_connections =
|
pipe_connections =
|
||||||
{
|
{
|
||||||
{type = "input", position = {-0.5, -3.5}},
|
{flow_direction = "input", direction = defines.direction.north, position = {-0.5, -2.5}},
|
||||||
},
|
},
|
||||||
production_type = "input"
|
production_type = "input"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
filter = 'el_ki_memory_fluid',
|
filter = 'el_ki_memory_fluid',
|
||||||
base_area = 1,
|
|
||||||
height = 2,
|
volume = 200,
|
||||||
base_level = -1,
|
base_level = -1,
|
||||||
pipe_covers = pipecoverspictures(),
|
pipe_covers = pipecoverspictures(),
|
||||||
pipe_picture = grey_south_long_north_pipe_picture,
|
pipe_picture = grey_south_long_north_pipe_picture,
|
||||||
pipe_connections =
|
pipe_connections =
|
||||||
{
|
{
|
||||||
{type = "input", position = {0.5, 3.5}},
|
{flow_direction = "input", direction = defines.direction.south, position = {0.5, 2.5}},
|
||||||
},
|
},
|
||||||
production_type = "input"
|
production_type = "input"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
filter = 'el_ki_memory_fluid',
|
filter = 'el_ki_memory_fluid',
|
||||||
base_area = 1,
|
|
||||||
height = 2,
|
volume = 200,
|
||||||
base_level = -1,
|
base_level = -1,
|
||||||
pipe_covers = pipecoverspictures(),
|
pipe_covers = pipecoverspictures(),
|
||||||
pipe_picture = grey_south_long_north_pipe_picture,
|
pipe_picture = grey_south_long_north_pipe_picture,
|
||||||
pipe_connections =
|
pipe_connections =
|
||||||
{
|
{
|
||||||
{type = "input", position = {-0.5, 3.5}},
|
{flow_direction = "input", direction = defines.direction.south, position = {-0.5, 2.5}},
|
||||||
},
|
},
|
||||||
production_type = "input"
|
production_type = "input"
|
||||||
},
|
},
|
||||||
|
@ -243,79 +243,79 @@ data:extend({
|
||||||
fluid_boxes = {
|
fluid_boxes = {
|
||||||
{
|
{
|
||||||
filter = 'el_ki_cpu_fluid',
|
filter = 'el_ki_cpu_fluid',
|
||||||
base_area = 1,
|
|
||||||
height = 2,
|
volume = 200,
|
||||||
base_level = -1,
|
base_level = -1,
|
||||||
pipe_covers = pipecoverspictures(),
|
pipe_covers = pipecoverspictures(),
|
||||||
pipe_picture = grey_south_long_north_pipe_picture,
|
pipe_picture = grey_south_long_north_pipe_picture,
|
||||||
pipe_connections =
|
pipe_connections =
|
||||||
{
|
{
|
||||||
{type = "input", position = {0.5, -3.5}},
|
{flow_direction = "input", direction = defines.direction.north, position = {0.5, -2.5}},
|
||||||
},
|
},
|
||||||
production_type = "input"
|
production_type = "input"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
filter = 'el_ki_cpu_fluid',
|
filter = 'el_ki_cpu_fluid',
|
||||||
base_area = 1,
|
|
||||||
height = 2,
|
volume = 200,
|
||||||
base_level = -1,
|
base_level = -1,
|
||||||
pipe_covers = pipecoverspictures(),
|
pipe_covers = pipecoverspictures(),
|
||||||
pipe_picture = grey_south_long_north_pipe_picture,
|
pipe_picture = grey_south_long_north_pipe_picture,
|
||||||
pipe_connections =
|
pipe_connections =
|
||||||
{
|
{
|
||||||
{type = "input", position = {-0.5, -3.5}},
|
{flow_direction = "input", direction = defines.direction.north, position = {-0.5, -2.5}},
|
||||||
},
|
},
|
||||||
production_type = "input"
|
production_type = "input"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
filter = 'el_ki_memory_fluid',
|
filter = 'el_ki_memory_fluid',
|
||||||
base_area = 1,
|
|
||||||
height = 2,
|
volume = 200,
|
||||||
base_level = -1,
|
base_level = -1,
|
||||||
pipe_covers = pipecoverspictures(),
|
pipe_covers = pipecoverspictures(),
|
||||||
pipe_picture = grey_south_long_north_pipe_picture,
|
pipe_picture = grey_south_long_north_pipe_picture,
|
||||||
pipe_connections =
|
pipe_connections =
|
||||||
{
|
{
|
||||||
{type = "input", position = {0.5, 3.5}},
|
{flow_direction = "input", direction = defines.direction.south, position = {0.5, 2.5}},
|
||||||
},
|
},
|
||||||
production_type = "input"
|
production_type = "input"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
filter = 'el_ki_memory_fluid',
|
filter = 'el_ki_memory_fluid',
|
||||||
base_area = 1,
|
|
||||||
height = 2,
|
volume = 200,
|
||||||
base_level = -1,
|
base_level = -1,
|
||||||
pipe_covers = pipecoverspictures(),
|
pipe_covers = pipecoverspictures(),
|
||||||
pipe_picture = grey_south_long_north_pipe_picture,
|
pipe_picture = grey_south_long_north_pipe_picture,
|
||||||
pipe_connections =
|
pipe_connections =
|
||||||
{
|
{
|
||||||
{type = "input", position = {-0.5, 3.5}},
|
{flow_direction = "input", direction = defines.direction.south, position = {-0.5, 2.5}},
|
||||||
},
|
},
|
||||||
production_type = "input"
|
production_type = "input"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
filter = 'fi_ki_circuit_fluid',
|
filter = 'fi_ki_circuit_fluid',
|
||||||
base_area = 1,
|
|
||||||
height = 2,
|
volume = 200,
|
||||||
base_level = -1,
|
base_level = -1,
|
||||||
pipe_covers = pipecoverspictures(),
|
pipe_covers = pipecoverspictures(),
|
||||||
pipe_picture = grey_south_long_north_pipe_picture,
|
pipe_picture = grey_south_long_north_pipe_picture,
|
||||||
pipe_connections =
|
pipe_connections =
|
||||||
{
|
{
|
||||||
{type = "input", position = {3.5, 0.5}},
|
{flow_direction = "input", direction = defines.direction.east, position = {2.5, 0.5}},
|
||||||
},
|
},
|
||||||
production_type = "input"
|
production_type = "input"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
filter = 'fi_ki_circuit_fluid',
|
filter = 'fi_ki_circuit_fluid',
|
||||||
base_area = 1,
|
|
||||||
height = 2,
|
volume = 200,
|
||||||
base_level = -1,
|
base_level = -1,
|
||||||
pipe_covers = pipecoverspictures(),
|
pipe_covers = pipecoverspictures(),
|
||||||
pipe_picture = grey_south_long_north_pipe_picture,
|
pipe_picture = grey_south_long_north_pipe_picture,
|
||||||
pipe_connections =
|
pipe_connections =
|
||||||
{
|
{
|
||||||
{type = "input", position = {3.5, -0.5}},
|
{flow_direction = "input", direction = defines.direction.east, position = {2.5, -0.5}},
|
||||||
},
|
},
|
||||||
production_type = "input"
|
production_type = "input"
|
||||||
}
|
}
|
||||||
|
@ -412,105 +412,105 @@ data:extend({
|
||||||
fluid_boxes = {
|
fluid_boxes = {
|
||||||
{
|
{
|
||||||
filter = 'el_ki_cpu_fluid',
|
filter = 'el_ki_cpu_fluid',
|
||||||
base_area = 1,
|
|
||||||
height = 2,
|
volume = 200,
|
||||||
base_level = -1,
|
base_level = -1,
|
||||||
pipe_covers = pipecoverspictures(),
|
pipe_covers = pipecoverspictures(),
|
||||||
pipe_picture = grey_south_long_north_pipe_picture,
|
pipe_picture = grey_south_long_north_pipe_picture,
|
||||||
pipe_connections =
|
pipe_connections =
|
||||||
{
|
{
|
||||||
{type = "input", position = {0.5, -3.5}},
|
{flow_direction = "input", direction = defines.direction.north, position = {0.5, -2.5}},
|
||||||
},
|
},
|
||||||
production_type = "input"
|
production_type = "input"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
filter = 'el_ki_cpu_fluid',
|
filter = 'el_ki_cpu_fluid',
|
||||||
base_area = 1,
|
|
||||||
height = 2,
|
volume = 200,
|
||||||
base_level = -1,
|
base_level = -1,
|
||||||
pipe_covers = pipecoverspictures(),
|
pipe_covers = pipecoverspictures(),
|
||||||
pipe_picture = grey_south_long_north_pipe_picture,
|
pipe_picture = grey_south_long_north_pipe_picture,
|
||||||
pipe_connections =
|
pipe_connections =
|
||||||
{
|
{
|
||||||
{type = "input", position = {-0.5, -3.5}},
|
{flow_direction = "input", direction = defines.direction.north, position = {-0.5, -2.5}},
|
||||||
},
|
},
|
||||||
production_type = "input"
|
production_type = "input"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
filter = 'el_ki_memory_fluid',
|
filter = 'el_ki_memory_fluid',
|
||||||
base_area = 1,
|
|
||||||
height = 2,
|
volume = 200,
|
||||||
base_level = -1,
|
base_level = -1,
|
||||||
pipe_covers = pipecoverspictures(),
|
pipe_covers = pipecoverspictures(),
|
||||||
pipe_picture = grey_south_long_north_pipe_picture,
|
pipe_picture = grey_south_long_north_pipe_picture,
|
||||||
pipe_connections =
|
pipe_connections =
|
||||||
{
|
{
|
||||||
{type = "input", position = {0.5, 3.5}},
|
{flow_direction = "input", direction = defines.direction.south, position = {0.5, 2.5}},
|
||||||
},
|
},
|
||||||
production_type = "input"
|
production_type = "input"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
filter = 'el_ki_memory_fluid',
|
filter = 'el_ki_memory_fluid',
|
||||||
base_area = 1,
|
|
||||||
height = 2,
|
volume = 200,
|
||||||
base_level = -1,
|
base_level = -1,
|
||||||
pipe_covers = pipecoverspictures(),
|
pipe_covers = pipecoverspictures(),
|
||||||
pipe_picture = grey_south_long_north_pipe_picture,
|
pipe_picture = grey_south_long_north_pipe_picture,
|
||||||
pipe_connections =
|
pipe_connections =
|
||||||
{
|
{
|
||||||
{type = "input", position = {-0.5, 3.5}},
|
{flow_direction = "input", direction = defines.direction.south, position = {-0.5, 2.5}},
|
||||||
},
|
},
|
||||||
production_type = "input"
|
production_type = "input"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
filter = 'fi_ki_circuit_fluid',
|
filter = 'fi_ki_circuit_fluid',
|
||||||
base_area = 1,
|
|
||||||
height = 2,
|
volume = 200,
|
||||||
base_level = -1,
|
base_level = -1,
|
||||||
pipe_covers = pipecoverspictures(),
|
pipe_covers = pipecoverspictures(),
|
||||||
pipe_picture = grey_south_long_north_pipe_picture,
|
pipe_picture = grey_south_long_north_pipe_picture,
|
||||||
pipe_connections =
|
pipe_connections =
|
||||||
{
|
{
|
||||||
{type = "input", position = {3.5, 0.5}},
|
{flow_direction = "input", direction = defines.direction.east, position = {2.5, 0.5}},
|
||||||
},
|
},
|
||||||
production_type = "input"
|
production_type = "input"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
filter = 'fi_ki_circuit_fluid',
|
filter = 'fi_ki_circuit_fluid',
|
||||||
base_area = 1,
|
|
||||||
height = 2,
|
volume = 200,
|
||||||
base_level = -1,
|
base_level = -1,
|
||||||
pipe_covers = pipecoverspictures(),
|
pipe_covers = pipecoverspictures(),
|
||||||
pipe_picture = grey_south_long_north_pipe_picture,
|
pipe_picture = grey_south_long_north_pipe_picture,
|
||||||
pipe_connections =
|
pipe_connections =
|
||||||
{
|
{
|
||||||
{type = "input", position = {3.5, -0.5}},
|
{flow_direction = "input", direction = defines.direction.east, position = {2.5, -0.5}},
|
||||||
},
|
},
|
||||||
production_type = "input"
|
production_type = "input"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
filter = 'fu_ki_circuit_fluid',
|
filter = 'fu_ki_circuit_fluid',
|
||||||
base_area = 1,
|
|
||||||
height = 2,
|
volume = 200,
|
||||||
base_level = -1,
|
base_level = -1,
|
||||||
pipe_covers = pipecoverspictures(),
|
pipe_covers = pipecoverspictures(),
|
||||||
pipe_picture = grey_south_long_north_pipe_picture,
|
pipe_picture = grey_south_long_north_pipe_picture,
|
||||||
pipe_connections =
|
pipe_connections =
|
||||||
{
|
{
|
||||||
{type = "input", position = {-3.5, 0.5}},
|
{flow_direction = "input", direction = defines.direction.west, position = {-2.5, 0.5}},
|
||||||
},
|
},
|
||||||
production_type = "input"
|
production_type = "input"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
filter = 'fu_ki_circuit_fluid',
|
filter = 'fu_ki_circuit_fluid',
|
||||||
base_area = 1,
|
|
||||||
height = 2,
|
volume = 200,
|
||||||
base_level = -1,
|
base_level = -1,
|
||||||
pipe_covers = pipecoverspictures(),
|
pipe_covers = pipecoverspictures(),
|
||||||
pipe_picture = grey_south_long_north_pipe_picture,
|
pipe_picture = grey_south_long_north_pipe_picture,
|
||||||
pipe_connections =
|
pipe_connections =
|
||||||
{
|
{
|
||||||
{type = "input", position = {-3.5, -0.5}},
|
{flow_direction = "input", direction = defines.direction.west, position = {-2.5, -0.5}},
|
||||||
},
|
},
|
||||||
production_type = "input"
|
production_type = "input"
|
||||||
}
|
}
|
||||||
|
|
|
@ -53,14 +53,14 @@ data:extend({
|
||||||
fluid_boxes = {
|
fluid_boxes = {
|
||||||
{
|
{
|
||||||
filter = 'el_ki_cpu_fluid',
|
filter = 'el_ki_cpu_fluid',
|
||||||
base_area = 1,
|
|
||||||
height = 2,
|
volume = 200,
|
||||||
base_level = 1,
|
base_level = 1,
|
||||||
pipe_covers = pipecoverspictures(),
|
pipe_covers = pipecoverspictures(),
|
||||||
pipe_picture = grey_south_pipe_picture,
|
pipe_picture = grey_south_pipe_picture,
|
||||||
pipe_connections =
|
pipe_connections =
|
||||||
{
|
{
|
||||||
{type = "output", position = {0, 2}},
|
{flow_direction = "output", direction = defines.direction.east, position = {0, 1}},
|
||||||
},
|
},
|
||||||
production_type = "output"
|
production_type = "output"
|
||||||
},
|
},
|
||||||
|
|
|
@ -53,14 +53,14 @@ data:extend({
|
||||||
fluid_boxes = {
|
fluid_boxes = {
|
||||||
{
|
{
|
||||||
filter = 'el_ki_memory_fluid',
|
filter = 'el_ki_memory_fluid',
|
||||||
base_area = 1,
|
|
||||||
height = 2,
|
volume = 200,
|
||||||
base_level = 1,
|
base_level = 1,
|
||||||
pipe_covers = pipecoverspictures(),
|
pipe_covers = pipecoverspictures(),
|
||||||
pipe_picture = grey_south_pipe_picture,
|
pipe_picture = grey_south_pipe_picture,
|
||||||
pipe_connections =
|
pipe_connections =
|
||||||
{
|
{
|
||||||
{type = "output", position = {0, 2}},
|
{flow_direction = "output", direction = defines.direction.east, position = {0, 1}},
|
||||||
},
|
},
|
||||||
production_type = "output"
|
production_type = "output"
|
||||||
},
|
},
|
||||||
|
|
|
@ -53,14 +53,14 @@ data:extend({
|
||||||
fluid_boxes = {
|
fluid_boxes = {
|
||||||
{
|
{
|
||||||
filter = 'fi_ki_circuit_fluid',
|
filter = 'fi_ki_circuit_fluid',
|
||||||
base_area = 1,
|
|
||||||
height = 2,
|
volume = 200,
|
||||||
base_level = 1,
|
base_level = 1,
|
||||||
pipe_covers = pipecoverspictures(),
|
pipe_covers = pipecoverspictures(),
|
||||||
pipe_picture = grey_south_pipe_picture,
|
pipe_picture = grey_south_pipe_picture,
|
||||||
pipe_connections =
|
pipe_connections =
|
||||||
{
|
{
|
||||||
{type = "output", position = {0, 2}},
|
{flow_direction = "output", direction = defines.direction.east, position = {0, 1}},
|
||||||
},
|
},
|
||||||
production_type = "output"
|
production_type = "output"
|
||||||
},
|
},
|
||||||
|
|
|
@ -53,14 +53,14 @@ data:extend({
|
||||||
fluid_boxes = {
|
fluid_boxes = {
|
||||||
{
|
{
|
||||||
filter = 'fu_ki_circuit_fluid',
|
filter = 'fu_ki_circuit_fluid',
|
||||||
base_area = 1,
|
|
||||||
height = 2,
|
volume = 200,
|
||||||
base_level = 1,
|
base_level = 1,
|
||||||
pipe_covers = pipecoverspictures(),
|
pipe_covers = pipecoverspictures(),
|
||||||
pipe_picture = grey_south_pipe_picture,
|
pipe_picture = grey_south_pipe_picture,
|
||||||
pipe_connections =
|
pipe_connections =
|
||||||
{
|
{
|
||||||
{type = "output", position = {0, 2}},
|
{flow_direction = "output", direction = defines.direction.east, position = {0, 1}},
|
||||||
},
|
},
|
||||||
production_type = "output"
|
production_type = "output"
|
||||||
},
|
},
|
||||||
|
|
|
@ -54,54 +54,53 @@ data:extend({
|
||||||
fluid_boxes = {
|
fluid_boxes = {
|
||||||
{
|
{
|
||||||
filter = 'water',
|
filter = 'water',
|
||||||
base_area = 1,
|
|
||||||
height = 2,
|
volume = 200,
|
||||||
base_level = -1,
|
base_level = -1,
|
||||||
pipe_covers = pipecoverspictures(),
|
pipe_covers = pipecoverspictures(),
|
||||||
pipe_picture = grey_south_pipe_picture,
|
pipe_picture = grey_south_pipe_picture,
|
||||||
pipe_connections =
|
pipe_connections =
|
||||||
{
|
{
|
||||||
{type = "input", position = {0, -2}},
|
{flow_direction = "input", direction = defines.direction.north, position = {0, -1}},
|
||||||
},
|
},
|
||||||
production_type = "input"
|
production_type = "input"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
filter = 'steam',
|
filter = 'steam',
|
||||||
base_area = 1,
|
|
||||||
height = 2,
|
volume = 200,
|
||||||
base_level = -1,
|
base_level = -1,
|
||||||
pipe_covers = pipecoverspictures(),
|
pipe_covers = pipecoverspictures(),
|
||||||
pipe_picture = grey_south_pipe_picture,
|
pipe_picture = grey_south_pipe_picture,
|
||||||
pipe_connections =
|
pipe_connections =
|
||||||
{
|
{
|
||||||
{type = "input", position = {-2, 0}}
|
{flow_direction = "input", direction = defines.direction.west, position = {-1, 0}}
|
||||||
},
|
},
|
||||||
production_type = "input"
|
production_type = "input"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
filter = 'el_pressurized_water',
|
filter = 'el_pressurized_water',
|
||||||
base_area = 1,
|
|
||||||
height = 2,
|
volume = 200,
|
||||||
base_level = 1,
|
base_level = 1,
|
||||||
pipe_covers = pipecoverspictures(),
|
pipe_covers = pipecoverspictures(),
|
||||||
pipe_picture = grey_south_pipe_picture,
|
pipe_picture = grey_south_pipe_picture,
|
||||||
pipe_connections =
|
pipe_connections =
|
||||||
{
|
{
|
||||||
{type = "output", position = {2, 0}},
|
{flow_direction = "output", direction = defines.direction.east, position = {1, 0}},
|
||||||
--{type = "output", position = {2, -2.5}}
|
|
||||||
},
|
},
|
||||||
production_type = "output"
|
production_type = "output"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
filter = 'water',
|
filter = 'water',
|
||||||
base_area = 1,
|
|
||||||
height = 2,
|
volume = 200,
|
||||||
base_level = 1,
|
base_level = 1,
|
||||||
pipe_covers = pipecoverspictures(),
|
pipe_covers = pipecoverspictures(),
|
||||||
pipe_picture = grey_south_pipe_picture,
|
pipe_picture = grey_south_pipe_picture,
|
||||||
pipe_connections =
|
pipe_connections =
|
||||||
{
|
{
|
||||||
{type = "output", position = {0, 2}},
|
{flow_direction = "output", direction = defines.direction.south, position = {0, 1}},
|
||||||
},
|
},
|
||||||
production_type = "output"
|
production_type = "output"
|
||||||
},
|
},
|
||||||
|
@ -147,25 +146,4 @@ data:extend({
|
||||||
apparent_volume = 0.05,
|
apparent_volume = 0.05,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
|
|
||||||
--{
|
|
||||||
-- production_type = "input",
|
|
||||||
--pipe_picture = assembler2pipepictures(),
|
|
||||||
--pipe_covers = pipecoverspictures(),
|
|
||||||
-- base_area = 10,
|
|
||||||
-- base_level = -1,
|
|
||||||
-- pipe_connections = {
|
|
||||||
-- { type="input", position = {-2, -2,5} },
|
|
||||||
-- { type="input", position = {2, -2.5} },
|
|
||||||
-- },
|
|
||||||
-- },
|
|
||||||
-- {
|
|
||||||
-- production_type = "output",
|
|
||||||
--pipe_picture = assembler2pipepictures(),
|
|
||||||
--pipe_covers = pipecoverspictures(),
|
|
||||||
-- base_area = 10,
|
|
||||||
-- base_level = 1,
|
|
||||||
-- pipe_connections = {{ type="output", position = {2, 2.5} }},
|
|
||||||
-- },
|
|
||||||
-- off_when_no_fluid_recipe = true
|
|
|
@ -60,54 +60,53 @@ data:extend({
|
||||||
fluid_boxes = {
|
fluid_boxes = {
|
||||||
{
|
{
|
||||||
filter = 'water',
|
filter = 'water',
|
||||||
base_area = 1,
|
|
||||||
height = 2,
|
volume = 200,
|
||||||
base_level = -1,
|
base_level = -1,
|
||||||
pipe_covers = pipecoverspictures(),
|
pipe_covers = pipecoverspictures(),
|
||||||
pipe_picture = grey_south_pipe_picture,
|
pipe_picture = grey_south_pipe_picture,
|
||||||
pipe_connections =
|
pipe_connections =
|
||||||
{
|
{
|
||||||
{type = "input", position = {0, -4}},
|
{flow_direction = "input", direction = defines.direction.north, position = {0, -3}},
|
||||||
},
|
},
|
||||||
production_type = "input"
|
production_type = "input"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
filter = 'water',
|
filter = 'water',
|
||||||
base_area = 1,
|
|
||||||
height = 2,
|
volume = 200,
|
||||||
base_level = -1,
|
base_level = -1,
|
||||||
pipe_covers = pipecoverspictures(),
|
pipe_covers = pipecoverspictures(),
|
||||||
pipe_picture = grey_south_pipe_picture,
|
pipe_picture = grey_south_pipe_picture,
|
||||||
pipe_connections =
|
pipe_connections =
|
||||||
{
|
{
|
||||||
{type = "input", position = {-4, 0}}
|
{flow_direction = "input", direction = defines.direction.west, position = {-3, 0}}
|
||||||
},
|
},
|
||||||
production_type = "input"
|
production_type = "input"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
filter = 'el_dirty_water',
|
filter = 'el_dirty_water',
|
||||||
base_area = 1,
|
|
||||||
height = 2,
|
volume = 200,
|
||||||
base_level = 1,
|
base_level = 1,
|
||||||
pipe_covers = pipecoverspictures(),
|
pipe_covers = pipecoverspictures(),
|
||||||
pipe_picture = grey_south_pipe_picture,
|
pipe_picture = grey_south_pipe_picture,
|
||||||
pipe_connections =
|
pipe_connections =
|
||||||
{
|
{
|
||||||
{type = "output", position = {4, 0}},
|
{flow_direction = "output", direction = defines.direction.east, position = {3, 0}},
|
||||||
--{type = "output", position = {2, -2.5}}
|
|
||||||
},
|
},
|
||||||
production_type = "output"
|
production_type = "output"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
filter = 'el_dirty_water',
|
filter = 'el_dirty_water',
|
||||||
base_area = 1,
|
|
||||||
height = 2,
|
volume = 200,
|
||||||
base_level = 1,
|
base_level = 1,
|
||||||
pipe_covers = pipecoverspictures(),
|
pipe_covers = pipecoverspictures(),
|
||||||
pipe_picture = grey_south_pipe_picture,
|
pipe_picture = grey_south_pipe_picture,
|
||||||
pipe_connections =
|
pipe_connections =
|
||||||
{
|
{
|
||||||
{type = "output", position = {0, 4}},
|
{flow_direction = "output", direction = defines.direction.south, position = {0, 3}},
|
||||||
},
|
},
|
||||||
production_type = "output"
|
production_type = "output"
|
||||||
},
|
},
|
||||||
|
@ -144,25 +143,4 @@ data:extend({
|
||||||
apparent_volume = 0.1,
|
apparent_volume = 0.1,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
|
|
||||||
--{
|
|
||||||
-- production_type = "input",
|
|
||||||
--pipe_picture = assembler2pipepictures(),
|
|
||||||
--pipe_covers = pipecoverspictures(),
|
|
||||||
-- base_area = 10,
|
|
||||||
-- base_level = -1,
|
|
||||||
-- pipe_connections = {
|
|
||||||
-- { type="input", position = {-2, -2,5} },
|
|
||||||
-- { type="input", position = {2, -2.5} },
|
|
||||||
-- },
|
|
||||||
-- },
|
|
||||||
-- {
|
|
||||||
-- production_type = "output",
|
|
||||||
--pipe_picture = assembler2pipepictures(),
|
|
||||||
--pipe_covers = pipecoverspictures(),
|
|
||||||
-- base_area = 10,
|
|
||||||
-- base_level = 1,
|
|
||||||
-- pipe_connections = {{ type="output", position = {2, 2.5} }},
|
|
||||||
-- },
|
|
||||||
-- off_when_no_fluid_recipe = true
|
|
|
@ -87,24 +87,23 @@ data:extend({
|
||||||
},
|
},
|
||||||
flow_length_in_ticks = 1,
|
flow_length_in_ticks = 1,
|
||||||
fluid_box = {
|
fluid_box = {
|
||||||
base_area = 5000,
|
volume = 500000,
|
||||||
height = 1,
|
|
||||||
base_level = 0,
|
base_level = 0,
|
||||||
pipe_covers = pipecoverspictures(),
|
pipe_covers = pipecoverspictures(),
|
||||||
pipe_picture = grey_south_pipe_picture,
|
pipe_picture = grey_south_pipe_picture,
|
||||||
pipe_connections =
|
pipe_connections =
|
||||||
{
|
{
|
||||||
{type = "input-output", position = {-4, 1}},
|
{flow_direction = "input-output", direction = defines.direction.west, position = {-3, 1}},
|
||||||
{type = "input-output", position = {-4, -1}},
|
{flow_direction = "input-output", direction = defines.direction.west, position = {-3, -1}},
|
||||||
|
|
||||||
{type = "input-output", position = {4, 1}},
|
{flow_direction = "input-output", direction = defines.direction.east, position = {3, 1}},
|
||||||
{type = "input-output", position = {4, -1}},
|
{flow_direction = "input-output", direction = defines.direction.east, position = {3, -1}},
|
||||||
|
|
||||||
{type = "input-output", position = {1, 4}},
|
{flow_direction = "input-output", direction = defines.direction.south, position = {1, 3}},
|
||||||
{type = "input-output", position = {1, -4}},
|
{flow_direction = "input-output", direction = defines.direction.south, position = {-1, 3}},
|
||||||
|
|
||||||
{type = "input-output", position = {-1, 4}},
|
{flow_direction = "input-output", direction = defines.direction.north, position = {1, -3}},
|
||||||
{type = "input-output", position = {-1, -4}}
|
{flow_direction = "input-output", direction = defines.direction.north, position = {-1, -3}}
|
||||||
},
|
},
|
||||||
production_type = "input-output"
|
production_type = "input-output"
|
||||||
},
|
},
|
||||||
|
|
|
@ -62,8 +62,8 @@ data:extend({
|
||||||
max_power_output = water_output(),
|
max_power_output = water_output(),
|
||||||
effectivity = 0.9,
|
effectivity = 0.9,
|
||||||
fluid_box = {
|
fluid_box = {
|
||||||
base_area = 1,
|
|
||||||
height = 2,
|
volume = 200,
|
||||||
base_level = -1,
|
base_level = -1,
|
||||||
filter = 'el_pressurized_water',
|
filter = 'el_pressurized_water',
|
||||||
minimum_temperature = 0,
|
minimum_temperature = 0,
|
||||||
|
@ -72,8 +72,8 @@ data:extend({
|
||||||
pipe_covers = pipecoverspictures(),
|
pipe_covers = pipecoverspictures(),
|
||||||
pipe_picture = south_basic_pipe_picture,
|
pipe_picture = south_basic_pipe_picture,
|
||||||
pipe_connections = {
|
pipe_connections = {
|
||||||
{type = "input-output", position = {2, 0}},
|
{flow_direction = "input-output", direction = defines.direction.east, position = {1, 0}},
|
||||||
{type = "input-output", position = {-2, 0}},
|
{flow_direction = "input-output", direction = defines.direction.west, position = {-1, 0}},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
fluid_input = {
|
fluid_input = {
|
||||||
|
|
|
@ -58,55 +58,50 @@ data:extend({
|
||||||
energy_usage = '400kW',
|
energy_usage = '400kW',
|
||||||
fluid_boxes = {
|
fluid_boxes = {
|
||||||
{
|
{
|
||||||
|
|
||||||
base_area = 1,
|
volume = 200,
|
||||||
height = 2,
|
|
||||||
base_level = -1,
|
base_level = -1,
|
||||||
pipe_covers = pipecoverspictures(),
|
pipe_covers = pipecoverspictures(),
|
||||||
pipe_picture = grey_south_pipe_picture,
|
pipe_picture = grey_south_pipe_picture,
|
||||||
pipe_connections =
|
pipe_connections =
|
||||||
{
|
{
|
||||||
{type = "input", position = {0, -4}},
|
{flow_direction = "input", direction = defines.direction.north, position = {0, -3}},
|
||||||
},
|
|
||||||
production_type = "input"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
|
|
||||||
base_area = 1,
|
|
||||||
height = 2,
|
|
||||||
base_level = -1,
|
|
||||||
pipe_covers = pipecoverspictures(),
|
|
||||||
pipe_picture = grey_south_pipe_picture,
|
|
||||||
pipe_connections =
|
|
||||||
{
|
|
||||||
{type = "input", position = {-4, 0}}
|
|
||||||
},
|
|
||||||
production_type = "input"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
|
|
||||||
base_area = 1,
|
|
||||||
height = 2,
|
|
||||||
base_level = -1,
|
|
||||||
pipe_covers = pipecoverspictures(),
|
|
||||||
pipe_picture = grey_south_pipe_picture,
|
|
||||||
pipe_connections =
|
|
||||||
{
|
|
||||||
{type = "input", position = {4, 0}},
|
|
||||||
--{type = "output", position = {2, -2.5}}
|
|
||||||
},
|
},
|
||||||
production_type = "input"
|
production_type = "input"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|
||||||
base_area = 1,
|
volume = 200,
|
||||||
height = 2,
|
|
||||||
base_level = -1,
|
base_level = -1,
|
||||||
pipe_covers = pipecoverspictures(),
|
pipe_covers = pipecoverspictures(),
|
||||||
pipe_picture = grey_south_pipe_picture,
|
pipe_picture = grey_south_pipe_picture,
|
||||||
pipe_connections =
|
pipe_connections =
|
||||||
{
|
{
|
||||||
{type = "input", position = {0, 4}},
|
{flow_direction = "input", direction = defines.direction.west, position = {-3, 0}}
|
||||||
|
},
|
||||||
|
production_type = "input"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
|
||||||
|
volume = 200,
|
||||||
|
base_level = -1,
|
||||||
|
pipe_covers = pipecoverspictures(),
|
||||||
|
pipe_picture = grey_south_pipe_picture,
|
||||||
|
pipe_connections =
|
||||||
|
{
|
||||||
|
{flow_direction = "input", direction = defines.direction.east, position = {3, 0}},
|
||||||
|
},
|
||||||
|
production_type = "input"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
|
||||||
|
volume = 200,
|
||||||
|
base_level = -1,
|
||||||
|
pipe_covers = pipecoverspictures(),
|
||||||
|
pipe_picture = grey_south_pipe_picture,
|
||||||
|
pipe_connections =
|
||||||
|
{
|
||||||
|
{flow_direction = "input", direction = defines.direction.south, position = {0, 3}},
|
||||||
},
|
},
|
||||||
production_type = "input"
|
production_type = "input"
|
||||||
},
|
},
|
||||||
|
@ -143,25 +138,4 @@ data:extend({
|
||||||
apparent_volume = 0.3,
|
apparent_volume = 0.3,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
|
|
||||||
--{
|
|
||||||
-- production_type = "input",
|
|
||||||
--pipe_picture = assembler2pipepictures(),
|
|
||||||
--pipe_covers = pipecoverspictures(),
|
|
||||||
-- base_area = 10,
|
|
||||||
-- base_level = -1,
|
|
||||||
-- pipe_connections = {
|
|
||||||
-- { type="input", position = {-2, -2,5} },
|
|
||||||
-- { type="input", position = {2, -2.5} },
|
|
||||||
-- },
|
|
||||||
-- },
|
|
||||||
-- {
|
|
||||||
-- production_type = "output",
|
|
||||||
--pipe_picture = assembler2pipepictures(),
|
|
||||||
--pipe_covers = pipecoverspictures(),
|
|
||||||
-- base_area = 10,
|
|
||||||
-- base_level = 1,
|
|
||||||
-- pipe_connections = {{ type="output", position = {2, 2.5} }},
|
|
||||||
-- },
|
|
||||||
-- off_when_no_fluid_recipe = true
|
|
|
@ -60,101 +60,101 @@ data:extend({
|
||||||
|
|
||||||
fluid_boxes = {
|
fluid_boxes = {
|
||||||
{
|
{
|
||||||
base_area = 1,
|
|
||||||
height = 2,
|
volume = 200,
|
||||||
base_level = -1,
|
base_level = -1,
|
||||||
pipe_covers = pipecoverspictures(),
|
pipe_covers = pipecoverspictures(),
|
||||||
pipe_picture = grey_south_pipe_picture,
|
pipe_picture = grey_south_pipe_picture,
|
||||||
pipe_connections =
|
pipe_connections =
|
||||||
{
|
{
|
||||||
{type = "input", position = {1, 4}},
|
{flow_direction = "input", direction = defines.direction.south, position = {1, 3}},
|
||||||
},
|
},
|
||||||
production_type = "input"
|
production_type = "input"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
base_area = 1,
|
|
||||||
height = 2,
|
volume = 200,
|
||||||
base_level = -1,
|
base_level = -1,
|
||||||
pipe_covers = pipecoverspictures(),
|
pipe_covers = pipecoverspictures(),
|
||||||
pipe_picture = grey_south_pipe_picture,
|
pipe_picture = grey_south_pipe_picture,
|
||||||
pipe_connections =
|
pipe_connections =
|
||||||
{
|
{
|
||||||
{type = "input", position = {-1, 4}},
|
{flow_direction = "input", direction = defines.direction.south, position = {-1, 3}},
|
||||||
},
|
},
|
||||||
production_type = "input"
|
production_type = "input"
|
||||||
},
|
},
|
||||||
|
|
||||||
{
|
{
|
||||||
base_area = 1,
|
|
||||||
height = 2,
|
volume = 200,
|
||||||
base_level = 1,
|
base_level = 1,
|
||||||
pipe_covers = pipecoverspictures(),
|
pipe_covers = pipecoverspictures(),
|
||||||
pipe_picture = grey_south_pipe_picture,
|
pipe_picture = grey_south_pipe_picture,
|
||||||
pipe_connections =
|
pipe_connections =
|
||||||
{
|
{
|
||||||
{type = "output", position = {1, -4}},
|
{flow_direction = "output", direction = defines.direction.north, position = {1, -3}},
|
||||||
},
|
},
|
||||||
production_type = "output"
|
production_type = "output"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
base_area = 1,
|
|
||||||
height = 2,
|
volume = 200,
|
||||||
base_level = 1,
|
base_level = 1,
|
||||||
pipe_covers = pipecoverspictures(),
|
pipe_covers = pipecoverspictures(),
|
||||||
pipe_picture = grey_south_pipe_picture,
|
pipe_picture = grey_south_pipe_picture,
|
||||||
pipe_connections =
|
pipe_connections =
|
||||||
{
|
{
|
||||||
{type = "output", position = {-1, -4}},
|
{flow_direction = "output", direction = defines.direction.north, position = {-1, -3}},
|
||||||
},
|
},
|
||||||
production_type = "output"
|
production_type = "output"
|
||||||
},
|
},
|
||||||
|
|
||||||
{
|
{
|
||||||
base_area = 1,
|
|
||||||
height = 2,
|
volume = 200,
|
||||||
base_level = -1,
|
base_level = -1,
|
||||||
pipe_covers = pipecoverspictures(),
|
pipe_covers = pipecoverspictures(),
|
||||||
pipe_picture = grey_south_pipe_picture,
|
pipe_picture = grey_south_pipe_picture,
|
||||||
pipe_connections =
|
pipe_connections =
|
||||||
{
|
{
|
||||||
{type = "input", position = {-4, -1}},
|
{flow_direction = "input", direction = defines.direction.west, position = {-3, -1}},
|
||||||
},
|
},
|
||||||
production_type = "input"
|
production_type = "input"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
base_area = 1,
|
|
||||||
height = 2,
|
volume = 200,
|
||||||
base_level = -1,
|
base_level = -1,
|
||||||
pipe_covers = pipecoverspictures(),
|
pipe_covers = pipecoverspictures(),
|
||||||
pipe_picture = grey_south_pipe_picture,
|
pipe_picture = grey_south_pipe_picture,
|
||||||
pipe_connections =
|
pipe_connections =
|
||||||
{
|
{
|
||||||
{type = "input", position = {-4, 1}},
|
{flow_direction = "input", direction = defines.direction.west, position = {-3, 1}},
|
||||||
},
|
},
|
||||||
production_type = "input"
|
production_type = "input"
|
||||||
},
|
},
|
||||||
|
|
||||||
{
|
{
|
||||||
base_area = 1,
|
|
||||||
height = 2,
|
volume = 200,
|
||||||
base_level = 1,
|
base_level = 1,
|
||||||
pipe_covers = pipecoverspictures(),
|
pipe_covers = pipecoverspictures(),
|
||||||
pipe_picture = grey_south_pipe_picture,
|
pipe_picture = grey_south_pipe_picture,
|
||||||
pipe_connections =
|
pipe_connections =
|
||||||
{
|
{
|
||||||
{type = "output", position = {4, 1}},
|
{flow_direction = "output", direction = defines.direction.east, position = {3, 1}},
|
||||||
},
|
},
|
||||||
production_type = "output"
|
production_type = "output"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
base_area = 1,
|
|
||||||
height = 2,
|
volume = 200,
|
||||||
base_level = 1,
|
base_level = 1,
|
||||||
pipe_covers = pipecoverspictures(),
|
pipe_covers = pipecoverspictures(),
|
||||||
pipe_picture = grey_south_pipe_picture,
|
pipe_picture = grey_south_pipe_picture,
|
||||||
pipe_connections =
|
pipe_connections =
|
||||||
{
|
{
|
||||||
{type = "output", position = {4, -1}},
|
{flow_direction = "output", direction = defines.direction.east, position = {3, -1}},
|
||||||
},
|
},
|
||||||
production_type = "output"
|
production_type = "output"
|
||||||
},
|
},
|
||||||
|
|
|
@ -58,51 +58,51 @@ data:extend({
|
||||||
},
|
},
|
||||||
--fluids
|
--fluids
|
||||||
fluid_boxes = {
|
fluid_boxes = {
|
||||||
{
|
{
|
||||||
base_area = 1,
|
|
||||||
height = 2,
|
volume = 200,
|
||||||
base_level = -1,
|
base_level = -1,
|
||||||
pipe_covers = pipecoverspictures(),
|
pipe_covers = pipecoverspictures(),
|
||||||
pipe_picture = south_basic_pipe_picture,
|
pipe_picture = south_basic_pipe_picture,
|
||||||
pipe_connections =
|
pipe_connections =
|
||||||
{
|
{
|
||||||
{type = "input", position = {-2, 0}}
|
{flow_direction = "input", direction = defines.direction.west, position = {-1, 0}}
|
||||||
},
|
},
|
||||||
production_type = "input"
|
production_type = "input"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
base_area = 1,
|
|
||||||
height = 2,
|
volume = 100,
|
||||||
base_level = -1,
|
base_level = -1,
|
||||||
pipe_covers = pipecoverspictures(),
|
pipe_covers = pipecoverspictures(),
|
||||||
pipe_picture = south_basic_pipe_picture,
|
pipe_picture = south_basic_pipe_picture,
|
||||||
pipe_connections =
|
pipe_connections =
|
||||||
{
|
{
|
||||||
{type = "input", position = {0, 2}}
|
{flow_direction = "input", direction = defines.direction.south, position = {0, 1}}
|
||||||
},
|
},
|
||||||
production_type = "input"
|
production_type = "input"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
base_area = 1,
|
|
||||||
height = 2,
|
volume = 100,
|
||||||
base_level = 1,
|
base_level = 1,
|
||||||
pipe_covers = pipecoverspictures(),
|
pipe_covers = pipecoverspictures(),
|
||||||
pipe_picture = south_basic_pipe_picture,
|
pipe_picture = south_basic_pipe_picture,
|
||||||
pipe_connections =
|
pipe_connections =
|
||||||
{
|
{
|
||||||
{type = "output", position = {2, 0}},
|
{flow_direction = "output", direction = defines.direction.east, position = {1, 0}},
|
||||||
},
|
},
|
||||||
production_type = "output"
|
production_type = "output"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
base_area = 1,
|
|
||||||
height = 2,
|
volume = 100,
|
||||||
base_level = 1,
|
base_level = 1,
|
||||||
pipe_covers = pipecoverspictures(),
|
pipe_covers = pipecoverspictures(),
|
||||||
pipe_picture = south_basic_pipe_picture,
|
pipe_picture = south_basic_pipe_picture,
|
||||||
pipe_connections =
|
pipe_connections =
|
||||||
{
|
{
|
||||||
{type = "output", position = {0, -2}},
|
{flow_direction = "output", direction = defines.direction.north, position = {0, -1}},
|
||||||
},
|
},
|
||||||
production_type = "output"
|
production_type = "output"
|
||||||
},
|
},
|
||||||
|
|
|
@ -66,37 +66,37 @@ data:extend({
|
||||||
fluid_boxes = {
|
fluid_boxes = {
|
||||||
{
|
{
|
||||||
filter = 'water',
|
filter = 'water',
|
||||||
base_area = 1,
|
|
||||||
height = 2,
|
volume = 200,
|
||||||
base_level = -1,
|
base_level = -1,
|
||||||
pipe_covers = pipecoverspictures(),
|
pipe_covers = pipecoverspictures(),
|
||||||
pipe_connections =
|
pipe_connections =
|
||||||
{
|
{
|
||||||
{type = "input", position = {-2.5, -0.5}}
|
{flow_direction = "input", direction = defines.direction.west, position = {-1.5, -0.5}}
|
||||||
},
|
},
|
||||||
production_type = "input"
|
production_type = "input"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
filter = 'fu_hydrogen',
|
filter = 'fu_hydrogen',
|
||||||
base_area = 1,
|
|
||||||
height = 2,
|
volume = 200,
|
||||||
base_level = 1,
|
base_level = 1,
|
||||||
pipe_covers = pipecoverspictures(),
|
pipe_covers = pipecoverspictures(),
|
||||||
pipe_connections =
|
pipe_connections =
|
||||||
{
|
{
|
||||||
{type = "output", position = {2.5, -0.5}},
|
{flow_direction = "output", direction = defines.direction.east, position = {1.5, -0.5}},
|
||||||
},
|
},
|
||||||
production_type = "output"
|
production_type = "output"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
filter = 'fu_oxygen',
|
filter = 'fu_oxygen',
|
||||||
base_area = 1,
|
|
||||||
height = 2,
|
volume = 200,
|
||||||
base_level = 1,
|
base_level = 1,
|
||||||
pipe_covers = pipecoverspictures(),
|
pipe_covers = pipecoverspictures(),
|
||||||
pipe_connections =
|
pipe_connections =
|
||||||
{
|
{
|
||||||
{type = "output", position = {0.5, 2.5}},
|
{flow_direction = "output", direction = defines.direction.south, position = {0.5, 1.5}},
|
||||||
},
|
},
|
||||||
production_type = "output"
|
production_type = "output"
|
||||||
},
|
},
|
||||||
|
|
|
@ -60,27 +60,25 @@ data:extend({
|
||||||
energy_usage = '500kW',
|
energy_usage = '500kW',
|
||||||
fluid_boxes = {
|
fluid_boxes = {
|
||||||
{
|
{
|
||||||
base_area = 1,
|
|
||||||
height = 2,
|
volume = 200,
|
||||||
base_level = -1,
|
base_level = -1,
|
||||||
production_type = 'input',
|
production_type = 'input',
|
||||||
pipe_covers = pipecoverspictures(),
|
pipe_covers = pipecoverspictures(),
|
||||||
pipe_picture = south_basic_pipe_picture,
|
pipe_picture = south_basic_pipe_picture,
|
||||||
pipe_connections = {
|
pipe_connections = {
|
||||||
{type = "input", position = {2, 0}},
|
{flow_direction = "input", direction = defines.direction.east, position = {1, 0}},
|
||||||
--{type = "output", position = {-2, 0}},
|
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
base_area = 1,
|
|
||||||
height = 2,
|
volume = 200,
|
||||||
base_level = 1,
|
base_level = 1,
|
||||||
production_type = 'output',
|
production_type = 'output',
|
||||||
pipe_covers = pipecoverspictures(),
|
pipe_covers = pipecoverspictures(),
|
||||||
pipe_picture = south_basic_pipe_picture,
|
pipe_picture = south_basic_pipe_picture,
|
||||||
pipe_connections = {
|
pipe_connections = {
|
||||||
{type = "output", position = {-2, 0}},
|
{flow_direction = "output", direction = defines.direction.west, position = {-1, 0}},
|
||||||
--{type = "output", position = {-2, 0}},
|
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
|
@ -56,51 +56,51 @@ data:extend({
|
||||||
},
|
},
|
||||||
--fluids
|
--fluids
|
||||||
fluid_boxes = {
|
fluid_boxes = {
|
||||||
{
|
{
|
||||||
base_area = 1,
|
|
||||||
height = 2,
|
volume = 200,
|
||||||
base_level = -1,
|
base_level = -1,
|
||||||
pipe_covers = pipecoverspictures(),
|
pipe_covers = pipecoverspictures(),
|
||||||
pipe_picture = grey_south_pipe_picture,
|
pipe_picture = grey_south_pipe_picture,
|
||||||
pipe_connections =
|
pipe_connections =
|
||||||
{
|
{
|
||||||
{type = "input", position = {-2.5, -0.5}}
|
{flow_direction = "input", direction = defines.direction.west, position = {-1.5, -0.5}}
|
||||||
},
|
},
|
||||||
production_type = "input"
|
production_type = "input"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
base_area = 1,
|
|
||||||
height = 2,
|
volume = 200,
|
||||||
base_level = -1,
|
base_level = -1,
|
||||||
pipe_covers = pipecoverspictures(),
|
pipe_covers = pipecoverspictures(),
|
||||||
pipe_picture = grey_south_pipe_picture,
|
pipe_picture = grey_south_pipe_picture,
|
||||||
pipe_connections =
|
pipe_connections =
|
||||||
{
|
{
|
||||||
{type = "input", position = {-2.5, 1.5}}
|
{flow_direction = "input", direction = defines.direction.west, position = {-1.5, 1.5}}
|
||||||
},
|
},
|
||||||
production_type = "input"
|
production_type = "input"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
base_area = 1,
|
|
||||||
height = 2,
|
volume = 200,
|
||||||
base_level = 1,
|
base_level = 1,
|
||||||
pipe_covers = pipecoverspictures(),
|
pipe_covers = pipecoverspictures(),
|
||||||
pipe_picture = grey_south_pipe_picture,
|
pipe_picture = grey_south_pipe_picture,
|
||||||
pipe_connections =
|
pipe_connections =
|
||||||
{
|
{
|
||||||
{type = "output", position = {2.5, -0.5}},
|
{flow_direction = "output", direction = defines.direction.east, position = {1.5, -0.5}},
|
||||||
},
|
},
|
||||||
production_type = "output"
|
production_type = "output"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
base_area = 1,
|
|
||||||
height = 2,
|
volume = 200,
|
||||||
base_level = 1,
|
base_level = 1,
|
||||||
pipe_covers = pipecoverspictures(),
|
pipe_covers = pipecoverspictures(),
|
||||||
pipe_picture = grey_south_pipe_picture,
|
pipe_picture = grey_south_pipe_picture,
|
||||||
pipe_connections =
|
pipe_connections =
|
||||||
{
|
{
|
||||||
{type = "output", position = {2.5, 1.5}},
|
{flow_direction = "output", direction = defines.direction.east, position = {1.5, 1.5}},
|
||||||
},
|
},
|
||||||
production_type = "output"
|
production_type = "output"
|
||||||
},
|
},
|
||||||
|
|
|
@ -68,24 +68,24 @@ data:extend({
|
||||||
--fluid
|
--fluid
|
||||||
fluid_boxes = {
|
fluid_boxes = {
|
||||||
{
|
{
|
||||||
base_area = 1,
|
|
||||||
height = 2,
|
volume = 200,
|
||||||
base_level = -1,
|
base_level = -1,
|
||||||
pipe_covers = pipecoverspictures(),
|
pipe_covers = pipecoverspictures(),
|
||||||
pipe_connections =
|
pipe_connections =
|
||||||
{
|
{
|
||||||
{type = "input", position = {-1.5, -3}},
|
{flow_direction = "input", direction = defines.direction.north, position = {-1.5, -2}},
|
||||||
},
|
},
|
||||||
production_type = "input"
|
production_type = "input"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
base_area = 1,
|
|
||||||
height = 2,
|
volume = 200,
|
||||||
base_level = -1,
|
base_level = -1,
|
||||||
pipe_covers = pipecoverspictures(),
|
pipe_covers = pipecoverspictures(),
|
||||||
pipe_connections =
|
pipe_connections =
|
||||||
{
|
{
|
||||||
{type = "input", position = {1.5, -3}}
|
{flow_direction = "input", direction = defines.direction.north, position = {1.5, -2}}
|
||||||
},
|
},
|
||||||
production_type = "input"
|
production_type = "input"
|
||||||
},
|
},
|
||||||
|
|
|
@ -59,55 +59,50 @@ data:extend({
|
||||||
},
|
},
|
||||||
fluid_boxes = {
|
fluid_boxes = {
|
||||||
{
|
{
|
||||||
|
|
||||||
base_area = 1,
|
volume = 200,
|
||||||
height = 2,
|
|
||||||
base_level = -1,
|
base_level = -1,
|
||||||
pipe_covers = pipecoverspictures(),
|
pipe_covers = pipecoverspictures(),
|
||||||
pipe_picture = grey_south_pipe_picture,
|
pipe_picture = grey_south_pipe_picture,
|
||||||
pipe_connections =
|
pipe_connections =
|
||||||
{
|
{
|
||||||
{type = "input", position = {0, -4}},
|
{flow_direction = "input", direction = defines.direction.north, position = {0, -3}},
|
||||||
},
|
|
||||||
production_type = "input"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
|
|
||||||
base_area = 1,
|
|
||||||
height = 2,
|
|
||||||
base_level = -1,
|
|
||||||
pipe_covers = pipecoverspictures(),
|
|
||||||
pipe_picture = grey_south_pipe_picture,
|
|
||||||
pipe_connections =
|
|
||||||
{
|
|
||||||
{type = "input", position = {-4, 0}}
|
|
||||||
},
|
|
||||||
production_type = "input"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
|
|
||||||
base_area = 1,
|
|
||||||
height = 2,
|
|
||||||
base_level = -1,
|
|
||||||
pipe_covers = pipecoverspictures(),
|
|
||||||
pipe_picture = grey_south_pipe_picture,
|
|
||||||
pipe_connections =
|
|
||||||
{
|
|
||||||
{type = "input", position = {4, 0}},
|
|
||||||
--{type = "output", position = {2, -2.5}}
|
|
||||||
},
|
},
|
||||||
production_type = "input"
|
production_type = "input"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|
||||||
base_area = 1,
|
volume = 200,
|
||||||
height = 2,
|
|
||||||
base_level = -1,
|
base_level = -1,
|
||||||
pipe_covers = pipecoverspictures(),
|
pipe_covers = pipecoverspictures(),
|
||||||
pipe_picture = grey_south_pipe_picture,
|
pipe_picture = grey_south_pipe_picture,
|
||||||
pipe_connections =
|
pipe_connections =
|
||||||
{
|
{
|
||||||
{type = "input", position = {0, 4}},
|
{flow_direction = "input", direction = defines.direction.west, position = {-3, 0}}
|
||||||
|
},
|
||||||
|
production_type = "input"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
|
||||||
|
volume = 200,
|
||||||
|
base_level = -1,
|
||||||
|
pipe_covers = pipecoverspictures(),
|
||||||
|
pipe_picture = grey_south_pipe_picture,
|
||||||
|
pipe_connections =
|
||||||
|
{
|
||||||
|
{flow_direction = "input", direction = defines.direction.east, position = {3, 0}},
|
||||||
|
},
|
||||||
|
production_type = "input"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
|
||||||
|
volume = 200,
|
||||||
|
base_level = -1,
|
||||||
|
pipe_covers = pipecoverspictures(),
|
||||||
|
pipe_picture = grey_south_pipe_picture,
|
||||||
|
pipe_connections =
|
||||||
|
{
|
||||||
|
{flow_direction = "input", direction = defines.direction.south, position = {0, 3}},
|
||||||
},
|
},
|
||||||
production_type = "input"
|
production_type = "input"
|
||||||
},
|
},
|
||||||
|
@ -118,10 +113,8 @@ data:extend({
|
||||||
size = {512,512},
|
size = {512,512},
|
||||||
scale = 0.54,
|
scale = 0.54,
|
||||||
line_length = 1,
|
line_length = 1,
|
||||||
--lines_per_file = 2,
|
|
||||||
frame_count = 1,
|
frame_count = 1,
|
||||||
--animation_speed = 0.2,
|
shift = {0,-0.3}
|
||||||
shift = {0,-0.3}
|
|
||||||
},
|
},
|
||||||
working_visualisations = {
|
working_visualisations = {
|
||||||
{
|
{
|
||||||
|
@ -159,8 +152,8 @@ data:extend({
|
||||||
-- base_area = 10,
|
-- base_area = 10,
|
||||||
-- base_level = -1,
|
-- base_level = -1,
|
||||||
-- pipe_connections = {
|
-- pipe_connections = {
|
||||||
-- { type="input", position = {-2, -2,5} },
|
-- { flow_direction="input", direction = defines.direction.north, position = {-2, -2,5} },
|
||||||
-- { type="input", position = {2, -2.5} },
|
-- { flow_direction="input", direction = defines.direction.north, position = {2, -2.5} },
|
||||||
-- },
|
-- },
|
||||||
-- },
|
-- },
|
||||||
-- {
|
-- {
|
||||||
|
@ -169,6 +162,6 @@ data:extend({
|
||||||
--pipe_covers = pipecoverspictures(),
|
--pipe_covers = pipecoverspictures(),
|
||||||
-- base_area = 10,
|
-- base_area = 10,
|
||||||
-- base_level = 1,
|
-- base_level = 1,
|
||||||
-- pipe_connections = {{ type="output", position = {2, 2.5} }},
|
-- pipe_connections = {{ flow_direction="output", direction = defines.direction.north, position = {2, 2.5} }},
|
||||||
-- },
|
-- },
|
||||||
-- off_when_no_fluid_recipe = true
|
-- off_when_no_fluid_recipe = true
|
|
@ -59,55 +59,50 @@ data:extend({
|
||||||
energy_usage = '60MW',
|
energy_usage = '60MW',
|
||||||
fluid_boxes = {
|
fluid_boxes = {
|
||||||
{
|
{
|
||||||
|
|
||||||
base_area = 1,
|
volume = 200,
|
||||||
height = 2,
|
|
||||||
base_level = -1,
|
base_level = -1,
|
||||||
pipe_covers = pipecoverspictures(),
|
pipe_covers = pipecoverspictures(),
|
||||||
pipe_picture = grey_south_pipe_picture,
|
pipe_picture = grey_south_pipe_picture,
|
||||||
pipe_connections =
|
pipe_connections =
|
||||||
{
|
{
|
||||||
{type = "input", position = {0, -4}},
|
{flow_direction = "input", direction = defines.direction.north, position = {0, -3}},
|
||||||
},
|
},
|
||||||
production_type = "input"
|
production_type = "input"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|
||||||
base_area = 1,
|
volume = 200,
|
||||||
height = 2,
|
|
||||||
base_level = -1,
|
base_level = -1,
|
||||||
pipe_covers = pipecoverspictures(),
|
pipe_covers = pipecoverspictures(),
|
||||||
pipe_picture = grey_south_pipe_picture,
|
pipe_picture = grey_south_pipe_picture,
|
||||||
pipe_connections =
|
pipe_connections =
|
||||||
{
|
{
|
||||||
{type = "input", position = {-4, 0}}
|
{flow_direction = "input", direction = defines.direction.west, position = {-3, 0}}
|
||||||
},
|
},
|
||||||
production_type = "input"
|
production_type = "input"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|
||||||
base_area = 1,
|
volume = 200,
|
||||||
height = 2,
|
|
||||||
base_level = 1,
|
base_level = 1,
|
||||||
pipe_covers = pipecoverspictures(),
|
pipe_covers = pipecoverspictures(),
|
||||||
pipe_picture = grey_south_pipe_picture,
|
pipe_picture = grey_south_pipe_picture,
|
||||||
pipe_connections =
|
pipe_connections =
|
||||||
{
|
{
|
||||||
{type = "output", position = {4, 0}},
|
{flow_direction = "output", direction = defines.direction.east, position = {3, 0}},
|
||||||
--{type = "output", position = {2, -2.5}}
|
|
||||||
},
|
},
|
||||||
production_type = "output"
|
production_type = "output"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|
||||||
base_area = 1,
|
volume = 200,
|
||||||
height = 2,
|
|
||||||
base_level = 1,
|
base_level = 1,
|
||||||
pipe_covers = pipecoverspictures(),
|
pipe_covers = pipecoverspictures(),
|
||||||
pipe_picture = grey_south_pipe_picture,
|
pipe_picture = grey_south_pipe_picture,
|
||||||
pipe_connections =
|
pipe_connections =
|
||||||
{
|
{
|
||||||
{type = "output", position = {0, 4}},
|
{flow_direction = "output", direction = defines.direction.south, position = {0, 3}},
|
||||||
},
|
},
|
||||||
production_type = "output"
|
production_type = "output"
|
||||||
},
|
},
|
||||||
|
@ -159,8 +154,8 @@ data:extend({
|
||||||
-- base_area = 10,
|
-- base_area = 10,
|
||||||
-- base_level = -1,
|
-- base_level = -1,
|
||||||
-- pipe_connections = {
|
-- pipe_connections = {
|
||||||
-- { type="input", position = {-2, -2,5} },
|
-- { flow_direction="input", direction = defines.direction.north, position = {-2, -2,5} },
|
||||||
-- { type="input", position = {2, -2.5} },
|
-- { flow_direction="input", direction = defines.direction.north, position = {2, -2.5} },
|
||||||
-- },
|
-- },
|
||||||
-- },
|
-- },
|
||||||
-- {
|
-- {
|
||||||
|
@ -169,6 +164,6 @@ data:extend({
|
||||||
--pipe_covers = pipecoverspictures(),
|
--pipe_covers = pipecoverspictures(),
|
||||||
-- base_area = 10,
|
-- base_area = 10,
|
||||||
-- base_level = 1,
|
-- base_level = 1,
|
||||||
-- pipe_connections = {{ type="output", position = {2, 2.5} }},
|
-- pipe_connections = {{ flow_direction="output", direction = defines.direction.north, position = {2, 2.5} }},
|
||||||
-- },
|
-- },
|
||||||
-- off_when_no_fluid_recipe = true
|
-- off_when_no_fluid_recipe = true
|
|
@ -59,55 +59,50 @@ data:extend({
|
||||||
},
|
},
|
||||||
fluid_boxes = {
|
fluid_boxes = {
|
||||||
{
|
{
|
||||||
|
|
||||||
base_area = 1,
|
volume = 200,
|
||||||
height = 2,
|
|
||||||
base_level = -1,
|
base_level = -1,
|
||||||
pipe_covers = pipecoverspictures(),
|
pipe_covers = pipecoverspictures(),
|
||||||
pipe_picture = grey_south_pipe_picture,
|
pipe_picture = grey_south_pipe_picture,
|
||||||
pipe_connections =
|
pipe_connections =
|
||||||
{
|
{
|
||||||
{type = "input", position = {0, -4}},
|
{flow_direction = "input", direction = defines.direction.north, position = {0, -3}},
|
||||||
},
|
},
|
||||||
production_type = "input"
|
production_type = "input"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|
||||||
base_area = 1,
|
volume = 200,
|
||||||
height = 2,
|
|
||||||
base_level = -1,
|
base_level = -1,
|
||||||
pipe_covers = pipecoverspictures(),
|
pipe_covers = pipecoverspictures(),
|
||||||
pipe_picture = grey_south_pipe_picture,
|
pipe_picture = grey_south_pipe_picture,
|
||||||
pipe_connections =
|
pipe_connections =
|
||||||
{
|
{
|
||||||
{type = "input", position = {-4, 0}}
|
{flow_direction = "input", direction = defines.direction.west, position = {-3, 0}}
|
||||||
},
|
},
|
||||||
production_type = "input"
|
production_type = "input"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|
||||||
base_area = 1,
|
volume = 200,
|
||||||
height = 2,
|
|
||||||
base_level = 1,
|
base_level = 1,
|
||||||
pipe_covers = pipecoverspictures(),
|
pipe_covers = pipecoverspictures(),
|
||||||
pipe_picture = grey_south_pipe_picture,
|
pipe_picture = grey_south_pipe_picture,
|
||||||
pipe_connections =
|
pipe_connections =
|
||||||
{
|
{
|
||||||
{type = "output", position = {4, 0}},
|
{flow_direction = "output", direction = defines.direction.east, position = {3, 0}},
|
||||||
--{type = "output", position = {2, -2.5}}
|
|
||||||
},
|
},
|
||||||
production_type = "output"
|
production_type = "output"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|
||||||
base_area = 1,
|
volume = 200,
|
||||||
height = 2,
|
|
||||||
base_level = 1,
|
base_level = 1,
|
||||||
pipe_covers = pipecoverspictures(),
|
pipe_covers = pipecoverspictures(),
|
||||||
pipe_picture = grey_south_pipe_picture,
|
pipe_picture = grey_south_pipe_picture,
|
||||||
pipe_connections =
|
pipe_connections =
|
||||||
{
|
{
|
||||||
{type = "output", position = {0, 4}},
|
{flow_direction = "output", direction = defines.direction.south, position = {0, 3}},
|
||||||
},
|
},
|
||||||
production_type = "output"
|
production_type = "output"
|
||||||
},
|
},
|
||||||
|
@ -151,25 +146,4 @@ data:extend({
|
||||||
apparent_volume = 0.3,
|
apparent_volume = 0.3,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
|
|
||||||
--{
|
|
||||||
-- production_type = "input",
|
|
||||||
--pipe_picture = assembler2pipepictures(),
|
|
||||||
--pipe_covers = pipecoverspictures(),
|
|
||||||
-- base_area = 10,
|
|
||||||
-- base_level = -1,
|
|
||||||
-- pipe_connections = {
|
|
||||||
-- { type="input", position = {-2, -2,5} },
|
|
||||||
-- { type="input", position = {2, -2.5} },
|
|
||||||
-- },
|
|
||||||
-- },
|
|
||||||
-- {
|
|
||||||
-- production_type = "output",
|
|
||||||
--pipe_picture = assembler2pipepictures(),
|
|
||||||
--pipe_covers = pipecoverspictures(),
|
|
||||||
-- base_area = 10,
|
|
||||||
-- base_level = 1,
|
|
||||||
-- pipe_connections = {{ type="output", position = {2, 2.5} }},
|
|
||||||
-- },
|
|
||||||
-- off_when_no_fluid_recipe = true
|
|
|
@ -59,55 +59,50 @@ data:extend({
|
||||||
},
|
},
|
||||||
fluid_boxes = {
|
fluid_boxes = {
|
||||||
{
|
{
|
||||||
|
|
||||||
base_area = 1,
|
volume = 200,
|
||||||
height = 2,
|
|
||||||
base_level = -1,
|
base_level = -1,
|
||||||
pipe_covers = pipecoverspictures(),
|
pipe_covers = pipecoverspictures(),
|
||||||
pipe_picture = grey_south_pipe_picture,
|
pipe_picture = grey_south_pipe_picture,
|
||||||
pipe_connections =
|
pipe_connections =
|
||||||
{
|
{
|
||||||
{type = "input", position = {0, -4}},
|
{flow_direction = "input", direction = defines.direction.north, position = {0, -3}},
|
||||||
},
|
},
|
||||||
production_type = "input"
|
production_type = "input"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|
||||||
base_area = 1,
|
volume = 200,
|
||||||
height = 2,
|
|
||||||
base_level = -1,
|
base_level = -1,
|
||||||
pipe_covers = pipecoverspictures(),
|
pipe_covers = pipecoverspictures(),
|
||||||
pipe_picture = grey_south_pipe_picture,
|
pipe_picture = grey_south_pipe_picture,
|
||||||
pipe_connections =
|
pipe_connections =
|
||||||
{
|
{
|
||||||
{type = "input", position = {-4, 0}}
|
{flow_direction = "input", direction = defines.direction.west, position = {-3, 0}}
|
||||||
},
|
},
|
||||||
production_type = "input"
|
production_type = "input"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|
||||||
base_area = 1,
|
volume = 200,
|
||||||
height = 2,
|
|
||||||
base_level = 1,
|
base_level = 1,
|
||||||
pipe_covers = pipecoverspictures(),
|
pipe_covers = pipecoverspictures(),
|
||||||
pipe_picture = grey_south_pipe_picture,
|
pipe_picture = grey_south_pipe_picture,
|
||||||
pipe_connections =
|
pipe_connections =
|
||||||
{
|
{
|
||||||
{type = "output", position = {4, 0}},
|
{flow_direction = "output", direction = defines.direction.east, position = {3, 0}},
|
||||||
--{type = "output", position = {2, -2.5}}
|
|
||||||
},
|
},
|
||||||
production_type = "output"
|
production_type = "output"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|
||||||
base_area = 1,
|
volume = 200,
|
||||||
height = 2,
|
|
||||||
base_level = 1,
|
base_level = 1,
|
||||||
pipe_covers = pipecoverspictures(),
|
pipe_covers = pipecoverspictures(),
|
||||||
pipe_picture = grey_south_pipe_picture,
|
pipe_picture = grey_south_pipe_picture,
|
||||||
pipe_connections =
|
pipe_connections =
|
||||||
{
|
{
|
||||||
{type = "output", position = {0, 4}},
|
{flow_direction = "output", direction = defines.direction.south, position = {0, 3}},
|
||||||
},
|
},
|
||||||
production_type = "output"
|
production_type = "output"
|
||||||
},
|
},
|
||||||
|
@ -159,8 +154,8 @@ data:extend({
|
||||||
-- base_area = 10,
|
-- base_area = 10,
|
||||||
-- base_level = -1,
|
-- base_level = -1,
|
||||||
-- pipe_connections = {
|
-- pipe_connections = {
|
||||||
-- { type="input", position = {-2, -2,5} },
|
-- { flow_direction="input", direction = defines.direction.north, position = {-2, -2,5} },
|
||||||
-- { type="input", position = {2, -2.5} },
|
-- { flow_direction="input", direction = defines.direction.north, position = {2, -2.5} },
|
||||||
-- },
|
-- },
|
||||||
-- },
|
-- },
|
||||||
-- {
|
-- {
|
||||||
|
@ -169,6 +164,6 @@ data:extend({
|
||||||
--pipe_covers = pipecoverspictures(),
|
--pipe_covers = pipecoverspictures(),
|
||||||
-- base_area = 10,
|
-- base_area = 10,
|
||||||
-- base_level = 1,
|
-- base_level = 1,
|
||||||
-- pipe_connections = {{ type="output", position = {2, 2.5} }},
|
-- pipe_connections = {{ flow_direction="output", direction = defines.direction.north, position = {2, 2.5} }},
|
||||||
-- },
|
-- },
|
||||||
-- off_when_no_fluid_recipe = true
|
-- off_when_no_fluid_recipe = true
|
|
@ -62,51 +62,51 @@ data:extend({
|
||||||
fluid_boxes = {
|
fluid_boxes = {
|
||||||
{
|
{
|
||||||
filter = "fu_lead_fluid_cold",
|
filter = "fu_lead_fluid_cold",
|
||||||
base_area = 1,
|
|
||||||
height = 2,
|
volume = 200,
|
||||||
base_level = -1,
|
base_level = -1,
|
||||||
pipe_covers = pipecoverspictures(),
|
pipe_covers = pipecoverspictures(),
|
||||||
pipe_picture = grey_south_pipe_picture,
|
pipe_picture = grey_south_pipe_picture,
|
||||||
pipe_connections =
|
pipe_connections =
|
||||||
{
|
{
|
||||||
{type = "input", position = {2, 7}}
|
{flow_direction = "input", direction = defines.direction.south, position = {2, 6}}
|
||||||
},
|
},
|
||||||
production_type = "input"
|
production_type = "input"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
base_area = 1,
|
|
||||||
height = 2,
|
volume = 200,
|
||||||
base_level = -1,
|
base_level = -1,
|
||||||
pipe_covers = pipecoverspictures(),
|
pipe_covers = pipecoverspictures(),
|
||||||
pipe_picture = grey_south_pipe_picture,
|
pipe_picture = grey_south_pipe_picture,
|
||||||
pipe_connections =
|
pipe_connections =
|
||||||
{
|
{
|
||||||
{type = "input", position = {-2, -7}},
|
{flow_direction = "input", direction = defines.direction.north, position = {-2, -6}},
|
||||||
},
|
},
|
||||||
production_type = "input"
|
production_type = "input"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
base_area = 1,
|
|
||||||
height = 2,
|
volume = 200,
|
||||||
base_level = -1,
|
base_level = -1,
|
||||||
pipe_covers = pipecoverspictures(),
|
pipe_covers = pipecoverspictures(),
|
||||||
pipe_picture = grey_south_pipe_picture,
|
pipe_picture = grey_south_pipe_picture,
|
||||||
pipe_connections =
|
pipe_connections =
|
||||||
{
|
{
|
||||||
{type = "input", position = {2, -7}}
|
{flow_direction = "input", direction = defines.direction.north, position = {2, -6}}
|
||||||
},
|
},
|
||||||
production_type = "input"
|
production_type = "input"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
filter = "fu_lead_fluid_hot",
|
filter = "fu_lead_fluid_hot",
|
||||||
base_area = 1,
|
|
||||||
height = 2,
|
volume = 200,
|
||||||
base_level = 1,
|
base_level = 1,
|
||||||
pipe_covers = pipecoverspictures(),
|
pipe_covers = pipecoverspictures(),
|
||||||
pipe_picture = grey_south_pipe_picture,
|
pipe_picture = grey_south_pipe_picture,
|
||||||
pipe_connections =
|
pipe_connections =
|
||||||
{
|
{
|
||||||
{type = "output", position = {-2, 7}}
|
{flow_direction = "output", direction = defines.direction.south, position = {-2, 6}}
|
||||||
},
|
},
|
||||||
production_type = "output"
|
production_type = "output"
|
||||||
}
|
}
|
||||||
|
@ -177,51 +177,51 @@ data:extend({
|
||||||
fluid_boxes = {
|
fluid_boxes = {
|
||||||
{
|
{
|
||||||
filter = "fu_lead_fluid_cold",
|
filter = "fu_lead_fluid_cold",
|
||||||
base_area = 1,
|
|
||||||
height = 2,
|
volume = 200,
|
||||||
base_level = -1,
|
base_level = -1,
|
||||||
pipe_covers = pipecoverspictures(),
|
pipe_covers = pipecoverspictures(),
|
||||||
pipe_picture = grey_south_pipe_picture,
|
pipe_picture = grey_south_pipe_picture,
|
||||||
pipe_connections =
|
pipe_connections =
|
||||||
{
|
{
|
||||||
{type = "input", position = {2, 7}}
|
{flow_direction = "input", direction = defines.direction.south, position = {2, 6}}
|
||||||
},
|
},
|
||||||
production_type = "input"
|
production_type = "input"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
base_area = 1,
|
|
||||||
height = 2,
|
volume = 200,
|
||||||
base_level = -1,
|
base_level = -1,
|
||||||
pipe_covers = pipecoverspictures(),
|
pipe_covers = pipecoverspictures(),
|
||||||
pipe_picture = grey_south_pipe_picture,
|
pipe_picture = grey_south_pipe_picture,
|
||||||
pipe_connections =
|
pipe_connections =
|
||||||
{
|
{
|
||||||
{type = "input", position = {-2, -7}},
|
{flow_direction = "input", direction = defines.direction.north, position = {-2, -6}},
|
||||||
},
|
},
|
||||||
production_type = "input"
|
production_type = "input"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
base_area = 1,
|
|
||||||
height = 2,
|
volume = 200,
|
||||||
base_level = -1,
|
base_level = -1,
|
||||||
pipe_covers = pipecoverspictures(),
|
pipe_covers = pipecoverspictures(),
|
||||||
pipe_picture = grey_south_pipe_picture,
|
pipe_picture = grey_south_pipe_picture,
|
||||||
pipe_connections =
|
pipe_connections =
|
||||||
{
|
{
|
||||||
{type = "input", position = {2, -7}}
|
{flow_direction = "input", direction = defines.direction.north, position = {2, -6}}
|
||||||
},
|
},
|
||||||
production_type = "input"
|
production_type = "input"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
filter = "fu_lead_fluid_hot",
|
filter = "fu_lead_fluid_hot",
|
||||||
base_area = 1,
|
|
||||||
height = 2,
|
volume = 200,
|
||||||
base_level = 1,
|
base_level = 1,
|
||||||
pipe_covers = pipecoverspictures(),
|
pipe_covers = pipecoverspictures(),
|
||||||
pipe_picture = grey_south_pipe_picture,
|
pipe_picture = grey_south_pipe_picture,
|
||||||
pipe_connections =
|
pipe_connections =
|
||||||
{
|
{
|
||||||
{type = "output", position = {-2, 7}}
|
{flow_direction = "output", direction = defines.direction.south, position = {-2, 6}}
|
||||||
},
|
},
|
||||||
production_type = "output"
|
production_type = "output"
|
||||||
}
|
}
|
||||||
|
|
|
@ -56,47 +56,47 @@ data:extend({
|
||||||
},
|
},
|
||||||
--fluids
|
--fluids
|
||||||
fluid_boxes = {
|
fluid_boxes = {
|
||||||
{
|
{
|
||||||
base_area = 1,
|
|
||||||
height = 2,
|
volume = 200,
|
||||||
base_level = -1,
|
base_level = -1,
|
||||||
pipe_covers = pipecoverspictures(),
|
pipe_covers = pipecoverspictures(),
|
||||||
pipe_connections =
|
pipe_connections =
|
||||||
{
|
{
|
||||||
{type = "input", position = {-2.5, -0.5}}
|
{flow_direction = "input", direction = defines.direction.west, position = {-1.5, -0.5}}
|
||||||
},
|
},
|
||||||
production_type = "input"
|
production_type = "input"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
base_area = 1,
|
|
||||||
height = 2,
|
volume = 200,
|
||||||
base_level = -1,
|
base_level = -1,
|
||||||
pipe_covers = pipecoverspictures(),
|
pipe_covers = pipecoverspictures(),
|
||||||
pipe_connections =
|
pipe_connections =
|
||||||
{
|
{
|
||||||
{type = "input", position = {-2.5, 1.5}}
|
{flow_direction = "input", direction = defines.direction.west, position = {-1.5, 1.5}}
|
||||||
},
|
},
|
||||||
production_type = "input"
|
production_type = "input"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
base_area = 1,
|
|
||||||
height = 2,
|
volume = 200,
|
||||||
base_level = 1,
|
base_level = 1,
|
||||||
pipe_covers = pipecoverspictures(),
|
pipe_covers = pipecoverspictures(),
|
||||||
pipe_connections =
|
pipe_connections =
|
||||||
{
|
{
|
||||||
{type = "output", position = {2.5, -0.5}},
|
{flow_direction = "output", direction = defines.direction.east, position = {1.5, -0.5}},
|
||||||
},
|
},
|
||||||
production_type = "output"
|
production_type = "output"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
base_area = 1,
|
|
||||||
height = 2,
|
volume = 200,
|
||||||
base_level = 1,
|
base_level = 1,
|
||||||
pipe_covers = pipecoverspictures(),
|
pipe_covers = pipecoverspictures(),
|
||||||
pipe_connections =
|
pipe_connections =
|
||||||
{
|
{
|
||||||
{type = "output", position = {2.5, 1.5}},
|
{flow_direction = "output", direction = defines.direction.east, position = {1.5, 1.5}},
|
||||||
},
|
},
|
||||||
production_type = "output"
|
production_type = "output"
|
||||||
},
|
},
|
||||||
|
|
|
@ -50,87 +50,87 @@ data:extend({
|
||||||
energy_usage = '0.5GW',
|
energy_usage = '0.5GW',
|
||||||
--fluids
|
--fluids
|
||||||
fluid_boxes = {
|
fluid_boxes = {
|
||||||
{
|
{
|
||||||
base_area = 1,
|
|
||||||
height = 2,
|
volume = 200,
|
||||||
base_level = -1,
|
base_level = -1,
|
||||||
pipe_covers = pipecoverspictures(),
|
pipe_covers = pipecoverspictures(),
|
||||||
pipe_picture = grey_south_pipe_picture,
|
pipe_picture = grey_south_pipe_picture,
|
||||||
pipe_connections =
|
pipe_connections =
|
||||||
{
|
{
|
||||||
{type = "input", position = {-2, -9.5}}
|
{flow_direction = "input", direction = defines.direction.north, position = {-2, -8.5}}
|
||||||
},
|
},
|
||||||
production_type = "input"
|
production_type = "input"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
base_area = 1,
|
|
||||||
height = 2,
|
volume = 200,
|
||||||
base_level = -1,
|
base_level = -1,
|
||||||
pipe_covers = pipecoverspictures(),
|
pipe_covers = pipecoverspictures(),
|
||||||
pipe_picture = grey_south_pipe_picture,
|
pipe_picture = grey_south_pipe_picture,
|
||||||
pipe_connections =
|
pipe_connections =
|
||||||
{
|
{
|
||||||
{type = "input", position = {2, -9.5}}
|
{flow_direction = "input", direction = defines.direction.north, position = {2, -8.5}}
|
||||||
},
|
},
|
||||||
production_type = "input"
|
production_type = "input"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
base_area = 1,
|
|
||||||
height = 2,
|
volume = 200,
|
||||||
base_level = 1,
|
base_level = 1,
|
||||||
pipe_covers = pipecoverspictures(),
|
pipe_covers = pipecoverspictures(),
|
||||||
pipe_picture = grey_south_pipe_picture,
|
pipe_picture = grey_south_pipe_picture,
|
||||||
pipe_connections =
|
pipe_connections =
|
||||||
{
|
{
|
||||||
{type = "output", position = {0, 9.5}},
|
{flow_direction = "output", direction = defines.direction.south, position = {0, 8.5}},
|
||||||
},
|
},
|
||||||
production_type = "output"
|
production_type = "output"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
base_area = 1,
|
|
||||||
height = 2,
|
volume = 200,
|
||||||
base_level = 1,
|
base_level = 1,
|
||||||
pipe_covers = pipecoverspictures(),
|
pipe_covers = pipecoverspictures(),
|
||||||
pipe_picture = grey_south_pipe_picture,
|
pipe_picture = grey_south_pipe_picture,
|
||||||
pipe_connections =
|
pipe_connections =
|
||||||
{
|
{
|
||||||
{type = "output", position = {-2, 9.5}},
|
{flow_direction = "output", direction = defines.direction.south, position = {-2, 8.5}},
|
||||||
},
|
},
|
||||||
production_type = "output"
|
production_type = "output"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
base_area = 1,
|
|
||||||
height = 2,
|
volume = 200,
|
||||||
base_level = 1,
|
base_level = 1,
|
||||||
pipe_covers = pipecoverspictures(),
|
pipe_covers = pipecoverspictures(),
|
||||||
pipe_picture = grey_south_pipe_picture,
|
pipe_picture = grey_south_pipe_picture,
|
||||||
pipe_connections =
|
pipe_connections =
|
||||||
{
|
{
|
||||||
{type = "output", position = {2, 9.5}},
|
{flow_direction = "output", direction = defines.direction.south, position = {2, 8.5}},
|
||||||
},
|
},
|
||||||
production_type = "output"
|
production_type = "output"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
base_area = 1,
|
|
||||||
height = 2,
|
volume = 200,
|
||||||
base_level = 1,
|
base_level = 1,
|
||||||
pipe_covers = pipecoverspictures(),
|
pipe_covers = pipecoverspictures(),
|
||||||
pipe_picture = grey_south_pipe_picture,
|
pipe_picture = grey_south_pipe_picture,
|
||||||
pipe_connections =
|
pipe_connections =
|
||||||
{
|
{
|
||||||
{type = "output", position = {-4, 9.5}},
|
{flow_direction = "output", direction = defines.direction.south, position = {-4, 8.5}},
|
||||||
},
|
},
|
||||||
production_type = "output"
|
production_type = "output"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
base_area = 1,
|
|
||||||
height = 2,
|
volume = 200,
|
||||||
base_level = 1,
|
base_level = 1,
|
||||||
pipe_covers = pipecoverspictures(),
|
pipe_covers = pipecoverspictures(),
|
||||||
pipe_picture = grey_south_pipe_picture,
|
pipe_picture = grey_south_pipe_picture,
|
||||||
pipe_connections =
|
pipe_connections =
|
||||||
{
|
{
|
||||||
{type = "output", position = {4, 9.5}},
|
{flow_direction = "output", direction = defines.direction.south, position = {4, 8.5}},
|
||||||
},
|
},
|
||||||
production_type = "output"
|
production_type = "output"
|
||||||
},
|
},
|
||||||
|
|
|
@ -50,80 +50,80 @@ data:extend({
|
||||||
energy_usage = '0.5GW',
|
energy_usage = '0.5GW',
|
||||||
--fluids
|
--fluids
|
||||||
fluid_boxes = {
|
fluid_boxes = {
|
||||||
{
|
{
|
||||||
base_area = 1,
|
|
||||||
height = 2,
|
volume = 200,
|
||||||
base_level = -1,
|
base_level = -1,
|
||||||
|
|
||||||
pipe_connections =
|
pipe_connections =
|
||||||
{
|
{
|
||||||
{type = "input", position = {-2, 9.5}}
|
{flow_direction = "input", direction = defines.direction.south, position = {-2, 8.5}}
|
||||||
},
|
},
|
||||||
production_type = "input"
|
production_type = "input"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
base_area = 1,
|
|
||||||
height = 2,
|
volume = 200,
|
||||||
base_level = -1,
|
base_level = -1,
|
||||||
|
|
||||||
pipe_connections =
|
pipe_connections =
|
||||||
{
|
{
|
||||||
{type = "input", position = {2, 9.5}}
|
{flow_direction = "input", direction = defines.direction.south, position = {2, 8.5}}
|
||||||
},
|
},
|
||||||
production_type = "input"
|
production_type = "input"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
base_area = 1,
|
|
||||||
height = 2,
|
volume = 200,
|
||||||
base_level = 1,
|
base_level = 1,
|
||||||
|
|
||||||
pipe_connections =
|
pipe_connections =
|
||||||
{
|
{
|
||||||
{type = "output", position = {0, -9.5}},
|
{flow_direction = "output", direction = defines.direction.north, position = {0, -8.5}},
|
||||||
},
|
},
|
||||||
production_type = "output"
|
production_type = "output"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
base_area = 1,
|
|
||||||
height = 2,
|
volume = 200,
|
||||||
base_level = 1,
|
base_level = 1,
|
||||||
|
|
||||||
pipe_connections =
|
pipe_connections =
|
||||||
{
|
{
|
||||||
{type = "output", position = {-2, -9.5}},
|
{flow_direction = "output", direction = defines.direction.north, position = {-2, -8.5}},
|
||||||
},
|
},
|
||||||
production_type = "output"
|
production_type = "output"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
base_area = 1,
|
|
||||||
height = 2,
|
volume = 200,
|
||||||
base_level = 1,
|
base_level = 1,
|
||||||
|
|
||||||
pipe_connections =
|
pipe_connections =
|
||||||
{
|
{
|
||||||
{type = "output", position = {2, -9.5}},
|
{flow_direction = "output", direction = defines.direction.north, position = {2, -8.5}},
|
||||||
},
|
},
|
||||||
production_type = "output"
|
production_type = "output"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
base_area = 1,
|
|
||||||
height = 2,
|
volume = 200,
|
||||||
base_level = 1,
|
base_level = 1,
|
||||||
|
|
||||||
pipe_connections =
|
pipe_connections =
|
||||||
{
|
{
|
||||||
{type = "output", position = {-4, -9.5}},
|
{flow_direction = "output", direction = defines.direction.north, position = {-4, -8.5}},
|
||||||
},
|
},
|
||||||
production_type = "output"
|
production_type = "output"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
base_area = 1,
|
|
||||||
height = 2,
|
volume = 200,
|
||||||
base_level = 1,
|
base_level = 1,
|
||||||
|
|
||||||
pipe_connections =
|
pipe_connections =
|
||||||
{
|
{
|
||||||
{type = "output", position = {4, -9.5}},
|
{flow_direction = "output", direction = defines.direction.north, position = {4, -8.5}},
|
||||||
},
|
},
|
||||||
production_type = "output"
|
production_type = "output"
|
||||||
},
|
},
|
||||||
|
|
|
@ -52,87 +52,87 @@ data:extend({
|
||||||
fluid_boxes = {
|
fluid_boxes = {
|
||||||
--in
|
--in
|
||||||
--right
|
--right
|
||||||
{
|
{
|
||||||
base_area = 1,
|
|
||||||
height = 2,
|
volume = 200,
|
||||||
base_level = -1,
|
base_level = -1,
|
||||||
pipe_connections =
|
pipe_connections =
|
||||||
{
|
{
|
||||||
{type = "input", position = {-9, 3}}
|
{flow_direction = "input", direction = defines.direction.west, position = {-8, 3}}
|
||||||
},
|
},
|
||||||
production_type = "input"
|
production_type = "input"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
base_area = 1,
|
|
||||||
height = 2,
|
volume = 200,
|
||||||
base_level = -1,
|
base_level = -1,
|
||||||
pipe_connections =
|
pipe_connections =
|
||||||
{
|
{
|
||||||
{type = "input", position = {-9, 1}}
|
{flow_direction = "input", direction = defines.direction.west, position = {-8, 1}}
|
||||||
},
|
},
|
||||||
production_type = "input"
|
production_type = "input"
|
||||||
},
|
},
|
||||||
--left
|
--left
|
||||||
{
|
{
|
||||||
base_area = 1,
|
|
||||||
height = 2,
|
volume = 200,
|
||||||
base_level = -1,
|
base_level = -1,
|
||||||
pipe_connections =
|
pipe_connections =
|
||||||
{
|
{
|
||||||
{type = "input", position = {9, 3}}
|
{flow_direction = "input", direction = defines.direction.east, position = {8, 3}}
|
||||||
},
|
},
|
||||||
production_type = "input"
|
production_type = "input"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
base_area = 1,
|
|
||||||
height = 2,
|
volume = 200,
|
||||||
base_level = -1,
|
base_level = -1,
|
||||||
pipe_connections =
|
pipe_connections =
|
||||||
{
|
{
|
||||||
{type = "input", position = {9, 1}}
|
{flow_direction = "input", direction = defines.direction.east, position = {8, 1}}
|
||||||
},
|
},
|
||||||
production_type = "input"
|
production_type = "input"
|
||||||
},
|
},
|
||||||
--out
|
--out
|
||||||
--up
|
--up
|
||||||
{
|
{
|
||||||
base_area = 1,
|
|
||||||
height = 2,
|
volume = 200,
|
||||||
base_level = 1,
|
base_level = 1,
|
||||||
pipe_connections =
|
pipe_connections =
|
||||||
{
|
{
|
||||||
{type = "output", position = {-2, -5}},
|
{flow_direction = "output", direction = defines.direction.north, position = {-2, -4}},
|
||||||
},
|
},
|
||||||
production_type = "output"
|
production_type = "output"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
base_area = 1,
|
|
||||||
height = 2,
|
volume = 200,
|
||||||
base_level = 1,
|
base_level = 1,
|
||||||
pipe_connections =
|
pipe_connections =
|
||||||
{
|
{
|
||||||
{type = "output", position = {2, -5}},
|
{flow_direction = "output", direction = defines.direction.north, position = {2, -4}},
|
||||||
},
|
},
|
||||||
production_type = "output"
|
production_type = "output"
|
||||||
},
|
},
|
||||||
--down
|
--down
|
||||||
{
|
{
|
||||||
base_area = 1,
|
|
||||||
height = 2,
|
volume = 200,
|
||||||
base_level = 1,
|
base_level = 1,
|
||||||
pipe_connections =
|
pipe_connections =
|
||||||
{
|
{
|
||||||
{type = "output", position = {-2, 9}},
|
{flow_direction = "output", direction = defines.direction.south, position = {-2, 8}},
|
||||||
},
|
},
|
||||||
production_type = "output"
|
production_type = "output"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
base_area = 1,
|
|
||||||
height = 2,
|
volume = 200,
|
||||||
base_level = 1,
|
base_level = 1,
|
||||||
pipe_connections =
|
pipe_connections =
|
||||||
{
|
{
|
||||||
{type = "output", position = {2, 9}},
|
{flow_direction = "output", direction = defines.direction.south, position = {2, 8}},
|
||||||
},
|
},
|
||||||
production_type = "output"
|
production_type = "output"
|
||||||
},
|
},
|
||||||
|
|
|
@ -50,58 +50,58 @@ data:extend({
|
||||||
energy_usage = '0.7GW',
|
energy_usage = '0.7GW',
|
||||||
--fluids
|
--fluids
|
||||||
fluid_boxes = {
|
fluid_boxes = {
|
||||||
{
|
{
|
||||||
base_area = 1,
|
|
||||||
height = 2,
|
volume = 200,
|
||||||
base_level = -1,
|
base_level = -1,
|
||||||
|
|
||||||
pipe_connections =
|
pipe_connections =
|
||||||
{
|
{
|
||||||
{type = "input", position = {9, 0}}
|
{flow_direction = "input", direction = defines.direction.east, position = {8, 0}}
|
||||||
},
|
},
|
||||||
production_type = "input"
|
production_type = "input"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
base_area = 1,
|
|
||||||
height = 2,
|
volume = 200,
|
||||||
base_level = -1,
|
base_level = -1,
|
||||||
|
|
||||||
pipe_connections =
|
pipe_connections =
|
||||||
{
|
{
|
||||||
{type = "input", position = {9, 2}}
|
{flow_direction = "input", direction = defines.direction.east, position = {8, 2}}
|
||||||
},
|
},
|
||||||
production_type = "input"
|
production_type = "input"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
base_area = 1,
|
|
||||||
height = 2,
|
volume = 200,
|
||||||
base_level = -1,
|
base_level = -1,
|
||||||
|
|
||||||
pipe_connections =
|
pipe_connections =
|
||||||
{
|
{
|
||||||
{type = "input", position = {9, -2}}
|
{flow_direction = "input", direction = defines.direction.east, position = {8, -2}}
|
||||||
},
|
},
|
||||||
production_type = "input"
|
production_type = "input"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
base_area = 1,
|
|
||||||
height = 2,
|
volume = 200,
|
||||||
base_level = 1,
|
base_level = 1,
|
||||||
|
|
||||||
pipe_connections =
|
pipe_connections =
|
||||||
{
|
{
|
||||||
{type = "output", position = {-11, -1}},
|
{flow_direction = "output", direction = defines.direction.west, position = {-10, -1}},
|
||||||
},
|
},
|
||||||
production_type = "output"
|
production_type = "output"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
base_area = 1,
|
|
||||||
height = 2,
|
volume = 200,
|
||||||
base_level = 1,
|
base_level = 1,
|
||||||
|
|
||||||
pipe_connections =
|
pipe_connections =
|
||||||
{
|
{
|
||||||
{type = "output", position = {-11, 1}},
|
{flow_direction = "output", direction = defines.direction.west, position = {-10, 1}},
|
||||||
},
|
},
|
||||||
production_type = "output"
|
production_type = "output"
|
||||||
},
|
},
|
||||||
|
|
|
@ -50,58 +50,58 @@ data:extend({
|
||||||
energy_usage = '0.7GW',
|
energy_usage = '0.7GW',
|
||||||
--fluids
|
--fluids
|
||||||
fluid_boxes = {
|
fluid_boxes = {
|
||||||
{
|
{
|
||||||
base_area = 1,
|
|
||||||
height = 2,
|
volume = 200,
|
||||||
base_level = -1,
|
base_level = -1,
|
||||||
|
|
||||||
pipe_connections =
|
pipe_connections =
|
||||||
{
|
{
|
||||||
{type = "input", position = {-9, 0}}
|
{flow_direction = "input", direction = defines.direction.west, position = {-8, 0}}
|
||||||
},
|
},
|
||||||
production_type = "input"
|
production_type = "input"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
base_area = 1,
|
|
||||||
height = 2,
|
volume = 200,
|
||||||
base_level = -1,
|
base_level = -1,
|
||||||
|
|
||||||
pipe_connections =
|
pipe_connections =
|
||||||
{
|
{
|
||||||
{type = "input", position = {-9, 2}}
|
{flow_direction = "input", direction = defines.direction.west, position = {-8, 2}}
|
||||||
},
|
},
|
||||||
production_type = "input"
|
production_type = "input"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
base_area = 1,
|
|
||||||
height = 2,
|
volume = 200,
|
||||||
base_level = -1,
|
base_level = -1,
|
||||||
|
|
||||||
pipe_connections =
|
pipe_connections =
|
||||||
{
|
{
|
||||||
{type = "input", position = {-9, -2}}
|
{flow_direction = "input", direction = defines.direction.west, position = {-8, -2}}
|
||||||
},
|
},
|
||||||
production_type = "input"
|
production_type = "input"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
base_area = 1,
|
|
||||||
height = 2,
|
volume = 200,
|
||||||
base_level = 1,
|
base_level = 1,
|
||||||
|
|
||||||
pipe_connections =
|
pipe_connections =
|
||||||
{
|
{
|
||||||
{type = "output", position = {11, -1}},
|
{flow_direction = "output", direction = defines.direction.east, position = {10, -1}},
|
||||||
},
|
},
|
||||||
production_type = "output"
|
production_type = "output"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
base_area = 1,
|
|
||||||
height = 2,
|
volume = 200,
|
||||||
base_level = 1,
|
base_level = 1,
|
||||||
|
|
||||||
pipe_connections =
|
pipe_connections =
|
||||||
{
|
{
|
||||||
{type = "output", position = {11, 1}},
|
{flow_direction = "output", direction = defines.direction.east, position = {10, 1}},
|
||||||
},
|
},
|
||||||
production_type = "output"
|
production_type = "output"
|
||||||
},
|
},
|
||||||
|
|
|
@ -50,17 +50,17 @@ data:extend({
|
||||||
max_power_output = "200MW",
|
max_power_output = "200MW",
|
||||||
fluid_box = {
|
fluid_box = {
|
||||||
filter = "fu_hot_steam",
|
filter = "fu_hot_steam",
|
||||||
base_area = 1,
|
|
||||||
height = 2,
|
volume = 200,
|
||||||
base_level = -1,
|
base_level = -1,
|
||||||
pipe_covers = pipecoverspictures(),
|
pipe_covers = pipecoverspictures(),
|
||||||
pipe_picture = grey_south_pipe_picture,
|
pipe_picture = grey_south_pipe_picture,
|
||||||
pipe_connections =
|
pipe_connections =
|
||||||
{
|
{
|
||||||
{type = "input-output", position = {-4, 0}},
|
{flow_direction = "input-output", direction = defines.direction.west, position = {-3, 0}},
|
||||||
{type = "input-output", position = {4, 0}},
|
{flow_direction = "input-output", direction = defines.direction.east, position = {3, 0}},
|
||||||
{type = "input-output", position = {0, 4}},
|
{flow_direction = "input-output", direction = defines.direction.south, position = {0, 3}},
|
||||||
{type = "input-output", position = {0, -4}}
|
{flow_direction = "input-output", direction = defines.direction.north, position = {0, -3}}
|
||||||
},
|
},
|
||||||
production_type = "input-output"
|
production_type = "input-output"
|
||||||
},
|
},
|
||||||
|
|
|
@ -52,47 +52,46 @@ data:extend({
|
||||||
energy_usage = '4MW',
|
energy_usage = '4MW',
|
||||||
fluid_boxes = {
|
fluid_boxes = {
|
||||||
{
|
{
|
||||||
base_area = 1,
|
|
||||||
height = 2,
|
volume = 200,
|
||||||
base_level = -1,
|
base_level = -1,
|
||||||
pipe_covers = pipecoverspictures(),
|
pipe_covers = pipecoverspictures(),
|
||||||
pipe_connections =
|
pipe_connections =
|
||||||
{
|
{
|
||||||
{type = "input", position = {0, -3}},
|
{flow_direction = "input", direction = defines.direction.north, position = {0, -2}},
|
||||||
},
|
|
||||||
production_type = "input"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
base_area = 1,
|
|
||||||
height = 2,
|
|
||||||
base_level = -1,
|
|
||||||
pipe_covers = pipecoverspictures(),
|
|
||||||
pipe_connections =
|
|
||||||
{
|
|
||||||
{type = "input", position = {-3, 0}}
|
|
||||||
},
|
|
||||||
production_type = "input"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
base_area = 1,
|
|
||||||
height = 2,
|
|
||||||
base_level = -1,
|
|
||||||
pipe_covers = pipecoverspictures(),
|
|
||||||
pipe_connections =
|
|
||||||
{
|
|
||||||
{type = "input", position = {3, 0}},
|
|
||||||
--{type = "output", position = {2, -2.5}}
|
|
||||||
},
|
},
|
||||||
production_type = "input"
|
production_type = "input"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
base_area = 1,
|
|
||||||
height = 2,
|
volume = 200,
|
||||||
base_level = -1,
|
base_level = -1,
|
||||||
pipe_covers = pipecoverspictures(),
|
pipe_covers = pipecoverspictures(),
|
||||||
pipe_connections =
|
pipe_connections =
|
||||||
{
|
{
|
||||||
{type = "input", position = {0, 3}},
|
{flow_direction = "input", direction = defines.direction.west, position = {-2, 0}}
|
||||||
|
},
|
||||||
|
production_type = "input"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
|
||||||
|
volume = 200,
|
||||||
|
base_level = -1,
|
||||||
|
pipe_covers = pipecoverspictures(),
|
||||||
|
pipe_connections =
|
||||||
|
{
|
||||||
|
{flow_direction = "input", direction = defines.direction.east, position = {2, 0}},
|
||||||
|
},
|
||||||
|
production_type = "input"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
|
||||||
|
volume = 200,
|
||||||
|
base_level = -1,
|
||||||
|
pipe_covers = pipecoverspictures(),
|
||||||
|
pipe_connections =
|
||||||
|
{
|
||||||
|
{flow_direction = "input", direction = defines.direction.south, position = {0, 2}},
|
||||||
},
|
},
|
||||||
production_type = "input"
|
production_type = "input"
|
||||||
},
|
},
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue