diff options
author | Rubenwardy <anjayward@gmail.com> | 2012-09-10 18:54:04 +0100 |
---|---|---|
committer | Rubenwardy <anjayward@gmail.com> | 2012-09-10 18:54:04 +0100 |
commit | cf48b7dbadc2afc84613aa6c31b4c4bf8f95c177 (patch) | |
tree | 4d641072dd341bd6f5896ce3868b9fc89755781b /dairy.lua | |
parent | e0391e6ecb093543f9d46fc9401447a8d4bdd430 (diff) |
Bugs and Vessel Support
Corrected bugs notified by wowiamdiamonds added vessels support
Diffstat (limited to 'dairy.lua')
-rw-r--r-- | dairy.lua | 30 |
1 files changed, 30 insertions, 0 deletions
@@ -22,6 +22,7 @@ minetest.register_craftitem("food:cheese", { on_use = minetest.item_eat(4),
})
+
minetest.register_craft({
output = '"food:butter" 1',
recipe = {
@@ -38,5 +39,34 @@ minetest.register_craft({ +minetest.register_craftitem("food:chocolate_dark", {
+ description = "Dark Chocolate",
+ inventory_image = "food_choco_dark.png",
+ on_use = minetest.item_eat(2),
+})
+
+minetest.register_craftitem("food:chocolate_milk", {
+ description = "Milk Chocolate",
+ inventory_image = "food_choco_dark.png",
+ on_use = minetest.item_eat(3),
+})
+
+minetest.register_craft({
+ output = '"food:chocolate_dark" 1',
+ recipe = {
+ {'"food:cocoa"','"food:cocoa"','"food:cocoa"'},
+ }
+})
+
+minetest.register_craft({
+ output = '"food:chocolate_milk" 1',
+ recipe = {
+ {"",'"food:milk"',""},
+ {'"food:cocoa"','"food:cocoa"','"food:cocoa"'},
+ }
+})
+
+
+
|