Illuminator description

This commit is contained in:
Anuken
2019-11-18 17:00:52 -05:00
parent 6bc98bbe67
commit ad25cd8074
2 changed files with 2 additions and 3 deletions

View File

@@ -898,6 +898,7 @@ block.sorter.name = Sorter
block.inverted-sorter.name = Inverted Sorter block.inverted-sorter.name = Inverted Sorter
block.message.name = Message block.message.name = Message
block.illuminator.name = Illuminator block.illuminator.name = Illuminator
block.illuminator.description = A small, compact, configurable light source. Requires power to function.
block.overflow-gate.name = Overflow Gate block.overflow-gate.name = Overflow Gate
block.silicon-smelter.name = Silicon Smelter block.silicon-smelter.name = Silicon Smelter
block.phase-weaver.name = Phase Weaver block.phase-weaver.name = Phase Weaver

View File

@@ -739,9 +739,7 @@ public class Blocks implements ContentList{
requirements(Category.effect, ItemStack.with(Items.graphite, 5)); requirements(Category.effect, ItemStack.with(Items.graphite, 5));
}}; }};
illuminator = new LightBlock("illuminator"){{ illuminator = new LightBlock("illuminator"){{
//disabled until implemented properly requirements(Category.effect, BuildVisibility.lightingOnly, ItemStack.with(Items.graphite, 4, Items.silicon, 2));
requirements(Category.effect, BuildVisibility.lightingOnly, ItemStack.with(Items.graphite, 5));
color = Color.valueOf("7d93ff");
brightness = 0.67f; brightness = 0.67f;
radius = 120f; radius = 120f;
consumes.power(0.05f); consumes.power(0.05f);