73 lines
1.6 KiB
Lua
73 lines
1.6 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: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"}
|
|
}
|
|
})
|
|
|
|
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:iron_block",
|
|
recipe = {
|
|
{"pyutest_core:iron_ingot", "pyutest_core:iron_ingot"},
|
|
{"pyutest_core:iron_ingot", "pyutest_core:iron_ingot"}
|
|
}
|
|
})
|
|
|
|
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"}
|
|
}
|
|
})
|
|
|
|
minetest.register_craft({
|
|
output = "pyutest_core:gold_ingot 4",
|
|
recipe = {
|
|
{"pyutest_core:coin"}
|
|
}
|
|
})
|