chunkkeeper-cd2025/crafting.lua
Apollo d24479f6aa V1.0 Released
Behold the Chunk Keeper works!
2022-08-28 16:44:57 -04:00

20 lines
423 B
Lua

local iron = "default:steel_ingot"
local gold = "defualt:gold_ingot"
local diamond = "default:diamond"
if chunkkeeper.get_game() == "MCL" then
iron = "mcl_core:iron_ingot"
gold = "mcl_core:gold_ingot"
diamond = "mcl_core:diamond"
end
minetest.register_craft({
output = "chunkkeeper:keeper_off",
recipe = {
{"", diamond, ""},
{iron, diamond, iron},
{iron, gold, iron}
}
})