1
0
mirror of https://github.com/mt-mods/moretrees.git synced 2024-09-21 03:30:34 +02:00
moretrees/crafts.lua
Vanessa Ezekowitz e0837f30d1 first commit
2013-01-09 21:35:50 -05:00

33 lines
538 B
Lua

--
-- Conifers crafting definitions
--
minetest.register_craft({
output = 'node "conifers:trunk_reversed" 2',
recipe = {
{'node "conifers:trunk"', 'node "conifers:trunk"'},
}
})
minetest.register_craft({
output = 'node "conifers:trunk" 2',
recipe = {
{'node "conifers:trunk_reversed"'},
{'node "conifers:trunk_reversed"'}
}
})
minetest.register_craft({
output = 'default:wood 4',
recipe = {
{'conifers:trunk'}
}
})
minetest.register_craft({
output = 'default:wood 4',
recipe = {
{'conifers:trunk_reversed'}
}
})