1
0
mirror of https://github.com/rubenwardy/food.git synced 2025-07-15 05:30:28 +02:00

DocFarming support and more foods added

This commit is contained in:
Rubenwardy
2012-12-17 17:31:35 +00:00
parent 0dd3316579
commit ed0f8e255f
10 changed files with 67 additions and 21 deletions

View File

@ -11,7 +11,7 @@
-- [craft] Hot Chocolate
-- =====================================
print ("RubenFood [Master] - Loading Hot")
print ("Food [Master] - Loading Hot")
-----------------------------Coffee-----------------------------

View File

@ -11,7 +11,7 @@
-- [craft] Cactus Juice
-- =====================================
print ("RubenFood [Master] - Loading Juices")
print ("Food [Master] - Loading Juices")
--------------------------Apple Juice--------------------------
minetest.register_craftitem("food:apple_juice", {
@ -47,4 +47,22 @@ minetest.register_craft({
{'""','"default:cactus"','""'},
{'""','"food:cup"','""'},
}
})
})
--------------------------Apple Juice--------------------------
minetest.register_craftitem("food:rainbow_juice", {
description = "Nyan Rainbow Juice",
inventory_image = "food_juice_rainbow.png",
on_use = minetest.item_eat(50)
})
minetest.register_craft({
output = '"food:rainbow_juice" 99',
recipe = {
{"","",""},
{"","default:nyancat_rainbow",""},
{"","food:cup",""},
}
})