diff options
author | Rubenwardy <anjayward@gmail.com> | 2012-08-30 20:27:32 +0100 |
---|---|---|
committer | Rubenwardy <anjayward@gmail.com> | 2012-08-30 20:27:32 +0100 |
commit | 39b6184a874bbb69af88a2013eb7596770dc8bb9 (patch) | |
tree | 5ffb5716baf12e7c91cb3ad24ac665c8c9af71e1 /baking.lua | |
parent | 97667792fd1cc6a21ee5266e6cca06322f5dd684 (diff) |
Reverted to Extension Design. Added stuff
Diffstat (limited to 'baking.lua')
-rw-r--r-- | baking.lua | 40 |
1 files changed, 0 insertions, 40 deletions
diff --git a/baking.lua b/baking.lua deleted file mode 100644 index bf0bd87..0000000 --- a/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 |