Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 15 additions & 1 deletion prototypes/buildings/advanced-foundry.lua
Original file line number Diff line number Diff line change
Expand Up @@ -178,12 +178,18 @@ RECIPE {
{type = "item", name = "electric-engine-unit", amount = 4},
{type = "item", name = "titanium-plate", amount = 10},
{type = "item", name = "super-steel", amount = 20},
{type = "item", name = "nbti-alloy", amount = 20},
{type = "item", name = "py-heat-exchanger", amount = 1},
},
results = {
{type = "item", name = "advanced-foundry-mk03", amount = 1}
}
}

if mods.pyhightech then
RECIPE("advanced-foundry-mk03"):add_ingredient_unsafe {type = "item", name = "paramagnetic-material", amount = 20}:add_ingredient_unsafe {type = "item", name = "harmonic-absorber", amount = 15}
end

RECIPE {
type = "recipe",
name = "advanced-foundry-mk04",
Expand All @@ -193,9 +199,17 @@ RECIPE {
{type = "item", name = "advanced-foundry-mk03", amount = 1},
{type = "item", name = "low-density-structure", amount = 20},
{type = "item", name = "nbfe-alloy", amount = 10},
{type = "item", name = "lead-plate", amount = 40}
{type = "item", name = "lead-plate", amount = 40},
{type = "item", name = "super-alloy", amount = 30},
{type = "item", name = "wall-shield", amount = 5},
{type = "item", name = "science-coating", amount = 2},
{type = "item", name = "control-unit", amount = 5}
},
results = {
{type = "item", name = "advanced-foundry-mk04", amount = 1}
}
}

if mods.pyhightech then
RECIPE("advanced-foundry-mk04"):replace_ingredient_unsafe("control-unit", "intelligent-unit"):add_ingredient_unsafe {type = "item", name = "superconductor-servomechanims", amount = 6}:add_ingredient_unsafe {type = "item", name = "pi-josephson-junction", amount = 4}
end
20 changes: 19 additions & 1 deletion prototypes/buildings/automated-factory.lua
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,10 @@ if mods["pyrawores"] then
RECIPE("automated-factory-mk01"):replace_ingredient("advanced-circuit", "electronic-circuit"):remove_unlock("advanced-circuit"):add_unlock("fast-inserter")
end

if mods.pyhightech then
RECIPE("automated-factory-mk01"):replace_ingredient("advanced-circuit", "electronic-circuit")
end

for i = 1, 4 do
if not mods.pyrawores and i == 2 then return end

Expand Down Expand Up @@ -163,13 +167,19 @@ RECIPE {
{type = "item", name = "niobium-plate", amount = 25},
{type = "item", name = "processing-unit", amount = 10},
{type = "item", name = "titanium-plate", amount = 30},
{type = "item", name = "super-steel", amount = 30}
{type = "item", name = "super-steel", amount = 30},
{type = "item", name = "nbti-alloy", amount = 20},
{type = "item", name = "py-heat-exchanger", amount = 1}
},
results = {
{type = "item", name = "automated-factory-mk03", amount = 1}
}
}

if mods.pyhightech then
RECIPE("automated-factory-mk03"):add_ingredient_unsafe {type = "item", name = "paramagnetic-material", amount = 25}:add_ingredient_unsafe {type = "item", name = "volumetric-capacitor", amount = 10}:add_ingredient_unsafe {type = "item", name = "biopolymer", amount = 10}
end

RECIPE {
type = "recipe",
name = "automated-factory-mk04",
Expand All @@ -180,9 +190,17 @@ RECIPE {
{type = "item", name = "low-density-structure", amount = 10},
{type = "item", name = "nbfe-alloy", amount = 10},
{type = "item", name = "lead-plate", amount = 10},
{type = "item", name = "super-alloy", amount = 30},
{type = "item", name = "wall-shield", amount = 5},
{type = "item", name = "science-coating", amount = 2},
{type = "item", name = "control-unit", amount = 5}

},
results = {
{type = "item", name = "automated-factory-mk04", amount = 1}
}
}

if mods.pyhightech then
RECIPE("automated-factory-mk04"):replace_ingredient_unsafe("control-unit", "intelligent-unit"):add_ingredient_unsafe {type = "item", name = "superconductor-servomechanims", amount = 5}:add_ingredient_unsafe {type = "item", name = "quantum-vortex-storage-system", amount = 4}
end
26 changes: 22 additions & 4 deletions prototypes/buildings/ball-mill.lua
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,10 @@ if mods.pyrawores then
RECIPE("ball-mill-mk01"):add_ingredient_unsafe {type = "item", name = "py-asphalt", amount = 50}
end

