also cook black cap gills into paraffin, they're oily

This commit is contained in:
FaceDeer 2019-08-07 01:33:59 -06:00
parent 3eacfd361d
commit ad11fa3677
4 changed files with 13 additions and 2 deletions

View File

@ -81,6 +81,15 @@ minetest.register_craft({
} }
}) })
if minetest.get_modpath("basic_materials") then
minetest.register_craft({
type = "cooking",
output = "basic_materials:paraffin",
recipe = "df_trees:black_cap_gills",
cooktime = 5,
})
end
minetest.register_node("df_trees:black_cap_wood", { minetest.register_node("df_trees:black_cap_wood", {
description = S("Black Cap Planks"), description = S("Black Cap Planks"),
_doc_items_longdesc = df_trees.doc.black_cap_desc, _doc_items_longdesc = df_trees.doc.black_cap_desc,

View File

@ -3,4 +3,5 @@ intllib?
doc? doc?
moreblocks? moreblocks?
stairs? stairs?
vessels? vessels?
basic_materials?

View File

@ -1,4 +1,4 @@
name = df_trees name = df_trees
description = Adds various types of underground fungal "trees". Light kills their saplings, they only grow in the dark. description = Adds various types of underground fungal "trees". Light kills their saplings, they only grow in the dark.
depends = default depends = default
optional_depends = intllib, doc, moreblocks, stairs, vessels optional_depends = intllib, doc, moreblocks, stairs, vessels, basic_materials

View File

@ -206,6 +206,7 @@ if minetest.get_modpath("bucket") then
type = "cooking", type = "cooking",
output = "basic_materials:paraffin", output = "basic_materials:paraffin",
recipe = "oil:oil_bucket", recipe = "oil:oil_bucket",
cooktime = 5,
replacements = {{"oil:oil_bucket", "bucket:bucket_empty"}}, replacements = {{"oil:oil_bucket", "bucket:bucket_empty"}},
}) })
end end