From ba2dbaf4665a88d4c58b73a79bd774ed423fe318 Mon Sep 17 00:00:00 2001 From: Rubenwardy Date: Fri, 31 Aug 2012 14:09:41 +0100 Subject: Did support.lua - dynamic external mod support --- baking.lua | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 baking.lua (limited to 'baking.lua') diff --git a/baking.lua b/baking.lua new file mode 100644 index 0000000..98da7ad --- /dev/null +++ b/baking.lua @@ -0,0 +1,41 @@ +-- RUBENFOOD MOD +-- A mod written by rubenwardy that adds +-- food to the minetest game +-- ===================================== +-- >> rubenfood/baking.lua +-- adds bread and pies +-- ===================================== +-- [regis-food] Bread +-- ===================================== + + + +-- doughs +minetest.register_craftitem("rubenfood:dough", { + description = "Dough", + inventory_image = "farming_cake_mix.png", +}) + +if add_bread_craft then +minetest.register_craft({ + output = "rubenfood:dough", + type = "shapeless", + recipe = {"rubenfood:flour","rubenfood:flour", "bucket:bucket_water"}, + replacements = {{"bucket:bucket_water", "bucket:bucket_empty"}} +}) + +minetest.register_craft({ + type = "cooking", + output = "rubenfood:bread", + recipe = "rubenfood:dough", + cooktime = 10 +}) + +end + +minetest.register_craftitem("rubenfood:bread", { + description = "Bread", + inventory_image = "ruben_bread.png", + stack_max = 1, + on_use = minetest.item_eat(10) +}) \ No newline at end of file -- cgit v1.2.3