2017-02-07 05:11:23 +01:00
|
|
|
-- Temporary helper recipes.
|
|
|
|
-- These recipes are NOT part of Minecraft. They are added to make some currently unobtainable items accessible.
|
|
|
|
-- TODO: Remove recipes when they become accessible by regular means
|
|
|
|
|
2017-03-16 01:48:52 +01:00
|
|
|
minetest.register_craft({
|
|
|
|
type = "shapeless",
|
|
|
|
output = 'mcl_chests:trapped_chest',
|
|
|
|
recipe = {"mcl_core:iron_ingot", "mcl_core:stick", "group:wood", "mcl_chests:chest"},
|
|
|
|
})
|
|
|
|
|
2017-02-07 06:00:47 +01:00
|
|
|
minetest.register_craft({
|
2017-02-16 20:45:28 +01:00
|
|
|
output = "mcl_sponges:sponge",
|
2017-02-07 06:00:47 +01:00
|
|
|
recipe = {
|
2017-02-16 21:44:53 +01:00
|
|
|
{ "mcl_farming:hay_block", "mcl_farming:hay_block", "mcl_farming:hay_block" },
|
|
|
|
{ "mcl_farming:hay_block", "mcl_core:emerald", "mcl_farming:hay_block" },
|
|
|
|
{ "mcl_farming:hay_block", "mcl_farming:hay_block", "mcl_farming:hay_block" },
|
2017-02-07 06:00:47 +01:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
2017-08-17 19:17:42 +02:00
|
|
|
output = "mcl_end:end_stone",
|
|
|
|
recipe = {
|
|
|
|
{ "mcl_core:sandstone", "mcl_core:stone", "mcl_core:sandstone" },
|
|
|
|
{ "mcl_core:stone", "mcl_core:sandstone", "mcl_core:stone" },
|
|
|
|
{ "mcl_core:sandstone", "mcl_core:stone", "mcl_core:sandstone" },
|
|
|
|
},
|
2017-02-07 06:00:47 +01:00
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
2017-02-16 20:35:50 +01:00
|
|
|
output = "mcl_ocean:prismarine_shard",
|
2017-02-07 06:00:47 +01:00
|
|
|
recipe = {
|
|
|
|
{ "mcl_core:glass_cyan", },
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
type = "shapeless",
|
2017-02-16 20:35:50 +01:00
|
|
|
output = "mcl_ocean:prismarine_crystals",
|
2017-09-13 06:58:06 +02:00
|
|
|
recipe = { "mcl_ocean:prismarine_shard", "mcl_ocean:prismarine_shard", "mcl_ocean:prismarine_shard", "mcl_core:gold_ingot" },
|
2017-02-07 06:00:47 +01:00
|
|
|
})
|
|
|
|
|
2017-02-07 05:11:23 +01:00
|
|
|
minetest.register_craft({
|
|
|
|
output = "mcl_end:chorus_fruit",
|
|
|
|
recipe = {
|
2017-02-10 17:16:47 +01:00
|
|
|
{ "mcl_flowers:allium", "mcl_end:end_stone", "mcl_flowers:allium" },
|
|
|
|
{ "mcl_end:end_stone", "mcl_end:end_stone", "mcl_end:end_stone" },
|
|
|
|
{ "mcl_flowers:allium", "mcl_end:end_stone", "mcl_flowers:allium" },
|
2017-02-07 05:11:23 +01:00
|
|
|
},
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
output = "mcl_mobitems:shulker_shell",
|
|
|
|
recipe = {
|
|
|
|
{ "mcl_end:purpur_block", "mcl_end:purpur_block", "mcl_end:purpur_block", },
|
2017-02-07 06:00:47 +01:00
|
|
|
{ "mcl_end:purpur_block", "mcl_core:emerald", "mcl_end:purpur_block", },
|
2017-02-07 05:11:23 +01:00
|
|
|
{ "mcl_end:purpur_block", "", "mcl_end:purpur_block", },
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2017-03-21 16:23:38 +01:00
|
|
|
minetest.register_craft({
|
|
|
|
output = "3d_armor:helmet_chain",
|
|
|
|
recipe = {
|
|
|
|
{ "xpanes:bar_flat", "mcl_core:iron_ingot", "xpanes:bar_flat" },
|
|
|
|
{ "xpanes:bar_flat", "", "xpanes:bar_flat" },
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
output = "3d_armor:leggings_chain",
|
|
|
|
recipe = {
|
|
|
|
{ "xpanes:bar_flat", "mcl_core:iron_ingot", "xpanes:bar_flat" },
|
|
|
|
{ "xpanes:bar_flat", "", "xpanes:bar_flat" },
|
|
|
|
{ "xpanes:bar_flat", "", "xpanes:bar_flat" },
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
output = "3d_armor:boots_chain",
|
|
|
|
recipe = {
|
|
|
|
{ "xpanes:bar_flat", "", "xpanes:bar_flat" },
|
|
|
|
{ "xpanes:bar_flat", "", "xpanes:bar_flat" },
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
output = "3d_armor:chestplate_chain",
|
|
|
|
recipe = {
|
|
|
|
{ "xpanes:bar_flat", "", "xpanes:bar_flat" },
|
|
|
|
{ "xpanes:bar_flat", "mcl_core:iron_ingot", "xpanes:bar_flat" },
|
|
|
|
{ "xpanes:bar_flat", "xpanes:bar_flat", "xpanes:bar_flat" },
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2017-02-20 07:34:47 +01:00
|
|
|
minetest.register_craft({
|
|
|
|
output = "mcl_jukebox:record_2",
|
|
|
|
recipe = {
|
|
|
|
{ "mcl_core:glass_black", "mcl_core:glass_black", "mcl_core:glass_black", },
|
|
|
|
{ "mcl_core:glass_black", "mcl_fire:fire_charge", "mcl_core:glass_black", },
|
|
|
|
{ "mcl_core:glass_black", "mcl_core:glass_black", "mcl_core:glass_black", },
|
|
|
|
}
|
|
|
|
})
|
|
|
|
minetest.register_craft({
|
|
|
|
output = "mcl_jukebox:record_3",
|
|
|
|
recipe = {
|
|
|
|
{ "mcl_core:glass_black", "mcl_core:glass_black", "mcl_core:glass_black", },
|
|
|
|
{ "mcl_core:glass_black", "mcl_core:emerald", "mcl_core:glass_black", },
|
|
|
|
{ "mcl_core:glass_black", "mcl_core:glass_black", "mcl_core:glass_black", },
|
|
|
|
}
|
|
|
|
})
|
|
|
|
minetest.register_craft({
|
|
|
|
output = "mcl_jukebox:record_5",
|
|
|
|
recipe = {
|
|
|
|
{ "mcl_core:glass_black", "mcl_core:glass_black", "mcl_core:glass_black", },
|
|
|
|
{ "mcl_core:glass_black", "mcl_nether:nether_wart_block", "mcl_core:glass_black", },
|
|
|
|
{ "mcl_core:glass_black", "mcl_core:glass_black", "mcl_core:glass_black", },
|
|
|
|
}
|
|
|
|
})
|
|
|
|
-- 2 discs are dropped by creeper
|
|
|
|
-- 1 disc is droppd by zombie
|
|
|
|
-- TODO: Remove/fix these drops when creeper drops music discs properly
|
2017-04-01 23:10:27 +02:00
|
|
|
|
|
|
|
|