mirror of
https://github.com/mt-mods/moretrees.git
synced 2024-11-05 09:50:34 +01:00
33 lines
538 B
Lua
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'}
|
|
}
|
|
})
|
|
|