Maciej Kasatkin
2012-09-11 ed818fe0ac735fb11e0d1bc27980271a7add32fa
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
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",
})