the big furnace compatibility
This commit is contained in:
parent
6fbd0e5a2b
commit
f952c4b772
3 changed files with 33 additions and 2 deletions
|
|
@ -1,4 +1,9 @@
|
|||
---------------------------------------------------------------------------------------------------
|
||||
Version: 0.9.17
|
||||
Date: 2021-03-06
|
||||
Features:
|
||||
- The Big Furnace recipe
|
||||
---------------------------------------------------------------------------------------------------
|
||||
Version: 0.9.16
|
||||
Date: 2021-02-12
|
||||
Fixes:
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "bztitanium",
|
||||
"version": "0.9.16",
|
||||
"version": "0.9.17",
|
||||
"factorio_version": "1.1",
|
||||
"title": "Titanium",
|
||||
"author": "Brevven",
|
||||
|
|
|
|||
|
|
@ -71,7 +71,11 @@ data:extend(
|
|||
{
|
||||
type = "unlock-recipe",
|
||||
recipe = util.titanium_plate
|
||||
}
|
||||
},
|
||||
mods["TheBigFurnace"] and {
|
||||
type = "unlock-recipe",
|
||||
recipe = "big-titanium-plate",
|
||||
} or nil,
|
||||
},
|
||||
unit =
|
||||
{
|
||||
|
|
@ -91,6 +95,28 @@ data:extend(
|
|||
prerequisites = {"lubricant"},
|
||||
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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue