diff options
author | Maciej Kasatkin <mk@realbadangel.pl> | 2012-08-21 07:18:33 +0200 |
---|---|---|
committer | Maciej Kasatkin <mk@realbadangel.pl> | 2012-08-21 07:18:33 +0200 |
commit | 167434085cf62f133aaeaeadd7f9eb80d946189f (patch) | |
tree | d254f645952432b49b494574abf0a5a59571abb8 /dyes.lua |
upload
Diffstat (limited to 'dyes.lua')
-rw-r--r-- | dyes.lua | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/dyes.lua b/dyes.lua new file mode 100644 index 0000000..a81988e --- /dev/null +++ b/dyes.lua @@ -0,0 +1,40 @@ +minetest.register_craft({ + type = "cooking", + output = "dye:black 2", + recipe = "default:coal_lump", +}) +minetest.register_craft({ + type = "cooking", + output = "dye:green 2", + recipe = "default:cactus", +}) +minetest.register_craft({ + type = "cooking", + output = "dye:red 2", + recipe = "flowers:flower_rose", +}) +minetest.register_craft({ + type = "cooking", + output = "dye:blue 2", + recipe = "flowers:flower_viola", +}) +minetest.register_craft({ + type = "cooking", + output = "dye:white 2", + recipe = "flowers:flower_dandelion_white", +}) +minetest.register_craft({ + type = "cooking", + output = "dye:yellow 2", + recipe = "flowers:flower_dandelion_yellow", +}) +minetest.register_craft({ + type = "cooking", + output = "dye:orange 2", + recipe = "flowers:flower_tulip", +}) +minetest.register_craft({ + type = "cooking", + output = "dye:brown 2", + recipe = "default:dry_shrub", +})
\ No newline at end of file |