mirror of
https://github.com/PHIDIAS0303/factorio-mod-PHI.git
synced 2026-05-13 05:08:44 +09:00
@@ -121,7 +121,7 @@ for _, v in pairs(data.raw.fluid) do
|
|||||||
data:extend({{
|
data:extend({{
|
||||||
type = 'recipe',
|
type = 'recipe',
|
||||||
name = 'pump-' .. v.name,
|
name = 'pump-' .. v.name,
|
||||||
category = 'fluid',
|
category = 'super-pump-fluid',
|
||||||
energy_required = 1,
|
energy_required = 1,
|
||||||
enabled = false,
|
enabled = false,
|
||||||
ingredients = {},
|
ingredients = {},
|
||||||
|
|||||||
@@ -42,9 +42,10 @@ data.raw['module']['efficiency-module-3'].effect.consumption = math.min(-0.9, da
|
|||||||
data.raw.recipe['landfill'].ingredients[1].amount = math.min(20, data.raw.recipe['landfill'].ingredients[1].amount)
|
data.raw.recipe['landfill'].ingredients[1].amount = math.min(20, data.raw.recipe['landfill'].ingredients[1].amount)
|
||||||
data.raw.recipe['selector-combinator'].ingredients = {{type = 'item', name = 'advanced-circuit', amount = 5}, {type = 'item', name = 'decider-combinator', amount = 2}}
|
data.raw.recipe['selector-combinator'].ingredients = {{type = 'item', name = 'advanced-circuit', amount = 5}, {type = 'item', name = 'decider-combinator', amount = 2}}
|
||||||
|
|
||||||
|
-- MIG A 1 BASE RECIPE_CATEGORY
|
||||||
|
data:extend({{type='recipe-category', name='super-pump-fluid'}})
|
||||||
|
|
||||||
data:extend({{type='recipe-category', name='fluid'}})
|
-- MIG C 2 BASE ENTITY
|
||||||
|
|
||||||
for _, v in pairs(data.raw['valve']) do
|
for _, v in pairs(data.raw['valve']) do
|
||||||
v.hidden = false
|
v.hidden = false
|
||||||
data.raw.item[v.name].hidden = false
|
data.raw.item[v.name].hidden = false
|
||||||
@@ -83,7 +84,7 @@ if data.raw['offshore-pump']['offshore-pump'] then
|
|||||||
entity.name = item.name
|
entity.name = item.name
|
||||||
entity.minable.result = item.name
|
entity.minable.result = item.name
|
||||||
entity.type = 'assembling-machine'
|
entity.type = 'assembling-machine'
|
||||||
entity.crafting_categories = {'fluid'}
|
entity.crafting_categories = {'super-pump-fluid'}
|
||||||
entity.crafting_speed = 1
|
entity.crafting_speed = 1
|
||||||
entity.energy_source = {type = 'void'}
|
entity.energy_source = {type = 'void'}
|
||||||
|
|
||||||
@@ -124,7 +125,7 @@ if data.raw.fluid['water'] then
|
|||||||
data:extend({{
|
data:extend({{
|
||||||
type = 'recipe',
|
type = 'recipe',
|
||||||
name = 'pump-water',
|
name = 'pump-water',
|
||||||
category = 'fluid',
|
category = 'super-pump-fluid',
|
||||||
energy_required = 1,
|
energy_required = 1,
|
||||||
enabled = true,
|
enabled = true,
|
||||||
ingredients = {},
|
ingredients = {},
|
||||||
|
|||||||
Reference in New Issue
Block a user