update to 1.0.22

This commit is contained in:
PreLeyZero 2022-05-19 16:02:18 +02:00
parent f97f5b2317
commit d5615d8685
10 changed files with 55 additions and 21 deletions

View file

@ -1,4 +1,14 @@
--------------------------------------------------------------------------------------------------- ---------------------------------------------------------------------------------------------------
Version: 1.0.22
Date: 19.5.2022
Features:
- added a new sprite for hot lead coolant
Changes:
- added module slots for laser/plasma/magnet facility, decreased their lead usage
- added module slots to fusor, improves yield of fusor recipes
- increased yield of lithium to lithium[6]
---------------------------------------------------------------------------------------------------
Version: 1.0.21 Version: 1.0.21
Date: 13.5.2022 Date: 13.5.2022
Features: Features:

View file

@ -1,6 +1,6 @@
{ {
"name": "248k", "name": "248k",
"version": "1.0.21", "version": "1.0.22",
"title": "248k Mod", "title": "248k Mod",
"author": "PreLeyZero", "author": "PreLeyZero",
"factorio_version": "1.1", "factorio_version": "1.1",

View file

@ -178,7 +178,7 @@ data:extend({
{ {
name = 'fu_lead_fluid_hot', name = 'fu_lead_fluid_hot',
type = 'fluid', type = 'fluid',
icon = sprite('fu_lead_fluid.png'), icon = sprite('fu_lead_fluid_hot.png'),
icon_size = 64, icon_size = 64,
default_temperature = 15, default_temperature = 15,
max_temperature = 1500, max_temperature = 1500,

View file

@ -99,7 +99,7 @@ data:extend({
{type="fluid", name="fu_protium", amount=100}, {type="fluid", name="fu_protium", amount=100},
}, },
result = 'fu_materials_fusion_card', result = 'fu_materials_fusion_card',
result_count = 5, result_count = 10,
energy_required = 100, energy_required = 100,
always_show_made_in = true, always_show_made_in = true,
}, },
@ -113,7 +113,7 @@ data:extend({
{type="fluid", name="fu_deuterium", amount=100}, {type="fluid", name="fu_deuterium", amount=100},
}, },
result = 'fu_materials_fusion_card', result = 'fu_materials_fusion_card',
result_count = 30, result_count = 100,
energy_required = 100, energy_required = 100,
always_show_made_in = true, always_show_made_in = true,
}, },
@ -127,7 +127,7 @@ data:extend({
{type="fluid", name="fu_tritium", amount=100}, {type="fluid", name="fu_tritium", amount=100},
}, },
result = 'fu_materials_fusion_card', result = 'fu_materials_fusion_card',
result_count = 100, result_count = 500,
energy_required = 100, energy_required = 100,
always_show_made_in = true, always_show_made_in = true,
}, },
@ -140,7 +140,7 @@ data:extend({
{type="fluid", name="fu_deuterium", amount=100}, {type="fluid", name="fu_deuterium", amount=100},
}, },
result = 'fu_materials_fusion_card', result = 'fu_materials_fusion_card',
result_count = 40, result_count = 50,
energy_required = 100, energy_required = 100,
always_show_made_in = true, always_show_made_in = true,
}, },
@ -251,7 +251,7 @@ data:extend({
{type="item", name="fi_crushed_lithium_item", amount=1}, {type="item", name="fi_crushed_lithium_item", amount=1},
}, },
results = { results = {
{type="fluid", name="fu_lithium_6", amount=1}, {type="fluid", name="fu_lithium_6", amount=5},
}, },
result_count = 1, result_count = 1,
energy_required = 1, energy_required = 1,
@ -305,7 +305,7 @@ data:extend({
category = 'crafting-with-fluid', category = 'crafting-with-fluid',
enabled = 'false', enabled = 'false',
ingredients = { ingredients = {
{type="item", name="fu_crushed_lead_item", amount=10}, {type="item", name="fu_crushed_lead_item", amount=5},
}, },
results = { results = {
{type="fluid", name="fu_lead_fluid_cold", amount=100}, {type="fluid", name="fu_lead_fluid_cold", amount=100},
@ -1189,12 +1189,12 @@ data:extend({
main_product = 'fu_materials_energy_crystal', main_product = 'fu_materials_energy_crystal',
subgroup = 'fu_item_subgroup_a-b', subgroup = 'fu_item_subgroup_a-b',
ingredients = { ingredients = {
{type="fluid", name="fu_lead_fluid_cold", amount=50}, {type="fluid", name="fu_lead_fluid_cold", amount=10},
{type="item", name="fu_materials_refined_crystal", amount=1} {type="item", name="fu_materials_refined_crystal", amount=1}
}, },
results = { results = {
{type="item", name="fu_materials_energy_crystal", amount=1}, {type="item", name="fu_materials_energy_crystal", amount=1},
{type="fluid", name="fu_lead_fluid_hot", amount=50} {type="fluid", name="fu_lead_fluid_hot", amount=10}
}, },
result_count = 1, result_count = 1,
energy_required = 3, energy_required = 3,
@ -1343,10 +1343,10 @@ data:extend({
category = 'fu_laser_category', category = 'fu_laser_category',
main_product = 'fu_materials_laser_card', main_product = 'fu_materials_laser_card',
ingredients = { ingredients = {
{type="fluid", name="fu_lead_fluid_cold", amount=50} {type="fluid", name="fu_lead_fluid_cold", amount=10}
}, },
results = { results = {
{type="fluid", name="fu_lead_fluid_hot", amount=50}, {type="fluid", name="fu_lead_fluid_hot", amount=10},
{type="item", name="fu_materials_laser_card", amount=1} {type="item", name="fu_materials_laser_card", amount=1}
}, },
energy_required = 1, energy_required = 1,
@ -1359,11 +1359,11 @@ data:extend({
category = 'fu_plasma_category', category = 'fu_plasma_category',
main_product = 'fu_materials_plasma_card', main_product = 'fu_materials_plasma_card',
ingredients = { ingredients = {
{type="fluid", name="fu_lead_fluid_cold", amount=50}, {type="fluid", name="fu_lead_fluid_cold", amount=10},
{type="item", name="stone", amount=10} {type="item", name="stone", amount=10}
}, },
results = { results = {
{type="fluid", name="fu_lead_fluid_hot", amount=50}, {type="fluid", name="fu_lead_fluid_hot", amount=10},
{type="item", name="fu_materials_plasma_card", amount=1} {type="item", name="fu_materials_plasma_card", amount=1}
}, },
energy_required = 1, energy_required = 1,
@ -1376,11 +1376,11 @@ data:extend({
category = 'fu_magnet_category', category = 'fu_magnet_category',
main_product = 'fu_materials_magnet_card', main_product = 'fu_materials_magnet_card',
ingredients = { ingredients = {
{type="fluid", name="fu_lead_fluid_cold", amount=50}, {type="fluid", name="fu_lead_fluid_cold", amount=10},
{type="item", name="fi_materials_neodym", amount=1} {type="item", name="fi_materials_neodym", amount=1}
}, },
results = { results = {
{type="fluid", name="fu_lead_fluid_hot", amount=50}, {type="fluid", name="fu_lead_fluid_hot", amount=10},
{type="item", name="fu_materials_magnet_card", amount=1} {type="item", name="fu_materials_magnet_card", amount=1}
}, },
energy_required = 1, energy_required = 1,

View file

@ -63,7 +63,7 @@ data:extend({
0, 0,
0.8 0.8
}, },
module_slots = 2 module_slots = 6
}, },
--fluid --fluid
fluid_boxes = { fluid_boxes = {

View file

@ -48,6 +48,14 @@ data:extend({
type = 'electric', type = 'electric',
usage_priority = 'secondary-input', usage_priority = 'secondary-input',
}, },
allowed_effects = {"speed", "consumption", "pollution"},
module_specification = {
module_info_icon_shift = {
0,
0.8
},
module_slots = 6
},
energy_usage = '60MW', energy_usage = '60MW',
fluid_boxes = { fluid_boxes = {
{ {

View file

@ -49,6 +49,14 @@ data:extend({
usage_priority = 'secondary-input', usage_priority = 'secondary-input',
}, },
energy_usage = '60MW', energy_usage = '60MW',
allowed_effects = {"speed", "consumption", "pollution"},
module_specification = {
module_info_icon_shift = {
0,
0.8
},
module_slots = 6
},
fluid_boxes = { fluid_boxes = {
{ {

View file

@ -49,6 +49,14 @@ data:extend({
usage_priority = 'secondary-input', usage_priority = 'secondary-input',
}, },
energy_usage = '60MW', energy_usage = '60MW',
allowed_effects = {"speed", "consumption", "pollution"},
module_specification = {
module_info_icon_shift = {
0,
0.8
},
module_slots = 6
},
fluid_boxes = { fluid_boxes = {
{ {

View file

@ -758,12 +758,12 @@ data:extend({
category = 'fu_magnet_category', category = 'fu_magnet_category',
main_product = 'gr_materials_magnet', main_product = 'gr_materials_magnet',
ingredients = { ingredients = {
{type="fluid", name="fu_lead_fluid_cold", amount=50}, {type="fluid", name="fu_lead_fluid_cold", amount=10},
{type="item", name="gr_materials_plasma_cube", amount=2}, {type="item", name="gr_materials_plasma_cube", amount=2},
{type="item", name="fu_materials_magnet", amount=1}, {type="item", name="fu_materials_magnet", amount=1},
}, },
results = { results = {
{type="fluid", name="fu_lead_fluid_hot", amount=50}, {type="fluid", name="fu_lead_fluid_hot", amount=10},
{type="item", name="gr_materials_magnet", amount=1}, {type="item", name="gr_materials_magnet", amount=1},
}, },
energy_required = 2, energy_required = 2,
@ -777,12 +777,12 @@ data:extend({
category = 'fu_plasma_category', category = 'fu_plasma_category',
main_product = 'gr_materials_plasma_cube', main_product = 'gr_materials_plasma_cube',
ingredients = { ingredients = {
{type="fluid", name="fu_lead_fluid_cold", amount=50}, {type="fluid", name="fu_lead_fluid_cold", amount=10},
{type="item", name="fu_materials_KFK", amount=2}, {type="item", name="fu_materials_KFK", amount=2},
{type="item", name="fi_materials_gold", amount=1}, {type="item", name="fi_materials_gold", amount=1},
}, },
results = { results = {
{type="fluid", name="fu_lead_fluid_hot", amount=50}, {type="fluid", name="fu_lead_fluid_hot", amount=10},
{type="item", name="gr_materials_plasma_cube", amount=1}, {type="item", name="gr_materials_plasma_cube", amount=1},
}, },
energy_required = 2, energy_required = 2,

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB