mirror of
https://github.com/mt-mods/moretrees.git
synced 2025-06-30 15:10:51 +02:00
first commit
This commit is contained in:
32
crafts.lua
Normal file
32
crafts.lua
Normal file
@ -0,0 +1,32 @@
|
||||
--
|
||||
-- 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'}
|
||||
}
|
||||
})
|
||||
|
Reference in New Issue
Block a user