52 lines
1.2 KiB
Lua
52 lines
1.2 KiB
Lua
minetest.register_craftitem("default:string", {
|
|
description = "String",
|
|
inventory_image = "default_string.png",
|
|
})
|
|
|
|
minetest.register_craftitem("default:stone_item", {
|
|
description = "Stone",
|
|
inventory_image = "default_stone_item.png",
|
|
stack_max = 99*9,
|
|
})
|
|
|
|
minetest.register_craftitem("default:flint", {
|
|
description = "Flint",
|
|
inventory_image = "default_flint.png",
|
|
})
|
|
|
|
minetest.register_craftitem("default:coal_lump", {
|
|
description = "Coal Lump",
|
|
inventory_image = "default_coal_lump.png",
|
|
})
|
|
|
|
minetest.register_craftitem("default:coal_dust", {
|
|
description = "Coal Dust",
|
|
inventory_image = "default_coal_dust.png",
|
|
})
|
|
|
|
minetest.register_craftitem("default:diamond", {
|
|
description = "Diamond",
|
|
inventory_image = "default_diamond.png",
|
|
})
|
|
|
|
minetest.register_craftitem("default:ruby", {
|
|
description = "Ruby",
|
|
inventory_image = "default_ruby.png",
|
|
})
|
|
|
|
|
|
minetest.register_craftitem("default:string_strong", {
|
|
description = "String (STRONG)",
|
|
inventory_image = "default_string_strong.png",
|
|
})
|
|
|
|
minetest.register_craftitem("default:stick", {
|
|
description = "Stick",
|
|
inventory_image = "default_stick.png",
|
|
})
|
|
|
|
minetest.register_craftitem("default:twig", {
|
|
description = "Twig",
|
|
inventory_image = "default_twig.png",
|
|
})
|