diff options
author | Rubenwardy <anjayward@gmail.com> | 2012-09-10 20:04:10 +0100 |
---|---|---|
committer | Rubenwardy <anjayward@gmail.com> | 2012-09-10 20:04:10 +0100 |
commit | b336aaa2b489ceee8e5bc803dabc3052d2bbd63a (patch) | |
tree | 5fcf17f5f4e15e259fa33b73056604e69a899a39 /baking.lua | |
parent | cf48b7dbadc2afc84613aa6c31b4c4bf8f95c177 (diff) |
Moved stuff around and added hot chocolate
Diffstat (limited to 'baking.lua')
-rw-r--r-- | baking.lua | 62 |
1 files changed, 0 insertions, 62 deletions
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 |