I have a recipe called Tree Farming, which is used in a Farm entity - which is based on an assembling machine. It works, but doesn't look like I want. I would like the recipe to look like Basic Oil Processing (see screenshot below). Notice that the oil processing recipe has a "made in" field, which shows in what building it can be made. I've looked at the prototype definitions in the base mod, but could not find where that is defined. My aim is to have the recipe have an abstract name (Tree Farming instead of 5x Tree Farming), a "Products" field and a "made in" field...
Recipe category:
Code: Select all
data:extend({
{
type = "recipe-category",
name = "farming"
}
})
Code: Select all
data:extend({
{
type = "recipe",
name = "tree-farming",
category = "farming",
energy_required = 1,
enabled = true,
ingredients =
{
{type="fluid", name="water", amount=10}
},
results=
{
{type="item", name="raw-wood", amount=5}
},
subgroup = "farming",
enabled="false"
},
})