179 lines
4.1 KiB
Lua
179 lines
4.1 KiB
Lua
core.register_craft({
|
|
output = "pyutest_tools:wooden_pickaxe 1",
|
|
recipe = {
|
|
{ "group:wooden_planks", "group:wooden_planks", "group:wooden_planks" },
|
|
{ "", "group:stick", "" },
|
|
{ "", "group:stick", "" }
|
|
}
|
|
})
|
|
|
|
core.register_craft({
|
|
output = "pyutest_tools:wooden_axe 1",
|
|
recipe = {
|
|
{ "group:wooden_planks", "group:wooden_planks", "" },
|
|
{ "group:wooden_planks", "group:stick", "" },
|
|
{ "", "group:stick", "" }
|
|
}
|
|
})
|
|
|
|
core.register_craft({
|
|
output = "pyutest_tools:wooden_sword 1",
|
|
recipe = {
|
|
{ "", "group:wooden_planks", "" },
|
|
{ "", "group:wooden_planks", "" },
|
|
{ "", "group:stick", "" }
|
|
}
|
|
})
|
|
|
|
core.register_craft({
|
|
output = "pyutest_tools:stone_pickaxe",
|
|
recipe = {
|
|
{ "group:cobble", "group:cobble", "group:cobble" },
|
|
{ "", "group:stick", "" },
|
|
{ "", "group:stick", "" }
|
|
}
|
|
})
|
|
|
|
core.register_craft({
|
|
output = "pyutest_tools:stone_axe",
|
|
recipe = {
|
|
{ "group:cobble", "group:cobble", "" },
|
|
{ "group:cobble", "group:stick", "" },
|
|
{ "", "group:stick", "" }
|
|
}
|
|
})
|
|
|
|
core.register_craft({
|
|
output = "pyutest_tools:stone_sword",
|
|
recipe = {
|
|
{ "", "group:cobble", "" },
|
|
{ "", "group:cobble", "" },
|
|
{ "", "group:stick", "" }
|
|
}
|
|
})
|
|
|
|
core.register_craft({
|
|
output = "pyutest_tools:iron_pickaxe",
|
|
recipe = {
|
|
{ "pyutest_ores:iron_ingot", "pyutest_ores:iron_ingot", "pyutest_ores:iron_ingot" },
|
|
{ "", "group:stick", "" },
|
|
{ "", "group:stick", "" }
|
|
}
|
|
})
|
|
|
|
core.register_craft({
|
|
output = "pyutest_tools:iron_axe",
|
|
recipe = {
|
|
{ "pyutest_ores:iron_ingot", "pyutest_ores:iron_ingot", "" },
|
|
{ "pyutest_ores:iron_ingot", "group:stick", "" },
|
|
{ "", "group:stick", "" }
|
|
}
|
|
})
|
|
|
|
core.register_craft({
|
|
output = "pyutest_tools:iron_sword",
|
|
recipe = {
|
|
{ "pyutest_ores:iron_ingot" },
|
|
{ "pyutest_ores:iron_ingot" },
|
|
{ "group:stick" }
|
|
}
|
|
})
|
|
|
|
core.register_craft({
|
|
output = "pyutest_farming:hoe",
|
|
recipe = {
|
|
{ "pyutest_ores:iron_ingot", "pyutest_ores:iron_ingot", "" },
|
|
{ "", "group:stick", "" },
|
|
{ "", "group:stick", "" }
|
|
}
|
|
})
|
|
|
|
core.register_craft({
|
|
output = "pyutest_tools:shears",
|
|
recipe = {
|
|
"pyutest_ores:iron_ingot",
|
|
"pyutest_ores:iron_ingot"
|
|
},
|
|
type = "shapeless"
|
|
})
|
|
|
|
core.register_craft({
|
|
output = "pyutest_tools:diamond_pickaxe",
|
|
recipe = {
|
|
{ "pyutest_ores:diamond_shard", "pyutest_ores:diamond_shard", "pyutest_ores:diamond_shard" },
|
|
{ "", "group:stick", "" },
|
|
{ "", "group:stick", "" }
|
|
}
|
|
})
|
|
|
|
core.register_craft({
|
|
output = "pyutest_tools:diamond_axe",
|
|
recipe = {
|
|
{ "pyutest_ores:diamond_shard", "pyutest_ores:diamond_shard", "" },
|
|
{ "pyutest_ores:diamond_shard", "group:stick", "" },
|
|
{ "", "group:stick", "" }
|
|
}
|
|
})
|
|
|
|
core.register_craft({
|
|
output = "pyutest_tools:diamond_sword",
|
|
recipe = {
|
|
{ "pyutest_ores:diamond_shard" },
|
|
{ "pyutest_ores:diamond_shard" },
|
|
{ "group:stick" }
|
|
}
|
|
})
|
|
|
|
core.register_craft({
|
|
output = "pyutest_tools:flint_and_steel",
|
|
recipe = {
|
|
"pyutest_tools:flint", "pyutest_ores:iron_ingot"
|
|
},
|
|
type = "shapeless"
|
|
})
|
|
|
|
core.register_craft({
|
|
output = "pyutest_magic:ice_wand",
|
|
recipe = {
|
|
{"pyutest_blocks:ice_block"},
|
|
{"pyutest_tools:basalt_stick"},
|
|
{"pyutest_tools:basalt_stick"},
|
|
}
|
|
})
|
|
|
|
core.register_craft({
|
|
output = "pyutest_magic:fire_wand",
|
|
recipe = {
|
|
{"pyutest_blocks:magma"},
|
|
{"pyutest_tools:basalt_stick"},
|
|
{"pyutest_tools:basalt_stick"},
|
|
}
|
|
})
|
|
|
|
core.register_craft({
|
|
output = "pyutest_magic:arcane_wand",
|
|
recipe = {
|
|
{"pyutest_blocks:crystal_lantern"},
|
|
{"pyutest_tools:basalt_stick"},
|
|
{"pyutest_tools:basalt_stick"},
|
|
}
|
|
})
|
|
|
|
core.register_craft({
|
|
output = "pyutest_magic:teleportation_wand",
|
|
recipe = {
|
|
{"pyutest_magic:windball"},
|
|
{"pyutest_tools:basalt_stick"},
|
|
{"pyutest_tools:basalt_stick"},
|
|
}
|
|
})
|
|
|
|
core.register_craft({
|
|
output = "pyutest_magic:explosions_wand",
|
|
recipe = {
|
|
{"pyutest_blocks:tnt"},
|
|
{"pyutest_tools:basalt_stick"},
|
|
{"pyutest_tools:basalt_stick"},
|
|
}
|
|
})
|