diff --git a/README.md b/README.md index 8744844..901a3bb 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/crops/pineapple.lua b/crops/pineapple.lua index 738e65f..e2209aa 100644 --- a/crops/pineapple.lua +++ b/crops/pineapple.lua @@ -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)) diff --git a/food.lua b/food.lua index 9738577..be02a29 100644 --- a/food.lua +++ b/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"} + } +}) diff --git a/license.txt b/license.txt index b593297..546853f 100644 --- a/license.txt +++ b/license.txt @@ -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 diff --git a/textures/farming_gingerbread_man.png b/textures/farming_gingerbread_man.png new file mode 100644 index 0000000..f037ae2 Binary files /dev/null and b/textures/farming_gingerbread_man.png differ