32 lines
1.3 KiB
Lua
32 lines
1.3 KiB
Lua
-- Bushes classic mod originally by unknown
|
|
-- now maintained by VanessaE
|
|
|
|
bushes_classic = {}
|
|
|
|
-- support for i18n
|
|
|
|
bushes_classic.bushes = {
|
|
"strawberry",
|
|
"blackberry",
|
|
"blueberry",
|
|
"raspberry",
|
|
"gooseberry",
|
|
"mixed_berry"
|
|
}
|
|
|
|
bushes_classic.bushes_descriptions = {
|
|
{"Strawberry", "Raw Strawberry pie", "Cooked Strawberry pie", "Slice of Strawberry pie", "Basket with Strawberry pies", "Strawberry Bush"},
|
|
{"Blackberry", "Raw Blackberry pie", "Cooked Blackberry pie", "Slice of Blackberry pie", "Basket with Blackberry pies", "Blackberry Bush"},
|
|
{"Blueberry", "Raw Blueberry pie", "Cooked Blueberry pie", "Slice of Blueberry pie", "Basket with Blueberry pies", "Blueberry Bush"},
|
|
{"Raspberry", "Raw Raspberry pie", "Cooked Raspberry pie", "Slice of Raspberry pie", "Basket with Raspberry pies", "Raspberry Bush"},
|
|
{"Gooseberry", "Raw Gooseberry pie", "Cooked Gooseberry pie", "Slice of Gooseberry pie", "Basket with Gooseberry pies", "Gooseberry Bush"},
|
|
{"Mixed Berry", "Raw Mixed Berry pie", "Cooked Mixed Berry pie", "Slice of Mixed Berry pie", "Basket with Mixed Berry pies", "Currently fruitless Bush"}
|
|
}
|
|
|
|
local modpath = minetest.get_modpath('bushes_classic')
|
|
dofile(modpath..'/cooking.lua')
|
|
dofile(modpath..'/nodes.lua')
|
|
|
|
minetest.register_alias("bushes:basket_pies", "bushes:basket_strawberry")
|
|
|