mirror of
https://github.com/rubenwardy/food.git
synced 2025-07-04 16:50:21 +02:00
Corrected wrong push
This commit is contained in:
84
init.lua
84
init.lua
@ -10,16 +10,88 @@
|
||||
-- [regis-food] Cigerette (-4)
|
||||
-- =====================================
|
||||
|
||||
print ("Food: Loading extension: [Modern]")
|
||||
print ("Food: Loading mainframe: [Master]")
|
||||
|
||||
----------------------Load Files-----------------------------
|
||||
dofile(minetest.get_modpath("food").."/support.lua")
|
||||
dofile(minetest.get_modpath("food").."/tools/oven.lua")
|
||||
|
||||
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")
|
||||
dofile(minetest.get_modpath("food").."/snacks/tarts.lua")
|
||||
|
||||
dofile(minetest.get_modpath("food").."/drinks/juice.lua")
|
||||
dofile(minetest.get_modpath("food").."/drinks/hot.lua")
|
||||
|
||||
|
||||
dofile(minetest.get_modpath("food_modern").."/food/sandwich.lua")
|
||||
|
||||
dofile(minetest.get_modpath("food_modern").."/snacks/misc.lua")
|
||||
----------------------------Cup------------------------------
|
||||
|
||||
dofile(minetest.get_modpath("food_modern").."/drinks/hot.lua")
|
||||
dofile(minetest.get_modpath("food_modern").."/drinks/milkshakes.lua")
|
||||
minetest.register_craftitem("food:mug",{
|
||||
description = "Mug",
|
||||
inventory_image = "food_mug.png",
|
||||
})
|
||||
|
||||
print("Food: food_modern extension loaded")
|
||||
minetest.register_craftitem("food:clay_mug",{
|
||||
description = "Clay Mug",
|
||||
inventory_image = "food_clay_mug.png",
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = '"food:clay_mug" 1',
|
||||
recipe = {
|
||||
{"default:clay_lump","","default:clay_lump"},
|
||||
{"default:clay_lump","","default:clay_lump"},
|
||||
{"default:clay_lump","default:clay_lump","default:clay_lump"},
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
type = "cooking",
|
||||
output = "food:mug",
|
||||
recipe = "food:clay_mug",
|
||||
})
|
||||
|
||||
-----------------------------Bowl-------------------------------
|
||||
|
||||
minetest.register_craftitem("food:bowl",{
|
||||
description = "Bowl",
|
||||
inventory_image = "food_bowl.png",
|
||||
})
|
||||
|
||||
|
||||
-----------------------------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_craftitem("food:cigarette", {
|
||||
description = "Cigarette",
|
||||
inventory_image = "food_cigar.png",
|
||||
on_use = minetest.item_eat(-4),
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = '"food:cigarette" 1',
|
||||
recipe = {
|
||||
{'"default:dry_shrub"','"default:dry_shrub"','"default:dry_shrub"'},
|
||||
|
||||
}
|
||||
})
|
||||
|
||||
print("food: Mainframe loaded")
|
||||
|
Reference in New Issue
Block a user