forked from mtcontrib/food
Added List of Foods to ReadMe and deleted useless file
This commit is contained in:
parent
9817c63921
commit
7f77083dbc
44
README.md
44
README.md
|
@ -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
|
||||
|
||||
|
||||
|
||||
|
|
25
fruits.lua
25
fruits.lua
|
@ -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(),
|
||||
})
|
Loading…
Reference in New Issue
Block a user