if mods.pyhightech then
RECIPE("ball-mill-mk01"):remove_ingredient("py-asphalt"):add_ingredient {type = "item", name = "electronic-circuit", amount = 10}
end

for i = 1, 4 do
if not mods.pyrawores and i == 2 then return end

Expand Down Expand Up @@ -127,24 +131,38 @@ RECIPE {
{type = "item", name = "processing-unit", amount = 10},
{type = "item", name = "titanium-plate", amount = 50},
{type = "item", name = "super-steel", amount = 15},
{type = "item", name = "nbti-alloy", amount = 10},
{type = "item", name = "agitator-mk01", amount = 1},
},
results = {
{type = "item", name = "ball-mill-mk03", amount = 1}
}
}

if mods.pyhightech then
RECIPE("ball-mill-mk03"):add_ingredient_unsafe {type = "item", name = "heavy-fermion", amount = 40}:add_ingredient_unsafe {type = "item", name = "re-magnet", amount = 30}:add_ingredient_unsafe {type = "item", name = "harmonic-absorber", amount = 10}
end

RECIPE {
type = "recipe",
name = "ball-mill-mk04",
energy_required = 0.5,
enabled = false,
ingredients = {
{type = "item", name = "ball-mill-mk03", amount = 1},
{type = "item", name = "concrete", amount = 35},
{type = "item", name = "nbfe-alloy", amount = 10},
{type = "item", name = "lead-plate", amount = 30},
{type = "item", name = "ball-mill-mk03", amount = 1},
{type = "item", name = "concrete", amount = 35},
{type = "item", name = "nbfe-alloy", amount = 10},
{type = "item", name = "lead-plate", amount = 30},
{type = "item", name = "super-alloy", amount = 20},
{type = "item", name = "boron-carbide", amount = 30},
{type = "item", name = "science-coating", amount = 1},
{type = "item", name = "control-unit", amount = 5},
},
results = {
{type = "item", name = "ball-mill-mk04", amount = 1}
}
}

if mods.pyhightech then
RECIPE("ball-mill-mk04"):replace_ingredient_unsafe("control-unit", "intelligent-unit"):add_ingredient_unsafe {type = "item", name = "superconductor-servomechanims", amount = 5}:add_ingredient_unsafe {type = "item", name = "nv-center", amount = 2}
end
16 changes: 15 additions & 1 deletion prototypes/buildings/borax-mine.lua
Original file line number Diff line number Diff line change
Expand Up @@ -168,13 +168,19 @@ RECIPE {
{type = "item", name = "electric-engine-unit", amount = 6},
{type = "item", name = "express-transport-belt", amount = 15},
{type = "item", name = "titanium-plate", amount = 40},
{type = "item", name = "super-steel", amount = 30}
{type = "item", name = "super-steel", amount = 30},
{type = "item", name = "nenbit-matrix", amount = 20},
{type = "item", name = "molybdenum-plate", amount = 15}
},
results = {
{type = "item", name = "borax-mine-mk03", amount = 1}
}
}

if mods.pyhightech then
RECIPE("borax-mine-mk03"):add_ingredient_unsafe {type = "item", name = "phosphate-glass", amount = 40}:add_ingredient_unsafe {type = "item", name = "harmonic-absorber", amount = 20}:add_ingredient_unsafe {type = "item", name = "carbon-aerogel", amount = 20}
end

RECIPE {
type = "recipe",
name = "borax-mine-mk04",
Expand All @@ -186,8 +192,16 @@ RECIPE {
{type = "item", name = "nbfe-alloy", amount = 15},
{type = "item", name = "low-density-structure", amount = 10},
{type = "item", name = "lead-plate", amount = 20},
{type = "item", name = "super-alloy", amount = 15},
{type = "item", name = "boron-carbide", amount = 30},
{type = "item", name = "science-coating", amount = 1},
{type = "item", name = "control-unit", amount = 5},
},
results = {
{type = "item", name = "borax-mine-mk04", amount = 1}
}
}

if mods.pyhightech then
RECIPE("borax-mine-mk04"):replace_ingredient_unsafe("control-unit", "intelligent-unit"):add_ingredient_unsafe {type = "item", name = "superconductor-servomechanims", amount = 5}:add_ingredient_unsafe {type = "item", name = "parametric-oscilator", amount = 1}
end
16 changes: 15 additions & 1 deletion prototypes/buildings/botanical-nursery.lua
Original file line number Diff line number Diff line change
Expand Up @@ -182,13 +182,19 @@ RECIPE {
{type = "item", name = "niobium-plate", amount = 40},
{type = "item", name = "kevlar", amount = 15},
{type = "item", name = "titanium-plate", amount = 10},
{type = "item", name = "stainless-steel", amount = 10}
{type = "item", name = "stainless-steel", amount = 10},
{type = "item", name = "nbti-alloy", amount = 10},
{type = "item", name = "nmf-mk01", amount = 1}
},
results = {
{type = "item", name = "botanical-nursery-mk03", amount = 1}
}
}

