This commit is contained in:
2026-06-03 19:56:40 +09:00
parent 12d4041a89
commit 80c0ac1b64
3 changed files with 7 additions and 9 deletions
-3
View File
@@ -534,9 +534,6 @@ local items = {
ingredients = {{type = 'fluid', name = 'molten-copper', amount = 10, fluidbox_multiplier = 10}}, ingredients = {{type = 'fluid', name = 'molten-copper', amount = 10, fluidbox_multiplier = 10}},
results = {{type = 'item', name = 'copper-cable', amount = 4}} results = {{type = 'item', name = 'copper-cable', amount = 4}}
}, },
['ice-melting'] = {
results = {{type = 'fluid', name = 'water', amount = 10}}
},
}, },
['tips_and_tricks_item'] = { ['tips_and_tricks_item'] = {
'quality', 'quality',
+5 -4
View File
@@ -371,7 +371,7 @@ for _, v in pairs(data.raw.recipe) do
end end
-- GM-VP C 12 BASE RECIPE -- GM-VP C 12 BASE RECIPE
-- GM-VP C 37 SPACE_AGE RECIPE -- GM-VP C 36 SPACE_AGE RECIPE
for k, v in pairs(items['recipe_reform']) do for k, v in pairs(items['recipe_reform']) do
if data.raw.recipe[k] then if data.raw.recipe[k] then
data.raw.recipe[k].category = (v.category and v.category) or data.raw.recipe[k].category data.raw.recipe[k].category = (v.category and v.category) or data.raw.recipe[k].category
@@ -381,11 +381,12 @@ for k, v in pairs(items['recipe_reform']) do
end end
end end
-- FROM ABOVE -- GM-VP C 1 SPACE_AGE RECIPE
-- GM-VP C 0 SPACE_AGE RECIPE
if data.raw.recipe['ice-melting'] then if data.raw.recipe['ice-melting'] then
data.raw.recipe['ice-melting'].enabled = true data.raw.recipe['ice-melting'].enabled = true
data.raw.recipe['ice-melting'].energy_required = 0.5
data.raw.recipe['ice-melting'].allow_productivity = false data.raw.recipe['ice-melting'].allow_productivity = false
data.raw.recipe['ice-melting'].results = {{type = 'fluid', name = 'water', amount = 10}}
end end
-- GM-VP A 1 SPACE_AGE RECIPE -- GM-VP A 1 SPACE_AGE RECIPE
@@ -393,7 +394,7 @@ if data.raw.item['ice'] then
data:extend({{ data:extend({{
type = 'recipe', type = 'recipe',
name = 'ice', name = 'ice',
energy_required = 1, energy_required = 0.5,
enabled = true, enabled = true,
icon = data.raw.item['ice'].icon, icon = data.raw.item['ice'].icon,
category = 'crafting-with-fluid', category = 'crafting-with-fluid',
+2 -2
View File
@@ -156,7 +156,7 @@ if data.raw.item['depleted-uranium-fuel-cell'] and data.raw.item['nuclear-fuel']
data:extend({{ data:extend({{
type = 'recipe', type = 'recipe',
name = 'empty-train-battery', name = 'empty-train-battery',
energy_required = 30, energy_required = 20,
enabled = true, enabled = true,
icon = mod_graphic_location .. 'battery.png', icon = mod_graphic_location .. 'battery.png',
icon_size = 64, icon_size = 64,
@@ -183,7 +183,7 @@ if data.raw.item['depleted-uranium-fuel-cell'] and data.raw.item['nuclear-fuel']
data:extend({{ data:extend({{
type = 'recipe', type = 'recipe',
name = 'charged-train-battery', name = 'charged-train-battery',
energy_required = 60, energy_required = 30,
enabled = true, enabled = true,
icon = mod_graphic_location .. 'battery.png', icon = mod_graphic_location .. 'battery.png',
icon_size = 64, icon_size = 64,