Ajout du mod misc
This commit is contained in:
119
misc/uncraft_woll.lua
Executable file
119
misc/uncraft_woll.lua
Executable file
@ -0,0 +1,119 @@
|
||||
-- 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 4",
|
||||
recipe = {
|
||||
{"wool:black"},
|
||||
},
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "farming:cotton 4",
|
||||
recipe = {
|
||||
{"wool:white"},
|
||||
},
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "farming:cotton 4",
|
||||
recipe = {
|
||||
{"wool:grey"},
|
||||
},
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "farming:cotton 4",
|
||||
recipe = {
|
||||
{"wool:dark_grey"},
|
||||
},
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "farming:cotton 4",
|
||||
recipe = {
|
||||
{"wool:blue"},
|
||||
},
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "farming:cotton 4",
|
||||
recipe = {
|
||||
{"wool:brown"},
|
||||
},
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "farming:cotton 4",
|
||||
recipe = {
|
||||
{"wool:cyan"},
|
||||
},
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "farming:cotton 4",
|
||||
recipe = {
|
||||
{"wool:green"},
|
||||
},
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "farming:cotton 4",
|
||||
recipe = {
|
||||
{"wool:dark_green"},
|
||||
},
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "farming:cotton 4",
|
||||
recipe = {
|
||||
{"wool:dark_grey"},
|
||||
},
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "farming:cotton 4",
|
||||
recipe = {
|
||||
{"wool:dark_grey"},
|
||||
},
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "farming:cotton 4",
|
||||
recipe = {
|
||||
{"wool:magenta"},
|
||||
},
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "farming:cotton 4",
|
||||
recipe = {
|
||||
{"wool:orange"},
|
||||
},
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "farming:cotton 4",
|
||||
recipe = {
|
||||
{"wool:pink"},
|
||||
},
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "farming:cotton 4",
|
||||
recipe = {
|
||||
{"wool:red"},
|
||||
},
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "farming:cotton 4",
|
||||
recipe = {
|
||||
{"wool:violet"},
|
||||
},
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "farming:cotton 4",
|
||||
recipe = {
|
||||
{"wool:yellow"},
|
||||
},
|
||||
})
|
Reference in New Issue
Block a user