Info.json looks like this when it works:
{
"name": "Raw-materials-easy-mod",
"version": "0.9.3",
"factorio_version": "0.17",
"title": "Raw materials easy mod",
"author": "roi",
"contact": "",
"homepage": "",
"description": "1 Coal to 50 coals. 1 Coal to 50 raw woods. 1 Coal to 50 iron-ore. 1 Coal to 50 copper-ore. 1 Coal to 50 uranium-ore. 1 Coal to 50 stones. 1 Coal to 2000 crude-oil. 1 Coal to 5000 water",
"dependencies": []
}
data.lua:
data:extend(
{
{
type = "recipe",
name = "iron-ore",
category = "crafting",
enabled = true,
energy_required = 1,
ingredients =
{
{type="item", name="coal", amount=1}
},
results=
{
{name="iron-ore", amount=50}
},
icon = "base/graphics/icons/icons-new/iron-ore.png",
icon_size = 32,
},
{
type = "recipe",
name = "copper-ore",
category = "crafting",
enabled = true,
energy_required = 1,
ingredients =
{
{type="item", name="coal", amount=1}
},
results=
{
{ name="copper-ore", amount=50}
},
icon = "base/graphics/icons/icons-new/copper-ore.png",
icon_size = 32,
},
{
type = "recipe",
name = "stone",
category = "crafting",
enabled = true,
energy_required = 1,
ingredients =
{
{type="item", name="coal", amount=1}
},
results=
{
{ name="stone", amount=50}
},
icon = "base/graphics/icons/icons-new/stone.png",
icon_size = 32,
},
{
type = "recipe",
name = "coal",
category = "crafting",
enabled = true,
energy_required = 1,
ingredients =
{
{type="item", name="coal", amount=1}
},
results=
{
{ name="coal", amount=50}
},
icon = "base/graphics/icons/icons-new/coal.png",
icon_size = 32,
},
{
type = "recipe",
name = "uranium-ore",
category = "crafting",
enabled = true,
energy_required = 1,
ingredients =
{
{type="item", name="coal", amount=1}
},
results=
{
{ name="uranium-ore", amount=50}
},
icon = "base/graphics/icons/icons-new/uranium-ore.png",
icon_size = 32,
},
{
type = "recipe",
name = "crude-oil",
category = "crafting-with-fluid",
enabled = true,
energy_required = 5,
ingredients =
{
{type="item", name="coal", amount=1}
},
results=
{
{type="fluid", name="crude-oil", amount=2000}
},
icon = "base/graphics/icons/fluid/crude-oil.png",
icon_size = 32,
order = "a[oil-processing]-a[basic-oil-processing]"
},
{
type = "recipe",
name = "water",
category = "crafting-with-fluid",
enabled = true,
energy_required = 5,
ingredients =
{
{type="item", name="coal", amount=1}
},
results=
{
{type="fluid", name="water", amount=5000}
},
icon = "base/graphics/icons/fluid/water.png",
icon_size = 32,
order = "a[oil-processing]-a[basic-oil-processing]"
}
})