diff --git a/PHI-CL/data/b/gm-vp-c.lua b/PHI-CL/data/b/gm-vp-c.lua index e607543..1ed26d9 100644 --- a/PHI-CL/data/b/gm-vp-c.lua +++ b/PHI-CL/data/b/gm-vp-c.lua @@ -534,9 +534,6 @@ local items = { ingredients = {{type = 'fluid', name = 'molten-copper', amount = 10, fluidbox_multiplier = 10}}, results = {{type = 'item', name = 'copper-cable', amount = 4}} }, - ['ice-melting'] = { - results = {{type = 'fluid', name = 'water', amount = 10}} - }, }, ['tips_and_tricks_item'] = { 'quality', diff --git a/PHI-CL/data/b/gm-vp.lua b/PHI-CL/data/b/gm-vp.lua index ae9bb2c..b2de982 100644 --- a/PHI-CL/data/b/gm-vp.lua +++ b/PHI-CL/data/b/gm-vp.lua @@ -371,7 +371,7 @@ for _, v in pairs(data.raw.recipe) do end -- 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 if data.raw.recipe[k] then 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 --- FROM ABOVE --- GM-VP C 0 SPACE_AGE RECIPE +-- GM-VP C 1 SPACE_AGE RECIPE if data.raw.recipe['ice-melting'] then 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'].results = {{type = 'fluid', name = 'water', amount = 10}} end -- GM-VP A 1 SPACE_AGE RECIPE @@ -393,7 +394,7 @@ if data.raw.item['ice'] then data:extend({{ type = 'recipe', name = 'ice', - energy_required = 1, + energy_required = 0.5, enabled = true, icon = data.raw.item['ice'].icon, category = 'crafting-with-fluid', diff --git a/PHI-CL/data/b/gm.lua b/PHI-CL/data/b/gm.lua index e74c617..8412921 100644 --- a/PHI-CL/data/b/gm.lua +++ b/PHI-CL/data/b/gm.lua @@ -156,7 +156,7 @@ if data.raw.item['depleted-uranium-fuel-cell'] and data.raw.item['nuclear-fuel'] data:extend({{ type = 'recipe', name = 'empty-train-battery', - energy_required = 30, + energy_required = 20, enabled = true, icon = mod_graphic_location .. 'battery.png', icon_size = 64, @@ -183,7 +183,7 @@ if data.raw.item['depleted-uranium-fuel-cell'] and data.raw.item['nuclear-fuel'] data:extend({{ type = 'recipe', name = 'charged-train-battery', - energy_required = 60, + energy_required = 30, enabled = true, icon = mod_graphic_location .. 'battery.png', icon_size = 64,