mirror of
				https://github.com/luanti-org/minetest_game.git
				synced 2025-10-30 23:25:33 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			93 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			Lua
		
	
	
	
	
	
			
		
		
	
	
			93 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			Lua
		
	
	
	
	
	
| -- mods/default/craftitems.lua
 | |
| 
 | |
| minetest.register_craftitem("default:stick", {
 | |
| 	description = "Stick",
 | |
| 	inventory_image = "default_stick.png",
 | |
| 	groups = {stick=1},
 | |
| })
 | |
| 
 | |
| minetest.register_craftitem("default:paper", {
 | |
| 	description = "Paper",
 | |
| 	inventory_image = "default_paper.png",
 | |
| })
 | |
| 
 | |
| minetest.register_craftitem("default:book", {
 | |
| 	description = "Book",
 | |
| 	inventory_image = "default_book.png",
 | |
| })
 | |
| 
 | |
| minetest.register_craftitem("default:coal_lump", {
 | |
| 	description = "Coal Lump",
 | |
| 	inventory_image = "default_coal_lump.png",
 | |
| })
 | |
| 
 | |
| minetest.register_craftitem("default:iron_lump", {
 | |
| 	description = "Iron Lump",
 | |
| 	inventory_image = "default_iron_lump.png",
 | |
| })
 | |
| 
 | |
| minetest.register_craftitem("default:copper_lump", {
 | |
| 	description = "Copper Lump",
 | |
| 	inventory_image = "default_copper_lump.png",
 | |
| })
 | |
| 
 | |
| minetest.register_craftitem("default:mese_crystal", {
 | |
| 	description = "Mese Crystal",
 | |
| 	inventory_image = "default_mese_crystal.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:clay_lump", {
 | |
| 	description = "Clay Lump",
 | |
| 	inventory_image = "default_clay_lump.png",
 | |
| })
 | |
| 
 | |
| minetest.register_craftitem("default:steel_ingot", {
 | |
| 	description = "Steel Ingot",
 | |
| 	inventory_image = "default_steel_ingot.png",
 | |
| })
 | |
| 
 | |
| minetest.register_craftitem("default:copper_ingot", {
 | |
| 	description = "Copper Ingot",
 | |
| 	inventory_image = "default_copper_ingot.png",
 | |
| })
 | |
| 
 | |
| minetest.register_craftitem("default:bronze_ingot", {
 | |
| 	description = "Bronze Ingot",
 | |
| 	inventory_image = "default_bronze_ingot.png",
 | |
| })
 | |
| 
 | |
| minetest.register_craftitem("default:gold_ingot", {
 | |
| 	description = "Gold Ingot",
 | |
| 	inventory_image = "default_gold_ingot.png"
 | |
| })
 | |
| 
 | |
| minetest.register_craftitem("default:mese_crystal_fragment", {
 | |
| 	description = "Mese Crystal Fragment",
 | |
| 	inventory_image = "default_mese_crystal_fragment.png",
 | |
| })
 | |
| 
 | |
| minetest.register_craftitem("default:clay_brick", {
 | |
| 	description = "Clay Brick",
 | |
| 	inventory_image = "default_clay_brick.png",
 | |
| })
 | |
| 
 | |
| minetest.register_craftitem("default:scorched_stuff", {
 | |
| 	description = "Scorched Stuff",
 | |
| 	inventory_image = "default_scorched_stuff.png",
 | |
| })
 | |
| 
 | |
| minetest.register_craftitem("default:obsidian_shard", {
 | |
| 	description = "Obsidian Shard",
 | |
| 	inventory_image = "default_obsidian_shard.png",
 | |
| })
 |