1
0
mirror of https://github.com/sys4-fr/server-nalc.git synced 2024-09-18 02:30:22 +02:00
server-nalc/minetestforfun_game/mods/farming/donut.lua
LeMagnesium 9eaff838e5 Updated MinetestForFun Game
- Moved farming and screwdriver into MinetestForFun Game
 - Updated files (mostly `is_ground_content`)
 - Removed weird partial copy of jukebox in MinetestForFun Game
2015-06-18 13:22:23 +02:00

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'},
}
})