Restructure repository

This commit is contained in:
Simon Brodtmann 2025-10-20 10:00:44 +02:00
parent eac0727ab6
commit e6daa69ccd
116 changed files with 3 additions and 45 deletions

View file

@ -1,22 +0,0 @@
local util = require("__bzlead__.data-util");
local items = {"concrete", "refined-concrete", "stone-brick", "stone-wall"}
local colors = {
"acid", "black", "blue", "brown", "cyan", "green",
"orange", "pink", "purple", "red", "white", "yellow"
}
for i, item in pairs(items) do
for j, color in pairs(colors) do
if data.raw.recipe[item.."-"..color] then
util.add_ingredient(item.."-"..color, "lead-plate", 1)
end
if data.raw.recipe[color.."-"..item] then
util.add_ingredient(color.."-"..item, "lead-plate", 1)
end
end
end