write something there
This commit is contained in:
commit
b4b6c08f4f
8546 changed files with 309825 additions and 0 deletions
32
mods/biomes/nightshade/crafting.lua
Normal file
32
mods/biomes/nightshade/crafting.lua
Normal file
|
@ -0,0 +1,32 @@
|
|||
------------Crafting
|
||||
minetest.register_craft({
|
||||
output = "nightshade:nightshade_wood 4",
|
||||
recipe = {
|
||||
{"nightshade:nightshade_tree"},
|
||||
}
|
||||
})
|
||||
|
||||
local leaves = "nightshade:nightshade_leaves_1"
|
||||
minetest.register_craft({
|
||||
output = "nightshade:nightshade_sapling",
|
||||
recipe = {
|
||||
{"", leaves, ""},
|
||||
{leaves, "default:stick", leaves}
|
||||
},
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "nightshade:nightshade_lamp",
|
||||
recipe = {
|
||||
{"nightshade:nightshade_wood", "default:meselamp"},
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "nightshade:nightshade_trapdoor 2",
|
||||
recipe = {
|
||||
{"nightshade:nightshade_wood", "nightshade:nightshade_wood", "nightshade:nightshade_wood"},
|
||||
{"nightshade:nightshade_wood", "nightshade:nightshade_wood", "nightshade:nightshade_wood"},
|
||||
}
|
||||
})
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue