Item Upgrades

by TKM

Adds upgrade recipes for many items (e.g. Wood chest -> Iron chest). Works with bobs and angels. Can be added to existing save.

3 years ago
0.14 - 1.1
2.30K

i Upgrade Steel Furnace to Electric Furnace

4 years ago

Would you consider pudding in a recipe to craft electric furnace out of steel furnace?
here is the source code I made and tested

-- electric furnace
local furnace_upgrade = util.table.deepcopy(data.raw.recipe["electric-furnace"])
furnace_upgrade.name = "tkm-electric-furnace-upgrade"
furnace_upgrade.subgroup = "item-upgrades-production"
furnace_upgrade.order = "d"
furnace_upgrade.allow_as_intermediate = false
furnace_upgrade.ingredients = {
{"steel-furnace", 1},
{"steel-plate", 4},
{"advanced-circuit", 5}}
data:extend{furnace_upgrade}
table.insert(data.raw["technology"]["advanced-material-processing-2"].effects, {type = "unlock-recipe",recipe = "tkm-electric-furnace-upgrade"})

4 years ago

I added it.
I increased cost of what you suggested by 2 bricks and 2 steel plate, since the idea is that some of the material is lost in deconstruction. Also I don't want it to be cheaper or easier to craft the better item using my recipe. The idea of the mod is just so you don't waste old materials.

This thread has been locked.