if mods.pyhightech then
RECIPE("botanical-nursery-mk03"):add_ingredient_unsafe {type = "item", name = "phosphate-glass", amount = 50}:add_ingredient_unsafe {type = "item", name = "biopolymer", amount = 35}:add_ingredient_unsafe {type = "item", name = "aerogel", amount = 15}
end

RECIPE {
type = "recipe",
name = "botanical-nursery-mk04",
Expand All @@ -200,8 +206,16 @@ RECIPE {
{type = "item", name = "nbfe-alloy", amount = 20},
{type = "item", name = "tin-plate", amount = 20},
{type = "item", name = "super-steel", amount = 30},
{type = "item", name = "super-alloy", amount = 10},
{type = "item", name = "boron-carbide", amount = 10},
{type = "item", name = "science-coating", amount = 1},
{type = "item", name = "control-unit", amount = 3},
},
results = {
{type = "item", name = "botanical-nursery-mk04", amount = 1}
}
}

if mods.pyhightech then
RECIPE("botanical-nursery-mk04"):replace_ingredient_unsafe("control-unit", "intelligent-unit"):add_ingredient_unsafe {type = "item", name = "superconductor-servomechanims", amount = 5}:add_ingredient_unsafe {type = "item", name = "hyperelastic-material", amount = 4}
end
13 changes: 13 additions & 0 deletions prototypes/buildings/carbon-filter.lua
Original file line number Diff line number Diff line change
Expand Up @@ -168,12 +168,17 @@ RECIPE {
{type = "item", name = "kevlar", amount = 10},
{type = "item", name = "titanium-plate", amount = 30},
{type = "item", name = "stainless-steel", amount = 15},
{type = "item", name = "nbti-alloy", amount = 15},
},
results = {
{type = "item", name = "carbon-filter-mk03", amount = 1}
}
}

if mods.pyhightech then
RECIPE("carbon-filter-mk03"):add_ingredient_unsafe {type = "item", name = "re-magnet", amount = 30}:add_ingredient_unsafe {type = "item", name = "superconductor", amount = 20}:add_ingredient_unsafe {type = "item", name = "paramagnetic-material", amount = 15}
end

RECIPE {
type = "recipe",
name = "carbon-filter-mk04",
Expand All @@ -185,8 +190,16 @@ RECIPE {
{type = "item", name = "nbfe-alloy", amount = 5},
{type = "item", name = "tin-plate", amount = 30},
{type = "item", name = "super-steel", amount = 20},
{type = "item", name = "super-alloy", amount = 10},
{type = "item", name = "wall-shield", amount = 4},
{type = "item", name = "science-coating", amount = 1},
{type = "item", name = "control-unit", amount = 3}
},
results = {
{type = "item", name = "carbon-filter-mk04", amount = 1}
}
}

if mods.pyhightech then
RECIPE("carbon-filter-mk04"):replace_ingredient_unsafe("control-unit", "intelligent-unit"):add_ingredient_unsafe {type = "item", name = "superconductor-servomechanims", amount = 5}:add_ingredient_unsafe {type = "item", name = "quantum-vortex-storage-system", amount = 2}
end
15 changes: 15 additions & 0 deletions prototypes/buildings/classifier.lua
Original file line number Diff line number Diff line change
Expand Up @@ -138,12 +138,19 @@ RECIPE {
{type = "item", name = "niobium-plate", amount = 10},
{type = "item", name = "titanium-plate", amount = 20},
{type = "item", name = "stainless-steel", amount = 15},
{type = "item", name = "nenbit-matrix", amount = 10},
{type = "item", name = "sc-unit", amount = 1},
{type = "item", name = "boron-carbide", amount = 15},
},
results = {
{type = "item", name = "classifier-mk03", amount = 1}
}
}

if mods.pyhightech then
RECIPE("classifier-mk03"):add_ingredient_unsafe {type = "item", name = "diamagnetic-material", amount = 20}:add_ingredient_unsafe {type = "item", name = "harmonic-absorber", amount = 15}
end

