Compare commits
2 Commits
2aa9e37e12
...
39790cec4d
Author | SHA1 | Date | |
---|---|---|---|
39790cec4d | |||
524ce1cf77 |
@@ -1 +0,0 @@
|
|||||||
digilines
|
|
@@ -1 +0,0 @@
|
|||||||
This mod provides a set of classic Nixie tubes, and a set of alphanumeric 15-segment tubes similar to Burroughs B-7971, controlled by Mesecons' Digilines mod.
|
|
39
init.lua
39
init.lua
@@ -124,7 +124,7 @@ for _,tube in ipairs(nixie_types) do
|
|||||||
"nixie_tube_anode.png",
|
"nixie_tube_anode.png",
|
||||||
"nixie_tube_glass.png",
|
"nixie_tube_glass.png",
|
||||||
},
|
},
|
||||||
use_texture_alpha = true,
|
use_texture_alpha = "blend",
|
||||||
groups = groups,
|
groups = groups,
|
||||||
paramtype = "light",
|
paramtype = "light",
|
||||||
paramtype2 = "facedir",
|
paramtype2 = "facedir",
|
||||||
@@ -159,7 +159,7 @@ for _,tube in ipairs(nixie_types) do
|
|||||||
"nixie_tube_anode.png",
|
"nixie_tube_anode.png",
|
||||||
"nixie_tube_glass.png",
|
"nixie_tube_glass.png",
|
||||||
},
|
},
|
||||||
use_texture_alpha = true,
|
use_texture_alpha = "blend",
|
||||||
groups = groups,
|
groups = groups,
|
||||||
paramtype = "light",
|
paramtype = "light",
|
||||||
paramtype2 = "facedir",
|
paramtype2 = "facedir",
|
||||||
@@ -196,7 +196,7 @@ for _,tube in ipairs(nixie_types) do
|
|||||||
cathode2,
|
cathode2,
|
||||||
"nixie_tube_glass.png",
|
"nixie_tube_glass.png",
|
||||||
},
|
},
|
||||||
use_texture_alpha = true,
|
use_texture_alpha = "blend",
|
||||||
groups = groups,
|
groups = groups,
|
||||||
paramtype = "light",
|
paramtype = "light",
|
||||||
paramtype2 = "facedir",
|
paramtype2 = "facedir",
|
||||||
@@ -465,7 +465,7 @@ for i in ipairs(alnum_chars) do
|
|||||||
"nixie_tube_anode.png",
|
"nixie_tube_anode.png",
|
||||||
"nixie_tube_glass.png",
|
"nixie_tube_glass.png",
|
||||||
},
|
},
|
||||||
use_texture_alpha = true,
|
use_texture_alpha = "blend",
|
||||||
groups = groups,
|
groups = groups,
|
||||||
paramtype = "light",
|
paramtype = "light",
|
||||||
paramtype2 = "facedir",
|
paramtype2 = "facedir",
|
||||||
@@ -489,34 +489,3 @@ for i in ipairs(alnum_chars) do
|
|||||||
drop = "nixie_tubes:alnum_32"
|
drop = "nixie_tubes:alnum_32"
|
||||||
})
|
})
|
||||||
end
|
end
|
||||||
|
|
||||||
-- crafts
|
|
||||||
|
|
||||||
minetest.register_craft({
|
|
||||||
output = "nixie_tubes:tube_off 4",
|
|
||||||
recipe = {
|
|
||||||
{ "", "default:glass", "" },
|
|
||||||
{ "default:glass", "default:sign_wall", "default:glass" },
|
|
||||||
{ "default:glass", "default:mese_crystal_fragment", "default:glass" }
|
|
||||||
},
|
|
||||||
})
|
|
||||||
|
|
||||||
minetest.register_craft({
|
|
||||||
output = "nixie_tubes:numitron_off 4",
|
|
||||||
recipe = {
|
|
||||||
{ "", "default:glass", "" },
|
|
||||||
{ "default:glass", "default:copper_ingot", "default:glass" },
|
|
||||||
{ "default:glass", "default:mese_crystal_fragment", "default:glass" }
|
|
||||||
},
|
|
||||||
})
|
|
||||||
|
|
||||||
|
|
||||||
minetest.register_craft({
|
|
||||||
output = "nixie_tubes:alnum_32 4",
|
|
||||||
recipe = {
|
|
||||||
{ "", "default:glass", "" },
|
|
||||||
{ "default:glass", "default:sign_wall", "default:glass" },
|
|
||||||
{ "default:glass", "default:mese_crystal", "default:glass" }
|
|
||||||
},
|
|
||||||
})
|
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user