balanced fi purification, added al only recipe
This commit is contained in:
parent
b89421cc1a
commit
a1cc190d04
8 changed files with 67 additions and 21 deletions
|
@ -3,12 +3,15 @@ Version: 1.0.11
|
|||
Date: 13.4.2022
|
||||
Features:
|
||||
- updated ru locale thanks to Astorin
|
||||
- flame throwers can now use kerosene and desulfurized kerosene
|
||||
- added highly advanced oil/kerosene processing
|
||||
|
||||
Changes:
|
||||
- Overhaul mode is now off by default to prevent sync issues
|
||||
- made early game techs towards ass. machine 2 cheaper to improve early game
|
||||
- added prerequisite for fi advanced purification tech
|
||||
- unused crusher recipes are now hidden
|
||||
- heavily nerfed fi stage uranium purification, also nerfed extraction of uranium/thorium with purification
|
||||
|
||||
Bugfixes:
|
||||
- temporary fix for multiplayer GUI handling by x2605
|
||||
|
|
|
@ -194,7 +194,7 @@ fi_arc_glass=Molten industrial glass
|
|||
fi_arc_gold=Molten gold
|
||||
fi_arc_titan=Molten titan
|
||||
fi_arc_neodym=Molten neodymium
|
||||
fi_acid_water=Acid gas
|
||||
fi_acid_gas=Acid gas
|
||||
|
||||
|
||||
fu_hydrogen=Hydrogen
|
||||
|
|
|
@ -214,6 +214,27 @@ data:extend({
|
|||
time = 30,
|
||||
},
|
||||
},
|
||||
{
|
||||
name = 'el_purifier_2_tech',
|
||||
type = 'technology',
|
||||
icon = sprite('el_purifier_2_tech.png'),
|
||||
icon_size = 128,
|
||||
prerequisites = {'el_purifier_tech'},
|
||||
effects = {
|
||||
{
|
||||
type = 'unlock-recipe',
|
||||
recipe = 'el_purify_stone_2_recipe',
|
||||
}
|
||||
},
|
||||
unit = {
|
||||
count = '50',
|
||||
ingredients = {
|
||||
{'automation-science-pack',1},
|
||||
{'logistic-science-pack',1},
|
||||
},
|
||||
time = 30,
|
||||
},
|
||||
},
|
||||
{
|
||||
name = 'el_grower_tech',
|
||||
type = 'technology',
|
||||
|
|
|
@ -895,6 +895,24 @@ data:extend({
|
|||
energy_required = 1,
|
||||
always_show_made_in = true
|
||||
},
|
||||
{
|
||||
name = 'el_purify_stone_2_recipe',
|
||||
type = 'recipe',
|
||||
enabled = 'false',
|
||||
category = 'el_purifier_category',
|
||||
main_product = 'el_dirty_water',
|
||||
ingredients = {
|
||||
{type="fluid", name="water", amount=100},
|
||||
--{type="fluid", name="steam", amount=240, temperature=165},
|
||||
{type="item", name="stone", amount=10}
|
||||
},
|
||||
results = {
|
||||
{type="fluid", name="el_dirty_water", amount=100},
|
||||
{type="item", name="el_materials_pure_aluminum", amount=2},
|
||||
},
|
||||
energy_required = 1,
|
||||
always_show_made_in = true
|
||||
},
|
||||
{
|
||||
name = 'el_purify_iron_recipe',
|
||||
type = 'recipe',
|
||||
|
|
|
@ -862,17 +862,17 @@ data:extend({
|
|||
category = 'el_purifier_category',
|
||||
main_product = 'fi_thorium232_item',
|
||||
ingredients = {
|
||||
{type="fluid", name="fi_strong_acid", amount=200},
|
||||
{type="fluid", name="water", amount=50},
|
||||
{type="fluid", name="fi_strong_acid", amount=800},
|
||||
{type="fluid", name="water", amount=200},
|
||||
--{type="fluid", name="steam", amount=240, temperature=165},
|
||||
{type="item", name="iron-ore", amount=10}
|
||||
{type="item", name="iron-ore", amount=40}
|
||||
},
|
||||
results = {
|
||||
{type="fluid", name="fi_dirty_water", amount=50},
|
||||
{type="item", name="fi_thorium232_item", amount=2},
|
||||
{type="item", name="el_materials_pure_iron", amount=8}
|
||||
{type="fluid", name="fi_dirty_water", amount=200},
|
||||
{type="item", name="fi_thorium232_item", amount=1},
|
||||
{type="item", name="el_materials_pure_iron", amount=39}
|
||||
},
|
||||
energy_required = 4,
|
||||
energy_required = 16,
|
||||
always_show_made_in = true
|
||||
},
|
||||
{
|
||||
|
@ -882,17 +882,17 @@ data:extend({
|
|||
category = 'el_purifier_category',
|
||||
main_product = 'uranium-238',
|
||||
ingredients = {
|
||||
{type="fluid", name="fi_strong_acid", amount=200},
|
||||
{type="fluid", name="water", amount=50},
|
||||
{type="fluid", name="fi_strong_acid", amount=800},
|
||||
{type="fluid", name="water", amount=200},
|
||||
--{type="fluid", name="steam", amount=240, temperature=165},
|
||||
{type="item", name="copper-ore", amount=10}
|
||||
{type="item", name="copper-ore", amount=40}
|
||||
},
|
||||
results = {
|
||||
{type="fluid", name="fi_dirty_water", amount=50},
|
||||
{type="item", name="uranium-238", amount=2},
|
||||
{type="item", name="el_materials_pure_copper", amount=8}
|
||||
{type="fluid", name="fi_dirty_water", amount=200},
|
||||
{type="item", name="uranium-238", amount=1},
|
||||
{type="item", name="el_materials_pure_copper", amount=39}
|
||||
},
|
||||
energy_required = 2,
|
||||
energy_required = 16,
|
||||
always_show_made_in = true
|
||||
},
|
||||
{
|
||||
|
@ -905,15 +905,15 @@ data:extend({
|
|||
{type="fluid", name="fi_strong_acid", amount=1000},
|
||||
{type="fluid", name="water", amount=500},
|
||||
--{type="fluid", name="steam", amount=240, temperature=165},
|
||||
{type="item", name="uranium-ore", amount=100}
|
||||
{type="item", name="uranium-ore", amount=500}
|
||||
},
|
||||
results = {
|
||||
{type="fluid", name="fi_dirty_water", amount=500},
|
||||
{type="item", name="el_energy_crystal_item", amount=50},
|
||||
{type="item", name="uranium-238", amount=20},
|
||||
{type="item", name="uranium-235", amount=4},
|
||||
{type="item", name="stone", amount=450},
|
||||
{type="item", name="uranium-238", amount=49},
|
||||
{type="item", name="uranium-235", amount=1},
|
||||
},
|
||||
energy_required = 2,
|
||||
energy_required = 20,
|
||||
always_show_made_in = true
|
||||
},
|
||||
|
||||
|
|
|
@ -45,7 +45,10 @@ local limitation_list = {
|
|||
'gr_materials_stack_up_item_recipe',
|
||||
'gr_materials_stack_down_item_recipe',
|
||||
'fi_rich_powder_recipe',
|
||||
'fi_strong_acid_recipe'
|
||||
'fi_strong_acid_recipe',
|
||||
'fi_refinery_basic_recipe',
|
||||
'fi_refinery_coal_recipe',
|
||||
'fi_refinery_sulfur_recipe'
|
||||
}
|
||||
|
||||
--item
|
||||
|
|
|
@ -45,6 +45,7 @@ data:extend({
|
|||
energy_source = {
|
||||
type = 'electric',
|
||||
usage_priority = 'secondary-input',
|
||||
emissions_per_minute = 20,
|
||||
--input_flow_limit = '4MW',
|
||||
},
|
||||
energy_usage = '1MW',
|
||||
|
|
BIN
ressources/techs/el_purifier_2_tech.png
Normal file
BIN
ressources/techs/el_purifier_2_tech.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 20 KiB |
Loading…
Add table
Add a link
Reference in a new issue