diff options
author | Andrew <andrew@andrew-pc.(none)> | 2012-12-04 17:36:26 +0000 |
---|---|---|
committer | Andrew <andrew@andrew-pc.(none)> | 2012-12-04 17:36:26 +0000 |
commit | 11465f96051636b1c6c47f4f9504a03fff763c38 (patch) | |
tree | 13d4ff78272161e3a2a384b22e5291705cad4460 /init.lua | |
parent | 84125508ebdd9a09e4fdc61fc207c6361b306c3c (diff) |
Food 0.8 Prototype
Diffstat (limited to 'init.lua')
-rw-r--r-- | init.lua | 12 |
1 files changed, 10 insertions, 2 deletions
@@ -10,7 +10,7 @@ -- [regis-food] Cigerette (-4)
-- =====================================
-print ("food: Loading mainframe: [Master]")
+print ("Food: Loading mainframe: [Master]")
----------------------Load Files-----------------------------
dofile(minetest.get_modpath("food").."/support.lua")
@@ -20,6 +20,7 @@ dofile(minetest.get_modpath("food").."/dairy.lua") dofile(minetest.get_modpath("food").."/food/meats.lua")
dofile(minetest.get_modpath("food").."/food/sandwich.lua")
dofile(minetest.get_modpath("food").."/food/baking.lua")
+dofile(minetest.get_modpath("food").."/food/soup.lua")
dofile(minetest.get_modpath("food").."/snacks/crumbles.lua")
dofile(minetest.get_modpath("food").."/snacks/cakes.lua")
@@ -59,6 +60,13 @@ minetest.register_craft({ recipe = "food:clay_mug",
})
+-----------------------------Bowl-------------------------------
+
+minetest.register_craftitem("food:bowl",{
+ description = "Bowl",
+ inventory_image = "food_bowl.png",
+})
+
-----------------------------Sugar------------------------------
minetest.register_craftitem("food:sugar", {
@@ -88,4 +96,4 @@ minetest.register_craft({ }
})
-print("food: Mainframe loaded")
\ No newline at end of file +print("food: Mainframe loaded")
|