This commit is contained in:
sdzen 2013-03-20 07:34:28 -07:00
commit dbae75af4a
3 changed files with 23 additions and 0 deletions

View File

@ -0,0 +1 @@
default

View File

@ -9,6 +9,7 @@ local wool = {}
-- colors, and then some recipes using more specific colors for a few non-base
-- colors available. When crafting, the last recipes will be checked first.
wool.dyes = {
{"plain", "Plain", nil},
{"white", "White", nil},
{"grey", "Grey", "basecolor_grey"},
{"black", "Black", "basecolor_black"},
@ -46,3 +47,24 @@ for _, row in ipairs(wool.dyes) do
end
end
minetest.register_craft({
type = "shapeless",
output = "wool:white",
recipe = {'dye:white', 'wool:plain'},
})
minetest.register_craft({ --Suggested by jojoa1997
output = 'wool:plain 16',
recipe = {
{'default:leaves', 'default:papyrus', 'default:leaves'},
{'default:papyrus', 'default:stick', 'default:papyrus'},
{'default:leaves', 'default:papyrus', 'default:leaves'},
}
})
minetest.register_craft({ --for the more poor minetest players
output = 'wool:plain 8',
recipe = {
{'default:leaves', 'default:dry_shrub', 'default:leaves'},
{'default:dry_shrub', 'default:stick', 'default:dry_shrub'},
{'default:leaves', 'default:dry_shrub', 'default:leaves'},
}
})

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.4 KiB