2024-07-11 18:49:25 -06:00

215 lines
4.9 KiB
Lua

minetest.register_craft({
output = "pyutest_core:stick 4",
recipe = {
{"pyutest_core:wooden_block"},
{"pyutest_core:wooden_block"}
}
})
minetest.register_craft({
output = "pyutest_core:wooden_pickaxe 1",
recipe = {
{"pyutest_core:wooden_block", "pyutest_core:wooden_block", "pyutest_core:wooden_block"},
{"", "pyutest_core:stick", ""},
{"", "pyutest_core:stick", ""}
}
})
-- this recipe makes no sense, but who cares?
minetest.register_craft({
output = "pyutest_core:contagious_acid 3",
recipe = {
"pyutest_core:mushroom_block",
"pyutest_core:mushroom_stem_block",
"pyutest_core:dirt_block",
"pyutest_core:swampy_grass_block"
},
type = "shapeless"
})
minetest.register_craft({
output = "pyutest_core:light 4",
recipe = {
{"pyutest_core:torch", "pyutest_core:torch"},
{"pyutest_core:torch", "pyutest_core:torch"}
}
})
minetest.register_craft({
output = "pyutest_core:tnt 3",
recipe = {
{"pyutest_core:sand_block", "pyutest_core:gunpowder"},
{"pyutest_core:gunpowder", "pyutest_core:sand_block"}
}
})
minetest.register_craft({
output = "pyutest_core:torch 4",
recipe = {
{"pyutest_core:coal_lump"},
{"pyutest_core:stick"}
}
})
minetest.register_craft({
output = "pyutest_core:coin 4",
recipe = {
{"pyutest_core:gold_ingot", "pyutest_core:gold_ingot", "pyutest_core:gold_ingot"},
{"pyutest_core:gold_ingot", "pyutest_core:gold_ingot", "pyutest_core:gold_ingot"},
{"pyutest_core:gold_ingot", "pyutest_core:gold_ingot", "pyutest_core:gold_ingot"}
}
})
minetest.register_craft({
output = "pyutest_core:gold_ingot 9",
recipe = {
{"pyutest_core:coin"}
}
})
minetest.register_craft({
output = "pyutest_core:wheat 4",
recipe = {
"pyutest_core:haybale_block"
},
type = "shapeless"
})
minetest.register_craft({
output = "pyutest_core:haybale_block",
recipe = {
{"pyutest_core:wheat", "pyutest_core:wheat"},
{"pyutest_core:wheat", "pyutest_core:wheat"}
}
})
minetest.register_craft({
output = "pyutest_core:bread 3",
recipe = {
{"pyutest_core:wheat", "pyutest_core:wheat", "pyutest_core:wheat"}
}
})
minetest.register_craft({
output = "pyutest_core:iron_pickaxe",
recipe = {
{"pyutest_core:iron_ingot", "pyutest_core:iron_ingot", "pyutest_core:iron_ingot"},
{"", "pyutest_core:stick", ""},
{"", "pyutest_core:stick", ""}
}
})
minetest.register_craft({
output = "pyutest_core:iron_sword",
recipe = {
{"pyutest_core:iron_ingot"},
{"pyutest_core:iron_ingot"},
{"pyutest_core:stick"}
}
})
minetest.register_craft({
output = "pyutest_core:diamond_pickaxe",
recipe = {
{"pyutest_core:diamond_shard", "pyutest_core:diamond_shard", "pyutest_core:diamond_shard"},
{"", "pyutest_core:stick", ""},
{"", "pyutest_core:stick", ""}
}
})
minetest.register_craft({
output = "pyutest_core:diamond_sword",
recipe = {
{"pyutest_core:diamond_shard"},
{"pyutest_core:diamond_shard"},
{"pyutest_core:stick"}
}
})
minetest.register_craft({
output = "pyutest_core:crate 2",
recipe = {
{"pyutest_core:wooden_block", "pyutest_core:wooden_block", "pyutest_core:wooden_block"},
{"pyutest_core:wooden_block", "", "pyutest_core:wooden_block"},
{"pyutest_core:wooden_block", "pyutest_core:wooden_block", "pyutest_core:wooden_block"}
}
})
minetest.register_craft({
output = "pyutest_core:stone_pickaxe",
recipe = {
{"pyutest_core:stone_block", "pyutest_core:stone_block", "pyutest_core:stone_block"},
{"", "pyutest_core:stick", ""},
{"", "pyutest_core:stick", ""}
}
})
minetest.register_craft({
output = "pyutest_core:red_dye",
recipe = {
"pyutest_core:flower"
},
type = "shapeless"
})
minetest.register_craft({
output = "pyutest_core:yellow_dye",
recipe = {
"pyutest_core:flower2"
},
type = "shapeless"
})
minetest.register_craft({
output = "pyutest_core:blue_dye",
recipe = {
"pyutest_core:flower3"
},
type = "shapeless"
})
minetest.register_craft({
output = "pyutest_core:purple_dye",
recipe = {
"pyutest_core:flower4"
},
type = "shapeless"
})
minetest.register_craft({
output = "pyutest_core:wooden_block 4",
recipe = {
"group:wooden_log"
},
type = "shapeless"
})
minetest.register_craft({
output = "pyutest_core:brick_block 4",
recipe = {
{"pyutest_core:brick", "pyutest_core:brick"},
{"pyutest_core:brick", "pyutest_core:brick"}
}
})
minetest.register_craft({
output = "pyutest_core:furnace",
recipe = {
{"pyutest_core:stone_block", "pyutest_core:stone_block", "pyutest_core:stone_block"},
{"pyutest_core:stone_block", "", "pyutest_core:stone_block"},
{"pyutest_core:stone_block", "pyutest_core:stone_block", "pyutest_core:stone_block"}
}
})
minetest.register_craft({
type = "cooking",
output = "pyutest_core:glass",
recipe = "pyutest_core:sand_block 5"
})
minetest.register_craft({
type = "cooking",
output = "pyutest_core:brick",
recipe = "pyutest_core:clay",
})