forked from nalc/homedecor_modpack
Change crafting chain for plastic sheets
now leaves become oil extract, which is cooked into paraffin this is then cooked into plastic sheets. needed for future recipes that will need some kind of wax.
This commit is contained in:
parent
4a943c19b0
commit
a3ccb6176b
|
@ -16,6 +16,18 @@ minetest.register_craftitem("homedecor:roof_tile_terracotta", {
|
||||||
inventory_image = "homedecor_roof_tile_terracotta.png",
|
inventory_image = "homedecor_roof_tile_terracotta.png",
|
||||||
})
|
})
|
||||||
|
|
||||||
|
minetest.register_craftitem("homedecor:oil_extract", {
|
||||||
|
description = S("Oil extract"),
|
||||||
|
inventory_image = "homedecor_oil_extract.png",
|
||||||
|
})
|
||||||
|
|
||||||
|
minetest.register_craftitem("homedecor:paraffin", {
|
||||||
|
description = S("Unprocessed paraffin"),
|
||||||
|
inventory_image = "homedecor_paraffin.png",
|
||||||
|
})
|
||||||
|
|
||||||
|
minetest.register_alias("homedecor:plastic_base", "homedecor:paraffin")
|
||||||
|
|
||||||
minetest.register_craftitem("homedecor:plastic_sheeting", {
|
minetest.register_craftitem("homedecor:plastic_sheeting", {
|
||||||
description = S("Plastic sheet"),
|
description = S("Plastic sheet"),
|
||||||
inventory_image = "homedecor_plastic_sheeting.png",
|
inventory_image = "homedecor_plastic_sheeting.png",
|
||||||
|
@ -26,12 +38,6 @@ minetest.register_craftitem("homedecor:plastic_strips", {
|
||||||
inventory_image = "homedecor_plastic_strips.png",
|
inventory_image = "homedecor_plastic_strips.png",
|
||||||
})
|
})
|
||||||
|
|
||||||
minetest.register_craftitem("homedecor:plastic_base", {
|
|
||||||
description = S("Unprocessed Plastic base"),
|
|
||||||
wield_image = "homedecor_plastic_base.png",
|
|
||||||
inventory_image = "homedecor_plastic_base_inv.png",
|
|
||||||
})
|
|
||||||
|
|
||||||
minetest.register_craftitem("homedecor:drawer_small", {
|
minetest.register_craftitem("homedecor:drawer_small", {
|
||||||
description = S("Small Wooden Drawer"),
|
description = S("Small Wooden Drawer"),
|
||||||
inventory_image = "homedecor_drawer_small.png",
|
inventory_image = "homedecor_drawer_small.png",
|
||||||
|
@ -243,7 +249,7 @@ minetest.register_craft( {
|
||||||
|
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
type = "shapeless",
|
type = "shapeless",
|
||||||
output = "homedecor:plastic_base 4",
|
output = "homedecor:oil_extract 4",
|
||||||
recipe = {
|
recipe = {
|
||||||
"group:leaves",
|
"group:leaves",
|
||||||
"group:leaves",
|
"group:leaves",
|
||||||
|
@ -254,15 +260,27 @@ minetest.register_craft({
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
|
minetest.register_craft({
|
||||||
|
type = "cooking",
|
||||||
|
output = "homedecor:paraffin",
|
||||||
|
recipe = "homedecor:oil_extract",
|
||||||
|
})
|
||||||
|
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
type = "cooking",
|
type = "cooking",
|
||||||
output = "homedecor:plastic_sheeting",
|
output = "homedecor:plastic_sheeting",
|
||||||
recipe = "homedecor:plastic_base",
|
recipe = "homedecor:paraffin",
|
||||||
})
|
})
|
||||||
|
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
type = "fuel",
|
type = "fuel",
|
||||||
recipe = "homedecor:plastic_base",
|
recipe = "homedecor:oil_extract",
|
||||||
|
burntime = 30,
|
||||||
|
})
|
||||||
|
|
||||||
|
minetest.register_craft({
|
||||||
|
type = "fuel",
|
||||||
|
recipe = "homedecor:paraffin",
|
||||||
burntime = 30,
|
burntime = 30,
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|
BIN
homedecor/textures/homedecor_oil_extract.png
Normal file
BIN
homedecor/textures/homedecor_oil_extract.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 246 B |
BIN
homedecor/textures/homedecor_paraffin.png
Normal file
BIN
homedecor/textures/homedecor_paraffin.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 600 B |
Binary file not shown.
Before Width: | Height: | Size: 440 B |
Binary file not shown.
Before Width: | Height: | Size: 569 B |
Loading…
Reference in New Issue
Block a user