recipe ratios

This commit is contained in:
Brevven 2021-05-30 12:48:04 -07:00
parent 962ade2fde
commit 20ab0d8e48
5 changed files with 18 additions and 11 deletions

View file

@ -1,4 +1,11 @@
--------------------------------------------------------------------------------------------------- ---------------------------------------------------------------------------------------------------
Version: 0.0.15
Date: 2021-05-27
Changes:
- Tweaked tungsten plate and tungsten carbide recipes
Features
- 5dims tungsten carbide recipe
---------------------------------------------------------------------------------------------------
Version: 0.0.14 Version: 0.0.14
Date: 2021-05-26 Date: 2021-05-26
Features: Features:

View file

@ -1,6 +1,6 @@
{ {
"name": "bztungsten", "name": "bztungsten",
"version": "0.0.14", "version": "0.0.15",
"factorio_version": "1.1", "factorio_version": "1.1",
"title": "Tungsten", "title": "Tungsten",
"author": "Brevven", "author": "Brevven",

View file

@ -59,17 +59,17 @@ data:extend({
{ icon = "__bztungsten__/graphics/icons/enriched-tungsten.png", icon_size = 64, scale=0.25, shift= {-8, -8}}, { icon = "__bztungsten__/graphics/icons/enriched-tungsten.png", icon_size = 64, scale=0.25, shift= {-8, -8}},
}, },
category = "smelting", category = "smelting",
energy_required = 16, energy_required = 24,
enabled = false, enabled = false,
always_show_made_in = true, always_show_made_in = true,
always_show_products = true, always_show_products = true,
allow_productivity = true, allow_productivity = true,
ingredients = ingredients =
{ {
{"enriched-tungsten", 5} {"enriched-tungsten", 15}
}, },
result = "tungsten-plate", result = "tungsten-plate",
result_count = 5, result_count = 10,
order = "b[tungsten-plate]-b[enriched-tungsten-plate]" order = "b[tungsten-plate]-b[enriched-tungsten-plate]"
}, },
{ {

View file

@ -20,7 +20,7 @@ if mods["space-exploration"] then
{name = "se-vulcanite-block", amount = 1}, {name = "se-vulcanite-block", amount = 1},
}, },
results = { results = {
{name = util.tungsten_plate, amount = 12}, {name = util.tungsten_plate, amount = 8},
}, },
icons = icons =
{ {
@ -40,16 +40,16 @@ if mods["space-exploration"] then
name = "tungsten-smelting-vulcanite", name = "tungsten-smelting-vulcanite",
category = "smelting", category = "smelting",
order = "d[tungsten-plate]", order = "d[tungsten-plate]",
energy_required = 48, energy_required = 16,
enabled = false, enabled = false,
always_show_made_in = true, always_show_made_in = true,
allow_as_intermediate = false, allow_as_intermediate = false,
ingredients = { ingredients = {
{name = "tungsten-ore", amount = 20}, {name = "tungsten-ore", amount = 16},
{name = "se-vulcanite-block", amount = 1}, {name = "se-vulcanite-block", amount = 1},
}, },
results = { results = {
{name = util.tungsten_plate, amount = 30}, {name = util.tungsten_plate, amount = 12},
}, },
icons = icons =
{ {

View file

@ -24,8 +24,8 @@ data:extend(
normal = (mods["Krastorio2"] and normal = (mods["Krastorio2"] and
{ {
enabled = false, enabled = false,
energy_required = 16, energy_required = 24,
ingredients = {{"tungsten-ore", 10}}, ingredients = {{"tungsten-ore", 15}},
result = util.tungsten_plate, result = util.tungsten_plate,
result_count = 5, result_count = 5,
} or } or
@ -140,7 +140,7 @@ data:extend({
} or } or
{ {
enabled = false, enabled = false,
energy_required = 25.6, energy_required = 64/3,
ingredients = {{"tungsten-plate", 5}}, ingredients = {{"tungsten-plate", 5}},
result = "tungsten-carbide", result = "tungsten-carbide",
result_count = 2, result_count = 2,