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