summaryrefslogtreecommitdiff
path: root/drinks
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
parentcf48b7dbadc2afc84613aa6c31b4c4bf8f95c177 (diff)
Moved stuff around and added hot chocolate
Diffstat (limited to 'drinks')
-rw-r--r--drinks/hot.lua80
-rw-r--r--drinks/juice.lua50
-rw-r--r--drinks/milkshakes.lua17
3 files changed, 147 insertions, 0 deletions
diff --git a/drinks/hot.lua b/drinks/hot.lua
new file mode 100644
index 0000000..57c5c79
--- /dev/null
+++ b/drinks/hot.lua
@@ -0,0 +1,80 @@
+-- RUBENFOOD MOD
+-- A mod written by rubenwardy that adds
+-- food to the minetest game
+-- =====================================
+-- >> rubenfood/drinks/hot.lua
+-- adds hot drinks
+-- =====================================
+-- [regis-food] Coffee
+-- [craft] Coffe
+-- [regis-food] Hot Chocolate
+-- [craft] Hot Chocolate
+-- =====================================
+
+print ("RubenFood [Master] - Loading Hot")
+
+-----------------------------Coffee-----------------------------
+
+minetest.register_craftitem("food:coffeebean",{
+ description = "Raw Coffee Bean",
+ tiles = {"food_coffee.png"},
+ inventory_image = "food_coffee.png",
+})
+
+minetest.register_craftitem("food:coffeebean_cooked",{
+ description = "Cooked Coffee Bean",
+ tiles = {"food_coffee_cooked.png"},
+ inventory_image = "food_coffee_cooked.png",
+})
+
+minetest.register_craftitem("food:coffee", {
+ description = "Coffee",
+ inventory_image = "food_coffee_cup.png",
+ on_use = minetest.item_eat(10),
+})
+
+minetest.register_craft({
+ output = '"food:coffeebean" 1',
+ recipe = {
+ {'""','"default:dry_shrub"','""'},
+ {'""','"default:dry_shrub"','""'},
+ {'""','"default:dry_shrub"','""'},
+ }
+})
+
+minetest.register_craft({
+ output = '"food:coffee" 1',
+ recipe = {
+ {'""','"food:coffeebean_cooked"','""'},
+ {'""','"food:coffeebean_cooked"','""'},
+ {'""','"food:cup"','""'},
+ }
+})
+
+minetest.register_craft({
+ type = "cooking",
+ output = "food:coffeebean_cooked",
+ recipe = "food:coffeebean",
+})
+
+
+
+
+-------------------------Hot Chocolate--------------------------
+
+minetest.register_craftitem("food:hotchoco", {
+ description = "Hot Chocolate",
+ inventory_image = "food_hotchoco.png",
+ on_use = minetest.item_eat(4),
+})
+
+minetest.register_craft({
+output = '"food:hotchoco" 1 ',
+recipe = {
+{"food:chocolate_powder"},
+{"food:milk"},
+{"food:mug"},
+},
+})
+
+
diff --git a/drinks/juice.lua b/drinks/juice.lua
new file mode 100644
index 0000000..b6d93ab
--- /dev/null
+++ b/drinks/juice.lua
@@ -0,0 +1,50 @@
+-- RUBENFOOD MOD
+-- A mod written by rubenwardy that adds
+-- food to the minetest game
+-- =====================================
+-- >> rubenfood/drinks/juice.lua
+-- adds juices
+-- =====================================
+-- [regis-food] Apple Juice
+-- [craft] Cactus Juice
+-- [regis-food] Cactus Juice
+-- [craft] Cactus Juice
+-- =====================================
+
+print ("RubenFood [Master] - Loading Juices")
+
+--------------------------Apple Juice--------------------------
+minetest.register_craftitem("food:apple_juice", {
+ description = "Apple Juice",
+ inventory_image = "food_juice_apple.png",
+ on_use = minetest.item_eat(2)
+})
+
+minetest.register_craft({
+ output = '"food:apple_juice" 4',
+ recipe = {
+ {"","",""},
+ {"","default:apple",""},
+ {"","food:cup",""},
+ }
+})
+
+
+
+
+
+----------------------cactus juice----------------------------
+minetest.register_craftitem("food:cactus_juice", {
+ description = "Cactuz Juice",
+ inventory_image = "food_juice_cactus.png",
+ on_use = minetest.item_eat(2),
+})
+
+minetest.register_craft({
+ output = '"food:cactus_juice" 4',
+ recipe = {
+ {'""','""','""'},
+ {'""','"default:cactus"','""'},
+ {'""','"food:cup"','""'},
+ }
+}) \ No newline at end of file
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