mirror of
https://github.com/sys4-fr/server-nalc.git
synced 2024-11-03 17:10:27 +01:00
4fc007a008
- All the wool nodes give farming:cotton 9 from now.
120 lines
1.7 KiB
Lua
Executable File
120 lines
1.7 KiB
Lua
Executable File
-- récupéré les "cotton" des "wool" faite (récupère 3 aulieu de 4 et perte du colorant)
|
|
minetest.register_craft({
|
|
output = "farming:cotton 9",
|
|
recipe = {
|
|
{"wool:black"},
|
|
},
|
|
})
|
|
|
|
minetest.register_craft({
|
|
output = "farming:cotton 9",
|
|
recipe = {
|
|
{"wool:white"},
|
|
},
|
|
})
|
|
|
|
minetest.register_craft({
|
|
output = "farming:cotton 9",
|
|
recipe = {
|
|
{"wool:grey"},
|
|
},
|
|
})
|
|
|
|
minetest.register_craft({
|
|
output = "farming:cotton 9",
|
|
recipe = {
|
|
{"wool:dark_grey"},
|
|
},
|
|
})
|
|
|
|
minetest.register_craft({
|
|
output = "farming:cotton 9",
|
|
recipe = {
|
|
{"wool:blue"},
|
|
},
|
|
})
|
|
|
|
minetest.register_craft({
|
|
output = "farming:cotton 9",
|
|
recipe = {
|
|
{"wool:brown"},
|
|
},
|
|
})
|
|
|
|
minetest.register_craft({
|
|
output = "farming:cotton 9",
|
|
recipe = {
|
|
{"wool:cyan"},
|
|
},
|
|
})
|
|
|
|
minetest.register_craft({
|
|
output = "farming:cotton 9",
|
|
recipe = {
|
|
{"wool:green"},
|
|
},
|
|
})
|
|
|
|
minetest.register_craft({
|
|
output = "farming:cotton 9",
|
|
recipe = {
|
|
{"wool:dark_green"},
|
|
},
|
|
})
|
|
|
|
minetest.register_craft({
|
|
output = "farming:cotton 9",
|
|
recipe = {
|
|
{"wool:dark_grey"},
|
|
},
|
|
})
|
|
|
|
minetest.register_craft({
|
|
output = "farming:cotton 9",
|
|
recipe = {
|
|
{"wool:dark_grey"},
|
|
},
|
|
})
|
|
|
|
minetest.register_craft({
|
|
output = "farming:cotton 9",
|
|
recipe = {
|
|
{"wool:magenta"},
|
|
},
|
|
})
|
|
|
|
minetest.register_craft({
|
|
output = "farming:cotton 9",
|
|
recipe = {
|
|
{"wool:orange"},
|
|
},
|
|
})
|
|
|
|
minetest.register_craft({
|
|
output = "farming:cotton 9",
|
|
recipe = {
|
|
{"wool:pink"},
|
|
},
|
|
})
|
|
|
|
minetest.register_craft({
|
|
output = "farming:cotton 9",
|
|
recipe = {
|
|
{"wool:red"},
|
|
},
|
|
})
|
|
|
|
minetest.register_craft({
|
|
output = "farming:cotton 9",
|
|
recipe = {
|
|
{"wool:violet"},
|
|
},
|
|
})
|
|
|
|
minetest.register_craft({
|
|
output = "farming:cotton 9",
|
|
recipe = {
|
|
{"wool:yellow"},
|
|
},
|
|
})
|