forked from mtcontrib/farming
add gingerbread man, tweak pineapple drops
This commit is contained in:
parent
8717625d0c
commit
2f461785d6
|
@ -218,7 +218,7 @@ on an older map are enabled and growing properly.
|
|||
|
||||
### Changelog:
|
||||
|
||||
- 1.48 - added 'farming_use_utensils' setting to enable/disable utensils in recipes, added mayonnaise (thx felfa)
|
||||
- 1.48 - added 'farming_use_utensils' setting to enable/disable utensils in recipes, added mayonnaise (thx felfa), added gingerbread man
|
||||
- 1.47 - Now blueberries can make blue dye, tweak soil types to work better with older 0.4.x clients and add spanish translation (thx mckaygerhard), add trellis setting to registered_crops and fix pea and soy crop names (thx nixnoxus), add strawberries if ethereal mod not active, added asparagus; spinach; eggplant (thx Atlante for new textures), Sugar Cube
|
||||
- 1.46 - Added min/max default light settings, added lettuce and blackberries with food items (thanks OgelGames), added soya, vanilla and sunflowers (thanks Felfa), added tofu, added salt crystals (thanks gorlock)
|
||||
- 1.45 - Dirt and Hoes are more in line with default by using dry/wet/base, added cactus juice, added pasta, spaghetti, cabbage, korean bibimbap, code tidy
|
||||
|
|
|
@ -130,7 +130,7 @@ def.selection_box = farming.select_final
|
|||
def.drop = {
|
||||
items = {
|
||||
{items = {"farming:pineapple"}, rarity = 1},
|
||||
{items = {"farming:pineapple"}, rarity = 5}
|
||||
{items = {"farming:pineapple"}, rarity = 2}
|
||||
}
|
||||
}
|
||||
minetest.register_node("farming:pineapple_8", table.copy(def))
|
||||
|
|
17
food.lua
17
food.lua
|
@ -782,3 +782,20 @@ minetest.register_craft({
|
|||
{"farming:glass_water", "vessels:drinking_glass"}
|
||||
}
|
||||
})
|
||||
|
||||
-- Gingerbread Man
|
||||
|
||||
minetest.register_craftitem("farming:gingerbread_man", {
|
||||
description = S("Gingerbread Man"),
|
||||
inventory_image = "farming_gingerbread_man.png",
|
||||
on_use = minetest.item_eat(2)
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "farming:gingerbread_man 3",
|
||||
recipe = {
|
||||
{"", "group:food_egg", ""},
|
||||
{"group:food_wheat", "group:food_ginger", "group:food_wheat"},
|
||||
{"group:food_sugar", "", "group:food_sugar"}
|
||||
}
|
||||
})
|
||||
|
|
|
@ -142,6 +142,7 @@ Created by TenPlus1 (CC BY 3.0)
|
|||
farming_rhubarb.png
|
||||
farming_hemp*.png
|
||||
farming_tofu*.png
|
||||
farming_gingerbread_man.png
|
||||
|
||||
Created by ademant (CC-BY-3.0)
|
||||
farming_rye*.png
|
||||
|
|
BIN
textures/farming_gingerbread_man.png
Normal file
BIN
textures/farming_gingerbread_man.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 264 B |
Loading…
Reference in New Issue
Block a user