mirror of
https://github.com/sys4-fr/server-nalc.git
synced 2024-11-03 17:10:27 +01:00
46 lines
1005 B
Lua
Executable File
46 lines
1005 B
Lua
Executable File
-- Donut (thanks to Bockwurst for making the donut images)
|
|
minetest.register_craftitem("farming:donut", {
|
|
description = "Donut",
|
|
inventory_image = "farming_donut.png",
|
|
on_use = minetest.item_eat(4),
|
|
})
|
|
|
|
minetest.register_craft({
|
|
output = "farming:donut 3",
|
|
recipe = {
|
|
{'', 'farming:wheat', ''},
|
|
{'farming:wheat', '', 'farming:wheat'},
|
|
{'', 'farming:wheat', ''},
|
|
}
|
|
})
|
|
|
|
-- Chocolate Donut
|
|
minetest.register_craftitem("farming:donut_chocolate", {
|
|
description = "Chocolate Donut",
|
|
inventory_image = "farming_donut_chocolate.png",
|
|
on_use = minetest.item_eat(6),
|
|
})
|
|
|
|
minetest.register_craft({
|
|
output = "farming:donut_chocolate",
|
|
recipe = {
|
|
{'farming:cocoa_beans'},
|
|
{'farming:donut'},
|
|
}
|
|
})
|
|
|
|
-- Apple Donut
|
|
minetest.register_craftitem("farming:donut_apple", {
|
|
description = "Apple Donut",
|
|
inventory_image = "farming_donut_apple.png",
|
|
on_use = minetest.item_eat(6),
|
|
})
|
|
|
|
minetest.register_craft({
|
|
output = "farming:donut_apple",
|
|
recipe = {
|
|
{'default:apple'},
|
|
{'farming:donut'},
|
|
}
|
|
})
|