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:
12
init.lua
12
init.lua
@ -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")
|
||||
|
Reference in New Issue
Block a user