write something there
This commit is contained in:
commit
b4b6c08f4f
8546 changed files with 309825 additions and 0 deletions
127
mods/naturalbiomes/dye.lua
Normal file
127
mods/naturalbiomes/dye.lua
Normal file
|
@ -0,0 +1,127 @@
|
|||
local S = minetest.get_translator("naturalbiomes")
|
||||
|
||||
minetest.register_craft({
|
||||
output = "dye:yellow 2",
|
||||
recipe = {
|
||||
{"naturalbiomes:alderswamp_yellowflower"}
|
||||
},
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "dye:orange 2",
|
||||
recipe = {
|
||||
{"naturalbiomes:alpine_dandelion"}
|
||||
},
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "dye:red 2",
|
||||
recipe = {
|
||||
{"naturalbiomes:cowberry"}
|
||||
},
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "dye:white 2",
|
||||
recipe = {
|
||||
{"naturalbiomes:alpine_edelweiss"}
|
||||
},
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "dye:pink 2",
|
||||
recipe = {
|
||||
{"naturalbiomes:med_flower1"}
|
||||
},
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "dye:violet 2",
|
||||
recipe = {
|
||||
{"naturalbiomes:med_flower3"}
|
||||
},
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "dye:brown 2",
|
||||
recipe = {
|
||||
{"naturalbiomes:med_grass2"}
|
||||
},
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "dye:brown 2",
|
||||
recipe = {
|
||||
{"naturalbiomes:med_grass1"}
|
||||
},
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "dye:orange 2",
|
||||
recipe = {
|
||||
{"naturalbiomes:outback_grass6"}
|
||||
},
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "dye:brown 2",
|
||||
recipe = {
|
||||
{"naturalbiomes:savanna_flowergrass"}
|
||||
},
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "dye:green 2",
|
||||
recipe = {
|
||||
{"naturalbiomes:palmbeach_grass1"}
|
||||
},
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "dye:violet 2",
|
||||
recipe = {
|
||||
{"naturalbiomes:heatherflower"}
|
||||
},
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "dye:magenta 2",
|
||||
recipe = {
|
||||
{"naturalbiomes:heatherflower2"}
|
||||
},
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "dye:violet 2",
|
||||
recipe = {
|
||||
{"naturalbiomes:heatherflower3"}
|
||||
},
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "dye:pink 2",
|
||||
recipe = {
|
||||
{"naturalbiomes:heatherflower4"}
|
||||
},
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "dye:white 2",
|
||||
recipe = {
|
||||
{"naturalbiomes:med_flower2"}
|
||||
},
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "dye:grey 2",
|
||||
recipe = {
|
||||
{"naturalbiomes:outback_grass5"}
|
||||
},
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "dye:dark_green 2",
|
||||
recipe = {
|
||||
{"naturalbiomes:outback_grass2"}
|
||||
},
|
||||
})
|
Loading…
Add table
Add a link
Reference in a new issue