mirror of
https://github.com/FaceDeer/dfcaverns.git
synced 2025-01-27 10:30:21 +01:00
also cook black cap gills into paraffin, they're oily
This commit is contained in:
parent
3eacfd361d
commit
ad11fa3677
@ -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,
|
||||||
|
@ -3,4 +3,5 @@ intllib?
|
|||||||
doc?
|
doc?
|
||||||
moreblocks?
|
moreblocks?
|
||||||
stairs?
|
stairs?
|
||||||
vessels?
|
vessels?
|
||||||
|
basic_materials?
|
@ -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
|
@ -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
|
||||||
|
Loading…
Reference in New Issue
Block a user