Raw materials easy mod

by roi

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

Content
6 years ago
0.15 - 0.16
21
Cheats

g update to 0.17?

5 years ago

Hello,

i love this mod are you going to update this mod for version 0.17?

grz,
nidwid

5 years ago
(updated 5 years ago)

I would also love to see this mod updated to 0.17.

In the meanwhile if you want to hack it to make it work, while waiting for it to be updated, install notepad ++.

Find the mod in C:\Users\YourNameHere\AppData\Roaming\Factorio\mods and unzip it on your desktop.
Using notepad ++
Open info.json and change the version number to 0.9.3 and the factorio version to 0.17
Open the data.lua and remove the raw wood section, starting at { and ending at },
(Its about 5 - 8 lines or so)
Save both files and rezip the file as Raw-materials-easy-mod_0.9.3.zip
Copy it back into the folder and delete 0.9.2

I probably butchered it and it can no longer create wood, but it least its a workaround until the mod gets updated. Hope it does, its fun to play with.

5 years ago

don't work at your advice :(

4 years ago

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]"
}
})

4 years ago

Change raw-wood in wood. That works.

type = "recipe",
name = "wood",
category = "crafting",
enabled = true,
energy_required = 1,
ingredients =
{
{type="item", name="coal", amount=1}
},
results=
{
{ name="wood", amount=50}
},
icon = "base/graphics/icons/wood.png",
icon_size = 32,

New response