Add files via upload

This commit is contained in:
wintersknight94 2023-03-10 20:52:27 -06:00 committed by GitHub
parent 5e77150d57
commit 346f01c660
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 9 additions and 6 deletions

View File

@ -34,11 +34,14 @@ nodecore.register_hint("assemble a luxbulb from lode cube, form and two shaped g
) )
------------------------------------------------------------------------ ------------------------------------------------------------------------
nodecore.register_hint("connect luxbulb to power node to illuminate it", nodecore.register_hint("connect luxbulb to power node to illuminate it",
"Illuminate Bulb",
"group:bulb"
{"place:wc_luminous:luxlamp_0", {"place:wc_luminous:luxlamp_0",
"look:wc_luminous:luxlamp_1"} "look:wc_luminous:luxlamp_1"}
) )
------------------------------------------------------------------------ ------------------------------------------------------------------------
nodecore.register_hint("illuminate a bulb to its maximum", nodecore.register_hint("illuminate a bulb to its maximum",
"group:luxlamp",
"group:lux_cobble_max"
{"place:wc_luminous:luxlamp_0", {"place:wc_luminous:luxlamp_0",
"look:wc_luminous:luxlamp_3"} "look:wc_luminous:luxlamp_3"}
)

View File

@ -18,11 +18,11 @@ local vlux = charge*60
node_box = { node_box = {
type = "fixed", type = "fixed",
fixed = { fixed = {
{-0.499, -0.499, -0.499, 0.499, -0.375, 0.499}, -- AnchorPlate {-0.5, -0.4, -0.5, 0.5, -0.375, 0.5}, -- AnchorPlate
{-0.4375, -0.5, -0.4375, 0.4375, -0.3125, 0.4375}, -- BasePlate {-0.4375, -0.4, -0.4375, 0.4375, -0.3125, 0.4375}, -- BasePlate
{-0.3125, -0.375, -0.3125, 0.3125, 0.25, 0.3125}, -- SmallPlate {-0.3125, -0.375, -0.3125, 0.3125, 0.25, 0.3125}, -- SmallPlate
{-0.375, 0.25, -0.375, 0.375, 0.3125, 0.375}, -- Crown {-0.375, 0.25, -0.375, 0.375, 0.3125, 0.375}, -- Crown
{-0.25, 0.25, -0.25, 0.25, 0.375, 0.25}, -- PeakLg {-0.25, 0.25, -0.25, 0.25, 0.375, 0.25}, -- PeakLg
{-0.125, 0.3125, -0.125, 0.125, 0.4375, 0.125}, -- PeakMd {-0.125, 0.3125, -0.125, 0.125, 0.4375, 0.125}, -- PeakMd
{-0.0625, 0.3125, -0.0625, 0.0625, 0.5, 0.0625}, -- PeakSm {-0.0625, 0.3125, -0.0625, 0.0625, 0.5, 0.0625}, -- PeakSm
} }