summaryrefslogtreecommitdiff
path: root/init.lua
diff options
context:
space:
mode:
Diffstat (limited to 'init.lua')
-rw-r--r--init.lua71
1 files changed, 71 insertions, 0 deletions
diff --git a/init.lua b/init.lua
index 6922773..209fdd4 100644
--- a/init.lua
+++ b/init.lua
@@ -484,3 +484,74 @@ if minetest.get_modpath("ferns") ~= nil then
overwrite("ferns:ferntuber_roasted", 3)
overwrite("ferns:horsetail_01", 1)
end
+
+-- crops
+
+if minetest.get_modpath("crops") ~= nil then
+ overwrite("crops:potato", 1)
+ overwrite("crops:roasted_pumpkin", 2)
+ overwrite("crops:melon_slice", 1)
+ overwrite("crops:green_bean", 1)
+ overwrite("crops:tomato", 1)
+ overwrite("crops:corn_on_the_cob", 1)
+ overwrite("crops:vegetable_stew", 8, "crops:clay_bowl")
+ overwrite("crops:uncooked_vegetable_stew", 2, "crops:clay_bowl")
+end
+
+-- nsspf
+
+if minetest.get_modpath("nsspf") ~= nil then
+ overwrite("nsspf:boletus_edulis", 2)
+ overwrite("nsspf:cooked_boletus_edulis", 16)
+ overwrite("nsspf:cantharellus_cibarius", 1)
+ overwrite("nsspf:cooked_cantharellus_cibarius", 8)
+ overwrite("nsspf:suillus_grevillei", 1)
+ overwrite("nsspf:cooked_suillus_grevillei", 10)
+ overwrite("nsspf:morchella_conica", 2)
+ overwrite("nsspf:cooked_morchella_conica", 8)
+ overwrite("nsspf:russula_xerampelina", -8)
+ overwrite("nsspf:cooked_russula_xerampelina", 6)
+ overwrite("nsspf:boletus_pinophilus", 2)
+ overwrite("nsspf:cooked_boletus_pinophilus", 16)
+ overwrite("nsspf:boletus_satanas", -20)
+ overwrite("nsspf:cooked_boletus_satanas", -16)
+ overwrite("nsspf:amanita_phalloides", -20)
+ overwrite("nsspf:cooked_amanita_phalloides", -20)
+ overwrite("nsspf:amanita_muscaria", -20)
+ overwrite("nsspf:cooked_amanita_muscaria", -18)
+ overwrite("nsspf:fistulina_hepatica", 4)
+ overwrite("nsspf:cooked_fistulina_hepatica", 14)
+ overwrite("nsspf:armillaria_mellea", 2)
+ overwrite("nsspf:fomes_fomentarius", -1)
+ overwrite("nsspf:cooked_armillaria_mellea", 12)
+ overwrite("nsspf:mycena_chlorophos", -2)
+ overwrite("nsspf:cooked_mycena_chlorophos", -4)
+ overwrite("nsspf:mycena_chlorophos_light", -2)
+ overwrite("nsspf:panellus_pusillus", -2)
+ overwrite("nsspf:cooked_panellus_pusillus", -4)
+ overwrite("nsspf:panellus_pusillus_light", -2)
+ overwrite("nsspf:macrolepiota_procera", 3)
+ overwrite("nsspf:cooked_macrolepiota_procera", 16)
+ overwrite("nsspf:psilocybe_cubensis", -7)
+ overwrite("nsspf:cooked_psilocybe_cubensis", 2)
+ overwrite("nsspf:lycoperdon_pyriforme", 8)
+ overwrite("nsspf:cooked_lycoperdon_pyriforme", 12)
+ overwrite("nsspf:gyromitra_esculenta", -20)
+ overwrite("nsspf:cooked_gyromitra_esculenta", -16)
+ overwrite("nsspf:coprinus_atramentarius", -13)
+ overwrite("nsspf:cooked_coprinus_atramentarius", 6)
+ overwrite("nsspf:lentinus_strigosus", 1)
+ overwrite("nsspf:cooked_lentinus_strigosus", 16)
+ overwrite("nsspf:ganoderma_lucidum", 14)
+ overwrite("nsspf:cooked_ganoderma_lucidum", 4)
+ overwrite("nsspf:marasmius_haematocephalus", -1)
+ overwrite("nsspf:cooked_marasmius_haematocephalus", -19)
+ overwrite("nsspf:clitocybula_azurea", -6)
+ overwrite("nsspf:cooked_clitocybula_azurea", 10)
+ overwrite("nsspf:clitocybe_glacialis", 1)
+ overwrite("nsspf:cooked_clitocybe_glacialis", 10)
+ overwrite("nsspf:hygrophorus_goetzii", -4)
+ overwrite("nsspf:cooked_hygrophorus_goetzii", 8)
+ overwrite("nsspf:plectania_nannfeldtii", -20)
+ overwrite("nsspf:cooked_plectania_nannfeldtii", -20)
+end