Compare commits
No commits in common. "8f6d9ad57804d88be2d7e160b7860f54a57f240e" and "0fb68ca15124bbd038ffe36f46ae087fa7b404cb" have entirely different histories.
8f6d9ad578
...
0fb68ca151
7 changed files with 17 additions and 22 deletions
|
@ -1,11 +1,6 @@
|
|||
---------------------------------------------------------------------------------------------------
|
||||
Version: 2.0.2
|
||||
Date: 11.10.2025
|
||||
Bug Fixes:
|
||||
- Increase mod compatibility
|
||||
---------------------------------------------------------------------------------------------------
|
||||
Version: 2.0.1
|
||||
Date: 11.10.2025
|
||||
Date: 10.10.2025
|
||||
Bug Fixes:
|
||||
- Increase mod compatibility
|
||||
---------------------------------------------------------------------------------------------------
|
||||
|
|
|
@ -129,7 +129,7 @@ function util.se_matter(params)
|
|||
{"se-astronomic-science-pack-4", 1},
|
||||
{"se-energy-science-pack-4", 1},
|
||||
{"se-material-science-pack-4", 1},
|
||||
{"kr-matter-tech-card", 1},
|
||||
{"matter-tech-card", 1},
|
||||
{"se-deep-space-science-pack-1", 1},
|
||||
}
|
||||
},
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "Chromium2",
|
||||
"version": "2.0.2",
|
||||
"version": "2.0.1",
|
||||
"factorio_version": "2.0",
|
||||
"title": "Chromium",
|
||||
"author": "Timeken, cackling fiend",
|
||||
|
|
|
@ -36,7 +36,7 @@ data:extend(
|
|||
{
|
||||
{type = "item", name = "enriched-chromium", amount = 6},
|
||||
{type = "item", name = "iron-ore", amount = 1},
|
||||
{type = "fluid", name = "kr-dirty-water", amount = 25, catalyst_amount = 25}
|
||||
{type = "fluid", name = "dirty-water", amount = 25, catalyst_amount = 25}
|
||||
},
|
||||
crafting_machine_tint =
|
||||
{
|
||||
|
@ -67,12 +67,12 @@ data:extend(
|
|||
{
|
||||
type = "recipe",
|
||||
name = "dirty-water-filtration-chromium",
|
||||
category = "kr-fluid-filtration",
|
||||
category = "fluid-filtration",
|
||||
icons =
|
||||
{
|
||||
{
|
||||
icon = data.raw.fluid["kr-dirty-water"].icon,
|
||||
icon_size = data.raw.fluid["kr-dirty-water"].icon_size
|
||||
icon = data.raw.fluid["dirty-water"].icon,
|
||||
icon_size = data.raw.fluid["dirty-water"].icon_size
|
||||
},
|
||||
{
|
||||
icon = data.raw.item["chromite-ore"].icon,
|
||||
|
@ -81,7 +81,7 @@ data:extend(
|
|||
shift = {0, 4}
|
||||
}
|
||||
},
|
||||
icon_size = data.raw.fluid["kr-dirty-water"].icon_size,
|
||||
icon_size = data.raw.fluid["dirty-water"].icon_size,
|
||||
energy_required = 2,
|
||||
enabled = false,
|
||||
allow_as_intermediate = false,
|
||||
|
@ -89,7 +89,7 @@ data:extend(
|
|||
always_show_products = true,
|
||||
ingredients =
|
||||
{
|
||||
{type = "fluid", name = "kr-dirty-water", amount = 100, catalyst_amount = 100},
|
||||
{type = "fluid", name = "dirty-water", amount = 100, catalyst_amount = 100},
|
||||
},
|
||||
results =
|
||||
{
|
||||
|
|
|
@ -27,14 +27,14 @@ if mods["Krastorio2"] then
|
|||
{
|
||||
{ "production-science-pack", 1 },
|
||||
{ "utility-science-pack", 1 },
|
||||
{ "kr-matter-tech-card", 1 }
|
||||
{ "matter-tech-card", 1 }
|
||||
},
|
||||
time = 45
|
||||
}
|
||||
},
|
||||
})
|
||||
|
||||
matter.make_recipes({
|
||||
matter.createMatterRecipe({
|
||||
material = { type = "item", name = "chromite-ore", amount = 10 },
|
||||
matter_count = 5,
|
||||
energy_required = 1,
|
||||
|
@ -42,7 +42,7 @@ if mods["Krastorio2"] then
|
|||
unlocked_by_technology = "chromium-matter-processing"
|
||||
})
|
||||
|
||||
matter.make_recipes({
|
||||
matter.createMatterRecipe({
|
||||
material = { type = "item", name = "chromium-plate", amount = 10 },
|
||||
matter_count = 10,
|
||||
energy_required = 3,
|
||||
|
|
|
@ -50,7 +50,7 @@ if mods["space-exploration"] then
|
|||
},
|
||||
energy_required = 45,
|
||||
ingredients = {
|
||||
{type = "item", name = mods["Krastorio2"] and "enriched-chromium" or "chromite-ore", amount = 24},
|
||||
{name = mods["Krastorio2"] and "enriched-chromium" or "chromite-ore", amount = 24},
|
||||
{type = "fluid", name = "se-pyroflux", amount = 10},
|
||||
},
|
||||
enabled = false,
|
||||
|
@ -81,11 +81,11 @@ if mods["space-exploration"] then
|
|||
{icon = "__Chromium2__/graphics/icons/chromium-ingot.png", icon_size = 32, scale = 0.125, shift = {-8, -8}},
|
||||
},
|
||||
results = {
|
||||
{type="item", name = "chromium-plate", amount = 10},
|
||||
{name = "chromium-plate", amount = 10},
|
||||
},
|
||||
energy_required = 3.75,
|
||||
ingredients = {
|
||||
{type="item", name = "chromium-ingot", amount = 1}
|
||||
{name = "chromium-ingot", amount = 1}
|
||||
},
|
||||
enabled = false,
|
||||
always_show_made_in = true,
|
||||
|
|
|
@ -56,14 +56,14 @@ if mods["Krastorio2"] then
|
|||
{ icon = "__Chromium2__/graphics/icons/chromium-plate.png", icon_size = 64},
|
||||
{ icon = "__Chromium2__/graphics/icons/chromite-ore.png", icon_size = 64, scale=0.125, shift= {-8, -8}}
|
||||
},
|
||||
category = "kr-electrolysis",
|
||||
category = "electrolysis",
|
||||
order = "a[chromium-plate]",
|
||||
energy_required = 25,
|
||||
enabled = false,
|
||||
always_show_made_in = true,
|
||||
ingredients = {
|
||||
{type = "fluid", name = "sulfuric-acid", amount = 25},
|
||||
{type = "fluid", name = "kr-ammonia", amount = 50},
|
||||
{type = "fluid", name = "ammonia", amount = 50},
|
||||
{type = "item", name = "chromite-ore", amount = 20}
|
||||
},
|
||||
results = {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue