1
0
mirror of https://github.com/rubenwardy/food.git synced 2024-09-28 22:20:20 +02:00
food/drinks/milkshakes.lua
2012-09-10 20:04:10 +01:00

17 lines
501 B
Lua

-- RUBENFOOD MOD
-- A mod written by rubenwardy that adds
-- food to the minetest game
-- =====================================
-- >> rubenfood/drinks/milkshakes.lua
-- adds drinks
-- =====================================
--
-- =====================================
print ("RubenFood [Master] - Loading Milk Shakes")
minetest.register_craftitem("food:ms_chocolate", {
description = "Chocolate Milkshake",
inventory_image = "food_ms_chocolate.png",
on_use = minetest.item_eat(4)
})