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:
@ -11,7 +11,7 @@
|
||||
-- [craft] Hot Chocolate
|
||||
-- =====================================
|
||||
|
||||
print ("RubenFood [Master] - Loading Hot")
|
||||
print ("Food [Master] - Loading Hot")
|
||||
|
||||
-----------------------------Coffee-----------------------------
|
||||
|
||||
|
@ -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",""},
|
||||
}
|
||||
})
|
||||
|
Reference in New Issue
Block a user