1
0
mirror of https://github.com/D00Med/scifi_nodes.git synced 2024-12-22 08:00:18 +01:00

add recipe for screen3

This commit is contained in:
BuckarooBanzay 2024-01-27 19:33:01 +01:00
parent ba7a8eea46
commit 3c3ad75e6d

View File

@ -234,7 +234,7 @@ minetest.register_craft({
}
})
-- 4 electronic screen from 4 plastic, 1 trap glow glass, 2 cyan dye, 2
-- 4 electronic screen from 4 plastic, 1 lightbar, 2 cyan dye, 2
-- microcontroller
minetest.register_craft({
output = "scifi_nodes:screen 4",
@ -245,7 +245,7 @@ minetest.register_craft({
}
})
-- 4 electronic screen2 from 4 plastic, 1 trap glow glass, 2 green dye, 2
-- 4 electronic screen2 from 4 plastic, 1 lightbar, 2 green dye, 2
-- microcontroller
minetest.register_craft({
output = "scifi_nodes:screen2 4",
@ -256,6 +256,18 @@ minetest.register_craft({
}
})
-- 4 electronic screen3 from 4 plastic, 1 lightbar, 2 black dye, 2
-- microcontroller
minetest.register_craft({
output = "scifi_nodes:screen3 4",
recipe = {
{"scifi_nodes:white2", "mesecons_microcontroller:microcontroller0000", "scifi_nodes:white2"},
{"dye:black", "scifi_nodes:lightbar", "dye:black"},
{"scifi_nodes:white2", "mesecons_microcontroller:microcontroller0000", "scifi_nodes:white2"}
}
})
-- 4 black wall screen from 4 black meshes and 1 electronic screen2
minetest.register_craft({
output = "scifi_nodes:black_screen 4",