diff options
author | Hamlet <h4mlet@riseup.net> | 2017-09-04 01:16:13 +0200 |
---|---|---|
committer | rubenwardy <rubenwardy@gmail.com> | 2017-09-04 00:16:13 +0100 |
commit | 7513148e0423cee9f7efdb099987a18f0d38c6d7 (patch) | |
tree | 77e4d6ef39e6abfb28c9eff5882faf22a7f0dc19 | |
parent | cdf47aba8b5ff502bc2fb10b6519ffd9211acd4b (diff) |
Add nsspf and crops supportHEADorigin/masterorigin/HEADmaster
-rw-r--r-- | depends.txt | 2 | ||||
-rw-r--r-- | init.lua | 71 |
2 files changed, 73 insertions, 0 deletions
diff --git a/depends.txt b/depends.txt index 8bbbbd5..69191ea 100644 --- a/depends.txt +++ b/depends.txt @@ -8,6 +8,7 @@ bushes? bushes_classic? cooking? creatures? +crops? docfarming? dwarves? ethereal? @@ -27,4 +28,5 @@ moretrees? mtfoods? mush45? mushroom? +nsspf? seaplants? @@ -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 |