mirror of
https://github.com/luanti-org/minetest_game.git
synced 2025-05-20 14:23:16 -04:00
Crafting Recipes For Dyes
This commit is contained in:
parent
0eb46a01ff
commit
51cda4e136
4 changed files with 92 additions and 0 deletions
|
@ -0,0 +1 @@
|
||||||
|
default
|
|
@ -132,3 +132,92 @@ end
|
||||||
dyelocal = nil
|
dyelocal = nil
|
||||||
|
|
||||||
-- EOF
|
-- EOF
|
||||||
|
|
||||||
|
--Dye Smelting Recipes
|
||||||
|
|
||||||
|
minetest.register_craft({
|
||||||
|
type = "cooking",
|
||||||
|
output = "dye:red 4",
|
||||||
|
recipe = "default:apple",
|
||||||
|
})
|
||||||
|
|
||||||
|
minetest.register_craft({
|
||||||
|
type = "cooking",
|
||||||
|
output = "dye:black 4",
|
||||||
|
recipe = "default:coal_lump",
|
||||||
|
})
|
||||||
|
minetest.register_craft({
|
||||||
|
type = "cooking",
|
||||||
|
output = "dye:blue 8",
|
||||||
|
recipe = "default:cactus",
|
||||||
|
})
|
||||||
|
minetest.register_craft({
|
||||||
|
type = "cooking",
|
||||||
|
output = "dye:yellow 4",
|
||||||
|
recipe = "default:mese_crystal_fragment",
|
||||||
|
})
|
||||||
|
minetest.register_craft({
|
||||||
|
type = "cooking",
|
||||||
|
output = "dye:white 5",
|
||||||
|
recipe = "default:stone",
|
||||||
|
})
|
||||||
|
--Dye Crafting Recipes
|
||||||
|
minetest.register_craft({
|
||||||
|
type = "shapeless",
|
||||||
|
output = "dye:green",
|
||||||
|
recipe = {'dye:blue', 'dye:yellow'},
|
||||||
|
})
|
||||||
|
|
||||||
|
minetest.register_craft({
|
||||||
|
type = "shapeless",
|
||||||
|
output = "dye:orange 2",
|
||||||
|
recipe = {'dye:red', 'dye:yellow'},
|
||||||
|
})
|
||||||
|
|
||||||
|
minetest.register_craft({
|
||||||
|
type = "shapeless",
|
||||||
|
output = "dye:pink 2",
|
||||||
|
recipe = {'dye:red', 'dye:white'},
|
||||||
|
})
|
||||||
|
|
||||||
|
minetest.register_craft({
|
||||||
|
type = "shapeless",
|
||||||
|
output = "dye:cyan 2",
|
||||||
|
recipe = {'dye:blue', 'dye:green'},
|
||||||
|
})
|
||||||
|
|
||||||
|
minetest.register_craft({
|
||||||
|
type = "shapeless",
|
||||||
|
output = "dye:brown 2",
|
||||||
|
recipe = {'dye:black', 'dye:orange'},
|
||||||
|
})
|
||||||
|
|
||||||
|
minetest.register_craft({
|
||||||
|
type = "shapeless",
|
||||||
|
output = "dye:dark_green 2",
|
||||||
|
recipe = {'dye:green', 'dye:black'},
|
||||||
|
})
|
||||||
|
|
||||||
|
minetest.register_craft({
|
||||||
|
type = "shapeless",
|
||||||
|
output = "dye:violet 2",
|
||||||
|
recipe = {'dye:blue', 'dye:red'},
|
||||||
|
})
|
||||||
|
|
||||||
|
minetest.register_craft({
|
||||||
|
type = "shapeless",
|
||||||
|
output = "dye:magenta 2",
|
||||||
|
recipe = {'dye:red', 'dye:violet'},
|
||||||
|
})
|
||||||
|
|
||||||
|
minetest.register_craft({
|
||||||
|
type = "shapeless",
|
||||||
|
output = "dye:dark_grey 3",
|
||||||
|
recipe = {'dye:black', 'dye:black', 'dye:white'},
|
||||||
|
})
|
||||||
|
|
||||||
|
minetest.register_craft({
|
||||||
|
type = "shapeless",
|
||||||
|
output = "dye:grey 2",
|
||||||
|
recipe = {'dye:black', 'dye:white'},
|
||||||
|
})
|
||||||
|
|
BIN
mods/vessels/textures/vessels_water_bottle.png
Normal file
BIN
mods/vessels/textures/vessels_water_bottle.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 458 B |
2
nano.save
Normal file
2
nano.save
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
x^
|
||||||
|
|
Loading…
Add table
Reference in a new issue