summaryrefslogtreecommitdiff
path: root/drinks/milkshakes.lua
diff options
context:
space:
mode:
authorRubenwardy <anjayward@gmail.com>2012-09-10 20:04:10 +0100
committerRubenwardy <anjayward@gmail.com>2012-09-10 20:04:10 +0100
commitb336aaa2b489ceee8e5bc803dabc3052d2bbd63a (patch)
tree5fcf17f5f4e15e259fa33b73056604e69a899a39 /drinks/milkshakes.lua
parentcf48b7dbadc2afc84613aa6c31b4c4bf8f95c177 (diff)
Moved stuff around and added hot chocolate
Diffstat (limited to 'drinks/milkshakes.lua')
-rw-r--r--drinks/milkshakes.lua17
1 files changed, 17 insertions, 0 deletions
diff --git a/drinks/milkshakes.lua b/drinks/milkshakes.lua
new file mode 100644
index 0000000..ffb8c56
--- /dev/null
+++ b/drinks/milkshakes.lua
@@ -0,0 +1,17 @@
+-- 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)
+}) \ No newline at end of file