diff options
author | Rubenwardy <anjayward@gmail.com> | 2012-09-01 18:07:06 +0100 |
---|---|---|
committer | Rubenwardy <anjayward@gmail.com> | 2012-09-01 18:07:06 +0100 |
commit | 9817c63921fdfe81696a194844e253cf905611a9 (patch) | |
tree | 0bbe643a2ca171825296ead9fbf367d2c3e5c955 /meats.lua | |
parent | 5dc3fa20a9555997cc74f38f8314ad55b0e28ecd (diff) |
Added Oven, Meats, Sandwiches and Carrot Cake
Diffstat (limited to 'meats.lua')
-rw-r--r-- | meats.lua | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/meats.lua b/meats.lua new file mode 100644 index 0000000..091ba77 --- /dev/null +++ b/meats.lua @@ -0,0 +1,25 @@ +-- RUBENFOOD MOD
+-- A mod written by rubenwardy that adds
+-- food to the minetest game
+-- ======================================
+-- >> rubenfood/meats.lua
+-- adds meat products
+-- ======================================
+-- [regis-food] Meat
+-- ======================================
+
+minetest.register_craftitem("food:meat", {
+ description = "Venison",
+ inventory_image = "food_meat.png",
+})
+
+minetest.register_craft({
+ type = "cooking",
+ output = "food:meat",
+ recipe = "food:meat_raw",
+ cooktime = 20
+})
+
+
+
+
|