mirror of
https://github.com/PHIDIAS0303/factorio-mod-PHI.git
synced 2026-06-27 05:46:22 +09:00
.
This commit is contained in:
@@ -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',
|
||||
|
||||
@@ -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',
|
||||
|
||||
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user