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

Added Oven, Meats, Sandwiches and Carrot Cake

This commit is contained in:
Rubenwardy
2012-09-01 18:07:06 +01:00
parent 5dc3fa20a9
commit 9817c63921
20 changed files with 293 additions and 7 deletions

View File

@ -14,7 +14,10 @@ print ("food: Loading mainframe: [Master]")
----------------------Load Files-----------------------------
dofile(minetest.get_modpath("food").."/support.lua")
dofile(minetest.get_modpath("food").."/oven.lua")
dofile(minetest.get_modpath("food").."/dairy.lua")
dofile(minetest.get_modpath("food").."/meats.lua")
dofile(minetest.get_modpath("food").."/sandwich.lua")
dofile(minetest.get_modpath("food").."/baking.lua")
@ -22,7 +25,6 @@ dofile(minetest.get_modpath("food").."/cakes.lua")
dofile(minetest.get_modpath("food").."/tarts.lua")
dofile(minetest.get_modpath("food").."/drinks.lua")
--dofile(minetest.get_modpath("food").."/fruits.lua")
@ -42,6 +44,18 @@ minetest.register_craft({
}
})
-----------------------------Sugar------------------------------
minetest.register_craftitem("food:sugar", {
description = "Sugar",
inventory_image = "food_sugar.png",
})
minetest.register_craft({
output = '"food:sugar" 20',
recipe = {
{'"default:papyrus"'},
}
})
----------------------------Cigerete----------------------------
minetest.register_node(":food:cigarette", {