1
0
mirror of https://github.com/rubenwardy/food.git synced 2025-07-04 16:50:21 +02:00

Food 0.8 Prototype

This commit is contained in:
Andrew
2012-12-04 17:36:26 +00:00
parent 84125508eb
commit 11465f9605
22 changed files with 424 additions and 25 deletions

View File

@ -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")
print("food: Mainframe loaded")