balance and fixes for 1.0.13
This commit is contained in:
parent
30c311af2b
commit
f40fd8969e
5 changed files with 28 additions and 8 deletions
|
@ -1,4 +1,15 @@
|
||||||
---------------------------------------------------------------------------------------------------
|
---------------------------------------------------------------------------------------------------
|
||||||
|
Version: 1.0.13
|
||||||
|
Date: 13.4.2022
|
||||||
|
Changes:
|
||||||
|
- Rich powder accepts no longer productivity to prevent solution container looping
|
||||||
|
- nerfed rich water extraction from rich powder
|
||||||
|
- increased stone usage for rich powder and increased time usage
|
||||||
|
- added module slots to Item/fluid handler
|
||||||
|
|
||||||
|
Bugfixes:
|
||||||
|
- Arc Furnace texture was missaligned
|
||||||
|
---------------------------------------------------------------------------------------------------
|
||||||
Version: 1.0.12
|
Version: 1.0.12
|
||||||
Date: 13.4.2022
|
Date: 13.4.2022
|
||||||
Features:
|
Features:
|
||||||
|
|
|
@ -133,7 +133,7 @@ data:extend({
|
||||||
lines_per_file = 1,
|
lines_per_file = 1,
|
||||||
frame_count = 3,
|
frame_count = 3,
|
||||||
animation_speed = 0.2,
|
animation_speed = 0.2,
|
||||||
shift = {0,-0.1}
|
shift = {0,-0.3}
|
||||||
},
|
},
|
||||||
light = {
|
light = {
|
||||||
type = "basic",
|
type = "basic",
|
||||||
|
|
|
@ -1175,15 +1175,15 @@ data:extend({
|
||||||
main_product = 'fi_materials_rich_powder',
|
main_product = 'fi_materials_rich_powder',
|
||||||
ingredients = {
|
ingredients = {
|
||||||
{type="item", name="fi_materials_solution", amount=1},
|
{type="item", name="fi_materials_solution", amount=1},
|
||||||
{type="item", name="fi_crushed_stone_item", amount=10},
|
{type="item", name="fi_crushed_stone_item", amount=20},
|
||||||
{type="item", name="fi_crushed_coal_item", amount=20},
|
{type="item", name="fi_crushed_coal_item", amount=20},
|
||||||
},
|
},
|
||||||
results = {
|
results = {
|
||||||
{type="item", name="fi_crushed_coal_item", amount=17},
|
{type="item", name="fi_crushed_coal_item", amount=18},
|
||||||
{type="item", name="fi_materials_rich_powder", amount=3},
|
{type="item", name="fi_materials_rich_powder", amount=2},
|
||||||
{type="item", name="fi_materials_empty_solution", amount=1},
|
{type="item", name="fi_materials_empty_solution", amount=1},
|
||||||
},
|
},
|
||||||
energy_required = 6,
|
energy_required = 10,
|
||||||
order = 'a-b',
|
order = 'a-b',
|
||||||
always_show_made_in = true,
|
always_show_made_in = true,
|
||||||
},
|
},
|
||||||
|
@ -1195,10 +1195,10 @@ data:extend({
|
||||||
main_product = 'fi_dirty_water',
|
main_product = 'fi_dirty_water',
|
||||||
ingredients = {
|
ingredients = {
|
||||||
{type="item", name="fi_materials_rich_powder", amount=1},
|
{type="item", name="fi_materials_rich_powder", amount=1},
|
||||||
{type="fluid", name="water", amount=300},
|
{type="fluid", name="water", amount=200},
|
||||||
},
|
},
|
||||||
results = {
|
results = {
|
||||||
{type="fluid", name="fi_dirty_water", amount=250},
|
{type="fluid", name="fi_dirty_water", amount=150},
|
||||||
{type="fluid", name="el_dirty_water", amount=50},
|
{type="fluid", name="el_dirty_water", amount=50},
|
||||||
},
|
},
|
||||||
energy_required = 1,
|
energy_required = 1,
|
||||||
|
|
|
@ -44,7 +44,8 @@ local limitation_list = {
|
||||||
'gr_circuit_recipe',
|
'gr_circuit_recipe',
|
||||||
'gr_materials_stack_up_item_recipe',
|
'gr_materials_stack_up_item_recipe',
|
||||||
'gr_materials_stack_down_item_recipe',
|
'gr_materials_stack_down_item_recipe',
|
||||||
'fi_rich_powder_recipe',
|
'fi_empty_solution_recipe',
|
||||||
|
--'fi_extract_rich_powder_recipe',
|
||||||
'fi_strong_acid_recipe',
|
'fi_strong_acid_recipe',
|
||||||
'fi_refinery_basic_recipe',
|
'fi_refinery_basic_recipe',
|
||||||
'fi_refinery_coal_recipe',
|
'fi_refinery_coal_recipe',
|
||||||
|
|
|
@ -48,6 +48,14 @@ data:extend({
|
||||||
usage_priority = 'secondary-input',
|
usage_priority = 'secondary-input',
|
||||||
buffer_capacity = '5MJ',
|
buffer_capacity = '5MJ',
|
||||||
},
|
},
|
||||||
|
allowed_effects = {"speed", "consumption", "pollution"},
|
||||||
|
module_specification = {
|
||||||
|
module_info_icon_shift = {
|
||||||
|
0,
|
||||||
|
0.8
|
||||||
|
},
|
||||||
|
module_slots = 2
|
||||||
|
},
|
||||||
crafting_speed = 1,
|
crafting_speed = 1,
|
||||||
energy_usage = '500KW',
|
energy_usage = '500KW',
|
||||||
fluid_boxes = {
|
fluid_boxes = {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue