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.
Этот коммит содержится в:
Vanessa Ezekowitz
2014-07-19 08:03:02 -04:00
родитель 4a943c19b0
Коммит a3ccb6176b
5 изменённых файлов: 27 добавлений и 9 удалений

Просмотреть файл

@@ -16,6 +16,18 @@ minetest.register_craftitem("homedecor:roof_tile_terracotta", {
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", {
description = S("Plastic sheet"),
inventory_image = "homedecor_plastic_sheeting.png",
@@ -26,12 +38,6 @@ minetest.register_craftitem("homedecor:plastic_strips", {
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", {
description = S("Small Wooden Drawer"),
inventory_image = "homedecor_drawer_small.png",
@@ -243,7 +249,7 @@ minetest.register_craft( {
minetest.register_craft({
type = "shapeless",
output = "homedecor:plastic_base 4",
output = "homedecor:oil_extract 4",
recipe = {
"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({
type = "cooking",
output = "homedecor:plastic_sheeting",
recipe = "homedecor:plastic_base",
recipe = "homedecor:paraffin",
})
minetest.register_craft({
type = "fuel",
recipe = "homedecor:plastic_base",
recipe = "homedecor:oil_extract",
burntime = 30,
})
minetest.register_craft({
type = "fuel",
recipe = "homedecor:paraffin",
burntime = 30,
})

Двоичные данные
homedecor/textures/homedecor_oil_extract.png Обычный файл

Двоичный файл не отображается.

После

Ширина:  |  Высота:  |  Размер: 246 B

Двоичные данные
homedecor/textures/homedecor_paraffin.png Обычный файл

Двоичный файл не отображается.

После

Ширина:  |  Высота:  |  Размер: 600 B

Двоичные данные
homedecor/textures/homedecor_plastic_base.png

Двоичный файл не отображается.

До

Ширина:  |  Высота:  |  Размер: 440 B

Двоичный файл не отображается.

До

Ширина:  |  Высота:  |  Размер: 569 B