summaryrefslogtreecommitdiff
path: root/rubenfood/baking.lua
diff options
context:
space:
mode:
authorRubenwardy <anjayward@gmail.com>2012-08-30 17:43:30 +0100
committerRubenwardy <anjayward@gmail.com>2012-08-30 17:43:30 +0100
commit5b9e97da2d483416f0582a85830ffa027d6b69a9 (patch)
tree2f88042acab6cf5271c4708f607faed65f479520 /rubenfood/baking.lua
parente18011bb43344eb44ada72000414db9782987038 (diff)
Made it into a mod, not a mod pack
Diffstat (limited to 'rubenfood/baking.lua')
-rw-r--r--rubenfood/baking.lua40
1 files changed, 0 insertions, 40 deletions
diff --git a/rubenfood/baking.lua b/rubenfood/baking.lua
deleted file mode 100644
index bf0bd87..0000000
--- a/rubenfood/baking.lua
+++ /dev/null
@@ -1,40 +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
--- =====================================
-
-
-
--- doughs
-minetest.register_craftitem("rubenfood:dough", {
- description = "Dough",
- inventory_image = "farming_cake_mix.png",
-})
-
-minetest.register_craft({
- output = "rubenfood:dough",
- type = "shapeless",
- recipe = {"rubenfood:flour", "rubenfood:flour", "rubenfood:flour", "rubenfood:flour", "bucket:bucket_water"},
- replacements = {{"bucket:bucket_water", "bucket:bucket_empty"}}
-})
-
-
---plain bread
-minetest.register_craft({
- type = "cooking",
- output = "rubenfood:bread",
- recipe = "rubenfood:dough",
- cooktime = 10
-})
-
-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