info.json:
Code: Select all
{
"name": "plastronics",
"version": "1.0",
"title": "Plastronics",
"author": "Raisinbat",
"factorio_version": "0.16",
"description": "Adds a second recipe for making electronics with plastic instead of iron."
}
in same folder is prototypes/recipes.lua:
Code: Select all
data:extend(
{
{
type = "recipe",
name = "plastic-electronic-circuit",
normal =
{
ingredients =
{
{"plastic-bar", 1},
{"copper-cable", 3}
},
result = "electronic-circuit",
},
expensive =
{
ingredients =
{
{"plastic-bar", 2},
{"copper-cable", 10}
},
result = "electronic-circuit",
}
}
}