base improvements for Krastorio2

This commit is contained in:
Brevven 2020-09-13 05:16:35 -07:00
parent 01a459b800
commit ab36b75b7b
9 changed files with 149 additions and 31 deletions

View file

@ -5,20 +5,31 @@ data:extend(
type = "recipe",
name = "titanium-plate",
category = "smelting",
normal =
{
enabled = false,
energy_required = 8,
ingredients = {{"titanium-ore", 5}},
result = "titanium-plate"
},
expensive =
{
enabled = false,
energy_required = 16,
ingredients = {{"titanium-ore", 10}},
result = "titanium-plate"
}
icons = (mods["Krastorio2"] and
{
{ icon = "__bztitanium__/graphics/icons/titanium-plate.png", icon_size = 32 },
{ icon = "__bztitanium__/graphics/icons/titanium-ore.png", icon_size = 32, scale=0.5, shift= {-8, -8}},
} or nil),
normal = (mods["Krastorio2"] and
{
enabled = false,
energy_required = 16,
ingredients = {{"titanium-ore", 10}},
results = {{type="item", name="titanium-plate", amount_min=2, amount_max=3}},
} or
{
enabled = false,
energy_required = 8,
ingredients = {{"titanium-ore", 5}},
result = "titanium-plate"
}),
expensive =
{
enabled = false,
energy_required = 16,
ingredients = {{"titanium-ore", 10}},
result = "titanium-plate"
}
},
{
type = "item",
@ -27,7 +38,7 @@ data:extend(
icon_size = 32,
subgroup = "raw-material",
order = "b[titanium-plate]",
stack_size = 100
stack_size = (mods["Krastorio2"] and 200 or 100)
},
{
type = "technology",
@ -45,15 +56,15 @@ data:extend(
{
count = 75,
ingredients = (mods["Pre0-17-60Oil"] and
{
{"automation-science-pack", 1},
{"logistic-science-pack", 1}
} or
{
{"automation-science-pack", 1},
{"logistic-science-pack", 1},
{"chemical-science-pack", 1}
}),
{
{"automation-science-pack", 1},
{"logistic-science-pack", 1}
} or
{
{"automation-science-pack", 1},
{"logistic-science-pack", 1},
{"chemical-science-pack", 1}
}),
time = 30
},
prerequisites = {"lubricant"},
@ -61,5 +72,3 @@ data:extend(
},
}
)