the big furnace compatibility

This commit is contained in:
Brevven 2021-03-06 23:23:44 -08:00
parent 6fbd0e5a2b
commit f952c4b772
3 changed files with 33 additions and 2 deletions

View file

@ -1,4 +1,9 @@
--------------------------------------------------------------------------------------------------- ---------------------------------------------------------------------------------------------------
Version: 0.9.17
Date: 2021-03-06
Features:
- The Big Furnace recipe
---------------------------------------------------------------------------------------------------
Version: 0.9.16 Version: 0.9.16
Date: 2021-02-12 Date: 2021-02-12
Fixes: Fixes:

View file

@ -1,6 +1,6 @@
{ {
"name": "bztitanium", "name": "bztitanium",
"version": "0.9.16", "version": "0.9.17",
"factorio_version": "1.1", "factorio_version": "1.1",
"title": "Titanium", "title": "Titanium",
"author": "Brevven", "author": "Brevven",

View file

@ -71,7 +71,11 @@ data:extend(
{ {
type = "unlock-recipe", type = "unlock-recipe",
recipe = util.titanium_plate recipe = util.titanium_plate
} },
mods["TheBigFurnace"] and {
type = "unlock-recipe",
recipe = "big-titanium-plate",
} or nil,
}, },
unit = unit =
{ {
@ -91,6 +95,28 @@ data:extend(
prerequisites = {"lubricant"}, prerequisites = {"lubricant"},
order = "b-b" order = "b-b"
}, },
mods["TheBigFurnace"] and {
type = "recipe",
name = "big-titanium-plate",
category = "big-smelting",
order = "d[titanium-plate]",
normal =
{
enabled = false,
energy_required = 8.75,
ingredients = {{"titanium-ore", 50}},
result = util.titanium_plate,
result_count = 10,
},
expensive =
{
enabled = false,
energy_required = 16,
ingredients = {{"titanium-ore", 100}},
result = util.titanium_plate,
result_count = 10,
}
} or nil,
} }
) )
end end