diff options
author | Rubenwardy <anjayward@gmail.com> | 2012-09-01 18:15:03 +0100 |
---|---|---|
committer | Rubenwardy <anjayward@gmail.com> | 2012-09-01 18:15:03 +0100 |
commit | 7f77083dbce308405c68c9cc0d18cff29c3b0a4a (patch) | |
tree | 040ee64bf0e999b84bcec9ca88929cdae1641348 | |
parent | 9817c63921fdfe81696a194844e253cf905611a9 (diff) |
Added List of Foods to ReadMe and deleted useless file
-rw-r--r-- | README.md | 44 | ||||
-rw-r--r-- | fruits.lua | 25 |
2 files changed, 40 insertions, 29 deletions
@@ -3,17 +3,53 @@ Rubenwardy's Food Mod. This mod adds food for minetest and is an ideal companion for the Farming (by PilzAdam) and the Animal (by Sapier) Mods.
-1) Craft Recipes
+1) List of Food
2) License for Code
+Food
+====
+Recipes coming on release of this mod.
+Read Code to find recipes before then
-Craft Recipes
-=============
+Items
+1) Cup / Glass
+2) Mug
+3) Oven
+4) Rings
-coming soon...
+Diary
+1) Butter
+2) Cheese
+Sandwiches
+1) Venison Sandwich
+
+Baking
+1) Bread
+2) Bread Slices
+
+Cakes
+1) Plain Cake
+2) Chocolate Cake
+3) Carrot Cake
+
+Tarts
+1) Strawberry Tart
+
+Crumbles
+1) Rhubarb Crumble
+
+Drinks
+1) Apple Juice
+2) Cactus Juice
+3) Coffee
+4) Coffee Beans
+
+Misc
+1) Cigerettes (takes 1 life away)
+2) Cooked Meat
diff --git a/fruits.lua b/fruits.lua deleted file mode 100644 index 7322f7d..0000000 --- a/fruits.lua +++ /dev/null @@ -1,25 +0,0 @@ --- RUBENFOOD MOD
--- A mod written by rubenwardy that adds
--- food to the minetest game
--- =====================================
--- >> rubenfood/fruits.lua
--- adds fruits
--- =====================================
--- [regis-food] Oranges
--- =====================================
-
-print ("RubenFood [Master] - Loading Fruits")
-
-minetest.register_node(":default:orange", {
- description = "Orange Fruit",
- drawtype = "plantlike",
- visual_scale = 1.0,
- tiles = {"food_orange.png"},
- inventory_image = "food_orange.png",
- paramtype = "light",
- sunlight_propagates = true,
- walkable = false,
- groups = {fleshy=3,dig_immediate=3,flammable=2},
- on_use = minetest.item_eat(4),
- sounds = default.node_sound_defaults(),
-})
\ No newline at end of file |