mirror of
https://github.com/luanti-org/minetest_game.git
synced 2025-05-20 14:23:16 -04:00
Merge feca188bab
into 4e20ed6153
This commit is contained in:
commit
dbae75af4a
3 changed files with 23 additions and 0 deletions
|
@ -0,0 +1 @@
|
|||
default
|
|
@ -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'},
|
||||
}
|
||||
})
|
||||
|
|
BIN
mods/wool/textures/wool_plain.png
Normal file
BIN
mods/wool/textures/wool_plain.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 3.4 KiB |
Loading…
Add table
Reference in a new issue