forked from VoxeLibre/VoxeLibre
Order dye crafting recipes to be more logical
This commit is contained in:
parent
dfdb5abf37
commit
6ca257891c
|
@ -320,6 +320,16 @@ minetest.register_craft({
|
||||||
output = "mcl_dye:magenta 4",
|
output = "mcl_dye:magenta 4",
|
||||||
recipe = {"mcl_dye:blue", "mcl_dye:white", "mcl_dye:red", "mcl_dye:red"},
|
recipe = {"mcl_dye:blue", "mcl_dye:white", "mcl_dye:red", "mcl_dye:red"},
|
||||||
})
|
})
|
||||||
|
minetest.register_craft({
|
||||||
|
type = "shapeless",
|
||||||
|
output = "mcl_dye:magenta 3",
|
||||||
|
recipe = {"mcl_dye:pink", "mcl_dye:red", "mcl_dye:blue"},
|
||||||
|
})
|
||||||
|
minetest.register_craft({
|
||||||
|
type = "shapeless",
|
||||||
|
output = "mcl_dye:magenta 2",
|
||||||
|
recipe = {"mcl_dye:violet", "mcl_dye:pink"},
|
||||||
|
})
|
||||||
|
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
type = "shapeless",
|
type = "shapeless",
|
||||||
|
@ -343,16 +353,6 @@ minetest.register_craft({
|
||||||
output = "mcl_dye:orange 2",
|
output = "mcl_dye:orange 2",
|
||||||
recipe = {"mcl_dye:yellow", "mcl_dye:red"},
|
recipe = {"mcl_dye:yellow", "mcl_dye:red"},
|
||||||
})
|
})
|
||||||
minetest.register_craft({
|
|
||||||
type = "shapeless",
|
|
||||||
output = "mcl_dye:magenta 2",
|
|
||||||
recipe = {"mcl_dye:violet", "mcl_dye:pink"},
|
|
||||||
})
|
|
||||||
minetest.register_craft({
|
|
||||||
type = "shapeless",
|
|
||||||
output = "mcl_dye:magenta 3",
|
|
||||||
recipe = {"mcl_dye:pink", "mcl_dye:red", "mcl_dye:blue"},
|
|
||||||
})
|
|
||||||
|
|
||||||
-- Dye creation
|
-- Dye creation
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
|
@ -399,6 +399,10 @@ minetest.register_craft({
|
||||||
output = "mcl_dye:pink 2",
|
output = "mcl_dye:pink 2",
|
||||||
recipe = {{"mcl_flowers:peony"}},
|
recipe = {{"mcl_flowers:peony"}},
|
||||||
})
|
})
|
||||||
|
minetest.register_craft({
|
||||||
|
output = "mcl_dye:red",
|
||||||
|
recipe = {{"mcl_farming:beetroot_item"}},
|
||||||
|
})
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
output = "mcl_dye:red",
|
output = "mcl_dye:red",
|
||||||
recipe = {{"mcl_flowers:poppy"}},
|
recipe = {{"mcl_flowers:poppy"}},
|
||||||
|
@ -411,10 +415,6 @@ minetest.register_craft({
|
||||||
output = "mcl_dye:red 2",
|
output = "mcl_dye:red 2",
|
||||||
recipe = {{"mcl_flowers:rose_bush"}},
|
recipe = {{"mcl_flowers:rose_bush"}},
|
||||||
})
|
})
|
||||||
minetest.register_craft({
|
|
||||||
output = "mcl_dye:red",
|
|
||||||
recipe = {{"mcl_farming:beetroot_item"}},
|
|
||||||
})
|
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
type = "cooking",
|
type = "cooking",
|
||||||
output = "mcl_dye:dark_green",
|
output = "mcl_dye:dark_green",
|
||||||
|
|
Loading…
Reference in New Issue