Mod request: change to steel and electric furnace

This is the place to request new mods or give ideas about what could be done.
User avatar
thereaverofdarkness
Filter Inserter
Filter Inserter
Posts: 561
Joined: Wed Jun 01, 2016 5:07 am
Contact:

Mod request: change to steel and electric furnace

Post by thereaverofdarkness »

I am interested in a mod that makes the following changes:

Stone Furnace: add 1 module slot (still 180kW power consumption, crafting speed remains 1)

Steel Furnace: change to 360kW power consumption and add 2 module slots (crafting speed remains 2)

Electric Furnace: power consumption raised to 270kW, crafting speed raised to 3, increased to 3 module slots

Small Electric Furnace added which has: 2x2 size, power consumption 180kW, crafting speed 2, 2 module slots (same as vanilla electric furnace)
- Small electric furnace is unlocked alongside electric furnace with Advanced Material Processing 2.
NeXuS
Inserter
Inserter
Posts: 22
Joined: Wed Nov 22, 2017 7:32 am
Contact:

Re: Mod request: change to steel and electric furnace

Post by NeXuS »

You can easily do this on your own, by having a closer look to the modding tutorials in the wiki.

There is not much magic in your request. ;)
User avatar
thereaverofdarkness
Filter Inserter
Filter Inserter
Posts: 561
Joined: Wed Jun 01, 2016 5:07 am
Contact:

Re: Mod request: change to steel and electric furnace

Post by thereaverofdarkness »

I didn't know there were modding tutorials in the wiki. Thanks, I will check that out.
User avatar
darkfrei
Smart Inserter
Smart Inserter
Posts: 2905
Joined: Thu Nov 20, 2014 11:11 pm
Contact:

Re: Mod request: change to steel and electric furnace

Post by darkfrei »

Use this tool:
viewtopic.php?f=135&t=45107#p259924

After game is started, open log file with notepad++
Find this element:

Code: Select all

data.raw.furnace["stone-furnace"]
And just change/add what you want, it's literally:

Code: Select all

data.raw.furnace["stone-furnace"].energy_usage = "180kW" 
data.raw.furnace["stone-furnace"].crafting_speed = 1
data.raw.furnace["stone-furnace"].module_specification = {module_slots = 1}
Just insert this code to data.lua in your mod folder.

The same for steel furnace:

Code: Select all

data.raw.furnace["steel-furnace"].energy_usage = "360kW" 
data.raw.furnace["steel-furnace"].crafting_speed = 2
data.raw.furnace["steel-furnace"].module_specification = {module_slots = 2, module_info_icon_shift= {0, 0.8 }}
Post Reply

Return to “Ideas and Requests For Mods”