SlowMining 0.0.1 (11.16)
Posted: Sat Mar 07, 2015 7:56 pm
This tiny mod changes the electric drill to reduce mining speed and power consumption by a factor of ten. It leads to an interesting playthrough. Rather than mining an area out and moving on, you have to keep expanding to provide a rate of resource production that is what you need. Most resource deposits (on normal settings) will still be producing at end-game, and you'll have a thousand-ish drills running at end game (I had 840 and it wasn't enough). Have fun!
The main code for this mod is simply:
So it's easy to change if 10x is too much or too little.
FYI: here is the original thread in game balance: https://forums.factorio.com/forum/vie ... =16&t=8983
The main code for this mod is simply:
Code: Select all
-- Adjust mining drills
print(data.raw["mining-drill"]["basic-mining-drill"].mining_speed)
data.raw["mining-drill"]["basic-mining-drill"].mining_speed = 0.05
data.raw["mining-drill"]["basic-mining-drill"].energy_usage = "9kW"
print(data.raw["mining-drill"]["burner-mining-drill"].mining_speed)
data.raw["mining-drill"]["burner-mining-drill"].mining_speed = 0.035
data.raw["mining-drill"]["burner-mining-drill"].energy_usage = "30kW"
FYI: here is the original thread in game balance: https://forums.factorio.com/forum/vie ... =16&t=8983