Skip to content

Commit

Permalink
version 0.2.0: update to factorio 0.17
Browse files Browse the repository at this point in the history
  • Loading branch information
r41d committed Mar 7, 2019
1 parent 7109628 commit 219f53d
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 12 deletions.
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ Factorio Mod which adds a double furnace to the game.
A double furnace looks similar to an electric furnace (but it's green)
and it can smelt iron ore directly to steel (but can't smelt anything else).

# Installation from Factorio Mod Portal
Please go to https://mods.factorio.com/mod/DoubleFurnace

# Installation from GitHub
Download the zip from GitHub and unzip it in your Factorio mods folder.
The unpacked folder will most probably have the name "DoubleFurnace-master".
Expand All @@ -14,6 +17,9 @@ GNU GPLv3

# Changelog

## 0.2.0
- Update to Factorio 0.17

## 0.1.9
- Reduced pollution (still higher than original Electric Furnace)

Expand Down Expand Up @@ -43,3 +49,4 @@ GNU GPLv3

## 0.1.0
- First version

6 changes: 3 additions & 3 deletions info.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{
"name": "DoubleFurnace",
"version": "0.1.9",
"version": "0.2.0",
"title": "Double Furnace",
"author": "raid",
"contact": "mod@hackmate.de",
"homepage": "https://mods.factorio.com/mods/raid/DoubleFurnace",
"factorio_version": "0.16",
"dependencies": ["base >= 0.16.0"],
"factorio_version": "0.17",
"dependencies": ["base >= 0.17.0"],
"description": "Add a Double Furnace, which smelts iron ore directly to steel."
}

8 changes: 4 additions & 4 deletions prototypes/entity.lua
Original file line number Diff line number Diff line change
Expand Up @@ -36,12 +36,12 @@ data:extend({
vehicle_impact_sound = { filename = "__base__/sound/car-metal-impact.ogg", volume = 0.65 },
working_sound = {
sound = {
filename = "__base__/sound/electric-furnace.ogg",
volume = 0.7
filename = "__base__/sound/electric-furnace.ogg", -- same sound
volume = 0.8 -- but louder ;)
},
apparent_volume = 1.5
},
animation = {
animation = { -- pretty much the same as electric-furnace, just other graphics
layers = {
{
filename = "__DoubleFurnace__/graphics/entity/double-furnace/double-furnace-base.png",
Expand Down Expand Up @@ -81,7 +81,7 @@ data:extend({
}
}
},
working_visualisations = {
working_visualisations = { -- pretty much the same as electric-furnace, just other graphics
{
animation = {
filename = "__DoubleFurnace__/graphics/entity/double-furnace/double-furnace-heater.png",
Expand Down
1 change: 0 additions & 1 deletion prototypes/item.lua
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ data:extend({
name = "double-furnace",
icon = "__DoubleFurnace__/graphics/icons/double-furnace.png",
icon_size = 32,
flags = {"goes-to-quickbar"},
subgroup = "smelting-machine",
order = "d[double-furnace]",
place_result = "double-furnace",
Expand Down
8 changes: 4 additions & 4 deletions prototypes/technology.lua
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@ data:extend({
unit = {
count = 100,
ingredients = {
{"science-pack-1", 1},
{"science-pack-2", 1},
{"science-pack-3", 1},
{"automation-science-pack", 1}, -- the old "science-pack-1"
{"logistic-science-pack", 1}, -- the old "science-pack-2"
{"production-science-pack", 1}, -- this just makes sense for a furnace
},
time = 30
},
order = "c-c-b-a"
order = "c-c-b-a" -- advanced-material-processing-2 has "c-c-b", so this should be alright
}

})
Expand Down

0 comments on commit 219f53d

Please sign in to comment.