From b336aaa2b489ceee8e5bc803dabc3052d2bbd63a Mon Sep 17 00:00:00 2001 From: Rubenwardy Date: Mon, 10 Sep 2012 20:04:10 +0100 Subject: Moved stuff around and added hot chocolate --- baking.lua | 62 -------------------------------------------------------------- 1 file changed, 62 deletions(-) delete mode 100644 baking.lua (limited to 'baking.lua') diff --git a/baking.lua b/baking.lua deleted file mode 100644 index 41b8eb6..0000000 --- a/baking.lua +++ /dev/null @@ -1,62 +0,0 @@ --- RUBENFOOD MOD --- A mod written by rubenwardy that adds --- food to the minetest game --- ===================================== --- >> rubenfood/baking.lua --- adds bread and pies --- ===================================== --- [regis-food] Bread --- ===================================== - -print "RubenFood [Master] - Loading Bread" --- doughs -if not minetest.get_modpath("farming") then - -else -minetest.register_craftitem(":farming:cake_mix", { - description = "Dough", - inventory_image = "farming_cake_mix.png", -}) -end - -minetest.register_craft({ - output = '"food:bread_slice" 10', - recipe = { - {'"food:bread"'}, - } -}) - -minetest.register_craftitem("food:bread_slice", { - description = "Bread Slice", - inventory_image = "food_bread_slice.png", - on_use = minetest.item_eat(2), -}) - - - - -print "RubenFood [Master] - Loading Buns" -minetest.register_craftitem("food:bun_mix", { - description = "Bun Mix", - inventory_image = "food_bun_mix.png", -}) - -minetest.register_craftitem("food:bun", { - description = "Bun", - inventory_image = "food_bun.png", - on_use = minetest.item_eat(4), -}) - -minetest.register_craft({ - type = "cooking", - output = "food:bun", - recipe = "food:bun_mix", -}) - -minetest.register_craft({ - output = '"food:bun_mix" 5', - recipe = { - {"food:flour", "food:flour", "bucket:bucket_water"}, - }, - replacements = {{"bucket:bucket_water", "bucket:bucket_empty"}} -}) \ No newline at end of file -- cgit v1.2.3