Skip to content

Commit

Permalink
add recipe for screen3
Browse files Browse the repository at this point in the history
  • Loading branch information
BuckarooBanzay committed Jan 27, 2024
1 parent ba7a8ee commit 3c3ad75
Showing 1 changed file with 14 additions and 2 deletions.
16 changes: 14 additions & 2 deletions crafts.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand All @@ -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",
Expand All @@ -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",
Expand Down

0 comments on commit 3c3ad75

Please sign in to comment.