RECIPE {
type = "recipe",
name = "classifier-mk04",
Expand All @@ -154,8 +161,16 @@ RECIPE {
{type = "item", name = "low-density-structure", amount = 5},
{type = "item", name = "nbfe-alloy", amount = 10},
{type = "item", name = "super-steel", amount = 30},
{type = "item", name = "super-alloy", amount = 10},
{type = "item", name = "wall-shield", amount = 2},
{type = "item", name = "science-coating", amount = 1},
{type = "item", name = "control-unit", amount = 5},
},
results = {
{type = "item", name = "classifier-mk04", amount = 1}
}
}

if mods.pyhightech then
RECIPE("classifier-mk04"):replace_ingredient_unsafe("control-unit", "intelligent-unit"):add_ingredient_unsafe {type = "item", name = "superconductor-servomechanims", amount = 5}:add_ingredient_unsafe {type = "item", name = "var-josephson-junction", amount = 2}
end
15 changes: 15 additions & 0 deletions prototypes/buildings/desulfurizator-unit.lua
Original file line number Diff line number Diff line change
Expand Up @@ -164,12 +164,19 @@ RECIPE {
{type = "item", name = "kevlar", amount = 30},
{type = "item", name = "titanium-plate", amount = 40},
{type = "item", name = "stainless-steel", amount = 30},
{type = "item", name = "nbti-alloy", amount = 15},
{type = "item", name = "boron-carbide", amount = 20},
{type = "item", name = "py-heat-exchanger", amount = 1},
},
results = {
{type = "item", name = "desulfurizator-unit-mk03", amount = 1}
}
}

if mods.pyhightech then
RECIPE("desulfurizator-unit-mk03"):add_ingredient_unsafe {type = "item", name = "biopolymer", amount = 15}:add_ingredient_unsafe {type = "item", name = "carbon-aerogel", amount = 20}
end

RECIPE {
type = "recipe",
name = "desulfurizator-unit-mk04",
Expand All @@ -180,8 +187,16 @@ RECIPE {
{type = "item", name = "pump", amount = 4},
{type = "item", name = "nbfe-alloy", amount = 20},
{type = "item", name = "low-density-structure", amount = 10},
{type = "item", name = "super-alloy", amount = 20},
{type = "item", name = "wall-shield", amount = 2},
{type = "item", name = "science-coating", amount = 1},
{type = "item", name = "control-unit", amount = 5},
},
results = {
{type = "item", name = "desulfurizator-unit-mk04", amount = 1}
}
}

if mods.pyhightech then
RECIPE("desulfurizator-unit-mk04"):replace_ingredient_unsafe("control-unit", "intelligent-unit"):add_ingredient_unsafe {type = "item", name = "superconductor-servomechanims", amount = 5}:add_ingredient_unsafe {type = "item", name = "quantum-dots", amount = 5}
end
15 changes: 15 additions & 0 deletions prototypes/buildings/distilator.lua
Original file line number Diff line number Diff line change
Expand Up @@ -240,12 +240,18 @@ RECIPE {
{type = "item", name = "niobium-pipe", amount = 15},
{type = "item", name = "titanium-plate", amount = 10},
{type = "item", name = "super-steel", amount = 30},
{type = "item", name = "nbti-alloy", amount = 15},
{type = "item", name = "sc-unit", amount = 4}
},
results = {
{type = "item", name = "distilator-mk03", amount = 1}
}
}

if mods.pyhightech then
RECIPE("distilator-mk03"):add_ingredient_unsafe {type = "item", name = "phosphate-glass", amount = 15}:add_ingredient_unsafe {type = "item", name = "biopolymer", amount = 10}:add_ingredient_unsafe {type = "item", name = "aerogel", amount = 10}
end

RECIPE {
type = "recipe",
name = "distilator-mk04",
Expand All @@ -256,8 +262,17 @@ RECIPE {
{type = "item", name = "pump", amount = 4},
{type = "item", name = "nbfe-alloy", amount = 15},
{type = "item", name = "lead-plate", amount = 20},
{type = "item", name = "super-alloy", amount = 10},
{type = "item", name = "nbti-alloy", amount = 10},
{type = "item", name = "agzn-alloy", amount = 5},
{type = "item", name = "science-coating", amount = 2},
{type = "item", name = "control-unit", amount = 5}
},
results = {
{type = "item", name = "distilator-mk04", amount = 1}
}
}

if mods.pyhightech then
RECIPE("distilator-mk04"):replace_ingredient_unsafe("control-unit", "intelligent-unit"):add_ingredient_unsafe {type = "item", name = "superconductor-servomechanims", amount = 6}:add_ingredient_unsafe {type = "item", name = "var-josephson-junction", amount = 4}
end
Loading