added advanced oil processing
This commit is contained in:
parent
4beb29c9d2
commit
b89421cc1a
15 changed files with 266 additions and 11 deletions
|
@ -160,6 +160,21 @@ data:extend({
|
|||
subgroup = 'fi_item_subgroup_f',
|
||||
order = 'a-a',
|
||||
},
|
||||
{
|
||||
name = 'fi_acid_gas',
|
||||
type = 'fluid',
|
||||
icon = sprite('fi_acid_gas.png'),
|
||||
icon_size = 64,
|
||||
default_temperature = 15,
|
||||
max_temperature = 1000,
|
||||
heat_capacity = '1kJ',
|
||||
base_color = { r=0.9, g=0.77, b=0.6 },
|
||||
flow_color = { r=0.9, g=0.77, b=0.6 },
|
||||
pressure_to_speed_ratio = 0.400,
|
||||
flow_to_energy_ratio = 0,
|
||||
subgroup = 'fi_item_subgroup_f',
|
||||
order = 'a-a',
|
||||
},
|
||||
{
|
||||
name = 'fu_lead_fluid_hot',
|
||||
type = 'fluid',
|
||||
|
|
|
@ -1061,7 +1061,7 @@ data:extend({
|
|||
type = 'technology',
|
||||
icon = sprite('fi_purifier_2_tech.png'),
|
||||
icon_size = 128,
|
||||
prerequisites = {'fi_purifier_tech', 'uranium-processing'},
|
||||
prerequisites = {'fi_purifier_tech', 'uranium-processing', 'fi_materials_tech'},
|
||||
effects = {
|
||||
{
|
||||
type = 'unlock-recipe',
|
||||
|
@ -1374,6 +1374,7 @@ data:extend({
|
|||
type = 'unlock-recipe',
|
||||
recipe = 'fi_crushed_crystal_recipe',
|
||||
},
|
||||
--[[
|
||||
{
|
||||
type = 'unlock-recipe',
|
||||
recipe = 'fi_crushed_iron_recipe',
|
||||
|
@ -1382,14 +1383,17 @@ data:extend({
|
|||
type = 'unlock-recipe',
|
||||
recipe = 'fi_crushed_copper_recipe',
|
||||
},
|
||||
]]
|
||||
{
|
||||
type = 'unlock-recipe',
|
||||
recipe = 'fi_crushed_lithium_recipe',
|
||||
},
|
||||
--[[
|
||||
{
|
||||
type = 'unlock-recipe',
|
||||
recipe = 'fi_crushed_aluminum_recipe',
|
||||
},
|
||||
]]
|
||||
{
|
||||
type = 'unlock-recipe',
|
||||
recipe = 'fi_crushed_coal_recipe',
|
||||
|
@ -1398,10 +1402,12 @@ data:extend({
|
|||
type = 'unlock-recipe',
|
||||
recipe = 'fi_crushed_stone_recipe',
|
||||
},
|
||||
--[[
|
||||
{
|
||||
type = 'unlock-recipe',
|
||||
recipe = 'fi_crushed_uranium_recipe',
|
||||
},
|
||||
]]
|
||||
},
|
||||
unit = {
|
||||
count = '200',
|
||||
|
@ -1630,7 +1636,7 @@ data:extend({
|
|||
type = 'technology',
|
||||
icon = sprite('fi_refinery_tech.png'),
|
||||
icon_size = 128,
|
||||
prerequisites = {'fi_stage_tech'},
|
||||
prerequisites = {'fi_crusher_tech'},
|
||||
effects = {
|
||||
{
|
||||
type = 'unlock-recipe',
|
||||
|
@ -1638,8 +1644,16 @@ data:extend({
|
|||
},
|
||||
{
|
||||
type = 'unlock-recipe',
|
||||
recipe = 'fi_refinery_blank_recipe',
|
||||
}
|
||||
recipe = 'fi_refinery_basic_recipe',
|
||||
},
|
||||
{
|
||||
type = 'unlock-recipe',
|
||||
recipe = 'fi_crack_sulfur_gas_recipe',
|
||||
},
|
||||
{
|
||||
type = 'unlock-recipe',
|
||||
recipe = 'fi_refinery_kerosene_recipe',
|
||||
},
|
||||
},
|
||||
unit = {
|
||||
count = '100',
|
||||
|
@ -1651,6 +1665,76 @@ data:extend({
|
|||
time = 30,
|
||||
},
|
||||
},
|
||||
{
|
||||
name = 'fi_refinery_2_tech',
|
||||
type = 'technology',
|
||||
icon = sprite('fi_refinery_2_tech.png'),
|
||||
icon_size = 128,
|
||||
prerequisites = {'fi_refinery_tech'},
|
||||
effects = {
|
||||
{
|
||||
type = 'unlock-recipe',
|
||||
recipe = 'fi_refinery_sulfur_recipe',
|
||||
},
|
||||
{
|
||||
type = 'unlock-recipe',
|
||||
recipe = 'fi_crack_acid_gas_recipe',
|
||||
}
|
||||
},
|
||||
unit = {
|
||||
count = '300',
|
||||
ingredients = {
|
||||
{'chemical-science-pack',1},
|
||||
{'automation-science-pack',1},
|
||||
{'logistic-science-pack',1,},
|
||||
},
|
||||
time = 30,
|
||||
},
|
||||
},
|
||||
{
|
||||
name = 'fi_refinery_3_tech',
|
||||
type = 'technology',
|
||||
icon = sprite('fi_refinery_3_tech.png'),
|
||||
icon_size = 128,
|
||||
prerequisites = {'fi_refinery_tech'},
|
||||
effects = {
|
||||
{
|
||||
type = 'unlock-recipe',
|
||||
recipe = 'fi_refinery_coal_recipe',
|
||||
}
|
||||
},
|
||||
unit = {
|
||||
count = '300',
|
||||
ingredients = {
|
||||
{'chemical-science-pack',1},
|
||||
{'automation-science-pack',1},
|
||||
{'logistic-science-pack',1,},
|
||||
},
|
||||
time = 30,
|
||||
},
|
||||
},
|
||||
{
|
||||
name = 'fi_refinery_4_tech',
|
||||
type = 'technology',
|
||||
icon = sprite('fi_refinery_4_tech.png'),
|
||||
icon_size = 128,
|
||||
prerequisites = {'fi_refinery_tech'},
|
||||
effects = {
|
||||
{
|
||||
type = 'unlock-recipe',
|
||||
recipe = 'fi_refinery_kerosene_coal_recipe',
|
||||
},
|
||||
},
|
||||
unit = {
|
||||
count = '300',
|
||||
ingredients = {
|
||||
{'chemical-science-pack',1},
|
||||
{'automation-science-pack',1},
|
||||
{'logistic-science-pack',1,},
|
||||
},
|
||||
time = 30,
|
||||
},
|
||||
},
|
||||
--============================================================================================================================================================
|
||||
--fu
|
||||
{
|
||||
|
|
|
@ -181,6 +181,7 @@ data:extend({
|
|||
result_count = 4,
|
||||
energy_required = 20,
|
||||
order = 'b-b',
|
||||
always_show_made_in = true,
|
||||
},
|
||||
|
||||
--uran etc
|
||||
|
@ -1210,7 +1211,10 @@ data:extend({
|
|||
enabled = 'false',
|
||||
category = 'crafting',
|
||||
ingredients = {
|
||||
{type="item", name="el_materials_ALK", amount=1},
|
||||
{type="item", name="oil-refinery", amount=1},
|
||||
{'concrete',60},
|
||||
{'el_materials_ALK',20},
|
||||
{'engine-unit',15},
|
||||
},
|
||||
results = {
|
||||
{type="item", name="fi_refinery_item", amount=1}
|
||||
|
@ -1219,17 +1223,150 @@ data:extend({
|
|||
order = 'a-b',
|
||||
},
|
||||
{
|
||||
name = 'fi_refinery_blank_recipe',
|
||||
name = 'fi_refinery_basic_recipe',
|
||||
type = 'recipe',
|
||||
enabled = 'false',
|
||||
category = 'fi_refining',
|
||||
icon = sprite('icons/fi_refining_basic.png'),
|
||||
icon_size = 64,
|
||||
ingredients = {
|
||||
{type="fluid", name="water", amount=100},
|
||||
{type="fluid", name="crude-oil", amount=180},
|
||||
{type="fluid", name="steam", amount=100},
|
||||
},
|
||||
results = {
|
||||
{type="fluid", name="steam", amount=100}
|
||||
{type="fluid", name="petroleum-gas", amount=80},
|
||||
{type="fluid", name="fi_acid_gas", amount=20},
|
||||
{type="fluid", name="el_kerosene", amount=80},
|
||||
{type="fluid", name="heavy-oil", amount=20},
|
||||
},
|
||||
energy_required = 1,
|
||||
order = 'a-b',
|
||||
energy_required = 6,
|
||||
subgroup = 'fi_item_subgroup_f',
|
||||
order = 'a-a',
|
||||
always_show_made_in = true,
|
||||
},
|
||||
{
|
||||
name = 'fi_refinery_coal_recipe',
|
||||
type = 'recipe',
|
||||
enabled = 'false',
|
||||
category = 'fi_refining',
|
||||
icon = sprite('icons/fi_refining_coal.png'),
|
||||
icon_size = 64,
|
||||
ingredients = {
|
||||
{type="fluid", name="crude-oil", amount=180},
|
||||
{type="fluid", name="steam", amount=100},
|
||||
{type="item", name="fi_crushed_coal_item", amount=10},
|
||||
},
|
||||
results = {
|
||||
{type="fluid", name="petroleum-gas", amount=60},
|
||||
{type="fluid", name="fi_acid_gas", amount=30},
|
||||
{type="fluid", name="el_kerosene", amount=65},
|
||||
{type="fluid", name="heavy-oil", amount=75},
|
||||
},
|
||||
energy_required = 6,
|
||||
subgroup = 'fi_item_subgroup_f',
|
||||
order = 'a-a',
|
||||
always_show_made_in = true,
|
||||
},
|
||||
{
|
||||
name = 'fi_refinery_sulfur_recipe',
|
||||
type = 'recipe',
|
||||
enabled = 'false',
|
||||
category = 'fi_refining',
|
||||
icon = sprite('icons/fi_refining_sulfur.png'),
|
||||
icon_size = 64,
|
||||
ingredients = {
|
||||
{type="fluid", name="crude-oil", amount=180},
|
||||
{type="fluid", name="steam", amount=100},
|
||||
{type="item", name="sulfur", amount=3},
|
||||
},
|
||||
results = {
|
||||
{type="fluid", name="petroleum-gas", amount=80},
|
||||
{type="fluid", name="fi_acid_gas", amount=50},
|
||||
{type="fluid", name="el_kerosene", amount=80},
|
||||
{type="fluid", name="heavy-oil", amount=20},
|
||||
},
|
||||
energy_required = 6,
|
||||
subgroup = 'fi_item_subgroup_f',
|
||||
order = 'a-a',
|
||||
always_show_made_in = true,
|
||||
},
|
||||
{
|
||||
name = 'fi_crack_sulfur_gas_recipe',
|
||||
type = 'recipe',
|
||||
enabled = 'false',
|
||||
category = 'chemistry',
|
||||
main_product = 'sulfur',
|
||||
ingredients = {
|
||||
{type="fluid", name="fi_acid_gas", amount=10},
|
||||
{type="fluid", name="steam", amount=20},
|
||||
},
|
||||
results = {
|
||||
{type="fluid", name="water", amount=15},
|
||||
{type="item", name="sulfur", amount=1},
|
||||
},
|
||||
energy_required = 0.5,
|
||||
subgroup = 'fi_item_subgroup_f',
|
||||
order = 'a-a',
|
||||
always_show_made_in = true,
|
||||
},
|
||||
{
|
||||
name = 'fi_crack_acid_gas_recipe',
|
||||
type = 'recipe',
|
||||
enabled = 'false',
|
||||
category = 'chemistry',
|
||||
main_product = 'el_acidic_water',
|
||||
ingredients = {
|
||||
{type="fluid", name="fi_acid_gas", amount=20},
|
||||
{type="fluid", name="steam", amount=20},
|
||||
},
|
||||
results = {
|
||||
{type="fluid", name="el_acidic_water", amount=20},
|
||||
{type="fluid", name="sulfuric-acid", amount=5},
|
||||
},
|
||||
energy_required = 0.5,
|
||||
subgroup = 'fi_item_subgroup_f',
|
||||
order = 'a-a',
|
||||
always_show_made_in = true,
|
||||
},
|
||||
{
|
||||
name = 'fi_refinery_kerosene_recipe',
|
||||
type = 'recipe',
|
||||
enabled = 'false',
|
||||
category = 'fi_refining',
|
||||
icon = sprite('icons/fi_cracking_kerosene.png'),
|
||||
icon_size = 64,
|
||||
ingredients = {
|
||||
{type="fluid", name="el_kerosene", amount=200},
|
||||
},
|
||||
results = {
|
||||
{type="fluid", name="el_acidic_water", amount=80},
|
||||
{type="fluid", name="fi_acid_gas", amount=40},
|
||||
{type="fluid", name="el_desulfurized_kerosene", amount=80},
|
||||
},
|
||||
energy_required = 6,
|
||||
subgroup = 'fi_item_subgroup_f',
|
||||
order = 'a-a',
|
||||
always_show_made_in = true,
|
||||
},
|
||||
{
|
||||
name = 'fi_refinery_kerosene_coal_recipe',
|
||||
type = 'recipe',
|
||||
enabled = 'false',
|
||||
category = 'fi_refining',
|
||||
icon = sprite('icons/fi_cracking_kerosene_coal.png'),
|
||||
icon_size = 64,
|
||||
ingredients = {
|
||||
{type="fluid", name="el_kerosene", amount=200},
|
||||
{type="item", name="fi_crushed_coal_item", amount=10},
|
||||
},
|
||||
results = {
|
||||
{type="fluid", name="el_acidic_water", amount=90},
|
||||
{type="fluid", name="fi_acid_gas", amount=60},
|
||||
{type="fluid", name="heavy-oil", amount=80},
|
||||
},
|
||||
energy_required = 6,
|
||||
subgroup = 'fi_item_subgroup_f',
|
||||
order = 'a-a',
|
||||
always_show_made_in = true,
|
||||
},
|
||||
})
|
Loading…
Add table
Add a link
Reference in a new issue