diff options
author | Rubenwardy <anjayward@gmail.com> | 2012-09-10 20:04:10 +0100 |
---|---|---|
committer | Rubenwardy <anjayward@gmail.com> | 2012-09-10 20:04:10 +0100 |
commit | b336aaa2b489ceee8e5bc803dabc3052d2bbd63a (patch) | |
tree | 5fcf17f5f4e15e259fa33b73056604e69a899a39 /sandwich.lua | |
parent | cf48b7dbadc2afc84613aa6c31b4c4bf8f95c177 (diff) |
Moved stuff around and added hot chocolate
Diffstat (limited to 'sandwich.lua')
-rw-r--r-- | sandwich.lua | 59 |
1 files changed, 0 insertions, 59 deletions
diff --git a/sandwich.lua b/sandwich.lua deleted file mode 100644 index 9151bdd..0000000 --- a/sandwich.lua +++ /dev/null @@ -1,59 +0,0 @@ --- RUBENFOOD MOD
--- A mod written by rubenwardy that adds
--- food to the minetest game
--- ======================================
--- >> rubenfood/sandwich.lua
--- adds sandwich
--- ======================================
--- [regis-food] Cheese
--- [craft] Cheese
--- [regis-item] Butter
--- [craft] Butter
--- ======================================
-
-print "RubenFood [Master] - Loading Sandwiches"
-
-minetest.register_craftitem("food:sw_meat", {
- description = "Venison Sandwich",
- inventory_image = "food_sw_meat.png",
- on_use = minetest.item_eat(10),
-})
-
-minetest.register_craftitem("food:sw_cheese", {
- description = "Cheese Sandwich",
- inventory_image = "food_sw_cheese.png",
- on_use = minetest.item_eat(8),
-})
-
-minetest.register_craftitem("food:burger", {
- description = "Burger",
- inventory_image = "food_burger.png",
- on_use = minetest.item_eat(10),
-})
-
-minetest.register_craft({
- output = '"food:sw_meat" 1',
- recipe = {
- {"",'"food:bread_slice"',""},
- {"food:butter","food:meat",'"food:butter"'},
- {"",'"food:bread_slice"',""},
- }
-})
-
-minetest.register_craft({
- output = '"food:sw_cheese" 1',
- recipe = {
- {"",'"food:bread_slice"',""},
- {"food:butter","food:cheese",'"food:butter"'},
- {"",'"food:bread_slice"',""},
- }
-})
-
-minetest.register_craft({
- output = '"food:burger" 1',
- recipe = {
- {"",'"food:bun"',""},
- {"food:butter","food:meat",'"food:butter"'},
- {"",'"food:bun"',""},
- }
-})
|