Merge branch 'main' of github.com:brevven/foundry into main

This commit is contained in:
Brevven 2024-02-06 19:20:37 -08:00
commit eec059429f
4 changed files with 39 additions and 6 deletions

View file

@ -1,4 +1,18 @@
--------------------------------------------------------------------------------------------------- ---------------------------------------------------------------------------------------------------
Version: 0.2.13
Date: 2023-12-28
Changes:
- Some recipes moved in crafting menus, they were defaulting to appearing at the top:
- In vanilla: recipes for certain intermediates created in foundries moved after
"raw-material" recipes (such as most plates, etc), and before "intermediate-product"
recipes (eg circuits). There's not a perfect place for this right now, but this seems to be
thematically a decent place to put it.
- In Space Exploration (SE): Similar to above, but after gears, sticks, etc
- In vanilla and SE: recipes for foundry entities moved after furnace entities but before
assemblers. This seems to be the right location, thematically.
Localization:
- ja locale updates thanks to Sakuro
---------------------------------------------------------------------------------------------------
Version: 0.2.12 Version: 0.2.12
Date: 2023-04-18 Date: 2023-04-18
Features: Features:

View file

@ -131,6 +131,13 @@ function util.k2matter(params)
params.k2matter.minimum_conversion_quantity = 10 params.k2matter.minimum_conversion_quantity = 10
end end
if not data.raw.technology[params.k2matter.unlocked_by_technology] then if not data.raw.technology[params.k2matter.unlocked_by_technology] then
local icon = ""
if params.k2baseicon then
icon = util.k2assets().."/technologies/matter-"..params.k2baseicon..".png"
else
icon = util.k2assets().."/technologies/backgrounds/matter.png"
end
data:extend( data:extend(
{ {
{ {
@ -139,7 +146,7 @@ function util.k2matter(params)
icons = icons =
{ {
{ {
icon = util.k2assets().."/technologies/matter-"..params.k2baseicon..".png", icon = icon,
icon_size = 256, icon_size = 256,
}, },
params.icon, params.icon,
@ -148,14 +155,25 @@ function util.k2matter(params)
unit = unit =
{ {
count = 350, count = 350,
ingredients = ingredients = mods["space-exploration"] and
{
{"automation-science-pack", 1},
{"logistic-science-pack", 1},
{"chemical-science-pack", 1},
{"se-astronomic-science-pack-4", 1},
{"se-energy-science-pack-4", 1},
{"se-material-science-pack-4", 1},
{"se-deep-space-science-pack-2", 1},
{"se-kr-matter-science-pack-2", 1},
} or
{ {
{"production-science-pack", 1}, {"production-science-pack", 1},
{"utility-science-pack", 1}, {"utility-science-pack", 1},
{"matter-tech-card", 1} {"matter-tech-card", 1}
}, },
time = 45, time = 45,
} },
localised_name = {"technology-name.k2-conversion", {"item-name."..params.k2matter.item_name}},
}, },
}) })
end end

View file

@ -1,6 +1,6 @@
{ {
"name": "bzfoundry", "name": "bzfoundry",
"version": "0.2.12", "version": "0.2.13",
"factorio_version": "1.1", "factorio_version": "1.1",
"title": "Foundry", "title": "Foundry",
"author": "Brevven", "author": "Brevven",

View file

@ -2,8 +2,9 @@ local util = require("data-util")
data:extend({ data:extend({
{ type = "recipe-category", name = "founding"}, { type = "recipe-category", name = "founding"},
{ type = "item-subgroup", name = "founding-machines", group = "production"}, { type = "item-subgroup", name = "founding-machines", group = "production", order = "d-f"},
{ type = "item-subgroup", name = "foundry-intermediate", group = "intermediate-products"}, { type = "item-subgroup", name = "foundry-intermediate", group = "intermediate-products",
order = util.se6() and "a-b-z" or "c-z"},
}) })
if util.me.basic_founding() then if util.me.basic_founding() then