mirror of
https://github.com/rubenwardy/food.git
synced 2024-11-05 09:50:24 +01:00
cf48b7dbad
Corrected bugs notified by wowiamdiamonds added vessels support
73 lines
1.5 KiB
Lua
73 lines
1.5 KiB
Lua
-- RUBENFOOD MOD
|
|
-- A mod written by rubenwardy that adds
|
|
-- food to the minetest game
|
|
-- ======================================
|
|
-- >> rubenfood/diary.lua
|
|
-- adds diary products
|
|
-- ======================================
|
|
-- [regis-food] Cheese
|
|
-- [craft] Cheese
|
|
-- [regis-item] Butter
|
|
-- [craft] Butter
|
|
-- ======================================
|
|
|
|
minetest.register_craftitem("food:butter", {
|
|
description = "Butter",
|
|
inventory_image = "food_butter.png",
|
|
})
|
|
|
|
minetest.register_craftitem("food:cheese", {
|
|
description = "Cheese",
|
|
inventory_image = "food_cheese.png",
|
|
on_use = minetest.item_eat(4),
|
|
})
|
|
|
|
|
|
minetest.register_craft({
|
|
output = '"food:butter" 1',
|
|
recipe = {
|
|
{'"food:milk"','"food:milk"'},
|
|
}
|
|
})
|
|
|
|
minetest.register_craft({
|
|
output = '"food:cheese" 1',
|
|
recipe = {
|
|
{'"food:butter"','"food:butter"'},
|
|
}
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craftitem("food:chocolate_dark", {
|
|
description = "Dark Chocolate",
|
|
inventory_image = "food_choco_dark.png",
|
|
on_use = minetest.item_eat(2),
|
|
})
|
|
|
|
minetest.register_craftitem("food:chocolate_milk", {
|
|
description = "Milk Chocolate",
|
|
inventory_image = "food_choco_dark.png",
|
|
on_use = minetest.item_eat(3),
|
|
})
|
|
|
|
minetest.register_craft({
|
|
output = '"food:chocolate_dark" 1',
|
|
recipe = {
|
|
{'"food:cocoa"','"food:cocoa"','"food:cocoa"'},
|
|
}
|
|
})
|
|
|
|
minetest.register_craft({
|
|
output = '"food:chocolate_milk" 1',
|
|
recipe = {
|
|
{"",'"food:milk"',""},
|
|
{'"food:cocoa"','"food:cocoa"','"food:cocoa"'},
|
|
}
|
|
})
|
|
|
|
|
|
|
|
|
|
|