mirror of
				https://github.com/luanti-org/minetest_game.git
				synced 2025-11-04 09:15:29 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			29 lines
		
	
	
		
			399 B
		
	
	
	
		
			Lua
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			399 B
		
	
	
	
		
			Lua
		
	
	
	
	
	
--
 | 
						|
-- Crafting recipes
 | 
						|
--
 | 
						|
 | 
						|
minetest.register_craft({
 | 
						|
	output = "keys:skeleton_key",
 | 
						|
	recipe = {
 | 
						|
		{"default:gold_ingot"},
 | 
						|
	}
 | 
						|
})
 | 
						|
 | 
						|
--
 | 
						|
-- Cooking recipes
 | 
						|
--
 | 
						|
 | 
						|
minetest.register_craft({
 | 
						|
	type = "cooking",
 | 
						|
	output = "default:gold_ingot",
 | 
						|
	recipe = "keys:key",
 | 
						|
	cooktime = 5,
 | 
						|
})
 | 
						|
 | 
						|
minetest.register_craft({
 | 
						|
	type = "cooking",
 | 
						|
	output = "default:gold_ingot",
 | 
						|
	recipe = "keys:skeleton_key",
 | 
						|
	cooktime = 5,
 | 
						|
})
 |