82 lines
1.9 KiB
Lua
82 lines
1.9 KiB
Lua
minetest.register_craftitem("default:string", {
|
|
description = "String",
|
|
inventory_image = "default_string.png",
|
|
})
|
|
|
|
minetest.register_craftitem("default:wood_item", {
|
|
description = "Wood",
|
|
inventory_image = "default_wood_inv.png",
|
|
})
|
|
|
|
minetest.register_craftitem("default:stone_item", {
|
|
description = "Stone",
|
|
inventory_image = "default_stone_item.png",
|
|
})
|
|
|
|
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:iron_lump", {
|
|
description = "Iron Lump",
|
|
inventory_image = "default_iron_lump.png",
|
|
})
|
|
|
|
minetest.register_craftitem("default:gold_lump", {
|
|
description = "Gold Lump",
|
|
inventory_image = "default_gold_lump.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",
|
|
})
|
|
|
|
minetest.register_craftitem("default:coin", {
|
|
description = "Coin",
|
|
inventory_image = "default_coin.png",
|
|
})
|
|
|
|
minetest.register_craftitem("default:silver_coin", {
|
|
description = "Silver Coin",
|
|
inventory_image = "default_silver_coin.png",
|
|
})
|
|
|
|
minetest.register_craftitem("default:xp", {
|
|
description = "XP",
|
|
inventory_image = "default_xp.png",
|
|
stack_max = 99*99,
|
|
})
|