Remove some temp. recipes and lift some WIP items

This commit is contained in:
Wuzzy 2017-08-17 19:17:42 +02:00
parent 987ad8eaf4
commit b2171b7f25
3 changed files with 9 additions and 59 deletions

View File

@ -1,4 +1,6 @@
mcl_core
mcl_mobitems
mcl_dye
mcl_end
mcl_nether
mcl_ocean
xpanes

View File

@ -18,12 +18,12 @@ minetest.register_craft({
})
minetest.register_craft({
output = "mcl_core:redsand 8",
recipe = {
{ "mcl_core:sand", "mcl_core:sand", "mcl_core:sand" },
{ "mcl_core:sand", "mcl_dye:red", "mcl_core:sand" },
{ "mcl_core:sand", "mcl_core:sand", "mcl_core:sand" },
}
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" },
},
})
minetest.register_craft({
@ -48,23 +48,6 @@ minetest.register_craft({
},
})
minetest.register_craft({
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" },
},
})
minetest.register_craft({
output = "mcl_mobitems:blaze_rod",
recipe = {
{ "mcl_fire:flint_and_steel", "mcl_fire:flint_and_steel", "mcl_fire:flint_and_steel"},
{ "mcl_fire:flint_and_steel", "mcl_core:stick", "mcl_fire:flint_and_steel" },
{ "mcl_fire:flint_and_steel", "mcl_fire:flint_and_steel", "mcl_fire:flint_and_steel"},
}
})
minetest.register_craft({
output = "mcl_mobitems:shulker_shell",
recipe = {
@ -74,15 +57,6 @@ minetest.register_craft({
}
})
minetest.register_craft({
output = "mcl_nether:quartz",
recipe = {
{"group:sand", "group:sand", "group:sand"},
{"group:sand", "group:sand", "group:sand"},
{"group:sand", "group:sand", "group:sand"},
}
})
minetest.register_craft({
output = "mcl_nether:nether_wart_item",
recipe = {
@ -92,30 +66,6 @@ minetest.register_craft({
}
})
minetest.register_craft({
type = "shapeless",
output = "mcl_nether:netherrack",
recipe = {"mcl_core:stone", "group:redsandstone"},
})
minetest.register_craft({
output = "mcl_nether:glowstone_dust",
recipe = {
{"mcl_torches:torch", "mcl_torches:torch", "mcl_torches:torch",},
{"mcl_torches:torch", "mcl_core:coalblock", "mcl_torches:torch",},
{"mcl_torches:torch", "mcl_torches:torch", "mcl_torches:torch",},
},
})
minetest.register_craft({
output = "mcl_nether:soul_sand",
recipe = {
{"mcl_core:redsand","mcl_nether:netherrack","mcl_core:redsand"},
{"mcl_nether:netherrack","mcl_core:redsand","mcl_nether:netherrack"},
{"mcl_core:redsand","mcl_nether:netherrack","mcl_core:redsand"},
},
})
minetest.register_craft({
output = "3d_armor:helmet_chain",
recipe = {

View File

@ -4,7 +4,6 @@ local wip_items = {
"mcl_anvils:anvil_damage_2",
"mcl_core:darksapling",
"mcl_core:apple_gold",
"mcl_end:ender_eye",
"mcl_end:chorus_fruit",
"mcl_end:chorus_flower",
"mcl_end:chorus_flower_dead",
@ -15,7 +14,6 @@ local wip_items = {
"gemalde:node_1",
"mcl_observers:observer",
"mcl_chests:trapped_chest",
"mobs_mc:llama",
"mobs_mc:totem",
"mcl_paintings:painting",
}