diff --git a/mods/dye/depends.txt b/mods/dye/depends.txt index e69de29b..4ad96d51 100644 --- a/mods/dye/depends.txt +++ b/mods/dye/depends.txt @@ -0,0 +1 @@ +default diff --git a/mods/dye/init.lua b/mods/dye/init.lua index 28868281..a71da05f 100644 --- a/mods/dye/init.lua +++ b/mods/dye/init.lua @@ -132,3 +132,92 @@ end dyelocal = nil -- 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'}, +}) diff --git a/mods/vessels/textures/vessels_water_bottle.png b/mods/vessels/textures/vessels_water_bottle.png new file mode 100644 index 00000000..a4b19148 Binary files /dev/null and b/mods/vessels/textures/vessels_water_bottle.png differ diff --git a/nano.save b/nano.save new file mode 100644 index 00000000..c996b573 --- /dev/null +++ b/nano.save @@ -0,0 +1,2 @@ +x^ +