This commit is contained in:
commit
e2608e0b54
33
crafting.lua
33
crafting.lua
@ -1,6 +1,33 @@
|
|||||||
minetest.register_craft( {
|
minetest.register_craft({
|
||||||
output = "homedecor:wardrobe",
|
output = "building_blocks:slab_marble",
|
||||||
recipe = {
|
recipe = {
|
||||||
|
{ "darkage:marble", "darkage:marble","darkage:marble" },
|
||||||
|
{ "", "", "" },
|
||||||
|
{ "", "", "" }
|
||||||
|
},
|
||||||
|
})
|
||||||
|
|
||||||
|
minetest.register_craft({
|
||||||
|
output = "homedecor:kitchen_cabinet_marble",
|
||||||
|
recipe = {
|
||||||
|
{ "stairs:slab_Marble", "" },
|
||||||
|
{ "homedecor:kitchen_cabinet", "" },
|
||||||
|
{ "", "" }
|
||||||
|
},
|
||||||
|
})
|
||||||
|
|
||||||
|
minetest.register_craft({
|
||||||
|
output = "homedecor:dishwasher_marble",
|
||||||
|
recipe = {
|
||||||
|
{ "stairs:slab_Marble", "" },
|
||||||
|
{ "homedecor:dishwasher", "" },
|
||||||
|
{ "", "" }
|
||||||
|
},
|
||||||
|
})
|
||||||
|
|
||||||
|
minetest.register_craft({
|
||||||
|
output = "homedecor:wardrobe",
|
||||||
|
recipe = {
|
||||||
{ "homedecor:drawer_small", "homedecor:kitchen_cabinet" },
|
{ "homedecor:drawer_small", "homedecor:kitchen_cabinet" },
|
||||||
{ "homedecor:drawer_small", "group:wood" },
|
{ "homedecor:drawer_small", "group:wood" },
|
||||||
{ "homedecor:drawer_small", "group:wood" }
|
{ "homedecor:drawer_small", "group:wood" }
|
||||||
|
@ -1,4 +1,6 @@
|
|||||||
default
|
default
|
||||||
|
darkage ?
|
||||||
|
building_blocks ?
|
||||||
teleport_potion ?
|
teleport_potion ?
|
||||||
mobs_slimes ?
|
mobs_slimes ?
|
||||||
mobs_sandworm ?
|
mobs_sandworm ?
|
||||||
|
1
init.lua
1
init.lua
@ -1,2 +1,3 @@
|
|||||||
dofile(minetest.get_modpath("illuna").."/nodes.lua")
|
dofile(minetest.get_modpath("illuna").."/nodes.lua")
|
||||||
dofile(minetest.get_modpath("illuna").."/crafting.lua")
|
dofile(minetest.get_modpath("illuna").."/crafting.lua")
|
||||||
|
--dofile(minetest.get_modpath("illuna").."/aliases.lua")
|
||||||
|
Loading…
x
Reference in New Issue
Block a user