diff options
author | Rubenwardy <anjayward@gmail.com> | 2012-08-31 18:43:10 +0100 |
---|---|---|
committer | Rubenwardy <anjayward@gmail.com> | 2012-08-31 18:43:10 +0100 |
commit | e488cf549cdd02fa794053aa027324271e8d47ab (patch) | |
tree | 225a41e912939c4e4c738d4d04bc8423c7ce08bf /baking.lua | |
parent | 23b2a9a747b43abcf6633425008ff06752f6696c (diff) |
More Stuff
Diffstat (limited to 'baking.lua')
-rw-r--r-- | baking.lua | 39 |
1 files changed, 39 insertions, 0 deletions
@@ -8,8 +8,47 @@ -- [regis-food] Bread
-- =====================================
+print "RubenFood [Master] - Loading Crumbles"
+--Crumbles
+minetest.register_craftitem("food:crumble_rhubarb", {
+ description = "Rhubarb Crumble",
+ inventory_image = "food_crumble_rhubarb.png",
+ on_use = minetest.item_eat(30),
+})
+
+minetest.register_craftitem("food:crumble_rhubarb_raw", {
+ description = "Raw Rhubarb Crumble",
+ inventory_image = "food_crumble_rhubarb_raw.png",
+})
+
+minetest.register_craft({
+ output = '"food:crumble_rhubarb_raw" 1',
+ recipe = {
+ {'"food:flour"','"food:rhubarb"','"food:butter"'}
+ }
+})
+
+minetest.register_craft({
+ type = "cooking",
+ output = "food:crumble_rhubarb",
+ recipe = "food:crumble_rhubarb_raw",
+})
+
+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 Dough"
-- doughs
if not minetest.get_modpath("farming") then
|