1
0
mirror of https://github.com/rubenwardy/food.git synced 2024-09-29 22:50:20 +02:00
food/dairy.lua

43 lines
881 B
Lua
Raw Normal View History

-- RUBENFOOD MOD
-- A mod written by rubenwardy that adds
-- food to the minetest game
-- ======================================
2012-08-31 15:56:59 +02:00
-- >> rubenfood/diary.lua
-- adds diary products
-- ======================================
-- [regis-food] Cheese
-- [craft] Cheese
-- [regis-item] Butter
-- [craft] Butter
-- ======================================
2012-08-31 16:37:02 +02:00
minetest.register_craftitem("food:butter", {
2012-08-31 15:56:59 +02:00
description = "Butter",
2012-08-31 16:37:02 +02:00
inventory_image = "food_butter.png",
2012-08-31 15:56:59 +02:00
})
2012-08-31 16:37:02 +02:00
minetest.register_craftitem("food:cheese", {
2012-08-31 15:56:59 +02:00
description = "Cheese",
2012-08-31 16:37:02 +02:00
inventory_image = "food_cheese.png",
2012-08-31 15:56:59 +02:00
on_use = minetest.item_eat(4),
})
minetest.register_craft({
2012-08-31 16:37:02 +02:00
output = '"food:butter" 1',
2012-08-31 15:56:59 +02:00
recipe = {
2012-08-31 16:37:02 +02:00
{'"food:milk"','"food:milk"'},
2012-08-31 15:56:59 +02:00
}
})
minetest.register_craft({
2012-08-31 16:37:02 +02:00
output = '"food:cheese" 1',
2012-08-31 15:56:59 +02:00
recipe = {
2012-08-31 16:37:02 +02:00
{'"food:butter"','"food:butter"'},
2012-08-31 15:56:59 +02:00
}
})