31 lines
748 B
Lua
31 lines
748 B
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",
|
||
|
})
|
||
|
|
||
|
minetest.register_craftitem("default:iron_lump", {
|
||
|
description = "Iron Lump",
|
||
|
inventory_image = "default_iron_lump.png",
|
||
|
})
|
||
|
|
||
|
minetest.register_craftitem("default:string_strong", {
|
||
|
description = "String (STRONG)",
|
||
|
inventory_image = "default_string_strong.png",
|
||
|
})
|
||
|
|
||
|
minetest.register_craftitem("default:coin", {
|
||
|
description = "Coin",
|
||
|
inventory_image = "default_coin.png",
|
||
|
})
|
||
|
|
||
|
minetest.register_craftitem("default:xp", {
|
||
|
description = "XP",
|
||
|
inventory_image = "default_xp.png",
|
||
|
stack_max = 99*99,
|
||
|
})
|