mirror of
				https://github.com/rubenwardy/food.git
				synced 2025-10-31 02:45:31 +01:00 
			
		
		
		
	mymobs, aerophonics support
This commit is contained in:
		| @@ -15,14 +15,8 @@ print ("Food [Master] - Loading Hot") | ||||
|  | ||||
| -----------------------------Coffee----------------------------- | ||||
|  | ||||
| minetest.register_craftitem("food:coffeebean",{ | ||||
| 	description = "Raw Coffee Bean", | ||||
| 	tiles = {"food_coffee.png"}, | ||||
| 	inventory_image = "food_coffee.png", | ||||
| }) | ||||
|  | ||||
| minetest.register_craftitem("food:coffeebean_cooked",{ | ||||
| 	description = "Cooked Coffee Bean", | ||||
| 	description = "Roasted Coffee Beans", | ||||
| 	tiles = {"food_coffee_cooked.png"}, | ||||
| 	inventory_image = "food_coffee_cooked.png", | ||||
| }) | ||||
| @@ -34,15 +28,6 @@ minetest.register_craftitem("food:coffee", { | ||||
| 	groups={food=1}, | ||||
| }) | ||||
|  | ||||
| minetest.register_craft({ | ||||
| 	output = '"food:coffeebean" 1', | ||||
| 	recipe = { | ||||
| 		{'""','"default:dry_shrub"','""'}, | ||||
| 		{'""','"default:dry_shrub"','""'}, | ||||
| 		{'""','"default:dry_shrub"','""'}, | ||||
| 	} | ||||
| }) | ||||
|  | ||||
| minetest.register_craft({ | ||||
| 	output = '"food:coffee" 1', | ||||
| 	recipe = { | ||||
| @@ -52,8 +37,18 @@ minetest.register_craft({ | ||||
| 	} | ||||
| }) | ||||
|  | ||||
| minetest.register_craft({ | ||||
| 	output = '"food:coffee" 1', | ||||
| 	recipe = { | ||||
| 		{'""','"food:coffeebean_cooked"','""'}, | ||||
| 		{'""','"food:coffeebean_cooked"','""'}, | ||||
| 		{'""','"food:mug"','""'}, | ||||
| 	} | ||||
| }) | ||||
|  | ||||
| minetest.register_craft({ | ||||
| 	type = "cooking", | ||||
| 	output = "food:coffeebean_cooked", | ||||
| 	recipe = "food:coffeebean", | ||||
| 	cooktime = 5, | ||||
| }) | ||||
|   | ||||
		Reference in New Issue
	
	Block a user