forked from luanti-org/minetest_game
		
	
		
			
				
	
	
		
			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,
 | |
| })
 |