2012-08-31 15:09:41 +02:00
|
|
|
-- RUBENFOOD MOD
|
|
|
|
-- A mod written by rubenwardy that adds
|
|
|
|
-- food to the minetest game
|
|
|
|
-- ======================================
|
|
|
|
-- >> rubenfood/support.lua
|
|
|
|
-- adds support for other mods
|
|
|
|
-- ======================================
|
|
|
|
-- [support]
|
|
|
|
-- ======================================
|
|
|
|
|
|
|
|
print "RubenFood [Support] - Initialising"
|
|
|
|
function node_implement(modname,n_ext,n_int,resultfunc)
|
|
|
|
if not minetest.get_modpath(modname) then
|
|
|
|
resultfunc()
|
|
|
|
else
|
|
|
|
minetest.register_alias(n_int,n_ext)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
print "RubenFood [Support] - Farming Mod"
|
2012-08-31 16:37:02 +02:00
|
|
|
node_implement("farming","farming:flour","food:flour",function()
|
|
|
|
minetest.register_craftitem("food:flour", {
|
2012-08-31 15:09:41 +02:00
|
|
|
description = "Flour",
|
|
|
|
inventory_image = "farming_flour.png",
|
|
|
|
})
|
|
|
|
end)
|
|
|
|
|
2012-08-31 16:37:02 +02:00
|
|
|
node_implement("farming","farming:strawberry_item","food:strawberry",function()
|
|
|
|
minetest.register_craftitem("food:strawberry", {
|
2012-08-31 15:09:41 +02:00
|
|
|
description = "Strawberry",
|
|
|
|
inventory_image = "farming_strawberry.png",
|
|
|
|
on_use = minetest.item_eat(2),
|
|
|
|
})
|
|
|
|
end)
|
|
|
|
|
2012-09-01 19:07:06 +02:00
|
|
|
node_implement("farming","farming:carrot_item","food:carrot",function()
|
|
|
|
minetest.register_craftitem("farming:carrot_item", {
|
|
|
|
description = "Carrot",
|
|
|
|
inventory_image = "farming_carrot.png",
|
|
|
|
on_use = minetest.item_eat(3),
|
|
|
|
})
|
|
|
|
end)
|
|
|
|
|
2012-08-31 19:49:13 +02:00
|
|
|
node_implement("farming","farming:rhubarb_item","food:rhubarb",function()
|
|
|
|
minetest.register_craftitem("food:rhubarb", {
|
|
|
|
description = "Rhubarb",
|
|
|
|
inventory_image = "farming_rhubarb.png",
|
|
|
|
})
|
|
|
|
end)
|
|
|
|
|
2012-09-10 19:54:04 +02:00
|
|
|
node_implement("farming","farming:cocoa_bean","food:cocoa",function()
|
2012-09-10 21:04:10 +02:00
|
|
|
minetest.register_craftitem("food:cocoa", {
|
|
|
|
description = "Cocoa Bean",
|
|
|
|
inventory_image = "farming_cocoa_bean.png",
|
2012-09-01 19:07:06 +02:00
|
|
|
})
|
|
|
|
end)
|
|
|
|
|
2012-08-31 16:37:02 +02:00
|
|
|
node_implement("farming","farming:bread","food:bread",function()
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
minetest.register_craftitem("food:bread", {
|
|
|
|
description = "Bread",
|
|
|
|
inventory_image = "farming_bread.png",
|
|
|
|
stack_max = 1,
|
|
|
|
on_use = minetest.item_eat(10)
|
|
|
|
})
|
|
|
|
minetest.register_craft({
|
|
|
|
output = "food:dough",
|
|
|
|
type = "shapeless",
|
|
|
|
recipe = {"food:flour", "food:flour", "food:flour", "food:flour", "bucket:bucket_water"},
|
|
|
|
replacements = {{"bucket:bucket_water", "bucket:bucket_empty"}}
|
|
|
|
})
|
|
|
|
minetest.register_craft({
|
|
|
|
type = "cooking",
|
|
|
|
output = "food:bread",
|
|
|
|
recipe = "food:dough",
|
|
|
|
cooktime = 10
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
end)
|
|
|
|
|
|
|
|
|
|
|
|
node_implement("farming","farming:cake_mix","food:dough",function()
|
|
|
|
minetest.register_craftitem("food:dough", {
|
|
|
|
description = "Cake Mix",
|
|
|
|
inventory_image = "farming_cake_mix.png",
|
|
|
|
})
|
|
|
|
end)
|
|
|
|
|
2012-08-31 15:09:41 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
print "RubenFood [Support] - Animal Mod"
|
2012-09-10 19:54:04 +02:00
|
|
|
|
|
|
|
node_implement("animalmaterials","animalmaterials:meat_raw","food:meat_raw",function()
|
|
|
|
minetest.register_craftitem("food:meat_raw", {
|
|
|
|
description = "Raw meat",
|
|
|
|
image = "animalmaterials_meat_raw.png",
|
|
|
|
on_use = minetest.item_eat(1),
|
|
|
|
groups = { meat=1, eatable=1 },
|
|
|
|
stack_max=25
|
|
|
|
})
|
|
|
|
end)
|
|
|
|
|
|
|
|
|
|
|
|
node_implement("vessels","vessels:drinking_glass","food:cup",function()
|
2012-08-31 16:37:02 +02:00
|
|
|
node_implement("animalmaterials","animalmaterials:glass","food:cup",function()
|
|
|
|
minetest.register_craftitem("food:cup",{
|
2012-08-31 15:09:41 +02:00
|
|
|
description = "Glass",
|
2012-08-31 16:37:02 +02:00
|
|
|
tiles = {"food_cup.png"},
|
|
|
|
inventory_image = "food_cup.png",
|
2012-08-31 15:09:41 +02:00
|
|
|
})
|
|
|
|
end)
|
2012-09-10 19:54:04 +02:00
|
|
|
end)
|
2012-08-31 15:09:41 +02:00
|
|
|
|
2012-08-31 16:37:02 +02:00
|
|
|
node_implement("animalmaterials","animalmaterials:egg","food:egg",function()
|
|
|
|
minetest.register_craftitem("food:egg", {
|
2012-08-31 15:09:41 +02:00
|
|
|
description = "Egg",
|
|
|
|
image = "animalmaterials_egg.png",
|
|
|
|
stack_max=10
|
|
|
|
})
|
|
|
|
end)
|
|
|
|
|
2012-08-31 16:37:02 +02:00
|
|
|
node_implement("animalmaterials","animalmaterials:milk","food:milk",function()
|
|
|
|
minetest.register_craftitem("food:milk", {
|
2012-08-31 15:09:41 +02:00
|
|
|
description = "Milk",
|
|
|
|
image = "animalmaterials_milk.png",
|
|
|
|
on_use = minetest.item_eat(1),
|
|
|
|
groups = { eatable=1 },
|
|
|
|
stack_max=10
|
|
|
|
})
|
|
|
|
end)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|