Upgrades (Request)

This is the place to request new mods or give ideas about what could be done.
Post Reply
Mecejide
Fast Inserter
Fast Inserter
Posts: 170
Joined: Mon Sep 23, 2019 8:12 pm
Contact:

Upgrades (Request)

Post by Mecejide »

A mod that makes the following changes to recipes
Burner Inserter+Electronic Circuit->Inserter
Burner Mining Drill+Electronic Circuit->Electric Mining Drill
Stone Furnace+Steel Plate-+Stone Brick->Steel Furnace
Steel Furnace+Advanced Circuit->Electric Furnace
Boiler+Heat Pipe->Heat Exchanger
Steam Engine+Copper Plate+Steel Plate->Steam Turbine

User avatar
darkfrei
Smart Inserter
Smart Inserter
Posts: 2903
Joined: Thu Nov 20, 2014 11:11 pm
Contact:

Re: Upgrades (Request)

Post by darkfrei »

Just place this code to the data.lua in your new mod folder:

Code: Select all

data:extend(
{
  { -- Burner Inserter+Electronic Circuit->Inserter
    type = "recipe",
    name = "upgrade-burner-inserter-to-inseter",
    ingredients = {{"burner-inserter", 1}, {'electronic-circuit', 1}},
    result = "inserter"
  },
  { -- Burner Mining Drill+Electronic Circuit->Electric Mining Drill
    type = "recipe",
    name = "upgrade-burner-mining-drill-to-electric-mining-drill",
    ingredients = {{"burner-mining-drill", 1}, {'electronic-circuit', 3}},
    result = "electric-mining-drill"
  },
  { -- Stone Furnace+Steel Plate+Stone Brick->Steel Furnace
    type = "recipe",
    name = "upgrade-stone-furnace-to-steel-furnace",
    ingredients = {{"stone-furnace", 1}, {'steel-plate', 6}, {'stone-brick', 9}},
    result = "steel-furnace"
  },
  { -- Steel Furnace+Advanced Circuit->Electric Furnace
    type = "recipe",
    name = "upgrade-steel-furnace-to-electric-furnace",
    ingredients = {{"steel-furnace", 1}, {'advanced-circuit', 5}, {'steel-plate', 4}},
    result = "electric-furnace"
  },
  { -- Boiler+Heat Pipe->Heat Exchanger
    type = "recipe",
    name = "upgrade-boiler-to-heat-exchanger",
    ingredients = {{"boiler", 1}, {'heat-pipe', 1}, {'copper-plate', 80}, {'steel-plate', 1}},
    result = "heat-exchanger"
  },
  { -- Steam Engine+Copper Plate+Steel Plate->Steam Turbine
    type = "recipe",
    name = "upgrade-steam-engine-to-steam-turbine",
    ingredients = {{"steam-engine", 1}, {'copper-plate', 50}, {'steel-plate', 18}},
    result = "steam-turbine"
  }
}
)
-- UPD: small balance changings
and set up the info.json https://wiki.factorio.com/Tutorial:Mod_ ... #info.json
Attachments
2020-01-18T21_45_24-Window.png
2020-01-18T21_45_24-Window.png (54.85 KiB) Viewed 591 times

Post Reply

Return to “Ideas and Requests For Mods”